Skip to content

Code Base Integration

List the set of code_base_integration in a namespace.

ToolDescription
f5xc-api-api-code-base-integration-createCREATE Code Base Integration.
f5xc-api-api-code-base-integration-getGET Code Base Integration.
f5xc-api-api-code-base-integration-listList Code Base Integration.
f5xc-api-api-code-base-integration-updateReplace Code Base Integration.
f5xc-api-api-code-base-integration-deleteDELETE Code Base Integration.
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.code_base_integration.azure_repos-
spec.code_base_integration.bitbucket-
spec.code_base_integration.bitbucket_server-
spec.code_base_integration.github-
spec.code_base_integration.github_enterprise-
spec.code_base_integration.gitlab-
spec.code_base_integration.gitlab_enterprise-
OptionDescriptionRecommended
spec.code_base_integration.azure_repos.access_token.blindfold_secret_info-
spec.code_base_integration.azure_repos.access_token.clear_secret_info-

Ask Claude to help you work with Code Base Integration resources:

“Create a code-base-integration named ‘example’ in the ‘production’ namespace”

“List all code-base-integrations in the ‘production’ namespace”

“Get details of the code-base-integration named ‘example’ in namespace ‘production‘“

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