replicas
Creates, updates, deletes, gets or lists a replicas
resource.
Overview
Name | replicas |
Type | Resource |
Id | azure.mysql.replicas |
Fields
Name | Datatype | Description |
---|---|---|
identity | object | Properties to configure Identity for Bring your Own Keys |
location | string | The geo-location where the resource lives |
properties | object | The properties of a server. |
sku | object | Billing 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.mysql.replicas
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND serverName = '{{ serverName }}'
AND subscriptionId = '{{ subscriptionId }}';