Skip to content

Latest commit

 

History

History
65 lines (43 loc) · 1.51 KB

createAssetMapping.md

File metadata and controls

65 lines (43 loc) · 1.51 KB

pv share createAssetMapping

Command Reference > share > createAssetMapping

Description

Maps a source asset in the sent share to a destination asset in the received share.

Syntax

pv share createAssetMapping --receivedShareName=<val> --assetMappingName=<val> --payloadFile=<val>

Required Arguments

--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.

Optional Arguments

None

API Mapping

Share Data Plane > Asset Mappings > Create

PUT https://{accountName}.purview.azure.com/share/receivedShares/{receivedShareName}/assetMappings/{assetMappingName}

Examples

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": ""
  }
}