Class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaIdentityMappingEntryOperationMetadata

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaIdentityMappingEntryOperationMetadata

Returns a new instance of GoogleCloudDiscoveryengineV1alphaIdentityMappingEntryOperationMetadata.



12772
12773
12774
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 12772

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#failure_countFixnum

The number of IdentityMappingEntries that failed to be processed. Corresponds to the JSON property failureCount

Returns:

  • (Fixnum)


12760
12761
12762
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 12760

def failure_count
  @failure_count
end

#success_countFixnum

The number of IdentityMappingEntries that were successfully processed. Corresponds to the JSON property successCount

Returns:

  • (Fixnum)


12765
12766
12767
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 12765

def success_count
  @success_count
end

#total_countFixnum

The total number of IdentityMappingEntries that were processed. Corresponds to the JSON property totalCount

Returns:

  • (Fixnum)


12770
12771
12772
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 12770

def total_count
  @total_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



12777
12778
12779
12780
12781
# File 'lib/google/apis/discoveryengine_v1beta/classes.rb', line 12777

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