class Google::Apis::ApigeeV1::GoogleCloudApigeeV1CanaryEvaluationMetricLabels

Labels that can be used to filter Apigee metrics.

Attributes

env[RW]

The environment ID associated with the metrics. Corresponds to the JSON property `env` @return [String]

instance_id[RW]

Required. The instance ID associated with the metrics. In Apigee Hybrid, the value is configured during installation. Corresponds to the JSON property `instance_id` @return [String]

location[RW]

Required. The location associated with the metrics. Corresponds to the JSON property `location` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 1320
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 1325
def update!(**args)
  @env = args[:env] if args.key?(:env)
  @instance_id = args[:instance_id] if args.key?(:instance_id)
  @location = args[:location] if args.key?(:location)
end