Class: Google::Apis::SpannerV1::CreateDatabaseRequest

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

The request for CreateDatabase.

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) ⇒ CreateDatabaseRequest

Returns a new instance of CreateDatabaseRequest.



739
740
741
# File 'generated/google/apis/spanner_v1/classes.rb', line 739

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

Instance Attribute Details

#create_statementString

Required. A CREATE DATABASE statement, which specifies the ID of the new database. The database ID must conform to the regular expression a-z*[a-z0-9] and be between 2 and 30 characters in length. If the database ID is a reserved word or if it contains a hyphen, the database ID must be enclosed in backticks (`). Corresponds to the JSON property createStatement

Returns:

  • (String)


729
730
731
# File 'generated/google/apis/spanner_v1/classes.rb', line 729

def create_statement
  @create_statement
end

#extra_statementsArray<String>

An optional list of DDL statements to run inside the newly created database. Statements can create tables, indexes, etc. These statements execute atomically with the creation of the database: if there is an error in any statement, the database is not created. Corresponds to the JSON property extraStatements

Returns:

  • (Array<String>)


737
738
739
# File 'generated/google/apis/spanner_v1/classes.rb', line 737

def extra_statements
  @extra_statements
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



744
745
746
747
# File 'generated/google/apis/spanner_v1/classes.rb', line 744

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