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
406 407 408 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 406 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
389 390 391 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 389 def failure_resource_count @failure_resource_count end |
#failure_store_count ⇒ Fixnum
Number of stores failed to process.
Corresponds to the JSON property failureStoreCount
394 395 396 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 394 def failure_store_count @failure_store_count end |
#success_resource_count ⇒ Fixnum
Number of resources successfully processed.
Corresponds to the JSON property successResourceCount
399 400 401 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 399 def success_resource_count @success_resource_count end |
#success_store_count ⇒ Fixnum
Number of stores successfully processed.
Corresponds to the JSON property successStoreCount
404 405 406 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 404 def success_store_count @success_store_count end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
411 412 413 414 415 416 |
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 411 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 |