Class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1ImportEntriesMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1ImportEntriesMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datacatalog_v1beta1/classes.rb,
lib/google/apis/datacatalog_v1beta1/representations.rb,
lib/google/apis/datacatalog_v1beta1/representations.rb
Overview
Metadata message for long-running operation returned by the ImportEntries.
Instance Attribute Summary collapse
-
#errors ⇒ Array<Google::Apis::DatacatalogV1beta1::Status>
Partial errors that are encountered during the ImportEntries operation.
-
#state ⇒ String
State of the import operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogV1ImportEntriesMetadata
constructor
A new instance of GoogleCloudDatacatalogV1ImportEntriesMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogV1ImportEntriesMetadata
Returns a new instance of GoogleCloudDatacatalogV1ImportEntriesMetadata.
1282 1283 1284 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1282 def initialize(**args) update!(**args) end |
Instance Attribute Details
#errors ⇒ Array<Google::Apis::DatacatalogV1beta1::Status>
Partial errors that are encountered during the ImportEntries operation. There
is no guarantee that all the encountered errors are reported. However, if no
errors are reported, it means that no errors were encountered.
Corresponds to the JSON property errors
1275 1276 1277 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1275 def errors @errors end |
#state ⇒ String
State of the import operation.
Corresponds to the JSON property state
1280 1281 1282 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1280 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1287 1288 1289 1290 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1287 def update!(**args) @errors = args[:errors] if args.key?(:errors) @state = args[:state] if args.key?(:state) end |