Class: Google::Apis::ContainerV1::VerticalPodAutoscaling

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/container_v1/classes.rb,
generated/google/apis/container_v1/representations.rb,
generated/google/apis/container_v1/representations.rb

Overview

VerticalPodAutoscaling contains global, per-cluster information required by Vertical Pod Autoscaler to automatically adjust the resources of pods controlled by it.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ VerticalPodAutoscaling

Returns a new instance of VerticalPodAutoscaling.



4041
4042
4043
# File 'generated/google/apis/container_v1/classes.rb', line 4041

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#enabledBoolean Also known as: enabled?

Enables vertical pod autoscaling. Corresponds to the JSON property enabled

Returns:

  • (Boolean)


4038
4039
4040
# File 'generated/google/apis/container_v1/classes.rb', line 4038

def enabled
  @enabled
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4046
4047
4048
# File 'generated/google/apis/container_v1/classes.rb', line 4046

def update!(**args)
  @enabled = args[:enabled] if args.key?(:enabled)
end