projects
/
arvados.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge branch '22203-dunglam2k-s3-path-style'
[arvados.git]
/
services
/
workbench2
/
src
/
models
/
client-authorization.ts
1
// Copyright (C) The Arvados Authors. All rights reserved.
2
//
3
// SPDX-License-Identifier: AGPL-3.0
4
5
export interface ClientAuthorizationResource {
6
uuid: string;
7
apiToken: string;
8
userId: number;
9
createdByIpAddress: string;
10
lastUsedByIpAddress: string;
11
lastUsedAt: string;
12
expiresAt: string;
13
ownerUuid: string;
14
scopes: string[];
15
}