Class: Google::Apis::MonitoringV3::MeshIstio
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::MonitoringV3::MeshIstio
 
 
- 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
- 
  
    
      #mesh_uid  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Identifier for the mesh in which this Istio service is defined.
 - 
  
    
      #service_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the Istio service underlying this service.
 - 
  
    
      #service_namespace  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The namespace of the Istio service underlying this service.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ MeshIstio 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of MeshIstio.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ MeshIstio
Returns a new instance of MeshIstio.
      2720 2721 2722  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2720 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#mesh_uid ⇒ String
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
      2706 2707 2708  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2706 def mesh_uid @mesh_uid end  | 
  
#service_name ⇒ String
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
      2712 2713 2714  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2712 def service_name @service_name end  | 
  
#service_namespace ⇒ String
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
      2718 2719 2720  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2718 def service_namespace @service_namespace end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2725 2726 2727 2728 2729  | 
    
      # File 'lib/google/apis/monitoring_v3/classes.rb', line 2725 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  |