Struct google_container1::MasterAuth [] [src]

pub struct MasterAuth {
    pub username: Option<String>,
    pub password: Option<String>,
    pub client_key: Option<String>,
    pub client_certificate: Option<String>,
    pub cluster_ca_certificate: Option<String>,
}

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

This type is not used in any activity, and only used as part of another schema.

Fields

The username to use for HTTP basic authentication to the master endpoint.

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.

[Output only] Base64-encoded private key used by clients to authenticate to the cluster endpoint.

[Output only] Base64-encoded public certificate used by clients to authenticate to the cluster endpoint.

[Output only] Base64-encoded public certificate that is the root of trust for the cluster.

Trait Implementations

impl Debug for MasterAuth
[src]

Formats the value using the given formatter.

impl Clone for MasterAuth
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for MasterAuth
[src]

Returns the "default value" for a type. Read more

impl Part for MasterAuth
[src]