Class: Azure::ARM::Network::Models::ExpressRouteCircuitsRoutesTableSummaryListResult

Inherits:
Object
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/generated/azure_mgmt_network/models/express_route_circuits_routes_table_summary_list_result.rb

Overview

Response for ListRoutesTable associated with the Express Route Circuits API.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

Returns The URL to get the next set of results.

Returns:

  • (String)

    The URL to get the next set of results.



22
23
24
# File 'lib/generated/azure_mgmt_network/models/express_route_circuits_routes_table_summary_list_result.rb', line 22

def next_link
  @next_link
end

#valueArray<ExpressRouteCircuitRoutesTableSummary>

routes table.

Returns:



19
20
21
# File 'lib/generated/azure_mgmt_network/models/express_route_circuits_routes_table_summary_list_result.rb', line 19

def value
  @value
end

Class Method Details

.mapperObject

Mapper for ExpressRouteCircuitsRoutesTableSummaryListResult class as Ruby Hash. This will be used for serialization/deserialization.



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/generated/azure_mgmt_network/models/express_route_circuits_routes_table_summary_list_result.rb', line 30

def self.mapper()
  {
    required: false,
    serialized_name: 'ExpressRouteCircuitsRoutesTableSummaryListResult',
    type: {
      name: 'Composite',
      class_name: 'ExpressRouteCircuitsRoutesTableSummaryListResult',
      model_properties: {
        value: {
          required: false,
          serialized_name: 'value',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'ExpressRouteCircuitRoutesTableSummaryElementType',
                type: {
                  name: 'Composite',
                  class_name: 'ExpressRouteCircuitRoutesTableSummary'
                }
            }
          }
        },
        next_link: {
          required: false,
          serialized_name: 'nextLink',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end