Edits history of script submission #11034 for ' Update a Firewall (digitalocean)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Digitalocean = {
      token: string;
    };
    /**
     * Update a Firewall
     * To update the configuration of an existing firewall, send a PUT request to
    `/v2/firewalls/$FIREWALL_ID`. The request should contain a full representation
    of the firewall including existing attributes. **Note that any attributes that
    are not provided will be reset to their default values.**
    
     */
    export async function main(
      auth: Digitalocean,
      firewall_id: string,
      body:
        | ({
            id?: string;
            status?: "waiting" | "succeeded" | "failed";
            created_at?: string;
            pending_changes?: {
              droplet_id?: number;
              removing?: false | true;
              status?: string;
            }[];
            name?: string;
            droplet_ids?: number[];
            tags?: string[] & {};
          } & {
            inbound_rules?: { protocol: "tcp" | "udp" | "icmp"; ports: string } & {
              sources: {
                addresses?: string[];
                droplet_ids?: number[];
                load_balancer_uids?: string[];
                kubernetes_ids?: string[];
                tags?: string[] & {};
              } & {};
            }[];
            outbound_rules?: { protocol: "tcp" | "udp" | "icmp"; ports: string } & {
              destinations: {
                addresses?: string[];
                droplet_ids?: number[];
                load_balancer_uids?: string[];
                kubernetes_ids?: string[];
                tags?: string[] & {};
              } & {};
            }[];
          } & {})
        | ({
            id?: string;
            status?: "waiting" | "succeeded" | "failed";
            created_at?: string;
            pending_changes?: {
              droplet_id?: number;
              removing?: false | true;
              status?: string;
            }[];
            name?: string;
            droplet_ids?: number[];
            tags?: string[] & {};
          } & {
            inbound_rules?: { protocol: "tcp" | "udp" | "icmp"; ports: string } & {
              sources: {
                addresses?: string[];
                droplet_ids?: number[];
                load_balancer_uids?: string[];
                kubernetes_ids?: string[];
                tags?: string[] & {};
              } & {};
            }[];
            outbound_rules?: { protocol: "tcp" | "udp" | "icmp"; ports: string } & {
              destinations: {
                addresses?: string[];
                droplet_ids?: number[];
                load_balancer_uids?: string[];
                kubernetes_ids?: string[];
                tags?: string[] & {};
              } & {};
            }[];
          } & {}),
    ) {
      const url = new URL(
        `https://api.digitalocean.com/v2/firewalls/${firewall_id}`,
      );
    
      const response = await fetch(url, {
        method: "PUT",
        headers: {
          "Content-Type": "application/json",
          Authorization: "Bearer " + auth.token,
        },
        body: JSON.stringify(body),
      });
      if (!response.ok) {
        const text = await response.text();
        throw new Error(`${response.status} ${text}`);
      }
      return await response.json();
    }
    

    Submitted by hugo697 537 days ago