Class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ImportEntriesResponse
- Inherits:
-
Object
- Object
- Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1ImportEntriesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datacatalog_v1/classes.rb,
lib/google/apis/datacatalog_v1/representations.rb,
lib/google/apis/datacatalog_v1/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.
1599 1600 1601 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1599 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
1591 1592 1593 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1591 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
1597 1598 1599 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1597 def upserted_entries_count @upserted_entries_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1604 1605 1606 1607 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 1604 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 |