Class: Google::Apis::ContainerV1::AdvancedDatapathObservabilityConfig

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ AdvancedDatapathObservabilityConfig

Returns a new instance of AdvancedDatapathObservabilityConfig.



277
278
279
# File 'lib/google/apis/container_v1/classes.rb', line 277

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#enable_metricsBoolean Also known as: enable_metrics?

Expose flow metrics on nodes Corresponds to the JSON property enableMetrics

Returns:

  • (Boolean)


263
264
265
# File 'lib/google/apis/container_v1/classes.rb', line 263

def enable_metrics
  @enable_metrics
end

#enable_relayBoolean Also known as: enable_relay?

Enable Relay component Corresponds to the JSON property enableRelay

Returns:

  • (Boolean)


269
270
271
# File 'lib/google/apis/container_v1/classes.rb', line 269

def enable_relay
  @enable_relay
end

#relay_modeString

Method used to make Relay available Corresponds to the JSON property relayMode

Returns:

  • (String)


275
276
277
# File 'lib/google/apis/container_v1/classes.rb', line 275

def relay_mode
  @relay_mode
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



282
283
284
285
286
# File 'lib/google/apis/container_v1/classes.rb', line 282

def update!(**args)
  @enable_metrics = args[:enable_metrics] if args.key?(:enable_metrics)
  @enable_relay = args[:enable_relay] if args.key?(:enable_relay)
  @relay_mode = args[:relay_mode] if args.key?(:relay_mode)
end