projects
/
arvados-workbench2.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
refs #master fix auth actions test
[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
}