Class: Google::Apis::HealthcareV1beta1::DeidentifySummary

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 a detailed summary 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) ⇒ DeidentifySummary

Returns a new instance of DeidentifySummary.



562
563
564
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 562

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

Instance Attribute Details

#failure_resource_countFixnum

Number of resources that failed to process. The failures might be caused by:

  • Invalid user input data
  • Transient errors that could be skipped Corresponds to the JSON property failureResourceCount

Returns:

  • (Fixnum)


550
551
552
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 550

def failure_resource_count
  @failure_resource_count
end

#success_resource_countFixnum

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

Returns:

  • (Fixnum)


555
556
557
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 555

def success_resource_count
  @success_resource_count
end

#success_store_countFixnum

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

Returns:

  • (Fixnum)


560
561
562
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 560

def success_store_count
  @success_store_count
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



567
568
569
570
571
# File 'generated/google/apis/healthcare_v1beta1/classes.rb', line 567

def update!(**args)
  @failure_resource_count = args[:failure_resource_count] if args.key?(:failure_resource_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