Class: KubeDSL::DSL::Networking::V1::HTTPIngressPath

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

Instance Method Summary collapse

Methods inherited from KubeDSL::DSLObject

#initialize, #to_resource

Methods included from ValueFields

extended

Methods included from Validations

extended

Constructor Details

This class inherits a constructor from KubeDSL::DSLObject

Instance Method Details

#kind_symObject



24
25
26
# File 'lib/kube-dsl/dsl/networking/v1/http_ingress_path.rb', line 24

def kind_sym
  :http_ingress_path
end

#serializeObject



16
17
18
19
20
21
22
# File 'lib/kube-dsl/dsl/networking/v1/http_ingress_path.rb', line 16

def serialize
  {}.tap do |result|
    result[:backend] = backend.serialize
    result[:path] = path
    result[:pathType] = path_type
  end
end