Class: Google::Apis::MonitoringV3::MeshIstio

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/monitoring_v3/classes.rb,
lib/google/apis/monitoring_v3/representations.rb,
lib/google/apis/monitoring_v3/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MeshIstio

Returns a new instance of MeshIstio.



2626
2627
2628
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2626

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#mesh_uidString

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

Returns:

  • (String)


2612
2613
2614
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2612

def mesh_uid
  @mesh_uid
end

#service_nameString

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

Returns:

  • (String)


2618
2619
2620
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2618

def service_name
  @service_name
end

#service_namespaceString

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

Returns:

  • (String)


2624
2625
2626
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2624

def service_namespace
  @service_namespace
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2631
2632
2633
2634
2635
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2631

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