Class: Google::Cloud::Monitoring::V3::Service

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/monitoring/v3/service.rb

Overview

A Service is a discrete, autonomous, and network-accessible unit, designed to solve an individual concern (Wikipedia). In Cloud Monitoring, a Service acts as the root resource under which operational aspects of the service are accessible.

Defined Under Namespace

Classes: AppEngine, CloudEndpoints, ClusterIstio, Custom, IstioCanonicalService, MeshIstio, Telemetry

Instance Attribute Summary collapse

Instance Attribute Details

#app_engine::Google::Cloud::Monitoring::V3::Service::AppEngine

Returns Type used for App Engine services.

Returns:



60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'proto_docs/google/monitoring/v3/service.rb', line 60

class Service
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Custom view of service telemetry. Currently a place-holder pending final
  # design.
  class Custom
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # App Engine service. Learn more at https://cloud.google.com/appengine.
  # @!attribute [rw] module_id
  #   @return [::String]
  #     The ID of the App Engine module underlying this service. Corresponds to
  #     the `module_id` resource label in the `gae_app` monitored resource:
  #     https://cloud.google.com/monitoring/api/resources#tag_gae_app
  class AppEngine
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Cloud Endpoints service. Learn more at https://cloud.google.com/endpoints.
  # @!attribute [rw] service
  #   @return [::String]
  #     The name of the Cloud Endpoints service underlying this service.
  #     Corresponds to the `service` resource label in the `api` monitored
  #     resource: https://cloud.google.com/monitoring/api/resources#tag_api
  class CloudEndpoints
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # 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.
  # @!attribute [rw] location
  #   @return [::String]
  #     The location of the Kubernetes cluster in which this Istio service is
  #     defined. Corresponds to the `location` resource label in `k8s_cluster`
  #     resources.
  # @!attribute [rw] cluster_name
  #   @return [::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.
  # @!attribute [rw] service_namespace
  #   @return [::String]
  #     The namespace of the Istio service underlying this service. Corresponds
  #     to the `destination_service_namespace` metric label in Istio metrics.
  # @!attribute [rw] service_name
  #   @return [::String]
  #     The name of the Istio service underlying this service. Corresponds to the
  #     `destination_service_name` metric label in Istio metrics.
  class ClusterIstio
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Istio service scoped to an Istio mesh. Anthos clusters running ASM < 1.6.8
  # will have their services ingested as this type.
  # @!attribute [rw] mesh_uid
  #   @return [::String]
  #     Identifier for the mesh in which this Istio service is defined.
  #     Corresponds to the `mesh_uid` metric label in Istio metrics.
  # @!attribute [rw] service_namespace
  #   @return [::String]
  #     The namespace of the Istio service underlying this service. Corresponds
  #     to the `destination_service_namespace` metric label in Istio metrics.
  # @!attribute [rw] service_name
  #   @return [::String]
  #     The name of the Istio service underlying this service. Corresponds to the
  #     `destination_service_name` metric label in Istio metrics.
  class MeshIstio
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Canonical service scoped to an Istio mesh. Anthos clusters running ASM >=
  # 1.6.8 will have their services ingested as this type.
  # @!attribute [rw] mesh_uid
  #   @return [::String]
  #     Identifier for the Istio mesh in which this canonical service is defined.
  #     Corresponds to the `mesh_uid` metric label in
  #     [Istio metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  # @!attribute [rw] canonical_service_namespace
  #   @return [::String]
  #     The namespace of the canonical service underlying this service.
  #     Corresponds to the `destination_canonical_service_namespace` metric
  #     label in [Istio
  #     metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  # @!attribute [rw] canonical_service
  #   @return [::String]
  #     The name of the canonical service underlying this service.
  #     Corresponds to the `destination_canonical_service_name` metric label in
  #     label in [Istio
  #     metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  class IstioCanonicalService
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Configuration for how to query telemetry on a Service.
  # @!attribute [rw] resource_name
  #   @return [::String]
  #     The full name of the resource that defines this service. Formatted as
  #     described in https://cloud.google.com/apis/design/resource_names.
  class Telemetry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end

#cloud_endpoints::Google::Cloud::Monitoring::V3::Service::CloudEndpoints

Returns Type used for Cloud Endpoints services.

Returns:



60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'proto_docs/google/monitoring/v3/service.rb', line 60

class Service
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Custom view of service telemetry. Currently a place-holder pending final
  # design.
  class Custom
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # App Engine service. Learn more at https://cloud.google.com/appengine.
  # @!attribute [rw] module_id
  #   @return [::String]
  #     The ID of the App Engine module underlying this service. Corresponds to
  #     the `module_id` resource label in the `gae_app` monitored resource:
  #     https://cloud.google.com/monitoring/api/resources#tag_gae_app
  class AppEngine
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Cloud Endpoints service. Learn more at https://cloud.google.com/endpoints.
  # @!attribute [rw] service
  #   @return [::String]
  #     The name of the Cloud Endpoints service underlying this service.
  #     Corresponds to the `service` resource label in the `api` monitored
  #     resource: https://cloud.google.com/monitoring/api/resources#tag_api
  class CloudEndpoints
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # 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.
  # @!attribute [rw] location
  #   @return [::String]
  #     The location of the Kubernetes cluster in which this Istio service is
  #     defined. Corresponds to the `location` resource label in `k8s_cluster`
  #     resources.
  # @!attribute [rw] cluster_name
  #   @return [::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.
  # @!attribute [rw] service_namespace
  #   @return [::String]
  #     The namespace of the Istio service underlying this service. Corresponds
  #     to the `destination_service_namespace` metric label in Istio metrics.
  # @!attribute [rw] service_name
  #   @return [::String]
  #     The name of the Istio service underlying this service. Corresponds to the
  #     `destination_service_name` metric label in Istio metrics.
  class ClusterIstio
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Istio service scoped to an Istio mesh. Anthos clusters running ASM < 1.6.8
  # will have their services ingested as this type.
  # @!attribute [rw] mesh_uid
  #   @return [::String]
  #     Identifier for the mesh in which this Istio service is defined.
  #     Corresponds to the `mesh_uid` metric label in Istio metrics.
  # @!attribute [rw] service_namespace
  #   @return [::String]
  #     The namespace of the Istio service underlying this service. Corresponds
  #     to the `destination_service_namespace` metric label in Istio metrics.
  # @!attribute [rw] service_name
  #   @return [::String]
  #     The name of the Istio service underlying this service. Corresponds to the
  #     `destination_service_name` metric label in Istio metrics.
  class MeshIstio
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Canonical service scoped to an Istio mesh. Anthos clusters running ASM >=
  # 1.6.8 will have their services ingested as this type.
  # @!attribute [rw] mesh_uid
  #   @return [::String]
  #     Identifier for the Istio mesh in which this canonical service is defined.
  #     Corresponds to the `mesh_uid` metric label in
  #     [Istio metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  # @!attribute [rw] canonical_service_namespace
  #   @return [::String]
  #     The namespace of the canonical service underlying this service.
  #     Corresponds to the `destination_canonical_service_namespace` metric
  #     label in [Istio
  #     metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  # @!attribute [rw] canonical_service
  #   @return [::String]
  #     The name of the canonical service underlying this service.
  #     Corresponds to the `destination_canonical_service_name` metric label in
  #     label in [Istio
  #     metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  class IstioCanonicalService
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Configuration for how to query telemetry on a Service.
  # @!attribute [rw] resource_name
  #   @return [::String]
  #     The full name of the resource that defines this service. Formatted as
  #     described in https://cloud.google.com/apis/design/resource_names.
  class Telemetry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end

#cluster_istio::Google::Cloud::Monitoring::V3::Service::ClusterIstio

Returns Type used for Istio services that live in a Kubernetes cluster.

Returns:



60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'proto_docs/google/monitoring/v3/service.rb', line 60

class Service
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Custom view of service telemetry. Currently a place-holder pending final
  # design.
  class Custom
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # App Engine service. Learn more at https://cloud.google.com/appengine.
  # @!attribute [rw] module_id
  #   @return [::String]
  #     The ID of the App Engine module underlying this service. Corresponds to
  #     the `module_id` resource label in the `gae_app` monitored resource:
  #     https://cloud.google.com/monitoring/api/resources#tag_gae_app
  class AppEngine
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Cloud Endpoints service. Learn more at https://cloud.google.com/endpoints.
  # @!attribute [rw] service
  #   @return [::String]
  #     The name of the Cloud Endpoints service underlying this service.
  #     Corresponds to the `service` resource label in the `api` monitored
  #     resource: https://cloud.google.com/monitoring/api/resources#tag_api
  class CloudEndpoints
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # 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.
  # @!attribute [rw] location
  #   @return [::String]
  #     The location of the Kubernetes cluster in which this Istio service is
  #     defined. Corresponds to the `location` resource label in `k8s_cluster`
  #     resources.
  # @!attribute [rw] cluster_name
  #   @return [::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.
  # @!attribute [rw] service_namespace
  #   @return [::String]
  #     The namespace of the Istio service underlying this service. Corresponds
  #     to the `destination_service_namespace` metric label in Istio metrics.
  # @!attribute [rw] service_name
  #   @return [::String]
  #     The name of the Istio service underlying this service. Corresponds to the
  #     `destination_service_name` metric label in Istio metrics.
  class ClusterIstio
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Istio service scoped to an Istio mesh. Anthos clusters running ASM < 1.6.8
  # will have their services ingested as this type.
  # @!attribute [rw] mesh_uid
  #   @return [::String]
  #     Identifier for the mesh in which this Istio service is defined.
  #     Corresponds to the `mesh_uid` metric label in Istio metrics.
  # @!attribute [rw] service_namespace
  #   @return [::String]
  #     The namespace of the Istio service underlying this service. Corresponds
  #     to the `destination_service_namespace` metric label in Istio metrics.
  # @!attribute [rw] service_name
  #   @return [::String]
  #     The name of the Istio service underlying this service. Corresponds to the
  #     `destination_service_name` metric label in Istio metrics.
  class MeshIstio
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Canonical service scoped to an Istio mesh. Anthos clusters running ASM >=
  # 1.6.8 will have their services ingested as this type.
  # @!attribute [rw] mesh_uid
  #   @return [::String]
  #     Identifier for the Istio mesh in which this canonical service is defined.
  #     Corresponds to the `mesh_uid` metric label in
  #     [Istio metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  # @!attribute [rw] canonical_service_namespace
  #   @return [::String]
  #     The namespace of the canonical service underlying this service.
  #     Corresponds to the `destination_canonical_service_namespace` metric
  #     label in [Istio
  #     metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  # @!attribute [rw] canonical_service
  #   @return [::String]
  #     The name of the canonical service underlying this service.
  #     Corresponds to the `destination_canonical_service_name` metric label in
  #     label in [Istio
  #     metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  class IstioCanonicalService
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Configuration for how to query telemetry on a Service.
  # @!attribute [rw] resource_name
  #   @return [::String]
  #     The full name of the resource that defines this service. Formatted as
  #     described in https://cloud.google.com/apis/design/resource_names.
  class Telemetry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end

#custom::Google::Cloud::Monitoring::V3::Service::Custom

Returns Custom service type.

Returns:



60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'proto_docs/google/monitoring/v3/service.rb', line 60

class Service
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Custom view of service telemetry. Currently a place-holder pending final
  # design.
  class Custom
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # App Engine service. Learn more at https://cloud.google.com/appengine.
  # @!attribute [rw] module_id
  #   @return [::String]
  #     The ID of the App Engine module underlying this service. Corresponds to
  #     the `module_id` resource label in the `gae_app` monitored resource:
  #     https://cloud.google.com/monitoring/api/resources#tag_gae_app
  class AppEngine
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Cloud Endpoints service. Learn more at https://cloud.google.com/endpoints.
  # @!attribute [rw] service
  #   @return [::String]
  #     The name of the Cloud Endpoints service underlying this service.
  #     Corresponds to the `service` resource label in the `api` monitored
  #     resource: https://cloud.google.com/monitoring/api/resources#tag_api
  class CloudEndpoints
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # 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.
  # @!attribute [rw] location
  #   @return [::String]
  #     The location of the Kubernetes cluster in which this Istio service is
  #     defined. Corresponds to the `location` resource label in `k8s_cluster`
  #     resources.
  # @!attribute [rw] cluster_name
  #   @return [::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.
  # @!attribute [rw] service_namespace
  #   @return [::String]
  #     The namespace of the Istio service underlying this service. Corresponds
  #     to the `destination_service_namespace` metric label in Istio metrics.
  # @!attribute [rw] service_name
  #   @return [::String]
  #     The name of the Istio service underlying this service. Corresponds to the
  #     `destination_service_name` metric label in Istio metrics.
  class ClusterIstio
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Istio service scoped to an Istio mesh. Anthos clusters running ASM < 1.6.8
  # will have their services ingested as this type.
  # @!attribute [rw] mesh_uid
  #   @return [::String]
  #     Identifier for the mesh in which this Istio service is defined.
  #     Corresponds to the `mesh_uid` metric label in Istio metrics.
  # @!attribute [rw] service_namespace
  #   @return [::String]
  #     The namespace of the Istio service underlying this service. Corresponds
  #     to the `destination_service_namespace` metric label in Istio metrics.
  # @!attribute [rw] service_name
  #   @return [::String]
  #     The name of the Istio service underlying this service. Corresponds to the
  #     `destination_service_name` metric label in Istio metrics.
  class MeshIstio
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Canonical service scoped to an Istio mesh. Anthos clusters running ASM >=
  # 1.6.8 will have their services ingested as this type.
  # @!attribute [rw] mesh_uid
  #   @return [::String]
  #     Identifier for the Istio mesh in which this canonical service is defined.
  #     Corresponds to the `mesh_uid` metric label in
  #     [Istio metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  # @!attribute [rw] canonical_service_namespace
  #   @return [::String]
  #     The namespace of the canonical service underlying this service.
  #     Corresponds to the `destination_canonical_service_namespace` metric
  #     label in [Istio
  #     metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  # @!attribute [rw] canonical_service
  #   @return [::String]
  #     The name of the canonical service underlying this service.
  #     Corresponds to the `destination_canonical_service_name` metric label in
  #     label in [Istio
  #     metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  class IstioCanonicalService
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Configuration for how to query telemetry on a Service.
  # @!attribute [rw] resource_name
  #   @return [::String]
  #     The full name of the resource that defines this service. Formatted as
  #     described in https://cloud.google.com/apis/design/resource_names.
  class Telemetry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end

#display_name::String

Returns Name used for UI elements listing this Service.

Returns:

  • (::String)

    Name used for UI elements listing this Service.



60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'proto_docs/google/monitoring/v3/service.rb', line 60

class Service
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Custom view of service telemetry. Currently a place-holder pending final
  # design.
  class Custom
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # App Engine service. Learn more at https://cloud.google.com/appengine.
  # @!attribute [rw] module_id
  #   @return [::String]
  #     The ID of the App Engine module underlying this service. Corresponds to
  #     the `module_id` resource label in the `gae_app` monitored resource:
  #     https://cloud.google.com/monitoring/api/resources#tag_gae_app
  class AppEngine
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Cloud Endpoints service. Learn more at https://cloud.google.com/endpoints.
  # @!attribute [rw] service
  #   @return [::String]
  #     The name of the Cloud Endpoints service underlying this service.
  #     Corresponds to the `service` resource label in the `api` monitored
  #     resource: https://cloud.google.com/monitoring/api/resources#tag_api
  class CloudEndpoints
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # 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.
  # @!attribute [rw] location
  #   @return [::String]
  #     The location of the Kubernetes cluster in which this Istio service is
  #     defined. Corresponds to the `location` resource label in `k8s_cluster`
  #     resources.
  # @!attribute [rw] cluster_name
  #   @return [::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.
  # @!attribute [rw] service_namespace
  #   @return [::String]
  #     The namespace of the Istio service underlying this service. Corresponds
  #     to the `destination_service_namespace` metric label in Istio metrics.
  # @!attribute [rw] service_name
  #   @return [::String]
  #     The name of the Istio service underlying this service. Corresponds to the
  #     `destination_service_name` metric label in Istio metrics.
  class ClusterIstio
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Istio service scoped to an Istio mesh. Anthos clusters running ASM < 1.6.8
  # will have their services ingested as this type.
  # @!attribute [rw] mesh_uid
  #   @return [::String]
  #     Identifier for the mesh in which this Istio service is defined.
  #     Corresponds to the `mesh_uid` metric label in Istio metrics.
  # @!attribute [rw] service_namespace
  #   @return [::String]
  #     The namespace of the Istio service underlying this service. Corresponds
  #     to the `destination_service_namespace` metric label in Istio metrics.
  # @!attribute [rw] service_name
  #   @return [::String]
  #     The name of the Istio service underlying this service. Corresponds to the
  #     `destination_service_name` metric label in Istio metrics.
  class MeshIstio
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Canonical service scoped to an Istio mesh. Anthos clusters running ASM >=
  # 1.6.8 will have their services ingested as this type.
  # @!attribute [rw] mesh_uid
  #   @return [::String]
  #     Identifier for the Istio mesh in which this canonical service is defined.
  #     Corresponds to the `mesh_uid` metric label in
  #     [Istio metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  # @!attribute [rw] canonical_service_namespace
  #   @return [::String]
  #     The namespace of the canonical service underlying this service.
  #     Corresponds to the `destination_canonical_service_namespace` metric
  #     label in [Istio
  #     metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  # @!attribute [rw] canonical_service
  #   @return [::String]
  #     The name of the canonical service underlying this service.
  #     Corresponds to the `destination_canonical_service_name` metric label in
  #     label in [Istio
  #     metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  class IstioCanonicalService
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Configuration for how to query telemetry on a Service.
  # @!attribute [rw] resource_name
  #   @return [::String]
  #     The full name of the resource that defines this service. Formatted as
  #     described in https://cloud.google.com/apis/design/resource_names.
  class Telemetry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end

#istio_canonical_service::Google::Cloud::Monitoring::V3::Service::IstioCanonicalService

Returns Type used for canonical services scoped to an Istio mesh. Metrics for Istio are documented here.

Returns:



60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'proto_docs/google/monitoring/v3/service.rb', line 60

class Service
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Custom view of service telemetry. Currently a place-holder pending final
  # design.
  class Custom
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # App Engine service. Learn more at https://cloud.google.com/appengine.
  # @!attribute [rw] module_id
  #   @return [::String]
  #     The ID of the App Engine module underlying this service. Corresponds to
  #     the `module_id` resource label in the `gae_app` monitored resource:
  #     https://cloud.google.com/monitoring/api/resources#tag_gae_app
  class AppEngine
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Cloud Endpoints service. Learn more at https://cloud.google.com/endpoints.
  # @!attribute [rw] service
  #   @return [::String]
  #     The name of the Cloud Endpoints service underlying this service.
  #     Corresponds to the `service` resource label in the `api` monitored
  #     resource: https://cloud.google.com/monitoring/api/resources#tag_api
  class CloudEndpoints
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # 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.
  # @!attribute [rw] location
  #   @return [::String]
  #     The location of the Kubernetes cluster in which this Istio service is
  #     defined. Corresponds to the `location` resource label in `k8s_cluster`
  #     resources.
  # @!attribute [rw] cluster_name
  #   @return [::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.
  # @!attribute [rw] service_namespace
  #   @return [::String]
  #     The namespace of the Istio service underlying this service. Corresponds
  #     to the `destination_service_namespace` metric label in Istio metrics.
  # @!attribute [rw] service_name
  #   @return [::String]
  #     The name of the Istio service underlying this service. Corresponds to the
  #     `destination_service_name` metric label in Istio metrics.
  class ClusterIstio
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Istio service scoped to an Istio mesh. Anthos clusters running ASM < 1.6.8
  # will have their services ingested as this type.
  # @!attribute [rw] mesh_uid
  #   @return [::String]
  #     Identifier for the mesh in which this Istio service is defined.
  #     Corresponds to the `mesh_uid` metric label in Istio metrics.
  # @!attribute [rw] service_namespace
  #   @return [::String]
  #     The namespace of the Istio service underlying this service. Corresponds
  #     to the `destination_service_namespace` metric label in Istio metrics.
  # @!attribute [rw] service_name
  #   @return [::String]
  #     The name of the Istio service underlying this service. Corresponds to the
  #     `destination_service_name` metric label in Istio metrics.
  class MeshIstio
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Canonical service scoped to an Istio mesh. Anthos clusters running ASM >=
  # 1.6.8 will have their services ingested as this type.
  # @!attribute [rw] mesh_uid
  #   @return [::String]
  #     Identifier for the Istio mesh in which this canonical service is defined.
  #     Corresponds to the `mesh_uid` metric label in
  #     [Istio metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  # @!attribute [rw] canonical_service_namespace
  #   @return [::String]
  #     The namespace of the canonical service underlying this service.
  #     Corresponds to the `destination_canonical_service_namespace` metric
  #     label in [Istio
  #     metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  # @!attribute [rw] canonical_service
  #   @return [::String]
  #     The name of the canonical service underlying this service.
  #     Corresponds to the `destination_canonical_service_name` metric label in
  #     label in [Istio
  #     metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  class IstioCanonicalService
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Configuration for how to query telemetry on a Service.
  # @!attribute [rw] resource_name
  #   @return [::String]
  #     The full name of the resource that defines this service. Formatted as
  #     described in https://cloud.google.com/apis/design/resource_names.
  class Telemetry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end

#mesh_istio::Google::Cloud::Monitoring::V3::Service::MeshIstio

Returns Type used for Istio services scoped to an Istio mesh.

Returns:



60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'proto_docs/google/monitoring/v3/service.rb', line 60

class Service
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Custom view of service telemetry. Currently a place-holder pending final
  # design.
  class Custom
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # App Engine service. Learn more at https://cloud.google.com/appengine.
  # @!attribute [rw] module_id
  #   @return [::String]
  #     The ID of the App Engine module underlying this service. Corresponds to
  #     the `module_id` resource label in the `gae_app` monitored resource:
  #     https://cloud.google.com/monitoring/api/resources#tag_gae_app
  class AppEngine
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Cloud Endpoints service. Learn more at https://cloud.google.com/endpoints.
  # @!attribute [rw] service
  #   @return [::String]
  #     The name of the Cloud Endpoints service underlying this service.
  #     Corresponds to the `service` resource label in the `api` monitored
  #     resource: https://cloud.google.com/monitoring/api/resources#tag_api
  class CloudEndpoints
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # 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.
  # @!attribute [rw] location
  #   @return [::String]
  #     The location of the Kubernetes cluster in which this Istio service is
  #     defined. Corresponds to the `location` resource label in `k8s_cluster`
  #     resources.
  # @!attribute [rw] cluster_name
  #   @return [::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.
  # @!attribute [rw] service_namespace
  #   @return [::String]
  #     The namespace of the Istio service underlying this service. Corresponds
  #     to the `destination_service_namespace` metric label in Istio metrics.
  # @!attribute [rw] service_name
  #   @return [::String]
  #     The name of the Istio service underlying this service. Corresponds to the
  #     `destination_service_name` metric label in Istio metrics.
  class ClusterIstio
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Istio service scoped to an Istio mesh. Anthos clusters running ASM < 1.6.8
  # will have their services ingested as this type.
  # @!attribute [rw] mesh_uid
  #   @return [::String]
  #     Identifier for the mesh in which this Istio service is defined.
  #     Corresponds to the `mesh_uid` metric label in Istio metrics.
  # @!attribute [rw] service_namespace
  #   @return [::String]
  #     The namespace of the Istio service underlying this service. Corresponds
  #     to the `destination_service_namespace` metric label in Istio metrics.
  # @!attribute [rw] service_name
  #   @return [::String]
  #     The name of the Istio service underlying this service. Corresponds to the
  #     `destination_service_name` metric label in Istio metrics.
  class MeshIstio
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Canonical service scoped to an Istio mesh. Anthos clusters running ASM >=
  # 1.6.8 will have their services ingested as this type.
  # @!attribute [rw] mesh_uid
  #   @return [::String]
  #     Identifier for the Istio mesh in which this canonical service is defined.
  #     Corresponds to the `mesh_uid` metric label in
  #     [Istio metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  # @!attribute [rw] canonical_service_namespace
  #   @return [::String]
  #     The namespace of the canonical service underlying this service.
  #     Corresponds to the `destination_canonical_service_namespace` metric
  #     label in [Istio
  #     metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  # @!attribute [rw] canonical_service
  #   @return [::String]
  #     The name of the canonical service underlying this service.
  #     Corresponds to the `destination_canonical_service_name` metric label in
  #     label in [Istio
  #     metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  class IstioCanonicalService
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Configuration for how to query telemetry on a Service.
  # @!attribute [rw] resource_name
  #   @return [::String]
  #     The full name of the resource that defines this service. Formatted as
  #     described in https://cloud.google.com/apis/design/resource_names.
  class Telemetry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end

#name::String

Returns Resource name for this Service. The format is:

projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID].

Returns:

  • (::String)

    Resource name for this Service. The format is:

    projects/[PROJECT_ID_OR_NUMBER]/services/[SERVICE_ID]
    


60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'proto_docs/google/monitoring/v3/service.rb', line 60

class Service
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Custom view of service telemetry. Currently a place-holder pending final
  # design.
  class Custom
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # App Engine service. Learn more at https://cloud.google.com/appengine.
  # @!attribute [rw] module_id
  #   @return [::String]
  #     The ID of the App Engine module underlying this service. Corresponds to
  #     the `module_id` resource label in the `gae_app` monitored resource:
  #     https://cloud.google.com/monitoring/api/resources#tag_gae_app
  class AppEngine
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Cloud Endpoints service. Learn more at https://cloud.google.com/endpoints.
  # @!attribute [rw] service
  #   @return [::String]
  #     The name of the Cloud Endpoints service underlying this service.
  #     Corresponds to the `service` resource label in the `api` monitored
  #     resource: https://cloud.google.com/monitoring/api/resources#tag_api
  class CloudEndpoints
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # 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.
  # @!attribute [rw] location
  #   @return [::String]
  #     The location of the Kubernetes cluster in which this Istio service is
  #     defined. Corresponds to the `location` resource label in `k8s_cluster`
  #     resources.
  # @!attribute [rw] cluster_name
  #   @return [::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.
  # @!attribute [rw] service_namespace
  #   @return [::String]
  #     The namespace of the Istio service underlying this service. Corresponds
  #     to the `destination_service_namespace` metric label in Istio metrics.
  # @!attribute [rw] service_name
  #   @return [::String]
  #     The name of the Istio service underlying this service. Corresponds to the
  #     `destination_service_name` metric label in Istio metrics.
  class ClusterIstio
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Istio service scoped to an Istio mesh. Anthos clusters running ASM < 1.6.8
  # will have their services ingested as this type.
  # @!attribute [rw] mesh_uid
  #   @return [::String]
  #     Identifier for the mesh in which this Istio service is defined.
  #     Corresponds to the `mesh_uid` metric label in Istio metrics.
  # @!attribute [rw] service_namespace
  #   @return [::String]
  #     The namespace of the Istio service underlying this service. Corresponds
  #     to the `destination_service_namespace` metric label in Istio metrics.
  # @!attribute [rw] service_name
  #   @return [::String]
  #     The name of the Istio service underlying this service. Corresponds to the
  #     `destination_service_name` metric label in Istio metrics.
  class MeshIstio
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Canonical service scoped to an Istio mesh. Anthos clusters running ASM >=
  # 1.6.8 will have their services ingested as this type.
  # @!attribute [rw] mesh_uid
  #   @return [::String]
  #     Identifier for the Istio mesh in which this canonical service is defined.
  #     Corresponds to the `mesh_uid` metric label in
  #     [Istio metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  # @!attribute [rw] canonical_service_namespace
  #   @return [::String]
  #     The namespace of the canonical service underlying this service.
  #     Corresponds to the `destination_canonical_service_namespace` metric
  #     label in [Istio
  #     metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  # @!attribute [rw] canonical_service
  #   @return [::String]
  #     The name of the canonical service underlying this service.
  #     Corresponds to the `destination_canonical_service_name` metric label in
  #     label in [Istio
  #     metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  class IstioCanonicalService
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Configuration for how to query telemetry on a Service.
  # @!attribute [rw] resource_name
  #   @return [::String]
  #     The full name of the resource that defines this service. Formatted as
  #     described in https://cloud.google.com/apis/design/resource_names.
  class Telemetry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end

#telemetry::Google::Cloud::Monitoring::V3::Service::Telemetry

Returns Configuration for how to query telemetry on a Service.

Returns:



60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
# File 'proto_docs/google/monitoring/v3/service.rb', line 60

class Service
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Custom view of service telemetry. Currently a place-holder pending final
  # design.
  class Custom
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # App Engine service. Learn more at https://cloud.google.com/appengine.
  # @!attribute [rw] module_id
  #   @return [::String]
  #     The ID of the App Engine module underlying this service. Corresponds to
  #     the `module_id` resource label in the `gae_app` monitored resource:
  #     https://cloud.google.com/monitoring/api/resources#tag_gae_app
  class AppEngine
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Cloud Endpoints service. Learn more at https://cloud.google.com/endpoints.
  # @!attribute [rw] service
  #   @return [::String]
  #     The name of the Cloud Endpoints service underlying this service.
  #     Corresponds to the `service` resource label in the `api` monitored
  #     resource: https://cloud.google.com/monitoring/api/resources#tag_api
  class CloudEndpoints
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # 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.
  # @!attribute [rw] location
  #   @return [::String]
  #     The location of the Kubernetes cluster in which this Istio service is
  #     defined. Corresponds to the `location` resource label in `k8s_cluster`
  #     resources.
  # @!attribute [rw] cluster_name
  #   @return [::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.
  # @!attribute [rw] service_namespace
  #   @return [::String]
  #     The namespace of the Istio service underlying this service. Corresponds
  #     to the `destination_service_namespace` metric label in Istio metrics.
  # @!attribute [rw] service_name
  #   @return [::String]
  #     The name of the Istio service underlying this service. Corresponds to the
  #     `destination_service_name` metric label in Istio metrics.
  class ClusterIstio
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Istio service scoped to an Istio mesh. Anthos clusters running ASM < 1.6.8
  # will have their services ingested as this type.
  # @!attribute [rw] mesh_uid
  #   @return [::String]
  #     Identifier for the mesh in which this Istio service is defined.
  #     Corresponds to the `mesh_uid` metric label in Istio metrics.
  # @!attribute [rw] service_namespace
  #   @return [::String]
  #     The namespace of the Istio service underlying this service. Corresponds
  #     to the `destination_service_namespace` metric label in Istio metrics.
  # @!attribute [rw] service_name
  #   @return [::String]
  #     The name of the Istio service underlying this service. Corresponds to the
  #     `destination_service_name` metric label in Istio metrics.
  class MeshIstio
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Canonical service scoped to an Istio mesh. Anthos clusters running ASM >=
  # 1.6.8 will have their services ingested as this type.
  # @!attribute [rw] mesh_uid
  #   @return [::String]
  #     Identifier for the Istio mesh in which this canonical service is defined.
  #     Corresponds to the `mesh_uid` metric label in
  #     [Istio metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  # @!attribute [rw] canonical_service_namespace
  #   @return [::String]
  #     The namespace of the canonical service underlying this service.
  #     Corresponds to the `destination_canonical_service_namespace` metric
  #     label in [Istio
  #     metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  # @!attribute [rw] canonical_service
  #   @return [::String]
  #     The name of the canonical service underlying this service.
  #     Corresponds to the `destination_canonical_service_name` metric label in
  #     label in [Istio
  #     metrics](https://cloud.google.com/monitoring/api/metrics_istio).
  class IstioCanonicalService
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end

  # Configuration for how to query telemetry on a Service.
  # @!attribute [rw] resource_name
  #   @return [::String]
  #     The full name of the resource that defines this service. Formatted as
  #     described in https://cloud.google.com/apis/design/resource_names.
  class Telemetry
    include ::Google::Protobuf::MessageExts
    extend ::Google::Protobuf::MessageExts::ClassMethods
  end
end