Class: Google::Apis::HealthcareV1::Hl7V2StoreMetrics

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
more...

Overview

List of metrics for a given HL7v2 store.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Hl7V2StoreMetrics

Returns a new instance of Hl7V2StoreMetrics.

[View source]

3479
3480
3481
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3479

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

Instance Attribute Details

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

List of HL7v2 store metrics by message type. Corresponds to the JSON property metrics


3471
3472
3473
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3471

def metrics
  @metrics
end

#nameString

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`

Returns:

  • (String)

3477
3478
3479
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3477

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

3484
3485
3486
3487
# File 'lib/google/apis/healthcare_v1/classes.rb', line 3484

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