Skip to content

Add rum application to restriction policy #2105

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2025-03-20 15:01:19.160046",
"spec_repo_commit": "0f5c928e"
"regenerated": "2025-03-24 15:09:12.217686",
"spec_repo_commit": "f532b3e9"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-03-20 15:01:19.267162",
"spec_repo_commit": "0f5c928e"
"regenerated": "2025-03-24 15:09:12.238172",
"spec_repo_commit": "f532b3e9"
}
}
}
8 changes: 6 additions & 2 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ components:
ResourceID:
description: 'Identifier, formatted as `type:id`. Supported types: `connection`,
`dashboard`, `notebook`, `reference-table`, `security-rule`, `slo`, `workflow`,
`app-builder-app`, `connection`, `connection-group`.'
`app-builder-app`, `connection`, `connection-group`, `rum-application`.'
example: dashboard:abc-def-ghi
in: path
name: resource_id
Expand Down Expand Up @@ -45481,6 +45481,8 @@ paths:

- Connection Groups: `connection-group`

- RUM Applications: `rum-application`


#### Supported relations for resources

Expand Down Expand Up @@ -45514,7 +45516,9 @@ paths:

Connections | `viewer`, `resolver`, `editor`

Connection Groups | `viewer`, `editor`'
Connection Groups | `viewer`, `editor`

RUM Application | `viewer`, `editor`'
operationId: UpdateRestrictionPolicy
parameters:
- $ref: '#/components/parameters/ResourceID'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -337,23 +337,23 @@ export class RestrictionPoliciesApiResponseProcessor {

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

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

export interface RestrictionPoliciesApiUpdateRestrictionPolicyRequest {
/**
* Identifier, formatted as `type:id`. Supported types: `connection`, `dashboard`, `notebook`, `reference-table`, `security-rule`, `slo`, `workflow`, `app-builder-app`, `connection`, `connection-group`.
* Identifier, formatted as `type:id`. Supported types: `connection`, `dashboard`, `notebook`, `reference-table`, `security-rule`, `slo`, `workflow`, `app-builder-app`, `connection`, `connection-group`, `rum-application`.
* @type string
*/
resourceId: string;
Expand Down Expand Up @@ -449,6 +449,7 @@ export class RestrictionPoliciesApi {
* - App Builder Apps: `app-builder-app`
* - Connections: `connection`
* - Connection Groups: `connection-group`
* - RUM Applications: `rum-application`
*
* #### Supported relations for resources
* Resource Type | Supported Relations
Expand All @@ -467,6 +468,7 @@ export class RestrictionPoliciesApi {
* App Builder Apps | `viewer`, `editor`
* Connections | `viewer`, `resolver`, `editor`
* Connection Groups | `viewer`, `editor`
* RUM Application | `viewer`, `editor`
* @param param The request object
*/
public updateRestrictionPolicy(
Expand Down