Class: Google::Apis::HealthcareV1beta1::DeidentifyErrorDetails
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::DeidentifyErrorDetails
- 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
-
#failure_resource_count ⇒ Fixnum
Number of resources failed to process.
-
#failure_store_count ⇒ Fixnum
Number of stores failed to process.
-
#success_resource_count ⇒ Fixnum
Number of resources successfully processed.
-
#success_store_count ⇒ Fixnum
Number of stores successfully processed.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeidentifyErrorDetails
constructor
A new instance of DeidentifyErrorDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DeidentifyErrorDetails
Returns a new instance of DeidentifyErrorDetails
407 408 409 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 407 def initialize(**args) update!(**args) end |
Instance Attribute Details
#failure_resource_count ⇒ Fixnum
Number of resources failed to process.
Corresponds to the JSON property failureResourceCount
390 391 392 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 390 def failure_resource_count @failure_resource_count end |
#failure_store_count ⇒ Fixnum
Number of stores failed to process.
Corresponds to the JSON property failureStoreCount
395 396 397 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 395 def failure_store_count @failure_store_count end |
#success_resource_count ⇒ Fixnum
Number of resources successfully processed.
Corresponds to the JSON property successResourceCount
400 401 402 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 400 def success_resource_count @success_resource_count end |
#success_store_count ⇒ Fixnum
Number of stores successfully processed.
Corresponds to the JSON property successStoreCount
405 406 407 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 405 def success_store_count @success_store_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
412 413 414 415 416 417 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 412 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 |