Class: Azure::ARM::Network::Models::VirtualNetworkGatewaySku
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::VirtualNetworkGatewaySku
- Includes:
- MsRestAzure
- Defined in:
- lib/azure_mgmt_network/models/virtual_network_gateway_sku.rb
Overview
VirtualNetworkGatewaySku details
Instance Attribute Summary collapse
-
#capacity ⇒ Integer
The capacity.
-
#name ⇒ VirtualNetworkGatewaySkuName
-Basic/HighPerformance/Standard.
-
#tier ⇒ VirtualNetworkGatewaySkuTier
-Basic/HighPerformance/Standard.
Class Method Summary collapse
-
.deserialize_object(object) ⇒ VirtualNetworkGatewaySku
Deserializes given Ruby Hash into Model object.
-
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
Instance Method Summary collapse
-
#validate ⇒ Object
Validate the object.
Instance Attribute Details
#capacity ⇒ Integer
26 27 28 |
# File 'lib/azure_mgmt_network/models/virtual_network_gateway_sku.rb', line 26 def capacity @capacity end |
#name ⇒ VirtualNetworkGatewaySkuName
-Basic/HighPerformance/Standard. Possible values include: ‘Basic’, ‘HighPerformance’, ‘Standard’
18 19 20 |
# File 'lib/azure_mgmt_network/models/virtual_network_gateway_sku.rb', line 18 def name @name end |
#tier ⇒ VirtualNetworkGatewaySkuTier
-Basic/HighPerformance/Standard. Possible values include: ‘Basic’, ‘HighPerformance’, ‘Standard’
23 24 25 |
# File 'lib/azure_mgmt_network/models/virtual_network_gateway_sku.rb', line 23 def tier @tier end |
Class Method Details
.deserialize_object(object) ⇒ VirtualNetworkGatewaySku
Deserializes given Ruby Hash into Model object.
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
# File 'lib/azure_mgmt_network/models/virtual_network_gateway_sku.rb', line 60 def self.deserialize_object(object) return if object.nil? output_object = VirtualNetworkGatewaySku.new deserialized_property = object['name'] if (!deserialized_property.nil? && !deserialized_property.empty?) enum_is_valid = VirtualNetworkGatewaySkuName.constants.any? { |e| VirtualNetworkGatewaySkuName.const_get(e).to_s.downcase == deserialized_property.downcase } warn 'Enum VirtualNetworkGatewaySkuName does not contain ' + deserialized_property.downcase + ', but was received from the server.' unless enum_is_valid end output_object.name = deserialized_property deserialized_property = object['tier'] if (!deserialized_property.nil? && !deserialized_property.empty?) enum_is_valid = VirtualNetworkGatewaySkuTier.constants.any? { |e| VirtualNetworkGatewaySkuTier.const_get(e).to_s.downcase == deserialized_property.downcase } warn 'Enum VirtualNetworkGatewaySkuTier 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['capacity'] deserialized_property = Integer(deserialized_property) unless deserialized_property.to_s.empty? output_object.capacity = deserialized_property output_object end |
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 |
# File 'lib/azure_mgmt_network/models/virtual_network_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
#validate ⇒ Object
Validate the object. Throws ValidationError if validation fails.
31 32 |
# File 'lib/azure_mgmt_network/models/virtual_network_gateway_sku.rb', line 31 def validate end |