Class: Azure::ARM::Network::Models::ApplicationGatewayPathRule

Inherits:
MsRestAzure::SubResource
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/generated/azure_mgmt_network/models/application_gateway_path_rule.rb

Overview

Path rule of URL path map of an application gateway.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#backend_address_poolSubResource

path rule.

Returns:

  • (SubResource)

    Backend address pool resource of URL path map



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

def backend_address_pool
  @backend_address_pool
end

#backend_http_settingsSubResource

path rule.

Returns:

  • (SubResource)

    Backend http settings resource of URL path map



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

def backend_http_settings
  @backend_http_settings
end

#etagString

resource is updated.

Returns:

  • (String)

    A unique read-only string that changes whenever the



41
42
43
# File 'lib/generated/azure_mgmt_network/models/application_gateway_path_rule.rb', line 41

def etag
  @etag
end

#nameString

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

Returns:

  • (String)

    Name of the resource that is unique within a resource



37
38
39
# File 'lib/generated/azure_mgmt_network/models/application_gateway_path_rule.rb', line 37

def name
  @name
end

#pathsArray<String>

Returns Path rules of URL path map.

Returns:

  • (Array<String>)

    Path rules of URL path map.



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

def paths
  @paths
end

#provisioning_stateString

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

Returns:

  • (String)

    Path rule of URL path map resource. Possible values



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

def provisioning_state
  @provisioning_state
end

#redirect_configurationSubResource

path rule.

Returns:

  • (SubResource)

    Redirect configuration resource of URL path map



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

def redirect_configuration
  @redirect_configuration
end

#typeString

Returns Type of the resource.

Returns:

  • (String)

    Type of the resource.



44
45
46
# File 'lib/generated/azure_mgmt_network/models/application_gateway_path_rule.rb', line 44

def type
  @type
end

Class Method Details

.mapperObject

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



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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
# File 'lib/generated/azure_mgmt_network/models/application_gateway_path_rule.rb', line 51

def self.mapper()
  {
    required: false,
    serialized_name: 'ApplicationGatewayPathRule',
    type: {
      name: 'Composite',
      class_name: 'ApplicationGatewayPathRule',
      model_properties: {
        id: {
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        paths: {
          required: false,
          serialized_name: 'properties.paths',
          type: {
            name: 'Sequence',
            element: {
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        },
        backend_address_pool: {
          required: false,
          serialized_name: 'properties.backendAddressPool',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        backend_http_settings: {
          required: false,
          serialized_name: 'properties.backendHttpSettings',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        redirect_configuration: {
          required: false,
          serialized_name: 'properties.redirectConfiguration',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        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'
          }
        },
        type: {
          required: false,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end