Skip to content

Latest commit

 

History

History
45 lines (36 loc) · 1.13 KB

deleteBusinessAttribute.md

File metadata and controls

45 lines (36 loc) · 1.13 KB

pv entity deleteBusinessAttribute

Command Reference > entity > deleteBusinessAttribute

Description

Delete business metadata from an entity.

Syntax

pv entity deleteBusinessAttribute --guid=<val> --bmName=<val> --payloadFile=<val>

Required Arguments

--guid (string)
The globally unique identifier of the entity.

--bmName (string)
The name of the business metadata.

--payloadFile (string)
File path to a valid JSON document.

Optional Arguments

None

API Mapping

Catalog Data Plane > Entity > Delete Business Attributes

DELETE https://{accountName}.purview.azure.com/catalog/api/atlas/v2/entity/guid/{guid}/businessmetadata/{bmName}

Examples

Delete business metadata from an entity.

pv entity deleteBusinessAttribute --guid "0e945784-4bc3-40bb-a541-e8d1f7c9bf50" --bmName "myBizMetadata1" --payloadFile "/path/to/file.json"
Example payload.

{
    "bizAttr1": "bizAttr1"
}