Add serving endpoint permissions management (get and update ACLs)#416
Open
jralfonsog wants to merge 4 commits intodatabricks-solutions:mainfrom
Open
Add serving endpoint permissions management (get and update ACLs)#416jralfonsog wants to merge 4 commits intodatabricks-solutions:mainfrom
jralfonsog wants to merge 4 commits intodatabricks-solutions:mainfrom
Conversation
Supports reading ACLs and granting/modifying permissions for users, groups, and service principals. Uses PATCH (additive merge) for safety over PUT (full replace). Co-authored-by: Isaac
Co-authored-by: Isaac
Co-authored-by: Isaac
- Docstrings: opening """ on its own line - Returns sections: bullet list format for dict keys Co-authored-by: Isaac
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
get_serving_endpoint_permissions()retrieves the full ACL for a serving endpoint, including inherited permissions (e.g. admins group)update_serving_endpoint_permissions()grants or modifies permissions using PATCH (additive merge) — existing permissions not in the list are left unchangedget(name).idPermission levels
CAN_VIEWCAN_QUERYCAN_MANAGEPrincipal types
Supports
user_name(email),group_name, andservice_principal_name.Changes
serving/endpoints.pyget_serving_endpoint_permissions(), +update_serving_endpoint_permissions(), +_resolve_endpoint_id()helperserving/__init__.pytools/serving.py@mcp.tool(timeout=30)wrapperstests/unit/test_serving_permissions.pyDesign decisions
update_permissionsuses the SDK's PATCH method (additive merge) instead of PUT (full replace) to avoid accidentally removing existing permissions{principal, principal_type, permission_level, inherited}dicts for LLM readabilityResourceDoesNotExist/NotFoundfor clean error messagesTest plan
get_permissionsagainstaws-feworkspace — returned 2 ACL entries (user + inherited admins group)update_permissionstest to avoid modifying shared endpoint ACLsThis pull request was AI-assisted by Isaac