title | description | author | ms.author | ms.service | ms.topic | ms.date | ms.custom |
---|---|---|---|---|---|---|---|
PowerShell script: Create and view an Azure Data Share snapshot triggers |
This PowerShell script creates and gets share snapshot triggers. |
sidontha |
sidontha |
data-share |
article |
10/31/2022 |
devx-track-azurepowershell |
This PowerShell script creates and gets share snapshot triggers.
# Set variables with your own values
$resourceGroupName = "<Resource group name>"
$dataShareAccountName = "<Data share account name>"
$dataShareName = "<Data share name>"
$subscriptionName = "<Share subscription name>"
$recurrenceInterval = "<Synchronization recurrence interval>"
$synchronizationTime = "<Synchronization time>"
# Create a new snapshot trigger
New-AzDataShareTrigger -ResourceGroupName $resourceGroupName -AccountName $dataShareAccountName -ShareSubscriptionName $subscriptionName -Name $dataShareName -RecurrenceInterval $recurrenceInterval -SynchronizationTime $synchronizationTime
#List snapshot triggers
Get-AzDataShareTrigger -ResourceGroupName $resourceGroupName -AccountName $dataShareAccountName -ShareSubscriptionName $subscriptionName -Name $dataShareName
#Get a specific share snapshot trigger
Get-AzDataShareTrigger -ResourceGroupName $resourceGroupName -AccountName $dataShareAccountName -ShareSubscriptionName -Name $dataShareName
This script uses the following commands:
Command | Notes |
---|---|
New-AzDataShareTrigger | Create a share snapshot trigger. |
Get-AzDataShareTrigger | Gets synchronization settings of a share synchronization. |
For more information on the Azure PowerShell, see Azure PowerShell documentation.
Additional Azure Data Share PowerShell script samples can be found in the Azure Data Share PowerShell samples.