Class: Google::Apis::CloudresourcemanagerV2beta1::ProjectCreationStatus
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::CloudresourcemanagerV2beta1::ProjectCreationStatus
 
 
- Defined in:
 - generated/google/apis/cloudresourcemanager_v2beta1/classes.rb,
generated/google/apis/cloudresourcemanager_v2beta1/representations.rb,
generated/google/apis/cloudresourcemanager_v2beta1/representations.rb 
Overview
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.
Instance Attribute Summary collapse
- 
  
    
      #create_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Creation time of the project creation workflow.
 - 
  
    
      #gettable  ⇒ Boolean 
    
    
      (also: #gettable?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
True if the project can be retrieved using GetProject.
 - 
  
    
      #ready  ⇒ Boolean 
    
    
      (also: #ready?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
True if the project creation process is complete.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ProjectCreationStatus 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ProjectCreationStatus.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ ProjectCreationStatus
Returns a new instance of ProjectCreationStatus
      617 618 619  | 
    
      # File 'generated/google/apis/cloudresourcemanager_v2beta1/classes.rb', line 617 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#create_time ⇒ String
Creation time of the project creation workflow.
Corresponds to the JSON property createTime
      601 602 603  | 
    
      # File 'generated/google/apis/cloudresourcemanager_v2beta1/classes.rb', line 601 def create_time @create_time end  | 
  
#gettable ⇒ Boolean Also known as: 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.
Corresponds to the JSON property gettable
      608 609 610  | 
    
      # File 'generated/google/apis/cloudresourcemanager_v2beta1/classes.rb', line 608 def gettable @gettable end  | 
  
#ready ⇒ Boolean Also known as: ready?
True if the project creation process is complete.
Corresponds to the JSON property ready
      614 615 616  | 
    
      # File 'generated/google/apis/cloudresourcemanager_v2beta1/classes.rb', line 614 def ready @ready end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      622 623 624 625 626  | 
    
      # File 'generated/google/apis/cloudresourcemanager_v2beta1/classes.rb', line 622 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  |