class Google::Apis::MetastoreV1beta::KerberosConfig
Configuration information for a Kerberos principal.
Attributes
keytab[RW]
A securely stored value. Corresponds to the JSON property `keytab` @return [Google::Apis::MetastoreV1beta::Secret]
krb5_config_gcs_uri[RW]
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. Corresponds to the JSON property `krb5ConfigGcsUri` @return [String]
principal[RW]
A Kerberos principal that exists in the both the keytab the KDC to authenticate as. A typical principal is of the form REALM at primary/instance
, but there is no exact format. Corresponds to the JSON property `principal` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/metastore_v1beta/classes.rb, line 528 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/metastore_v1beta/classes.rb, line 533 def update!(**args) @keytab = args[:keytab] if args.key?(:keytab) @krb5_config_gcs_uri = args[:krb5_config_gcs_uri] if args.key?(:krb5_config_gcs_uri) @principal = args[:principal] if args.key?(:principal) end