Class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1ImportEntriesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1ImportEntriesResponse
- 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
Response message for long-running operation returned by the ImportEntries.
Instance Attribute Summary collapse
-
#deleted_entries_count ⇒ Fixnum
Number of entries deleted as a result of import operation.
-
#upserted_entries_count ⇒ Fixnum
Cumulative number of entries created and entries updated as a result of import operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogV1ImportEntriesResponse
constructor
A new instance of GoogleCloudDatacatalogV1ImportEntriesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogV1ImportEntriesResponse
Returns a new instance of GoogleCloudDatacatalogV1ImportEntriesResponse.
1411 1412 1413 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1411 def initialize(**args) update!(**args) end |
Instance Attribute Details
#deleted_entries_count ⇒ Fixnum
Number of entries deleted as a result of import operation.
Corresponds to the JSON property deletedEntriesCount
1403 1404 1405 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1403 def deleted_entries_count @deleted_entries_count end |
#upserted_entries_count ⇒ Fixnum
Cumulative number of entries created and entries updated as a result of import
operation.
Corresponds to the JSON property upsertedEntriesCount
1409 1410 1411 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1409 def upserted_entries_count @upserted_entries_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1416 1417 1418 1419 |
# File 'lib/google/apis/datacatalog_v1beta1/classes.rb', line 1416 def update!(**args) @deleted_entries_count = args[:deleted_entries_count] if args.key?(:deleted_entries_count) @upserted_entries_count = args[:upserted_entries_count] if args.key?(:upserted_entries_count) end |