Class: Google::Apis::HealthcareV1beta1::DeidentifyErrorDetails

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/healthcare_v1beta1/classes.rb,
generated/google/apis/healthcare_v1beta1/representations.rb,
generated/google/apis/healthcare_v1beta1/representations.rb

Overview

Contains the status of the Deidentify operation.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DeidentifyErrorDetails

Returns a new instance of DeidentifyErrorDetails.



484
485
486
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 484

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

Instance Attribute Details

#failure_resource_countFixnum

Number of resources that failed to process. Corresponds to the JSON property failureResourceCount

Returns:

  • (Fixnum)


467
468
469
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 467

def failure_resource_count
  @failure_resource_count
end

#failure_store_countFixnum

Number of stores that failed to process. Corresponds to the JSON property failureStoreCount

Returns:

  • (Fixnum)


472
473
474
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 472

def failure_store_count
  @failure_store_count
end

#success_resource_countFixnum

Number of resources successfully processed. Corresponds to the JSON property successResourceCount

Returns:

  • (Fixnum)


477
478
479
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 477

def success_resource_count
  @success_resource_count
end

#success_store_countFixnum

Number of stores successfully processed. Corresponds to the JSON property successStoreCount

Returns:

  • (Fixnum)


482
483
484
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 482

def success_store_count
  @success_store_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



489
490
491
492
493
494
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 489

def update!(**args)
  @failure_resource_count = args[:failure_resource_count] if args.key?(:failure_resource_count)
  @failure_store_count = args[:failure_store_count] if args.key?(:failure_store_count)
  @success_resource_count = args[:success_resource_count] if args.key?(:success_resource_count)
  @success_store_count = args[:success_store_count] if args.key?(:success_store_count)
end