[SELC-9178] IAM: Removed productId, tenantId from ProductRolePermissionsList - #769
Merged
Conversation
gaetano-miglionico
requested review from
a team,
fabiosalamonenttdata,
giampiero-ferrara and
giulia-tremolada
as code owners
August 25, 2026 09:10
|
giulia-tremolada
approved these changes
Aug 25, 2026
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.



This pull request introduces support for a new
tenantIdparameter across the IAM API documentation, backend service logic, and related tests. The main focus is to make thetenantIdavailable in API requests and ensure it is consistently passed through service layers and tested throughout the codebase.API Documentation Updates:
Added a
tenantIdfield to relevant request and response schemas in bothapi-iam-docs.jsonandapi-docs.json, ensuring the OpenAPI specs reflect the new parameter. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10]Updated endpoint definitions to accept
tenantIdas an optional query parameter, with a default value of"AR". [1] [2] [3] [4] [5] [6] [7]Backend Service Changes:
iamExternalRestClient._getIAMProductRolePermissionsListandiamRestClient._hasIAMUserPermissionto include thetenantIdparameter, defaulting to"AR". This ensures tenant context is always passed to IAM permission checks and role queries. [1] [2] [3] [4] [5] [6]Testing Updates:
tenantIdparameter in all relevant mock and verification calls, ensuring test coverage for the new logic. [1] [2] [3] [4] [5] [6] [7] [8]Other Minor Changes:
ExchangeTokenServiceV2.java.Summary of Most Important Changes:
API Schema and Endpoint Enhancements:
tenantIdas a property and query parameter in relevant OpenAPI schemas and endpoints, with a default value of"AR". [1] [2] [3] [4] [5] [6] [7] [8] [9] [10]Backend Service Logic:
tenantIdparameter, ensuring tenant-aware authorization logic. [1] [2] [3] [4] [5] [6]Testing:
tenantIdparameter in all relevant IAM client calls. [1] [2] [3] [4] [5] [6] [7] [8]Code Cleanup:
ExchangeTokenServiceV2.java.Schema Consistency: