diff --git a/specification/postgresqlhsc/resource-manager/Microsoft.DBforPostgreSQL/stable/2022-11-08/examples/ServerGet.json b/specification/postgresqlhsc/resource-manager/Microsoft.DBforPostgreSQL/stable/2022-11-08/examples/ServerGet.json index 82ebb1d2c128..66d4c5366df0 100644 --- a/specification/postgresqlhsc/resource-manager/Microsoft.DBforPostgreSQL/stable/2022-11-08/examples/ServerGet.json +++ b/specification/postgresqlhsc/resource-manager/Microsoft.DBforPostgreSQL/stable/2022-11-08/examples/ServerGet.json @@ -30,9 +30,11 @@ "storageQuotaInMb": 10000, "vCores": 4, "enableHa": true, - "enablePublicIp": true, + "enablePublicIpAccess": true, "state": "Ready", - "haState": "Healthy" + "haState": "Healthy", + "administratorLogin": "citus", + "isReadOnly": false } } } diff --git a/specification/postgresqlhsc/resource-manager/Microsoft.DBforPostgreSQL/stable/2022-11-08/examples/ServerListByCluster.json b/specification/postgresqlhsc/resource-manager/Microsoft.DBforPostgreSQL/stable/2022-11-08/examples/ServerListByCluster.json index 50c3dbc6aac2..a9e44fd7fca9 100644 --- a/specification/postgresqlhsc/resource-manager/Microsoft.DBforPostgreSQL/stable/2022-11-08/examples/ServerListByCluster.json +++ b/specification/postgresqlhsc/resource-manager/Microsoft.DBforPostgreSQL/stable/2022-11-08/examples/ServerListByCluster.json @@ -31,9 +31,11 @@ "storageQuotaInMb": 10000, "vCores": 4, "enableHa": true, - "enablePublicIp": true, + "enablePublicIpAccess": true, "state": "Ready", - "haState": "Healthy" + "haState": "Healthy", + "administratorLogin": "citus", + "isReadOnly": false } }, { @@ -58,9 +60,11 @@ "storageQuotaInMb": 10000, "vCores": 4, "enableHa": false, - "enablePublicIp": false, + "enablePublicIpAccess": false, "state": "Ready", - "haState": "NotEnabled" + "haState": "NotEnabled", + "administratorLogin": "citus", + "isReadOnly": false } }, { @@ -85,9 +89,11 @@ "storageQuotaInMb": 10000, "vCores": 4, "enableHa": false, - "enablePublicIp": false, + "enablePublicIpAccess": false, "state": "Ready", - "haState": "NotEnabled" + "haState": "NotEnabled", + "administratorLogin": "citus", + "isReadOnly": false } } ] diff --git a/specification/postgresqlhsc/resource-manager/Microsoft.DBforPostgreSQL/stable/2022-11-08/postgresqlhsc.json b/specification/postgresqlhsc/resource-manager/Microsoft.DBforPostgreSQL/stable/2022-11-08/postgresqlhsc.json index 1a42ec93490d..b224b69fb9fc 100644 --- a/specification/postgresqlhsc/resource-manager/Microsoft.DBforPostgreSQL/stable/2022-11-08/postgresqlhsc.json +++ b/specification/postgresqlhsc/resource-manager/Microsoft.DBforPostgreSQL/stable/2022-11-08/postgresqlhsc.json @@ -1884,10 +1884,20 @@ "type": "boolean", "description": "If high availability is enabled or not for the server." }, - "enablePublicIp": { + "enablePublicIpAccess": { "type": "boolean", "description": "If public IP is requested or not for a server.", "readOnly": true + }, + "isReadOnly": { + "type": "boolean", + "description": "If server database is set to read-only by system maintenance depending on high disk space usage.", + "readOnly": true + }, + "administratorLogin": { + "type": "string", + "description": "The administrator's login name of the servers in the cluster.", + "readOnly": true } } },