forked from aws/language-server-runtimes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathidentity-management.ts
More file actions
402 lines (341 loc) · 11.9 KB
/
Copy pathidentity-management.ts
File metadata and controls
402 lines (341 loc) · 11.9 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
import {
IamCredentials,
LSPErrorCodes,
ProgressType,
ProtocolNotificationType,
ProtocolRequestType,
ResponseError,
UpdateCredentialsParams,
} from './lsp'
// Errors
export const AwsErrorCodes = {
E_CANNOT_CREATE_PROFILE: 'E_CANNOT_CREATE_PROFILE',
E_CANNOT_CREATE_SSO_SESSION: 'E_CANNOT_CREATE_SSO_SESSION',
E_CANNOT_OVERWRITE_PROFILE: 'E_CANNOT_OVERWRITE_PROFILE',
E_CANNOT_OVERWRITE_SSO_SESSION: 'E_CANNOT_OVERWRITE_SSO_SESSION',
E_CANNOT_READ_SHARED_CONFIG: 'E_CANNOT_READ_SHARED_CONFIG',
E_CANNOT_READ_SSO_CACHE: 'E_CANNOT_READ_SSO_CACHE',
E_CANNOT_READ_STS_CACHE: 'E_CANNOT_READ_STS_CACHE',
E_CANNOT_REFRESH_SSO_TOKEN: 'E_CANNOT_REFRESH_SSO_TOKEN',
E_CANNOT_REFRESH_STS_CREDENTIAL: 'E_CANNOT_REFRESH_STS_CREDENTIAL',
E_CANNOT_REGISTER_CLIENT: 'E_CANNOT_REGISTER_CLIENT',
E_CANNOT_CREATE_SSO_TOKEN: 'E_CANNOT_CREATE_SSO_TOKEN',
E_CANNOT_CREATE_STS_CREDENTIAL: 'E_CANNOT_CREATE_STS_CREDENTIAL',
E_CANNOT_WRITE_SHARED_CONFIG: 'E_CANNOT_WRITE_SHARED_CONFIG',
E_CANNOT_WRITE_SSO_CACHE: 'E_CANNOT_WRITE_SSO_CACHE',
E_CANNOT_WRITE_STS_CACHE: 'E_CANNOT_WRITE_STS_CACHE',
E_ENCRYPTION_REQUIRED: 'E_ENCRYPTION_REQUIRED',
E_INVALID_PROFILE: 'E_INVALID_PROFILE',
E_INVALID_SSO_CLIENT: 'E_INVALID_SSO_CLIENT',
E_INVALID_SSO_SESSION: 'E_INVALID_SSO_SESSION',
E_INVALID_SSO_TOKEN: 'E_INVALID_SSO_TOKEN',
E_INVALID_STS_CREDENTIAL: 'E_INVALID_STS_CREDENTIAL',
E_PROFILE_NOT_FOUND: 'E_PROFILE_NOT_FOUND',
E_RUNTIME_NOT_SUPPORTED: 'E_RUNTIME_NOT_SUPPORTED',
E_SSO_SESSION_NOT_FOUND: 'E_SSO_SESSION_NOT_FOUND',
E_SSO_TOKEN_EXPIRED: 'E_SSO_TOKEN_EXPIRED',
E_STS_CREDENTIAL_EXPIRED: 'E_STS_CREDENTIAL_EXPIRED',
E_SSO_TOKEN_SOURCE_NOT_SUPPORTED: 'E_SSO_TOKEN_SOURCE_NOT_SUPPORTED',
E_CALLER_IDENTITY_NOT_FOUND: 'E_CALLER_IDENTITY_NOT_FOUND',
E_MFA_REQUIRED: 'E_MFA_REQUIRED',
E_PERMISSION_DENIED: 'E_PERMISSION_DENIED',
E_TIMEOUT: 'E_TIMEOUT',
E_UNKNOWN: 'E_UNKNOWN',
E_CANCELLED: 'E_CANCELLED',
} as const
// Permissions
export const PermissionSets = {
Q: [
'q:StartConversation',
'q:SendMessage',
'q:GetConversation',
'q:ListConversations',
'q:UpdateConversation',
'q:DeleteConversation',
'q:PassRequest',
'q:StartTroubleshootingAnalysis',
'q:StartTroubleshootingResolutionExplanation',
'q:GetTroubleshootingResults',
'q:UpdateTroubleshootingCommandResult',
'q:GetIdentityMetaData',
'q:GenerateCodeFromCommands',
'q:UsePlugin',
'codewhisperer:GenerateRecommendations',
],
}
export interface AwsResponseErrorData {
awsErrorCode: string
}
export class AwsResponseError extends ResponseError<AwsResponseErrorData> {
constructor(message: string, data: AwsResponseErrorData, code: number = LSPErrorCodes.RequestFailed) {
super(code, message, data)
Object.setPrototypeOf(this, new.target.prototype)
}
}
// listProfiles
export type ProfileKind =
| 'Unknown'
| 'SsoTokenProfile'
| 'IamCredentialsProfile'
| 'IamSourceProfileProfile'
| 'IamCredentialSourceProfile'
| 'IamCredentialProcessProfile'
export const ProfileKind = {
SsoTokenProfile: 'SsoTokenProfile',
IamCredentialsProfile: 'IamCredentialsProfile',
IamSourceProfileProfile: 'IamSourceProfileProfile',
IamCredentialSourceProfile: 'IamCredentialSourceProfile',
IamCredentialProcessProfile: 'IamCredentialProcessProfile',
Unknown: 'Unknown',
} as const
// Profile and SsoSession use 'settings' property as namescope for their settings to avoid future
// name conflicts with 'kinds', 'name', and future properties as well as making some setting
// iteration operations easier.
export interface Profile {
kinds: ProfileKind[]
name: string
settings?: {
region?: string
sso_session?: string
aws_access_key_id?: string
aws_secret_access_key?: string
aws_session_token?: string
role_arn?: string
role_session_name?: string
credential_process?: string
credential_source?: string
source_profile?: string
mfa_serial?: string
external_id?: string
credential_cache?: string
credential_cache_location?: string
}
}
export interface SsoSession {
name: string
settings?: {
sso_start_url?: string
sso_region?: string
sso_registration_scopes?: string[]
}
}
export type ListProfilesParams = {
// Intentionally left blank
}
export interface ListProfilesResult {
profiles: Profile[]
ssoSessions: SsoSession[]
}
// Potential error codes: E_UNKNOWN | E_TIMEOUT | E_RUNTIME_NOT_SUPPORTED | E_CANNOT_READ_SHARED_CONFIG
export const listProfilesRequestType = new ProtocolRequestType<
ListProfilesParams,
ListProfilesResult,
never,
AwsResponseError,
void
>('aws/identity/listProfiles')
// updateProfile
export interface UpdateProfileOptions {
createNonexistentProfile?: boolean
createNonexistentSsoSession?: boolean
updateSharedSsoSession?: boolean
}
export const updateProfileOptionsDefaults = {
createNonexistentProfile: true,
createNonexistentSsoSession: true,
updateSharedSsoSession: false,
} satisfies UpdateProfileOptions
// To change a setting, pass the new value set on it. To delete a setting, set it to null or undefined.
// Settings not provided are ignored, preserving the previous value, if any, in the shared config files.
export interface UpdateProfileParams {
profile: Profile
ssoSession?: SsoSession
options?: UpdateProfileOptions
}
export interface UpdateProfileResult {
// Intentionally left blank
}
// Potential error codes: E_UNKNOWN | E_TIMEOUT | E_RUNTIME_NOT_SUPPORTED | E_CANNOT_READ_SHARED_CONFIG
// E_CANNOT_WRITE_SHARED_CONFIG | E_CANNOT_CREATE_PROFILE | E_CANNOT_OVERWRITE_PROFILE | E_CANNOT_CREATE_SSO_SESSION
// E_CANNOT_OVERWRITE_SSO_SESSION | E_INVALID_PROFILE | E_INVALID_SSO_SESSION
export const updateProfileRequestType = new ProtocolRequestType<
UpdateProfileParams,
UpdateProfileResult,
never,
AwsResponseError,
void
>('aws/identity/updateProfile')
// getSsoToken
export type SsoTokenId = string // Opaque identifier
export type IamIdentityCenterSsoTokenSourceKind = 'IamIdentityCenter'
export type AwsBuilderIdSsoTokenSourceKind = 'AwsBuilderId'
export type SsoTokenSourceKind = IamIdentityCenterSsoTokenSourceKind | AwsBuilderIdSsoTokenSourceKind
export const SsoTokenSourceKind = {
IamIdentityCenter: 'IamIdentityCenter',
AwsBuilderId: 'AwsBuilderId',
} as const
export interface AwsBuilderIdSsoTokenSource {
kind: AwsBuilderIdSsoTokenSourceKind
ssoRegistrationScopes: string[]
}
export interface IamIdentityCenterSsoTokenSource {
kind: IamIdentityCenterSsoTokenSourceKind
profileName: string
}
export type InProgress = 'InProgress'
export type Complete = 'Complete'
export type GetSsoTokenProgressState = InProgress | Complete
export const GetSsoTokenProgressState = {
InProgress: 'InProgress',
Complete: 'Complete',
} as const
export interface GetSsoTokenProgress {
message?: string
state: GetSsoTokenProgressState
}
export const GetSsoTokenProgressType = new ProgressType<GetSsoTokenProgress>()
// Use this to identify the sendProgress/onProgress call from the identity server.
// It indicates that an SSO login is currently in progress.
export const GetSsoTokenProgressToken = 'aws/identity/getSsoToken/progressToken'
export type DeviceCodeAuthorizationFlowKind = 'DeviceCode'
export type PkceAuthorizationFlowKind = 'Pkce'
export type AuthorizationFlowKind = DeviceCodeAuthorizationFlowKind | PkceAuthorizationFlowKind
export const AuthorizationFlowKind = {
DeviceCode: 'DeviceCode',
Pkce: 'Pkce',
} as const
export interface GetSsoTokenOptions {
loginOnInvalidToken?: boolean
authorizationFlow?: AuthorizationFlowKind // Unused if loginOnInvalidToken is false
}
export const getSsoTokenOptionsDefaults = {
loginOnInvalidToken: true,
authorizationFlow: AuthorizationFlowKind.Pkce,
} satisfies GetSsoTokenOptions
export interface GetSsoTokenParams {
source: IamIdentityCenterSsoTokenSource | AwsBuilderIdSsoTokenSource
clientName: string
options?: GetSsoTokenOptions
}
export interface SsoToken {
id: SsoTokenId
accessToken: string // This field is encrypted with JWT like 'update'
// Additional fields captured in token cache file may be added here in the future
}
export interface GetSsoTokenResult {
ssoToken: SsoToken
updateCredentialsParams: UpdateCredentialsParams
}
// Potential error codes: E_UNKNOWN | E_TIMEOUT | E_ENCRYPTION_REQUIRED | E_INVALID_TOKEN
export const getSsoTokenRequestType = new ProtocolRequestType<
GetSsoTokenParams,
GetSsoTokenResult,
never,
AwsResponseError,
void
>('aws/identity/getSsoToken')
// getIamCredential
export type IamCredentialId = string // Opaque identifier
export interface GetIamCredentialOptions {
callStsOnInvalidIamCredential?: boolean
permissionSet?: string[]
credentialOverride?: IamCredentials
}
export const getIamCredentialOptionsDefaults = {
callStsOnInvalidIamCredential: true,
permissionSet: PermissionSets.Q,
credentialOverride: undefined,
} satisfies GetIamCredentialOptions
export interface GetIamCredentialParams {
profileName: string
options?: GetIamCredentialOptions
}
export interface IamCredential {
id: IamCredentialId
kinds: ProfileKind[]
credentials: IamCredentials
}
export interface GetIamCredentialResult {
credential: IamCredential
updateCredentialsParams: UpdateCredentialsParams
}
export const getIamCredentialRequestType = new ProtocolRequestType<
GetIamCredentialParams,
GetIamCredentialResult,
never,
AwsResponseError,
void
>('aws/identity/getIamCredential')
// getMfaCode
export interface GetMfaCodeParams {
profileName: string
mfaSerial?: string
}
export interface GetMfaCodeResult {
code: string
mfaSerial: string
}
export const getMfaCodeRequestType = new ProtocolRequestType<
GetMfaCodeParams,
GetMfaCodeResult,
never,
AwsResponseError,
void
>('aws/identity/getMfaCode')
// invalidateSsoToken
export interface InvalidateSsoTokenParams {
ssoTokenId: SsoTokenId
}
export interface InvalidateSsoTokenResult {
// Intentionally left blank
}
// Pontential error codes: E_UNKNOWN | E_TIMEOUT | E_CANNOT_READ_SSO_CACHE | E_CANNOT_WRITE_SSO_CACHE | E_INVALID_TOKEN
export const invalidateSsoTokenRequestType = new ProtocolRequestType<
InvalidateSsoTokenParams,
InvalidateSsoTokenResult,
never,
AwsResponseError,
void
>('aws/identity/invalidateSsoToken')
// invalidateStsCredential
export interface InvalidateStsCredentialParams {
iamCredentialId: IamCredentialId
}
export interface InvalidateStsCredentialResult {
// Intentionally left blank
}
export const invalidateStsCredentialRequestType = new ProtocolRequestType<
InvalidateStsCredentialParams,
InvalidateStsCredentialResult,
never,
AwsResponseError,
void
>('aws/identity/invalidateStsCredential')
// ssoTokenChanged
export type Expired = 'Expired'
export type Refreshed = 'Refreshed'
export type SsoTokenChangedKind = Refreshed | Expired
export const SsoTokenChangedKind = {
Expired: 'Expired',
Refreshed: 'Refreshed',
} as const
export interface SsoTokenChangedParams {
kind: SsoTokenChangedKind
ssoTokenId: SsoTokenId
}
export const ssoTokenChangedRequestType = new ProtocolNotificationType<SsoTokenChangedParams, void>(
'aws/identity/ssoTokenChanged'
)
// stsCredentialChanged
export type StsCredentialChangedKind = Refreshed | Expired
export const StsCredentialChangedKind = {
Expired: 'Expired',
Refreshed: 'Refreshed',
} as const
export interface StsCredentialChangedParams {
kind: StsCredentialChangedKind
stsCredentialId: IamCredentialId
}
export const stsCredentialChangedRequestType = new ProtocolNotificationType<StsCredentialChangedParams, void>(
'aws/identity/stsCredentialChanged'
)