Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1IdentityMappingEntryOperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1IdentityMappingEntryOperationMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1beta/classes.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb,
lib/google/apis/discoveryengine_v1beta/representations.rb
Overview
IdentityMappingEntry LongRunningOperation metadata for IdentityMappingStoreService.ImportIdentityMappings and IdentityMappingStoreService.PurgeIdentityMappings
Instance Attribute Summary collapse
-
#failure_count ⇒ Fixnum
The number of IdentityMappingEntries that failed to be processed.
-
#success_count ⇒ Fixnum
The number of IdentityMappingEntries that were successfully processed.
-
#total_count ⇒ Fixnum
The total number of IdentityMappingEntries that were processed.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1IdentityMappingEntryOperationMetadata
constructor
A new instance of GoogleCloudDiscoveryengineV1IdentityMappingEntryOperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1IdentityMappingEntryOperationMetadata
Returns a new instance of GoogleCloudDiscoveryengineV1IdentityMappingEntryOperationMetadata.
4529 4530 4531 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4529 def initialize(**args) update!(**args) end |
Instance Attribute Details
#failure_count ⇒ Fixnum
The number of IdentityMappingEntries that failed to be processed.
Corresponds to the JSON property failureCount
4517 4518 4519 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4517 def failure_count @failure_count end |
#success_count ⇒ Fixnum
The number of IdentityMappingEntries that were successfully processed.
Corresponds to the JSON property successCount
4522 4523 4524 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4522 def success_count @success_count end |
#total_count ⇒ Fixnum
The total number of IdentityMappingEntries that were processed.
Corresponds to the JSON property totalCount
4527 4528 4529 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4527 def total_count @total_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4534 4535 4536 4537 4538 |
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 4534 def update!(**args) @failure_count = args[:failure_count] if args.key?(:failure_count) @success_count = args[:success_count] if args.key?(:success_count) @total_count = args[:total_count] if args.key?(:total_count) end |