- 3.46.0 (latest)
- 3.45.0
- 3.44.0
- 3.43.0
- 3.42.0
- 3.41.0
- 3.40.1
- 3.39.0
- 3.38.0
- 3.37.0
- 3.36.0
- 3.35.1
- 3.34.0
- 3.33.0
- 3.32.0
- 3.31.0
- 3.30.0
- 3.29.0
- 3.28.0
- 3.27.1
- 3.26.0
- 3.25.0
- 3.24.0
- 3.23.0
- 3.22.2
- 3.21.0
- 3.20.0
- 3.19.0
- 3.18.0
- 3.17.0
- 3.16.0
- 3.15.1
- 3.14.1
- 3.13.0
- 3.12.1
- 3.11.1
- 3.10.0
- 3.9.0
- 3.8.0
- 3.7.0
- 3.6.0
- 3.5.0
- 3.4.0
- 3.3.0
- 3.2.0
- 3.1.0
- 3.0.0
- 2.1.1
- 2.0.0
- 1.19.3
- 1.18.0
- 1.17.1
- 1.16.0
- 1.15.1
- 1.14.0
- 1.13.0
- 1.12.0
- 1.11.0
- 1.10.0
Database(mapping=None, *, ignore_unknown_fields=False, **kwargs)
A Cloud Spanner database.
Attributes | |
---|---|
Name | Description |
name |
str
Required. The name of the database. Values are of the form projects/ ,
where is as specified in the
CREATE DATABASE statement. This name can be passed to
other API methods to identify the database.
|
state |
google.cloud.spanner_admin_database_v1.types.Database.State
Output only. The current database state. |
create_time |
google.protobuf.timestamp_pb2.Timestamp
Output only. If exists, the time at which the database creation started. |
restore_info |
google.cloud.spanner_admin_database_v1.types.RestoreInfo
Output only. Applicable only for restored databases. Contains information about the restore source. |
encryption_config |
google.cloud.spanner_admin_database_v1.types.EncryptionConfig
Output only. For databases that are using customer managed encryption, this field contains the encryption configuration for the database. For databases that are using Google default or other types of encryption, this field is empty. |
encryption_info |
MutableSequence[google.cloud.spanner_admin_database_v1.types.EncryptionInfo]
Output only. For databases that are using customer managed encryption, this field contains the encryption information for the database, such as encryption state and the Cloud KMS key versions that are in use. 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. |
version_retention_period |
str
Output only. 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][google.spanner.admin.database.v1.DatabaseAdmin.UpdateDatabaseDdl] .
Defaults to 1 hour, if not set.
|
earliest_version_time |
google.protobuf.timestamp_pb2.Timestamp
Output only. 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. |
default_leader |
str
Output only. 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. |
database_dialect |
google.cloud.spanner_admin_database_v1.types.DatabaseDialect
Output only. The dialect of the Cloud Spanner Database. |
enable_drop_protection |
bool
Whether drop protection is enabled for this database. Defaults to false, if not set. |
reconciling |
bool
Output only. If true, the database is being updated. If false, there are no ongoing update operations for the database. |
Classes
State
State(value)
Indicates the current state of the database.
Values:
STATE_UNSPECIFIED (0):
Not specified.
CREATING (1):
The database is still being created. Operations on the
database may fail with FAILED_PRECONDITION
in this
state.
READY (2):
The database is fully created and ready for
use.
READY_OPTIMIZING (3):
The database is fully created and ready for use, but is
still being optimized for performance and cannot handle full
load.
In this state, the database still references the backup it
was restore from, preventing the backup from being deleted.
When optimizations are complete, the full performance of the
database will be restored, and the database will transition
to `READY` state.