Class: Azure::Network::Mgmt::V2016_09_01::Models::Route

Inherits:
SubResource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2016-09-01/generated/azure_mgmt_network/models/route.rb

Overview

Route resource

Instance Attribute Summary collapse

Attributes inherited from SubResource

#id

Class Method Summary collapse

Instance Attribute Details

#address_prefixString

Returns The destination CIDR to which the route applies.

Returns:

  • (String)

    The destination CIDR to which the route applies.



16
17
18
# File 'lib/2016-09-01/generated/azure_mgmt_network/models/route.rb', line 16

def address_prefix
  @address_prefix
end

#etagString

resource is updated.

Returns:

  • (String)

    A unique read-only string that changes whenever the



40
41
42
# File 'lib/2016-09-01/generated/azure_mgmt_network/models/route.rb', line 40

def etag
  @etag
end

#nameString

resource group. This name can be used to access the resource.

Returns:

  • (String)

    The name of the resource that is unique within a



36
37
38
# File 'lib/2016-09-01/generated/azure_mgmt_network/models/route.rb', line 36

def name
  @name
end

#next_hop_ip_addressString

hop values are only allowed in routes where the next hop type is VirtualAppliance.

Returns:

  • (String)

    The IP address packets should be forwarded to. Next



28
29
30
# File 'lib/2016-09-01/generated/azure_mgmt_network/models/route.rb', line 28

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:



23
24
25
# File 'lib/2016-09-01/generated/azure_mgmt_network/models/route.rb', line 23

def next_hop_type
  @next_hop_type
end

#provisioning_stateString

values are: ‘Updating’, ‘Deleting’, and ‘Failed’.

Returns:

  • (String)

    The provisioning state of the resource. Possible



32
33
34
# File 'lib/2016-09-01/generated/azure_mgmt_network/models/route.rb', line 32

def provisioning_state
  @provisioning_state
end

Class Method Details

.mapperObject

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



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
114
115
# File 'lib/2016-09-01/generated/azure_mgmt_network/models/route.rb', line 47

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'Route',
    type: {
      name: 'Composite',
      class_name: 'Route',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        address_prefix: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.addressPrefix',
          type: {
            name: 'String'
          }
        },
        next_hop_type: {
          client_side_validation: true,
          required: true,
          serialized_name: 'properties.nextHopType',
          type: {
            name: 'String'
          }
        },
        next_hop_ip_address: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.nextHopIpAddress',
          type: {
            name: 'String'
          }
        },
        provisioning_state: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.provisioningState',
          type: {
            name: 'String'
          }
        },
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        etag: {
          client_side_validation: true,
          required: false,
          serialized_name: 'etag',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end