Tags
Create, apply, and remove Veza tags
curl 'https://{{VezaUrl}}/api/v1/graph/nodes/veza_tags' \
--data-raw '{
"node_id":"arn:aws:s3:::aws-cloudtrail-logs-527398259632-c98becd0",
"tags":[
{"key":"custom_tag","value":"one"}
]
}'Quick Start
export BASEURL=https://<org>.vezacloud.com} \
export TOKEN=Sk9lcmEta2w2c2padklkaDhOcDVhTWdVU3FlTlpVajg=curl $BASEURL/api/v1/assessments/query_spec:nodes \
-H 'authorization: Bearer '$TOKEN \
--data-raw '{
"query_type": "SOURCE_TO_DESTINATION",
"include_nodes": true,
"source_node_types": {
"nodes": [
{
"node_type": "SnowflakeTable"
}
]
},
"destination_node_types": {
"nodes": [
{
"node_type": "OktaUser",
"condition_expression": {
"specs": [
{
"fn": "CONTAINS",
"property": "department",
"value": "Finance"
}
]
}
}
]
}
}'Last updated
Was this helpful?
