Class: Azure::ARM::Network::Models::ApplicationGatewaySku

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/azure_mgmt_network/Models/application_gateway_sku.rb

Overview

SKU of application gateway

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#capacityInteger

application gateway

Returns:

  • (Integer)

    Gets or sets capacity (instance count) of



26
27
28
# File 'lib/azure_mgmt_network/Models/application_gateway_sku.rb', line 26

def capacity
  @capacity
end

#nameApplicationGatewaySkuName

gateway SKU. Possible values for this property include: ‘Standard_Small’, ‘Standard_Medium’, ‘Standard_Large’.

Returns:



18
19
20
# File 'lib/azure_mgmt_network/Models/application_gateway_sku.rb', line 18

def name
  @name
end

#tierApplicationGatewayTier

gateway. Possible values for this property include: ‘Standard’.

Returns:



22
23
24
# File 'lib/azure_mgmt_network/Models/application_gateway_sku.rb', line 22

def tier
  @tier
end

Class Method Details

.deserialize_object(object) ⇒ ApplicationGatewaySku

Deserializes given Ruby Hash into Model object.

Parameters:

  • object (Hash)

    Ruby Hash object to deserialize.

Returns:



60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# File 'lib/azure_mgmt_network/Models/application_gateway_sku.rb', line 60

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

  deserialized_property = object['name']
  if (!deserialized_property.nil? && !deserialized_property.empty?)
    enum_is_valid = ApplicationGatewaySkuName.constants.any? { |e| ApplicationGatewaySkuName.const_get(e).to_s.downcase == deserialized_property.downcase }
    fail MsRest::DeserializationError.new('Error occured while deserializing the enum', nil, nil, nil) unless enum_is_valid
  end
  output_object.name = deserialized_property

  deserialized_property = object['tier']
  if (!deserialized_property.nil? && !deserialized_property.empty?)
    enum_is_valid = ApplicationGatewayTier.constants.any? { |e| ApplicationGatewayTier.const_get(e).to_s.downcase == deserialized_property.downcase }
    fail MsRest::DeserializationError.new('Error occured while deserializing the enum', nil, nil, nil) unless enum_is_valid
  end
  output_object.tier = deserialized_property

  deserialized_property = object['capacity']
  deserialized_property = Integer(deserialized_property) unless deserialized_property.to_s.empty?
  output_object.capacity = deserialized_property

  output_object.validate

  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.



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/azure_mgmt_network/Models/application_gateway_sku.rb', line 39

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.capacity
  output_object['capacity'] = serialized_property unless serialized_property.nil?

  output_object
end

Instance Method Details

#validateObject

Validate the object. Throws ValidationError if validation fails.



31
32
# File 'lib/azure_mgmt_network/Models/application_gateway_sku.rb', line 31

def validate
end