Mapper
Mapper provides tools for creating, and retrieving resources in F5 Distributed Cloud.
| Tool | Description |
|---|---|
f5xc-api-tenantandidentity-mapper-create | Update OIDC mappers. |
f5xc-api-tenantandidentity-mapper-get | Get OIDC mappers. |
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”| Parameter | Description | Example |
|---|---|---|
name | OIDC provider name Name contains name/alias of underlying OIDC provider. | example-resource |
namespace | Namespace Namespace contains namespace of OIDC provider. Namespace should be system. | system |
Example Usage
Section titled “Example Usage”Ask Claude to help you work with Mapper resources:
Create Mapper
Section titled “Create Mapper”“Create a mapper named ‘example’ in the ‘production’ namespace”
Get Mapper Details
Section titled “Get Mapper Details”“Get details of the mapper named ‘example’ in namespace ‘production‘“
CURL Examples
Section titled “CURL Examples”# Get specific resourcecurl -X GET "https://${TENANT}.console.ves.volterra.io/api/web/custom/namespaces/$${PARAM}/oidc_providers/$${PARAM}/mappers" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}"
# Create resourcecurl -X POST "https://${TENANT}.console.ves.volterra.io/api/web/custom/namespaces/$${PARAM}/oidc_providers/$${PARAM}/mappers" \ -H "Authorization: APIToken ${F5XC_API_TOKEN}" \ -H "Content-Type: application/json" \ -d @mapper.json