- Home
- API MCP Server
- tools
- object-storage
- Stored Object
Stored Object
ListObjects is an API to list objects in object store.
| Tool | Description |
|---|---|
f5xc-api-objectstorage-stored-object-list | GET List Of Stored Objects. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
object_type | Object_type | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
latest_version_only | Optional query parameter. If passed, returns only latest version of the objects. | - |
name | Optional query parameter. Name of the stored_object. | - |
query_type | Optional query parameter. The type of search query needs to be performed. Could be EXACT_MATCH or PREFIX_MATCH. | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Stored Object resources:
List Stored Objects
Section titled “List Stored Objects”“List all stored-objects in the ‘production’ namespace”
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/stored_objects" \ -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}/stored_objects/<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}/stored_objects" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @stored_object.json
# Delete resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/stored_objects/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"