- Home
- API MCP Server
- tools
- cloud-infrastructure
- Cloud Credentials
Cloud Credentials
List the set of cloud_credentials in a namespace.
| Tool | Description |
|---|---|
f5xc-api-cloudinfrastructure-cloud-credentials-create | Create Cloud Credentials. |
f5xc-api-cloudinfrastructure-cloud-credentials-get | GET Cloud Credentials. |
f5xc-api-cloudinfrastructure-cloud-credentials-list | List Cloud Credentials. |
f5xc-api-cloudinfrastructure-cloud-credentials-update | Replace Cloud Credentials. |
f5xc-api-cloudinfrastructure-cloud-credentials-delete | DELETE Cloud Credentials. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
metadata.namespace | Namespace | - |
name | Name | - |
namespace | Namespace | - |
metadata.name | Name | - |
Query Parameters
Section titled “Query Parameters”| Parameter | Description | Example |
|---|---|---|
response_format | The format in which the configuration object is to be fetched. This could be for example | - |
label_filter | A LabelSelectorType expression that every item in list response will satisfy. | - |
report_fields | The report_fields parameter | - |
report_status_fields | The report_status_fields parameter | - |
Configuration Choices
Section titled “Configuration Choices”This resource includes mutually exclusive configuration options:
| Option | Description | Recommended |
|---|---|---|
spec.aws_assume_role | - | |
spec.aws_secret_key | - | |
spec.azure_client_secret | - | |
spec.azure_pfx_certificate | - | |
spec.gcp_cred_file | - |
external_id
Section titled “external_id”| Option | Description | Recommended |
|---|---|---|
spec.aws_assume_role.custom_external_id | - | |
spec.aws_assume_role.external_id_is_optional | - | |
spec.aws_assume_role.external_id_is_tenant_id | - |
secret_info_oneof
Section titled “secret_info_oneof”| Option | Description | Recommended |
|---|---|---|
spec.aws_secret_key.secret_key.blindfold_secret_info | - | |
spec.aws_secret_key.secret_key.clear_secret_info | - |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Cloud Credentials resources:
Create Cloud Credentials
Section titled “Create Cloud Credentials”“Create a cloud-credentials named ‘example’ in the ‘production’ namespace”
List Cloud Credentialss
Section titled “List Cloud Credentialss”“List all cloud-credentialss in the ‘production’ namespace”
Get Cloud Credentials Details
Section titled “Get Cloud Credentials Details”“Get details of the cloud-credentials named ‘example’ in namespace ‘production‘“
CURL Examples
Section titled “CURL Examples”# List resourcescurl -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 resourcecurl -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 resourcecurl -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 resourcecurl -X DELETE "https://${TENANT}.console.ves.volterra.io/api/config/namespaces/${NAMESPACE}/cloud_credentialss/<name>" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"