class Google::Apis::ApigeeV1::GoogleCloudApigeeV1DimensionMetric
This message type encapsulates a metric grouped by dimension.
Attributes
metrics[RW]
This field contains a list of metrics. Corresponds to the JSON property `metrics` @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1Metric>]
name[RW]
This field contains the name of the dimension. Corresponds to the JSON property `name` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 2829 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/apigee_v1/classes.rb, line 2834 def update!(**args) @metrics = args[:metrics] if args.key?(:metrics) @name = args[:name] if args.key?(:name) end