Skip to content
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

feat(BPDM): Add Pool Use Case Consumer Role #245

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
Original file line number Diff line number Diff line change
Expand Up @@ -284,17 +284,23 @@ Managed via Client: **Cl7-CX-BPDM**
| read_metadata | x | x | | | | | | | | | | x |
| read_partner | x | x | | | | | | | | | | |
| read_partner_member | x | x | x | | | | | | | | | |
| read_partner_member_owned | x | x | | | | | | | | | | |
| write_metadata | x | x |  x | x | x | x | x | x | x | x | x | x |
| write_partner | x | x | | | | | | | | | | |

Technical Users*: BPDM Admin, BPDM Pool Consumer & BPDM Pool Sharing Consumer.

Technical Users*: BPDM Admin, BPDM Pool Consumer, BPDM Pool Use Case Consumer, & BPDM Pool Sharing Consumer.

Following the permission assignment

- BPDM Pool Consumer
- read_partner_member
- read_changelog_member
- read_metadata

- BPDM Pool Use Case Consumer
- read_partner_member_owned
- read_metadata

- BPDM Pool Sharing Consumer
- read_partner
Expand Down
32 changes: 30 additions & 2 deletions import/realm-config/generic/catenax-central/CX-Central-realm.json
Original file line number Diff line number Diff line change
Expand Up @@ -1130,7 +1130,8 @@
"read_changelog",
"read_partner_member",
"read_metadata",
"read_changelog_member"
"read_changelog_member",
"read_partner_member_owned"
],
"Cl5-CX-Custodian": [
"add_wallet",
Expand Down Expand Up @@ -1607,6 +1608,15 @@
"clientRole": true,
"containerId": "2ef350bf-f017-4696-9f97-e01db49341d2",
"attributes": {}
},
{
"id": "426a1cf1-46a0-484e-b2d6-436bb23a5df8",
"name": "read_partner_member_owned",
"description": "Allow read access to all business partners that are owned by Catena-X members",
"composite": false,
"clientRole": true,
"containerId": "2ef350bf-f017-4696-9f97-e01db49341d2",
"attributes": {}
}
],
"technical_roles_management": [
Expand Down Expand Up @@ -1683,7 +1693,8 @@
"read_partner_member",
"write_metadata",
"read_changelog_member",
"read_metadata"
"read_metadata",
"read_partner_member_owned"
]
}
},
Expand Down Expand Up @@ -1763,6 +1774,23 @@
"containerId": "114605ea-9c64-4dff-9bc7-90fe02a004c3",
"attributes": {}
},
{
"id": "f024abdd-a80e-49bf-8add-e7a45fb609a4",
"name": "BPDM Pool Use Case Consumer",
"description": "Role for Catena-X use case providers needing access to extended Cx member data",
"composite": true,
"composites": {
"client": {
"Cl7-CX-BPDM": [
"read_partner_member_owned",
"read_metadata"
]
}
},
"clientRole": true,
"containerId": "114605ea-9c64-4dff-9bc7-90fe02a004c3",
"attributes": {}
},
{
"id": "d5203308-34fd-4357-b72b-5cc617a7c873",
"name": "Registration Internal",
Expand Down
Loading