Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1QueryMetric
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1QueryMetric
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb
Overview
More info about Metric: https://docs.apigee.com/api-platform/analytics/ analytics-reference#metrics
Instance Attribute Summary collapse
-
#alias ⇒ String
Alias for the metric.
-
#function ⇒ String
Aggregation function: avg, min, max, or sum.
-
#name ⇒ String
Required.
-
#operator ⇒ String
One of
+,-,/,%,*. -
#value ⇒ String
Operand value should be provided when operator is set.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1QueryMetric
constructor
A new instance of GoogleCloudApigeeV1QueryMetric.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1QueryMetric
Returns a new instance of GoogleCloudApigeeV1QueryMetric.
6819 6820 6821 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6819 def initialize(**args) update!(**args) end |
Instance Attribute Details
#alias ⇒ String
Alias for the metric. Alias will be used to replace metric name in query
results.
Corresponds to the JSON property alias
6797 6798 6799 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6797 def alias @alias end |
#function ⇒ String
Aggregation function: avg, min, max, or sum.
Corresponds to the JSON property function
6802 6803 6804 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6802 def function @function end |
#name ⇒ String
Required. Metric name.
Corresponds to the JSON property name
6807 6808 6809 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6807 def name @name end |
#operator ⇒ String
One of +, -, /, %, *.
Corresponds to the JSON property operator
6812 6813 6814 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6812 def operator @operator end |
#value ⇒ String
Operand value should be provided when operator is set.
Corresponds to the JSON property value
6817 6818 6819 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6817 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6824 6825 6826 6827 6828 6829 6830 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6824 def update!(**args) @alias = args[:alias] if args.key?(:alias) @function = args[:function] if args.key?(:function) @name = args[:name] if args.key?(:name) @operator = args[:operator] if args.key?(:operator) @value = args[:value] if args.key?(:value) end |