class Azure::Network::Mgmt::V2019_04_01::Models::ApplicationGatewayHttpListener
Http listener of an application gateway.
Attributes
@return [Array<ApplicationGatewayCustomError>] Custom error configurations of the HTTP listener.
@return [String] A unique read-only string that changes whenever the resource is updated.
@return [SubResource] Frontend IP configuration resource of an application gateway.
@return [SubResource] Frontend port resource of an application gateway.
@return [String] Host name of HTTP listener.
@return [String] Name of the HTTP listener that is unique within an Application Gateway.
@return [ApplicationGatewayProtocol] Protocol of the HTTP listener. Possible values include: 'Http', 'Https'
@return [String] Provisioning state of the HTTP listener resource. Possible values are: 'Updating', 'Deleting', and 'Failed'.
@return [Boolean] Applicable only if protocol is https. Enables SNI for multi-hosting.
@return [SubResource] SSL certificate resource of an application gateway.
@return [String] Type of the resource.
Public Class Methods
Mapper for ApplicationGatewayHttpListener class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-04-01/generated/azure_mgmt_network/models/application_gateway_http_listener.rb, line 60 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationGatewayHttpListener', type: { name: 'Composite', class_name: 'ApplicationGatewayHttpListener', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, frontend_ipconfiguration: { client_side_validation: true, required: false, serialized_name: 'properties.frontendIPConfiguration', type: { name: 'Composite', class_name: 'SubResource' } }, frontend_port: { client_side_validation: true, required: false, serialized_name: 'properties.frontendPort', type: { name: 'Composite', class_name: 'SubResource' } }, protocol: { client_side_validation: true, required: false, serialized_name: 'properties.protocol', type: { name: 'String' } }, host_name: { client_side_validation: true, required: false, serialized_name: 'properties.hostName', type: { name: 'String' } }, ssl_certificate: { client_side_validation: true, required: false, serialized_name: 'properties.sslCertificate', type: { name: 'Composite', class_name: 'SubResource' } }, require_server_name_indication: { client_side_validation: true, required: false, serialized_name: 'properties.requireServerNameIndication', type: { name: 'Boolean' } }, provisioning_state: { client_side_validation: true, required: false, serialized_name: 'properties.provisioningState', type: { name: 'String' } }, custom_error_configurations: { client_side_validation: true, required: false, serialized_name: 'properties.customErrorConfigurations', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ApplicationGatewayCustomErrorElementType', type: { name: 'Composite', class_name: 'ApplicationGatewayCustomError' } } } }, 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