google_api_container v0.1.0 GoogleApi.Container.V1.Model.MasterAuth View Source

The authentication information for accessing the master endpoint. Authentication can be done using HTTP basic auth or using client certificates.

Attributes

  • clientCertificate (String.t): [Output only] Base64-encoded public certificate used by clients to authenticate to the cluster endpoint. Defaults to: null.
  • clientCertificateConfig (ClientCertificateConfig): Configuration for client certificate authentication on the cluster. If no configuration is specified, a client certificate is issued. Defaults to: null.
  • clientKey (String.t): [Output only] Base64-encoded private key used by clients to authenticate to the cluster endpoint. Defaults to: null.
  • clusterCaCertificate (String.t): [Output only] Base64-encoded public certificate that is the root of trust for the cluster. Defaults to: null.
  • password (String.t): 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. Defaults to: null.
  • username (String.t): The username to use for HTTP basic authentication to the master endpoint. For clusters v1.6.0 and later, you can disable basic authentication by providing an empty username. Defaults to: null.

Link to this section Summary

Functions

Unwrap a decoded JSON object into its complex fields

Link to this section Types

Link to this type t() View Source
t() :: %GoogleApi.Container.V1.Model.MasterAuth{
  clientCertificate: any(),
  clientCertificateConfig:
    GoogleApi.Container.V1.Model.ClientCertificateConfig.t(),
  clientKey: any(),
  clusterCaCertificate: any(),
  password: any(),
  username: any()
}

Link to this section Functions

Link to this function decode(value, options) View Source
decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.