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
1768 1769 1770 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1768 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
1765 1766 1767 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1765 def enabled @enabled end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1773 1774 1775 |
# File 'generated/google/apis/container_v1beta1/classes.rb', line 1773 def update!(**args) @enabled = args[:enabled] if args.key?(:enabled) end |