Class: Google::Apis::HealthcareV1::FhirStoreMetrics

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

Overview

List of metrics for a given FHIR store.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ FhirStoreMetrics

Returns a new instance of FhirStoreMetrics.



1972
1973
1974
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1972

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

Instance Attribute Details

#metricsArray<Google::Apis::HealthcareV1::FhirStoreMetric>

List of FhirStoreMetric by resource type. Corresponds to the JSON property metrics



1964
1965
1966
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1964

def metrics
  @metrics
end

#nameString

The resource name of the FHIR store to get metrics for, in the format projects/project_id/datasets/dataset_id/fhirStores/fhir_store_id`. Corresponds to the JSON propertyname`

Returns:

  • (String)


1970
1971
1972
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1970

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1977
1978
1979
1980
# File 'lib/google/apis/healthcare_v1/classes.rb', line 1977

def update!(**args)
  @metrics = args[:metrics] if args.key?(:metrics)
  @name = args[:name] if args.key?(:name)
end