Show / Hide Table of Contents

Class Resource

Inheritance
System.Object
Resource
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 Resource : IDirectResponseSchema

Properties

AccessControl

The Access Control Policy set on this resource.

Declaration
[JsonProperty("accessControl")]
public virtual ResourceAccessControl AccessControl { get; set; }
Property Value
Type Description
ResourceAccessControl

ETag

The ETag of the item.

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

FinalProperties

Output only. The evaluated properties of the resource with references expanded. Returned as serialized YAML.

Declaration
[JsonProperty("finalProperties")]
public virtual string FinalProperties { 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

LastUsedCredential

Output only. The last used credential that successfully created/updated the resource.

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

Manifest

Output only. URL of the manifest representing the current configuration of this resource.

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

Name

Output only. The name of the resource as it appears in the YAML config.

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

Properties

Output only. The current properties of the resource before any references have been filled in. Returned as serialized YAML.

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

RuntimePolicies

Output only. In case this is an action, it will show the runtimePolicies on which this action will run in the deployment

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

Type

Output only. The type of the resource, for example compute.v1.instance, or cloudfunctions.v1beta1.function.

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

Update

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

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

UpdateTime

Output only. Update timestamp in RFC3339 text format.

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

Url

Output only. The URL of the actual resource.

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

Warnings

Output only. If warning messages are generated during processing of this resource, this field will be populated.

Declaration
[JsonProperty("warnings")]
public virtual IList<Resource.WarningsData> Warnings { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Resource.WarningsData>

Implements

IDirectResponseSchema
Back to top