Class: Google::Apis::ContainerV1beta1::PodSecurityPolicyConfig
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1beta1::PodSecurityPolicyConfig
- 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 for the PodSecurityPolicy feature.
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
(also: #enabled?)
Enable the PodSecurityPolicy controller for this cluster.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PodSecurityPolicyConfig
constructor
A new instance of PodSecurityPolicyConfig.
-
#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) ⇒ PodSecurityPolicyConfig
Returns a new instance of PodSecurityPolicyConfig
2477 2478 2479 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 2477 def initialize(**args) update!(**args) end |
Instance Attribute Details
#enabled ⇒ Boolean Also known as: enabled?
Enable the PodSecurityPolicy controller for this cluster. If enabled, pods
must be valid under a PodSecurityPolicy to be created.
Corresponds to the JSON property enabled
2474 2475 2476 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 2474 def enabled @enabled end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2482 2483 2484 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 2482 def update!(**args) @enabled = args[:enabled] if args.key?(:enabled) end |