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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/monitoring_v3/classes.rb,
generated/google/apis/monitoring_v3/representations.rb,
generated/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.



2115
2116
2117
# File 'generated/google/apis/monitoring_v3/classes.rb', line 2115

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)


2101
2102
2103
# File 'generated/google/apis/monitoring_v3/classes.rb', line 2101

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)


2107
2108
2109
# File 'generated/google/apis/monitoring_v3/classes.rb', line 2107

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)


2113
2114
2115
# File 'generated/google/apis/monitoring_v3/classes.rb', line 2113

def service_namespace
  @service_namespace
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2120
2121
2122
2123
2124
# File 'generated/google/apis/monitoring_v3/classes.rb', line 2120

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