Class: Google::Apis::ContainerV1beta1::IstioConfig
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1beta1::IstioConfig
- 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
-
#auth ⇒ String
The specified Istio auth mode, either none, or mutual TLS.
-
#disabled ⇒ Boolean
(also: #disabled?)
Whether Istio is enabled for this cluster.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IstioConfig
constructor
A new instance of IstioConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ IstioConfig
Returns a new instance of IstioConfig
1385 1386 1387 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1385 def initialize(**args) update!(**args) end |
Instance Attribute Details
#auth ⇒ String
The specified Istio auth mode, either none, or mutual TLS.
Corresponds to the JSON property auth
1377 1378 1379 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1377 def auth @auth end |
#disabled ⇒ Boolean Also known as: disabled?
Whether Istio is enabled for this cluster.
Corresponds to the JSON property disabled
1382 1383 1384 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1382 def disabled @disabled end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1390 1391 1392 1393 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1390 def update!(**args) @auth = args[:auth] if args.key?(:auth) @disabled = args[:disabled] if args.key?(:disabled) end |