Class: Google::Apis::DataprocV1::SecurityConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dataproc_v1/classes.rb,
lib/google/apis/dataproc_v1/representations.rb,
lib/google/apis/dataproc_v1/representations.rb

Overview

Security related configuration, including encryption, Kerberos, etc.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SecurityConfig

Returns a new instance of SecurityConfig.



3857
3858
3859
# File 'lib/google/apis/dataproc_v1/classes.rb', line 3857

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#identity_configGoogle::Apis::DataprocV1::IdentityConfig

Identity related configuration, including service account based secure multi- tenancy user mappings. Corresponds to the JSON property identityConfig



3850
3851
3852
# File 'lib/google/apis/dataproc_v1/classes.rb', line 3850

def identity_config
  @identity_config
end

#kerberos_configGoogle::Apis::DataprocV1::KerberosConfig

Specifies Kerberos related configuration. Corresponds to the JSON property kerberosConfig



3855
3856
3857
# File 'lib/google/apis/dataproc_v1/classes.rb', line 3855

def kerberos_config
  @kerberos_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3862
3863
3864
3865
# File 'lib/google/apis/dataproc_v1/classes.rb', line 3862

def update!(**args)
  @identity_config = args[:identity_config] if args.key?(:identity_config)
  @kerberos_config = args[:kerberos_config] if args.key?(:kerberos_config)
end