share_subscriptions_source_share_synchronization_settings
Creates, updates, deletes, gets or lists a share_subscriptions_source_share_synchronization_settings resource.
Overview
| Name | share_subscriptions_source_share_synchronization_settings |
| Type | Resource |
| Id | azure.data_share.share_subscriptions_source_share_synchronization_settings |
Fields
The following fields are returned by SELECT queries:
- list
| Name | Datatype | Description |
|---|---|---|
kind | string | Kind of synchronization setting on share. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId, resourceGroupName, accountName, shareSubscriptionName | api-version, $skipToken | Get synchronization settings set on a share |
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 |
|---|---|---|
accountName | string | The name of the share account. |
resourceGroupName | string | The resource group name. |
shareSubscriptionName | string | The name of the shareSubscription. |
subscriptionId | string | The subscription identifier |
$skipToken | string | Continuation token |
api-version | string | The api version to use. |
SELECT examples
- list
Get synchronization settings set on a share
SELECT
kind
FROM azure.data_share.share_subscriptions_source_share_synchronization_settings
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND accountName = '{{ accountName }}' -- required
AND shareSubscriptionName = '{{ shareSubscriptionName }}' -- required
AND api-version = '{{ api-version }}'
AND $skipToken = '{{ $skipToken }}'
;