Skip to content

Commit 7fe68c7

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 0b493f09 of spec repo
1 parent 781b6a7 commit 7fe68c7

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-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:55.334120",
8-
"spec_repo_commit": "f64c1d75"
7+
"regenerated": "2025-03-13 21:01:04.611113",
8+
"spec_repo_commit": "0b493f09"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-03-13 19:52:55.349813",
13-
"spec_repo_commit": "f64c1d75"
12+
"regenerated": "2025-03-13 21:01:04.628476",
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'

packages/datadog-api-client-v2/apis/RestrictionPoliciesApi.ts

+5-3
Original file line numberDiff line numberDiff line change
@@ -337,23 +337,23 @@ export class RestrictionPoliciesApiResponseProcessor {
337337

338338
export interface RestrictionPoliciesApiDeleteRestrictionPolicyRequest {
339339
/**
340-
* Identifier, formatted as `type:id`. Supported types: `connection`, `dashboard`, `notebook`, `reference-table`, `security-rule`, `slo`, `workflow`, `app-builder-app`, `connection`, `connection-group`.
340+
* Identifier, formatted as `type:id`. Supported types: `connection`, `dashboard`, `notebook`, `reference-table`, `security-rule`, `slo`, `workflow`, `app-builder-app`, `connection`, `connection-group`, `rum-application`.
341341
* @type string
342342
*/
343343
resourceId: string;
344344
}
345345

346346
export interface RestrictionPoliciesApiGetRestrictionPolicyRequest {
347347
/**
348-
* Identifier, formatted as `type:id`. Supported types: `connection`, `dashboard`, `notebook`, `reference-table`, `security-rule`, `slo`, `workflow`, `app-builder-app`, `connection`, `connection-group`.
348+
* Identifier, formatted as `type:id`. Supported types: `connection`, `dashboard`, `notebook`, `reference-table`, `security-rule`, `slo`, `workflow`, `app-builder-app`, `connection`, `connection-group`, `rum-application`.
349349
* @type string
350350
*/
351351
resourceId: string;
352352
}
353353

354354
export interface RestrictionPoliciesApiUpdateRestrictionPolicyRequest {
355355
/**
356-
* Identifier, formatted as `type:id`. Supported types: `connection`, `dashboard`, `notebook`, `reference-table`, `security-rule`, `slo`, `workflow`, `app-builder-app`, `connection`, `connection-group`.
356+
* Identifier, formatted as `type:id`. Supported types: `connection`, `dashboard`, `notebook`, `reference-table`, `security-rule`, `slo`, `workflow`, `app-builder-app`, `connection`, `connection-group`, `rum-application`.
357357
* @type string
358358
*/
359359
resourceId: string;
@@ -449,6 +449,7 @@ export class RestrictionPoliciesApi {
449449
* - App Builder Apps: `app-builder-app`
450450
* - Connections: `connection`
451451
* - Connection Groups: `connection-group`
452+
* - RUM Applications: `rum-application`
452453
*
453454
* #### Supported relations for resources
454455
* Resource Type | Supported Relations
@@ -467,6 +468,7 @@ export class RestrictionPoliciesApi {
467468
* App Builder Apps | `viewer`, `editor`
468469
* Connections | `viewer`, `resolver`, `editor`
469470
* Connection Groups | `viewer`, `editor`
471+
* RUM Application | `viewer`, `editor`
470472
* @param param The request object
471473
*/
472474
public updateRestrictionPolicy(

0 commit comments

Comments
 (0)