Show / Hide Table of Contents

Class Deployment

Inheritance
System.Object
Deployment
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.DeploymentManagerAlpha.alpha.Data
Assembly: Google.Apis.DeploymentManagerAlpha.alpha.dll
Syntax
public class Deployment : IDirectResponseSchema

Properties

Credential

User provided default credential for the deployment.

Declaration
[JsonProperty("credential")]
public virtual Credential Credential { get; set; }
Property Value
Type Description
Credential

Description

An optional user-provided description of the deployment.

Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Fingerprint

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.

Declaration
[JsonProperty("fingerprint")]
public virtual string Fingerprint { get; set; }
Property Value
Type Description
System.String

Id

Declaration
[JsonProperty("id")]
public virtual ulong? Id { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

InsertTime

Output only. Creation timestamp in RFC3339 text format.

Declaration
[JsonProperty("insertTime")]
public virtual string InsertTime { get; set; }
Property Value
Type Description
System.String

Labels

Map of 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])?)?.

Declaration
[JsonProperty("labels")]
public virtual IList<DeploymentLabelEntry> Labels { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<DeploymentLabelEntry>

Manifest

Output only. URL of the manifest representing the last manifest that was successfully deployed. If no manifest has been successfully deployed, this field will be absent.

Declaration
[JsonProperty("manifest")]
public virtual string Manifest { get; set; }
Property Value
Type Description
System.String

Name

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.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
System.String

Operation

Output only. The Operation that most recently ran, or is currently running, on this deployment.

Declaration
[JsonProperty("operation")]
public virtual Operation Operation { get; set; }
Property Value
Type Description
Operation

Outputs

Output only. List of outputs from the last manifest that deployed successfully.

Declaration
[JsonProperty("outputs")]
public virtual IList<DeploymentOutputEntry> Outputs { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<DeploymentOutputEntry>

SelfLink

Output only. Server defined URL for the resource.

Declaration
[JsonProperty("selfLink")]
public virtual string SelfLink { get; set; }
Property Value
Type Description
System.String

Target

[Input Only] The parameters that define your deployment, including the deployment configuration and relevant templates.

Declaration
[JsonProperty("target")]
public virtual TargetConfiguration Target { get; set; }
Property Value
Type Description
TargetConfiguration

Update

Output only. If Deployment Manager is currently updating or previewing an update to this deployment, the updated configuration appears here.

Declaration
[JsonProperty("update")]
public virtual DeploymentUpdate Update { get; set; }
Property Value
Type Description
DeploymentUpdate

UpdateTime

Output only. Update timestamp in RFC3339 text format.

Declaration
[JsonProperty("updateTime")]
public virtual string UpdateTime { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top