Class: Google::Apis::SpannerV1::Database
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SpannerV1::Database
 
 
- 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
A Cloud Spanner database.
Instance Attribute Summary collapse
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 - 
  
    
      #state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Database 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Database.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Database
Returns a new instance of Database
      681 682 683  | 
    
      # File 'generated/google/apis/spanner_v1/classes.rb', line 681 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#name ⇒ String
Required. The name of the database. Values are of the form
projects/<project>/instances/<instance>/databases/<database>,
where <database> is as specified in the CREATE DATABASE
statement. This name can be passed to other API methods to
identify the database.
Corresponds to the JSON property name
      674 675 676  | 
    
      # File 'generated/google/apis/spanner_v1/classes.rb', line 674 def name @name end  | 
  
#state ⇒ String
Output only. The current database state.
Corresponds to the JSON property state
      679 680 681  | 
    
      # File 'generated/google/apis/spanner_v1/classes.rb', line 679 def state @state end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      686 687 688 689  | 
    
      # File 'generated/google/apis/spanner_v1/classes.rb', line 686 def update!(**args) @name = args[:name] if args.key?(:name) @state = args[:state] if args.key?(:state) end  |