import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; import * as enums from "../../types/enums"; /** * Create a new WorkloadIdentityPoolProviderKey in a WorkloadIdentityPoolProvider. * Auto-naming is currently not supported for this resource. */ export declare class WorkloadIdentityPoolKey extends pulumi.CustomResource { /** * Get an existing WorkloadIdentityPoolKey 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): WorkloadIdentityPoolKey; /** * Returns true if the given object is an instance of WorkloadIdentityPoolKey. 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 WorkloadIdentityPoolKey; /** * Time after which the key will be permanently purged and cannot be recovered. Note that the key may get purged before this timestamp if the total limit of keys per provider is crossed. */ readonly expireTime: pulumi.Output; /** * Immutable. Public half of the asymmetric key. */ readonly keyData: pulumi.Output; readonly location: pulumi.Output; /** * The resource name of the key. */ readonly name: pulumi.Output; readonly project: pulumi.Output; readonly providerId: pulumi.Output; /** * The state of the key. */ readonly state: pulumi.Output; /** * The purpose of the key. */ readonly use: pulumi.Output; readonly workloadIdentityPoolId: pulumi.Output; /** * Required. The ID to use for the key, which becomes the final component of the resource name. This value should be 4-32 characters, and may contain the characters [a-z0-9-]. */ readonly workloadIdentityPoolProviderKeyId: pulumi.Output; /** * Create a WorkloadIdentityPoolKey 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: WorkloadIdentityPoolKeyArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a WorkloadIdentityPoolKey resource. */ export interface WorkloadIdentityPoolKeyArgs { /** * Immutable. Public half of the asymmetric key. */ keyData?: pulumi.Input; location?: pulumi.Input; project?: pulumi.Input; providerId: pulumi.Input; /** * The purpose of the key. */ use: pulumi.Input; workloadIdentityPoolId: pulumi.Input; /** * Required. The ID to use for the key, which becomes the final component of the resource name. This value should be 4-32 characters, and may contain the characters [a-z0-9-]. */ workloadIdentityPoolProviderKeyId: pulumi.Input; }