Skip to main content

sync_groups_sync_database_ids

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

Overview

Namesync_groups_sync_database_ids
TypeResource
Idazure.sql.sync_groups_sync_database_ids

Fields

The following fields are returned by SELECT queries:

Successfully retrieved collection of sync database ids.

NameDatatypeDescription
idstringARM resource id of sync database.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectlocationName, subscriptionIdGets 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.

NameDatatypeDescription
locationNamestringThe name of the region where the resource is located.
subscriptionIdstringThe subscription ID that identifies an Azure subscription.

SELECT examples

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
;