Class: Azure::Network::Mgmt::V2016_03_30::Models::Route

Inherits:
SubResource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2016-03-30/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

applies.

Returns:

  • (String)

    Gets or sets the destination CIDR to which the route



17
18
19
# File 'lib/2016-03-30/generated/azure_mgmt_network/models/route.rb', line 17

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-03-30/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)

    Gets name of the resource that is unique within a



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

def name
  @name
end

#next_hop_ip_addressString

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

Returns:

  • (String)

    Gets or sets the IP address packets should be



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

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:



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

def next_hop_type
  @next_hop_type
end

#provisioning_stateString

Updating/Deleting/Failed

Returns:

  • (String)

    Gets or sets Provisioning state of the resource



32
33
34
# File 'lib/2016-03-30/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
# File 'lib/2016-03-30/generated/azure_mgmt_network/models/route.rb', line 47

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