Class: Azure::ARM::Network::Models::SubnetListResult
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::SubnetListResult
- Includes:
- MsRestAzure
- Defined in:
- lib/azure_mgmt_network/models/subnet_list_result.rb
Overview
Response for ListSubnets Api service callRetrieves all subnet that belongs to a virtual network
Instance Attribute Summary collapse
-
#next_link ⇒ String
Gets the URL to get the next set of results.
-
#value ⇒ Array<Subnet>
Gets the subnets in a virtual network.
Class Method Summary collapse
-
.deserialize_object(object) ⇒ SubnetListResult
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
#next_link ⇒ String
20 21 22 |
# File 'lib/azure_mgmt_network/models/subnet_list_result.rb', line 20 def next_link @next_link end |
#value ⇒ Array<Subnet>
17 18 19 |
# File 'lib/azure_mgmt_network/models/subnet_list_result.rb', line 17 def value @value end |
Class Method Details
.deserialize_object(object) ⇒ SubnetListResult
Deserializes given Ruby Hash into Model object.
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/subnet_list_result.rb', line 62 def self.deserialize_object(object) return if object.nil? output_object = SubnetListResult.new deserialized_property = object['value'] unless deserialized_property.nil? deserializedArray = []; deserialized_property.each do |element1| unless element1.nil? element1 = Subnet.deserialize_object(element1) end deserializedArray.push(element1); end deserialized_property = deserializedArray; end output_object.value = deserialized_property deserialized_property = object['nextLink'] output_object.next_link = deserialized_property output_object.validate output_object end |
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 |
# File 'lib/azure_mgmt_network/models/subnet_list_result.rb', line 34 def self.serialize_object(object) object.validate output_object = {} serialized_property = object.value unless serialized_property.nil? serializedArray = [] serialized_property.each do |element| unless element.nil? element = Subnet.serialize_object(element) end serializedArray.push(element) end serialized_property = serializedArray end output_object['value'] = serialized_property unless serialized_property.nil? serialized_property = object.next_link output_object['nextLink'] = serialized_property unless serialized_property.nil? output_object end |
Instance Method Details
#validate ⇒ Object
Validate the object. Throws ValidationError if validation fails.
25 26 27 |
# File 'lib/azure_mgmt_network/models/subnet_list_result.rb', line 25 def validate @value.each{ |e| e.validate if e.respond_to?(:validate) } unless @value.nil? end |