Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobEventImportResult
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1MetadataJobEventImportResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb
Overview
Import job result for metadata job.
Instance Attribute Summary collapse
-
#created_entries ⇒ Fixnum
Total number of entries created.
-
#deleted_entries ⇒ Fixnum
Total number of entries deleted.
-
#mutated_entry_groups ⇒ Fixnum
The number of entry groups modified/specified by the import job.
-
#recreated_entries ⇒ Fixnum
Total number of entries recreated.
-
#state ⇒ String
Output only.
-
#unchanged_entries ⇒ Fixnum
Total number of entries left unchanged.
-
#updated_entries ⇒ Fixnum
Total number of entries updated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1MetadataJobEventImportResult
constructor
A new instance of GoogleCloudDataplexV1MetadataJobEventImportResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1MetadataJobEventImportResult
Returns a new instance of GoogleCloudDataplexV1MetadataJobEventImportResult.
4570 4571 4572 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4570 def initialize(**args) update!(**args) end |
Instance Attribute Details
#created_entries ⇒ Fixnum
Total number of entries created.
Corresponds to the JSON property createdEntries
4538 4539 4540 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4538 def created_entries @created_entries end |
#deleted_entries ⇒ Fixnum
Total number of entries deleted.
Corresponds to the JSON property deletedEntries
4543 4544 4545 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4543 def deleted_entries @deleted_entries end |
#mutated_entry_groups ⇒ Fixnum
The number of entry groups modified/specified by the import job.
Corresponds to the JSON property mutatedEntryGroups
4548 4549 4550 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4548 def mutated_entry_groups @mutated_entry_groups end |
#recreated_entries ⇒ Fixnum
Total number of entries recreated.
Corresponds to the JSON property recreatedEntries
4553 4554 4555 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4553 def recreated_entries @recreated_entries end |
#state ⇒ String
Output only. Terminal state of the import job.
Corresponds to the JSON property state
4558 4559 4560 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4558 def state @state end |
#unchanged_entries ⇒ Fixnum
Total number of entries left unchanged.
Corresponds to the JSON property unchangedEntries
4563 4564 4565 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4563 def unchanged_entries @unchanged_entries end |
#updated_entries ⇒ Fixnum
Total number of entries updated.
Corresponds to the JSON property updatedEntries
4568 4569 4570 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4568 def updated_entries @updated_entries end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4575 4576 4577 4578 4579 4580 4581 4582 4583 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4575 def update!(**args) @created_entries = args[:created_entries] if args.key?(:created_entries) @deleted_entries = args[:deleted_entries] if args.key?(:deleted_entries) @mutated_entry_groups = args[:mutated_entry_groups] if args.key?(:mutated_entry_groups) @recreated_entries = args[:recreated_entries] if args.key?(:recreated_entries) @state = args[:state] if args.key?(:state) @unchanged_entries = args[:unchanged_entries] if args.key?(:unchanged_entries) @updated_entries = args[:updated_entries] if args.key?(:updated_entries) end |