Class: Google::Apis::ContainerV1beta1::ClientCertificateConfig
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContainerV1beta1::ClientCertificateConfig
 
- 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 client certificates on the cluster.
Instance Attribute Summary collapse
- 
  
    
      #issue_client_certificate  ⇒ Boolean 
    
    
      (also: #issue_client_certificate?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Issue a client certificate. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ClientCertificateConfig 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ClientCertificateConfig. 
- 
  
    
      #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) ⇒ ClientCertificateConfig
Returns a new instance of ClientCertificateConfig
| 201 202 203 | # File 'generated/google/apis/container_v1beta1/classes.rb', line 201 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#issue_client_certificate ⇒ Boolean Also known as: issue_client_certificate?
Issue a client certificate.
Corresponds to the JSON property issueClientCertificate
| 198 199 200 | # File 'generated/google/apis/container_v1beta1/classes.rb', line 198 def issue_client_certificate @issue_client_certificate end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 206 207 208 | # File 'generated/google/apis/container_v1beta1/classes.rb', line 206 def update!(**args) @issue_client_certificate = args[:issue_client_certificate] if args.key?(:issue_client_certificate) end |