class Google::Apis::MonitoringV3::MeshIstio

Istio service scoped to an Istio mesh. Anthos clusters running ASM < 1.6.8 will have their services ingested as this type.

Attributes

mesh_uid[RW]

Identifier for the mesh in which this Istio service is defined. Corresponds to the mesh_uid metric label in Istio metrics. Corresponds to the JSON property `meshUid` @return [String]

service_name[RW]

The name of the Istio service underlying this service. Corresponds to the destination_service_name metric label in Istio metrics. Corresponds to the JSON property `serviceName` @return [String]

service_namespace[RW]

The namespace of the Istio service underlying this service. Corresponds to the destination_service_namespace metric label in Istio metrics. Corresponds to the JSON property `serviceNamespace` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/monitoring_v3/classes.rb, line 2438
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 2443
def update!(**args)
  @mesh_uid = args[:mesh_uid] if args.key?(:mesh_uid)
  @service_name = args[:service_name] if args.key?(:service_name)
  @service_namespace = args[:service_namespace] if args.key?(:service_namespace)
end