- 6.102.1 (latest)
 - 6.102.0
 - 6.101.1
 - 6.100.0
 - 6.99.0
 - 6.98.1
 - 6.97.1
 - 6.96.1
 - 6.95.1
 - 6.94.0
 - 6.93.0
 - 6.89.0
 - 6.88.0
 - 6.87.0
 - 6.86.0
 - 6.85.0
 - 6.83.0
 - 6.82.0
 - 6.80.1
 - 6.79.0
 - 6.77.0
 - 6.74.1
 - 6.72.0
 - 6.71.0
 - 6.69.0
 - 6.68.0
 - 6.66.0
 - 6.65.1
 - 6.62.0
 - 6.60.0
 - 6.58.0
 - 6.57.0
 - 6.56.0
 - 6.55.0
 - 6.54.0
 - 6.53.0
 - 6.52.1
 - 6.51.0
 - 6.50.1
 - 6.49.0
 - 6.25.1
 - 6.24.0
 - 6.23.4
 - 6.22.0
 - 6.21.2
 - 6.20.0
 - 6.19.1
 - 6.18.0
 - 6.17.4
 - 6.14.1
 
public static final class CreateDatabaseRequest.Builder extends GeneratedMessageV3.Builder<CreateDatabaseRequest.Builder> implements CreateDatabaseRequestOrBuilderThe request for CreateDatabase.
 Protobuf type google.spanner.admin.database.v1.CreateDatabaseRequest
Inheritance
Object > AbstractMessageLite.Builder<MessageType,BuilderType> > AbstractMessage.Builder<BuilderType> > GeneratedMessageV3.Builder > CreateDatabaseRequest.BuilderImplements
CreateDatabaseRequestOrBuilderMethods
addAllExtraStatements(Iterable<String> values)
public CreateDatabaseRequest.Builder addAllExtraStatements(Iterable<String> values)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.
 repeated string extra_statements = 3 [(.google.api.field_behavior) = OPTIONAL];
| Name | Description | 
| values | Iterable<String>The extraStatements to add.  | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder | This builder for chaining.  | 
      
addExtraStatements(String value)
public CreateDatabaseRequest.Builder addExtraStatements(String value)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.
 repeated string extra_statements = 3 [(.google.api.field_behavior) = OPTIONAL];
| Name | Description | 
| value | StringThe extraStatements to add.  | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder | This builder for chaining.  | 
      
addExtraStatementsBytes(ByteString value)
public CreateDatabaseRequest.Builder addExtraStatementsBytes(ByteString value)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.
 repeated string extra_statements = 3 [(.google.api.field_behavior) = OPTIONAL];
| Name | Description | 
| value | ByteStringThe bytes of the extraStatements to add.  | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder | This builder for chaining.  | 
      
addRepeatedField(Descriptors.FieldDescriptor field, Object value)
public CreateDatabaseRequest.Builder addRepeatedField(Descriptors.FieldDescriptor field, Object value)| Name | Description | 
| field | FieldDescriptor | 
      
| value | Object | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder | 
build()
public CreateDatabaseRequest build()| Type | Description | 
| CreateDatabaseRequest | 
buildPartial()
public CreateDatabaseRequest buildPartial()| Type | Description | 
| CreateDatabaseRequest | 
clear()
public CreateDatabaseRequest.Builder clear()| Type | Description | 
| CreateDatabaseRequest.Builder | 
clearCreateStatement()
public CreateDatabaseRequest.Builder clearCreateStatement() 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 (`).  
 string create_statement = 2 [(.google.api.field_behavior) = REQUIRED];
| Type | Description | 
| CreateDatabaseRequest.Builder | This builder for chaining.  | 
      
clearEncryptionConfig()
public CreateDatabaseRequest.Builder clearEncryptionConfig()Optional. The encryption configuration for the database. If this field is not specified, Cloud Spanner will encrypt/decrypt all data at rest using Google default encryption.
 
 .google.spanner.admin.database.v1.EncryptionConfig encryption_config = 4 [(.google.api.field_behavior) = OPTIONAL];
 
| Type | Description | 
| CreateDatabaseRequest.Builder | 
clearExtraStatements()
public CreateDatabaseRequest.Builder clearExtraStatements()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.
 repeated string extra_statements = 3 [(.google.api.field_behavior) = OPTIONAL];
| Type | Description | 
| CreateDatabaseRequest.Builder | This builder for chaining.  | 
      
clearField(Descriptors.FieldDescriptor field)
public CreateDatabaseRequest.Builder clearField(Descriptors.FieldDescriptor field)| Name | Description | 
| field | FieldDescriptor | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder | 
clearOneof(Descriptors.OneofDescriptor oneof)
public CreateDatabaseRequest.Builder clearOneof(Descriptors.OneofDescriptor oneof)| Name | Description | 
| oneof | OneofDescriptor | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder | 
clearParent()
public CreateDatabaseRequest.Builder clearParent() Required. The name of the instance that will serve the new database.
 Values are of the form projects/<project>/instances/<instance>.
 
 string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
 
| Type | Description | 
| CreateDatabaseRequest.Builder | This builder for chaining.  | 
      
clone()
public CreateDatabaseRequest.Builder clone()| Type | Description | 
| CreateDatabaseRequest.Builder | 
getCreateStatement()
public String getCreateStatement() 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 (`).  
 string create_statement = 2 [(.google.api.field_behavior) = REQUIRED];
| Type | Description | 
| String | The createStatement.  | 
      
getCreateStatementBytes()
public ByteString getCreateStatementBytes() 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 (`).  
 string create_statement = 2 [(.google.api.field_behavior) = REQUIRED];
| Type | Description | 
| ByteString | The bytes for createStatement.  | 
      
getDefaultInstanceForType()
public CreateDatabaseRequest getDefaultInstanceForType()| Type | Description | 
| CreateDatabaseRequest | 
getDescriptor()
public static final Descriptors.Descriptor getDescriptor()| Type | Description | 
| Descriptor | 
getDescriptorForType()
public Descriptors.Descriptor getDescriptorForType()| Type | Description | 
| Descriptor | 
getEncryptionConfig()
public EncryptionConfig getEncryptionConfig()Optional. The encryption configuration for the database. If this field is not specified, Cloud Spanner will encrypt/decrypt all data at rest using Google default encryption.
 
 .google.spanner.admin.database.v1.EncryptionConfig encryption_config = 4 [(.google.api.field_behavior) = OPTIONAL];
 
| Type | Description | 
| EncryptionConfig | The encryptionConfig.  | 
      
getEncryptionConfigBuilder()
public EncryptionConfig.Builder getEncryptionConfigBuilder()Optional. The encryption configuration for the database. If this field is not specified, Cloud Spanner will encrypt/decrypt all data at rest using Google default encryption.
 
 .google.spanner.admin.database.v1.EncryptionConfig encryption_config = 4 [(.google.api.field_behavior) = OPTIONAL];
 
| Type | Description | 
| EncryptionConfig.Builder | 
getEncryptionConfigOrBuilder()
public EncryptionConfigOrBuilder getEncryptionConfigOrBuilder()Optional. The encryption configuration for the database. If this field is not specified, Cloud Spanner will encrypt/decrypt all data at rest using Google default encryption.
 
 .google.spanner.admin.database.v1.EncryptionConfig encryption_config = 4 [(.google.api.field_behavior) = OPTIONAL];
 
| Type | Description | 
| EncryptionConfigOrBuilder | 
getExtraStatements(int index)
public String getExtraStatements(int index)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.
 repeated string extra_statements = 3 [(.google.api.field_behavior) = OPTIONAL];
| Name | Description | 
| index | intThe index of the element to return.  | 
      
| Type | Description | 
| String | The extraStatements at the given index.  | 
      
getExtraStatementsBytes(int index)
public ByteString getExtraStatementsBytes(int index)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.
 repeated string extra_statements = 3 [(.google.api.field_behavior) = OPTIONAL];
| Name | Description | 
| index | intThe index of the value to return.  | 
      
| Type | Description | 
| ByteString | The bytes of the extraStatements at the given index.  | 
      
getExtraStatementsCount()
public int getExtraStatementsCount()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.
 repeated string extra_statements = 3 [(.google.api.field_behavior) = OPTIONAL];
| Type | Description | 
| int | The count of extraStatements.  | 
      
getExtraStatementsList()
public ProtocolStringList getExtraStatementsList()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.
 repeated string extra_statements = 3 [(.google.api.field_behavior) = OPTIONAL];
| Type | Description | 
| ProtocolStringList | A list containing the extraStatements.  | 
      
getParent()
public String getParent() Required. The name of the instance that will serve the new database.
 Values are of the form projects/<project>/instances/<instance>.
 
 string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
 
| Type | Description | 
| String | The parent.  | 
      
getParentBytes()
public ByteString getParentBytes() Required. The name of the instance that will serve the new database.
 Values are of the form projects/<project>/instances/<instance>.
 
 string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
 
| Type | Description | 
| ByteString | The bytes for parent.  | 
      
hasEncryptionConfig()
public boolean hasEncryptionConfig()Optional. The encryption configuration for the database. If this field is not specified, Cloud Spanner will encrypt/decrypt all data at rest using Google default encryption.
 
 .google.spanner.admin.database.v1.EncryptionConfig encryption_config = 4 [(.google.api.field_behavior) = OPTIONAL];
 
| Type | Description | 
| boolean | Whether the encryptionConfig field is set.  | 
      
internalGetFieldAccessorTable()
protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()| Type | Description | 
| FieldAccessorTable | 
isInitialized()
public final boolean isInitialized()| Type | Description | 
| boolean | 
mergeEncryptionConfig(EncryptionConfig value)
public CreateDatabaseRequest.Builder mergeEncryptionConfig(EncryptionConfig value)Optional. The encryption configuration for the database. If this field is not specified, Cloud Spanner will encrypt/decrypt all data at rest using Google default encryption.
 
 .google.spanner.admin.database.v1.EncryptionConfig encryption_config = 4 [(.google.api.field_behavior) = OPTIONAL];
 
| Name | Description | 
| value | EncryptionConfig | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder | 
mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
public CreateDatabaseRequest.Builder mergeFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)| Name | Description | 
| input | CodedInputStream | 
      
| extensionRegistry | ExtensionRegistryLite | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder | 
| Type | Description | 
| IOException | 
mergeFrom(Message other)
public CreateDatabaseRequest.Builder mergeFrom(Message other)| Name | Description | 
| other | Message | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder | 
mergeFrom(CreateDatabaseRequest other)
public CreateDatabaseRequest.Builder mergeFrom(CreateDatabaseRequest other)| Name | Description | 
| other | CreateDatabaseRequest | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder | 
mergeUnknownFields(UnknownFieldSet unknownFields)
public final CreateDatabaseRequest.Builder mergeUnknownFields(UnknownFieldSet unknownFields)| Name | Description | 
| unknownFields | UnknownFieldSet | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder | 
setCreateStatement(String value)
public CreateDatabaseRequest.Builder setCreateStatement(String value) 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 (`).  
 string create_statement = 2 [(.google.api.field_behavior) = REQUIRED];
| Name | Description | 
| value | StringThe createStatement to set.  | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder | This builder for chaining.  | 
      
setCreateStatementBytes(ByteString value)
public CreateDatabaseRequest.Builder setCreateStatementBytes(ByteString value) 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 (`).  
 string create_statement = 2 [(.google.api.field_behavior) = REQUIRED];
| Name | Description | 
| value | ByteStringThe bytes for createStatement to set.  | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder | This builder for chaining.  | 
      
setEncryptionConfig(EncryptionConfig value)
public CreateDatabaseRequest.Builder setEncryptionConfig(EncryptionConfig value)Optional. The encryption configuration for the database. If this field is not specified, Cloud Spanner will encrypt/decrypt all data at rest using Google default encryption.
 
 .google.spanner.admin.database.v1.EncryptionConfig encryption_config = 4 [(.google.api.field_behavior) = OPTIONAL];
 
| Name | Description | 
| value | EncryptionConfig | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder | 
setEncryptionConfig(EncryptionConfig.Builder builderForValue)
public CreateDatabaseRequest.Builder setEncryptionConfig(EncryptionConfig.Builder builderForValue)Optional. The encryption configuration for the database. If this field is not specified, Cloud Spanner will encrypt/decrypt all data at rest using Google default encryption.
 
 .google.spanner.admin.database.v1.EncryptionConfig encryption_config = 4 [(.google.api.field_behavior) = OPTIONAL];
 
| Name | Description | 
| builderForValue | EncryptionConfig.Builder | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder | 
setExtraStatements(int index, String value)
public CreateDatabaseRequest.Builder setExtraStatements(int index, String value)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.
 repeated string extra_statements = 3 [(.google.api.field_behavior) = OPTIONAL];
| Name | Description | 
| index | intThe index to set the value at.  | 
      
| value | StringThe extraStatements to set.  | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder | This builder for chaining.  | 
      
setField(Descriptors.FieldDescriptor field, Object value)
public CreateDatabaseRequest.Builder setField(Descriptors.FieldDescriptor field, Object value)| Name | Description | 
| field | FieldDescriptor | 
      
| value | Object | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder | 
setParent(String value)
public CreateDatabaseRequest.Builder setParent(String value) Required. The name of the instance that will serve the new database.
 Values are of the form projects/<project>/instances/<instance>.
 
 string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
 
| Name | Description | 
| value | StringThe parent to set.  | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder | This builder for chaining.  | 
      
setParentBytes(ByteString value)
public CreateDatabaseRequest.Builder setParentBytes(ByteString value) Required. The name of the instance that will serve the new database.
 Values are of the form projects/<project>/instances/<instance>.
 
 string parent = 1 [(.google.api.field_behavior) = REQUIRED, (.google.api.resource_reference) = { ... }
 
| Name | Description | 
| value | ByteStringThe bytes for parent to set.  | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder | This builder for chaining.  | 
      
setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)
public CreateDatabaseRequest.Builder setRepeatedField(Descriptors.FieldDescriptor field, int index, Object value)| Name | Description | 
| field | FieldDescriptor | 
      
| index | int | 
      
| value | Object | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder | 
setUnknownFields(UnknownFieldSet unknownFields)
public final CreateDatabaseRequest.Builder setUnknownFields(UnknownFieldSet unknownFields)| Name | Description | 
| unknownFields | UnknownFieldSet | 
      
| Type | Description | 
| CreateDatabaseRequest.Builder |