AivenOrganizationPermissionGrantPrincipalByGroupKeyArgs
interface AivenOrganizationPermissionGrantPrincipalByGroupKeyArgs {
groupKey: string;
principalId?: undefined;
principalType?: undefined;
userKey?: undefined;
}Permission grant principal reference by group key.
Example
CODE
const principalByGroupKey: AivenOrganizationPermissionGrantPrincipalByGroupKeyArgs = {
groupKey: 'platform-admins',
};Properties
groupKey: string
Group reference key.
principalId: undefined
Direct principal ID is not allowed when groupKey is used.
principalType: undefined
Direct principal type is not allowed when groupKey is used.
userKey: undefined
User key is not allowed when groupKey is used.