Class: Google::Apis::SpannerV1::CreateInstanceRequest
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SpannerV1::CreateInstanceRequest
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/spanner_v1/classes.rb,
lib/google/apis/spanner_v1/representations.rb,
lib/google/apis/spanner_v1/representations.rb 
Overview
The request for CreateInstance.
Instance Attribute Summary collapse
- 
  
    
      #instance  ⇒ Google::Apis::SpannerV1::Instance 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An isolated set of Cloud Spanner resources on which databases can be hosted.
 - 
  
    
      #instance_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CreateInstanceRequest 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of CreateInstanceRequest.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ CreateInstanceRequest
Returns a new instance of CreateInstanceRequest.
      1155 1156 1157  | 
    
      # File 'lib/google/apis/spanner_v1/classes.rb', line 1155 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#instance ⇒ Google::Apis::SpannerV1::Instance
An isolated set of Cloud Spanner resources on which databases can be hosted.
Corresponds to the JSON property instance
      1147 1148 1149  | 
    
      # File 'lib/google/apis/spanner_v1/classes.rb', line 1147 def instance @instance end  | 
  
#instance_id ⇒ String
Required. The ID of the instance to create. Valid identifiers are of the form 
a-z*[a-z0-9] and must be between 2 and 64 characters in length.
Corresponds to the JSON property instanceId
      1153 1154 1155  | 
    
      # File 'lib/google/apis/spanner_v1/classes.rb', line 1153 def instance_id @instance_id end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1160 1161 1162 1163  | 
    
      # File 'lib/google/apis/spanner_v1/classes.rb', line 1160 def update!(**args) @instance = args[:instance] if args.key?(:instance) @instance_id = args[:instance_id] if args.key?(:instance_id) end  |