Class: Google::Apis::GkehubV1::ConfigManagementGatekeeperDeploymentState
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::GkehubV1::ConfigManagementGatekeeperDeploymentState
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/gkehub_v1/classes.rb,
lib/google/apis/gkehub_v1/representations.rb,
lib/google/apis/gkehub_v1/representations.rb 
Overview
State of Policy Controller installation.
Instance Attribute Summary collapse
- 
  
    
      #gatekeeper_audit  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Status of gatekeeper-audit deployment.
 - 
  
    
      #gatekeeper_controller_manager_state  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Status of gatekeeper-controller-manager pod.
 - 
  
    
      #gatekeeper_mutation  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Status of the pod serving the mutation webhook.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ConfigManagementGatekeeperDeploymentState 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ConfigManagementGatekeeperDeploymentState.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ConfigManagementGatekeeperDeploymentState
Returns a new instance of ConfigManagementGatekeeperDeploymentState.
      1151 1152 1153  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 1151 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#gatekeeper_audit ⇒ String
Status of gatekeeper-audit deployment.
Corresponds to the JSON property gatekeeperAudit
      1139 1140 1141  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 1139 def gatekeeper_audit @gatekeeper_audit end  | 
  
#gatekeeper_controller_manager_state ⇒ String
Status of gatekeeper-controller-manager pod.
Corresponds to the JSON property gatekeeperControllerManagerState
      1144 1145 1146  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 1144 def gatekeeper_controller_manager_state @gatekeeper_controller_manager_state end  | 
  
#gatekeeper_mutation ⇒ String
Status of the pod serving the mutation webhook.
Corresponds to the JSON property gatekeeperMutation
      1149 1150 1151  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 1149 def gatekeeper_mutation @gatekeeper_mutation end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1156 1157 1158 1159 1160  | 
    
      # File 'lib/google/apis/gkehub_v1/classes.rb', line 1156 def update!(**args) @gatekeeper_audit = args[:gatekeeper_audit] if args.key?(:gatekeeper_audit) @gatekeeper_controller_manager_state = args[:gatekeeper_controller_manager_state] if args.key?(:gatekeeper_controller_manager_state) @gatekeeper_mutation = args[:gatekeeper_mutation] if args.key?(:gatekeeper_mutation) end  |