Class: Google::Apis::DataprocV1::SecurityConfig
- Inherits:
-
Object
- Object
- Google::Apis::DataprocV1::SecurityConfig
- 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
-
#identity_config ⇒ Google::Apis::DataprocV1::IdentityConfig
Identity related configuration, including service account based secure multi- tenancy user mappings.
-
#kerberos_config ⇒ Google::Apis::DataprocV1::KerberosConfig
Specifies Kerberos related configuration.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SecurityConfig
constructor
A new instance of SecurityConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SecurityConfig
Returns a new instance of SecurityConfig.
4591 4592 4593 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 4591 def initialize(**args) update!(**args) end |
Instance Attribute Details
#identity_config ⇒ Google::Apis::DataprocV1::IdentityConfig
Identity related configuration, including service account based secure multi-
tenancy user mappings.
Corresponds to the JSON property identityConfig
4584 4585 4586 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 4584 def identity_config @identity_config end |
#kerberos_config ⇒ Google::Apis::DataprocV1::KerberosConfig
Specifies Kerberos related configuration.
Corresponds to the JSON property kerberosConfig
4589 4590 4591 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 4589 def kerberos_config @kerberos_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4596 4597 4598 4599 |
# File 'lib/google/apis/dataproc_v1/classes.rb', line 4596 def update!(**args) @identity_config = args[:identity_config] if args.key?(:identity_config) @kerberos_config = args[:kerberos_config] if args.key?(:kerberos_config) end |