Class: Google::Apis::SpannerV1::CreateInstanceMetadata
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SpannerV1::CreateInstanceMetadata
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/spanner_v1/classes.rb,
 generated/google/apis/spanner_v1/representations.rb,
 generated/google/apis/spanner_v1/representations.rb
Overview
Metadata type for the operation returned by CreateInstance.
Instance Attribute Summary collapse
- 
  
    
      #cancel_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time at which this operation was cancelled. 
- 
  
    
      #end_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time at which this operation failed or was completed successfully. 
- 
  
    
      #instance  ⇒ Google::Apis::SpannerV1::Instance 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An isolated set of Cloud Spanner resources on which databases can be hosted. 
- 
  
    
      #start_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time at which the CreateInstance request was received. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CreateInstanceMetadata 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CreateInstanceMetadata. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CreateInstanceMetadata
Returns a new instance of CreateInstanceMetadata
| 596 597 598 | # File 'generated/google/apis/spanner_v1/classes.rb', line 596 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#cancel_time ⇒ String
The time at which this operation was cancelled. If set, this operation is
in the process of undoing itself (which is guaranteed to succeed) and
cannot be cancelled again.
Corresponds to the JSON property cancelTime
| 577 578 579 | # File 'generated/google/apis/spanner_v1/classes.rb', line 577 def cancel_time @cancel_time end | 
#end_time ⇒ String
The time at which this operation failed or was completed successfully.
Corresponds to the JSON property endTime
| 582 583 584 | # File 'generated/google/apis/spanner_v1/classes.rb', line 582 def end_time @end_time end | 
#instance ⇒ Google::Apis::SpannerV1::Instance
An isolated set of Cloud Spanner resources on which databases can be hosted.
Corresponds to the JSON property instance
| 587 588 589 | # File 'generated/google/apis/spanner_v1/classes.rb', line 587 def instance @instance end | 
#start_time ⇒ String
The time at which the
CreateInstance request was
received.
Corresponds to the JSON property startTime
| 594 595 596 | # File 'generated/google/apis/spanner_v1/classes.rb', line 594 def start_time @start_time end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 601 602 603 604 605 606 | # File 'generated/google/apis/spanner_v1/classes.rb', line 601 def update!(**args) @cancel_time = args[:cancel_time] if args.key?(:cancel_time) @end_time = args[:end_time] if args.key?(:end_time) @instance = args[:instance] if args.key?(:instance) @start_time = args[:start_time] if args.key?(:start_time) end |