Command Reference > share > createAssetMapping
Maps a source asset in the sent share to a destination asset in the received share.
pv share createAssetMapping --receivedShareName=<val> --assetMappingName=<val> --payloadFile=<val>
--receivedShareName
(string)
The name of the received share.
--assetMappingName
(string)
The name of the asset mapping.
--payloadFile
(string)
File path to a valid JSON document.
None
Share Data Plane > Asset Mappings > Create
PUT https://{accountName}.purview.azure.com/share/receivedShares/{receivedShareName}/assetMappings/{assetMappingName}
Delete an asset mapping for a particular received share.
pv share createAssetMapping --receivedShareName "MyNewReceivedShare" --assetMappingName "MyAssetMappingName" --payloadFile "/path/to/file.json"
Example payload.
{
"kind": "BlobAccount",
"properties": {
"assetId": "8c3538ba-e787-4823-83ab-f01de6c18289",
"storageAccountResourceId": "/subscriptions/2c334b6c-e556-40ac-a4c0-c0d1d2e08ca0/resourceGroups/pv-7643-rg/providers/Microsoft.Storage/storageAccounts/storagedatashare01",
"containerName": "customer",
"folder": "helloWorld",
"mountPath": ""
}
}