Class: Azure::Network::Mgmt::V2018_07_01::Models::ApplicationGatewayUrlPathMap

Inherits:
SubResource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-07-01/generated/azure_mgmt_network/models/application_gateway_url_path_map.rb

Overview

UrlPathMaps give a url path to the backend mapping information for PathBasedRouting.

Instance Attribute Summary collapse

Attributes inherited from SubResource

#id

Class Method Summary collapse

Instance Attribute Details

#default_backend_address_poolSubResource

map.

Returns:

  • (SubResource)

    Default backend address pool resource of URL path



18
19
20
# File 'lib/2018-07-01/generated/azure_mgmt_network/models/application_gateway_url_path_map.rb', line 18

def default_backend_address_pool
  @default_backend_address_pool
end

#default_backend_http_settingsSubResource

path map.

Returns:

  • (SubResource)

    Default backend http settings resource of URL



22
23
24
# File 'lib/2018-07-01/generated/azure_mgmt_network/models/application_gateway_url_path_map.rb', line 22

def default_backend_http_settings
  @default_backend_http_settings
end

#default_redirect_configurationSubResource

path map.

Returns:

  • (SubResource)

    Default redirect configuration resource of URL



26
27
28
# File 'lib/2018-07-01/generated/azure_mgmt_network/models/application_gateway_url_path_map.rb', line 26

def default_redirect_configuration
  @default_redirect_configuration
end

#etagString

resource is updated.

Returns:

  • (String)

    A unique read-only string that changes whenever the



42
43
44
# File 'lib/2018-07-01/generated/azure_mgmt_network/models/application_gateway_url_path_map.rb', line 42

def etag
  @etag
end

#nameString

Application Gateway.

Returns:

  • (String)

    Name of the URL path map that is unique within an



38
39
40
# File 'lib/2018-07-01/generated/azure_mgmt_network/models/application_gateway_url_path_map.rb', line 38

def name
  @name
end

#path_rulesArray<ApplicationGatewayPathRule>

resource.

Returns:



30
31
32
# File 'lib/2018-07-01/generated/azure_mgmt_network/models/application_gateway_url_path_map.rb', line 30

def path_rules
  @path_rules
end

#provisioning_stateString

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

Returns:

  • (String)

    Provisioning state of the backend http settings



34
35
36
# File 'lib/2018-07-01/generated/azure_mgmt_network/models/application_gateway_url_path_map.rb', line 34

def provisioning_state
  @provisioning_state
end

#typeString

Returns Type of the resource.

Returns:

  • (String)

    Type of the resource.



45
46
47
# File 'lib/2018-07-01/generated/azure_mgmt_network/models/application_gateway_url_path_map.rb', line 45

def type
  @type
end

Class Method Details

.mapperObject

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



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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
# File 'lib/2018-07-01/generated/azure_mgmt_network/models/application_gateway_url_path_map.rb', line 52

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ApplicationGatewayUrlPathMap',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewayUrlPathMap',
      model_properties: {
        id: {
          client_side_validation: true,
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        default_backend_address_pool: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.defaultBackendAddressPool',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        default_backend_http_settings: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.defaultBackendHttpSettings',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        default_redirect_configuration: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.defaultRedirectConfiguration',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        path_rules: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.pathRules',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ApplicationGatewayPathRuleElementType',
                type: {
                  name: 'Composite',
                  class_name: 'ApplicationGatewayPathRule'
                }
            }
          }
        },
        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'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end