Class: Google::Apis::BigqueryV2::UndeleteDatasetRequest

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

Overview

Request format for undeleting a dataset.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ UndeleteDatasetRequest

Returns a new instance of UndeleteDatasetRequest.



11288
11289
11290
# File 'lib/google/apis/bigquery_v2/classes.rb', line 11288

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

Instance Attribute Details

#deletion_timeString

Optional. The exact time when the dataset was deleted. If not specified, the most recently deleted version is undeleted. Undeleting a dataset using deletion time is not supported. Corresponds to the JSON property deletionTime

Returns:

  • (String)


11286
11287
11288
# File 'lib/google/apis/bigquery_v2/classes.rb', line 11286

def deletion_time
  @deletion_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11293
11294
11295
# File 'lib/google/apis/bigquery_v2/classes.rb', line 11293

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