Class: OCI::Bds::Models::TimeAndVerticalScalingConfig
- Inherits:
-
Object
- Object
- OCI::Bds::Models::TimeAndVerticalScalingConfig
- Defined in:
- lib/oci/bds/models/time_and_vertical_scaling_config.rb
Overview
Time of day and vertical scaling configuration.
Instance Attribute Summary collapse
-
#target_memory_per_node ⇒ Integer
For nodes with flexible compute shapes, this value is the desired memory in GBs on each node.
-
#target_ocpus_per_node ⇒ Integer
For nodes with flexible compute shapes, this value is the desired OCPUs count on each node.
-
#target_shape ⇒ String
For nodes with fixed compute shapes, this value is the desired shape of each node.
-
#time_recurrence ⇒ String
Day/time recurrence (specified following RFC 5545) at which to trigger autoscaling action.
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 = {}) ⇒ TimeAndVerticalScalingConfig
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 = {}) ⇒ TimeAndVerticalScalingConfig
Initializes the object
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/oci/bds/models/time_and_vertical_scaling_config.rb', line 65 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.time_recurrence = attributes[:'timeRecurrence'] if attributes[:'timeRecurrence'] raise 'You cannot provide both :timeRecurrence and :time_recurrence' if attributes.key?(:'timeRecurrence') && attributes.key?(:'time_recurrence') self.time_recurrence = attributes[:'time_recurrence'] if attributes[:'time_recurrence'] self.target_shape = attributes[:'targetShape'] if attributes[:'targetShape'] raise 'You cannot provide both :targetShape and :target_shape' if attributes.key?(:'targetShape') && attributes.key?(:'target_shape') self.target_shape = attributes[:'target_shape'] if attributes[:'target_shape'] self.target_ocpus_per_node = attributes[:'targetOcpusPerNode'] if attributes[:'targetOcpusPerNode'] raise 'You cannot provide both :targetOcpusPerNode and :target_ocpus_per_node' if attributes.key?(:'targetOcpusPerNode') && attributes.key?(:'target_ocpus_per_node') self.target_ocpus_per_node = attributes[:'target_ocpus_per_node'] if attributes[:'target_ocpus_per_node'] self.target_memory_per_node = attributes[:'targetMemoryPerNode'] if attributes[:'targetMemoryPerNode'] raise 'You cannot provide both :targetMemoryPerNode and :target_memory_per_node' if attributes.key?(:'targetMemoryPerNode') && attributes.key?(:'target_memory_per_node') self.target_memory_per_node = attributes[:'target_memory_per_node'] if attributes[:'target_memory_per_node'] end |
Instance Attribute Details
#target_memory_per_node ⇒ Integer
For nodes with flexible compute shapes, this value is the desired memory in GBs on each node. This value is not used for nodes with fixed compute shapes.
29 30 31 |
# File 'lib/oci/bds/models/time_and_vertical_scaling_config.rb', line 29 def target_memory_per_node @target_memory_per_node end |
#target_ocpus_per_node ⇒ Integer
For nodes with flexible compute shapes, this value is the desired OCPUs count on each node. This value is not used for nodes with fixed compute shapes.
24 25 26 |
# File 'lib/oci/bds/models/time_and_vertical_scaling_config.rb', line 24 def target_ocpus_per_node @target_ocpus_per_node end |
#target_shape ⇒ String
For nodes with fixed compute shapes, this value is the desired shape of each node. This value is not used for nodes with flexible compute shapes.
19 20 21 |
# File 'lib/oci/bds/models/time_and_vertical_scaling_config.rb', line 19 def target_shape @target_shape end |
#time_recurrence ⇒ String
Day/time recurrence (specified following RFC 5545) at which to trigger autoscaling action. Currently only WEEKLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR and BYMINUTE fields. Other fields are not supported.
14 15 16 |
# File 'lib/oci/bds/models/time_and_vertical_scaling_config.rb', line 14 def time_recurrence @time_recurrence end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
32 33 34 35 36 37 38 39 40 41 |
# File 'lib/oci/bds/models/time_and_vertical_scaling_config.rb', line 32 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'time_recurrence': :'timeRecurrence', 'target_shape': :'targetShape', 'target_ocpus_per_node': :'targetOcpusPerNode', 'target_memory_per_node': :'targetMemoryPerNode' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
44 45 46 47 48 49 50 51 52 53 |
# File 'lib/oci/bds/models/time_and_vertical_scaling_config.rb', line 44 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'time_recurrence': :'String', 'target_shape': :'String', 'target_ocpus_per_node': :'Integer', 'target_memory_per_node': :'Integer' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
103 104 105 106 107 108 109 110 111 |
# File 'lib/oci/bds/models/time_and_vertical_scaling_config.rb', line 103 def ==(other) return true if equal?(other) self.class == other.class && time_recurrence == other.time_recurrence && target_shape == other.target_shape && target_ocpus_per_node == other.target_ocpus_per_node && target_memory_per_node == other.target_memory_per_node end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 |
# File 'lib/oci/bds/models/time_and_vertical_scaling_config.rb', line 136 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
116 117 118 |
# File 'lib/oci/bds/models/time_and_vertical_scaling_config.rb', line 116 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
125 126 127 |
# File 'lib/oci/bds/models/time_and_vertical_scaling_config.rb', line 125 def hash [time_recurrence, target_shape, target_ocpus_per_node, target_memory_per_node].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
169 170 171 172 173 174 175 176 177 178 |
# File 'lib/oci/bds/models/time_and_vertical_scaling_config.rb', line 169 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
163 164 165 |
# File 'lib/oci/bds/models/time_and_vertical_scaling_config.rb', line 163 def to_s to_hash.to_s end |