@akamai/openapi-ts
    Preparing search index...

    Type Alias PutFirewallData

    type PutFirewallData = {
        body?: {
            label?: string;
            status?: "enabled" | "disabled";
            tags?: string[];
        };
        path: { firewallId: number };
        query?: never;
        url: "networking/firewalls/{firewallId}";
    }
    Index

    Properties

    Properties

    body?: { label?: string; status?: "enabled" | "disabled"; tags?: string[] }

    Type Declaration

    • Optionallabel?: string

      Filterable The Firewall's label, for display purposes only.

      Firewall labels have the following constraints:

      • Must begin and end with an alphanumeric character.
      • May only consist of alphanumeric characters, hyphens (-), underscores (_) or periods (.).
      • Cannot have two hyphens (--), underscores (__) or periods (..) in a row.
      • Must be between 3 and 32 characters.
      • Must be unique.
    • Optionalstatus?: "enabled" | "disabled"

      The status to be applied to this Firewall.

      • When a Firewall is first created its status is enabled.
      • An assigned default firewall can't be disabled.
      • Run the Delete a firewall operation to delete a Firewall.
    • Optionaltags?: string[]

      Filterable An array of tags applied to this object. Tags are for organizational purposes only.

    path: { firewallId: number }

    Type Declaration

    • firewallId: number

      ID of the Firewall to access.

    query?: never
    url: "networking/firewalls/{firewallId}"