Skip to content

Cloud Link

Replaces configured CloudLink with new set of parameters.

ToolDescription
f5xc-api-cloudinfrastructure-cloud-link-createCreate CloudLink.
f5xc-api-cloudinfrastructure-cloud-link-getGET CloudLink.
f5xc-api-cloudinfrastructure-cloud-link-listList CloudLink.
f5xc-api-cloudinfrastructure-cloud-link-updateReplace CloudLink.
f5xc-api-cloudinfrastructure-cloud-link-deleteDELETE CloudLink.
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.aws-
spec.gcp-
OptionDescriptionRecommended
spec.disabled-
spec.enabled-
OptionDescriptionRecommended
spec.aws.byoc-
OptionDescriptionRecommended
spec.aws.custom_asn-
OptionDescriptionRecommended
spec.aws.byoc.connections[].ipv4-
OptionDescriptionRecommended
spec.aws.byoc.connections[].system_generated_name-
spec.aws.byoc.connections[].user_assigned_name-
OptionDescriptionRecommended
spec.aws.byoc.connections[].auth_key.blindfold_secret_info-
spec.aws.byoc.connections[].auth_key.clear_secret_info-
OptionDescriptionRecommended
spec.gcp.byoc.connections[].project-
spec.gcp.byoc.connections[].same_as_credential-

Ask Claude to help you work with Cloud Link resources:

“Create a cloud-link named ‘example’ in the ‘production’ namespace”

“List all cloud-links in the ‘production’ namespace”

“Get details of the cloud-link named ‘example’ in namespace ‘production‘“

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