class Google::Apis::MonitoringV3::IstioCanonicalService

Canonical service scoped to an Istio mesh. Anthos clusters running ASM >= 1.6. 8 will have their services ingested as this type.

Attributes

canonical_service[RW]

The name of the canonical service underlying this service. Corresponds to the destination_canonical_service_name metric label in label in Istio metrics ( cloud.google.com/monitoring/api/metrics_istio). Corresponds to the JSON property `canonicalService` @return [String]

canonical_service_namespace[RW]

The namespace of the canonical service underlying this service. Corresponds to the destination_canonical_service_namespace metric label in Istio metrics ( cloud.google.com/monitoring/api/metrics_istio). Corresponds to the JSON property `canonicalServiceNamespace` @return [String]

mesh_uid[RW]

Identifier for the Istio mesh in which this canonical service is defined. Corresponds to the mesh_uid metric label in Istio metrics (cloud. google.com/monitoring/api/metrics_istio). Corresponds to the JSON property `meshUid` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/monitoring_v3/classes.rb, line 1660
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/monitoring_v3/classes.rb, line 1665
def update!(**args)
  @canonical_service = args[:canonical_service] if args.key?(:canonical_service)
  @canonical_service_namespace = args[:canonical_service_namespace] if args.key?(:canonical_service_namespace)
  @mesh_uid = args[:mesh_uid] if args.key?(:mesh_uid)
end