コンテンツにスキップ

Get tenant runtime profiles

GET
/api/admin/tenants/{id}/runtime-profiles
Code sample: Shell / cURL
curl --request GET \
--url https://auth.example.com/api/admin/tenants/example/runtime-profiles \
--header 'Authorization: Bearer <token>'

Resolves tenant runtime profile references, effective storage/audit/residency profiles, and storage policy status.

id
required
string

Tenant runtime profile resolution response.

Media type application/json
object
tenant_id
string
registry_backend
string
refs
object
key
additional properties
effective
object
storage
object
key
additional properties
audit
object
key
additional properties
residency
object
key
additional properties
key
additional properties
storage_policy
object
key
additional properties
key
additional properties
Example
{
"tenant_id": "acme",
"registry_backend": "kv",
"refs": {
"storageProfileId": "default-storage",
"auditProfileId": "default-audit",
"residencyProfileId": "global",
"inherited": {
"storage": true,
"audit": true,
"residency": true
}
},
"effective": {
"storage": {
"id": "default-storage",
"kind": "storage",
"label": "Default storage"
},
"audit": {
"id": "default-audit",
"kind": "audit",
"label": "Default audit"
},
"residency": {
"id": "global",
"kind": "residency",
"label": "Global"
}
},
"storage_policy": {
"tenantOverrideAllowed": true,
"tenantOverrideRequested": false
}
}

Error response.

Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{
"error": "example",
"message": "example",
"error_description": "example"
}

Error response.

Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{
"error": "example",
"message": "example",
"error_description": "example"
}

Error response.

Media type application/json
object
error
string
message
string
error_description
string
key
additional properties
Example generated
{
"error": "example",
"message": "example",
"error_description": "example"
}