import * as pulumi from "@pulumi/pulumi"; /** * Creates a new WorkloadIdentityPool. You cannot reuse the name of a deleted pool until 30 days after deletion. * Auto-naming is currently not supported for this resource. */ export declare class WorkloadIdentityPool extends pulumi.CustomResource { /** * Get an existing WorkloadIdentityPool 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): WorkloadIdentityPool; /** * Returns true if the given object is an instance of WorkloadIdentityPool. 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 WorkloadIdentityPool; /** * A description of the pool. Cannot exceed 256 characters. */ readonly description: pulumi.Output; /** * Whether the pool is disabled. You cannot use a disabled pool to exchange tokens, or use existing tokens to access resources. If the pool is re-enabled, existing tokens grant access again. */ readonly disabled: pulumi.Output; /** * A display name for the pool. Cannot exceed 32 characters. */ readonly displayName: pulumi.Output; /** * Time after which the workload identity pool will be permanently purged and cannot be recovered. */ readonly expireTime: pulumi.Output; readonly location: pulumi.Output; /** * The resource name of the pool. */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * The state of the pool. */ readonly state: pulumi.Output; /** * Required. The ID to use for the pool, which becomes the final component of the resource name. This value should be 4-32 characters, and may contain the characters [a-z0-9-]. The prefix `gcp-` is reserved for use by Google, and may not be specified. */ readonly workloadIdentityPoolId: pulumi.Output; /** * Create a WorkloadIdentityPool 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: WorkloadIdentityPoolArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a WorkloadIdentityPool resource. */ export interface WorkloadIdentityPoolArgs { /** * A description of the pool. Cannot exceed 256 characters. */ description?: pulumi.Input; /** * Whether the pool is disabled. You cannot use a disabled pool to exchange tokens, or use existing tokens to access resources. If the pool is re-enabled, existing tokens grant access again. */ disabled?: pulumi.Input; /** * A display name for the pool. Cannot exceed 32 characters. */ displayName?: pulumi.Input; location?: pulumi.Input; project?: pulumi.Input; /** * Required. The ID to use for the pool, which becomes the final component of the resource name. This value should be 4-32 characters, and may contain the characters [a-z0-9-]. The prefix `gcp-` is reserved for use by Google, and may not be specified. */ workloadIdentityPoolId: pulumi.Input; }