Akamai v7.2.0 published on Friday, May 31, 2024 by Pulumi
akamai.NetworkListActivations
Explore with Pulumi AI
Create NetworkListActivations Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NetworkListActivations(name: string, args: NetworkListActivationsArgs, opts?: CustomResourceOptions);
@overload
def NetworkListActivations(resource_name: str,
args: NetworkListActivationsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def NetworkListActivations(resource_name: str,
opts: Optional[ResourceOptions] = None,
network_list_id: Optional[str] = None,
notification_emails: Optional[Sequence[str]] = None,
sync_point: Optional[int] = None,
network: Optional[str] = None,
notes: Optional[str] = None)
func NewNetworkListActivations(ctx *Context, name string, args NetworkListActivationsArgs, opts ...ResourceOption) (*NetworkListActivations, error)
public NetworkListActivations(string name, NetworkListActivationsArgs args, CustomResourceOptions? opts = null)
public NetworkListActivations(String name, NetworkListActivationsArgs args)
public NetworkListActivations(String name, NetworkListActivationsArgs args, CustomResourceOptions options)
type: akamai:NetworkListActivations
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 NetworkListActivationsArgs
- 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 NetworkListActivationsArgs
- 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 NetworkListActivationsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkListActivationsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkListActivationsArgs
- 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 networkListActivationsResource = new Akamai.NetworkListActivations("networkListActivationsResource", new()
{
NetworkListId = "string",
NotificationEmails = new[]
{
"string",
},
SyncPoint = 0,
Network = "string",
Notes = "string",
});
example, err := akamai.NewNetworkListActivations(ctx, "networkListActivationsResource", &akamai.NetworkListActivationsArgs{
NetworkListId: pulumi.String("string"),
NotificationEmails: pulumi.StringArray{
pulumi.String("string"),
},
SyncPoint: pulumi.Int(0),
Network: pulumi.String("string"),
Notes: pulumi.String("string"),
})
var networkListActivationsResource = new NetworkListActivations("networkListActivationsResource", NetworkListActivationsArgs.builder()
.networkListId("string")
.notificationEmails("string")
.syncPoint(0)
.network("string")
.notes("string")
.build());
network_list_activations_resource = akamai.NetworkListActivations("networkListActivationsResource",
network_list_id="string",
notification_emails=["string"],
sync_point=0,
network="string",
notes="string")
const networkListActivationsResource = new akamai.NetworkListActivations("networkListActivationsResource", {
networkListId: "string",
notificationEmails: ["string"],
syncPoint: 0,
network: "string",
notes: "string",
});
type: akamai:NetworkListActivations
properties:
network: string
networkListId: string
notes: string
notificationEmails:
- string
syncPoint: 0
NetworkListActivations 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 NetworkListActivations resource accepts the following input properties:
- Network
List stringId - Unique identifier of the network list
- Notification
Emails List<string> - List of email addresses of Control Center users who receive an email when activation of this list is complete
- Sync
Point int - Identifies the sync point of the network list to be activated
- Network string
- The Akamai network on which the list is activated: STAGING or PRODUCTION
- Notes string
- Descriptive text to accompany the activation
- Network
List stringId - Unique identifier of the network list
- Notification
Emails []string - List of email addresses of Control Center users who receive an email when activation of this list is complete
- Sync
Point int - Identifies the sync point of the network list to be activated
- Network string
- The Akamai network on which the list is activated: STAGING or PRODUCTION
- Notes string
- Descriptive text to accompany the activation
- network
List StringId - Unique identifier of the network list
- notification
Emails List<String> - List of email addresses of Control Center users who receive an email when activation of this list is complete
- sync
Point Integer - Identifies the sync point of the network list to be activated
- network String
- The Akamai network on which the list is activated: STAGING or PRODUCTION
- notes String
- Descriptive text to accompany the activation
- network
List stringId - Unique identifier of the network list
- notification
Emails string[] - List of email addresses of Control Center users who receive an email when activation of this list is complete
- sync
Point number - Identifies the sync point of the network list to be activated
- network string
- The Akamai network on which the list is activated: STAGING or PRODUCTION
- notes string
- Descriptive text to accompany the activation
- network_
list_ strid - Unique identifier of the network list
- notification_
emails Sequence[str] - List of email addresses of Control Center users who receive an email when activation of this list is complete
- sync_
point int - Identifies the sync point of the network list to be activated
- network str
- The Akamai network on which the list is activated: STAGING or PRODUCTION
- notes str
- Descriptive text to accompany the activation
- network
List StringId - Unique identifier of the network list
- notification
Emails List<String> - List of email addresses of Control Center users who receive an email when activation of this list is complete
- sync
Point Number - Identifies the sync point of the network list to be activated
- network String
- The Akamai network on which the list is activated: STAGING or PRODUCTION
- notes String
- Descriptive text to accompany the activation
Outputs
All input properties are implicitly available as output properties. Additionally, the NetworkListActivations resource produces the following output properties:
Look up Existing NetworkListActivations Resource
Get an existing NetworkListActivations 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?: NetworkListActivationsState, opts?: CustomResourceOptions): NetworkListActivations
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
network: Optional[str] = None,
network_list_id: Optional[str] = None,
notes: Optional[str] = None,
notification_emails: Optional[Sequence[str]] = None,
status: Optional[str] = None,
sync_point: Optional[int] = None) -> NetworkListActivations
func GetNetworkListActivations(ctx *Context, name string, id IDInput, state *NetworkListActivationsState, opts ...ResourceOption) (*NetworkListActivations, error)
public static NetworkListActivations Get(string name, Input<string> id, NetworkListActivationsState? state, CustomResourceOptions? opts = null)
public static NetworkListActivations get(String name, Output<String> id, NetworkListActivationsState 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.
- Network string
- The Akamai network on which the list is activated: STAGING or PRODUCTION
- Network
List stringId - Unique identifier of the network list
- Notes string
- Descriptive text to accompany the activation
- Notification
Emails List<string> - List of email addresses of Control Center users who receive an email when activation of this list is complete
- Status string
- This network list's current activation status in the environment specified by the "network" attribute
- Sync
Point int - Identifies the sync point of the network list to be activated
- Network string
- The Akamai network on which the list is activated: STAGING or PRODUCTION
- Network
List stringId - Unique identifier of the network list
- Notes string
- Descriptive text to accompany the activation
- Notification
Emails []string - List of email addresses of Control Center users who receive an email when activation of this list is complete
- Status string
- This network list's current activation status in the environment specified by the "network" attribute
- Sync
Point int - Identifies the sync point of the network list to be activated
- network String
- The Akamai network on which the list is activated: STAGING or PRODUCTION
- network
List StringId - Unique identifier of the network list
- notes String
- Descriptive text to accompany the activation
- notification
Emails List<String> - List of email addresses of Control Center users who receive an email when activation of this list is complete
- status String
- This network list's current activation status in the environment specified by the "network" attribute
- sync
Point Integer - Identifies the sync point of the network list to be activated
- network string
- The Akamai network on which the list is activated: STAGING or PRODUCTION
- network
List stringId - Unique identifier of the network list
- notes string
- Descriptive text to accompany the activation
- notification
Emails string[] - List of email addresses of Control Center users who receive an email when activation of this list is complete
- status string
- This network list's current activation status in the environment specified by the "network" attribute
- sync
Point number - Identifies the sync point of the network list to be activated
- network str
- The Akamai network on which the list is activated: STAGING or PRODUCTION
- network_
list_ strid - Unique identifier of the network list
- notes str
- Descriptive text to accompany the activation
- notification_
emails Sequence[str] - List of email addresses of Control Center users who receive an email when activation of this list is complete
- status str
- This network list's current activation status in the environment specified by the "network" attribute
- sync_
point int - Identifies the sync point of the network list to be activated
- network String
- The Akamai network on which the list is activated: STAGING or PRODUCTION
- network
List StringId - Unique identifier of the network list
- notes String
- Descriptive text to accompany the activation
- notification
Emails List<String> - List of email addresses of Control Center users who receive an email when activation of this list is complete
- status String
- This network list's current activation status in the environment specified by the "network" attribute
- sync
Point Number - Identifies the sync point of the network list to be activated
Package Details
- Repository
- Akamai pulumi/pulumi-akamai
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
akamai
Terraform Provider.