1. Packages
  2. Akamai
  3. API Docs
  4. AppSecByPassNetworkList
Akamai v7.0.0 published on Monday, Apr 8, 2024 by Pulumi

akamai.AppSecByPassNetworkList

Explore with Pulumi AI

akamai logo
Akamai v7.0.0 published on Monday, Apr 8, 2024 by Pulumi

    Create AppSecByPassNetworkList Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new AppSecByPassNetworkList(name: string, args: AppSecByPassNetworkListArgs, opts?: CustomResourceOptions);
    @overload
    def AppSecByPassNetworkList(resource_name: str,
                                args: AppSecByPassNetworkListArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def AppSecByPassNetworkList(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                bypass_network_lists: Optional[Sequence[str]] = None,
                                config_id: Optional[int] = None,
                                security_policy_id: Optional[str] = None)
    func NewAppSecByPassNetworkList(ctx *Context, name string, args AppSecByPassNetworkListArgs, opts ...ResourceOption) (*AppSecByPassNetworkList, error)
    public AppSecByPassNetworkList(string name, AppSecByPassNetworkListArgs args, CustomResourceOptions? opts = null)
    public AppSecByPassNetworkList(String name, AppSecByPassNetworkListArgs args)
    public AppSecByPassNetworkList(String name, AppSecByPassNetworkListArgs args, CustomResourceOptions options)
    
    type: akamai:AppSecByPassNetworkList
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args AppSecByPassNetworkListArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args AppSecByPassNetworkListArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args AppSecByPassNetworkListArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AppSecByPassNetworkListArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AppSecByPassNetworkListArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var appSecByPassNetworkListResource = new Akamai.AppSecByPassNetworkList("appSecByPassNetworkListResource", new()
    {
        BypassNetworkLists = new[]
        {
            "string",
        },
        ConfigId = 0,
        SecurityPolicyId = "string",
    });
    
    example, err := akamai.NewAppSecByPassNetworkList(ctx, "appSecByPassNetworkListResource", &akamai.AppSecByPassNetworkListArgs{
    	BypassNetworkLists: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ConfigId:         pulumi.Int(0),
    	SecurityPolicyId: pulumi.String("string"),
    })
    
    var appSecByPassNetworkListResource = new AppSecByPassNetworkList("appSecByPassNetworkListResource", AppSecByPassNetworkListArgs.builder()        
        .bypassNetworkLists("string")
        .configId(0)
        .securityPolicyId("string")
        .build());
    
    app_sec_by_pass_network_list_resource = akamai.AppSecByPassNetworkList("appSecByPassNetworkListResource",
        bypass_network_lists=["string"],
        config_id=0,
        security_policy_id="string")
    
    const appSecByPassNetworkListResource = new akamai.AppSecByPassNetworkList("appSecByPassNetworkListResource", {
        bypassNetworkLists: ["string"],
        configId: 0,
        securityPolicyId: "string",
    });
    
    type: akamai:AppSecByPassNetworkList
    properties:
        bypassNetworkLists:
            - string
        configId: 0
        securityPolicyId: string
    

    AppSecByPassNetworkList Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The AppSecByPassNetworkList resource accepts the following input properties:

    BypassNetworkLists List<string>
    List of network list IDs that compose the bypass list
    ConfigId int
    Unique identifier of the security configuration
    SecurityPolicyId string
    The unique identifier of the security policy governing the bypass network lists
    BypassNetworkLists []string
    List of network list IDs that compose the bypass list
    ConfigId int
    Unique identifier of the security configuration
    SecurityPolicyId string
    The unique identifier of the security policy governing the bypass network lists
    bypassNetworkLists List<String>
    List of network list IDs that compose the bypass list
    configId Integer
    Unique identifier of the security configuration
    securityPolicyId String
    The unique identifier of the security policy governing the bypass network lists
    bypassNetworkLists string[]
    List of network list IDs that compose the bypass list
    configId number
    Unique identifier of the security configuration
    securityPolicyId string
    The unique identifier of the security policy governing the bypass network lists
    bypass_network_lists Sequence[str]
    List of network list IDs that compose the bypass list
    config_id int
    Unique identifier of the security configuration
    security_policy_id str
    The unique identifier of the security policy governing the bypass network lists
    bypassNetworkLists List<String>
    List of network list IDs that compose the bypass list
    configId Number
    Unique identifier of the security configuration
    securityPolicyId String
    The unique identifier of the security policy governing the bypass network lists

    Outputs

    All input properties are implicitly available as output properties. Additionally, the AppSecByPassNetworkList resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing AppSecByPassNetworkList Resource

    Get an existing AppSecByPassNetworkList resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: AppSecByPassNetworkListState, opts?: CustomResourceOptions): AppSecByPassNetworkList
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            bypass_network_lists: Optional[Sequence[str]] = None,
            config_id: Optional[int] = None,
            security_policy_id: Optional[str] = None) -> AppSecByPassNetworkList
    func GetAppSecByPassNetworkList(ctx *Context, name string, id IDInput, state *AppSecByPassNetworkListState, opts ...ResourceOption) (*AppSecByPassNetworkList, error)
    public static AppSecByPassNetworkList Get(string name, Input<string> id, AppSecByPassNetworkListState? state, CustomResourceOptions? opts = null)
    public static AppSecByPassNetworkList get(String name, Output<String> id, AppSecByPassNetworkListState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    BypassNetworkLists List<string>
    List of network list IDs that compose the bypass list
    ConfigId int
    Unique identifier of the security configuration
    SecurityPolicyId string
    The unique identifier of the security policy governing the bypass network lists
    BypassNetworkLists []string
    List of network list IDs that compose the bypass list
    ConfigId int
    Unique identifier of the security configuration
    SecurityPolicyId string
    The unique identifier of the security policy governing the bypass network lists
    bypassNetworkLists List<String>
    List of network list IDs that compose the bypass list
    configId Integer
    Unique identifier of the security configuration
    securityPolicyId String
    The unique identifier of the security policy governing the bypass network lists
    bypassNetworkLists string[]
    List of network list IDs that compose the bypass list
    configId number
    Unique identifier of the security configuration
    securityPolicyId string
    The unique identifier of the security policy governing the bypass network lists
    bypass_network_lists Sequence[str]
    List of network list IDs that compose the bypass list
    config_id int
    Unique identifier of the security configuration
    security_policy_id str
    The unique identifier of the security policy governing the bypass network lists
    bypassNetworkLists List<String>
    List of network list IDs that compose the bypass list
    configId Number
    Unique identifier of the security configuration
    securityPolicyId String
    The unique identifier of the security policy governing the bypass network lists

    Package Details

    Repository
    Akamai pulumi/pulumi-akamai
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the akamai Terraform Provider.
    akamai logo
    Akamai v7.0.0 published on Monday, Apr 8, 2024 by Pulumi