Class: Google::Apis::ContainerV1beta1::IstioConfig

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/container_v1beta1/classes.rb,
generated/google/apis/container_v1beta1/representations.rb,
generated/google/apis/container_v1beta1/representations.rb

Overview

Configuration options for Istio addon.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ IstioConfig

Returns a new instance of IstioConfig



1600
1601
1602
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1600

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

Instance Attribute Details

#authString

The specified Istio auth mode, either none, or mutual TLS. Corresponds to the JSON property auth

Returns:

  • (String)


1592
1593
1594
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1592

def auth
  @auth
end

#disabledBoolean Also known as: disabled?

Whether Istio is enabled for this cluster. Corresponds to the JSON property disabled

Returns:

  • (Boolean)


1597
1598
1599
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1597

def disabled
  @disabled
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1605
1606
1607
1608
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1605

def update!(**args)
  @auth = args[:auth] if args.key?(:auth)
  @disabled = args[:disabled] if args.key?(:disabled)
end