Merge branch '17691-relax-add-ssh-validation' into main. Closes #17691
[arvados-workbench2.git] / src / models / client-authorization.ts
1 export interface ClientAuthorizationResource {
2     uuid: string;
3     apiToken: string;
4     apiClientId: number;
5     userId: number;
6     createdByIpAddress: string;
7     lastUsedByIpAddress: string;
8     lastUsedAt: string;
9     expiresAt: string;
10     ownerUuid: string;
11     scopes: string[];
12 }