Class: Google::Apis::BigtableadminV2::CreateBackupMetadata
- Inherits:
-
Object
- Object
- Google::Apis::BigtableadminV2::CreateBackupMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/bigtableadmin_v2/classes.rb,
generated/google/apis/bigtableadmin_v2/representations.rb,
generated/google/apis/bigtableadmin_v2/representations.rb
Overview
Metadata type for the operation returned by CreateBackup.
Instance Attribute Summary collapse
-
#end_time ⇒ String
If set, the time at which this operation finished or was cancelled.
-
#name ⇒ String
The name of the backup being created.
-
#source_table ⇒ String
The name of the table the backup is created from.
-
#start_time ⇒ String
The time at which this operation started.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CreateBackupMetadata
constructor
A new instance of CreateBackupMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CreateBackupMetadata
Returns a new instance of CreateBackupMetadata.
484 485 486 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 484 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
If set, the time at which this operation finished or was cancelled.
Corresponds to the JSON property endTime
467 468 469 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 467 def end_time @end_time end |
#name ⇒ String
The name of the backup being created.
Corresponds to the JSON property name
472 473 474 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 472 def name @name end |
#source_table ⇒ String
The name of the table the backup is created from.
Corresponds to the JSON property sourceTable
477 478 479 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 477 def source_table @source_table end |
#start_time ⇒ String
The time at which this operation started.
Corresponds to the JSON property startTime
482 483 484 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 482 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
489 490 491 492 493 494 |
# File 'generated/google/apis/bigtableadmin_v2/classes.rb', line 489 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @name = args[:name] if args.key?(:name) @source_table = args[:source_table] if args.key?(:source_table) @start_time = args[:start_time] if args.key?(:start_time) end |