sync_groups_sync_database_ids
Creates, updates, deletes, gets or lists a sync_groups_sync_database_ids
resource.
Overview
Name | sync_groups_sync_database_ids |
Type | Resource |
Id | azure.sql.sync_groups_sync_database_ids |
Fields
The following fields are returned by SELECT
queries:
- list
Successfully retrieved collection of sync database ids.
Name | Datatype | Description |
---|---|---|
id | string | ARM resource id of sync database. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | locationName , subscriptionId | Gets a collection of sync database ids. |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
locationName | string | The name of the region where the resource is located. |
subscriptionId | string | The subscription ID that identifies an Azure subscription. |
SELECT
examples
- list
Gets a collection of sync database ids.
SELECT
id
FROM azure.sql.sync_groups_sync_database_ids
WHERE locationName = '{{ locationName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;