Skip to content

Mobile App Shield

ListMobileAppShields is an API to list all mobile app shields available for download.

ToolDescription
f5xc-api-objectstorage-mobile-app-shield-listGET List Of Mobile App Shields.
ParameterDescriptionExample
namespaceNamespace-
ParameterDescriptionExample
latest_version_onlyOptional query parameter. If passed, returns only latest version of the objects.-
nameOptional query parameter. Name of the stored_object.-
object_typeOptional query parameter. Type of the stored_object.-
query_typeOptional query parameter. The type of search query needs to be performed. Could be EXACT_MATCH or PREFIX_MATCH.-

Ask Claude to help you work with Mobile App Shield resources:

“List all mobile-app-shields in the ‘production’ namespace”

Terminal window
# List resources
curl -X GET "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/mobile_app_shields" \
-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_app_shields/<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_app_shields" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}" \
-H "Content-Type: application/json" \
-d @mobile_app_shield.json
# Delete resource
curl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/mobile_app_shields/<name>" \
-H "Authorization: APIToken ${F5XC_API_TOKEN}"