Skip to content
Merged
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-01-03 18:07:37.914799",
"spec_repo_commit": "08abd462"
"regenerated": "2025-01-06 16:11:20.410407",
"spec_repo_commit": "24e28b93"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2025-01-03 18:07:37.929790",
"spec_repo_commit": "08abd462"
"regenerated": "2025-01-06 16:11:20.425728",
"spec_repo_commit": "24e28b93"
}
}
}
2 changes: 1 addition & 1 deletion .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40992,7 +40992,7 @@ paths:
name: allow_self_lockout
required: false
schema:
type: string
type: boolean
requestBody:
content:
application/json:
Expand Down
2 changes: 1 addition & 1 deletion features/scenarios_model_mapping.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2021,7 +2021,7 @@
},
"v2.UpdateRestrictionPolicy" => {
"resource_id" => "String",
"allow_self_lockout" => "String",
"allow_self_lockout" => "Boolean",
"body" => "RestrictionPolicyUpdateRequest",
},
"v2.AggregateRUMEvents" => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def update_restriction_policy(resource_id, body, opts = {})
# @param resource_id [String] Identifier, formatted as `type:id`. Supported types: `connection`, `dashboard`, `notebook`, `reference-table`, `security-rule`, `slo`.
# @param body [RestrictionPolicyUpdateRequest] Restriction policy payload
# @param opts [Hash] the optional parameters
# @option opts [String] :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.
# @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.
# @return [Array<(RestrictionPolicyResponse, Integer, Hash)>] RestrictionPolicyResponse data, response status code and response headers
def update_restriction_policy_with_http_info(resource_id, body, opts = {})

Expand Down
Loading