Skip to content

Commit d4c5b3b

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 0b493f09 of spec repo
1 parent 43e9995 commit d4c5b3b

File tree

4 files changed

+17
-10
lines changed

4 files changed

+17
-10
lines changed

.apigentools-info

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-03-13 19:52:50.944317",
8-
"spec_repo_commit": "f64c1d75"
7+
"regenerated": "2025-03-13 21:01:01.116196",
8+
"spec_repo_commit": "0b493f09"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-03-13 19:52:50.959312",
13-
"spec_repo_commit": "f64c1d75"
12+
"regenerated": "2025-03-13 21:01:01.130820",
13+
"spec_repo_commit": "0b493f09"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36788,7 +36788,7 @@ servers:
3678836788
variables:
3678936789
site:
3679036790
default: datadoghq.com
36791-
description: The regional site for Datadog customers.
36791+
description: The regional site for a Datadog customer.
3679236792
enum:
3679336793
- datadoghq.com
3679436794
- us3.datadoghq.com

.generator/schemas/v2/openapi.yaml

+6-2
Original file line numberDiff line numberDiff line change
@@ -655,7 +655,7 @@ components:
655655
ResourceID:
656656
description: 'Identifier, formatted as `type:id`. Supported types: `connection`,
657657
`dashboard`, `notebook`, `reference-table`, `security-rule`, `slo`, `workflow`,
658-
`app-builder-app`, `connection`, `connection-group`.'
658+
`app-builder-app`, `connection`, `connection-group`, `rum-application`.'
659659
example: dashboard:abc-def-ghi
660660
in: path
661661
name: resource_id
@@ -45490,6 +45490,8 @@ paths:
4549045490

4549145491
- Connection Groups: `connection-group`
4549245492

45493+
- RUM Applications: `rum-application`
45494+
4549345495

4549445496
#### Supported relations for resources
4549545497

@@ -45523,7 +45525,9 @@ paths:
4552345525

4552445526
Connections | `viewer`, `resolver`, `editor`
4552545527

45526-
Connection Groups | `viewer`, `editor`'
45528+
Connection Groups | `viewer`, `editor`
45529+
45530+
RUM Application | `viewer`, `editor`'
4552745531
operationId: UpdateRestrictionPolicy
4552845532
parameters:
4552945533
- $ref: '#/components/parameters/ResourceID'

src/datadog_api_client/v2/api/restriction_policies_api.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def delete_restriction_policy(
112112
113113
Deletes the restriction policy associated with a specified resource.
114114
115-
:param resource_id: Identifier, formatted as ``type:id``. Supported types: ``connection`` , ``dashboard`` , ``notebook`` , ``reference-table`` , ``security-rule`` , ``slo`` , ``workflow`` , ``app-builder-app`` , ``connection`` , ``connection-group``.
115+
:param resource_id: Identifier, formatted as ``type:id``. Supported types: ``connection`` , ``dashboard`` , ``notebook`` , ``reference-table`` , ``security-rule`` , ``slo`` , ``workflow`` , ``app-builder-app`` , ``connection`` , ``connection-group`` , ``rum-application``.
116116
:type resource_id: str
117117
:rtype: None
118118
"""
@@ -129,7 +129,7 @@ def get_restriction_policy(
129129
130130
Retrieves the restriction policy associated with a specified resource.
131131
132-
:param resource_id: Identifier, formatted as ``type:id``. Supported types: ``connection`` , ``dashboard`` , ``notebook`` , ``reference-table`` , ``security-rule`` , ``slo`` , ``workflow`` , ``app-builder-app`` , ``connection`` , ``connection-group``.
132+
:param resource_id: Identifier, formatted as ``type:id``. Supported types: ``connection`` , ``dashboard`` , ``notebook`` , ``reference-table`` , ``security-rule`` , ``slo`` , ``workflow`` , ``app-builder-app`` , ``connection`` , ``connection-group`` , ``rum-application``.
133133
:type resource_id: str
134134
:rtype: RestrictionPolicyResponse
135135
"""
@@ -167,6 +167,7 @@ def update_restriction_policy(
167167
* App Builder Apps: ``app-builder-app``
168168
* Connections: ``connection``
169169
* Connection Groups: ``connection-group``
170+
* RUM Applications: ``rum-application``
170171
171172
**Supported relations for resources**
172173
@@ -203,9 +204,11 @@ def update_restriction_policy(
203204
- ``viewer`` , ``resolver`` , ``editor``
204205
* - Connection Groups
205206
- ``viewer`` , ``editor``
207+
* - RUM Application
208+
- ``viewer`` , ``editor``
206209
207210
208-
:param resource_id: Identifier, formatted as ``type:id``. Supported types: ``connection`` , ``dashboard`` , ``notebook`` , ``reference-table`` , ``security-rule`` , ``slo`` , ``workflow`` , ``app-builder-app`` , ``connection`` , ``connection-group``.
211+
:param resource_id: Identifier, formatted as ``type:id``. Supported types: ``connection`` , ``dashboard`` , ``notebook`` , ``reference-table`` , ``security-rule`` , ``slo`` , ``workflow`` , ``app-builder-app`` , ``connection`` , ``connection-group`` , ``rum-application``.
209212
:type resource_id: str
210213
:param body: Restriction policy payload
211214
:type body: RestrictionPolicyUpdateRequest

0 commit comments

Comments
 (0)