akamai.MtlstruststoreCaSet
Create MtlstruststoreCaSet Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MtlstruststoreCaSet(name: string, args: MtlstruststoreCaSetArgs, opts?: CustomResourceOptions);@overload
def MtlstruststoreCaSet(resource_name: str,
args: MtlstruststoreCaSetArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MtlstruststoreCaSet(resource_name: str,
opts: Optional[ResourceOptions] = None,
certificates: Optional[Sequence[MtlstruststoreCaSetCertificateArgs]] = None,
allow_insecure_sha1: Optional[bool] = None,
description: Optional[str] = None,
name: Optional[str] = None,
timeouts: Optional[MtlstruststoreCaSetTimeoutsArgs] = None,
version_description: Optional[str] = None)func NewMtlstruststoreCaSet(ctx *Context, name string, args MtlstruststoreCaSetArgs, opts ...ResourceOption) (*MtlstruststoreCaSet, error)public MtlstruststoreCaSet(string name, MtlstruststoreCaSetArgs args, CustomResourceOptions? opts = null)
public MtlstruststoreCaSet(String name, MtlstruststoreCaSetArgs args)
public MtlstruststoreCaSet(String name, MtlstruststoreCaSetArgs args, CustomResourceOptions options)
type: akamai:MtlstruststoreCaSet
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 MtlstruststoreCaSetArgs
- 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 MtlstruststoreCaSetArgs
- 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 MtlstruststoreCaSetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MtlstruststoreCaSetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MtlstruststoreCaSetArgs
- 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 mtlstruststoreCaSetResource = new Akamai.MtlstruststoreCaSet("mtlstruststoreCaSetResource", new()
{
Certificates = new[]
{
new Akamai.Inputs.MtlstruststoreCaSetCertificateArgs
{
CertificatePem = "string",
CreatedBy = "string",
CreatedDate = "string",
Description = "string",
EndDate = "string",
Fingerprint = "string",
Issuer = "string",
SerialNumber = "string",
SignatureAlgorithm = "string",
StartDate = "string",
Subject = "string",
},
},
AllowInsecureSha1 = false,
Description = "string",
Name = "string",
Timeouts = new Akamai.Inputs.MtlstruststoreCaSetTimeoutsArgs
{
Delete = "string",
},
VersionDescription = "string",
});
example, err := akamai.NewMtlstruststoreCaSet(ctx, "mtlstruststoreCaSetResource", &akamai.MtlstruststoreCaSetArgs{
Certificates: akamai.MtlstruststoreCaSetCertificateArray{
&akamai.MtlstruststoreCaSetCertificateArgs{
CertificatePem: pulumi.String("string"),
CreatedBy: pulumi.String("string"),
CreatedDate: pulumi.String("string"),
Description: pulumi.String("string"),
EndDate: pulumi.String("string"),
Fingerprint: pulumi.String("string"),
Issuer: pulumi.String("string"),
SerialNumber: pulumi.String("string"),
SignatureAlgorithm: pulumi.String("string"),
StartDate: pulumi.String("string"),
Subject: pulumi.String("string"),
},
},
AllowInsecureSha1: pulumi.Bool(false),
Description: pulumi.String("string"),
Name: pulumi.String("string"),
Timeouts: &akamai.MtlstruststoreCaSetTimeoutsArgs{
Delete: pulumi.String("string"),
},
VersionDescription: pulumi.String("string"),
})
var mtlstruststoreCaSetResource = new MtlstruststoreCaSet("mtlstruststoreCaSetResource", MtlstruststoreCaSetArgs.builder()
.certificates(MtlstruststoreCaSetCertificateArgs.builder()
.certificatePem("string")
.createdBy("string")
.createdDate("string")
.description("string")
.endDate("string")
.fingerprint("string")
.issuer("string")
.serialNumber("string")
.signatureAlgorithm("string")
.startDate("string")
.subject("string")
.build())
.allowInsecureSha1(false)
.description("string")
.name("string")
.timeouts(MtlstruststoreCaSetTimeoutsArgs.builder()
.delete("string")
.build())
.versionDescription("string")
.build());
mtlstruststore_ca_set_resource = akamai.MtlstruststoreCaSet("mtlstruststoreCaSetResource",
certificates=[{
"certificate_pem": "string",
"created_by": "string",
"created_date": "string",
"description": "string",
"end_date": "string",
"fingerprint": "string",
"issuer": "string",
"serial_number": "string",
"signature_algorithm": "string",
"start_date": "string",
"subject": "string",
}],
allow_insecure_sha1=False,
description="string",
name="string",
timeouts={
"delete": "string",
},
version_description="string")
const mtlstruststoreCaSetResource = new akamai.MtlstruststoreCaSet("mtlstruststoreCaSetResource", {
certificates: [{
certificatePem: "string",
createdBy: "string",
createdDate: "string",
description: "string",
endDate: "string",
fingerprint: "string",
issuer: "string",
serialNumber: "string",
signatureAlgorithm: "string",
startDate: "string",
subject: "string",
}],
allowInsecureSha1: false,
description: "string",
name: "string",
timeouts: {
"delete": "string",
},
versionDescription: "string",
});
type: akamai:MtlstruststoreCaSet
properties:
allowInsecureSha1: false
certificates:
- certificatePem: string
createdBy: string
createdDate: string
description: string
endDate: string
fingerprint: string
issuer: string
serialNumber: string
signatureAlgorithm: string
startDate: string
subject: string
description: string
name: string
timeouts:
delete: string
versionDescription: string
MtlstruststoreCaSet 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 MtlstruststoreCaSet resource accepts the following input properties:
- Certificates
List<Mtlstruststore
Ca Set Certificate> - The certificates that are valid, non-expired, root, or intermediate.
- Allow
Insecure boolSha1 - Allows certificates with SHA-1 signatures if enabled.
- Description string
- Any additional comments you can add to the CA set.
- Name string
- The name of the CA set.
- Timeouts
Mtlstruststore
Ca Set Timeouts - Version
Description string - Additional description for the CA set version.
- Certificates
[]Mtlstruststore
Ca Set Certificate Args - The certificates that are valid, non-expired, root, or intermediate.
- Allow
Insecure boolSha1 - Allows certificates with SHA-1 signatures if enabled.
- Description string
- Any additional comments you can add to the CA set.
- Name string
- The name of the CA set.
- Timeouts
Mtlstruststore
Ca Set Timeouts Args - Version
Description string - Additional description for the CA set version.
- certificates
List<Mtlstruststore
Ca Set Certificate> - The certificates that are valid, non-expired, root, or intermediate.
- allow
Insecure BooleanSha1 - Allows certificates with SHA-1 signatures if enabled.
- description String
- Any additional comments you can add to the CA set.
- name String
- The name of the CA set.
- timeouts
Mtlstruststore
Ca Set Timeouts - version
Description String - Additional description for the CA set version.
- certificates
Mtlstruststore
Ca Set Certificate[] - The certificates that are valid, non-expired, root, or intermediate.
- allow
Insecure booleanSha1 - Allows certificates with SHA-1 signatures if enabled.
- description string
- Any additional comments you can add to the CA set.
- name string
- The name of the CA set.
- timeouts
Mtlstruststore
Ca Set Timeouts - version
Description string - Additional description for the CA set version.
- certificates
Sequence[Mtlstruststore
Ca Set Certificate Args] - The certificates that are valid, non-expired, root, or intermediate.
- allow_
insecure_ boolsha1 - Allows certificates with SHA-1 signatures if enabled.
- description str
- Any additional comments you can add to the CA set.
- name str
- The name of the CA set.
- timeouts
Mtlstruststore
Ca Set Timeouts Args - version_
description str - Additional description for the CA set version.
- certificates List<Property Map>
- The certificates that are valid, non-expired, root, or intermediate.
- allow
Insecure BooleanSha1 - Allows certificates with SHA-1 signatures if enabled.
- description String
- Any additional comments you can add to the CA set.
- name String
- The name of the CA set.
- timeouts Property Map
- version
Description String - Additional description for the CA set version.
Outputs
All input properties are implicitly available as output properties. Additionally, the MtlstruststoreCaSet resource produces the following output properties:
- Account
Id string - Identifies the account the CA set belongs to.
- Created
By string - The user who created the CA set.
- Created
Date string - When the CA set was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Latest
Version int - Version number for newly created or cloned version in a CA set.
- Production
Version int - Version of the CA set that is active on production.
- Staging
Version int - Version number of the CA set that is active on staging.
- Version
Created stringBy - The user who created the CA set version.
- Version
Created stringDate - When the CA set version was created.
- Version
Modified stringBy - The user who modified the CA set version.
- Version
Modified stringDate - When the CA set version was modified.
- Account
Id string - Identifies the account the CA set belongs to.
- Created
By string - The user who created the CA set.
- Created
Date string - When the CA set was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Latest
Version int - Version number for newly created or cloned version in a CA set.
- Production
Version int - Version of the CA set that is active on production.
- Staging
Version int - Version number of the CA set that is active on staging.
- Version
Created stringBy - The user who created the CA set version.
- Version
Created stringDate - When the CA set version was created.
- Version
Modified stringBy - The user who modified the CA set version.
- Version
Modified stringDate - When the CA set version was modified.
- account
Id String - Identifies the account the CA set belongs to.
- created
By String - The user who created the CA set.
- created
Date String - When the CA set was created.
- id String
- The provider-assigned unique ID for this managed resource.
- latest
Version Integer - Version number for newly created or cloned version in a CA set.
- production
Version Integer - Version of the CA set that is active on production.
- staging
Version Integer - Version number of the CA set that is active on staging.
- version
Created StringBy - The user who created the CA set version.
- version
Created StringDate - When the CA set version was created.
- version
Modified StringBy - The user who modified the CA set version.
- version
Modified StringDate - When the CA set version was modified.
- account
Id string - Identifies the account the CA set belongs to.
- created
By string - The user who created the CA set.
- created
Date string - When the CA set was created.
- id string
- The provider-assigned unique ID for this managed resource.
- latest
Version number - Version number for newly created or cloned version in a CA set.
- production
Version number - Version of the CA set that is active on production.
- staging
Version number - Version number of the CA set that is active on staging.
- version
Created stringBy - The user who created the CA set version.
- version
Created stringDate - When the CA set version was created.
- version
Modified stringBy - The user who modified the CA set version.
- version
Modified stringDate - When the CA set version was modified.
- account_
id str - Identifies the account the CA set belongs to.
- created_
by str - The user who created the CA set.
- created_
date str - When the CA set was created.
- id str
- The provider-assigned unique ID for this managed resource.
- latest_
version int - Version number for newly created or cloned version in a CA set.
- production_
version int - Version of the CA set that is active on production.
- staging_
version int - Version number of the CA set that is active on staging.
- version_
created_ strby - The user who created the CA set version.
- version_
created_ strdate - When the CA set version was created.
- version_
modified_ strby - The user who modified the CA set version.
- version_
modified_ strdate - When the CA set version was modified.
- account
Id String - Identifies the account the CA set belongs to.
- created
By String - The user who created the CA set.
- created
Date String - When the CA set was created.
- id String
- The provider-assigned unique ID for this managed resource.
- latest
Version Number - Version number for newly created or cloned version in a CA set.
- production
Version Number - Version of the CA set that is active on production.
- staging
Version Number - Version number of the CA set that is active on staging.
- version
Created StringBy - The user who created the CA set version.
- version
Created StringDate - When the CA set version was created.
- version
Modified StringBy - The user who modified the CA set version.
- version
Modified StringDate - When the CA set version was modified.
Look up Existing MtlstruststoreCaSet Resource
Get an existing MtlstruststoreCaSet 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?: MtlstruststoreCaSetState, opts?: CustomResourceOptions): MtlstruststoreCaSet@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_id: Optional[str] = None,
allow_insecure_sha1: Optional[bool] = None,
certificates: Optional[Sequence[MtlstruststoreCaSetCertificateArgs]] = None,
created_by: Optional[str] = None,
created_date: Optional[str] = None,
description: Optional[str] = None,
latest_version: Optional[int] = None,
name: Optional[str] = None,
production_version: Optional[int] = None,
staging_version: Optional[int] = None,
timeouts: Optional[MtlstruststoreCaSetTimeoutsArgs] = None,
version_created_by: Optional[str] = None,
version_created_date: Optional[str] = None,
version_description: Optional[str] = None,
version_modified_by: Optional[str] = None,
version_modified_date: Optional[str] = None) -> MtlstruststoreCaSetfunc GetMtlstruststoreCaSet(ctx *Context, name string, id IDInput, state *MtlstruststoreCaSetState, opts ...ResourceOption) (*MtlstruststoreCaSet, error)public static MtlstruststoreCaSet Get(string name, Input<string> id, MtlstruststoreCaSetState? state, CustomResourceOptions? opts = null)public static MtlstruststoreCaSet get(String name, Output<String> id, MtlstruststoreCaSetState state, CustomResourceOptions options)resources: _: type: akamai:MtlstruststoreCaSet 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.
- Account
Id string - Identifies the account the CA set belongs to.
- Allow
Insecure boolSha1 - Allows certificates with SHA-1 signatures if enabled.
- Certificates
List<Mtlstruststore
Ca Set Certificate> - The certificates that are valid, non-expired, root, or intermediate.
- Created
By string - The user who created the CA set.
- Created
Date string - When the CA set was created.
- Description string
- Any additional comments you can add to the CA set.
- Latest
Version int - Version number for newly created or cloned version in a CA set.
- Name string
- The name of the CA set.
- Production
Version int - Version of the CA set that is active on production.
- Staging
Version int - Version number of the CA set that is active on staging.
- Timeouts
Mtlstruststore
Ca Set Timeouts - Version
Created stringBy - The user who created the CA set version.
- Version
Created stringDate - When the CA set version was created.
- Version
Description string - Additional description for the CA set version.
- Version
Modified stringBy - The user who modified the CA set version.
- Version
Modified stringDate - When the CA set version was modified.
- Account
Id string - Identifies the account the CA set belongs to.
- Allow
Insecure boolSha1 - Allows certificates with SHA-1 signatures if enabled.
- Certificates
[]Mtlstruststore
Ca Set Certificate Args - The certificates that are valid, non-expired, root, or intermediate.
- Created
By string - The user who created the CA set.
- Created
Date string - When the CA set was created.
- Description string
- Any additional comments you can add to the CA set.
- Latest
Version int - Version number for newly created or cloned version in a CA set.
- Name string
- The name of the CA set.
- Production
Version int - Version of the CA set that is active on production.
- Staging
Version int - Version number of the CA set that is active on staging.
- Timeouts
Mtlstruststore
Ca Set Timeouts Args - Version
Created stringBy - The user who created the CA set version.
- Version
Created stringDate - When the CA set version was created.
- Version
Description string - Additional description for the CA set version.
- Version
Modified stringBy - The user who modified the CA set version.
- Version
Modified stringDate - When the CA set version was modified.
- account
Id String - Identifies the account the CA set belongs to.
- allow
Insecure BooleanSha1 - Allows certificates with SHA-1 signatures if enabled.
- certificates
List<Mtlstruststore
Ca Set Certificate> - The certificates that are valid, non-expired, root, or intermediate.
- created
By String - The user who created the CA set.
- created
Date String - When the CA set was created.
- description String
- Any additional comments you can add to the CA set.
- latest
Version Integer - Version number for newly created or cloned version in a CA set.
- name String
- The name of the CA set.
- production
Version Integer - Version of the CA set that is active on production.
- staging
Version Integer - Version number of the CA set that is active on staging.
- timeouts
Mtlstruststore
Ca Set Timeouts - version
Created StringBy - The user who created the CA set version.
- version
Created StringDate - When the CA set version was created.
- version
Description String - Additional description for the CA set version.
- version
Modified StringBy - The user who modified the CA set version.
- version
Modified StringDate - When the CA set version was modified.
- account
Id string - Identifies the account the CA set belongs to.
- allow
Insecure booleanSha1 - Allows certificates with SHA-1 signatures if enabled.
- certificates
Mtlstruststore
Ca Set Certificate[] - The certificates that are valid, non-expired, root, or intermediate.
- created
By string - The user who created the CA set.
- created
Date string - When the CA set was created.
- description string
- Any additional comments you can add to the CA set.
- latest
Version number - Version number for newly created or cloned version in a CA set.
- name string
- The name of the CA set.
- production
Version number - Version of the CA set that is active on production.
- staging
Version number - Version number of the CA set that is active on staging.
- timeouts
Mtlstruststore
Ca Set Timeouts - version
Created stringBy - The user who created the CA set version.
- version
Created stringDate - When the CA set version was created.
- version
Description string - Additional description for the CA set version.
- version
Modified stringBy - The user who modified the CA set version.
- version
Modified stringDate - When the CA set version was modified.
- account_
id str - Identifies the account the CA set belongs to.
- allow_
insecure_ boolsha1 - Allows certificates with SHA-1 signatures if enabled.
- certificates
Sequence[Mtlstruststore
Ca Set Certificate Args] - The certificates that are valid, non-expired, root, or intermediate.
- created_
by str - The user who created the CA set.
- created_
date str - When the CA set was created.
- description str
- Any additional comments you can add to the CA set.
- latest_
version int - Version number for newly created or cloned version in a CA set.
- name str
- The name of the CA set.
- production_
version int - Version of the CA set that is active on production.
- staging_
version int - Version number of the CA set that is active on staging.
- timeouts
Mtlstruststore
Ca Set Timeouts Args - version_
created_ strby - The user who created the CA set version.
- version_
created_ strdate - When the CA set version was created.
- version_
description str - Additional description for the CA set version.
- version_
modified_ strby - The user who modified the CA set version.
- version_
modified_ strdate - When the CA set version was modified.
- account
Id String - Identifies the account the CA set belongs to.
- allow
Insecure BooleanSha1 - Allows certificates with SHA-1 signatures if enabled.
- certificates List<Property Map>
- The certificates that are valid, non-expired, root, or intermediate.
- created
By String - The user who created the CA set.
- created
Date String - When the CA set was created.
- description String
- Any additional comments you can add to the CA set.
- latest
Version Number - Version number for newly created or cloned version in a CA set.
- name String
- The name of the CA set.
- production
Version Number - Version of the CA set that is active on production.
- staging
Version Number - Version number of the CA set that is active on staging.
- timeouts Property Map
- version
Created StringBy - The user who created the CA set version.
- version
Created StringDate - When the CA set version was created.
- version
Description String - Additional description for the CA set version.
- version
Modified StringBy - The user who modified the CA set version.
- version
Modified StringDate - When the CA set version was modified.
Supporting Types
MtlstruststoreCaSetCertificate, MtlstruststoreCaSetCertificateArgs
- Certificate
Pem string - The certificate in PEM format, as found in a Base64 ASCII encoded file.
- Created
By string - The user who created this CA certificate.
- Created
Date string - When the CA certificate was created.
- Description string
- Optional description for the certificate.
- End
Date string - The certificate's ISO 8601 formatted expiration date.
- Fingerprint string
- The fingerprint of the certificate.
- Issuer string
- The certificate's issuer.
- Serial
Number string - The unique serial number of the certificate.
- Signature
Algorithm string - The signature algorithm of the CA certificate.
- Start
Date string - The start date of the certificate.
- Subject string
- The certificate's subject field.
- Certificate
Pem string - The certificate in PEM format, as found in a Base64 ASCII encoded file.
- Created
By string - The user who created this CA certificate.
- Created
Date string - When the CA certificate was created.
- Description string
- Optional description for the certificate.
- End
Date string - The certificate's ISO 8601 formatted expiration date.
- Fingerprint string
- The fingerprint of the certificate.
- Issuer string
- The certificate's issuer.
- Serial
Number string - The unique serial number of the certificate.
- Signature
Algorithm string - The signature algorithm of the CA certificate.
- Start
Date string - The start date of the certificate.
- Subject string
- The certificate's subject field.
- certificate
Pem String - The certificate in PEM format, as found in a Base64 ASCII encoded file.
- created
By String - The user who created this CA certificate.
- created
Date String - When the CA certificate was created.
- description String
- Optional description for the certificate.
- end
Date String - The certificate's ISO 8601 formatted expiration date.
- fingerprint String
- The fingerprint of the certificate.
- issuer String
- The certificate's issuer.
- serial
Number String - The unique serial number of the certificate.
- signature
Algorithm String - The signature algorithm of the CA certificate.
- start
Date String - The start date of the certificate.
- subject String
- The certificate's subject field.
- certificate
Pem string - The certificate in PEM format, as found in a Base64 ASCII encoded file.
- created
By string - The user who created this CA certificate.
- created
Date string - When the CA certificate was created.
- description string
- Optional description for the certificate.
- end
Date string - The certificate's ISO 8601 formatted expiration date.
- fingerprint string
- The fingerprint of the certificate.
- issuer string
- The certificate's issuer.
- serial
Number string - The unique serial number of the certificate.
- signature
Algorithm string - The signature algorithm of the CA certificate.
- start
Date string - The start date of the certificate.
- subject string
- The certificate's subject field.
- certificate_
pem str - The certificate in PEM format, as found in a Base64 ASCII encoded file.
- created_
by str - The user who created this CA certificate.
- created_
date str - When the CA certificate was created.
- description str
- Optional description for the certificate.
- end_
date str - The certificate's ISO 8601 formatted expiration date.
- fingerprint str
- The fingerprint of the certificate.
- issuer str
- The certificate's issuer.
- serial_
number str - The unique serial number of the certificate.
- signature_
algorithm str - The signature algorithm of the CA certificate.
- start_
date str - The start date of the certificate.
- subject str
- The certificate's subject field.
- certificate
Pem String - The certificate in PEM format, as found in a Base64 ASCII encoded file.
- created
By String - The user who created this CA certificate.
- created
Date String - When the CA certificate was created.
- description String
- Optional description for the certificate.
- end
Date String - The certificate's ISO 8601 formatted expiration date.
- fingerprint String
- The fingerprint of the certificate.
- issuer String
- The certificate's issuer.
- serial
Number String - The unique serial number of the certificate.
- signature
Algorithm String - The signature algorithm of the CA certificate.
- start
Date String - The start date of the certificate.
- subject String
- The certificate's subject field.
MtlstruststoreCaSetTimeouts, MtlstruststoreCaSetTimeoutsArgs
- Delete string
- Optional configurable resource delete timeout. By default it's 1h.
- Delete string
- Optional configurable resource delete timeout. By default it's 1h.
- delete String
- Optional configurable resource delete timeout. By default it's 1h.
- delete string
- Optional configurable resource delete timeout. By default it's 1h.
- delete str
- Optional configurable resource delete timeout. By default it's 1h.
- delete String
- Optional configurable resource delete timeout. By default it's 1h.
Package Details
- Repository
- Akamai pulumi/pulumi-akamai
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
akamaiTerraform Provider.
