Class: Google::Apis::BigtableadminV2::CreateBackupMetadata

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/bigtableadmin_v2/classes.rb,
lib/google/apis/bigtableadmin_v2/representations.rb,
lib/google/apis/bigtableadmin_v2/representations.rb

Overview

Metadata type for the operation returned by CreateBackup.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CreateBackupMetadata

Returns a new instance of CreateBackupMetadata.



833
834
835
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 833

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#end_timeString

If set, the time at which this operation finished or was cancelled. Corresponds to the JSON property endTime

Returns:

  • (String)


816
817
818
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 816

def end_time
  @end_time
end

#nameString

The name of the backup being created. Corresponds to the JSON property name

Returns:

  • (String)


821
822
823
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 821

def name
  @name
end

#source_tableString

The name of the table the backup is created from. Corresponds to the JSON property sourceTable

Returns:

  • (String)


826
827
828
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 826

def source_table
  @source_table
end

#start_timeString

The time at which this operation started. Corresponds to the JSON property startTime

Returns:

  • (String)


831
832
833
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 831

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



838
839
840
841
842
843
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 838

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