Class: KubeDSL::DSL::V1::WindowsSecurityContextOptions
Instance Method Summary
collapse
#initialize, #to_resource
extended
extended
Instance Method Details
#kind_sym ⇒ Object
26
27
28
|
# File 'lib/kube-dsl/dsl/v1/windows_security_context_options.rb', line 26
def kind_sym
:windows_security_context_options
end
|
#serialize ⇒ Object
17
18
19
20
21
22
23
24
|
# File 'lib/kube-dsl/dsl/v1/windows_security_context_options.rb', line 17
def serialize
{}.tap do |result|
result[:gmsaCredentialSpec] = gmsa_credential_spec
result[:gmsaCredentialSpecName] = gmsa_credential_spec_name
result[:hostProcess] = host_process
result[:runAsUserName] = run_as_user_name
end
end
|