Class: Google::Apis::SpannerV1::CreateDatabaseRequest
- Inherits:
-
Object
- Object
- Google::Apis::SpannerV1::CreateDatabaseRequest
- 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 CreateDatabase.
Instance Attribute Summary collapse
-
#create_statement ⇒ String
Required.
-
#database_dialect ⇒ String
Optional.
-
#encryption_config ⇒ Google::Apis::SpannerV1::EncryptionConfig
Encryption configuration for a Cloud Spanner database.
-
#extra_statements ⇒ Array<String>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CreateDatabaseRequest
constructor
A new instance of CreateDatabaseRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CreateDatabaseRequest
Returns a new instance of CreateDatabaseRequest.
1088 1089 1090 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 1088 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_statement ⇒ String
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
1068 1069 1070 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 1068 def create_statement @create_statement end |
#database_dialect ⇒ String
Optional. The dialect of the Cloud Spanner Database.
Corresponds to the JSON property databaseDialect
1073 1074 1075 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 1073 def database_dialect @database_dialect end |
#encryption_config ⇒ Google::Apis::SpannerV1::EncryptionConfig
Encryption configuration for a Cloud Spanner database.
Corresponds to the JSON property encryptionConfig
1078 1079 1080 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 1078 def encryption_config @encryption_config end |
#extra_statements ⇒ Array<String>
Optional. A 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
1086 1087 1088 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 1086 def extra_statements @extra_statements end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1093 1094 1095 1096 1097 1098 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 1093 def update!(**args) @create_statement = args[:create_statement] if args.key?(:create_statement) @database_dialect = args[:database_dialect] if args.key?(:database_dialect) @encryption_config = args[:encryption_config] if args.key?(:encryption_config) @extra_statements = args[:extra_statements] if args.key?(:extra_statements) end |