Class: Google::Apis::ContainerV1::AdvancedDatapathObservabilityConfig
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::AdvancedDatapathObservabilityConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/container_v1/classes.rb,
lib/google/apis/container_v1/representations.rb,
lib/google/apis/container_v1/representations.rb
Overview
AdvancedDatapathObservabilityConfig specifies configuration of observability features of advanced datapath.
Instance Attribute Summary collapse
-
#enable_metrics ⇒ Boolean
(also: #enable_metrics?)
Expose flow metrics on nodes Corresponds to the JSON property
enableMetrics. -
#relay_mode ⇒ String
Method used to make Relay available Corresponds to the JSON property
relayMode.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AdvancedDatapathObservabilityConfig
constructor
A new instance of AdvancedDatapathObservabilityConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ AdvancedDatapathObservabilityConfig
Returns a new instance of AdvancedDatapathObservabilityConfig.
259 260 261 |
# File 'lib/google/apis/container_v1/classes.rb', line 259 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enable_metrics ⇒ Boolean Also known as: enable_metrics?
Expose flow metrics on nodes
Corresponds to the JSON property enableMetrics
251 252 253 |
# File 'lib/google/apis/container_v1/classes.rb', line 251 def enable_metrics @enable_metrics end |
#relay_mode ⇒ String
Method used to make Relay available
Corresponds to the JSON property relayMode
257 258 259 |
# File 'lib/google/apis/container_v1/classes.rb', line 257 def relay_mode @relay_mode end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
264 265 266 267 |
# File 'lib/google/apis/container_v1/classes.rb', line 264 def update!(**args) @enable_metrics = args[:enable_metrics] if args.key?(:enable_metrics) @relay_mode = args[:relay_mode] if args.key?(:relay_mode) end |