Class: KubeDSL::DSL::Autoscaling::V1::HorizontalPodAutoscaler

Inherits:
KubeDSL::DSLObject show all
Defined in:
lib/kube-dsl/dsl/autoscaling/v1/horizontal_pod_autoscaler.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



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

def kind_sym
  :horizontal_pod_autoscaler
end

#serializeObject



11
12
13
14
15
16
17
18
19
# File 'lib/kube-dsl/dsl/autoscaling/v1/horizontal_pod_autoscaler.rb', line 11

def serialize
  {}.tap do |result|
    result[:apiVersion] = "autoscaling/v1"
    result[:kind] = "HorizontalPodAutoscaler"
    result[:metadata] = .serialize
    result[:spec] = spec.serialize
    result[:status] = status.serialize
  end
end