forked from sr2/cloud-api
parent
768a3881ef
commit
939abaefe9
4 changed files with 44 additions and 17 deletions
|
|
@ -12,6 +12,7 @@ from pydantic import EmailStr, ConfigDict, Field
|
|||
|
||||
from src.schemas import (
|
||||
CustomBaseModel,
|
||||
ResourceName,
|
||||
ServiceIDMixin,
|
||||
OrgIDMixin,
|
||||
UserIDMixin,
|
||||
|
|
@ -43,6 +44,11 @@ class GroupSchema(CustomBaseModel):
|
|||
name: str
|
||||
|
||||
|
||||
class IAMCAoRRequest(CustomBaseModel):
|
||||
action: str
|
||||
rn: ResourceName
|
||||
|
||||
|
||||
class IAMGetGroupPermissionsResponse(CustomBaseModel):
|
||||
permissions: list[PermissionSchema]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue