Show / Hide Table of Contents

Class CreateProjectMetadata

A status object which is used as the metadata field for the Operation returned by CreateProject. It provides insight for when significant phases of Project creation have completed.

Inheritance
System.Object
CreateProjectMetadata
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.CloudResourceManager.v3.Data
Assembly: Google.Apis.CloudResourceManager.v3.dll
Syntax
public class CreateProjectMetadata : IDirectResponseSchema

Properties

CreateTime

Creation time of the project creation workflow.

Declaration
[JsonProperty("createTime")]
public virtual object CreateTime { 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

Gettable

True if the project can be retrieved using GetProject. No other operations on the project are guaranteed to work until the project creation is complete.

Declaration
[JsonProperty("gettable")]
public virtual bool? Gettable { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Ready

True if the project creation process is complete.

Declaration
[JsonProperty("ready")]
public virtual bool? Ready { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

IDirectResponseSchema
In This Article
Back to top