class Azure::Network::Mgmt::V2015_06_15::Models::ApplicationGatewayPathRule
Path rule of URL path map of an application gateway.
Attributes
backend_address_pool[RW]
@return [SubResource] Backend address pool resource of URL path map.
backend_http_settings[RW]
@return [SubResource] Backend http settings resource of URL path map.
etag[RW]
@return [String] A unique read-only string that changes whenever the resource is updated.
name[RW]
@return [String] Name of the resource that is unique within a resource group. This name can be used to access the resource.
paths[RW]
@return [Array<String>] Path rules of URL path map.
provisioning_state[RW]
@return [String] Path rule of URL path map resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.
Private Class Methods
mapper()
click to toggle source
Mapper for ApplicationGatewayPathRule
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2015-06-15/generated/azure_mgmt_network/models/application_gateway_path_rule.rb, line 41 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationGatewayPathRule', type: { name: 'Composite', class_name: 'ApplicationGatewayPathRule', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, paths: { client_side_validation: true, required: false, serialized_name: 'properties.paths', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, backend_address_pool: { client_side_validation: true, required: false, serialized_name: 'properties.backendAddressPool', type: { name: 'Composite', class_name: 'SubResource' } }, backend_http_settings: { client_side_validation: true, required: false, serialized_name: 'properties.backendHttpSettings', type: { name: 'Composite', class_name: 'SubResource' } }, 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