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

Inherits:
Object
  • Object
show all
Includes:
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>

in CIDR notation.

Returns:

  • (Array<String>)

    Gets address prefixes of the effective routes



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

def address_prefix
  @address_prefix
end

#nameString

optional.

Returns:

  • (String)

    Gets the name of the user defined route. This is



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

def name
  @name
end

#next_hop_ip_addressArray<String>

effective route

Returns:

  • (Array<String>)

    Gets the IP address of the next hop of the



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

def next_hop_ip_address
  @next_hop_ip_address
end

#next_hop_typeRouteNextHopType

packet should be sent to. Possible values include: ‘VirtualNetworkGateway’, ‘VnetLocal’, ‘Internet’, ‘VirtualAppliance’, ‘None’

Returns:



39
40
41
# File 'lib/generated/azure_mgmt_network/models/effective_route.rb', line 39

def next_hop_type
  @next_hop_type
end

#sourceEffectiveRouteSource

values include: ‘Unknown’, ‘User’, ‘VirtualNetworkGateway’, ‘Default’

Returns:



21
22
23
# File 'lib/generated/azure_mgmt_network/models/effective_route.rb', line 21

def source
  @source
end

#stateEffectiveRouteState

values include: ‘Active’, ‘Invalid’

Returns:



25
26
27
# File 'lib/generated/azure_mgmt_network/models/effective_route.rb', line 25

def state
  @state
end

Class Method Details

.mapperObject

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



46
47
48
49
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
# File 'lib/generated/azure_mgmt_network/models/effective_route.rb', line 46

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