import * as pulumi from "@pulumi/pulumi"; /** * Creates a new ArchiveDeployment. */ export declare class ArchiveDeployment extends pulumi.CustomResource { /** * Get an existing ArchiveDeployment 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): ArchiveDeployment; /** * Returns true if the given object is an instance of ArchiveDeployment. 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 ArchiveDeployment; /** * The time at which the Archive Deployment was created in milliseconds since the epoch. */ readonly createdAt: pulumi.Output; readonly environmentId: pulumi.Output; /** * Input only. The Google Cloud Storage signed URL returned from GenerateUploadUrl and used to upload the Archive zip file. */ readonly gcsUri: pulumi.Output; /** * User-supplied key-value pairs used to organize ArchiveDeployments. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: \p{Ll}\p{Lo}{0,62} Label values must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}_-]{0,63} No more than 64 labels can be associated with a given store. */ readonly labels: pulumi.Output<{ [key: string]: string; }>; /** * Name of the Archive Deployment in the following format: `organizations/{org}/environments/{env}/archiveDeployments/{id}`. */ readonly name: pulumi.Output; /** * A reference to the LRO that created this Archive Deployment in the following format: `organizations/{org}/operations/{id}` */ readonly operation: pulumi.Output; readonly organizationId: pulumi.Output; /** * The time at which the Archive Deployment was updated in milliseconds since the epoch. */ readonly updatedAt: pulumi.Output; /** * Create a ArchiveDeployment 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: ArchiveDeploymentArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ArchiveDeployment resource. */ export interface ArchiveDeploymentArgs { environmentId: pulumi.Input; /** * Input only. The Google Cloud Storage signed URL returned from GenerateUploadUrl and used to upload the Archive zip file. */ gcsUri?: pulumi.Input; /** * User-supplied key-value pairs used to organize ArchiveDeployments. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: \p{Ll}\p{Lo}{0,62} Label values must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}_-]{0,63} No more than 64 labels can be associated with a given store. */ labels?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * Name of the Archive Deployment in the following format: `organizations/{org}/environments/{env}/archiveDeployments/{id}`. */ name?: pulumi.Input; organizationId: pulumi.Input; }