Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 1.08 KB

putCategoryPartial.md

File metadata and controls

42 lines (34 loc) · 1.08 KB

pv glossary putCategoryPartial

Command Reference > glossary > putCategoryPartial

Description

Update the glossary category partially.

Syntax

pv glossary putCategoryPartial --categoryGuid=<val> --payloadFile=<val>

Required Arguments

--categoryGuid (string)
The globally unique identifier of the category.

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

Optional Arguments

None

API Mapping

Catalog Data Plane > Glossary > Partial Update Glossary Category

PUT https://{accountName}.purview.azure.com/catalog/api/atlas/v2/glossary/category/{categoryGuid}/partial

Examples

Updated simple attributes of a category.

pv glossary putCategoryPartial --categoryGuid "c856ecef-21e6-4e92-8607-9493d8432e78" --payloadFile "/path/to/file.json"
Example payload.

{
    "longDescription": "Example Long Description"
}