import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../../types"; /** * Creates a deployment and all of the resources described by the deployment manifest. */ export declare class Deployment extends pulumi.CustomResource { /** * Get an existing Deployment 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): Deployment; /** * Returns true if the given object is an instance of Deployment. 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 Deployment; /** * An optional user-provided description of the deployment. */ readonly description: pulumi.Output; /** * Provides a fingerprint to use in requests to modify a deployment, such as `update()`, `stop()`, and `cancelPreview()` requests. A fingerprint is a randomly generated value that must be provided with `update()`, `stop()`, and `cancelPreview()` requests to perform optimistic locking. This ensures optimistic concurrency so that only one request happens at a time. The fingerprint is initially generated by Deployment Manager and changes after every request to modify data. To get the latest fingerprint value, perform a `get()` request to a deployment. */ readonly fingerprint: pulumi.Output; /** * Creation timestamp in RFC3339 text format. */ readonly insertTime: pulumi.Output; /** * Map of One Platform labels; provided by the client when the resource is created or updated. Specifically: Label keys must be between 1 and 63 characters long and must conform to the following regular expression: `[a-z]([-a-z0-9]*[a-z0-9])?` Label values must be between 0 and 63 characters long and must conform to the regular expression `([a-z]([-a-z0-9]*[a-z0-9])?)?`. */ readonly labels: pulumi.Output; /** * URL of the manifest representing the last manifest that was successfully deployed. If no manifest has been successfully deployed, this field will be absent. */ readonly manifest: pulumi.Output; /** * Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. */ readonly name: pulumi.Output; /** * The Operation that most recently ran, or is currently running, on this deployment. */ readonly operation: pulumi.Output; /** * Server defined URL for the resource. */ readonly selfLink: pulumi.Output; /** * [Input Only] The parameters that define your deployment, including the deployment configuration and relevant templates. */ readonly target: pulumi.Output; /** * If Deployment Manager is currently updating or previewing an update to this deployment, the updated configuration appears here. */ readonly update: pulumi.Output; /** * Update timestamp in RFC3339 text format. */ readonly updateTime: pulumi.Output; /** * Create a Deployment 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: DeploymentArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Deployment resource. */ export interface DeploymentArgs { readonly deployment: pulumi.Input; /** * An optional user-provided description of the deployment. */ readonly description?: pulumi.Input; /** * Provides a fingerprint to use in requests to modify a deployment, such as `update()`, `stop()`, and `cancelPreview()` requests. A fingerprint is a randomly generated value that must be provided with `update()`, `stop()`, and `cancelPreview()` requests to perform optimistic locking. This ensures optimistic concurrency so that only one request happens at a time. The fingerprint is initially generated by Deployment Manager and changes after every request to modify data. To get the latest fingerprint value, perform a `get()` request to a deployment. */ readonly fingerprint?: pulumi.Input; readonly id?: pulumi.Input; /** * Creation timestamp in RFC3339 text format. */ readonly insertTime?: pulumi.Input; /** * Map of One Platform labels; provided by the client when the resource is created or updated. Specifically: Label keys must be between 1 and 63 characters long and must conform to the following regular expression: `[a-z]([-a-z0-9]*[a-z0-9])?` Label values must be between 0 and 63 characters long and must conform to the regular expression `([a-z]([-a-z0-9]*[a-z0-9])?)?`. */ readonly labels?: pulumi.Input[]>; /** * URL of the manifest representing the last manifest that was successfully deployed. If no manifest has been successfully deployed, this field will be absent. */ readonly manifest?: pulumi.Input; /** * Name of the resource; provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. */ readonly name?: pulumi.Input; /** * The Operation that most recently ran, or is currently running, on this deployment. */ readonly operation?: pulumi.Input; readonly project: pulumi.Input; /** * Server defined URL for the resource. */ readonly selfLink?: pulumi.Input; /** * [Input Only] The parameters that define your deployment, including the deployment configuration and relevant templates. */ readonly target?: pulumi.Input; /** * If Deployment Manager is currently updating or previewing an update to this deployment, the updated configuration appears here. */ readonly update?: pulumi.Input; /** * Update timestamp in RFC3339 text format. */ readonly updateTime?: pulumi.Input; }