Class: KubeDSL::DSL::V1::FlexVolumeSource
Instance Method Summary
collapse
#initialize, #to_resource
extended
extended
Instance Method Details
#kind_sym ⇒ Object
25
26
27
|
# File 'lib/kube-dsl/dsl/v1/flex_volume_source.rb', line 25
def kind_sym
:flex_volume_source
end
|
#serialize ⇒ Object
15
16
17
18
19
20
21
22
23
|
# File 'lib/kube-dsl/dsl/v1/flex_volume_source.rb', line 15
def serialize
{}.tap do |result|
result[:driver] = driver
result[:fsType] = fs_type
result[:options] = options.serialize
result[:readOnly] = read_only
result[:secretRef] = secret_ref.serialize
end
end
|