Akamai v7.4.1 published on Tuesday, Sep 24, 2024 by Pulumi
akamai.PropertyIncludeActivation
Explore with Pulumi AI
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.
Constructor 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:
- Contract
Id string - The contract under which the include is activated
- Group
Id string - The group under which the include is activated
- Include
Id string - The unique identifier of the include
- Network string
- The network for which the activation will be performed
- Notify
Emails List<string> - The list of email addresses to notify about an activation status
- Version int
- The unique identifier of the include
- Auto
Acknowledge boolRule Warnings - Automatically acknowledge all rule warnings for activation and continue
- Compliance
Record PropertyInclude Activation Compliance Record - 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
Include Activation Timeouts - Enables to set timeout for processing
- Contract
Id string - The contract under which the include is activated
- Group
Id string - The group under which the include is activated
- Include
Id string - The unique identifier of the include
- Network string
- The network for which the activation will be performed
- Notify
Emails []string - The list of email addresses to notify about an activation status
- Version int
- The unique identifier of the include
- Auto
Acknowledge boolRule Warnings - Automatically acknowledge all rule warnings for activation and continue
- Compliance
Record PropertyInclude Activation Compliance Record Args - 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
Include Activation Timeouts Args - Enables to set timeout for processing
- contract
Id String - The contract under which the include is activated
- group
Id String - The group under which the include is activated
- include
Id String - The unique identifier of the include
- network String
- The network for which the activation will be performed
- notify
Emails List<String> - The list of email addresses to notify about an activation status
- version Integer
- The unique identifier of the include
- auto
Acknowledge BooleanRule Warnings - Automatically acknowledge all rule warnings for activation and continue
- compliance
Record PropertyInclude Activation Compliance Record - 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
Include Activation Timeouts - Enables to set timeout for processing
- contract
Id string - The contract under which the include is activated
- group
Id string - The group under which the include is activated
- include
Id string - The unique identifier of the include
- network string
- The network for which the activation will be performed
- notify
Emails string[] - The list of email addresses to notify about an activation status
- version number
- The unique identifier of the include
- auto
Acknowledge booleanRule Warnings - Automatically acknowledge all rule warnings for activation and continue
- compliance
Record PropertyInclude Activation Compliance Record - 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
Include Activation Timeouts - 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_ boolrule_ warnings - Automatically acknowledge all rule warnings for activation and continue
- compliance_
record PropertyInclude Activation Compliance Record Args - 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
Property
Include Activation Timeouts Args - Enables to set timeout for processing
- contract
Id String - The contract under which the include is activated
- group
Id String - The group under which the include is activated
- include
Id String - The unique identifier of the include
- network String
- The network for which the activation will be performed
- notify
Emails List<String> - The list of email addresses to notify about an activation status
- version Number
- The unique identifier of the include
- auto
Acknowledge BooleanRule Warnings - Automatically acknowledge all rule warnings for activation and continue
- compliance
Record 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.
- Auto
Acknowledge boolRule Warnings - Automatically acknowledge all rule warnings for activation and continue
- Compliance
Record PropertyInclude Activation Compliance Record - Provides an audit record when activating on a production network
- Contract
Id string - The contract under which the include is activated
- Group
Id string - The group under which the include is activated
- Include
Id 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
- Notify
Emails List<string> - The list of email addresses to notify about an activation status
- Timeouts
Property
Include Activation Timeouts - Enables to set timeout for processing
- Validations string
- The validation information in JSON format
- Version int
- The unique identifier of the include
- Auto
Acknowledge boolRule Warnings - Automatically acknowledge all rule warnings for activation and continue
- Compliance
Record PropertyInclude Activation Compliance Record Args - Provides an audit record when activating on a production network
- Contract
Id string - The contract under which the include is activated
- Group
Id string - The group under which the include is activated
- Include
Id 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
- Notify
Emails []string - The list of email addresses to notify about an activation status
- Timeouts
Property
Include Activation Timeouts Args - Enables to set timeout for processing
- Validations string
- The validation information in JSON format
- Version int
- The unique identifier of the include
- auto
Acknowledge BooleanRule Warnings - Automatically acknowledge all rule warnings for activation and continue
- compliance
Record PropertyInclude Activation Compliance Record - Provides an audit record when activating on a production network
- contract
Id String - The contract under which the include is activated
- group
Id String - The group under which the include is activated
- include
Id 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
- notify
Emails List<String> - The list of email addresses to notify about an activation status
- timeouts
Property
Include Activation Timeouts - Enables to set timeout for processing
- validations String
- The validation information in JSON format
- version Integer
- The unique identifier of the include
- auto
Acknowledge booleanRule Warnings - Automatically acknowledge all rule warnings for activation and continue
- compliance
Record PropertyInclude Activation Compliance Record - Provides an audit record when activating on a production network
- contract
Id string - The contract under which the include is activated
- group
Id string - The group under which the include is activated
- include
Id 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
- notify
Emails string[] - The list of email addresses to notify about an activation status
- timeouts
Property
Include Activation Timeouts - Enables to set timeout for processing
- validations string
- The validation information in JSON format
- version number
- The unique identifier of the include
- auto_
acknowledge_ boolrule_ warnings - Automatically acknowledge all rule warnings for activation and continue
- compliance_
record PropertyInclude Activation Compliance Record Args - 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
Property
Include Activation Timeouts Args - Enables to set timeout for processing
- validations str
- The validation information in JSON format
- version int
- The unique identifier of the include
- auto
Acknowledge BooleanRule Warnings - Automatically acknowledge all rule warnings for activation and continue
- compliance
Record Property Map - Provides an audit record when activating on a production network
- contract
Id String - The contract under which the include is activated
- group
Id String - The group under which the include is activated
- include
Id 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
- notify
Emails 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
- Noncompliance
Reason PropertyEmergency Include Activation Compliance Record Noncompliance Reason Emergency - Provides an audit record when activating on a production network with noncompliance reason as
EMERGENCY
- Noncompliance
Reason PropertyNo Production Traffic Include Activation Compliance Record Noncompliance Reason No Production Traffic - Provides an audit record when activating on a production network with noncompliance reason as
NO_PRODUCTION_TRAFFIC
- Noncompliance
Reason PropertyNone Include Activation Compliance Record Noncompliance Reason None - Provides an audit record when activating on a production network with noncompliance reason as
NONE
- Noncompliance
Reason PropertyOther Include Activation Compliance Record Noncompliance Reason Other - Provides an audit record when activating on a production network with noncompliance reason as
OTHER
- Noncompliance
Reason PropertyEmergency Include Activation Compliance Record Noncompliance Reason Emergency - Provides an audit record when activating on a production network with noncompliance reason as
EMERGENCY
- Noncompliance
Reason PropertyNo Production Traffic Include Activation Compliance Record Noncompliance Reason No Production Traffic - Provides an audit record when activating on a production network with noncompliance reason as
NO_PRODUCTION_TRAFFIC
- Noncompliance
Reason PropertyNone Include Activation Compliance Record Noncompliance Reason None - Provides an audit record when activating on a production network with noncompliance reason as
NONE
- Noncompliance
Reason PropertyOther Include Activation Compliance Record Noncompliance Reason Other - Provides an audit record when activating on a production network with noncompliance reason as
OTHER
- noncompliance
Reason PropertyEmergency Include Activation Compliance Record Noncompliance Reason Emergency - Provides an audit record when activating on a production network with noncompliance reason as
EMERGENCY
- noncompliance
Reason PropertyNo Production Traffic Include Activation Compliance Record Noncompliance Reason No Production Traffic - Provides an audit record when activating on a production network with noncompliance reason as
NO_PRODUCTION_TRAFFIC
- noncompliance
Reason PropertyNone Include Activation Compliance Record Noncompliance Reason None - Provides an audit record when activating on a production network with noncompliance reason as
NONE
- noncompliance
Reason PropertyOther Include Activation Compliance Record Noncompliance Reason Other - Provides an audit record when activating on a production network with noncompliance reason as
OTHER
- noncompliance
Reason PropertyEmergency Include Activation Compliance Record Noncompliance Reason Emergency - Provides an audit record when activating on a production network with noncompliance reason as
EMERGENCY
- noncompliance
Reason PropertyNo Production Traffic Include Activation Compliance Record Noncompliance Reason No Production Traffic - Provides an audit record when activating on a production network with noncompliance reason as
NO_PRODUCTION_TRAFFIC
- noncompliance
Reason PropertyNone Include Activation Compliance Record Noncompliance Reason None - Provides an audit record when activating on a production network with noncompliance reason as
NONE
- noncompliance
Reason PropertyOther Include Activation Compliance Record Noncompliance Reason Other - Provides an audit record when activating on a production network with noncompliance reason as
OTHER
- noncompliance_
reason_ Propertyemergency Include Activation Compliance Record Noncompliance Reason Emergency - Provides an audit record when activating on a production network with noncompliance reason as
EMERGENCY
- noncompliance_
reason_ Propertyno_ production_ traffic Include Activation Compliance Record Noncompliance Reason No Production Traffic - Provides an audit record when activating on a production network with noncompliance reason as
NO_PRODUCTION_TRAFFIC
- noncompliance_
reason_ Propertynone Include Activation Compliance Record Noncompliance Reason None - Provides an audit record when activating on a production network with noncompliance reason as
NONE
- noncompliance_
reason_ Propertyother Include Activation Compliance Record Noncompliance Reason Other - Provides an audit record when activating on a production network with noncompliance reason as
OTHER
- noncompliance
Reason Property MapEmergency - Provides an audit record when activating on a production network with noncompliance reason as
EMERGENCY
- noncompliance
Reason Property MapNo Production Traffic - Provides an audit record when activating on a production network with noncompliance reason as
NO_PRODUCTION_TRAFFIC
- noncompliance
Reason Property MapNone - Provides an audit record when activating on a production network with noncompliance reason as
NONE
- noncompliance
Reason Property MapOther - Provides an audit record when activating on a production network with noncompliance reason as
OTHER
PropertyIncludeActivationComplianceRecordNoncomplianceReasonEmergency, PropertyIncludeActivationComplianceRecordNoncomplianceReasonEmergencyArgs
- Ticket
Id string - Identifies the ticket that describes the need for the activation
- Ticket
Id string - Identifies the ticket that describes the need for the activation
- ticket
Id String - Identifies the ticket that describes the need for the activation
- ticket
Id string - Identifies the ticket that describes the need for the activation
- ticket_
id str - Identifies the ticket that describes the need for the activation
- ticket
Id String - Identifies the ticket that describes the need for the activation
PropertyIncludeActivationComplianceRecordNoncomplianceReasonNoProductionTraffic, PropertyIncludeActivationComplianceRecordNoncomplianceReasonNoProductionTrafficArgs
- Ticket
Id string - Identifies the ticket that describes the need for the activation
- Ticket
Id string - Identifies the ticket that describes the need for the activation
- ticket
Id String - Identifies the ticket that describes the need for the activation
- ticket
Id string - Identifies the ticket that describes the need for the activation
- ticket_
id str - Identifies the ticket that describes the need for the activation
- ticket
Id String - Identifies the ticket that describes the need for the activation
PropertyIncludeActivationComplianceRecordNoncomplianceReasonNone, PropertyIncludeActivationComplianceRecordNoncomplianceReasonNoneArgs
- Customer
Email string - Identifies the customer
- Peer
Reviewed stringBy - Identifies person who has independently approved the activation request
- Ticket
Id string - Identifies the ticket that describes the need for the activation
- Unit
Tested bool - Whether the metadata to activate has been fully tested
- Customer
Email string - Identifies the customer
- Peer
Reviewed stringBy - Identifies person who has independently approved the activation request
- Ticket
Id string - Identifies the ticket that describes the need for the activation
- Unit
Tested bool - Whether the metadata to activate has been fully tested
- customer
Email String - Identifies the customer
- peer
Reviewed StringBy - Identifies person who has independently approved the activation request
- ticket
Id String - Identifies the ticket that describes the need for the activation
- unit
Tested Boolean - Whether the metadata to activate has been fully tested
- customer
Email string - Identifies the customer
- peer
Reviewed stringBy - Identifies person who has independently approved the activation request
- ticket
Id string - Identifies the ticket that describes the need for the activation
- unit
Tested boolean - Whether the metadata to activate has been fully tested
- customer_
email str - Identifies the customer
- peer_
reviewed_ strby - 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
- customer
Email String - Identifies the customer
- peer
Reviewed StringBy - Identifies person who has independently approved the activation request
- ticket
Id String - Identifies the ticket that describes the need for the activation
- unit
Tested Boolean - Whether the metadata to activate has been fully tested
PropertyIncludeActivationComplianceRecordNoncomplianceReasonOther, PropertyIncludeActivationComplianceRecordNoncomplianceReasonOtherArgs
- Other
Noncompliance stringReason - Describes the reason why the activation must occur immediately, out of compliance with the standard procedure
- Ticket
Id string - Identifies the ticket that describes the need for the activation
- Other
Noncompliance stringReason - Describes the reason why the activation must occur immediately, out of compliance with the standard procedure
- Ticket
Id string - Identifies the ticket that describes the need for the activation
- other
Noncompliance StringReason - Describes the reason why the activation must occur immediately, out of compliance with the standard procedure
- ticket
Id String - Identifies the ticket that describes the need for the activation
- other
Noncompliance stringReason - Describes the reason why the activation must occur immediately, out of compliance with the standard procedure
- ticket
Id string - Identifies the ticket that describes the need for the activation
- other_
noncompliance_ strreason - 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
- other
Noncompliance StringReason - Describes the reason why the activation must occur immediately, out of compliance with the standard procedure
- ticket
Id String - Identifies the ticket that describes the need for the activation
PropertyIncludeActivationTimeouts, PropertyIncludeActivationTimeoutsArgs
- Default string
- Default string
- default_ String
- default string
- default str
- default String
Package Details
- Repository
- Akamai pulumi/pulumi-akamai
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
akamai
Terraform Provider.