Class: Google::Apis::MetastoreV1::RestoreServiceRequest
- Inherits:
-
Object
- Object
- Google::Apis::MetastoreV1::RestoreServiceRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/metastore_v1/classes.rb,
lib/google/apis/metastore_v1/representations.rb,
lib/google/apis/metastore_v1/representations.rb
Overview
Request message for DataprocMetastore.Restore.
Instance Attribute Summary collapse
-
#backup ⇒ String
Required.
-
#request_id ⇒ String
Optional.
-
#restore_type ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RestoreServiceRequest
constructor
A new instance of RestoreServiceRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RestoreServiceRequest
Returns a new instance of RestoreServiceRequest.
1362 1363 1364 |
# File 'lib/google/apis/metastore_v1/classes.rb', line 1362 def initialize(**args) update!(**args) end |
Instance Attribute Details
#backup ⇒ String
Required. The relative resource name of the metastore service backup to
restore from, in the following form:projects/project_id/locations/
location_id/services/service_id/backups/backup_id.
Corresponds to the JSON property backup
1343 1344 1345 |
# File 'lib/google/apis/metastore_v1/classes.rb', line 1343 def backup @backup end |
#request_id ⇒ String
Optional. A request ID. Specify a unique request ID to allow the server to
ignore the request if it has completed. The server will ignore subsequent
requests that provide a duplicate request ID for at least 60 minutes after the
first request.For example, if an initial request times out, followed by
another request with the same request ID, the server ignores the second
request to prevent the creation of duplicate commitments.The request ID must
be a valid UUID (https://en.wikipedia.org/wiki/Universally_unique_identifier#
Format). A zero UUID (00000000-0000-0000-0000-000000000000) is not supported.
Corresponds to the JSON property requestId
1355 1356 1357 |
# File 'lib/google/apis/metastore_v1/classes.rb', line 1355 def request_id @request_id end |
#restore_type ⇒ String
Optional. The type of restore. If unspecified, defaults to METADATA_ONLY.
Corresponds to the JSON property restoreType
1360 1361 1362 |
# File 'lib/google/apis/metastore_v1/classes.rb', line 1360 def restore_type @restore_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1367 1368 1369 1370 1371 |
# File 'lib/google/apis/metastore_v1/classes.rb', line 1367 def update!(**args) @backup = args[:backup] if args.key?(:backup) @request_id = args[:request_id] if args.key?(:request_id) @restore_type = args[:restore_type] if args.key?(:restore_type) end |