class Google::Apis::ContainerV1beta1::IstioConfig

Configuration options for Istio addon.

Attributes

auth[RW]

The specified Istio auth mode, either none, or mutual TLS. Corresponds to the JSON property `auth` @return [String]

disabled[RW]

Whether Istio is enabled for this cluster. Corresponds to the JSON property `disabled` @return [Boolean]

disabled?[RW]

Whether Istio is enabled for this cluster. Corresponds to the JSON property `disabled` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/container_v1beta1/classes.rb, line 2209
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/container_v1beta1/classes.rb, line 2214
def update!(**args)
  @auth = args[:auth] if args.key?(:auth)
  @disabled = args[:disabled] if args.key?(:disabled)
end