Class: Google::Cloud::Spanner::Admin::Database::V1::CopyBackupRequest
- Inherits:
-
Object
- Object
- Google::Cloud::Spanner::Admin::Database::V1::CopyBackupRequest
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/spanner/admin/database/v1/backup.rb
Overview
The request for CopyBackup.
Instance Attribute Summary collapse
-
#backup_id ⇒ ::String
Required.
-
#encryption_config ⇒ ::Google::Cloud::Spanner::Admin::Database::V1::CopyBackupEncryptionConfig
Optional.
-
#expire_time ⇒ ::Google::Protobuf::Timestamp
Required.
-
#parent ⇒ ::String
Required.
-
#source_backup ⇒ ::String
Required.
Instance Attribute Details
#backup_id ⇒ ::String
Returns Required. The id of the backup copy.
The backup_id
appended to parent
forms the full backup_uri of the form
projects/<project>/instances/<instance>/backups/<backup>
.
275 276 277 278 |
# File 'proto_docs/google/spanner/admin/database/v1/backup.rb', line 275 class CopyBackupRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#encryption_config ⇒ ::Google::Cloud::Spanner::Admin::Database::V1::CopyBackupEncryptionConfig
Returns Optional. The encryption configuration used to encrypt the backup. If this
field is not specified, the backup will use the same encryption
configuration as the source backup by default, namely
encryption_type
= USE_CONFIG_DEFAULT_OR_BACKUP_ENCRYPTION
.
275 276 277 278 |
# File 'proto_docs/google/spanner/admin/database/v1/backup.rb', line 275 class CopyBackupRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#expire_time ⇒ ::Google::Protobuf::Timestamp
Returns Required. The expiration time of the backup in microsecond granularity.
The expiration time must be at least 6 hours and at most 366 days
from the create_time
of the source backup. Once the expire_time
has
passed, the backup is eligible to be automatically deleted by Cloud Spanner
to free the resources used by the backup.
275 276 277 278 |
# File 'proto_docs/google/spanner/admin/database/v1/backup.rb', line 275 class CopyBackupRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#parent ⇒ ::String
Returns Required. The name of the destination instance that will contain the backup
copy. Values are of the form: projects/<project>/instances/<instance>
.
275 276 277 278 |
# File 'proto_docs/google/spanner/admin/database/v1/backup.rb', line 275 class CopyBackupRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#source_backup ⇒ ::String
Returns Required. The source backup to be copied.
The source backup needs to be in READY state for it to be copied.
Once CopyBackup is in progress, the source backup cannot be deleted or
cleaned up on expiration until CopyBackup is finished.
Values are of the form:
projects/<project>/instances/<instance>/backups/<backup>
.
275 276 277 278 |
# File 'proto_docs/google/spanner/admin/database/v1/backup.rb', line 275 class CopyBackupRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |