Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116803,7 +116803,14 @@ paths:
permissions:
- user_access_read
post:
description: Create a new role for your organization.
description: |-
Create a role for your organization.


**Note**: When a role is created, the following permissions are
automatically added, unless specifically excluded: Dashboards Read, Notebooks Read, Monitors Read, APM Read,
Vulnerability Management Read, RUM Apps Read, Incidents Read, SLOs
Read, CI Visibility Read, and CD Visibility Read.
operationId: CreateRole
requestBody:
content:
Expand Down
7 changes: 6 additions & 1 deletion src/datadog_api_client/v2/api/roles_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,12 @@ def create_role(
) -> RoleCreateResponse:
"""Create role.

Create a new role for your organization.
Create a role for your organization.

**Note** : When a role is created, the following permissions are
automatically added, unless specifically excluded: Dashboards Read, Notebooks Read, Monitors Read, APM Read,
Vulnerability Management Read, RUM Apps Read, Incidents Read, SLOs
Read, CI Visibility Read, and CD Visibility Read.

:type body: RoleCreateRequest
:rtype: RoleCreateResponse
Expand Down
Loading