Class: KubeDSL::DSL::Networking::V1::HTTPIngressPath
Instance Method Summary
collapse
#initialize, #to_resource
extended
extended
Instance Method Details
#kind_sym ⇒ Object
24
25
26
|
# File 'lib/kube-dsl/dsl/networking/v1/http_ingress_path.rb', line 24
def kind_sym
:http_ingress_path
end
|
#serialize ⇒ Object
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
|