akamai.PropertyActivation
Explore with Pulumi AI
Create PropertyActivation Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PropertyActivation(name: string, args: PropertyActivationArgs, opts?: CustomResourceOptions);
@overload
def PropertyActivation(resource_name: str,
args: PropertyActivationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PropertyActivation(resource_name: str,
opts: Optional[ResourceOptions] = None,
contacts: Optional[Sequence[str]] = None,
property_id: Optional[str] = None,
version: Optional[int] = None,
activation_id: Optional[str] = None,
auto_acknowledge_rule_warnings: Optional[bool] = None,
compliance_record: Optional[PropertyActivationComplianceRecordArgs] = None,
network: Optional[str] = None,
note: Optional[str] = None,
timeouts: Optional[PropertyActivationTimeoutsArgs] = None)
func NewPropertyActivation(ctx *Context, name string, args PropertyActivationArgs, opts ...ResourceOption) (*PropertyActivation, error)
public PropertyActivation(string name, PropertyActivationArgs args, CustomResourceOptions? opts = null)
public PropertyActivation(String name, PropertyActivationArgs args)
public PropertyActivation(String name, PropertyActivationArgs args, CustomResourceOptions options)
type: akamai:PropertyActivation
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 PropertyActivationArgs
- 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 PropertyActivationArgs
- 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 PropertyActivationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PropertyActivationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PropertyActivationArgs
- 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 propertyActivationResource = new Akamai.PropertyActivation("propertyActivationResource", new()
{
Contacts = new[]
{
"string",
},
PropertyId = "string",
Version = 0,
ActivationId = "string",
AutoAcknowledgeRuleWarnings = false,
ComplianceRecord = new Akamai.Inputs.PropertyActivationComplianceRecordArgs
{
NoncomplianceReasonEmergency = new Akamai.Inputs.PropertyActivationComplianceRecordNoncomplianceReasonEmergencyArgs
{
TicketId = "string",
},
NoncomplianceReasonNoProductionTraffic = new Akamai.Inputs.PropertyActivationComplianceRecordNoncomplianceReasonNoProductionTrafficArgs
{
TicketId = "string",
},
NoncomplianceReasonNone = new Akamai.Inputs.PropertyActivationComplianceRecordNoncomplianceReasonNoneArgs
{
CustomerEmail = "string",
PeerReviewedBy = "string",
TicketId = "string",
UnitTested = false,
},
NoncomplianceReasonOther = new Akamai.Inputs.PropertyActivationComplianceRecordNoncomplianceReasonOtherArgs
{
OtherNoncomplianceReason = "string",
TicketId = "string",
},
},
Network = "string",
Note = "string",
Timeouts = new Akamai.Inputs.PropertyActivationTimeoutsArgs
{
Default = "string",
},
});
example, err := akamai.NewPropertyActivation(ctx, "propertyActivationResource", &akamai.PropertyActivationArgs{
Contacts: pulumi.StringArray{
pulumi.String("string"),
},
PropertyId: pulumi.String("string"),
Version: pulumi.Int(0),
ActivationId: pulumi.String("string"),
AutoAcknowledgeRuleWarnings: pulumi.Bool(false),
ComplianceRecord: &akamai.PropertyActivationComplianceRecordArgs{
NoncomplianceReasonEmergency: &akamai.PropertyActivationComplianceRecordNoncomplianceReasonEmergencyArgs{
TicketId: pulumi.String("string"),
},
NoncomplianceReasonNoProductionTraffic: &akamai.PropertyActivationComplianceRecordNoncomplianceReasonNoProductionTrafficArgs{
TicketId: pulumi.String("string"),
},
NoncomplianceReasonNone: &akamai.PropertyActivationComplianceRecordNoncomplianceReasonNoneArgs{
CustomerEmail: pulumi.String("string"),
PeerReviewedBy: pulumi.String("string"),
TicketId: pulumi.String("string"),
UnitTested: pulumi.Bool(false),
},
NoncomplianceReasonOther: &akamai.PropertyActivationComplianceRecordNoncomplianceReasonOtherArgs{
OtherNoncomplianceReason: pulumi.String("string"),
TicketId: pulumi.String("string"),
},
},
Network: pulumi.String("string"),
Note: pulumi.String("string"),
Timeouts: &akamai.PropertyActivationTimeoutsArgs{
Default: pulumi.String("string"),
},
})
var propertyActivationResource = new PropertyActivation("propertyActivationResource", PropertyActivationArgs.builder()
.contacts("string")
.propertyId("string")
.version(0)
.activationId("string")
.autoAcknowledgeRuleWarnings(false)
.complianceRecord(PropertyActivationComplianceRecordArgs.builder()
.noncomplianceReasonEmergency(PropertyActivationComplianceRecordNoncomplianceReasonEmergencyArgs.builder()
.ticketId("string")
.build())
.noncomplianceReasonNoProductionTraffic(PropertyActivationComplianceRecordNoncomplianceReasonNoProductionTrafficArgs.builder()
.ticketId("string")
.build())
.noncomplianceReasonNone(PropertyActivationComplianceRecordNoncomplianceReasonNoneArgs.builder()
.customerEmail("string")
.peerReviewedBy("string")
.ticketId("string")
.unitTested(false)
.build())
.noncomplianceReasonOther(PropertyActivationComplianceRecordNoncomplianceReasonOtherArgs.builder()
.otherNoncomplianceReason("string")
.ticketId("string")
.build())
.build())
.network("string")
.note("string")
.timeouts(PropertyActivationTimeoutsArgs.builder()
.default_("string")
.build())
.build());
property_activation_resource = akamai.PropertyActivation("propertyActivationResource",
contacts=["string"],
property_id="string",
version=0,
activation_id="string",
auto_acknowledge_rule_warnings=False,
compliance_record={
"noncompliance_reason_emergency": {
"ticket_id": "string",
},
"noncompliance_reason_no_production_traffic": {
"ticket_id": "string",
},
"noncompliance_reason_none": {
"customer_email": "string",
"peer_reviewed_by": "string",
"ticket_id": "string",
"unit_tested": False,
},
"noncompliance_reason_other": {
"other_noncompliance_reason": "string",
"ticket_id": "string",
},
},
network="string",
note="string",
timeouts={
"default": "string",
})
const propertyActivationResource = new akamai.PropertyActivation("propertyActivationResource", {
contacts: ["string"],
propertyId: "string",
version: 0,
activationId: "string",
autoAcknowledgeRuleWarnings: false,
complianceRecord: {
noncomplianceReasonEmergency: {
ticketId: "string",
},
noncomplianceReasonNoProductionTraffic: {
ticketId: "string",
},
noncomplianceReasonNone: {
customerEmail: "string",
peerReviewedBy: "string",
ticketId: "string",
unitTested: false,
},
noncomplianceReasonOther: {
otherNoncomplianceReason: "string",
ticketId: "string",
},
},
network: "string",
note: "string",
timeouts: {
"default": "string",
},
});
type: akamai:PropertyActivation
properties:
activationId: string
autoAcknowledgeRuleWarnings: false
complianceRecord:
noncomplianceReasonEmergency:
ticketId: string
noncomplianceReasonNoProductionTraffic:
ticketId: string
noncomplianceReasonNone:
customerEmail: string
peerReviewedBy: string
ticketId: string
unitTested: false
noncomplianceReasonOther:
otherNoncomplianceReason: string
ticketId: string
contacts:
- string
network: string
note: string
propertyId: string
timeouts:
default: string
version: 0
PropertyActivation 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 PropertyActivation resource accepts the following input properties:
- Contacts List<string>
- One or more email addresses to which to send activation status changes.
- Property
Id string - Your property's ID, including the prp_ prefix.
- Version int
- Your property's version number.
- Activation
Id string - The ID given to the activation event while it's in progress.
- Auto
Acknowledge boolRule Warnings - Automatically acknowledge all rule warnings for activation to continue. Default is false
- Compliance
Record PropertyActivation Compliance Record - Provides an audit record when activating on a production network.
- Network string
- Akamai network in which to activate your property, either STAGING or PRODUCTION. The default is STAGING.
- Note string
- Assigns a log message to the activation request.
- Timeouts
Property
Activation Timeouts - Enables to set timeout for processing.
- Contacts []string
- One or more email addresses to which to send activation status changes.
- Property
Id string - Your property's ID, including the prp_ prefix.
- Version int
- Your property's version number.
- Activation
Id string - The ID given to the activation event while it's in progress.
- Auto
Acknowledge boolRule Warnings - Automatically acknowledge all rule warnings for activation to continue. Default is false
- Compliance
Record PropertyActivation Compliance Record Args - Provides an audit record when activating on a production network.
- Network string
- Akamai network in which to activate your property, either STAGING or PRODUCTION. The default is STAGING.
- Note string
- Assigns a log message to the activation request.
- Timeouts
Property
Activation Timeouts Args - Enables to set timeout for processing.
- contacts List<String>
- One or more email addresses to which to send activation status changes.
- property
Id String - Your property's ID, including the prp_ prefix.
- version Integer
- Your property's version number.
- activation
Id String - The ID given to the activation event while it's in progress.
- auto
Acknowledge BooleanRule Warnings - Automatically acknowledge all rule warnings for activation to continue. Default is false
- compliance
Record PropertyActivation Compliance Record - Provides an audit record when activating on a production network.
- network String
- Akamai network in which to activate your property, either STAGING or PRODUCTION. The default is STAGING.
- note String
- Assigns a log message to the activation request.
- timeouts
Property
Activation Timeouts - Enables to set timeout for processing.
- contacts string[]
- One or more email addresses to which to send activation status changes.
- property
Id string - Your property's ID, including the prp_ prefix.
- version number
- Your property's version number.
- activation
Id string - The ID given to the activation event while it's in progress.
- auto
Acknowledge booleanRule Warnings - Automatically acknowledge all rule warnings for activation to continue. Default is false
- compliance
Record PropertyActivation Compliance Record - Provides an audit record when activating on a production network.
- network string
- Akamai network in which to activate your property, either STAGING or PRODUCTION. The default is STAGING.
- note string
- Assigns a log message to the activation request.
- timeouts
Property
Activation Timeouts - Enables to set timeout for processing.
- contacts Sequence[str]
- One or more email addresses to which to send activation status changes.
- property_
id str - Your property's ID, including the prp_ prefix.
- version int
- Your property's version number.
- activation_
id str - The ID given to the activation event while it's in progress.
- auto_
acknowledge_ boolrule_ warnings - Automatically acknowledge all rule warnings for activation to continue. Default is false
- compliance_
record PropertyActivation Compliance Record Args - Provides an audit record when activating on a production network.
- network str
- Akamai network in which to activate your property, either STAGING or PRODUCTION. The default is STAGING.
- note str
- Assigns a log message to the activation request.
- timeouts
Property
Activation Timeouts Args - Enables to set timeout for processing.
- contacts List<String>
- One or more email addresses to which to send activation status changes.
- property
Id String - Your property's ID, including the prp_ prefix.
- version Number
- Your property's version number.
- activation
Id String - The ID given to the activation event while it's in progress.
- auto
Acknowledge BooleanRule Warnings - Automatically acknowledge all rule warnings for activation to continue. Default is false
- compliance
Record Property Map - Provides an audit record when activating on a production network.
- network String
- Akamai network in which to activate your property, either STAGING or PRODUCTION. The default is STAGING.
- note String
- Assigns a log message to the activation request.
- timeouts Property Map
- Enables to set timeout for processing.
Outputs
All input properties are implicitly available as output properties. Additionally, the PropertyActivation resource produces the following output properties:
- Errors string
- Errors returned during activation.
- Id string
- The provider-assigned unique ID for this managed resource.
- Rule
Errors List<PropertyActivation Rule Error> - Any errors returned by the API about rules.
- Status string
- The property version's activation status on the given network.
- Warnings string
- Warnings returned during activation.
- Errors string
- Errors returned during activation.
- Id string
- The provider-assigned unique ID for this managed resource.
- Rule
Errors []PropertyActivation Rule Error - Any errors returned by the API about rules.
- Status string
- The property version's activation status on the given network.
- Warnings string
- Warnings returned during activation.
- errors String
- Errors returned during activation.
- id String
- The provider-assigned unique ID for this managed resource.
- rule
Errors List<PropertyActivation Rule Error> - Any errors returned by the API about rules.
- status String
- The property version's activation status on the given network.
- warnings String
- Warnings returned during activation.
- errors string
- Errors returned during activation.
- id string
- The provider-assigned unique ID for this managed resource.
- rule
Errors PropertyActivation Rule Error[] - Any errors returned by the API about rules.
- status string
- The property version's activation status on the given network.
- warnings string
- Warnings returned during activation.
- errors str
- Errors returned during activation.
- id str
- The provider-assigned unique ID for this managed resource.
- rule_
errors Sequence[PropertyActivation Rule Error] - Any errors returned by the API about rules.
- status str
- The property version's activation status on the given network.
- warnings str
- Warnings returned during activation.
- errors String
- Errors returned during activation.
- id String
- The provider-assigned unique ID for this managed resource.
- rule
Errors List<Property Map> - Any errors returned by the API about rules.
- status String
- The property version's activation status on the given network.
- warnings String
- Warnings returned during activation.
Look up Existing PropertyActivation Resource
Get an existing PropertyActivation 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?: PropertyActivationState, opts?: CustomResourceOptions): PropertyActivation
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
activation_id: Optional[str] = None,
auto_acknowledge_rule_warnings: Optional[bool] = None,
compliance_record: Optional[PropertyActivationComplianceRecordArgs] = None,
contacts: Optional[Sequence[str]] = None,
errors: Optional[str] = None,
network: Optional[str] = None,
note: Optional[str] = None,
property_id: Optional[str] = None,
rule_errors: Optional[Sequence[PropertyActivationRuleErrorArgs]] = None,
status: Optional[str] = None,
timeouts: Optional[PropertyActivationTimeoutsArgs] = None,
version: Optional[int] = None,
warnings: Optional[str] = None) -> PropertyActivation
func GetPropertyActivation(ctx *Context, name string, id IDInput, state *PropertyActivationState, opts ...ResourceOption) (*PropertyActivation, error)
public static PropertyActivation Get(string name, Input<string> id, PropertyActivationState? state, CustomResourceOptions? opts = null)
public static PropertyActivation get(String name, Output<String> id, PropertyActivationState state, CustomResourceOptions options)
resources: _: type: akamai:PropertyActivation get: id: ${id}
- 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.
- Activation
Id string - The ID given to the activation event while it's in progress.
- Auto
Acknowledge boolRule Warnings - Automatically acknowledge all rule warnings for activation to continue. Default is false
- Compliance
Record PropertyActivation Compliance Record - Provides an audit record when activating on a production network.
- Contacts List<string>
- One or more email addresses to which to send activation status changes.
- Errors string
- Errors returned during activation.
- Network string
- Akamai network in which to activate your property, either STAGING or PRODUCTION. The default is STAGING.
- Note string
- Assigns a log message to the activation request.
- Property
Id string - Your property's ID, including the prp_ prefix.
- Rule
Errors List<PropertyActivation Rule Error> - Any errors returned by the API about rules.
- Status string
- The property version's activation status on the given network.
- Timeouts
Property
Activation Timeouts - Enables to set timeout for processing.
- Version int
- Your property's version number.
- Warnings string
- Warnings returned during activation.
- Activation
Id string - The ID given to the activation event while it's in progress.
- Auto
Acknowledge boolRule Warnings - Automatically acknowledge all rule warnings for activation to continue. Default is false
- Compliance
Record PropertyActivation Compliance Record Args - Provides an audit record when activating on a production network.
- Contacts []string
- One or more email addresses to which to send activation status changes.
- Errors string
- Errors returned during activation.
- Network string
- Akamai network in which to activate your property, either STAGING or PRODUCTION. The default is STAGING.
- Note string
- Assigns a log message to the activation request.
- Property
Id string - Your property's ID, including the prp_ prefix.
- Rule
Errors []PropertyActivation Rule Error Args - Any errors returned by the API about rules.
- Status string
- The property version's activation status on the given network.
- Timeouts
Property
Activation Timeouts Args - Enables to set timeout for processing.
- Version int
- Your property's version number.
- Warnings string
- Warnings returned during activation.
- activation
Id String - The ID given to the activation event while it's in progress.
- auto
Acknowledge BooleanRule Warnings - Automatically acknowledge all rule warnings for activation to continue. Default is false
- compliance
Record PropertyActivation Compliance Record - Provides an audit record when activating on a production network.
- contacts List<String>
- One or more email addresses to which to send activation status changes.
- errors String
- Errors returned during activation.
- network String
- Akamai network in which to activate your property, either STAGING or PRODUCTION. The default is STAGING.
- note String
- Assigns a log message to the activation request.
- property
Id String - Your property's ID, including the prp_ prefix.
- rule
Errors List<PropertyActivation Rule Error> - Any errors returned by the API about rules.
- status String
- The property version's activation status on the given network.
- timeouts
Property
Activation Timeouts - Enables to set timeout for processing.
- version Integer
- Your property's version number.
- warnings String
- Warnings returned during activation.
- activation
Id string - The ID given to the activation event while it's in progress.
- auto
Acknowledge booleanRule Warnings - Automatically acknowledge all rule warnings for activation to continue. Default is false
- compliance
Record PropertyActivation Compliance Record - Provides an audit record when activating on a production network.
- contacts string[]
- One or more email addresses to which to send activation status changes.
- errors string
- Errors returned during activation.
- network string
- Akamai network in which to activate your property, either STAGING or PRODUCTION. The default is STAGING.
- note string
- Assigns a log message to the activation request.
- property
Id string - Your property's ID, including the prp_ prefix.
- rule
Errors PropertyActivation Rule Error[] - Any errors returned by the API about rules.
- status string
- The property version's activation status on the given network.
- timeouts
Property
Activation Timeouts - Enables to set timeout for processing.
- version number
- Your property's version number.
- warnings string
- Warnings returned during activation.
- activation_
id str - The ID given to the activation event while it's in progress.
- auto_
acknowledge_ boolrule_ warnings - Automatically acknowledge all rule warnings for activation to continue. Default is false
- compliance_
record PropertyActivation Compliance Record Args - Provides an audit record when activating on a production network.
- contacts Sequence[str]
- One or more email addresses to which to send activation status changes.
- errors str
- Errors returned during activation.
- network str
- Akamai network in which to activate your property, either STAGING or PRODUCTION. The default is STAGING.
- note str
- Assigns a log message to the activation request.
- property_
id str - Your property's ID, including the prp_ prefix.
- rule_
errors Sequence[PropertyActivation Rule Error Args] - Any errors returned by the API about rules.
- status str
- The property version's activation status on the given network.
- timeouts
Property
Activation Timeouts Args - Enables to set timeout for processing.
- version int
- Your property's version number.
- warnings str
- Warnings returned during activation.
- activation
Id String - The ID given to the activation event while it's in progress.
- auto
Acknowledge BooleanRule Warnings - Automatically acknowledge all rule warnings for activation to continue. Default is false
- compliance
Record Property Map - Provides an audit record when activating on a production network.
- contacts List<String>
- One or more email addresses to which to send activation status changes.
- errors String
- Errors returned during activation.
- network String
- Akamai network in which to activate your property, either STAGING or PRODUCTION. The default is STAGING.
- note String
- Assigns a log message to the activation request.
- property
Id String - Your property's ID, including the prp_ prefix.
- rule
Errors List<Property Map> - Any errors returned by the API about rules.
- status String
- The property version's activation status on the given network.
- timeouts Property Map
- Enables to set timeout for processing.
- version Number
- Your property's version number.
- warnings String
- Warnings returned during activation.
Supporting Types
PropertyActivationComplianceRecord, PropertyActivationComplianceRecordArgs
- Noncompliance
Reason PropertyEmergency 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 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 Activation Compliance Record Noncompliance Reason None - Provides an audit record when activating on a production network with noncompliance reason as
NONE
- Noncompliance
Reason PropertyOther Activation Compliance Record Noncompliance Reason Other - Provides an audit record when activating on a production network with noncompliance reason as
OTHER
- Noncompliance
Reason PropertyEmergency 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 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 Activation Compliance Record Noncompliance Reason None - Provides an audit record when activating on a production network with noncompliance reason as
NONE
- Noncompliance
Reason PropertyOther Activation Compliance Record Noncompliance Reason Other - Provides an audit record when activating on a production network with noncompliance reason as
OTHER
- noncompliance
Reason PropertyEmergency 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 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 Activation Compliance Record Noncompliance Reason None - Provides an audit record when activating on a production network with noncompliance reason as
NONE
- noncompliance
Reason PropertyOther Activation Compliance Record Noncompliance Reason Other - Provides an audit record when activating on a production network with noncompliance reason as
OTHER
- noncompliance
Reason PropertyEmergency 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 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 Activation Compliance Record Noncompliance Reason None - Provides an audit record when activating on a production network with noncompliance reason as
NONE
- noncompliance
Reason PropertyOther Activation Compliance Record Noncompliance Reason Other - Provides an audit record when activating on a production network with noncompliance reason as
OTHER
- noncompliance_
reason_ Propertyemergency 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 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 Activation Compliance Record Noncompliance Reason None - Provides an audit record when activating on a production network with noncompliance reason as
NONE
- noncompliance_
reason_ Propertyother 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
PropertyActivationComplianceRecordNoncomplianceReasonEmergency, PropertyActivationComplianceRecordNoncomplianceReasonEmergencyArgs
- 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
PropertyActivationComplianceRecordNoncomplianceReasonNoProductionTraffic, PropertyActivationComplianceRecordNoncomplianceReasonNoProductionTrafficArgs
- 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
PropertyActivationComplianceRecordNoncomplianceReasonNone, PropertyActivationComplianceRecordNoncomplianceReasonNoneArgs
- 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
PropertyActivationComplianceRecordNoncomplianceReasonOther, PropertyActivationComplianceRecordNoncomplianceReasonOtherArgs
- 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
PropertyActivationRuleError, PropertyActivationRuleErrorArgs
- Behavior
Name string - Detail string
- Error
Location string - Instance string
- Status
Code int - Title string
- Type string
- Behavior
Name string - Detail string
- Error
Location string - Instance string
- Status
Code int - Title string
- Type string
- behavior
Name String - detail String
- error
Location String - instance String
- status
Code Integer - title String
- type String
- behavior
Name string - detail string
- error
Location string - instance string
- status
Code number - title string
- type string
- behavior_
name str - detail str
- error_
location str - instance str
- status_
code int - title str
- type str
- behavior
Name String - detail String
- error
Location String - instance String
- status
Code Number - title String
- type String
PropertyActivationTimeouts, PropertyActivationTimeoutsArgs
- 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.