Class: Azure::ARM::Network::Models::EffectiveRoute

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

Overview

Effective Route

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#address_prefixArray<String>

CIDR notation.

Returns:

  • (Array<String>)

    The address prefixes of the effective routes in



32
33
34
# File 'lib/generated/azure_mgmt_network/models/effective_route.rb', line 32

def address_prefix
  @address_prefix
end

#nameString

Returns The name of the user defined route. This is optional.

Returns:

  • (String)

    The name of the user defined route. This is optional.



17
18
19
# File 'lib/generated/azure_mgmt_network/models/effective_route.rb', line 17

def name
  @name
end

#next_hop_ip_addressArray<String>

route.

Returns:

  • (Array<String>)

    The IP address of the next hop of the effective



36
37
38
# File 'lib/generated/azure_mgmt_network/models/effective_route.rb', line 36

def next_hop_ip_address
  @next_hop_ip_address
end

#next_hop_typeRouteNextHopType

sent to. Possible values are: ‘VirtualNetworkGateway’, ‘VnetLocal’, ‘Internet’, ‘VirtualAppliance’, and ‘None’. Possible values include: ‘VirtualNetworkGateway’, ‘VnetLocal’, ‘Internet’, ‘VirtualAppliance’, ‘None’

Returns:



43
44
45
# File 'lib/generated/azure_mgmt_network/models/effective_route.rb', line 43

def next_hop_type
  @next_hop_type
end

#sourceEffectiveRouteSource

are: ‘Unknown’, ‘User’, ‘VirtualNetworkGateway’, and ‘Default’. Possible values include: ‘Unknown’, ‘User’, ‘VirtualNetworkGateway’, ‘Default’

Returns:



23
24
25
# File 'lib/generated/azure_mgmt_network/models/effective_route.rb', line 23

def source
  @source
end

#stateEffectiveRouteState

values are: ‘Active’ and ‘Invalid’. Possible values include: ‘Active’, ‘Invalid’

Returns:



28
29
30
# File 'lib/generated/azure_mgmt_network/models/effective_route.rb', line 28

def state
  @state
end

Class Method Details

.mapperObject

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



50
51
52
53
54
55
56
57
58
59
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# File 'lib/generated/azure_mgmt_network/models/effective_route.rb', line 50

def self.mapper()
  {
    required: false,
    serialized_name: 'EffectiveRoute',
    type: {
      name: 'Composite',
      class_name: 'EffectiveRoute',
      model_properties: {
        name: {
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        source: {
          required: false,
          serialized_name: 'source',
          type: {
            name: 'String'
          }
        },
        state: {
          required: false,
          serialized_name: 'state',
          type: {
            name: 'String'
          }
        },
        address_prefix: {
          required: false,
          serialized_name: 'addressPrefix',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        next_hop_ip_address: {
          required: false,
          serialized_name: 'nextHopIpAddress',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        next_hop_type: {
          required: false,
          serialized_name: 'nextHopType',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end