Skip to content

Cloud Credentials

List the set of cloud_credentials in a namespace.

ToolDescription
f5xc-api-cloudinfrastructure-cloud-credentials-createCreate Cloud Credentials.
f5xc-api-cloudinfrastructure-cloud-credentials-getGET Cloud Credentials.
f5xc-api-cloudinfrastructure-cloud-credentials-listList Cloud Credentials.
f5xc-api-cloudinfrastructure-cloud-credentials-updateReplace Cloud Credentials.
f5xc-api-cloudinfrastructure-cloud-credentials-deleteDELETE Cloud Credentials.
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_assume_role-
spec.aws_secret_key-
spec.azure_client_secret-
spec.azure_pfx_certificate-
spec.gcp_cred_file-
OptionDescriptionRecommended
spec.aws_assume_role.custom_external_id-
spec.aws_assume_role.external_id_is_optional-
spec.aws_assume_role.external_id_is_tenant_id-
OptionDescriptionRecommended
spec.aws_secret_key.secret_key.blindfold_secret_info-
spec.aws_secret_key.secret_key.clear_secret_info-

Ask Claude to help you work with Cloud Credentials resources:

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

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

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

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