class Google::Apis::BigtableadminV1::BackupInfo

Information about a backup.

Attributes

backup[RW]

Output only. Name of the backup. Corresponds to the JSON property `backup` @return [String]

end_time[RW]

Output only. This time that the backup was finished. Row data in the backup will be no newer than this timestamp. Corresponds to the JSON property `endTime` @return [String]

source_table[RW]

Output only. Name of the table the backup was created from. Corresponds to the JSON property `sourceTable` @return [String]

start_time[RW]

Output only. The time that the backup was started. Row data in the backup will be no older than this timestamp. 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 127
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 132
def update!(**args)
  @backup = args[:backup] if args.key?(:backup)
  @end_time = args[:end_time] if args.key?(:end_time)
  @source_table = args[:source_table] if args.key?(:source_table)
  @start_time = args[:start_time] if args.key?(:start_time)
end