Class: OCI::Self::Models::BillingDetails

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ BillingDetails

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash

Options Hash (attributes):

  • :sku (String)

    The value to assign to the #sku property

  • :metric_type (String)

    The value to assign to the #metric_type property

  • :rate_allocation (Float)

    The value to assign to the #rate_allocation property

  • :has_gov_sku (BOOLEAN)

    The value to assign to the #has_gov_sku property

  • :meters (Array<OCI::Self::Models::Meter>)

    The value to assign to the #meters property



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_skuBOOLEAN

Whether this sku is assign to gov product.

Returns:

  • (BOOLEAN)


33
34
35
# File 'lib/oci/self/models/billing_details.rb', line 33

def has_gov_sku
  @has_gov_sku
end

#metersArray<OCI::Self::Models::Meter>

[Required] The meters associated with sku.

Returns:



37
38
39
# File 'lib/oci/self/models/billing_details.rb', line 37

def meters
  @meters
end

#metric_typeString

[Required] The part's metric.

Returns:

  • (String)


25
26
27
# File 'lib/oci/self/models/billing_details.rb', line 25

def metric_type
  @metric_type
end

#rate_allocationFloat

[Required] Tha rate of this sku meter.

Returns:

  • (Float)


29
30
31
# File 'lib/oci/self/models/billing_details.rb', line 29

def rate_allocation
  @rate_allocation
end

#skuString

[Required] Sku for service.

Returns:

  • (String)


21
22
23
# File 'lib/oci/self/models/billing_details.rb', line 21

def sku
  @sku
end

Class Method Details

.attribute_mapObject

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_typesObject

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.

Parameters:

  • other (Object)

    the other object to be compared



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

Parameters:

  • attributes (Hash)

    Model attributes in the form of hash

Returns:

  • (Object)

    Returns the model itself



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

Parameters:

  • other (Object)

    the other object to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


139
140
141
# File 'lib/oci/self/models/billing_details.rb', line 139

def eql?(other)
  self == other
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



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_hashHash

Returns the object in the form of hash

Returns:

  • (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_sString

Returns the string representation of the object

Returns:

  • (String)

    String presentation of the object



186
187
188
# File 'lib/oci/self/models/billing_details.rb', line 186

def to_s
  to_hash.to_s
end