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.



2438
2439
2440
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2438

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)


2424
2425
2426
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2424

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)


2430
2431
2432
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2430

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)


2436
2437
2438
# File 'lib/google/apis/monitoring_v3/classes.rb', line 2436

def service_namespace
  @service_namespace
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2443
2444
2445
2446
2447
# 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