Class: Google::Apis::SpannerV1::Database

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Database

Returns a new instance of Database.



856
857
858
# File 'generated/google/apis/spanner_v1/classes.rb', line 856

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#nameString

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

Returns:

  • (String)


849
850
851
# File 'generated/google/apis/spanner_v1/classes.rb', line 849

def name
  @name
end

#stateString

Output only. The current database state. Corresponds to the JSON property state

Returns:

  • (String)


854
855
856
# File 'generated/google/apis/spanner_v1/classes.rb', line 854

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



861
862
863
864
# File 'generated/google/apis/spanner_v1/classes.rb', line 861

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @state = args[:state] if args.key?(:state)
end