Skip to content

Commit ef6bf56

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit cfc0156e of spec repo
1 parent 5ab5990 commit ef6bf56

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
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-17 21:06:24.773354",
8-
"spec_repo_commit": "2dfddc18"
7+
"regenerated": "2025-03-19 18:54:48.180053",
8+
"spec_repo_commit": "cfc0156e"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-03-17 21:06:24.789125",
13-
"spec_repo_commit": "2dfddc18"
12+
"regenerated": "2025-03-19 18:54:48.197031",
13+
"spec_repo_commit": "cfc0156e"
1414
}
1515
}
1616
}

.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
@@ -45481,6 +45481,8 @@ paths:
4548145481

4548245482
- Connection Groups: `connection-group`
4548345483

45484+
- RUM Applications: `rum-application`
45485+
4548445486

4548545487
#### Supported relations for resources
4548645488

@@ -45514,7 +45516,9 @@ paths:
4551445516

4551545517
Connections | `viewer`, `resolver`, `editor`
4551645518

45517-
Connection Groups | `viewer`, `editor`'
45519+
Connection Groups | `viewer`, `editor`
45520+
45521+
RUM Application | `viewer`, `editor`'
4551845522
operationId: UpdateRestrictionPolicy
4551945523
parameters:
4552045524
- $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)