Class: Google::Apis::HealthcareV1beta1::Hl7V2StoreMetrics
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1beta1::Hl7V2StoreMetrics
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/healthcare_v1beta1/classes.rb,
lib/google/apis/healthcare_v1beta1/representations.rb,
lib/google/apis/healthcare_v1beta1/representations.rb
Overview
List of metrics for a given HL7v2 store.
Instance Attribute Summary collapse
-
#metrics ⇒ Array<Google::Apis::HealthcareV1beta1::Hl7V2StoreMetric>
List of HL7v2 store metrics by message type.
-
#name ⇒ String
The resource name of the HL7v2 store to get metrics for, in the format
projects/project_id/datasets/dataset_id/hl7V2Stores/hl7v2_store_id``.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Hl7V2StoreMetrics
constructor
A new instance of Hl7V2StoreMetrics.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Hl7V2StoreMetrics
Returns a new instance of Hl7V2StoreMetrics.
4259 4260 4261 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 4259 def initialize(**args) update!(**args) end |
Instance Attribute Details
#metrics ⇒ Array<Google::Apis::HealthcareV1beta1::Hl7V2StoreMetric>
List of HL7v2 store metrics by message type.
Corresponds to the JSON property metrics
4251 4252 4253 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 4251 def metrics @metrics end |
#name ⇒ String
The resource name of the HL7v2 store to get metrics for, in the format
projects/project_id/datasets/dataset_id/hl7V2Stores/hl7v2_store_id`.
Corresponds to the JSON propertyname`
4257 4258 4259 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 4257 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4264 4265 4266 4267 |
# File 'lib/google/apis/healthcare_v1beta1/classes.rb', line 4264 def update!(**args) @metrics = args[:metrics] if args.key?(:metrics) @name = args[:name] if args.key?(:name) end |