Class: KubeDSL::DSL::V1::ScaleIOPersistentVolumeSource

Inherits:
KubeDSL::DSLObject show all
Defined in:
lib/kube-dsl/dsl/v1/scale_io_persistent_volume_source.rb

Instance Method Summary collapse

Methods inherited from KubeDSL::DSLObject

#initialize, #to_resource

Methods included from ValueFields

#array_field, #object_field, #value_field, #value_fields

Constructor Details

This class inherits a constructor from KubeDSL::DSLObject

Instance Method Details

#kind_symObject



21
22
23
# File 'lib/kube-dsl/dsl/v1/scale_io_persistent_volume_source.rb', line 21

def kind_sym
  :scale_io_persistent_volume_source
end

#serializeObject



6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/kube-dsl/dsl/v1/scale_io_persistent_volume_source.rb', line 6

def serialize
  {}.tap do |result|
    result[:fsType] = fs_type
    result[:gateway] = gateway
    result[:protectionDomain] = protection_domain
    result[:readOnly] = read_only
    result[:sslEnabled] = ssl_enabled
    result[:storageMode] = storage_mode
    result[:storagePool] = storage_pool
    result[:system] = system
    result[:volumeName] = volume_name
    result[:secretRef] = secret_ref.serialize
  end
end