Service Credential
Service Credential provides tools for creating, listing, retrieving, and updating resources in F5 Distributed Cloud.
| Tool | Description |
|---|---|
f5xc-api-authentication-service-credential-create | Bulk Revoke service credential. |
f5xc-api-authentication-service-credential-get | Get Service Credential. |
f5xc-api-authentication-service-credential-list | List service credentials. |
f5xc-api-authentication-service-credential-update | Update service credentials. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
name | Credential name… | example-resource |
namespace | Namespace… | system |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Service Credential resources:
Create Service Credential
Section titled “Create Service Credential”“Create a service-credential named ‘example’ in the ‘production’ namespace”
List Service Credentials
Section titled “List Service Credentials”“List all service-credentials in the ‘production’ namespace”
Get Service Credential Details
Section titled “Get Service Credential Details”“Get details of the service-credential named ‘example’ in namespace ‘production‘“
CURL Examples
Section titled “CURL Examples”# List resourcescurl -X GET "https://${TENANT}.console.ves.volterra.io/api/web/namespaces/$${PARAM}/service_credentials" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"
# Get specific resourcecurl -X GET "https://${TENANT}.console.ves.volterra.io/api/web/namespaces/$${PARAM}/service_credentials/$${PARAM}" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"
# Create resourcecurl -X POST "https://${TENANT}.console.ves.volterra.io/api/web/namespaces/system/bulk_revoke/service_credentials" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @service_credential.json