akamai.CloudAccessKey
Explore with Pulumi AI
Create CloudAccessKey Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CloudAccessKey(name: string, args: CloudAccessKeyArgs, opts?: CustomResourceOptions);
@overload
def CloudAccessKey(resource_name: str,
args: CloudAccessKeyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CloudAccessKey(resource_name: str,
opts: Optional[ResourceOptions] = None,
access_key_name: Optional[str] = None,
authentication_method: Optional[str] = None,
contract_id: Optional[str] = None,
group_id: Optional[int] = None,
network_configuration: Optional[CloudAccessKeyNetworkConfigurationArgs] = None,
credentials_a: Optional[CloudAccessKeyCredentialsAArgs] = None,
credentials_b: Optional[CloudAccessKeyCredentialsBArgs] = None,
timeouts: Optional[CloudAccessKeyTimeoutsArgs] = None)
func NewCloudAccessKey(ctx *Context, name string, args CloudAccessKeyArgs, opts ...ResourceOption) (*CloudAccessKey, error)
public CloudAccessKey(string name, CloudAccessKeyArgs args, CustomResourceOptions? opts = null)
public CloudAccessKey(String name, CloudAccessKeyArgs args)
public CloudAccessKey(String name, CloudAccessKeyArgs args, CustomResourceOptions options)
type: akamai:CloudAccessKey
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 CloudAccessKeyArgs
- 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 CloudAccessKeyArgs
- 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 CloudAccessKeyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CloudAccessKeyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CloudAccessKeyArgs
- 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 cloudAccessKeyResource = new Akamai.CloudAccessKey("cloudAccessKeyResource", new()
{
AccessKeyName = "string",
AuthenticationMethod = "string",
ContractId = "string",
GroupId = 0,
NetworkConfiguration = new Akamai.Inputs.CloudAccessKeyNetworkConfigurationArgs
{
SecurityNetwork = "string",
AdditionalCdn = "string",
},
CredentialsA = new Akamai.Inputs.CloudAccessKeyCredentialsAArgs
{
CloudAccessKeyId = "string",
CloudSecretAccessKey = "string",
PrimaryKey = false,
Version = 0,
VersionGuid = "string",
},
CredentialsB = new Akamai.Inputs.CloudAccessKeyCredentialsBArgs
{
CloudAccessKeyId = "string",
CloudSecretAccessKey = "string",
PrimaryKey = false,
Version = 0,
VersionGuid = "string",
},
Timeouts = new Akamai.Inputs.CloudAccessKeyTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
});
example, err := akamai.NewCloudAccessKey(ctx, "cloudAccessKeyResource", &akamai.CloudAccessKeyArgs{
AccessKeyName: pulumi.String("string"),
AuthenticationMethod: pulumi.String("string"),
ContractId: pulumi.String("string"),
GroupId: pulumi.Int(0),
NetworkConfiguration: &akamai.CloudAccessKeyNetworkConfigurationArgs{
SecurityNetwork: pulumi.String("string"),
AdditionalCdn: pulumi.String("string"),
},
CredentialsA: &akamai.CloudAccessKeyCredentialsAArgs{
CloudAccessKeyId: pulumi.String("string"),
CloudSecretAccessKey: pulumi.String("string"),
PrimaryKey: pulumi.Bool(false),
Version: pulumi.Int(0),
VersionGuid: pulumi.String("string"),
},
CredentialsB: &akamai.CloudAccessKeyCredentialsBArgs{
CloudAccessKeyId: pulumi.String("string"),
CloudSecretAccessKey: pulumi.String("string"),
PrimaryKey: pulumi.Bool(false),
Version: pulumi.Int(0),
VersionGuid: pulumi.String("string"),
},
Timeouts: &akamai.CloudAccessKeyTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
var cloudAccessKeyResource = new CloudAccessKey("cloudAccessKeyResource", CloudAccessKeyArgs.builder()
.accessKeyName("string")
.authenticationMethod("string")
.contractId("string")
.groupId(0)
.networkConfiguration(CloudAccessKeyNetworkConfigurationArgs.builder()
.securityNetwork("string")
.additionalCdn("string")
.build())
.credentialsA(CloudAccessKeyCredentialsAArgs.builder()
.cloudAccessKeyId("string")
.cloudSecretAccessKey("string")
.primaryKey(false)
.version(0)
.versionGuid("string")
.build())
.credentialsB(CloudAccessKeyCredentialsBArgs.builder()
.cloudAccessKeyId("string")
.cloudSecretAccessKey("string")
.primaryKey(false)
.version(0)
.versionGuid("string")
.build())
.timeouts(CloudAccessKeyTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.build());
cloud_access_key_resource = akamai.CloudAccessKey("cloudAccessKeyResource",
access_key_name="string",
authentication_method="string",
contract_id="string",
group_id=0,
network_configuration={
"security_network": "string",
"additional_cdn": "string",
},
credentials_a={
"cloud_access_key_id": "string",
"cloud_secret_access_key": "string",
"primary_key": False,
"version": 0,
"version_guid": "string",
},
credentials_b={
"cloud_access_key_id": "string",
"cloud_secret_access_key": "string",
"primary_key": False,
"version": 0,
"version_guid": "string",
},
timeouts={
"create": "string",
"delete": "string",
"update": "string",
})
const cloudAccessKeyResource = new akamai.CloudAccessKey("cloudAccessKeyResource", {
accessKeyName: "string",
authenticationMethod: "string",
contractId: "string",
groupId: 0,
networkConfiguration: {
securityNetwork: "string",
additionalCdn: "string",
},
credentialsA: {
cloudAccessKeyId: "string",
cloudSecretAccessKey: "string",
primaryKey: false,
version: 0,
versionGuid: "string",
},
credentialsB: {
cloudAccessKeyId: "string",
cloudSecretAccessKey: "string",
primaryKey: false,
version: 0,
versionGuid: "string",
},
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
});
type: akamai:CloudAccessKey
properties:
accessKeyName: string
authenticationMethod: string
contractId: string
credentialsA:
cloudAccessKeyId: string
cloudSecretAccessKey: string
primaryKey: false
version: 0
versionGuid: string
credentialsB:
cloudAccessKeyId: string
cloudSecretAccessKey: string
primaryKey: false
version: 0
versionGuid: string
groupId: 0
networkConfiguration:
additionalCdn: string
securityNetwork: string
timeouts:
create: string
delete: string
update: string
CloudAccessKey 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 CloudAccessKey resource accepts the following input properties:
- Access
Key stringName - Name of the access key.
- Authentication
Method string - The type of cloud provider signing process used to authenticate API requests. Two options are available: "AWS4_HMAC_SHA256" or "GOOG4_HMAC_SHA256".
- Contract
Id string - The unique identifier for the contract assigned to the access key
- Group
Id int - The unique identifier assigned to the access control group assigned to the access key
- Network
Configuration CloudAccess Key Network Configuration - The secure networks that you assigned the access key to during creation
- Credentials
A CloudAccess Key Credentials A - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - Credentials
B CloudAccess Key Credentials B - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - Timeouts
Cloud
Access Key Timeouts
- Access
Key stringName - Name of the access key.
- Authentication
Method string - The type of cloud provider signing process used to authenticate API requests. Two options are available: "AWS4_HMAC_SHA256" or "GOOG4_HMAC_SHA256".
- Contract
Id string - The unique identifier for the contract assigned to the access key
- Group
Id int - The unique identifier assigned to the access control group assigned to the access key
- Network
Configuration CloudAccess Key Network Configuration Args - The secure networks that you assigned the access key to during creation
- Credentials
A CloudAccess Key Credentials AArgs - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - Credentials
B CloudAccess Key Credentials BArgs - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - Timeouts
Cloud
Access Key Timeouts Args
- access
Key StringName - Name of the access key.
- authentication
Method String - The type of cloud provider signing process used to authenticate API requests. Two options are available: "AWS4_HMAC_SHA256" or "GOOG4_HMAC_SHA256".
- contract
Id String - The unique identifier for the contract assigned to the access key
- group
Id Integer - The unique identifier assigned to the access control group assigned to the access key
- network
Configuration CloudAccess Key Network Configuration - The secure networks that you assigned the access key to during creation
- credentials
A CloudAccess Key Credentials A - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - credentials
B CloudAccess Key Credentials B - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - timeouts
Cloud
Access Key Timeouts
- access
Key stringName - Name of the access key.
- authentication
Method string - The type of cloud provider signing process used to authenticate API requests. Two options are available: "AWS4_HMAC_SHA256" or "GOOG4_HMAC_SHA256".
- contract
Id string - The unique identifier for the contract assigned to the access key
- group
Id number - The unique identifier assigned to the access control group assigned to the access key
- network
Configuration CloudAccess Key Network Configuration - The secure networks that you assigned the access key to during creation
- credentials
A CloudAccess Key Credentials A - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - credentials
B CloudAccess Key Credentials B - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - timeouts
Cloud
Access Key Timeouts
- access_
key_ strname - Name of the access key.
- authentication_
method str - The type of cloud provider signing process used to authenticate API requests. Two options are available: "AWS4_HMAC_SHA256" or "GOOG4_HMAC_SHA256".
- contract_
id str - The unique identifier for the contract assigned to the access key
- group_
id int - The unique identifier assigned to the access control group assigned to the access key
- network_
configuration CloudAccess Key Network Configuration Args - The secure networks that you assigned the access key to during creation
- credentials_
a CloudAccess Key Credentials AArgs - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - credentials_
b CloudAccess Key Credentials BArgs - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - timeouts
Cloud
Access Key Timeouts Args
- access
Key StringName - Name of the access key.
- authentication
Method String - The type of cloud provider signing process used to authenticate API requests. Two options are available: "AWS4_HMAC_SHA256" or "GOOG4_HMAC_SHA256".
- contract
Id String - The unique identifier for the contract assigned to the access key
- group
Id Number - The unique identifier assigned to the access control group assigned to the access key
- network
Configuration Property Map - The secure networks that you assigned the access key to during creation
- credentials
A Property Map - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - credentials
B Property Map - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the CloudAccessKey resource produces the following output properties:
- Access
Key intUid - The unique identifier Akamai assigns to an access key.
- Id string
- The provider-assigned unique ID for this managed resource.
- Primary
Guid string - Value of
version_guid
field for credentials marked as primary
- Access
Key intUid - The unique identifier Akamai assigns to an access key.
- Id string
- The provider-assigned unique ID for this managed resource.
- Primary
Guid string - Value of
version_guid
field for credentials marked as primary
- access
Key IntegerUid - The unique identifier Akamai assigns to an access key.
- id String
- The provider-assigned unique ID for this managed resource.
- primary
Guid String - Value of
version_guid
field for credentials marked as primary
- access
Key numberUid - The unique identifier Akamai assigns to an access key.
- id string
- The provider-assigned unique ID for this managed resource.
- primary
Guid string - Value of
version_guid
field for credentials marked as primary
- access_
key_ intuid - The unique identifier Akamai assigns to an access key.
- id str
- The provider-assigned unique ID for this managed resource.
- primary_
guid str - Value of
version_guid
field for credentials marked as primary
- access
Key NumberUid - The unique identifier Akamai assigns to an access key.
- id String
- The provider-assigned unique ID for this managed resource.
- primary
Guid String - Value of
version_guid
field for credentials marked as primary
Look up Existing CloudAccessKey Resource
Get an existing CloudAccessKey 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?: CloudAccessKeyState, opts?: CustomResourceOptions): CloudAccessKey
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_key_name: Optional[str] = None,
access_key_uid: Optional[int] = None,
authentication_method: Optional[str] = None,
contract_id: Optional[str] = None,
credentials_a: Optional[CloudAccessKeyCredentialsAArgs] = None,
credentials_b: Optional[CloudAccessKeyCredentialsBArgs] = None,
group_id: Optional[int] = None,
network_configuration: Optional[CloudAccessKeyNetworkConfigurationArgs] = None,
primary_guid: Optional[str] = None,
timeouts: Optional[CloudAccessKeyTimeoutsArgs] = None) -> CloudAccessKey
func GetCloudAccessKey(ctx *Context, name string, id IDInput, state *CloudAccessKeyState, opts ...ResourceOption) (*CloudAccessKey, error)
public static CloudAccessKey Get(string name, Input<string> id, CloudAccessKeyState? state, CustomResourceOptions? opts = null)
public static CloudAccessKey get(String name, Output<String> id, CloudAccessKeyState state, CustomResourceOptions options)
resources: _: type: akamai:CloudAccessKey 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.
- Access
Key stringName - Name of the access key.
- Access
Key intUid - The unique identifier Akamai assigns to an access key.
- Authentication
Method string - The type of cloud provider signing process used to authenticate API requests. Two options are available: "AWS4_HMAC_SHA256" or "GOOG4_HMAC_SHA256".
- Contract
Id string - The unique identifier for the contract assigned to the access key
- Credentials
A CloudAccess Key Credentials A - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - Credentials
B CloudAccess Key Credentials B - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - Group
Id int - The unique identifier assigned to the access control group assigned to the access key
- Network
Configuration CloudAccess Key Network Configuration - The secure networks that you assigned the access key to during creation
- Primary
Guid string - Value of
version_guid
field for credentials marked as primary - Timeouts
Cloud
Access Key Timeouts
- Access
Key stringName - Name of the access key.
- Access
Key intUid - The unique identifier Akamai assigns to an access key.
- Authentication
Method string - The type of cloud provider signing process used to authenticate API requests. Two options are available: "AWS4_HMAC_SHA256" or "GOOG4_HMAC_SHA256".
- Contract
Id string - The unique identifier for the contract assigned to the access key
- Credentials
A CloudAccess Key Credentials AArgs - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - Credentials
B CloudAccess Key Credentials BArgs - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - Group
Id int - The unique identifier assigned to the access control group assigned to the access key
- Network
Configuration CloudAccess Key Network Configuration Args - The secure networks that you assigned the access key to during creation
- Primary
Guid string - Value of
version_guid
field for credentials marked as primary - Timeouts
Cloud
Access Key Timeouts Args
- access
Key StringName - Name of the access key.
- access
Key IntegerUid - The unique identifier Akamai assigns to an access key.
- authentication
Method String - The type of cloud provider signing process used to authenticate API requests. Two options are available: "AWS4_HMAC_SHA256" or "GOOG4_HMAC_SHA256".
- contract
Id String - The unique identifier for the contract assigned to the access key
- credentials
A CloudAccess Key Credentials A - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - credentials
B CloudAccess Key Credentials B - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - group
Id Integer - The unique identifier assigned to the access control group assigned to the access key
- network
Configuration CloudAccess Key Network Configuration - The secure networks that you assigned the access key to during creation
- primary
Guid String - Value of
version_guid
field for credentials marked as primary - timeouts
Cloud
Access Key Timeouts
- access
Key stringName - Name of the access key.
- access
Key numberUid - The unique identifier Akamai assigns to an access key.
- authentication
Method string - The type of cloud provider signing process used to authenticate API requests. Two options are available: "AWS4_HMAC_SHA256" or "GOOG4_HMAC_SHA256".
- contract
Id string - The unique identifier for the contract assigned to the access key
- credentials
A CloudAccess Key Credentials A - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - credentials
B CloudAccess Key Credentials B - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - group
Id number - The unique identifier assigned to the access control group assigned to the access key
- network
Configuration CloudAccess Key Network Configuration - The secure networks that you assigned the access key to during creation
- primary
Guid string - Value of
version_guid
field for credentials marked as primary - timeouts
Cloud
Access Key Timeouts
- access_
key_ strname - Name of the access key.
- access_
key_ intuid - The unique identifier Akamai assigns to an access key.
- authentication_
method str - The type of cloud provider signing process used to authenticate API requests. Two options are available: "AWS4_HMAC_SHA256" or "GOOG4_HMAC_SHA256".
- contract_
id str - The unique identifier for the contract assigned to the access key
- credentials_
a CloudAccess Key Credentials AArgs - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - credentials_
b CloudAccess Key Credentials BArgs - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - group_
id int - The unique identifier assigned to the access control group assigned to the access key
- network_
configuration CloudAccess Key Network Configuration Args - The secure networks that you assigned the access key to during creation
- primary_
guid str - Value of
version_guid
field for credentials marked as primary - timeouts
Cloud
Access Key Timeouts Args
- access
Key StringName - Name of the access key.
- access
Key NumberUid - The unique identifier Akamai assigns to an access key.
- authentication
Method String - The type of cloud provider signing process used to authenticate API requests. Two options are available: "AWS4_HMAC_SHA256" or "GOOG4_HMAC_SHA256".
- contract
Id String - The unique identifier for the contract assigned to the access key
- credentials
A Property Map - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - credentials
B Property Map - The combination of a
cloud_access_key_id
and acloud_secret_access_key
used to sign API requests. This pair can be identified as access key version. Access key can contain only two access key versions at specific time (defined as credentialsA and credentialsB). - group
Id Number - The unique identifier assigned to the access control group assigned to the access key
- network
Configuration Property Map - The secure networks that you assigned the access key to during creation
- primary
Guid String - Value of
version_guid
field for credentials marked as primary - timeouts Property Map
Supporting Types
CloudAccessKeyCredentialsA, CloudAccessKeyCredentialsAArgs
- Cloud
Access stringKey Id - Access key id from cloud provider which is used to sign API requests
- Cloud
Secret stringAccess Key - Cloud Access secret from cloud provider which is used to sign API requests
- Primary
Key bool - Boolean value which helps to define if credentials should be assigned to property
- Version int
- Numeric access key version associated with specific pair of cloud access credentials used to sign API requests
- Version
Guid string - The unique identifier assigned to specific access key version
- Cloud
Access stringKey Id - Access key id from cloud provider which is used to sign API requests
- Cloud
Secret stringAccess Key - Cloud Access secret from cloud provider which is used to sign API requests
- Primary
Key bool - Boolean value which helps to define if credentials should be assigned to property
- Version int
- Numeric access key version associated with specific pair of cloud access credentials used to sign API requests
- Version
Guid string - The unique identifier assigned to specific access key version
- cloud
Access StringKey Id - Access key id from cloud provider which is used to sign API requests
- cloud
Secret StringAccess Key - Cloud Access secret from cloud provider which is used to sign API requests
- primary
Key Boolean - Boolean value which helps to define if credentials should be assigned to property
- version Integer
- Numeric access key version associated with specific pair of cloud access credentials used to sign API requests
- version
Guid String - The unique identifier assigned to specific access key version
- cloud
Access stringKey Id - Access key id from cloud provider which is used to sign API requests
- cloud
Secret stringAccess Key - Cloud Access secret from cloud provider which is used to sign API requests
- primary
Key boolean - Boolean value which helps to define if credentials should be assigned to property
- version number
- Numeric access key version associated with specific pair of cloud access credentials used to sign API requests
- version
Guid string - The unique identifier assigned to specific access key version
- cloud_
access_ strkey_ id - Access key id from cloud provider which is used to sign API requests
- cloud_
secret_ straccess_ key - Cloud Access secret from cloud provider which is used to sign API requests
- primary_
key bool - Boolean value which helps to define if credentials should be assigned to property
- version int
- Numeric access key version associated with specific pair of cloud access credentials used to sign API requests
- version_
guid str - The unique identifier assigned to specific access key version
- cloud
Access StringKey Id - Access key id from cloud provider which is used to sign API requests
- cloud
Secret StringAccess Key - Cloud Access secret from cloud provider which is used to sign API requests
- primary
Key Boolean - Boolean value which helps to define if credentials should be assigned to property
- version Number
- Numeric access key version associated with specific pair of cloud access credentials used to sign API requests
- version
Guid String - The unique identifier assigned to specific access key version
CloudAccessKeyCredentialsB, CloudAccessKeyCredentialsBArgs
- Cloud
Access stringKey Id - Access key id from cloud provider which is used to sign API requests
- Cloud
Secret stringAccess Key - Cloud Access secret from cloud provider which is used to sign API requests
- Primary
Key bool - Boolean value which helps to define if credentials should be assigned to property
- Version int
- Numeric access key version associated with specific pair of cloud access credentials used to sign API requests
- Version
Guid string - The unique identifier assigned to specific access key version
- Cloud
Access stringKey Id - Access key id from cloud provider which is used to sign API requests
- Cloud
Secret stringAccess Key - Cloud Access secret from cloud provider which is used to sign API requests
- Primary
Key bool - Boolean value which helps to define if credentials should be assigned to property
- Version int
- Numeric access key version associated with specific pair of cloud access credentials used to sign API requests
- Version
Guid string - The unique identifier assigned to specific access key version
- cloud
Access StringKey Id - Access key id from cloud provider which is used to sign API requests
- cloud
Secret StringAccess Key - Cloud Access secret from cloud provider which is used to sign API requests
- primary
Key Boolean - Boolean value which helps to define if credentials should be assigned to property
- version Integer
- Numeric access key version associated with specific pair of cloud access credentials used to sign API requests
- version
Guid String - The unique identifier assigned to specific access key version
- cloud
Access stringKey Id - Access key id from cloud provider which is used to sign API requests
- cloud
Secret stringAccess Key - Cloud Access secret from cloud provider which is used to sign API requests
- primary
Key boolean - Boolean value which helps to define if credentials should be assigned to property
- version number
- Numeric access key version associated with specific pair of cloud access credentials used to sign API requests
- version
Guid string - The unique identifier assigned to specific access key version
- cloud_
access_ strkey_ id - Access key id from cloud provider which is used to sign API requests
- cloud_
secret_ straccess_ key - Cloud Access secret from cloud provider which is used to sign API requests
- primary_
key bool - Boolean value which helps to define if credentials should be assigned to property
- version int
- Numeric access key version associated with specific pair of cloud access credentials used to sign API requests
- version_
guid str - The unique identifier assigned to specific access key version
- cloud
Access StringKey Id - Access key id from cloud provider which is used to sign API requests
- cloud
Secret StringAccess Key - Cloud Access secret from cloud provider which is used to sign API requests
- primary
Key Boolean - Boolean value which helps to define if credentials should be assigned to property
- version Number
- Numeric access key version associated with specific pair of cloud access credentials used to sign API requests
- version
Guid String - The unique identifier assigned to specific access key version
CloudAccessKeyNetworkConfiguration, CloudAccessKeyNetworkConfigurationArgs
- Security
Network string - The API deploys the access key to this secure network
- Additional
Cdn string - Additional type of the deployment network that the access key will be deployed to.
- Security
Network string - The API deploys the access key to this secure network
- Additional
Cdn string - Additional type of the deployment network that the access key will be deployed to.
- security
Network String - The API deploys the access key to this secure network
- additional
Cdn String - Additional type of the deployment network that the access key will be deployed to.
- security
Network string - The API deploys the access key to this secure network
- additional
Cdn string - Additional type of the deployment network that the access key will be deployed to.
- security_
network str - The API deploys the access key to this secure network
- additional_
cdn str - Additional type of the deployment network that the access key will be deployed to.
- security
Network String - The API deploys the access key to this secure network
- additional
Cdn String - Additional type of the deployment network that the access key will be deployed to.
CloudAccessKeyTimeouts, CloudAccessKeyTimeoutsArgs
- Create string
- Optional configurable resource create timeout. By default it's 60 minutes with 1 minute polling interval.
- Delete string
- Optional configurable resource delete timeout. By default it's 60 minutes with 1 minute polling interval.
- Update string
- Optional configurable resource update timeout. By default it's 60 minutes with 1 minute polling interval.
- Create string
- Optional configurable resource create timeout. By default it's 60 minutes with 1 minute polling interval.
- Delete string
- Optional configurable resource delete timeout. By default it's 60 minutes with 1 minute polling interval.
- Update string
- Optional configurable resource update timeout. By default it's 60 minutes with 1 minute polling interval.
- create String
- Optional configurable resource create timeout. By default it's 60 minutes with 1 minute polling interval.
- delete String
- Optional configurable resource delete timeout. By default it's 60 minutes with 1 minute polling interval.
- update String
- Optional configurable resource update timeout. By default it's 60 minutes with 1 minute polling interval.
- create string
- Optional configurable resource create timeout. By default it's 60 minutes with 1 minute polling interval.
- delete string
- Optional configurable resource delete timeout. By default it's 60 minutes with 1 minute polling interval.
- update string
- Optional configurable resource update timeout. By default it's 60 minutes with 1 minute polling interval.
- create str
- Optional configurable resource create timeout. By default it's 60 minutes with 1 minute polling interval.
- delete str
- Optional configurable resource delete timeout. By default it's 60 minutes with 1 minute polling interval.
- update str
- Optional configurable resource update timeout. By default it's 60 minutes with 1 minute polling interval.
- create String
- Optional configurable resource create timeout. By default it's 60 minutes with 1 minute polling interval.
- delete String
- Optional configurable resource delete timeout. By default it's 60 minutes with 1 minute polling interval.
- update String
- Optional configurable resource update timeout. By default it's 60 minutes with 1 minute polling interval.
Package Details
- Repository
- Akamai pulumi/pulumi-akamai
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
akamai
Terraform Provider.