Command Reference > share > createSentShare
Create a sent share in the given Purview account.
pv share createSentShare --sentShareName=<val> --payloadFile=<val>
--sentShareName
(string)
The name of the sent share.
--payloadFile
(string)
File path to a valid JSON document.
None
Share Data Plane > Sent Shares > Create Or Update
PUT https://{accountName}.purview.azure.com/share/sentShares/{sentShareName}
Create a sent share.
pv share createSentShare --sentShareName "MyNewSentShare" --payloadFile "/path/to/file.json"
Example payload.
{
"properties": {
"description": "This is a friendly description.",
"collection": {
"referenceName": "pvdemo52dg4-pv",
"type": "CollectionReference"
}
},
"shareKind": "InPlace"
}