mirror of
https://github.com/datahub-project/datahub.git
synced 2025-08-30 03:56:04 +00:00
31 lines
987 B
TypeScript
31 lines
987 B
TypeScript
import { AccessControlAccessType } from 'wherehows-web/utils/datasets/acl-access';
|
|
import { IDropDownOption } from 'wherehows-web/typings/app/dataset-compliance';
|
|
|
|
/**
|
|
* Describes the interface for an AccessControlEntry object
|
|
* @interface IAccessControlEntry
|
|
*/
|
|
export interface IAccessControlEntry {
|
|
principal: string;
|
|
accessType: Array<string>;
|
|
businessJustification: string;
|
|
expiresAt: number | null;
|
|
}
|
|
|
|
/**
|
|
* Describes the interface for an AccessControl AccessType dropdown
|
|
* @interface IAccessControlAccessTypeOption
|
|
*/
|
|
export interface IAccessControlAccessTypeOption extends IDropDownOption<AccessControlAccessType> {}
|
|
|
|
/**
|
|
* Describes the interface for an IRequestAccessControlEntry object
|
|
* @interface IRequestAccessControlEntry
|
|
*/
|
|
export type IRequestAccessControlEntry = Pick<IAccessControlEntry, 'businessJustification'> & {
|
|
expiresAt?: IAccessControlEntry['expiresAt'];
|
|
accessType: string;
|
|
};
|
|
|
|
export type IGetAclsResponse = Array<IAccessControlEntry>;
|