class Google::Apis::BigtableadminV1::CreateBackupMetadata
Metadata type for the operation returned by CreateBackup.
Attributes
end_time[RW]
If set, the time at which this operation finished or was cancelled. Corresponds to the JSON property `endTime` @return [String]
name[RW]
The name of the backup being created. Corresponds to the JSON property `name` @return [String]
source_table[RW]
The name of the table the backup is created from. Corresponds to the JSON property `sourceTable` @return [String]
start_time[RW]
The time at which this operation started. Corresponds to the JSON property `startTime` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigtableadmin_v1/classes.rb, line 220 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/bigtableadmin_v1/classes.rb, line 225 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