Skip to content

Justification

High Risk Operation

This resource includes operations that may cause significant changes. Review carefully before executing.

Confirmation Required

Some operations on this resource require explicit confirmation before execution.

DELETE the specified script justification.

Tools

Tool Description
f5xc-api-shape-justification-create Update Script Justification.
f5xc-api-shape-justification-delete DELETE Script Justification.

Parameters

Path Parameters

Parameter Description Example
namespace Namespace -
script_id Script_id -
justification_id Justification_id -

Side Effects

Operations on this resource may have the following effects:

Creates:

  • justification

Deletes:

  • justification
  • contained_resources

Example Usage

Ask Claude to help you work with Justification resources:

Create Justification

"Create a justification named 'example' in the 'production' namespace"

CURL Examples

# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/justifications" \
  -H "Authorization: APIToken ${F5XC_API_TOKEN}" \
  -H "Content-Type: application/json"

# Get specific resource
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/justifications/<name>" \
  -H "Authorization: APIToken ${F5XC_API_TOKEN}" \
  -H "Content-Type: application/json"

# Create resource
curl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/justifications" \
  -H "Authorization: APIToken ${F5XC_API_TOKEN}" \
  -H "Content-Type: application/json" \
  -d @justification.json

# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/justifications/<name>" \
  -H "Authorization: APIToken ${F5XC_API_TOKEN}"