Skip to content

Geo Location Set

List the set of geo_location_set in a namespace.

ToolDescription
f5xc-api-virtual-geo-location-set-createCreate Geolocation.
f5xc-api-virtual-geo-location-set-getGET Geolocation Set.
f5xc-api-virtual-geo-location-set-listList Geolocation Set.
f5xc-api-virtual-geo-location-set-updateReplace Geolocation Set.
f5xc-api-virtual-geo-location-set-deleteDELETE Geolocation Set.
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-

This resource includes mutually exclusive configuration options:

OptionDescriptionRecommended
spec.custom_geo_location_selector-
spec.global-

Ask Claude to help you work with Geo Location Set resources:

“Create a geo-location-set named ‘example’ in the ‘production’ namespace”

“List all geo-location-sets in the ‘production’ namespace”

“Get details of the geo-location-set named ‘example’ in namespace ‘production‘“

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