IntegrationsDatadogActions
List Datadog role permissions
List permissions granted to one role. Requires user_access_read. Returns bounded permission rows only.
role_permissions.list · Datadog · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
role_id | string | Yes | minLength 1; maxLength 128 |
page_size | integer | No | minimum 1; maximum 100 |
cursor | string | No | minLength 1; maxLength 512 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
permissions | array<object> | Yes | maxItems 100 |
permissions[] | object | Yes | additionalProperties false |
permissions[].id | string | Yes | minLength 1; maxLength 128 |
permissions[].name | string | Yes | minLength 1; maxLength 200 |
permissions[].description | string | No | maxLength 4000 |
next_cursor | string | No | minLength 1; maxLength 512 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"role_id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"page_size": {
"type": "integer",
"minimum": 1,
"maximum": 100
},
"cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"role_id"
]
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"permissions": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"description": {
"type": "string",
"maxLength": 4000
}
},
"required": [
"id",
"name"
]
},
"maxItems": 100
},
"next_cursor": {
"type": "string",
"minLength": 1,
"maxLength": 512
}
},
"required": [
"permissions"
]
}