class Google::Apis::DataprocV1::SecurityConfig

Security related configuration, including encryption, Kerberos, etc.

Attributes

identity_config[RW]

Identity related configuration, including service account based secure multi- tenancy user mappings. Corresponds to the JSON property `identityConfig` @return [Google::Apis::DataprocV1::IdentityConfig]

kerberos_config[RW]

Specifies Kerberos related configuration. Corresponds to the JSON property `kerberosConfig` @return [Google::Apis::DataprocV1::KerberosConfig]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dataproc_v1/classes.rb, line 3026
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dataproc_v1/classes.rb, line 3031
def update!(**args)
  @identity_config = args[:identity_config] if args.key?(:identity_config)
  @kerberos_config = args[:kerberos_config] if args.key?(:kerberos_config)
end