Class: Azure::ARM::Network::Models::EffectiveRoute
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::EffectiveRoute
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_network/models/effective_route.rb
Overview
Effective Route
Instance Attribute Summary collapse
-
#address_prefix ⇒ Array<String>
CIDR notation.
-
#name ⇒ String
The name of the user defined route.
-
#next_hop_ip_address ⇒ Array<String>
route.
-
#next_hop_type ⇒ RouteNextHopType
sent to.
-
#source ⇒ EffectiveRouteSource
are: ‘Unknown’, ‘User’, ‘VirtualNetworkGateway’, and ‘Default’.
-
#state ⇒ EffectiveRouteState
values are: ‘Active’ and ‘Invalid’.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for EffectiveRoute class as Ruby Hash.
Instance Attribute Details
#address_prefix ⇒ Array<String>
CIDR notation.
32 33 34 |
# File 'lib/generated/azure_mgmt_network/models/effective_route.rb', line 32 def address_prefix @address_prefix end |
#name ⇒ String
Returns 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_address ⇒ Array<String>
route.
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_type ⇒ RouteNextHopType
sent to. Possible values are: ‘VirtualNetworkGateway’, ‘VnetLocal’, ‘Internet’, ‘VirtualAppliance’, and ‘None’. Possible values include: ‘VirtualNetworkGateway’, ‘VnetLocal’, ‘Internet’, ‘VirtualAppliance’, ‘None’
43 44 45 |
# File 'lib/generated/azure_mgmt_network/models/effective_route.rb', line 43 def next_hop_type @next_hop_type end |
#source ⇒ EffectiveRouteSource
are: ‘Unknown’, ‘User’, ‘VirtualNetworkGateway’, and ‘Default’. Possible values include: ‘Unknown’, ‘User’, ‘VirtualNetworkGateway’, ‘Default’
23 24 25 |
# File 'lib/generated/azure_mgmt_network/models/effective_route.rb', line 23 def source @source end |
#state ⇒ EffectiveRouteState
values are: ‘Active’ and ‘Invalid’. Possible values include: ‘Active’, ‘Invalid’
28 29 30 |
# File 'lib/generated/azure_mgmt_network/models/effective_route.rb', line 28 def state @state end |
Class Method Details
.mapper ⇒ Object
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 |