Struct google_container1::MasterAuth [−][src]
pub struct MasterAuth {
pub username: Option<String>,
pub password: Option<String>,
pub client_certificate: Option<String>,
pub client_key: Option<String>,
pub cluster_ca_certificate: Option<String>,
pub client_certificate_config: Option<ClientCertificateConfig>,
}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
username: Option<String>
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.
password: Option<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.
client_certificate: Option<String>
[Output only] Base64-encoded public certificate used by clients to authenticate to the cluster endpoint.
client_key: Option<String>
[Output only] Base64-encoded private key used by clients to authenticate to the cluster endpoint.
cluster_ca_certificate: Option<String>
[Output only] Base64-encoded public certificate that is the root of trust for the cluster.
client_certificate_config: Option<ClientCertificateConfig>
Configuration for client certificate authentication on the cluster. If no configuration is specified, a client certificate is issued.
Trait Implementations
impl Default for MasterAuth[src]
impl Default for MasterAuthfn default() -> MasterAuth[src]
fn default() -> MasterAuthReturns the "default value" for a type. Read more
impl Clone for MasterAuth[src]
impl Clone for MasterAuthfn clone(&self) -> MasterAuth[src]
fn clone(&self) -> MasterAuthReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Debug for MasterAuth[src]
impl Debug for MasterAuthfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Part for MasterAuth[src]
impl Part for MasterAuthAuto Trait Implementations
impl Send for MasterAuth
impl Send for MasterAuthimpl Sync for MasterAuth
impl Sync for MasterAuth