class Google::Apis::CloudresourcemanagerV1::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.
Attributes
Creation time of the project creation workflow. Corresponds to the JSON property `createTime` @return [String]
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. Corresponds to the JSON property `gettable` @return [Boolean]
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. Corresponds to the JSON property `gettable` @return [Boolean]
True if the project creation process is complete. Corresponds to the JSON property `ready` @return [Boolean]
True if the project creation process is complete. Corresponds to the JSON property `ready` @return [Boolean]
Public Class Methods
# File lib/google/apis/cloudresourcemanager_v1/classes.rb, line 473 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/cloudresourcemanager_v1/classes.rb, line 478 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @gettable = args[:gettable] if args.key?(:gettable) @ready = args[:ready] if args.key?(:ready) end