import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class CloudAccessKey extends pulumi.CustomResource { /** * Get an existing CloudAccessKey resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: CloudAccessKeyState, opts?: pulumi.CustomResourceOptions): CloudAccessKey; /** * Returns true if the given object is an instance of CloudAccessKey. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is CloudAccessKey; /** * Name of the access key. */ readonly accessKeyName: pulumi.Output; /** * The unique identifier Akamai assigns to an access key. */ readonly accessKeyUid: pulumi.Output; /** * The type of signing process used to authenticate API requests: * - `AOS4_HMAC_SHA256` — Akamai Object Storage * - `AVM_CLOUDINARY` — Akamai Video Manager Cloudinary * - `AWS4_HMAC_SHA256` — Amazon Web Services * - `GOOG4_HMAC_SHA256` — Google Cloud Services * - `G2O` — Akamai Signature Header Authentication * - `VP_QUEUE_IT` — Akamai Visitor Prioritization powered by Queue-it */ readonly authenticationMethod: pulumi.Output; /** * The unique identifier for the contract assigned to the access key */ readonly contractId: pulumi.Output; /** * The combination of a `cloudAccessKeyId` and a `cloudSecretAccessKey` 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). */ readonly credentialsA: pulumi.Output; /** * The combination of a `cloudAccessKeyId` and a `cloudSecretAccessKey` 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). */ readonly credentialsB: pulumi.Output; /** * The unique identifier assigned to the access control group assigned to the access key */ readonly groupId: pulumi.Output; /** * The secure networks that you assigned the access key to during creation */ readonly networkConfiguration: pulumi.Output; /** * Value of `versionGuid` field for credentials marked as primary */ readonly primaryGuid: pulumi.Output; readonly timeouts: pulumi.Output; /** * Create a CloudAccessKey resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: CloudAccessKeyArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CloudAccessKey resources. */ export interface CloudAccessKeyState { /** * Name of the access key. */ accessKeyName?: pulumi.Input; /** * The unique identifier Akamai assigns to an access key. */ accessKeyUid?: pulumi.Input; /** * The type of signing process used to authenticate API requests: * - `AOS4_HMAC_SHA256` — Akamai Object Storage * - `AVM_CLOUDINARY` — Akamai Video Manager Cloudinary * - `AWS4_HMAC_SHA256` — Amazon Web Services * - `GOOG4_HMAC_SHA256` — Google Cloud Services * - `G2O` — Akamai Signature Header Authentication * - `VP_QUEUE_IT` — Akamai Visitor Prioritization powered by Queue-it */ authenticationMethod?: pulumi.Input; /** * The unique identifier for the contract assigned to the access key */ contractId?: pulumi.Input; /** * The combination of a `cloudAccessKeyId` and a `cloudSecretAccessKey` 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). */ credentialsA?: pulumi.Input; /** * The combination of a `cloudAccessKeyId` and a `cloudSecretAccessKey` 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). */ credentialsB?: pulumi.Input; /** * The unique identifier assigned to the access control group assigned to the access key */ groupId?: pulumi.Input; /** * The secure networks that you assigned the access key to during creation */ networkConfiguration?: pulumi.Input; /** * Value of `versionGuid` field for credentials marked as primary */ primaryGuid?: pulumi.Input; timeouts?: pulumi.Input; } /** * The set of arguments for constructing a CloudAccessKey resource. */ export interface CloudAccessKeyArgs { /** * Name of the access key. */ accessKeyName: pulumi.Input; /** * The type of signing process used to authenticate API requests: * - `AOS4_HMAC_SHA256` — Akamai Object Storage * - `AVM_CLOUDINARY` — Akamai Video Manager Cloudinary * - `AWS4_HMAC_SHA256` — Amazon Web Services * - `GOOG4_HMAC_SHA256` — Google Cloud Services * - `G2O` — Akamai Signature Header Authentication * - `VP_QUEUE_IT` — Akamai Visitor Prioritization powered by Queue-it */ authenticationMethod: pulumi.Input; /** * The unique identifier for the contract assigned to the access key */ contractId: pulumi.Input; /** * The combination of a `cloudAccessKeyId` and a `cloudSecretAccessKey` 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). */ credentialsA?: pulumi.Input; /** * The combination of a `cloudAccessKeyId` and a `cloudSecretAccessKey` 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). */ credentialsB?: pulumi.Input; /** * The unique identifier assigned to the access control group assigned to the access key */ groupId: pulumi.Input; /** * The secure networks that you assigned the access key to during creation */ networkConfiguration: pulumi.Input; timeouts?: pulumi.Input; } //# sourceMappingURL=cloudAccessKey.d.ts.map