Class: Google::Apis::MonitoringV3::ClusterIstio
- Inherits:
-
Object
- Object
- Google::Apis::MonitoringV3::ClusterIstio
- 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 a single Kubernetes cluster. Learn more at https:// istio.io. Clusters running OSS Istio will have their services ingested as this type.
Instance Attribute Summary collapse
-
#cluster_name ⇒ String
The name of the Kubernetes cluster in which this Istio service is defined.
-
#location ⇒ String
The location of the Kubernetes cluster 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) ⇒ ClusterIstio
constructor
A new instance of ClusterIstio.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ClusterIstio
Returns a new instance of ClusterIstio.
644 645 646 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 644 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cluster_name ⇒ String
The name of the Kubernetes cluster in which this Istio service is defined.
Corresponds to the cluster_name resource label in k8s_cluster resources.
Corresponds to the JSON property clusterName
624 625 626 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 624 def cluster_name @cluster_name end |
#location ⇒ String
The location of the Kubernetes cluster in which this Istio service is defined.
Corresponds to the location resource label in k8s_cluster resources.
Corresponds to the JSON property location
630 631 632 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 630 def location @location 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
636 637 638 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 636 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
642 643 644 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 642 def service_namespace @service_namespace end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
649 650 651 652 653 654 |
# File 'lib/google/apis/monitoring_v3/classes.rb', line 649 def update!(**args) @cluster_name = args[:cluster_name] if args.key?(:cluster_name) @location = args[:location] if args.key?(:location) @service_name = args[:service_name] if args.key?(:service_name) @service_namespace = args[:service_namespace] if args.key?(:service_namespace) end |