[][src]Struct google_dataproc1::KerberosConfig

pub struct KerberosConfig {
    pub kdc_db_key_uri: Option<String>,
    pub truststore_password_uri: Option<String>,
    pub cross_realm_trust_realm: Option<String>,
    pub key_password_uri: Option<String>,
    pub enable_kerberos: Option<bool>,
    pub cross_realm_trust_admin_server: Option<String>,
    pub cross_realm_trust_kdc: Option<String>,
    pub keystore_uri: Option<String>,
    pub keystore_password_uri: Option<String>,
    pub cross_realm_trust_shared_password_uri: Option<String>,
    pub tgt_lifetime_hours: Option<i32>,
    pub kms_key_uri: Option<String>,
    pub truststore_uri: Option<String>,
    pub root_principal_password_uri: Option<String>,
}

Specifies Kerberos related configuration.

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

Fields

kdc_db_key_uri: Option<String>

Optional. The Cloud Storage URI of a KMS encrypted file containing the master key of the KDC database.

truststore_password_uri: Option<String>

Optional. The Cloud Storage URI of a KMS encrypted file containing the password to the user provided truststore. For the self-signed certificate, this password is generated by Dataproc.

cross_realm_trust_realm: Option<String>

Optional. The remote realm the Dataproc on-cluster KDC will trust, should the user enable cross realm trust.

key_password_uri: Option<String>

Optional. The Cloud Storage URI of a KMS encrypted file containing the password to the user provided key. For the self-signed certificate, this password is generated by Dataproc.

enable_kerberos: Option<bool>

Optional. Flag to indicate whether to Kerberize the cluster.

cross_realm_trust_admin_server: Option<String>

Optional. The admin server (IP or hostname) for the remote trusted realm in a cross realm trust relationship.

cross_realm_trust_kdc: Option<String>

Optional. The KDC (IP or hostname) for the remote trusted realm in a cross realm trust relationship.

keystore_uri: Option<String>

Optional. The Cloud Storage URI of the keystore file used for SSL encryption. If not provided, Dataproc will provide a self-signed certificate.

keystore_password_uri: Option<String>

Optional. The Cloud Storage URI of a KMS encrypted file containing the password to the user provided keystore. For the self-signed certificate, this password is generated by Dataproc.

cross_realm_trust_shared_password_uri: Option<String>

Optional. The Cloud Storage URI of a KMS encrypted file containing the shared password between the on-cluster Kerberos realm and the remote trusted realm, in a cross realm trust relationship.

tgt_lifetime_hours: Option<i32>

Optional. The lifetime of the ticket granting ticket, in hours. If not specified, or user specifies 0, then default value 10 will be used.

kms_key_uri: Option<String>

Required. The uri of the KMS key used to encrypt various sensitive files.

truststore_uri: Option<String>

Optional. The Cloud Storage URI of the truststore file used for SSL encryption. If not provided, Dataproc will provide a self-signed certificate.

root_principal_password_uri: Option<String>

Required. The Cloud Storage URI of a KMS encrypted file containing the root principal password.

Trait Implementations

impl Part for KerberosConfig[src]

impl Clone for KerberosConfig[src]

impl Default for KerberosConfig[src]

impl Debug for KerberosConfig[src]

impl Serialize for KerberosConfig[src]

impl<'de> Deserialize<'de> for KerberosConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = !

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]