class Azure::Network::Mgmt::V2020_07_01::Models::ApplicationGatewaySslProfile
SSL profile of an application gateway.
Attributes
@return [ApplicationGatewayClientAuthConfiguration] Client authentication configuration of the application gateway resource.
@return [String] A unique read-only string that changes whenever the resource is updated.
@return [String] Name of the SSL profile that is unique within an Application Gateway.
@return [ProvisioningState] The provisioning state of the HTTP listener resource. Possible values include: 'Succeeded', 'Updating', 'Deleting', 'Failed'
@return [ApplicationGatewaySslPolicy] SSL policy of the application gateway resource.
@return [Array<SubResource>] Array of references to application gateway trusted client certificates.
@return [String] Type of the resource.
Public Class Methods
Mapper for ApplicationGatewaySslProfile
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-07-01/generated/azure_mgmt_network/models/application_gateway_ssl_profile.rb, line 48 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ApplicationGatewaySslProfile', type: { name: 'Composite', class_name: 'ApplicationGatewaySslProfile', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, trusted_client_certificates: { client_side_validation: true, required: false, serialized_name: 'properties.trustedClientCertificates', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'SubResourceElementType', type: { name: 'Composite', class_name: 'SubResource' } } } }, ssl_policy: { client_side_validation: true, required: false, serialized_name: 'properties.sslPolicy', type: { name: 'Composite', class_name: 'ApplicationGatewaySslPolicy' } }, client_auth_configuration: { client_side_validation: true, required: false, serialized_name: 'properties.clientAuthConfiguration', type: { name: 'Composite', class_name: 'ApplicationGatewayClientAuthConfiguration' } }, provisioning_state: { client_side_validation: true, required: false, read_only: true, 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, read_only: true, serialized_name: 'etag', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } } } } } end