The Get-AzWebAppSSLBinding cmdlet gets a Secure Sockets Layer (SSL) binding for an Azure Web App.
SSL bindings are used to associate a Web App with an uploaded certificate.
Web Apps can be bound to multiple certificates.
The commands in this example also get the SSL bindings for the Web App ContosoWebApp; in this case, however, an object reference is used instead of the Web App name and the name of the associated resource group.
This object reference is created by the first command in the example, which uses Get-AzWebApp to create an object reference to the Web App named ContosoWebApp.
That object reference is stored in a variable named $WebApp.
This variable, and the Get-AzWebAppSSLBinding cmdlet, are then used by the second command to get the SSL bindings.
Parameters
-DefaultProfile
The credentials, account, tenant, and subscription used for communication with azure.
Specifies the name of the resource group that the certificate is assigned to.
You cannot use the ResourceGroupName parameter and the WebApp parameter in the same command.
Specifies the name of the Web App that this cmdlet gets SSL bindings from.
You cannot use the WebAppName parameter and the WebApp parameter in the same command.
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable,
-InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable,
-ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see
about_CommonParameters.