Using Console
Using CLI
az login
.az account set --subscription <subscription_id>
.az postgres server show --resource-group <resource_group_name> --name <server_name> --query id --output tsv
.az postgres server configuration set --resource-group <resource_group_name> --server-name <server_name> --name "connection_throttling" --value "on"
.az postgres server configuration show --resource-group <resource_group_name> --server-name <server_name> --name "connection_throttling"
.<subscription_id>
, <resource_group_name>
, and <server_name>
with your actual values.Using Python