Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 2.02 KB

create-view-trigger-powershell.md

File metadata and controls

51 lines (38 loc) · 2.02 KB
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

Use PowerShell to create and share snapshot triggers

This PowerShell script creates and gets share snapshot triggers.

Sample script

# 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

Script explanation

This script uses the following commands:

Command Notes
New-AzDataShareTrigger Create a share snapshot trigger.
Get-AzDataShareTrigger Gets synchronization settings of a share synchronization.

Next steps

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.