title | description | services | author | ms.author | ms.service | ms.topic | ms.date | ms.custom |
---|---|---|---|---|---|---|---|---|
PowerShell script: Add a blob dataset to an Azure Data Share |
This PowerShell script adds a blob dataset to an existing share. |
data-share |
sidontha |
sidontha |
data-share |
article |
10/31/2022 |
devx-track-azurepowershell |
This PowerShell script adds a blob dataset to an existing Data Share.
# Set variables with your own values
$resourceGroupName = "<Resource group name>"
$dataShareAccountName = "<Data share account name>"
$dataShareName = "<Data share name>"
$blobDatasetName = "<Dataset name>"
$blobContainer = "<Blob container name>"
$blobFilePath = "<Blob file path>"
$storageAccountResourceId = "<Storage account resource id>"
#Add a blob dataset to the datashare
New-AzDataShareDataSet -ResourceGroupName $resourceGroupName -AccountName $dataShareAccountName -ShareName $dataShareName -Name $blobDataSetName -StorageAccountResourceId $storageAccountResourceId -FilePath $blobFilePath
This script uses the following commands:
Command | Notes |
---|---|
New-AzDataShareDataSet | Adds a dataset to a data share. |
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.