Skip to content

Mobile Base Config

List the set of mobile_base_config in a namespace.

ToolDescription
f5xc-api-shape-mobile-base-config-createCreate Mobile SDK Base Configuration.
f5xc-api-shape-mobile-base-config-getGET Mobile SDK Base Configuration.
f5xc-api-shape-mobile-base-config-listList Mobile SDK Base Configuration.
f5xc-api-shape-mobile-base-config-updateReplace Mobile SDK Base Configuration.
f5xc-api-shape-mobile-base-config-deleteDELETE Mobile SDK Base Configuration.
ParameterDescriptionExample
metadata.namespaceNamespace-
nameName-
namespaceNamespace-
metadata.nameName-
ParameterDescriptionExample
response_formatThe format in which the configuration object is to be fetched. This could be for example-
label_filterA LabelSelectorType expression that every item in list response will satisfy.-
report_fieldsThe report_fields parameter-
report_status_fieldsThe report_status_fields parameter-

Ask Claude to help you work with Mobile Base Config resources:

“Create a mobile-base-config named ‘example’ in the ‘production’ namespace”

“List all mobile-base-configs in the ‘production’ namespace”

“Get details of the mobile-base-config named ‘example’ in namespace ‘production‘“

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