class Google::Apis::MetastoreV1alpha::MetadataExport
The details of a metadata export operation.
Attributes
database_dump_type[RW]
Output only. The type of the database dump. Corresponds to the JSON property `databaseDumpType` @return [String]
destination_gcs_uri[RW]
Output only. A Cloud Storage URI of a folder that metadata are exported to, in the form of gs:////, where is automatically generated. Corresponds to the JSON property `destinationGcsUri` @return [String]
end_time[RW]
Output only. The time when the export ended. Corresponds to the JSON property `endTime` @return [String]
start_time[RW]
Output only. The time when the export started. Corresponds to the JSON property `startTime` @return [String]
state[RW]
Output only. The current state of the export. Corresponds to the JSON property `state` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/metastore_v1alpha/classes.rb, line 830 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_v1alpha/classes.rb, line 835 def update!(**args) @database_dump_type = args[:database_dump_type] if args.key?(:database_dump_type) @destination_gcs_uri = args[:destination_gcs_uri] if args.key?(:destination_gcs_uri) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) @state = args[:state] if args.key?(:state) end