1. Packages
  2. Akamai
  3. API Docs
  4. AppSecByPassNetworkList
Akamai v8.1.0 published on Friday, Apr 11, 2025 by Pulumi

akamai.AppSecByPassNetworkList

Explore with Pulumi AI

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 This property is required. string
The unique name of the resource.
args This property is required. AppSecByPassNetworkListArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. 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 This property is required. string
The unique name of the resource.
args This property is required. AppSecByPassNetworkListArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AppSecByPassNetworkListArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AppSecByPassNetworkListArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

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

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

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The AppSecByPassNetworkList resource accepts the following input properties:

BypassNetworkLists This property is required. List<string>
List of network list IDs that compose the bypass list
ConfigId This property is required. int
Unique identifier of the security configuration
SecurityPolicyId This property is required. string
The unique identifier of the security policy governing the bypass network lists
BypassNetworkLists This property is required. []string
List of network list IDs that compose the bypass list
ConfigId This property is required. int
Unique identifier of the security configuration
SecurityPolicyId This property is required. string
The unique identifier of the security policy governing the bypass network lists
bypassNetworkLists This property is required. List<String>
List of network list IDs that compose the bypass list
configId This property is required. Integer
Unique identifier of the security configuration
securityPolicyId This property is required. String
The unique identifier of the security policy governing the bypass network lists
bypassNetworkLists This property is required. string[]
List of network list IDs that compose the bypass list
configId This property is required. number
Unique identifier of the security configuration
securityPolicyId This property is required. string
The unique identifier of the security policy governing the bypass network lists
bypass_network_lists This property is required. Sequence[str]
List of network list IDs that compose the bypass list
config_id This property is required. int
Unique identifier of the security configuration
security_policy_id This property is required. str
The unique identifier of the security policy governing the bypass network lists
bypassNetworkLists This property is required. List<String>
List of network list IDs that compose the bypass list
configId This property is required. Number
Unique identifier of the security configuration
securityPolicyId This property is required. 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)
resources:  _:    type: akamai:AppSecByPassNetworkList    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.