Data Tag Categories
Retrieve all data tag categories in an account
client.zeroTrust.dlp.dataTagCategories.list(DataTagCategoryListParams { account_id } params, RequestOptionsoptions?): SinglePage<DataTagCategoryListResponse { id, created_at, name, 4 more } >
GET/accounts/{account_id}/dlp/data_tag_categories
Retrieve a specific data tag category.
client.zeroTrust.dlp.dataTagCategories.get(stringcategoryId, DataTagCategoryGetParams { account_id } params, RequestOptionsoptions?): DataTagCategoryGetResponse { id, created_at, name, 4 more }
GET/accounts/{account_id}/dlp/data_tag_categories/{category_id}
Creates a new data tag category.
client.zeroTrust.dlp.dataTagCategories.create(DataTagCategoryCreateParams { account_id, name, description, 2 more } params, RequestOptionsoptions?): DataTagCategoryCreateResponse { id, created_at, name, 4 more }
POST/accounts/{account_id}/dlp/data_tag_categories
Update the attributes of a single data tag category.
client.zeroTrust.dlp.dataTagCategories.update(stringcategoryId, DataTagCategoryUpdateParams { account_id, description, name, tags } params, RequestOptionsoptions?): DataTagCategoryUpdateResponse { id, created_at, name, 4 more }
PUT/accounts/{account_id}/dlp/data_tag_categories/{category_id}
Delete a single data tag category.
client.zeroTrust.dlp.dataTagCategories.delete(stringcategoryId, DataTagCategoryDeleteParams { account_id } params, RequestOptionsoptions?): DataTagCategoryDeleteResponse | null
DELETE/accounts/{account_id}/dlp/data_tag_categories/{category_id}
Data Tag CategoriesData Tags
Retrieve all data tags in a data tag category
client.zeroTrust.dlp.dataTagCategories.dataTags.list(stringcategoryId, DataTagListParams { account_id } params, RequestOptionsoptions?): SinglePage<DataTagListResponse { id, created_at, name, 2 more } >
GET/accounts/{account_id}/dlp/data_tag_categories/{category_id}/data_tags
Retrieve a specific data tag.
client.zeroTrust.dlp.dataTagCategories.dataTags.get(stringcategoryId, stringtagId, DataTagGetParams { account_id } params, RequestOptionsoptions?): DataTagGetResponse { id, created_at, name, 2 more }
GET/accounts/{account_id}/dlp/data_tag_categories/{category_id}/data_tags/{tag_id}
Creates a new data tag.
client.zeroTrust.dlp.dataTagCategories.dataTags.create(stringcategoryId, DataTagCreateParams { account_id, name, description } params, RequestOptionsoptions?): DataTagCreateResponse { id, created_at, name, 2 more }
POST/accounts/{account_id}/dlp/data_tag_categories/{category_id}/data_tags
Update the attributes of a single data tag.
client.zeroTrust.dlp.dataTagCategories.dataTags.update(stringcategoryId, stringtagId, DataTagUpdateParams { account_id, description, name } params, RequestOptionsoptions?): DataTagUpdateResponse { id, created_at, name, 2 more }
PUT/accounts/{account_id}/dlp/data_tag_categories/{category_id}/data_tags/{tag_id}
Delete a single data tag.
client.zeroTrust.dlp.dataTagCategories.dataTags.delete(stringcategoryId, stringtagId, DataTagDeleteParams { account_id } params, RequestOptionsoptions?): DataTagDeleteResponse | null
DELETE/accounts/{account_id}/dlp/data_tag_categories/{category_id}/data_tags/{tag_id}