Class: OCI::Marketplace::Models::PricingModel
- Inherits:
-
Object
- Object
- OCI::Marketplace::Models::PricingModel
- Defined in:
- lib/oci/marketplace/models/pricing_model.rb
Overview
The model for pricing.
Constant Summary collapse
- TYPE_ENUM =
[ TYPE_FREE = 'FREE'.freeze, TYPE_BYOL = 'BYOL'.freeze, TYPE_PAYGO = 'PAYGO'.freeze, TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- PAY_GO_STRATEGY_ENUM =
[ PAY_GO_STRATEGY_PER_OCPU_LINEAR = 'PER_OCPU_LINEAR'.freeze, PAY_GO_STRATEGY_PER_OCPU_MIN_BILLING = 'PER_OCPU_MIN_BILLING'.freeze, PAY_GO_STRATEGY_PER_INSTANCE = 'PER_INSTANCE'.freeze, PAY_GO_STRATEGY_PER_INSTANCE_MONTHLY_INCLUSIVE = 'PER_INSTANCE_MONTHLY_INCLUSIVE'.freeze, PAY_GO_STRATEGY_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
- CURRENCY_ENUM =
[ CURRENCY_USD = 'USD'.freeze, CURRENCY_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#currency ⇒ String
The currency of the pricing model.
-
#pay_go_strategy ⇒ String
The type of pricing for a PAYGO model, eg PER_OCPU_LINEAR, PER_OCPU_MIN_BILLING, PER_INSTANCE.
-
#rate ⇒ Float
The pricing rate.
-
#type ⇒ String
[Required] The type of the pricing model.
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 = {}) ⇒ PricingModel
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 = {}) ⇒ PricingModel
Initializes the object
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
# File 'lib/oci/marketplace/models/pricing_model.rb', line 81 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.type = attributes[:'type'] if attributes[:'type'] self.pay_go_strategy = attributes[:'payGoStrategy'] if attributes[:'payGoStrategy'] raise 'You cannot provide both :payGoStrategy and :pay_go_strategy' if attributes.key?(:'payGoStrategy') && attributes.key?(:'pay_go_strategy') self.pay_go_strategy = attributes[:'pay_go_strategy'] if attributes[:'pay_go_strategy'] self.currency = attributes[:'currency'] if attributes[:'currency'] self.rate = attributes[:'rate'] if attributes[:'rate'] end |
Instance Attribute Details
#currency ⇒ String
The currency of the pricing model.
41 42 43 |
# File 'lib/oci/marketplace/models/pricing_model.rb', line 41 def currency @currency end |
#pay_go_strategy ⇒ String
The type of pricing for a PAYGO model, eg PER_OCPU_LINEAR, PER_OCPU_MIN_BILLING, PER_INSTANCE. Null if type is not PAYGO.
37 38 39 |
# File 'lib/oci/marketplace/models/pricing_model.rb', line 37 def pay_go_strategy @pay_go_strategy end |
#rate ⇒ Float
The pricing rate.
45 46 47 |
# File 'lib/oci/marketplace/models/pricing_model.rb', line 45 def rate @rate end |
#type ⇒ String
[Required] The type of the pricing model.
33 34 35 |
# File 'lib/oci/marketplace/models/pricing_model.rb', line 33 def type @type end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
48 49 50 51 52 53 54 55 56 57 |
# File 'lib/oci/marketplace/models/pricing_model.rb', line 48 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'type': :'type', 'pay_go_strategy': :'payGoStrategy', 'currency': :'currency', 'rate': :'rate' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
60 61 62 63 64 65 66 67 68 69 |
# File 'lib/oci/marketplace/models/pricing_model.rb', line 60 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'type': :'String', 'pay_go_strategy': :'String', 'currency': :'String', 'rate': :'Float' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
146 147 148 149 150 151 152 153 154 |
# File 'lib/oci/marketplace/models/pricing_model.rb', line 146 def ==(other) return true if equal?(other) self.class == other.class && type == other.type && pay_go_strategy == other.pay_go_strategy && currency == other.currency && rate == other.rate end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 |
# File 'lib/oci/marketplace/models/pricing_model.rb', line 179 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
159 160 161 |
# File 'lib/oci/marketplace/models/pricing_model.rb', line 159 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
168 169 170 |
# File 'lib/oci/marketplace/models/pricing_model.rb', line 168 def hash [type, pay_go_strategy, currency, rate].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
212 213 214 215 216 217 218 219 220 221 |
# File 'lib/oci/marketplace/models/pricing_model.rb', line 212 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
206 207 208 |
# File 'lib/oci/marketplace/models/pricing_model.rb', line 206 def to_s to_hash.to_s end |