Class: OCI::DataScience::Models::ManagedComputeClusterWorkloadScalePolicy
- Inherits:
-
Object
- Object
- OCI::DataScience::Models::ManagedComputeClusterWorkloadScalePolicy
- Defined in:
- lib/oci/data_science/models/managed_compute_cluster_workload_scale_policy.rb
Overview
Workload scaling policy configuration for workloads on managed compute cluster type compute target
Instance Attribute Summary collapse
-
#cool_down_in_seconds ⇒ Integer
This value is the duration of time window used to restrict the flapping of instance count when the metrics used for scaling keep fluctuating.
-
#instance_count_adjustment ⇒ Integer
The value is used for adjusting the count of instances by.
-
#pending_duration ⇒ String
The period of time that the condition defined in the alarm must persist before the alarm state changes from "OK" to "FIRING" or vice versa.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(other) ⇒ Object
Checks equality by comparing each attribute.
-
#build_from_hash(attributes) ⇒ Object
Builds the object from hash.
- #eql?(other) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ ManagedComputeClusterWorkloadScalePolicy
constructor
Initializes the object.
-
#to_hash ⇒ Hash
Returns the object in the form of hash.
-
#to_s ⇒ String
Returns the string representation of the object.
Constructor Details
#initialize(attributes = {}) ⇒ ManagedComputeClusterWorkloadScalePolicy
Initializes the object
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/oci/data_science/models/managed_compute_cluster_workload_scale_policy.rb', line 61 def initialize(attributes = {}) return unless attributes.is_a?(Hash) # convert string to symbol for hash key attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } self.pending_duration = attributes[:'pendingDuration'] if attributes[:'pendingDuration'] self.pending_duration = "PT3M" if pending_duration.nil? && !attributes.key?(:'pendingDuration') # rubocop:disable Style/StringLiterals raise 'You cannot provide both :pendingDuration and :pending_duration' if attributes.key?(:'pendingDuration') && attributes.key?(:'pending_duration') self.pending_duration = attributes[:'pending_duration'] if attributes[:'pending_duration'] self.pending_duration = "PT3M" if pending_duration.nil? && !attributes.key?(:'pendingDuration') && !attributes.key?(:'pending_duration') # rubocop:disable Style/StringLiterals self.instance_count_adjustment = attributes[:'instanceCountAdjustment'] if attributes[:'instanceCountAdjustment'] raise 'You cannot provide both :instanceCountAdjustment and :instance_count_adjustment' if attributes.key?(:'instanceCountAdjustment') && attributes.key?(:'instance_count_adjustment') self.instance_count_adjustment = attributes[:'instance_count_adjustment'] if attributes[:'instance_count_adjustment'] self.cool_down_in_seconds = attributes[:'coolDownInSeconds'] if attributes[:'coolDownInSeconds'] raise 'You cannot provide both :coolDownInSeconds and :cool_down_in_seconds' if attributes.key?(:'coolDownInSeconds') && attributes.key?(:'cool_down_in_seconds') self.cool_down_in_seconds = attributes[:'cool_down_in_seconds'] if attributes[:'cool_down_in_seconds'] end |
Instance Attribute Details
#cool_down_in_seconds ⇒ Integer
This value is the duration of time window used to restrict the flapping of instance count when the metrics used for scaling keep fluctuating. This window is used to infer a previous desired state and avoid unwanted changes to workload scale. Default value is 300 seconds.
28 29 30 |
# File 'lib/oci/data_science/models/managed_compute_cluster_workload_scale_policy.rb', line 28 def cool_down_in_seconds @cool_down_in_seconds end |
#instance_count_adjustment ⇒ Integer
The value is used for adjusting the count of instances by.
22 23 24 |
# File 'lib/oci/data_science/models/managed_compute_cluster_workload_scale_policy.rb', line 22 def instance_count_adjustment @instance_count_adjustment end |
#pending_duration ⇒ String
The period of time that the condition defined in the alarm must persist before the alarm state changes from "OK" to "FIRING" or vice versa. For example, a value of 5 minutes means that the alarm must persist in breaching the condition for five minutes before the alarm updates its state to "FIRING"; likewise, the alarm must persist in not breaching the condition for five minutes before the alarm updates its state to "OK." The duration is specified as a string in ISO 8601 format (PT10M for ten minutes). Minimum: PT1M. Maximum: PT30M. Default: PT3M.
18 19 20 |
# File 'lib/oci/data_science/models/managed_compute_cluster_workload_scale_policy.rb', line 18 def pending_duration @pending_duration end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
31 32 33 34 35 36 37 38 39 |
# File 'lib/oci/data_science/models/managed_compute_cluster_workload_scale_policy.rb', line 31 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'pending_duration': :'pendingDuration', 'instance_count_adjustment': :'instanceCountAdjustment', 'cool_down_in_seconds': :'coolDownInSeconds' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
42 43 44 45 46 47 48 49 50 |
# File 'lib/oci/data_science/models/managed_compute_cluster_workload_scale_policy.rb', line 42 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'pending_duration': :'String', 'instance_count_adjustment': :'Integer', 'cool_down_in_seconds': :'Integer' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
95 96 97 98 99 100 101 102 |
# File 'lib/oci/data_science/models/managed_compute_cluster_workload_scale_policy.rb', line 95 def ==(other) return true if equal?(other) self.class == other.class && pending_duration == other.pending_duration && instance_count_adjustment == other.instance_count_adjustment && cool_down_in_seconds == other.cool_down_in_seconds end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
# File 'lib/oci/data_science/models/managed_compute_cluster_workload_scale_policy.rb', line 127 def build_from_hash(attributes) return nil unless attributes.is_a?(Hash) self.class.swagger_types.each_pair do |key, type| if type =~ /^Array<(.*)>/i # check to ensure the input is an array given that the the attribute # is documented as an array but the input is not if attributes[self.class.attribute_map[key]].is_a?(Array) public_method("#{key}=").call( attributes[self.class.attribute_map[key]] .map { |v| OCI::Internal::Util.convert_to_type(Regexp.last_match(1), v) } ) end elsif !attributes[self.class.attribute_map[key]].nil? public_method("#{key}=").call( OCI::Internal::Util.convert_to_type(type, attributes[self.class.attribute_map[key]]) ) end # or else data not found in attributes(hash), not an issue as the data can be optional end self end |
#eql?(other) ⇒ Boolean
107 108 109 |
# File 'lib/oci/data_science/models/managed_compute_cluster_workload_scale_policy.rb', line 107 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
116 117 118 |
# File 'lib/oci/data_science/models/managed_compute_cluster_workload_scale_policy.rb', line 116 def hash [pending_duration, instance_count_adjustment, cool_down_in_seconds].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
160 161 162 163 164 165 166 167 168 169 |
# File 'lib/oci/data_science/models/managed_compute_cluster_workload_scale_policy.rb', line 160 def to_hash hash = {} self.class.attribute_map.each_pair do |attr, param| value = public_method(attr).call next if value.nil? && !instance_variable_defined?("@#{attr}") hash[param] = _to_hash(value) end hash end |
#to_s ⇒ String
Returns the string representation of the object
154 155 156 |
# File 'lib/oci/data_science/models/managed_compute_cluster_workload_scale_policy.rb', line 154 def to_s to_hash.to_s end |