The following command is in powershell, where it adds the authorization certificate along with new httpsettings.
$poolSetting = New-AzureRmApplicationGatewayBackendHttpSettings -Name 'setting01' -Port 443 -Protocol Https -CookieBasedAffinity Enabled -AuthenticationCertificates $authcert
How can we do this via az CLI (Azure CLI)? In there I'm not able to find the AuthenticationCertificates attribute.