Class: Google::Apis::ContainerV1::ClientCertificateConfig

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/container_v1/classes.rb,
generated/google/apis/container_v1/representations.rb,
generated/google/apis/container_v1/representations.rb

Overview

Configuration for client certificates on the cluster.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ClientCertificateConfig

Returns a new instance of ClientCertificateConfig.



333
334
335
# File 'generated/google/apis/container_v1/classes.rb', line 333

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#issue_client_certificateBoolean Also known as: issue_client_certificate?

Issue a client certificate. Corresponds to the JSON property issueClientCertificate

Returns:

  • (Boolean)


330
331
332
# File 'generated/google/apis/container_v1/classes.rb', line 330

def issue_client_certificate
  @issue_client_certificate
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



338
339
340
# File 'generated/google/apis/container_v1/classes.rb', line 338

def update!(**args)
  @issue_client_certificate = args[:issue_client_certificate] if args.key?(:issue_client_certificate)
end