-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathindex.d.ts
More file actions
131 lines (111 loc) · 3.93 KB
/
Copy pathindex.d.ts
File metadata and controls
131 lines (111 loc) · 3.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
export = VaultClient;
declare class VaultClient {
constructor(options: VaultClient.VaultOptions);
static boot(name: string, options: VaultClient.VaultOptions): VaultClient;
static get(name: string): VaultClient;
static clear(name?: string): void;
read(path: string): Promise<VaultClient.Lease>;
list(path: string): Promise<VaultClient.Lease>;
write(path: string, data: Record<string, any>): Promise<any>;
delete(path: string): Promise<any>;
update(path: string, data: Record<string, any>): Promise<any>;
request(method: string, path: string, data?: Record<string, any>): Promise<any>;
deleteVersions(path: string, versions: number[]): Promise<any>;
undeleteVersions(path: string, versions: number[]): Promise<any>;
destroyVersions(path: string, versions: number[]): Promise<any>;
readMetadata(path: string): Promise<any>;
deleteMetadata(path: string): Promise<any>;
fillNodeConfig(): Promise<any>;
getHeaders(token: VaultClient.AuthToken): Record<string, string>;
close(): void;
}
declare namespace VaultClient {
interface Logger {
error(...args: any[]): void;
warn(...args: any[]): void;
info(...args: any[]): void;
debug(...args: any[]): void;
trace(...args: any[]): void;
}
interface ApiConfig {
url: string;
apiVersion?: string;
namespace?: string;
requestOptions?: Record<string, any>;
kv?: { autoDetect?: boolean };
engines?: Record<string, 1 | 2>;
}
interface AWSCredentials {
accessKeyId: string;
secretAccessKey: string;
sessionToken?: string;
}
interface TokenAuthConfig {
token: string;
namespace?: string;
}
interface AppRoleAuthConfig {
role_id: string;
secret_id?: string;
namespace?: string;
}
interface IAMAuthConfig {
role: string;
credentials?: AWSCredentials;
iam_server_id_header_value?: string;
region?: string;
namespace?: string;
}
interface KubernetesAuthConfig {
role: string;
tokenPath?: string;
namespace?: string;
}
interface JwtAuthConfigCommon {
role?: string;
namespace?: string;
}
type JwtDistributedClaimConfig =
| { distributedClaimAccessToken?: never; distributedClaimAccessTokenProvider?: never }
| { distributedClaimAccessToken: string; distributedClaimAccessTokenProvider?: never }
| { distributedClaimAccessTokenProvider: () => string | Promise<string>; distributedClaimAccessToken?: never };
type JwtAuthConfig = JwtAuthConfigCommon &
(
| { jwt: string; jwtPath?: never; jwtProvider?: never }
| { jwtPath: string; jwt?: never; jwtProvider?: never }
| { jwtProvider: () => string | Promise<string>; jwt?: never; jwtPath?: never }
) &
JwtDistributedClaimConfig;
interface AuthOptionsCommon {
mount?: string;
renewal?: boolean;
renewalFraction?: number;
renewalIncrement?: number;
}
type AuthOptions = AuthOptionsCommon &
(
| { type: 'token'; config: TokenAuthConfig }
| { type: 'appRole'; config: AppRoleAuthConfig }
| { type: 'iam'; config: IAMAuthConfig }
| { type: 'kubernetes'; config: KubernetesAuthConfig }
| { type: 'jwt'; config: JwtAuthConfig }
);
interface VaultOptions {
api: ApiConfig;
auth: AuthOptions;
logger?: Partial<Logger> | false;
}
interface Lease {
getValue<T = any>(key: string): T;
getData<T = Record<string, any>>(): T;
isRenewable(): boolean;
getMetadata(): Record<string, any> | undefined;
}
interface AuthToken {
getId(): string;
getAccessor(): string;
isExpired(): boolean;
isRenewable(): boolean;
getExpiresAt(): number | null;
}
}