Class: Azure::ARM::Network::Models::ApplicationGatewayUrlPathMap
- Inherits:
-
MsRestAzure::SubResource
- Object
- MsRestAzure::SubResource
- Azure::ARM::Network::Models::ApplicationGatewayUrlPathMap
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/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
-
#default_backend_address_pool ⇒ SubResource
map.
-
#default_backend_http_settings ⇒ SubResource
path map.
-
#default_redirect_configuration ⇒ SubResource
path map.
-
#etag ⇒ String
resource is updated.
-
#name ⇒ String
group.
-
#path_rules ⇒ Array<ApplicationGatewayPathRule>
resource.
-
#provisioning_state ⇒ String
resource.
-
#type ⇒ String
Type of the resource.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ApplicationGatewayUrlPathMap class as Ruby Hash.
Instance Attribute Details
#default_backend_address_pool ⇒ SubResource
map.
19 20 21 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_url_path_map.rb', line 19 def default_backend_address_pool @default_backend_address_pool end |
#default_backend_http_settings ⇒ SubResource
path map.
23 24 25 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_url_path_map.rb', line 23 def default_backend_http_settings @default_backend_http_settings end |
#default_redirect_configuration ⇒ SubResource
path map.
27 28 29 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_url_path_map.rb', line 27 def default_redirect_configuration @default_redirect_configuration end |
#etag ⇒ String
resource is updated.
43 44 45 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_url_path_map.rb', line 43 def etag @etag end |
#name ⇒ String
group. This name can be used to access the resource.
39 40 41 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_url_path_map.rb', line 39 def name @name end |
#path_rules ⇒ Array<ApplicationGatewayPathRule>
resource.
31 32 33 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_url_path_map.rb', line 31 def path_rules @path_rules end |
#provisioning_state ⇒ String
resource. Possible values are: ‘Updating’, ‘Deleting’, and ‘Failed’.
35 36 37 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_url_path_map.rb', line 35 def provisioning_state @provisioning_state end |
#type ⇒ String
Returns Type of the resource.
46 47 48 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_url_path_map.rb', line 46 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for ApplicationGatewayUrlPathMap class as Ruby Hash. This will be used for serialization/deserialization.
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 |
# File 'lib/generated/azure_mgmt_network/models/application_gateway_url_path_map.rb', line 53 def self.mapper() { required: false, serialized_name: 'ApplicationGatewayUrlPathMap', type: { name: 'Composite', class_name: 'ApplicationGatewayUrlPathMap', model_properties: { id: { required: false, serialized_name: 'id', type: { name: 'String' } }, default_backend_address_pool: { required: false, serialized_name: 'properties.defaultBackendAddressPool', type: { name: 'Composite', class_name: 'SubResource' } }, default_backend_http_settings: { required: false, serialized_name: 'properties.defaultBackendHttpSettings', type: { name: 'Composite', class_name: 'SubResource' } }, default_redirect_configuration: { required: false, serialized_name: 'properties.defaultRedirectConfiguration', type: { name: 'Composite', class_name: 'SubResource' } }, path_rules: { required: false, serialized_name: 'properties.pathRules', type: { name: 'Sequence', element: { required: false, serialized_name: 'ApplicationGatewayPathRuleElementType', type: { name: 'Composite', class_name: 'ApplicationGatewayPathRule' } } } }, 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 |