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

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

Overview

Security related configuration, including Kerberos.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SecurityConfig

Returns a new instance of SecurityConfig



2405
2406
2407
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2405

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

Instance Attribute Details

#kerberos_configGoogle::Apis::DataprocV1::KerberosConfig

Specifies Kerberos related configuration. Corresponds to the JSON property kerberosConfig



2403
2404
2405
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2403

def kerberos_config
  @kerberos_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2410
2411
2412
# File 'generated/google/apis/dataproc_v1/classes.rb', line 2410

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