Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.spanner/v1.Database
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a new Cloud Spanner database and starts to prepare it for serving. The returned long-running operation will have a name of the format /operations/
and can be used to track preparation of the database. The metadata field type is CreateDatabaseMetadata. The response field type is Database, if successful.
Auto-naming is currently not supported for this resource.
Create Database Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Database(name: string, args: DatabaseArgs, opts?: CustomResourceOptions);
@overload
def Database(resource_name: str,
args: DatabaseArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Database(resource_name: str,
opts: Optional[ResourceOptions] = None,
create_statement: Optional[str] = None,
instance_id: Optional[str] = None,
database_dialect: Optional[DatabaseDatabaseDialect] = None,
encryption_config: Optional[EncryptionConfigArgs] = None,
extra_statements: Optional[Sequence[str]] = None,
project: Optional[str] = None,
proto_descriptors: Optional[str] = None)
func NewDatabase(ctx *Context, name string, args DatabaseArgs, opts ...ResourceOption) (*Database, error)
public Database(string name, DatabaseArgs args, CustomResourceOptions? opts = null)
public Database(String name, DatabaseArgs args)
public Database(String name, DatabaseArgs args, CustomResourceOptions options)
type: google-native:spanner/v1:Database
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DatabaseArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DatabaseArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DatabaseArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DatabaseArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DatabaseArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var exampledatabaseResourceResourceFromSpannerv1 = new GoogleNative.Spanner.V1.Database("exampledatabaseResourceResourceFromSpannerv1", new()
{
CreateStatement = "string",
InstanceId = "string",
DatabaseDialect = GoogleNative.Spanner.V1.DatabaseDatabaseDialect.DatabaseDialectUnspecified,
EncryptionConfig = new GoogleNative.Spanner.V1.Inputs.EncryptionConfigArgs
{
KmsKeyName = "string",
},
ExtraStatements = new[]
{
"string",
},
Project = "string",
ProtoDescriptors = "string",
});
example, err := spanner.NewDatabase(ctx, "exampledatabaseResourceResourceFromSpannerv1", &spanner.DatabaseArgs{
CreateStatement: pulumi.String("string"),
InstanceId: pulumi.String("string"),
DatabaseDialect: spanner.DatabaseDatabaseDialectDatabaseDialectUnspecified,
EncryptionConfig: &spanner.EncryptionConfigArgs{
KmsKeyName: pulumi.String("string"),
},
ExtraStatements: pulumi.StringArray{
pulumi.String("string"),
},
Project: pulumi.String("string"),
ProtoDescriptors: pulumi.String("string"),
})
var exampledatabaseResourceResourceFromSpannerv1 = new Database("exampledatabaseResourceResourceFromSpannerv1", DatabaseArgs.builder()
.createStatement("string")
.instanceId("string")
.databaseDialect("DATABASE_DIALECT_UNSPECIFIED")
.encryptionConfig(EncryptionConfigArgs.builder()
.kmsKeyName("string")
.build())
.extraStatements("string")
.project("string")
.protoDescriptors("string")
.build());
exampledatabase_resource_resource_from_spannerv1 = google_native.spanner.v1.Database("exampledatabaseResourceResourceFromSpannerv1",
create_statement="string",
instance_id="string",
database_dialect=google_native.spanner.v1.DatabaseDatabaseDialect.DATABASE_DIALECT_UNSPECIFIED,
encryption_config=google_native.spanner.v1.EncryptionConfigArgs(
kms_key_name="string",
),
extra_statements=["string"],
project="string",
proto_descriptors="string")
const exampledatabaseResourceResourceFromSpannerv1 = new google_native.spanner.v1.Database("exampledatabaseResourceResourceFromSpannerv1", {
createStatement: "string",
instanceId: "string",
databaseDialect: google_native.spanner.v1.DatabaseDatabaseDialect.DatabaseDialectUnspecified,
encryptionConfig: {
kmsKeyName: "string",
},
extraStatements: ["string"],
project: "string",
protoDescriptors: "string",
});
type: google-native:spanner/v1:Database
properties:
createStatement: string
databaseDialect: DATABASE_DIALECT_UNSPECIFIED
encryptionConfig:
kmsKeyName: string
extraStatements:
- string
instanceId: string
project: string
protoDescriptors: string
Database Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Database resource accepts the following input properties:
- Create
Statement string - A
CREATE DATABASE
statement, which specifies the ID of the new database. The database ID must conform to the regular expressiona-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 (`
). - Instance
Id string - Database
Dialect Pulumi.Google Native. Spanner. V1. Database Database Dialect - Optional. The dialect of the Cloud Spanner Database.
- Encryption
Config Pulumi.Google Native. Spanner. V1. Inputs. Encryption Config - 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.
- Extra
Statements List<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.
- Project string
- Proto
Descriptors string - Optional. Proto descriptors used by CREATE/ALTER PROTO BUNDLE statements in 'extra_statements' above. Contains a protobuf-serialized google.protobuf.FileDescriptorSet. To generate it, install and run
protoc
with --include_imports and --descriptor_set_out. For example, to generate for moon/shot/app.proto, run """ $protoc --proto_path=/app_path --proto_path=/lib_path \ --include_imports \ --descriptor_set_out=descriptors.data \ moon/shot/app.proto """ For more details, see protobuffer self description.
- Create
Statement string - A
CREATE DATABASE
statement, which specifies the ID of the new database. The database ID must conform to the regular expressiona-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 (`
). - Instance
Id string - Database
Dialect DatabaseDatabase Dialect - Optional. The dialect of the Cloud Spanner Database.
- Encryption
Config EncryptionConfig Args - 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.
- Extra
Statements []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.
- Project string
- Proto
Descriptors string - Optional. Proto descriptors used by CREATE/ALTER PROTO BUNDLE statements in 'extra_statements' above. Contains a protobuf-serialized google.protobuf.FileDescriptorSet. To generate it, install and run
protoc
with --include_imports and --descriptor_set_out. For example, to generate for moon/shot/app.proto, run """ $protoc --proto_path=/app_path --proto_path=/lib_path \ --include_imports \ --descriptor_set_out=descriptors.data \ moon/shot/app.proto """ For more details, see protobuffer self description.
- create
Statement String - A
CREATE DATABASE
statement, which specifies the ID of the new database. The database ID must conform to the regular expressiona-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 (`
). - instance
Id String - database
Dialect DatabaseDatabase Dialect - Optional. The dialect of the Cloud Spanner Database.
- encryption
Config EncryptionConfig - 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.
- extra
Statements List<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.
- project String
- proto
Descriptors String - Optional. Proto descriptors used by CREATE/ALTER PROTO BUNDLE statements in 'extra_statements' above. Contains a protobuf-serialized google.protobuf.FileDescriptorSet. To generate it, install and run
protoc
with --include_imports and --descriptor_set_out. For example, to generate for moon/shot/app.proto, run """ $protoc --proto_path=/app_path --proto_path=/lib_path \ --include_imports \ --descriptor_set_out=descriptors.data \ moon/shot/app.proto """ For more details, see protobuffer self description.
- create
Statement string - A
CREATE DATABASE
statement, which specifies the ID of the new database. The database ID must conform to the regular expressiona-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 (`
). - instance
Id string - database
Dialect DatabaseDatabase Dialect - Optional. The dialect of the Cloud Spanner Database.
- encryption
Config EncryptionConfig - 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.
- extra
Statements 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.
- project string
- proto
Descriptors string - Optional. Proto descriptors used by CREATE/ALTER PROTO BUNDLE statements in 'extra_statements' above. Contains a protobuf-serialized google.protobuf.FileDescriptorSet. To generate it, install and run
protoc
with --include_imports and --descriptor_set_out. For example, to generate for moon/shot/app.proto, run """ $protoc --proto_path=/app_path --proto_path=/lib_path \ --include_imports \ --descriptor_set_out=descriptors.data \ moon/shot/app.proto """ For more details, see protobuffer self description.
- create_
statement str - A
CREATE DATABASE
statement, which specifies the ID of the new database. The database ID must conform to the regular expressiona-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 (`
). - instance_
id str - database_
dialect DatabaseDatabase Dialect - Optional. The dialect of the Cloud Spanner Database.
- encryption_
config EncryptionConfig Args - 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.
- extra_
statements Sequence[str] - 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.
- project str
- proto_
descriptors str - Optional. Proto descriptors used by CREATE/ALTER PROTO BUNDLE statements in 'extra_statements' above. Contains a protobuf-serialized google.protobuf.FileDescriptorSet. To generate it, install and run
protoc
with --include_imports and --descriptor_set_out. For example, to generate for moon/shot/app.proto, run """ $protoc --proto_path=/app_path --proto_path=/lib_path \ --include_imports \ --descriptor_set_out=descriptors.data \ moon/shot/app.proto """ For more details, see protobuffer self description.
- create
Statement String - A
CREATE DATABASE
statement, which specifies the ID of the new database. The database ID must conform to the regular expressiona-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 (`
). - instance
Id String - database
Dialect "DATABASE_DIALECT_UNSPECIFIED" | "GOOGLE_STANDARD_SQL" | "POSTGRESQL" - Optional. The dialect of the Cloud Spanner Database.
- encryption
Config Property Map - 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.
- extra
Statements List<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.
- project String
- proto
Descriptors String - Optional. Proto descriptors used by CREATE/ALTER PROTO BUNDLE statements in 'extra_statements' above. Contains a protobuf-serialized google.protobuf.FileDescriptorSet. To generate it, install and run
protoc
with --include_imports and --descriptor_set_out. For example, to generate for moon/shot/app.proto, run """ $protoc --proto_path=/app_path --proto_path=/lib_path \ --include_imports \ --descriptor_set_out=descriptors.data \ moon/shot/app.proto """ For more details, see protobuffer self description.
Outputs
All input properties are implicitly available as output properties. Additionally, the Database resource produces the following output properties:
- Create
Time string - If exists, the time at which the database creation started.
- Default
Leader string - The read-write region which contains the database's leader replicas. This is the same as the value of default_leader database option set using DatabaseAdmin.CreateDatabase or DatabaseAdmin.UpdateDatabaseDdl. If not explicitly set, this is empty.
- Earliest
Version stringTime - Earliest timestamp at which older versions of the data can be read. This value is continuously updated by Cloud Spanner and becomes stale the moment it is queried. If you are using this value to recover data, make sure to account for the time from the moment when the value is queried to the moment when you initiate the recovery.
- Enable
Drop boolProtection - Whether drop protection is enabled for this database. Defaults to false, if not set. For more details, please see how to prevent accidental database deletion.
- Encryption
Info List<Pulumi.Google Native. Spanner. V1. Outputs. Encryption Info Response> - For databases that are using customer managed encryption, this field contains the encryption information for the database, such as all Cloud KMS key versions that are in use. The
encryption_status' field inside of each
EncryptionInfo` is not populated. For databases that are using Google default or other types of encryption, this field is empty. This field is propagated lazily from the backend. There might be a delay from when a key version is being used and when it appears in this field. - Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the database. Values are of the form
projects//instances//databases/
, where `` is as specified in theCREATE DATABASE
statement. This name can be passed to other API methods to identify the database. - Reconciling bool
- If true, the database is being updated. If false, there are no ongoing update operations for the database.
- Restore
Info Pulumi.Google Native. Spanner. V1. Outputs. Restore Info Response - Applicable only for restored databases. Contains information about the restore source.
- State string
- The current database state.
- Version
Retention stringPeriod - The period in which Cloud Spanner retains all versions of data for the database. This is the same as the value of version_retention_period database option set using UpdateDatabaseDdl. Defaults to 1 hour, if not set.
- Create
Time string - If exists, the time at which the database creation started.
- Default
Leader string - The read-write region which contains the database's leader replicas. This is the same as the value of default_leader database option set using DatabaseAdmin.CreateDatabase or DatabaseAdmin.UpdateDatabaseDdl. If not explicitly set, this is empty.
- Earliest
Version stringTime - Earliest timestamp at which older versions of the data can be read. This value is continuously updated by Cloud Spanner and becomes stale the moment it is queried. If you are using this value to recover data, make sure to account for the time from the moment when the value is queried to the moment when you initiate the recovery.
- Enable
Drop boolProtection - Whether drop protection is enabled for this database. Defaults to false, if not set. For more details, please see how to prevent accidental database deletion.
- Encryption
Info []EncryptionInfo Response - For databases that are using customer managed encryption, this field contains the encryption information for the database, such as all Cloud KMS key versions that are in use. The
encryption_status' field inside of each
EncryptionInfo` is not populated. For databases that are using Google default or other types of encryption, this field is empty. This field is propagated lazily from the backend. There might be a delay from when a key version is being used and when it appears in this field. - Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the database. Values are of the form
projects//instances//databases/
, where `` is as specified in theCREATE DATABASE
statement. This name can be passed to other API methods to identify the database. - Reconciling bool
- If true, the database is being updated. If false, there are no ongoing update operations for the database.
- Restore
Info RestoreInfo Response - Applicable only for restored databases. Contains information about the restore source.
- State string
- The current database state.
- Version
Retention stringPeriod - The period in which Cloud Spanner retains all versions of data for the database. This is the same as the value of version_retention_period database option set using UpdateDatabaseDdl. Defaults to 1 hour, if not set.
- create
Time String - If exists, the time at which the database creation started.
- default
Leader String - The read-write region which contains the database's leader replicas. This is the same as the value of default_leader database option set using DatabaseAdmin.CreateDatabase or DatabaseAdmin.UpdateDatabaseDdl. If not explicitly set, this is empty.
- earliest
Version StringTime - Earliest timestamp at which older versions of the data can be read. This value is continuously updated by Cloud Spanner and becomes stale the moment it is queried. If you are using this value to recover data, make sure to account for the time from the moment when the value is queried to the moment when you initiate the recovery.
- enable
Drop BooleanProtection - Whether drop protection is enabled for this database. Defaults to false, if not set. For more details, please see how to prevent accidental database deletion.
- encryption
Info List<EncryptionInfo Response> - For databases that are using customer managed encryption, this field contains the encryption information for the database, such as all Cloud KMS key versions that are in use. The
encryption_status' field inside of each
EncryptionInfo` is not populated. For databases that are using Google default or other types of encryption, this field is empty. This field is propagated lazily from the backend. There might be a delay from when a key version is being used and when it appears in this field. - id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the database. Values are of the form
projects//instances//databases/
, where `` is as specified in theCREATE DATABASE
statement. This name can be passed to other API methods to identify the database. - reconciling Boolean
- If true, the database is being updated. If false, there are no ongoing update operations for the database.
- restore
Info RestoreInfo Response - Applicable only for restored databases. Contains information about the restore source.
- state String
- The current database state.
- version
Retention StringPeriod - The period in which Cloud Spanner retains all versions of data for the database. This is the same as the value of version_retention_period database option set using UpdateDatabaseDdl. Defaults to 1 hour, if not set.
- create
Time string - If exists, the time at which the database creation started.
- default
Leader string - The read-write region which contains the database's leader replicas. This is the same as the value of default_leader database option set using DatabaseAdmin.CreateDatabase or DatabaseAdmin.UpdateDatabaseDdl. If not explicitly set, this is empty.
- earliest
Version stringTime - Earliest timestamp at which older versions of the data can be read. This value is continuously updated by Cloud Spanner and becomes stale the moment it is queried. If you are using this value to recover data, make sure to account for the time from the moment when the value is queried to the moment when you initiate the recovery.
- enable
Drop booleanProtection - Whether drop protection is enabled for this database. Defaults to false, if not set. For more details, please see how to prevent accidental database deletion.
- encryption
Info EncryptionInfo Response[] - For databases that are using customer managed encryption, this field contains the encryption information for the database, such as all Cloud KMS key versions that are in use. The
encryption_status' field inside of each
EncryptionInfo` is not populated. For databases that are using Google default or other types of encryption, this field is empty. This field is propagated lazily from the backend. There might be a delay from when a key version is being used and when it appears in this field. - id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the database. Values are of the form
projects//instances//databases/
, where `` is as specified in theCREATE DATABASE
statement. This name can be passed to other API methods to identify the database. - reconciling boolean
- If true, the database is being updated. If false, there are no ongoing update operations for the database.
- restore
Info RestoreInfo Response - Applicable only for restored databases. Contains information about the restore source.
- state string
- The current database state.
- version
Retention stringPeriod - The period in which Cloud Spanner retains all versions of data for the database. This is the same as the value of version_retention_period database option set using UpdateDatabaseDdl. Defaults to 1 hour, if not set.
- create_
time str - If exists, the time at which the database creation started.
- default_
leader str - The read-write region which contains the database's leader replicas. This is the same as the value of default_leader database option set using DatabaseAdmin.CreateDatabase or DatabaseAdmin.UpdateDatabaseDdl. If not explicitly set, this is empty.
- earliest_
version_ strtime - Earliest timestamp at which older versions of the data can be read. This value is continuously updated by Cloud Spanner and becomes stale the moment it is queried. If you are using this value to recover data, make sure to account for the time from the moment when the value is queried to the moment when you initiate the recovery.
- enable_
drop_ boolprotection - Whether drop protection is enabled for this database. Defaults to false, if not set. For more details, please see how to prevent accidental database deletion.
- encryption_
info Sequence[EncryptionInfo Response] - For databases that are using customer managed encryption, this field contains the encryption information for the database, such as all Cloud KMS key versions that are in use. The
encryption_status' field inside of each
EncryptionInfo` is not populated. For databases that are using Google default or other types of encryption, this field is empty. This field is propagated lazily from the backend. There might be a delay from when a key version is being used and when it appears in this field. - id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the database. Values are of the form
projects//instances//databases/
, where `` is as specified in theCREATE DATABASE
statement. This name can be passed to other API methods to identify the database. - reconciling bool
- If true, the database is being updated. If false, there are no ongoing update operations for the database.
- restore_
info RestoreInfo Response - Applicable only for restored databases. Contains information about the restore source.
- state str
- The current database state.
- version_
retention_ strperiod - The period in which Cloud Spanner retains all versions of data for the database. This is the same as the value of version_retention_period database option set using UpdateDatabaseDdl. Defaults to 1 hour, if not set.
- create
Time String - If exists, the time at which the database creation started.
- default
Leader String - The read-write region which contains the database's leader replicas. This is the same as the value of default_leader database option set using DatabaseAdmin.CreateDatabase or DatabaseAdmin.UpdateDatabaseDdl. If not explicitly set, this is empty.
- earliest
Version StringTime - Earliest timestamp at which older versions of the data can be read. This value is continuously updated by Cloud Spanner and becomes stale the moment it is queried. If you are using this value to recover data, make sure to account for the time from the moment when the value is queried to the moment when you initiate the recovery.
- enable
Drop BooleanProtection - Whether drop protection is enabled for this database. Defaults to false, if not set. For more details, please see how to prevent accidental database deletion.
- encryption
Info List<Property Map> - For databases that are using customer managed encryption, this field contains the encryption information for the database, such as all Cloud KMS key versions that are in use. The
encryption_status' field inside of each
EncryptionInfo` is not populated. For databases that are using Google default or other types of encryption, this field is empty. This field is propagated lazily from the backend. There might be a delay from when a key version is being used and when it appears in this field. - id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the database. Values are of the form
projects//instances//databases/
, where `` is as specified in theCREATE DATABASE
statement. This name can be passed to other API methods to identify the database. - reconciling Boolean
- If true, the database is being updated. If false, there are no ongoing update operations for the database.
- restore
Info Property Map - Applicable only for restored databases. Contains information about the restore source.
- state String
- The current database state.
- version
Retention StringPeriod - The period in which Cloud Spanner retains all versions of data for the database. This is the same as the value of version_retention_period database option set using UpdateDatabaseDdl. Defaults to 1 hour, if not set.
Supporting Types
BackupInfoResponse, BackupInfoResponseArgs
- Backup string
- Name of the backup.
- Create
Time string - The time the CreateBackup request was received.
- Source
Database string - Name of the database the backup was created from.
- Version
Time string - The backup contains an externally consistent copy of
source_database
at the timestamp specified byversion_time
. If the CreateBackup request did not specifyversion_time
, theversion_time
of the backup is equivalent to thecreate_time
.
- Backup string
- Name of the backup.
- Create
Time string - The time the CreateBackup request was received.
- Source
Database string - Name of the database the backup was created from.
- Version
Time string - The backup contains an externally consistent copy of
source_database
at the timestamp specified byversion_time
. If the CreateBackup request did not specifyversion_time
, theversion_time
of the backup is equivalent to thecreate_time
.
- backup String
- Name of the backup.
- create
Time String - The time the CreateBackup request was received.
- source
Database String - Name of the database the backup was created from.
- version
Time String - The backup contains an externally consistent copy of
source_database
at the timestamp specified byversion_time
. If the CreateBackup request did not specifyversion_time
, theversion_time
of the backup is equivalent to thecreate_time
.
- backup string
- Name of the backup.
- create
Time string - The time the CreateBackup request was received.
- source
Database string - Name of the database the backup was created from.
- version
Time string - The backup contains an externally consistent copy of
source_database
at the timestamp specified byversion_time
. If the CreateBackup request did not specifyversion_time
, theversion_time
of the backup is equivalent to thecreate_time
.
- backup str
- Name of the backup.
- create_
time str - The time the CreateBackup request was received.
- source_
database str - Name of the database the backup was created from.
- version_
time str - The backup contains an externally consistent copy of
source_database
at the timestamp specified byversion_time
. If the CreateBackup request did not specifyversion_time
, theversion_time
of the backup is equivalent to thecreate_time
.
- backup String
- Name of the backup.
- create
Time String - The time the CreateBackup request was received.
- source
Database String - Name of the database the backup was created from.
- version
Time String - The backup contains an externally consistent copy of
source_database
at the timestamp specified byversion_time
. If the CreateBackup request did not specifyversion_time
, theversion_time
of the backup is equivalent to thecreate_time
.
DatabaseDatabaseDialect, DatabaseDatabaseDialectArgs
- Database
Dialect Unspecified - DATABASE_DIALECT_UNSPECIFIEDDefault value. This value will create a database with the GOOGLE_STANDARD_SQL dialect.
- Google
Standard Sql - GOOGLE_STANDARD_SQLGoogleSQL supported SQL.
- Postgresql
- POSTGRESQLPostgreSQL supported SQL.
- Database
Database Dialect Database Dialect Unspecified - DATABASE_DIALECT_UNSPECIFIEDDefault value. This value will create a database with the GOOGLE_STANDARD_SQL dialect.
- Database
Database Dialect Google Standard Sql - GOOGLE_STANDARD_SQLGoogleSQL supported SQL.
- Database
Database Dialect Postgresql - POSTGRESQLPostgreSQL supported SQL.
- Database
Dialect Unspecified - DATABASE_DIALECT_UNSPECIFIEDDefault value. This value will create a database with the GOOGLE_STANDARD_SQL dialect.
- Google
Standard Sql - GOOGLE_STANDARD_SQLGoogleSQL supported SQL.
- Postgresql
- POSTGRESQLPostgreSQL supported SQL.
- Database
Dialect Unspecified - DATABASE_DIALECT_UNSPECIFIEDDefault value. This value will create a database with the GOOGLE_STANDARD_SQL dialect.
- Google
Standard Sql - GOOGLE_STANDARD_SQLGoogleSQL supported SQL.
- Postgresql
- POSTGRESQLPostgreSQL supported SQL.
- DATABASE_DIALECT_UNSPECIFIED
- DATABASE_DIALECT_UNSPECIFIEDDefault value. This value will create a database with the GOOGLE_STANDARD_SQL dialect.
- GOOGLE_STANDARD_SQL
- GOOGLE_STANDARD_SQLGoogleSQL supported SQL.
- POSTGRESQL
- POSTGRESQLPostgreSQL supported SQL.
- "DATABASE_DIALECT_UNSPECIFIED"
- DATABASE_DIALECT_UNSPECIFIEDDefault value. This value will create a database with the GOOGLE_STANDARD_SQL dialect.
- "GOOGLE_STANDARD_SQL"
- GOOGLE_STANDARD_SQLGoogleSQL supported SQL.
- "POSTGRESQL"
- POSTGRESQLPostgreSQL supported SQL.
EncryptionConfig, EncryptionConfigArgs
- Kms
Key stringName - The Cloud KMS key to be used for encrypting and decrypting the database. Values are of the form
projects//locations//keyRings//cryptoKeys/
.
- Kms
Key stringName - The Cloud KMS key to be used for encrypting and decrypting the database. Values are of the form
projects//locations//keyRings//cryptoKeys/
.
- kms
Key StringName - The Cloud KMS key to be used for encrypting and decrypting the database. Values are of the form
projects//locations//keyRings//cryptoKeys/
.
- kms
Key stringName - The Cloud KMS key to be used for encrypting and decrypting the database. Values are of the form
projects//locations//keyRings//cryptoKeys/
.
- kms_
key_ strname - The Cloud KMS key to be used for encrypting and decrypting the database. Values are of the form
projects//locations//keyRings//cryptoKeys/
.
- kms
Key StringName - The Cloud KMS key to be used for encrypting and decrypting the database. Values are of the form
projects//locations//keyRings//cryptoKeys/
.
EncryptionConfigResponse, EncryptionConfigResponseArgs
- Kms
Key stringName - The Cloud KMS key to be used for encrypting and decrypting the database. Values are of the form
projects//locations//keyRings//cryptoKeys/
.
- Kms
Key stringName - The Cloud KMS key to be used for encrypting and decrypting the database. Values are of the form
projects//locations//keyRings//cryptoKeys/
.
- kms
Key StringName - The Cloud KMS key to be used for encrypting and decrypting the database. Values are of the form
projects//locations//keyRings//cryptoKeys/
.
- kms
Key stringName - The Cloud KMS key to be used for encrypting and decrypting the database. Values are of the form
projects//locations//keyRings//cryptoKeys/
.
- kms_
key_ strname - The Cloud KMS key to be used for encrypting and decrypting the database. Values are of the form
projects//locations//keyRings//cryptoKeys/
.
- kms
Key StringName - The Cloud KMS key to be used for encrypting and decrypting the database. Values are of the form
projects//locations//keyRings//cryptoKeys/
.
EncryptionInfoResponse, EncryptionInfoResponseArgs
- Encryption
Status Pulumi.Google Native. Spanner. V1. Inputs. Status Response - If present, the status of a recent encrypt/decrypt call on underlying data for this database or backup. Regardless of status, data is always encrypted at rest.
- Encryption
Type string - The type of encryption.
- Kms
Key stringVersion - A Cloud KMS key version that is being used to protect the database or backup.
- Encryption
Status StatusResponse - If present, the status of a recent encrypt/decrypt call on underlying data for this database or backup. Regardless of status, data is always encrypted at rest.
- Encryption
Type string - The type of encryption.
- Kms
Key stringVersion - A Cloud KMS key version that is being used to protect the database or backup.
- encryption
Status StatusResponse - If present, the status of a recent encrypt/decrypt call on underlying data for this database or backup. Regardless of status, data is always encrypted at rest.
- encryption
Type String - The type of encryption.
- kms
Key StringVersion - A Cloud KMS key version that is being used to protect the database or backup.
- encryption
Status StatusResponse - If present, the status of a recent encrypt/decrypt call on underlying data for this database or backup. Regardless of status, data is always encrypted at rest.
- encryption
Type string - The type of encryption.
- kms
Key stringVersion - A Cloud KMS key version that is being used to protect the database or backup.
- encryption_
status StatusResponse - If present, the status of a recent encrypt/decrypt call on underlying data for this database or backup. Regardless of status, data is always encrypted at rest.
- encryption_
type str - The type of encryption.
- kms_
key_ strversion - A Cloud KMS key version that is being used to protect the database or backup.
- encryption
Status Property Map - If present, the status of a recent encrypt/decrypt call on underlying data for this database or backup. Regardless of status, data is always encrypted at rest.
- encryption
Type String - The type of encryption.
- kms
Key StringVersion - A Cloud KMS key version that is being used to protect the database or backup.
RestoreInfoResponse, RestoreInfoResponseArgs
- Backup
Info Pulumi.Google Native. Spanner. V1. Inputs. Backup Info Response - Information about the backup used to restore the database. The backup may no longer exist.
- Source
Type string - The type of the restore source.
- Backup
Info BackupInfo Response - Information about the backup used to restore the database. The backup may no longer exist.
- Source
Type string - The type of the restore source.
- backup
Info BackupInfo Response - Information about the backup used to restore the database. The backup may no longer exist.
- source
Type String - The type of the restore source.
- backup
Info BackupInfo Response - Information about the backup used to restore the database. The backup may no longer exist.
- source
Type string - The type of the restore source.
- backup_
info BackupInfo Response - Information about the backup used to restore the database. The backup may no longer exist.
- source_
type str - The type of the restore source.
- backup
Info Property Map - Information about the backup used to restore the database. The backup may no longer exist.
- source
Type String - The type of the restore source.
StatusResponse, StatusResponseArgs
- Code int
- The status code, which should be an enum value of google.rpc.Code.
- Details
List<Immutable
Dictionary<string, string>> - A list of messages that carry the error details. There is a common set of message types for APIs to use.
- Message string
- A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
- Code int
- The status code, which should be an enum value of google.rpc.Code.
- Details []map[string]string
- A list of messages that carry the error details. There is a common set of message types for APIs to use.
- Message string
- A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
- code Integer
- The status code, which should be an enum value of google.rpc.Code.
- details List<Map<String,String>>
- A list of messages that carry the error details. There is a common set of message types for APIs to use.
- message String
- A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
- code number
- The status code, which should be an enum value of google.rpc.Code.
- details {[key: string]: string}[]
- A list of messages that carry the error details. There is a common set of message types for APIs to use.
- message string
- A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
- code int
- The status code, which should be an enum value of google.rpc.Code.
- details Sequence[Mapping[str, str]]
- A list of messages that carry the error details. There is a common set of message types for APIs to use.
- message str
- A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
- code Number
- The status code, which should be an enum value of google.rpc.Code.
- details List<Map<String>>
- A list of messages that carry the error details. There is a common set of message types for APIs to use.
- message String
- A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0
Google Cloud Native is in preview. Google Cloud Classic is fully supported.