Class: OCI::Self::Models::BillingDetails
- Inherits:
-
Object
- Object
- OCI::Self::Models::BillingDetails
- Defined in:
- lib/oci/self/models/billing_details.rb
Overview
Sku details for billing subscription.
Constant Summary collapse
- METRIC_TYPE_ENUM =
[ METRIC_TYPE_OCPU_HOURS = 'OCPU_HOURS'.freeze, METRIC_TYPE_INSTANCE_HOURS = 'INSTANCE_HOURS'.freeze, METRIC_TYPE_CORE_HOURS = 'CORE_HOURS'.freeze, METRIC_TYPE_UNKNOWN_ENUM_VALUE = 'UNKNOWN_ENUM_VALUE'.freeze ].freeze
Instance Attribute Summary collapse
-
#has_gov_sku ⇒ BOOLEAN
Whether this sku is assign to gov product.
-
#meters ⇒ Array<OCI::Self::Models::Meter>
[Required] The meters associated with sku.
-
#metric_type ⇒ String
[Required] The part's metric.
-
#rate_allocation ⇒ Float
[Required] Tha rate of this sku meter.
-
#sku ⇒ String
[Required] Sku for service.
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 = {}) ⇒ BillingDetails
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 = {}) ⇒ BillingDetails
Initializes the object
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 |
# File 'lib/oci/self/models/billing_details.rb', line 76 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.sku = attributes[:'sku'] if attributes[:'sku'] self.metric_type = attributes[:'metricType'] if attributes[:'metricType'] raise 'You cannot provide both :metricType and :metric_type' if attributes.key?(:'metricType') && attributes.key?(:'metric_type') self.metric_type = attributes[:'metric_type'] if attributes[:'metric_type'] self.rate_allocation = attributes[:'rateAllocation'] if attributes[:'rateAllocation'] raise 'You cannot provide both :rateAllocation and :rate_allocation' if attributes.key?(:'rateAllocation') && attributes.key?(:'rate_allocation') self.rate_allocation = attributes[:'rate_allocation'] if attributes[:'rate_allocation'] self.has_gov_sku = attributes[:'hasGovSku'] unless attributes[:'hasGovSku'].nil? raise 'You cannot provide both :hasGovSku and :has_gov_sku' if attributes.key?(:'hasGovSku') && attributes.key?(:'has_gov_sku') self.has_gov_sku = attributes[:'has_gov_sku'] unless attributes[:'has_gov_sku'].nil? self.meters = attributes[:'meters'] if attributes[:'meters'] end |
Instance Attribute Details
#has_gov_sku ⇒ BOOLEAN
Whether this sku is assign to gov product.
33 34 35 |
# File 'lib/oci/self/models/billing_details.rb', line 33 def has_gov_sku @has_gov_sku end |
#meters ⇒ Array<OCI::Self::Models::Meter>
[Required] The meters associated with sku.
37 38 39 |
# File 'lib/oci/self/models/billing_details.rb', line 37 def meters @meters end |
#metric_type ⇒ String
[Required] The part's metric.
25 26 27 |
# File 'lib/oci/self/models/billing_details.rb', line 25 def metric_type @metric_type end |
#rate_allocation ⇒ Float
[Required] Tha rate of this sku meter.
29 30 31 |
# File 'lib/oci/self/models/billing_details.rb', line 29 def rate_allocation @rate_allocation end |
#sku ⇒ String
[Required] Sku for service.
21 22 23 |
# File 'lib/oci/self/models/billing_details.rb', line 21 def sku @sku end |
Class Method Details
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
40 41 42 43 44 45 46 47 48 49 50 |
# File 'lib/oci/self/models/billing_details.rb', line 40 def self.attribute_map { # rubocop:disable Style/SymbolLiteral 'sku': :'sku', 'metric_type': :'metricType', 'rate_allocation': :'rateAllocation', 'has_gov_sku': :'hasGovSku', 'meters': :'meters' # rubocop:enable Style/SymbolLiteral } end |
.swagger_types ⇒ Object
Attribute type mapping.
53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/oci/self/models/billing_details.rb', line 53 def self.swagger_types { # rubocop:disable Style/SymbolLiteral 'sku': :'String', 'metric_type': :'String', 'rate_allocation': :'Float', 'has_gov_sku': :'BOOLEAN', 'meters': :'Array<OCI::Self::Models::Meter>' # rubocop:enable Style/SymbolLiteral } end |
Instance Method Details
#==(other) ⇒ Object
Checks equality by comparing each attribute.
125 126 127 128 129 130 131 132 133 134 |
# File 'lib/oci/self/models/billing_details.rb', line 125 def ==(other) return true if equal?(other) self.class == other.class && sku == other.sku && metric_type == other.metric_type && rate_allocation == other.rate_allocation && has_gov_sku == other.has_gov_sku && meters == other.meters end |
#build_from_hash(attributes) ⇒ Object
Builds the object from hash
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 |
# File 'lib/oci/self/models/billing_details.rb', line 159 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
139 140 141 |
# File 'lib/oci/self/models/billing_details.rb', line 139 def eql?(other) self == other end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
148 149 150 |
# File 'lib/oci/self/models/billing_details.rb', line 148 def hash [sku, metric_type, rate_allocation, has_gov_sku, meters].hash end |
#to_hash ⇒ Hash
Returns the object in the form of hash
192 193 194 195 196 197 198 199 200 201 |
# File 'lib/oci/self/models/billing_details.rb', line 192 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
186 187 188 |
# File 'lib/oci/self/models/billing_details.rb', line 186 def to_s to_hash.to_s end |