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
1545 1546 1547 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1545 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
1537 1538 1539 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1537 def auth @auth end |
#disabled ⇒ Boolean Also known as: disabled?
Whether Istio is enabled for this cluster.
Corresponds to the JSON property disabled
1542 1543 1544 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1542 def disabled @disabled end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1550 1551 1552 1553 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1550 def update!(**args) @auth = args[:auth] if args.key?(:auth) @disabled = args[:disabled] if args.key?(:disabled) end |