Class: Google::Apis::MetastoreV1alpha::MetadataImport
- Inherits:
-
Object
- Object
- Google::Apis::MetastoreV1alpha::MetadataImport
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/metastore_v1alpha/classes.rb,
lib/google/apis/metastore_v1alpha/representations.rb,
lib/google/apis/metastore_v1alpha/representations.rb
Overview
A metastore resource that imports metadata.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#database_dump ⇒ Google::Apis::MetastoreV1alpha::DatabaseDump
A specification of the location of and metadata about a database dump from a relational database management system.
-
#description ⇒ String
The description of the metadata import.
-
#end_time ⇒ String
Output only.
-
#name ⇒ String
Immutable.
-
#state ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MetadataImport
constructor
A new instance of MetadataImport.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MetadataImport
Returns a new instance of MetadataImport.
1185 1186 1187 |
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 1185 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The time when the metadata import was started.
Corresponds to the JSON property createTime
1150 1151 1152 |
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 1150 def create_time @create_time end |
#database_dump ⇒ Google::Apis::MetastoreV1alpha::DatabaseDump
A specification of the location of and metadata about a database dump from a
relational database management system.
Corresponds to the JSON property databaseDump
1156 1157 1158 |
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 1156 def database_dump @database_dump end |
#description ⇒ String
The description of the metadata import.
Corresponds to the JSON property description
1161 1162 1163 |
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 1161 def description @description end |
#end_time ⇒ String
Output only. The time when the metadata import finished.
Corresponds to the JSON property endTime
1166 1167 1168 |
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 1166 def end_time @end_time end |
#name ⇒ String
Immutable. The relative resource name of the metadata import, of the form:
projects/project_number/locations/location_id/services/service_id/
metadataImports/metadata_import_id.
Corresponds to the JSON property name
1173 1174 1175 |
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 1173 def name @name end |
#state ⇒ String
Output only. The current state of the metadata import.
Corresponds to the JSON property state
1178 1179 1180 |
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 1178 def state @state end |
#update_time ⇒ String
Output only. The time when the metadata import was last updated.
Corresponds to the JSON property updateTime
1183 1184 1185 |
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 1183 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1190 1191 1192 1193 1194 1195 1196 1197 1198 |
# File 'lib/google/apis/metastore_v1alpha/classes.rb', line 1190 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @database_dump = args[:database_dump] if args.key?(:database_dump) @description = args[:description] if args.key?(:description) @end_time = args[:end_time] if args.key?(:end_time) @name = args[:name] if args.key?(:name) @state = args[:state] if args.key?(:state) @update_time = args[:update_time] if args.key?(:update_time) end |