Class: Google::Apis::ContainerV1::NetworkPolicy
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::NetworkPolicy
- 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
Configuration options for the NetworkPolicy feature. https://kubernetes.io/ docs/concepts/services-networking/networkpolicies/
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
(also: #enabled?)
Whether network policy is enabled on the cluster.
-
#provider ⇒ String
The selected network policy provider.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NetworkPolicy
constructor
A new instance of NetworkPolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NetworkPolicy
Returns a new instance of NetworkPolicy.
3736 3737 3738 |
# File 'lib/google/apis/container_v1/classes.rb', line 3736 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enabled ⇒ Boolean Also known as: enabled?
Whether network policy is enabled on the cluster.
Corresponds to the JSON property enabled
3728 3729 3730 |
# File 'lib/google/apis/container_v1/classes.rb', line 3728 def enabled @enabled end |
#provider ⇒ String
The selected network policy provider.
Corresponds to the JSON property provider
3734 3735 3736 |
# File 'lib/google/apis/container_v1/classes.rb', line 3734 def provider @provider end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3741 3742 3743 3744 |
# File 'lib/google/apis/container_v1/classes.rb', line 3741 def update!(**args) @enabled = args[:enabled] if args.key?(:enabled) @provider = args[:provider] if args.key?(:provider) end |