Skip to content

Commit b57061f

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 0b493f09 of spec repo
1 parent 8a58533 commit b57061f

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:49.528972",
8-
"spec_repo_commit": "f64c1d75"
7+
"regenerated": "2025-03-13 21:01:02.365891",
8+
"spec_repo_commit": "0b493f09"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-03-13 19:52:49.544117",
13-
"spec_repo_commit": "f64c1d75"
12+
"regenerated": "2025-03-13 21:01:02.383075",
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'

lib/datadog_api_client/v2/api/restriction_policies_api.rb

+5-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def delete_restriction_policy(resource_id, opts = {})
3535
#
3636
# Deletes the restriction policy associated with a specified resource.
3737
#
38-
# @param resource_id [String] Identifier, formatted as `type:id`. Supported types: `connection`, `dashboard`, `notebook`, `reference-table`, `security-rule`, `slo`, `workflow`, `app-builder-app`, `connection`, `connection-group`.
38+
# @param resource_id [String] Identifier, formatted as `type:id`. Supported types: `connection`, `dashboard`, `notebook`, `reference-table`, `security-rule`, `slo`, `workflow`, `app-builder-app`, `connection`, `connection-group`, `rum-application`.
3939
# @param opts [Hash] the optional parameters
4040
# @return [Array<(nil, Integer, Hash)>] nil, response status code and response headers
4141
def delete_restriction_policy_with_http_info(resource_id, opts = {})
@@ -100,7 +100,7 @@ def get_restriction_policy(resource_id, opts = {})
100100
#
101101
# Retrieves the restriction policy associated with a specified resource.
102102
#
103-
# @param resource_id [String] Identifier, formatted as `type:id`. Supported types: `connection`, `dashboard`, `notebook`, `reference-table`, `security-rule`, `slo`, `workflow`, `app-builder-app`, `connection`, `connection-group`.
103+
# @param resource_id [String] Identifier, formatted as `type:id`. Supported types: `connection`, `dashboard`, `notebook`, `reference-table`, `security-rule`, `slo`, `workflow`, `app-builder-app`, `connection`, `connection-group`, `rum-application`.
104104
# @param opts [Hash] the optional parameters
105105
# @return [Array<(RestrictionPolicyResponse, Integer, Hash)>] RestrictionPolicyResponse data, response status code and response headers
106106
def get_restriction_policy_with_http_info(resource_id, opts = {})
@@ -181,6 +181,7 @@ def update_restriction_policy(resource_id, body, opts = {})
181181
# - App Builder Apps: `app-builder-app`
182182
# - Connections: `connection`
183183
# - Connection Groups: `connection-group`
184+
# - RUM Applications: `rum-application`
184185
#
185186
# #### Supported relations for resources
186187
# Resource Type | Supported Relations
@@ -199,8 +200,9 @@ def update_restriction_policy(resource_id, body, opts = {})
199200
# App Builder Apps | `viewer`, `editor`
200201
# Connections | `viewer`, `resolver`, `editor`
201202
# Connection Groups | `viewer`, `editor`
203+
# RUM Application | `viewer`, `editor`
202204
#
203-
# @param resource_id [String] Identifier, formatted as `type:id`. Supported types: `connection`, `dashboard`, `notebook`, `reference-table`, `security-rule`, `slo`, `workflow`, `app-builder-app`, `connection`, `connection-group`.
205+
# @param resource_id [String] Identifier, formatted as `type:id`. Supported types: `connection`, `dashboard`, `notebook`, `reference-table`, `security-rule`, `slo`, `workflow`, `app-builder-app`, `connection`, `connection-group`, `rum-application`.
204206
# @param body [RestrictionPolicyUpdateRequest] Restriction policy payload
205207
# @param opts [Hash] the optional parameters
206208
# @option opts [Boolean] :allow_self_lockout Allows admins (users with the `user_access_manage` permission) to remove their own access from the resource if set to `true`. By default, this is set to `false`, preventing admins from locking themselves out.

0 commit comments

Comments
 (0)