Class: Google::Apis::HealthcareV1::FhirStoreMetrics
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1::FhirStoreMetrics
- 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
-
#metrics ⇒ Array<Google::Apis::HealthcareV1::FhirStoreMetric>
List of FhirStoreMetric by resource type.
-
#name ⇒ String
The resource name of the FHIR store to get metrics for, in the format
projects/
project_id/datasets/
dataset_id/fhirStores/
fhir_store_id``.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FhirStoreMetrics
constructor
A new instance of FhirStoreMetrics.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FhirStoreMetrics
Returns a new instance of FhirStoreMetrics.
2046 2047 2048 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2046 def initialize(**args) update!(**args) end |
Instance Attribute Details
#metrics ⇒ Array<Google::Apis::HealthcareV1::FhirStoreMetric>
List of FhirStoreMetric by resource type.
Corresponds to the JSON property metrics
2038 2039 2040 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2038 def metrics @metrics end |
#name ⇒ String
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 property
name`
2044 2045 2046 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2044 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2051 2052 2053 2054 |
# File 'lib/google/apis/healthcare_v1/classes.rb', line 2051 def update!(**args) @metrics = args[:metrics] if args.key?(:metrics) @name = args[:name] if args.key?(:name) end |