Class: Google::Apis::MetastoreV1::MetadataExport
- Inherits:
-
Object
- Object
- Google::Apis::MetastoreV1::MetadataExport
- 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
The details of a metadata export operation.
Instance Attribute Summary collapse
-
#database_dump_type ⇒ String
Output only.
-
#destination_gcs_uri ⇒ String
Output only.
-
#end_time ⇒ String
Output only.
-
#start_time ⇒ String
Output only.
-
#state ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MetadataExport
constructor
A new instance of MetadataExport.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MetadataExport
Returns a new instance of MetadataExport.
1081 1082 1083 |
# File 'lib/google/apis/metastore_v1/classes.rb', line 1081 def initialize(**args) update!(**args) end |
Instance Attribute Details
#database_dump_type ⇒ String
Output only. The type of the database dump.
Corresponds to the JSON property databaseDumpType
1058 1059 1060 |
# File 'lib/google/apis/metastore_v1/classes.rb', line 1058 def database_dump_type @database_dump_type end |
#destination_gcs_uri ⇒ String
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
1064 1065 1066 |
# File 'lib/google/apis/metastore_v1/classes.rb', line 1064 def destination_gcs_uri @destination_gcs_uri end |
#end_time ⇒ String
Output only. The time when the export ended.
Corresponds to the JSON property endTime
1069 1070 1071 |
# File 'lib/google/apis/metastore_v1/classes.rb', line 1069 def end_time @end_time end |
#start_time ⇒ String
Output only. The time when the export started.
Corresponds to the JSON property startTime
1074 1075 1076 |
# File 'lib/google/apis/metastore_v1/classes.rb', line 1074 def start_time @start_time end |
#state ⇒ String
Output only. The current state of the export.
Corresponds to the JSON property state
1079 1080 1081 |
# File 'lib/google/apis/metastore_v1/classes.rb', line 1079 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1086 1087 1088 1089 1090 1091 1092 |
# File 'lib/google/apis/metastore_v1/classes.rb', line 1086 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 |