Struct gapi_grpc::google::cloud::metastore::v1alpha::KerberosConfig[][src]

pub struct KerberosConfig {
    pub keytab: Option<Secret>,
    pub principal: String,
    pub krb5_config_gcs_uri: String,
}

Configuration information for a Kerberos principal.

Fields

keytab: Option<Secret>

A Kerberos keytab file that can be used to authenticate a service principal with a Kerberos Key Distribution Center (KDC).

principal: String

A Kerberos principal that exists in the both the keytab the KDC to authenticate as. A typical principal is of the form primary/instance@REALM, but there is no exact format.

krb5_config_gcs_uri: String

A Cloud Storage URI that specifies the path to a krb5.conf file. It is of the form gs://{bucket_name}/path/to/krb5.conf, although the file does not need to be named krb5.conf explicitly.

Trait Implementations

impl Clone for KerberosConfig[src]

impl Debug for KerberosConfig[src]

impl Default for KerberosConfig[src]

impl Message for KerberosConfig[src]

impl PartialEq<KerberosConfig> for KerberosConfig[src]

impl StructuralPartialEq for KerberosConfig[src]

Auto Trait Implementations

impl RefUnwindSafe for KerberosConfig

impl Send for KerberosConfig

impl Sync for KerberosConfig

impl Unpin for KerberosConfig

impl UnwindSafe for KerberosConfig

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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 = Infallible

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<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]