Mobile Sdk¶
Low Risk
Operations on this resource are generally safe.
ListMobileSDKs is an API to list all mobile SDKs available for download.
Tools¶
| Tool | Description |
|---|---|
f5xc-api-shape-mobile-sdk-list | GET List Of Mobile SDKs. |
Parameters¶
Path Parameters¶
| Parameter | Description | Example |
|---|---|---|
namespace | Namespace | - |
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. | - |
object_type | Optional query parameter. Type 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¶
Ask Claude to help you work with Mobile Sdk resources:
List Mobile Sdks¶
"List all mobile-sdks in the 'production' namespace"
CURL Examples¶
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/mobile_sdks" \
-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}/mobile_sdks/<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}/mobile_sdks" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @mobile_sdk.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/mobile_sdks/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"