Class: Azure::Network::Mgmt::V2019_06_01::Models::PeerExpressRouteCircuitConnectionListResult
- Inherits:
-
Object
- Object
- Azure::Network::Mgmt::V2019_06_01::Models::PeerExpressRouteCircuitConnectionListResult
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/2019-06-01/generated/azure_mgmt_network/models/peer_express_route_circuit_connection_list_result.rb
Overview
Response for ListPeeredConnections API service call retrieves all global reach peer circuit connections that belongs to a Private Peering for an ExpressRouteCircuit.
Instance Attribute Summary collapse
-
#next_link ⇒ String
The URL to get the next set of results.
-
#next_method ⇒ Object
return [Proc] with next page method call.
-
#value ⇒ Array<PeerExpressRouteCircuitConnection>
peer circuit connection associated with Private Peering in an ExpressRoute Circuit.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for PeerExpressRouteCircuitConnectionListResult class as Ruby Hash.
Instance Method Summary collapse
-
#get_all_items ⇒ Array<PeerExpressRouteCircuitConnection>
Gets the rest of the items for the request, enabling auto-pagination.
-
#get_next_page ⇒ PeerExpressRouteCircuitConnectionListResult
Gets the next page of results.
Instance Attribute Details
#next_link ⇒ String
Returns The URL to get the next set of results.
24 25 26 |
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/peer_express_route_circuit_connection_list_result.rb', line 24 def next_link @next_link end |
#next_method ⇒ Object
return [Proc] with next page method call.
27 28 29 |
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/peer_express_route_circuit_connection_list_result.rb', line 27 def next_method @next_method end |
#value ⇒ Array<PeerExpressRouteCircuitConnection>
peer circuit connection associated with Private Peering in an ExpressRoute Circuit.
21 22 23 |
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/peer_express_route_circuit_connection_list_result.rb', line 21 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for PeerExpressRouteCircuitConnectionListResult class as Ruby Hash. This will be used for serialization/deserialization.
64 65 66 67 68 69 70 71 72 73 74 75 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 |
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/peer_express_route_circuit_connection_list_result.rb', line 64 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PeerExpressRouteCircuitConnectionListResult', type: { name: 'Composite', class_name: 'PeerExpressRouteCircuitConnectionListResult', model_properties: { value: { client_side_validation: true, required: false, serialized_name: 'value', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'PeerExpressRouteCircuitConnectionElementType', type: { name: 'Composite', class_name: 'PeerExpressRouteCircuitConnection' } } } }, next_link: { client_side_validation: true, required: false, serialized_name: 'nextLink', type: { name: 'String' } } } } } end |
Instance Method Details
#get_all_items ⇒ Array<PeerExpressRouteCircuitConnection>
Gets the rest of the items for the request, enabling auto-pagination.
34 35 36 37 38 39 40 41 42 |
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/peer_express_route_circuit_connection_list_result.rb', line 34 def get_all_items items = @value page = self while page.next_link != nil && !page.next_link.strip.empty? do page = page.get_next_page items.concat(page.value) end items end |
#get_next_page ⇒ PeerExpressRouteCircuitConnectionListResult
Gets the next page of results.
content.
50 51 52 53 54 55 56 57 |
# File 'lib/2019-06-01/generated/azure_mgmt_network/models/peer_express_route_circuit_connection_list_result.rb', line 50 def get_next_page response = @next_method.call(@next_link).value! unless @next_method.nil? unless response.nil? @next_link = response.body.next_link @value = response.body.value self end end |