Skip to main content

replicas

Creates, updates, deletes, gets or lists a replicas resource.

Overview

Namereplicas
TypeResource
Idazure.maria_db.replicas

Fields

NameDatatypeDescription
locationstringThe geo-location where the resource lives
propertiesobjectThe properties of a server.
skuobjectThe resource model definition representing SKU
tagsobjectResource tags.

Methods

NameAccessible byRequired ParamsDescription
list_by_serverSELECTresourceGroupName, serverName, subscriptionIdList all the replicas for a given server.

SELECT examples

List all the replicas for a given server.

SELECT
location,
properties,
sku,
tags
FROM azure.maria_db.replicas
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND serverName = '{{ serverName }}'
AND subscriptionId = '{{ subscriptionId }}';