1. Packages
  2. Akamai
  3. API Docs
  4. PropertyIncludeActivation
Akamai v7.1.0 published on Wednesday, Apr 24, 2024 by Pulumi

akamai.PropertyIncludeActivation

Explore with Pulumi AI

akamai logo
Akamai v7.1.0 published on Wednesday, Apr 24, 2024 by Pulumi

    Create PropertyIncludeActivation Resource

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

    Constructor syntax

    new PropertyIncludeActivation(name: string, args: PropertyIncludeActivationArgs, opts?: CustomResourceOptions);
    @overload
    def PropertyIncludeActivation(resource_name: str,
                                  args: PropertyIncludeActivationArgs,
                                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def PropertyIncludeActivation(resource_name: str,
                                  opts: Optional[ResourceOptions] = None,
                                  contract_id: Optional[str] = None,
                                  group_id: Optional[str] = None,
                                  include_id: Optional[str] = None,
                                  network: Optional[str] = None,
                                  notify_emails: Optional[Sequence[str]] = None,
                                  version: Optional[int] = None,
                                  auto_acknowledge_rule_warnings: Optional[bool] = None,
                                  compliance_record: Optional[PropertyIncludeActivationComplianceRecordArgs] = None,
                                  note: Optional[str] = None,
                                  timeouts: Optional[PropertyIncludeActivationTimeoutsArgs] = None)
    func NewPropertyIncludeActivation(ctx *Context, name string, args PropertyIncludeActivationArgs, opts ...ResourceOption) (*PropertyIncludeActivation, error)
    public PropertyIncludeActivation(string name, PropertyIncludeActivationArgs args, CustomResourceOptions? opts = null)
    public PropertyIncludeActivation(String name, PropertyIncludeActivationArgs args)
    public PropertyIncludeActivation(String name, PropertyIncludeActivationArgs args, CustomResourceOptions options)
    
    type: akamai:PropertyIncludeActivation
    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 PropertyIncludeActivationArgs
    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 PropertyIncludeActivationArgs
    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 PropertyIncludeActivationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PropertyIncludeActivationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PropertyIncludeActivationArgs
    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 propertyIncludeActivationResource = new Akamai.PropertyIncludeActivation("propertyIncludeActivationResource", new()
    {
        ContractId = "string",
        GroupId = "string",
        IncludeId = "string",
        Network = "string",
        NotifyEmails = new[]
        {
            "string",
        },
        Version = 0,
        AutoAcknowledgeRuleWarnings = false,
        ComplianceRecord = new Akamai.Inputs.PropertyIncludeActivationComplianceRecordArgs
        {
            NoncomplianceReasonEmergency = new Akamai.Inputs.PropertyIncludeActivationComplianceRecordNoncomplianceReasonEmergencyArgs
            {
                TicketId = "string",
            },
            NoncomplianceReasonNoProductionTraffic = new Akamai.Inputs.PropertyIncludeActivationComplianceRecordNoncomplianceReasonNoProductionTrafficArgs
            {
                TicketId = "string",
            },
            NoncomplianceReasonNone = new Akamai.Inputs.PropertyIncludeActivationComplianceRecordNoncomplianceReasonNoneArgs
            {
                CustomerEmail = "string",
                PeerReviewedBy = "string",
                TicketId = "string",
                UnitTested = false,
            },
            NoncomplianceReasonOther = new Akamai.Inputs.PropertyIncludeActivationComplianceRecordNoncomplianceReasonOtherArgs
            {
                OtherNoncomplianceReason = "string",
                TicketId = "string",
            },
        },
        Note = "string",
        Timeouts = new Akamai.Inputs.PropertyIncludeActivationTimeoutsArgs
        {
            Default = "string",
        },
    });
    
    example, err := akamai.NewPropertyIncludeActivation(ctx, "propertyIncludeActivationResource", &akamai.PropertyIncludeActivationArgs{
    	ContractId: pulumi.String("string"),
    	GroupId:    pulumi.String("string"),
    	IncludeId:  pulumi.String("string"),
    	Network:    pulumi.String("string"),
    	NotifyEmails: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Version:                     pulumi.Int(0),
    	AutoAcknowledgeRuleWarnings: pulumi.Bool(false),
    	ComplianceRecord: &akamai.PropertyIncludeActivationComplianceRecordArgs{
    		NoncomplianceReasonEmergency: &akamai.PropertyIncludeActivationComplianceRecordNoncomplianceReasonEmergencyArgs{
    			TicketId: pulumi.String("string"),
    		},
    		NoncomplianceReasonNoProductionTraffic: &akamai.PropertyIncludeActivationComplianceRecordNoncomplianceReasonNoProductionTrafficArgs{
    			TicketId: pulumi.String("string"),
    		},
    		NoncomplianceReasonNone: &akamai.PropertyIncludeActivationComplianceRecordNoncomplianceReasonNoneArgs{
    			CustomerEmail:  pulumi.String("string"),
    			PeerReviewedBy: pulumi.String("string"),
    			TicketId:       pulumi.String("string"),
    			UnitTested:     pulumi.Bool(false),
    		},
    		NoncomplianceReasonOther: &akamai.PropertyIncludeActivationComplianceRecordNoncomplianceReasonOtherArgs{
    			OtherNoncomplianceReason: pulumi.String("string"),
    			TicketId:                 pulumi.String("string"),
    		},
    	},
    	Note: pulumi.String("string"),
    	Timeouts: &akamai.PropertyIncludeActivationTimeoutsArgs{
    		Default: pulumi.String("string"),
    	},
    })
    
    var propertyIncludeActivationResource = new PropertyIncludeActivation("propertyIncludeActivationResource", PropertyIncludeActivationArgs.builder()        
        .contractId("string")
        .groupId("string")
        .includeId("string")
        .network("string")
        .notifyEmails("string")
        .version(0)
        .autoAcknowledgeRuleWarnings(false)
        .complianceRecord(PropertyIncludeActivationComplianceRecordArgs.builder()
            .noncomplianceReasonEmergency(PropertyIncludeActivationComplianceRecordNoncomplianceReasonEmergencyArgs.builder()
                .ticketId("string")
                .build())
            .noncomplianceReasonNoProductionTraffic(PropertyIncludeActivationComplianceRecordNoncomplianceReasonNoProductionTrafficArgs.builder()
                .ticketId("string")
                .build())
            .noncomplianceReasonNone(PropertyIncludeActivationComplianceRecordNoncomplianceReasonNoneArgs.builder()
                .customerEmail("string")
                .peerReviewedBy("string")
                .ticketId("string")
                .unitTested(false)
                .build())
            .noncomplianceReasonOther(PropertyIncludeActivationComplianceRecordNoncomplianceReasonOtherArgs.builder()
                .otherNoncomplianceReason("string")
                .ticketId("string")
                .build())
            .build())
        .note("string")
        .timeouts(PropertyIncludeActivationTimeoutsArgs.builder()
            .default_("string")
            .build())
        .build());
    
    property_include_activation_resource = akamai.PropertyIncludeActivation("propertyIncludeActivationResource",
        contract_id="string",
        group_id="string",
        include_id="string",
        network="string",
        notify_emails=["string"],
        version=0,
        auto_acknowledge_rule_warnings=False,
        compliance_record=akamai.PropertyIncludeActivationComplianceRecordArgs(
            noncompliance_reason_emergency=akamai.PropertyIncludeActivationComplianceRecordNoncomplianceReasonEmergencyArgs(
                ticket_id="string",
            ),
            noncompliance_reason_no_production_traffic=akamai.PropertyIncludeActivationComplianceRecordNoncomplianceReasonNoProductionTrafficArgs(
                ticket_id="string",
            ),
            noncompliance_reason_none=akamai.PropertyIncludeActivationComplianceRecordNoncomplianceReasonNoneArgs(
                customer_email="string",
                peer_reviewed_by="string",
                ticket_id="string",
                unit_tested=False,
            ),
            noncompliance_reason_other=akamai.PropertyIncludeActivationComplianceRecordNoncomplianceReasonOtherArgs(
                other_noncompliance_reason="string",
                ticket_id="string",
            ),
        ),
        note="string",
        timeouts=akamai.PropertyIncludeActivationTimeoutsArgs(
            default="string",
        ))
    
    const propertyIncludeActivationResource = new akamai.PropertyIncludeActivation("propertyIncludeActivationResource", {
        contractId: "string",
        groupId: "string",
        includeId: "string",
        network: "string",
        notifyEmails: ["string"],
        version: 0,
        autoAcknowledgeRuleWarnings: false,
        complianceRecord: {
            noncomplianceReasonEmergency: {
                ticketId: "string",
            },
            noncomplianceReasonNoProductionTraffic: {
                ticketId: "string",
            },
            noncomplianceReasonNone: {
                customerEmail: "string",
                peerReviewedBy: "string",
                ticketId: "string",
                unitTested: false,
            },
            noncomplianceReasonOther: {
                otherNoncomplianceReason: "string",
                ticketId: "string",
            },
        },
        note: "string",
        timeouts: {
            "default": "string",
        },
    });
    
    type: akamai:PropertyIncludeActivation
    properties:
        autoAcknowledgeRuleWarnings: false
        complianceRecord:
            noncomplianceReasonEmergency:
                ticketId: string
            noncomplianceReasonNoProductionTraffic:
                ticketId: string
            noncomplianceReasonNone:
                customerEmail: string
                peerReviewedBy: string
                ticketId: string
                unitTested: false
            noncomplianceReasonOther:
                otherNoncomplianceReason: string
                ticketId: string
        contractId: string
        groupId: string
        includeId: string
        network: string
        note: string
        notifyEmails:
            - string
        timeouts:
            default: string
        version: 0
    

    PropertyIncludeActivation 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 PropertyIncludeActivation resource accepts the following input properties:

    ContractId string
    The contract under which the include is activated
    GroupId string
    The group under which the include is activated
    IncludeId string
    The unique identifier of the include
    Network string
    The network for which the activation will be performed
    NotifyEmails List<string>
    The list of email addresses to notify about an activation status
    Version int
    The unique identifier of the include
    AutoAcknowledgeRuleWarnings bool
    Automatically acknowledge all rule warnings for activation and continue
    ComplianceRecord PropertyIncludeActivationComplianceRecord
    Provides an audit record when activating on a production network
    Note string
    The note to assign to a log message of the activation request
    Timeouts PropertyIncludeActivationTimeouts
    Enables to set timeout for processing
    ContractId string
    The contract under which the include is activated
    GroupId string
    The group under which the include is activated
    IncludeId string
    The unique identifier of the include
    Network string
    The network for which the activation will be performed
    NotifyEmails []string
    The list of email addresses to notify about an activation status
    Version int
    The unique identifier of the include
    AutoAcknowledgeRuleWarnings bool
    Automatically acknowledge all rule warnings for activation and continue
    ComplianceRecord PropertyIncludeActivationComplianceRecordArgs
    Provides an audit record when activating on a production network
    Note string
    The note to assign to a log message of the activation request
    Timeouts PropertyIncludeActivationTimeoutsArgs
    Enables to set timeout for processing
    contractId String
    The contract under which the include is activated
    groupId String
    The group under which the include is activated
    includeId String
    The unique identifier of the include
    network String
    The network for which the activation will be performed
    notifyEmails List<String>
    The list of email addresses to notify about an activation status
    version Integer
    The unique identifier of the include
    autoAcknowledgeRuleWarnings Boolean
    Automatically acknowledge all rule warnings for activation and continue
    complianceRecord PropertyIncludeActivationComplianceRecord
    Provides an audit record when activating on a production network
    note String
    The note to assign to a log message of the activation request
    timeouts PropertyIncludeActivationTimeouts
    Enables to set timeout for processing
    contractId string
    The contract under which the include is activated
    groupId string
    The group under which the include is activated
    includeId string
    The unique identifier of the include
    network string
    The network for which the activation will be performed
    notifyEmails string[]
    The list of email addresses to notify about an activation status
    version number
    The unique identifier of the include
    autoAcknowledgeRuleWarnings boolean
    Automatically acknowledge all rule warnings for activation and continue
    complianceRecord PropertyIncludeActivationComplianceRecord
    Provides an audit record when activating on a production network
    note string
    The note to assign to a log message of the activation request
    timeouts PropertyIncludeActivationTimeouts
    Enables to set timeout for processing
    contract_id str
    The contract under which the include is activated
    group_id str
    The group under which the include is activated
    include_id str
    The unique identifier of the include
    network str
    The network for which the activation will be performed
    notify_emails Sequence[str]
    The list of email addresses to notify about an activation status
    version int
    The unique identifier of the include
    auto_acknowledge_rule_warnings bool
    Automatically acknowledge all rule warnings for activation and continue
    compliance_record PropertyIncludeActivationComplianceRecordArgs
    Provides an audit record when activating on a production network
    note str
    The note to assign to a log message of the activation request
    timeouts PropertyIncludeActivationTimeoutsArgs
    Enables to set timeout for processing
    contractId String
    The contract under which the include is activated
    groupId String
    The group under which the include is activated
    includeId String
    The unique identifier of the include
    network String
    The network for which the activation will be performed
    notifyEmails List<String>
    The list of email addresses to notify about an activation status
    version Number
    The unique identifier of the include
    autoAcknowledgeRuleWarnings Boolean
    Automatically acknowledge all rule warnings for activation and continue
    complianceRecord Property Map
    Provides an audit record when activating on a production network
    note String
    The note to assign to a log message of the activation request
    timeouts Property Map
    Enables to set timeout for processing

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Validations string
    The validation information in JSON format
    Id string
    The provider-assigned unique ID for this managed resource.
    Validations string
    The validation information in JSON format
    id String
    The provider-assigned unique ID for this managed resource.
    validations String
    The validation information in JSON format
    id string
    The provider-assigned unique ID for this managed resource.
    validations string
    The validation information in JSON format
    id str
    The provider-assigned unique ID for this managed resource.
    validations str
    The validation information in JSON format
    id String
    The provider-assigned unique ID for this managed resource.
    validations String
    The validation information in JSON format

    Look up Existing PropertyIncludeActivation Resource

    Get an existing PropertyIncludeActivation 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?: PropertyIncludeActivationState, opts?: CustomResourceOptions): PropertyIncludeActivation
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            auto_acknowledge_rule_warnings: Optional[bool] = None,
            compliance_record: Optional[PropertyIncludeActivationComplianceRecordArgs] = None,
            contract_id: Optional[str] = None,
            group_id: Optional[str] = None,
            include_id: Optional[str] = None,
            network: Optional[str] = None,
            note: Optional[str] = None,
            notify_emails: Optional[Sequence[str]] = None,
            timeouts: Optional[PropertyIncludeActivationTimeoutsArgs] = None,
            validations: Optional[str] = None,
            version: Optional[int] = None) -> PropertyIncludeActivation
    func GetPropertyIncludeActivation(ctx *Context, name string, id IDInput, state *PropertyIncludeActivationState, opts ...ResourceOption) (*PropertyIncludeActivation, error)
    public static PropertyIncludeActivation Get(string name, Input<string> id, PropertyIncludeActivationState? state, CustomResourceOptions? opts = null)
    public static PropertyIncludeActivation get(String name, Output<String> id, PropertyIncludeActivationState 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:
    AutoAcknowledgeRuleWarnings bool
    Automatically acknowledge all rule warnings for activation and continue
    ComplianceRecord PropertyIncludeActivationComplianceRecord
    Provides an audit record when activating on a production network
    ContractId string
    The contract under which the include is activated
    GroupId string
    The group under which the include is activated
    IncludeId string
    The unique identifier of the include
    Network string
    The network for which the activation will be performed
    Note string
    The note to assign to a log message of the activation request
    NotifyEmails List<string>
    The list of email addresses to notify about an activation status
    Timeouts PropertyIncludeActivationTimeouts
    Enables to set timeout for processing
    Validations string
    The validation information in JSON format
    Version int
    The unique identifier of the include
    AutoAcknowledgeRuleWarnings bool
    Automatically acknowledge all rule warnings for activation and continue
    ComplianceRecord PropertyIncludeActivationComplianceRecordArgs
    Provides an audit record when activating on a production network
    ContractId string
    The contract under which the include is activated
    GroupId string
    The group under which the include is activated
    IncludeId string
    The unique identifier of the include
    Network string
    The network for which the activation will be performed
    Note string
    The note to assign to a log message of the activation request
    NotifyEmails []string
    The list of email addresses to notify about an activation status
    Timeouts PropertyIncludeActivationTimeoutsArgs
    Enables to set timeout for processing
    Validations string
    The validation information in JSON format
    Version int
    The unique identifier of the include
    autoAcknowledgeRuleWarnings Boolean
    Automatically acknowledge all rule warnings for activation and continue
    complianceRecord PropertyIncludeActivationComplianceRecord
    Provides an audit record when activating on a production network
    contractId String
    The contract under which the include is activated
    groupId String
    The group under which the include is activated
    includeId String
    The unique identifier of the include
    network String
    The network for which the activation will be performed
    note String
    The note to assign to a log message of the activation request
    notifyEmails List<String>
    The list of email addresses to notify about an activation status
    timeouts PropertyIncludeActivationTimeouts
    Enables to set timeout for processing
    validations String
    The validation information in JSON format
    version Integer
    The unique identifier of the include
    autoAcknowledgeRuleWarnings boolean
    Automatically acknowledge all rule warnings for activation and continue
    complianceRecord PropertyIncludeActivationComplianceRecord
    Provides an audit record when activating on a production network
    contractId string
    The contract under which the include is activated
    groupId string
    The group under which the include is activated
    includeId string
    The unique identifier of the include
    network string
    The network for which the activation will be performed
    note string
    The note to assign to a log message of the activation request
    notifyEmails string[]
    The list of email addresses to notify about an activation status
    timeouts PropertyIncludeActivationTimeouts
    Enables to set timeout for processing
    validations string
    The validation information in JSON format
    version number
    The unique identifier of the include
    auto_acknowledge_rule_warnings bool
    Automatically acknowledge all rule warnings for activation and continue
    compliance_record PropertyIncludeActivationComplianceRecordArgs
    Provides an audit record when activating on a production network
    contract_id str
    The contract under which the include is activated
    group_id str
    The group under which the include is activated
    include_id str
    The unique identifier of the include
    network str
    The network for which the activation will be performed
    note str
    The note to assign to a log message of the activation request
    notify_emails Sequence[str]
    The list of email addresses to notify about an activation status
    timeouts PropertyIncludeActivationTimeoutsArgs
    Enables to set timeout for processing
    validations str
    The validation information in JSON format
    version int
    The unique identifier of the include
    autoAcknowledgeRuleWarnings Boolean
    Automatically acknowledge all rule warnings for activation and continue
    complianceRecord Property Map
    Provides an audit record when activating on a production network
    contractId String
    The contract under which the include is activated
    groupId String
    The group under which the include is activated
    includeId String
    The unique identifier of the include
    network String
    The network for which the activation will be performed
    note String
    The note to assign to a log message of the activation request
    notifyEmails List<String>
    The list of email addresses to notify about an activation status
    timeouts Property Map
    Enables to set timeout for processing
    validations String
    The validation information in JSON format
    version Number
    The unique identifier of the include

    Supporting Types

    PropertyIncludeActivationComplianceRecord, PropertyIncludeActivationComplianceRecordArgs

    NoncomplianceReasonEmergency PropertyIncludeActivationComplianceRecordNoncomplianceReasonEmergency
    Provides an audit record when activating on a production network with noncompliance reason as EMERGENCY
    NoncomplianceReasonNoProductionTraffic PropertyIncludeActivationComplianceRecordNoncomplianceReasonNoProductionTraffic
    Provides an audit record when activating on a production network with noncompliance reason as NO_PRODUCTION_TRAFFIC
    NoncomplianceReasonNone PropertyIncludeActivationComplianceRecordNoncomplianceReasonNone
    Provides an audit record when activating on a production network with noncompliance reason as NONE
    NoncomplianceReasonOther PropertyIncludeActivationComplianceRecordNoncomplianceReasonOther
    Provides an audit record when activating on a production network with noncompliance reason as OTHER
    NoncomplianceReasonEmergency PropertyIncludeActivationComplianceRecordNoncomplianceReasonEmergency
    Provides an audit record when activating on a production network with noncompliance reason as EMERGENCY
    NoncomplianceReasonNoProductionTraffic PropertyIncludeActivationComplianceRecordNoncomplianceReasonNoProductionTraffic
    Provides an audit record when activating on a production network with noncompliance reason as NO_PRODUCTION_TRAFFIC
    NoncomplianceReasonNone PropertyIncludeActivationComplianceRecordNoncomplianceReasonNone
    Provides an audit record when activating on a production network with noncompliance reason as NONE
    NoncomplianceReasonOther PropertyIncludeActivationComplianceRecordNoncomplianceReasonOther
    Provides an audit record when activating on a production network with noncompliance reason as OTHER
    noncomplianceReasonEmergency PropertyIncludeActivationComplianceRecordNoncomplianceReasonEmergency
    Provides an audit record when activating on a production network with noncompliance reason as EMERGENCY
    noncomplianceReasonNoProductionTraffic PropertyIncludeActivationComplianceRecordNoncomplianceReasonNoProductionTraffic
    Provides an audit record when activating on a production network with noncompliance reason as NO_PRODUCTION_TRAFFIC
    noncomplianceReasonNone PropertyIncludeActivationComplianceRecordNoncomplianceReasonNone
    Provides an audit record when activating on a production network with noncompliance reason as NONE
    noncomplianceReasonOther PropertyIncludeActivationComplianceRecordNoncomplianceReasonOther
    Provides an audit record when activating on a production network with noncompliance reason as OTHER
    noncomplianceReasonEmergency PropertyIncludeActivationComplianceRecordNoncomplianceReasonEmergency
    Provides an audit record when activating on a production network with noncompliance reason as EMERGENCY
    noncomplianceReasonNoProductionTraffic PropertyIncludeActivationComplianceRecordNoncomplianceReasonNoProductionTraffic
    Provides an audit record when activating on a production network with noncompliance reason as NO_PRODUCTION_TRAFFIC
    noncomplianceReasonNone PropertyIncludeActivationComplianceRecordNoncomplianceReasonNone
    Provides an audit record when activating on a production network with noncompliance reason as NONE
    noncomplianceReasonOther PropertyIncludeActivationComplianceRecordNoncomplianceReasonOther
    Provides an audit record when activating on a production network with noncompliance reason as OTHER
    noncompliance_reason_emergency PropertyIncludeActivationComplianceRecordNoncomplianceReasonEmergency
    Provides an audit record when activating on a production network with noncompliance reason as EMERGENCY
    noncompliance_reason_no_production_traffic PropertyIncludeActivationComplianceRecordNoncomplianceReasonNoProductionTraffic
    Provides an audit record when activating on a production network with noncompliance reason as NO_PRODUCTION_TRAFFIC
    noncompliance_reason_none PropertyIncludeActivationComplianceRecordNoncomplianceReasonNone
    Provides an audit record when activating on a production network with noncompliance reason as NONE
    noncompliance_reason_other PropertyIncludeActivationComplianceRecordNoncomplianceReasonOther
    Provides an audit record when activating on a production network with noncompliance reason as OTHER
    noncomplianceReasonEmergency Property Map
    Provides an audit record when activating on a production network with noncompliance reason as EMERGENCY
    noncomplianceReasonNoProductionTraffic Property Map
    Provides an audit record when activating on a production network with noncompliance reason as NO_PRODUCTION_TRAFFIC
    noncomplianceReasonNone Property Map
    Provides an audit record when activating on a production network with noncompliance reason as NONE
    noncomplianceReasonOther Property Map
    Provides an audit record when activating on a production network with noncompliance reason as OTHER

    PropertyIncludeActivationComplianceRecordNoncomplianceReasonEmergency, PropertyIncludeActivationComplianceRecordNoncomplianceReasonEmergencyArgs

    TicketId string
    Identifies the ticket that describes the need for the activation
    TicketId string
    Identifies the ticket that describes the need for the activation
    ticketId String
    Identifies the ticket that describes the need for the activation
    ticketId string
    Identifies the ticket that describes the need for the activation
    ticket_id str
    Identifies the ticket that describes the need for the activation
    ticketId String
    Identifies the ticket that describes the need for the activation

    PropertyIncludeActivationComplianceRecordNoncomplianceReasonNoProductionTraffic, PropertyIncludeActivationComplianceRecordNoncomplianceReasonNoProductionTrafficArgs

    TicketId string
    Identifies the ticket that describes the need for the activation
    TicketId string
    Identifies the ticket that describes the need for the activation
    ticketId String
    Identifies the ticket that describes the need for the activation
    ticketId string
    Identifies the ticket that describes the need for the activation
    ticket_id str
    Identifies the ticket that describes the need for the activation
    ticketId String
    Identifies the ticket that describes the need for the activation

    PropertyIncludeActivationComplianceRecordNoncomplianceReasonNone, PropertyIncludeActivationComplianceRecordNoncomplianceReasonNoneArgs

    CustomerEmail string
    Identifies the customer
    PeerReviewedBy string
    Identifies person who has independently approved the activation request
    TicketId string
    Identifies the ticket that describes the need for the activation
    UnitTested bool
    Whether the metadata to activate has been fully tested
    CustomerEmail string
    Identifies the customer
    PeerReviewedBy string
    Identifies person who has independently approved the activation request
    TicketId string
    Identifies the ticket that describes the need for the activation
    UnitTested bool
    Whether the metadata to activate has been fully tested
    customerEmail String
    Identifies the customer
    peerReviewedBy String
    Identifies person who has independently approved the activation request
    ticketId String
    Identifies the ticket that describes the need for the activation
    unitTested Boolean
    Whether the metadata to activate has been fully tested
    customerEmail string
    Identifies the customer
    peerReviewedBy string
    Identifies person who has independently approved the activation request
    ticketId string
    Identifies the ticket that describes the need for the activation
    unitTested boolean
    Whether the metadata to activate has been fully tested
    customer_email str
    Identifies the customer
    peer_reviewed_by str
    Identifies person who has independently approved the activation request
    ticket_id str
    Identifies the ticket that describes the need for the activation
    unit_tested bool
    Whether the metadata to activate has been fully tested
    customerEmail String
    Identifies the customer
    peerReviewedBy String
    Identifies person who has independently approved the activation request
    ticketId String
    Identifies the ticket that describes the need for the activation
    unitTested Boolean
    Whether the metadata to activate has been fully tested

    PropertyIncludeActivationComplianceRecordNoncomplianceReasonOther, PropertyIncludeActivationComplianceRecordNoncomplianceReasonOtherArgs

    OtherNoncomplianceReason string
    Describes the reason why the activation must occur immediately, out of compliance with the standard procedure
    TicketId string
    Identifies the ticket that describes the need for the activation
    OtherNoncomplianceReason string
    Describes the reason why the activation must occur immediately, out of compliance with the standard procedure
    TicketId string
    Identifies the ticket that describes the need for the activation
    otherNoncomplianceReason String
    Describes the reason why the activation must occur immediately, out of compliance with the standard procedure
    ticketId String
    Identifies the ticket that describes the need for the activation
    otherNoncomplianceReason string
    Describes the reason why the activation must occur immediately, out of compliance with the standard procedure
    ticketId string
    Identifies the ticket that describes the need for the activation
    other_noncompliance_reason str
    Describes the reason why the activation must occur immediately, out of compliance with the standard procedure
    ticket_id str
    Identifies the ticket that describes the need for the activation
    otherNoncomplianceReason String
    Describes the reason why the activation must occur immediately, out of compliance with the standard procedure
    ticketId String
    Identifies the ticket that describes the need for the activation

    PropertyIncludeActivationTimeouts, PropertyIncludeActivationTimeoutsArgs

    Default string
    Default string
    default_ String
    default string
    default String

    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.1.0 published on Wednesday, Apr 24, 2024 by Pulumi