Skip to content

Child Tenant Manager

Creates a child_tenant_manager config instance. Name of the object is the name of the child tenant manager to be created.

ToolDescription
f5xc-api-tenantandidentity-child-tenant-manager-createChild Tenant Manager.
f5xc-api-tenantandidentity-child-tenant-manager-getGET Child Tenant Manager.
f5xc-api-tenantandidentity-child-tenant-manager-listList Child Tenant Manager.
f5xc-api-tenantandidentity-child-tenant-manager-updateReplace Child Tenant Manager.
f5xc-api-tenantandidentity-child-tenant-manager-deleteDELETE Child Tenant Manager.
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.tenant_owner_group-
OptionDescriptionRecommended
spec.banner_message.content_html-
spec.banner_message.content_text-

Ask Claude to help you work with Child Tenant Manager resources:

“Create a child-tenant-manager named ‘example’ in the ‘production’ namespace”

“List all child-tenant-managers in the ‘production’ namespace”

“Get details of the child-tenant-manager named ‘example’ in namespace ‘production‘“

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