- Home
- API MCP Server
- tools
- marketplace
- view Kind
view Kind
Returned from list of terraform parameter objects for a given view.
| Tool | Description |
|---|---|
f5xc-api-marketplace-view-kind-list | GET Terraform Parameters for view. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
view_kind | Kind of View | - |
view_name | Name of view | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with view Kind resources:
List view Kinds
Section titled “List view Kinds”“List all view-kinds in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/view_kinds" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Get specific resourcecurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/view_kinds/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json"
# Create resourcecurl -X POST "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/view_kinds" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @view_kind.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/view_kinds/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"