class Google::Apis::MetastoreV1beta::ExportMetadataRequest

Request message for DataprocMetastore.ExportMetadata.

Attributes

database_dump_type[RW]

Optional. The type of the database dump. If unspecified, defaults to MYSQL. Corresponds to the JSON property `databaseDumpType` @return [String]

destination_gcs_folder[RW]

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` @return [String]

request_id[RW]

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 (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` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/metastore_v1beta/classes.rb, line 371
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/metastore_v1beta/classes.rb, line 376
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