Class: Azure::ARM::Network::Models::ExpressRouteCircuitSku

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/azure_mgmt_network/models/express_route_circuit_sku.rb

Overview

Contains sku in an ExpressRouteCircuit

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#familyExpressRouteCircuitSkuFamily

Possible values include: ‘UnlimitedData’, ‘MeteredData’

Returns:



24
25
26
# File 'lib/azure_mgmt_network/models/express_route_circuit_sku.rb', line 24

def family
  @family
end

#nameString

Returns Gets or sets name of the sku.

Returns:

  • (String)

    Gets or sets name of the sku.



16
17
18
# File 'lib/azure_mgmt_network/models/express_route_circuit_sku.rb', line 16

def name
  @name
end

#tierExpressRouteCircuitSkuTier

Possible values include: ‘Standard’, ‘Premium’

Returns:



20
21
22
# File 'lib/azure_mgmt_network/models/express_route_circuit_sku.rb', line 20

def tier
  @tier
end

Class Method Details

.deserialize_object(object) ⇒ ExpressRouteCircuitSku

Deserializes given Ruby Hash into Model object.

Parameters:

  • object (Hash)

    Ruby Hash object to deserialize.

Returns:



58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# File 'lib/azure_mgmt_network/models/express_route_circuit_sku.rb', line 58

def self.deserialize_object(object)
  return if object.nil?
  output_object = ExpressRouteCircuitSku.new

  deserialized_property = object['name']
  output_object.name = deserialized_property

  deserialized_property = object['tier']
  if (!deserialized_property.nil? && !deserialized_property.empty?)
    enum_is_valid = ExpressRouteCircuitSkuTier.constants.any? { |e| ExpressRouteCircuitSkuTier.const_get(e).to_s.downcase == deserialized_property.downcase }
    warn 'Enum ExpressRouteCircuitSkuTier does not contain ' + deserialized_property.downcase + ', but was received from the server.' unless enum_is_valid
  end
  output_object.tier = deserialized_property

  deserialized_property = object['family']
  if (!deserialized_property.nil? && !deserialized_property.empty?)
    enum_is_valid = ExpressRouteCircuitSkuFamily.constants.any? { |e| ExpressRouteCircuitSkuFamily.const_get(e).to_s.downcase == deserialized_property.downcase }
    warn 'Enum ExpressRouteCircuitSkuFamily does not contain ' + deserialized_property.downcase + ', but was received from the server.' unless enum_is_valid
  end
  output_object.family = deserialized_property

  output_object
end

.serialize_object(object) ⇒ Hash

Serializes given Model object into Ruby Hash.

Parameters:

  • object

    Model object to serialize.

Returns:

  • (Hash)

    Serialized object in form of Ruby Hash.



37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# File 'lib/azure_mgmt_network/models/express_route_circuit_sku.rb', line 37

def self.serialize_object(object)
  object.validate
  output_object = {}

  serialized_property = object.name
  output_object['name'] = serialized_property unless serialized_property.nil?

  serialized_property = object.tier
  output_object['tier'] = serialized_property unless serialized_property.nil?

  serialized_property = object.family
  output_object['family'] = serialized_property unless serialized_property.nil?

  output_object
end

Instance Method Details

#validateObject

Validate the object. Throws ValidationError if validation fails.



29
30
# File 'lib/azure_mgmt_network/models/express_route_circuit_sku.rb', line 29

def validate
end