Class: Google::Apis::ContainerV1::MasterAuth
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::MasterAuth
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/container_v1/classes.rb,
lib/google/apis/container_v1/representations.rb,
lib/google/apis/container_v1/representations.rb
Overview
The authentication information for accessing the master endpoint. Authentication can be done using HTTP basic auth or using client certificates.
Instance Attribute Summary collapse
-
#client_certificate ⇒ String
[Output only] Base64-encoded public certificate used by clients to authenticate to the cluster endpoint.
-
#client_certificate_config ⇒ Google::Apis::ContainerV1::ClientCertificateConfig
Configuration for client certificates on the cluster.
-
#client_key ⇒ String
[Output only] Base64-encoded private key used by clients to authenticate to the cluster endpoint.
-
#cluster_ca_certificate ⇒ String
[Output only] Base64-encoded public certificate that is the root of trust for the cluster.
-
#password ⇒ String
The password to use for HTTP basic authentication to the master endpoint.
-
#username ⇒ String
The username to use for HTTP basic authentication to the master endpoint.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MasterAuth
constructor
A new instance of MasterAuth.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MasterAuth
Returns a new instance of MasterAuth.
2444 2445 2446 |
# File 'lib/google/apis/container_v1/classes.rb', line 2444 def initialize(**args) update!(**args) end |
Instance Attribute Details
#client_certificate ⇒ String
[Output only] Base64-encoded public certificate used by clients to
authenticate to the cluster endpoint.
Corresponds to the JSON property clientCertificate
2403 2404 2405 |
# File 'lib/google/apis/container_v1/classes.rb', line 2403 def client_certificate @client_certificate end |
#client_certificate_config ⇒ Google::Apis::ContainerV1::ClientCertificateConfig
Configuration for client certificates on the cluster.
Corresponds to the JSON property clientCertificateConfig
2408 2409 2410 |
# File 'lib/google/apis/container_v1/classes.rb', line 2408 def client_certificate_config @client_certificate_config end |
#client_key ⇒ String
[Output only] Base64-encoded private key used by clients to authenticate to
the cluster endpoint.
Corresponds to the JSON property clientKey
2414 2415 2416 |
# File 'lib/google/apis/container_v1/classes.rb', line 2414 def client_key @client_key end |
#cluster_ca_certificate ⇒ String
[Output only] Base64-encoded public certificate that is the root of trust for
the cluster.
Corresponds to the JSON property clusterCaCertificate
2420 2421 2422 |
# File 'lib/google/apis/container_v1/classes.rb', line 2420 def cluster_ca_certificate @cluster_ca_certificate end |
#password ⇒ String
The password to use for HTTP basic authentication to the master endpoint.
Because the master endpoint is open to the Internet, you should create a
strong password. If a password is provided for cluster creation, username must
be non-empty. Warning: basic authentication is deprecated, and will be removed
in GKE control plane versions 1.19 and newer. For a list of recommended
authentication methods, see: https://cloud.google.com/kubernetes-engine/docs/
how-to/api-server-authentication
Corresponds to the JSON property password
2431 2432 2433 |
# File 'lib/google/apis/container_v1/classes.rb', line 2431 def password @password end |
#username ⇒ String
The username to use for HTTP basic authentication to the master endpoint. For
clusters v1.6.0 and later, basic authentication can be disabled by leaving
username unspecified (or setting it to the empty string). Warning: basic
authentication is deprecated, and will be removed in GKE control plane
versions 1.19 and newer. For a list of recommended authentication methods, see:
https://cloud.google.com/kubernetes-engine/docs/how-to/api-server-
authentication
Corresponds to the JSON property username
2442 2443 2444 |
# File 'lib/google/apis/container_v1/classes.rb', line 2442 def username @username end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2449 2450 2451 2452 2453 2454 2455 2456 |
# File 'lib/google/apis/container_v1/classes.rb', line 2449 def update!(**args) @client_certificate = args[:client_certificate] if args.key?(:client_certificate) @client_certificate_config = args[:client_certificate_config] if args.key?(:client_certificate_config) @client_key = args[:client_key] if args.key?(:client_key) @cluster_ca_certificate = args[:cluster_ca_certificate] if args.key?(:cluster_ca_certificate) @password = args[:password] if args.key?(:password) @username = args[:username] if args.key?(:username) end |