Class: Google::Apis::MetastoreV1beta::ExportMetadataRequest
- Inherits:
-
Object
- Object
- Google::Apis::MetastoreV1beta::ExportMetadataRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/metastore_v1beta/classes.rb,
lib/google/apis/metastore_v1beta/representations.rb,
lib/google/apis/metastore_v1beta/representations.rb
Overview
Request message for DataprocMetastore.ExportMetadata.
Instance Attribute Summary collapse
-
#database_dump_type ⇒ String
Optional.
-
#destination_gcs_folder ⇒ String
A Cloud Storage URI of a folder, in the format gs:///.
-
#request_id ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExportMetadataRequest
constructor
A new instance of ExportMetadataRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ExportMetadataRequest
Returns a new instance of ExportMetadataRequest.
322 323 324 |
# File 'lib/google/apis/metastore_v1beta/classes.rb', line 322 def initialize(**args) update!(**args) end |
Instance Attribute Details
#database_dump_type ⇒ String
Optional. The type of the database dump. If unspecified, defaults to MYSQL.
Corresponds to the JSON property databaseDumpType
302 303 304 |
# File 'lib/google/apis/metastore_v1beta/classes.rb', line 302 def database_dump_type @database_dump_type end |
#destination_gcs_folder ⇒ String
A Cloud Storage URI of a folder, in the format gs:///. A sub-folder containing
exported files will be created below it.
Corresponds to the JSON property destinationGcsFolder
308 309 310 |
# File 'lib/google/apis/metastore_v1beta/classes.rb', line 308 def destination_gcs_folder @destination_gcs_folder 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
320 321 322 |
# File 'lib/google/apis/metastore_v1beta/classes.rb', line 320 def request_id @request_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
327 328 329 330 331 |
# File 'lib/google/apis/metastore_v1beta/classes.rb', line 327 def update!(**args) @database_dump_type = args[:database_dump_type] if args.key?(:database_dump_type) @destination_gcs_folder = args[:destination_gcs_folder] if args.key?(:destination_gcs_folder) @request_id = args[:request_id] if args.key?(:request_id) end |