コンテンツにスキップ

List logging quota policies

GET
/api/admin/logging-policies/quota-policies
Code sample: Shell / cURL
curl --request GET \
--url 'https://auth.example.com/api/admin/logging-policies/quota-policies?scope_type=platform' \
--header 'Authorization: Bearer <token>'

List active logging quota policies visible to the current admin scope.

scope_type
string
Allowed values: platform tenant

Quota policy scope type filter.

scope_id
string

Quota policy scope id filter.

limit
integer format: int64
>= 1 <= 500

Maximum number of items to return.

Logging quota policy list.

Media type application/json
object
items
required
Array<object>
object
key
additional properties
total
required
integer
page
object
key
additional properties
key
additional properties
Example
{
"items": [
{
"id": "lqp_123",
"scope_type": "tenant",
"scope_id": "tenant_123",
"log_type": "audit",
"plane": "control",
"lane": "default",
"metric_name": "byte_count",
"window_kind": "day",
"soft_limit": 1000000,
"hard_limit": 2000000,
"warning_ratio": 0.8,
"enforcement_mode": "warn_only",
"critical_behavior": "never_block",
"status": "active",
"created_by": "admin_123",
"updated_by": "admin_123",
"created_at": 1770000000000,
"updated_at": 1770000000000,
"version": 1
}
],
"total": 1
}

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"
}