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
| 1899 1900 1901 | # File 'generated/google/apis/container_v1beta1/classes.rb', line 1899 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
| 1896 1897 1898 | # File 'generated/google/apis/container_v1beta1/classes.rb', line 1896 def enabled @enabled end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1904 1905 1906 | # File 'generated/google/apis/container_v1beta1/classes.rb', line 1904 def update!(**args) @enabled = args[:enabled] if args.key?(:enabled) end |