Class: KubeDSL::DSL::V1::GCEPersistentDiskVolumeSource
Instance Method Summary
collapse
#initialize, #to_resource
extended
extended
Instance Method Details
#kind_sym ⇒ Object
26
27
28
|
# File 'lib/kube-dsl/dsl/v1/gce_persistent_disk_volume_source.rb', line 26
def kind_sym
:gce_persistent_disk_volume_source
end
|
#serialize ⇒ Object
17
18
19
20
21
22
23
24
|
# File 'lib/kube-dsl/dsl/v1/gce_persistent_disk_volume_source.rb', line 17
def serialize
{}.tap do |result|
result[:fsType] = fs_type
result[:partition] = partition
result[:pdName] = pd_name
result[:readOnly] = read_only
end
end
|