]> git.arvados.org - arvados-workbench2.git/blob - src/models/ssh-key.ts
Merge branch '19462-colorscheme' refs #19462
[arvados-workbench2.git] / src / models / ssh-key.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import { Resource } from 'models/resource';
6
7 export enum KeyType {
8     SSH = 'SSH'
9 }
10
11 export interface SshKeyResource extends Resource {
12     name: string;
13     keyType: KeyType;
14     authorizedUserUuid: string;
15     publicKey: string;
16     expiresAt: string;
17 }