Show / Hide Table of Contents

Class Deployment

The period during which some deployable was active in a runtime.

Inheritance
System.Object
Deployment
Implements
Google.Apis.Requests.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.ContainerAnalysis.v1beta1.Data
Assembly: Google.Apis.ContainerAnalysis.v1beta1.dll
Syntax
public class Deployment : IDirectResponseSchema

Properties

Address

Address of the runtime element hosting this deployment.

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

Config

Configuration used to create this deployment.

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

DeployTime

Required. Beginning of the lifetime of this deployment.

Declaration
[JsonProperty("deployTime")]
public virtual object DeployTime { get; set; }
Property Value
Type Description
System.Object

ETag

The ETag of the item.

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

Platform

Platform hosting this deployment.

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

ResourceUri

Output only. Resource URI for the artifact being deployed taken from the deployable field with the same name.

Declaration
[JsonProperty("resourceUri")]
public virtual IList<string> ResourceUri { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

UndeployTime

End of the lifetime of this deployment.

Declaration
[JsonProperty("undeployTime")]
public virtual object UndeployTime { get; set; }
Property Value
Type Description
System.Object

UserEmail

Identity of the user that triggered this deployment.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top