public sealed class CreateDatabaseRequest : IMessage<CreateDatabaseRequest>, IEquatable<CreateDatabaseRequest>, IDeepCloneable<CreateDatabaseRequest>, IBufferMessage, IMessage
The request for [CreateDatabase][google.spanner.admin.database.v1.DatabaseAdmin.CreateDatabase].
Implements
Google.Protobuf.IMessage<CreateDatabaseRequest>, IEquatable<CreateDatabaseRequest>, Google.Protobuf.IDeepCloneable<CreateDatabaseRequest>, Google.Protobuf.IBufferMessage, Google.Protobuf.IMessageNamespace
Google.Cloud.Spanner.Admin.Database.V1Assembly
Google.Cloud.Spanner.Admin.Database.V1.dll
Constructors
CreateDatabaseRequest()
public CreateDatabaseRequest()
CreateDatabaseRequest(CreateDatabaseRequest)
public CreateDatabaseRequest(CreateDatabaseRequest other)
Parameter | |
---|---|
Name | Description |
other | CreateDatabaseRequest |
Properties
CreateStatement
public string CreateStatement { get; set; }
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_\-]*[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 (`
).
Property Value | |
---|---|
Type | Description |
String |
ExtraStatements
public RepeatedField<string> ExtraStatements { get; }
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.
Property Value | |
---|---|
Type | Description |
Google.Protobuf.Collections.RepeatedField<String> |
Parent
public string Parent { get; set; }
Required. The name of the instance that will serve the new database.
Values are of the form projects/<project>/instances/<instance>
.
Property Value | |
---|---|
Type | Description |
String |
ParentAsInstanceName
public InstanceName ParentAsInstanceName { get; set; }
Google.Cloud.Spanner.Common.V1.InstanceName-typed view over the Parent resource name property.
Property Value | |
---|---|
Type | Description |
Google.Cloud.Spanner.Common.V1.InstanceName |