Class Database.Builder
- Enclosing class:
- Database
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionbuild()Builds the database from this builder.setDefaultLeader(String defaultLeader) The read-write region which will be used for the database's leader replicas.setDialect(Dialect dialect) setEncryptionConfig(CustomerManagedEncryption encryptionConfig) Optional for creating a new backup.setProtoDescriptors(byte[] protoDescriptors) Optional for creating a new database.setProtoDescriptors(InputStream inputStream) Optional for creating a new database.protected DatabaseInfo.BuildersetReconciling(boolean reconciling)
-
Field Details
-
id
-
-
Method Details
-
build
Description copied from class:DatabaseInfo.BuilderBuilds the database from this builder.- Specified by:
buildin classDatabaseInfo.Builder
-
setEncryptionConfig
public DatabaseInfo.Builder setEncryptionConfig(@Nullable CustomerManagedEncryption encryptionConfig) Description copied from class:DatabaseInfo.BuilderOptional for creating a new backup.The encryption configuration to be used for the database. The only encryption, other than Google's default encryption, is a customer managed encryption with a provided key. If no encryption is provided, Google's default encryption will be used.
- Specified by:
setEncryptionConfigin classDatabaseInfo.Builder
-
setDefaultLeader
Description copied from class:DatabaseInfo.BuilderThe read-write region which will be used for the database's leader replicas. This can be one of the values as specified in https://cloud.google.com/spanner/docs/instances#available-configurations-multi-region.- Overrides:
setDefaultLeaderin classDatabaseInfo.Builder
-
setDialect
- Overrides:
setDialectin classDatabaseInfo.Builder
-
enableDropProtection
- Overrides:
enableDropProtectionin classDatabaseInfo.Builder
-
disableDropProtection
- Overrides:
disableDropProtectionin classDatabaseInfo.Builder
-
setReconciling
- Overrides:
setReconcilingin classDatabaseInfo.Builder
-
setProtoDescriptors
Description copied from class:DatabaseInfo.BuilderOptional for creating a new database.It is used by CREATE/ALTER PROTO BUNDLE statements which are part of DDL statements. Contains a protobuf-serialized [google.protobuf.FileDescriptorSet]. To generate a proto descriptors file run
protoc --include_imports --descriptor_set_out=DESCRIPTOR_OUTPUT_LOCATION LOCATION-OF-PROTO-FILES- Specified by:
setProtoDescriptorsin classDatabaseInfo.Builder- Parameters:
protoDescriptors- The proto descriptors input as byte[] to be used for the database.- Returns:
DatabaseInfo.Builder
-
setProtoDescriptors
public DatabaseInfo.Builder setProtoDescriptors(@Nonnull InputStream inputStream) throws IOException Description copied from class:DatabaseInfo.BuilderOptional for creating a new database.It is used by CREATE/ALTER PROTO BUNDLE statements which are part of DDL statements. Contains a protobuf-serialized [google.protobuf.FileDescriptorSet]. To generate a proto descriptors file run
protoc --include_imports --descriptor_set_out=DESCRIPTOR_OUTPUT_LOCATION LOCATION-OF-PROTO-FILES- Specified by:
setProtoDescriptorsin classDatabaseInfo.Builder- Parameters:
inputStream- The proto descriptors input as InputStream to be used for the database.- Returns:
DatabaseInfo.Builder- Throws:
IOException- if there is a problem reading the underlying stream.
-