replicas
Creates, updates, deletes, gets or lists a replicas
resource.
Overview
Name | replicas |
Type | Resource |
Id | azure.postgresql.replicas |
Fields
Name | Datatype | Description |
---|---|---|
identity | object | Information describing the identities associated with this application. |
location | string | The geo-location where the resource lives |
properties | object | The properties of a server. |
sku | object | Sku information related properties of a server. |
tags | object | Resource tags. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_server | SELECT | resourceGroupName, serverName, subscriptionId | List all the replicas for a given server. |
SELECT
examples
List all the replicas for a given server.
SELECT
identity,
location,
properties,
sku,
tags
FROM azure.postgresql.replicas
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND serverName = '{{ serverName }}'
AND subscriptionId = '{{ subscriptionId }}';