Class: Google::Apis::BigtableadminV2::UndeleteTableMetadata

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 google.bigtable.admin.v2. BigtableTableAdmin.UndeleteTable.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UndeleteTableMetadata

Returns a new instance of UndeleteTableMetadata.



2650
2651
2652
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 2650

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)


2638
2639
2640
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 2638

def end_time
  @end_time
end

#nameString

The name of the table being restored. Corresponds to the JSON property name

Returns:

  • (String)


2643
2644
2645
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 2643

def name
  @name
end

#start_timeString

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

Returns:

  • (String)


2648
2649
2650
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 2648

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2655
2656
2657
2658
2659
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 2655

def update!(**args)
  @end_time = args[:end_time] if args.key?(:end_time)
  @name = args[:name] if args.key?(:name)
  @start_time = args[:start_time] if args.key?(:start_time)
end