@aws-sdk/client-mpa 3.934.0 → 3.936.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +94 -93
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +93 -0
- package/dist-es/models/errors.js +130 -0
- package/dist-es/models/models_0.js +1 -223
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +213 -0
- package/dist-types/models/errors.d.ts +161 -0
- package/dist-types/models/models_0.d.ts +1 -374
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +118 -0
- package/dist-types/ts3.4/models/errors.d.ts +74 -0
- package/dist-types/ts3.4/models/models_0.d.ts +17 -192
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,33 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { MPAServiceException as __BaseException } from "./MPAServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>You do not have sufficient access to perform this action. Check your permissions, and try again.</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
/**
|
|
11
|
-
* <p>Message for the <code>AccessDeniedException</code> error.</p>
|
|
12
|
-
* @public
|
|
13
|
-
*/
|
|
14
|
-
Message: string | undefined;
|
|
15
|
-
/**
|
|
16
|
-
* @internal
|
|
17
|
-
*/
|
|
18
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
19
|
-
}
|
|
20
|
-
/**
|
|
21
|
-
* @public
|
|
22
|
-
* @enum
|
|
23
|
-
*/
|
|
24
|
-
export declare const ActionCompletionStrategy: {
|
|
25
|
-
readonly AUTO_COMPLETION_UPON_APPROVAL: "AUTO_COMPLETION_UPON_APPROVAL";
|
|
26
|
-
};
|
|
27
|
-
/**
|
|
28
|
-
* @public
|
|
29
|
-
*/
|
|
30
|
-
export type ActionCompletionStrategy = (typeof ActionCompletionStrategy)[keyof typeof ActionCompletionStrategy];
|
|
1
|
+
import { ActionCompletionStrategy, ApprovalTeamStatus, ApprovalTeamStatusCode, FilterField, IdentitySourceStatus, IdentitySourceStatusCode, IdentitySourceType, IdentityStatus, Operator, PolicyStatus, PolicyType, SessionExecutionStatus, SessionResponse, SessionStatus, SessionStatusCode } from "./enums";
|
|
31
2
|
/**
|
|
32
3
|
* <p>Strategy for how an approval team grants approval.</p>
|
|
33
4
|
* @public
|
|
@@ -105,23 +76,6 @@ export declare namespace ApprovalStrategyResponse {
|
|
|
105
76
|
_: (name: string, value: any) => T;
|
|
106
77
|
}
|
|
107
78
|
}
|
|
108
|
-
/**
|
|
109
|
-
* <p>The request cannot be completed because it conflicts with the current state of a resource.</p>
|
|
110
|
-
* @public
|
|
111
|
-
*/
|
|
112
|
-
export declare class ConflictException extends __BaseException {
|
|
113
|
-
readonly name: "ConflictException";
|
|
114
|
-
readonly $fault: "client";
|
|
115
|
-
/**
|
|
116
|
-
* <p>Message for the <code>ConflictException</code> error.</p>
|
|
117
|
-
* @public
|
|
118
|
-
*/
|
|
119
|
-
Message: string | undefined;
|
|
120
|
-
/**
|
|
121
|
-
* @internal
|
|
122
|
-
*/
|
|
123
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
124
|
-
}
|
|
125
79
|
/**
|
|
126
80
|
* <p>Contains details for an approver.</p>
|
|
127
81
|
* @public
|
|
@@ -214,75 +168,6 @@ export interface CreateApprovalTeamResponse {
|
|
|
214
168
|
*/
|
|
215
169
|
VersionId?: string | undefined;
|
|
216
170
|
}
|
|
217
|
-
/**
|
|
218
|
-
* <p>The service encountered an internal error. Try your request again. If the problem persists, contact Amazon Web Services Support.</p>
|
|
219
|
-
* @public
|
|
220
|
-
*/
|
|
221
|
-
export declare class InternalServerException extends __BaseException {
|
|
222
|
-
readonly name: "InternalServerException";
|
|
223
|
-
readonly $fault: "server";
|
|
224
|
-
$retryable: {};
|
|
225
|
-
/**
|
|
226
|
-
* <p>Message for the <code>InternalServerException</code> error.</p>
|
|
227
|
-
* @public
|
|
228
|
-
*/
|
|
229
|
-
Message: string | undefined;
|
|
230
|
-
/**
|
|
231
|
-
* @internal
|
|
232
|
-
*/
|
|
233
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
234
|
-
}
|
|
235
|
-
/**
|
|
236
|
-
* <p>The request exceeds the service quota for your account. Request a quota increase or reduce your request size.</p>
|
|
237
|
-
* @public
|
|
238
|
-
*/
|
|
239
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
240
|
-
readonly name: "ServiceQuotaExceededException";
|
|
241
|
-
readonly $fault: "client";
|
|
242
|
-
/**
|
|
243
|
-
* <p>Message for the <code>ServiceQuotaExceededException</code> error.</p>
|
|
244
|
-
* @public
|
|
245
|
-
*/
|
|
246
|
-
Message: string | undefined;
|
|
247
|
-
/**
|
|
248
|
-
* @internal
|
|
249
|
-
*/
|
|
250
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
251
|
-
}
|
|
252
|
-
/**
|
|
253
|
-
* <p>The request was denied due to request throttling.</p>
|
|
254
|
-
* @public
|
|
255
|
-
*/
|
|
256
|
-
export declare class ThrottlingException extends __BaseException {
|
|
257
|
-
readonly name: "ThrottlingException";
|
|
258
|
-
readonly $fault: "client";
|
|
259
|
-
/**
|
|
260
|
-
* <p>Message for the <code>ThrottlingException</code> error.</p>
|
|
261
|
-
* @public
|
|
262
|
-
*/
|
|
263
|
-
Message: string | undefined;
|
|
264
|
-
/**
|
|
265
|
-
* @internal
|
|
266
|
-
*/
|
|
267
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
268
|
-
}
|
|
269
|
-
/**
|
|
270
|
-
* <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
|
|
271
|
-
* @public
|
|
272
|
-
*/
|
|
273
|
-
export declare class ValidationException extends __BaseException {
|
|
274
|
-
readonly name: "ValidationException";
|
|
275
|
-
readonly $fault: "client";
|
|
276
|
-
/**
|
|
277
|
-
* <p>Message for the <code>ValidationException</code> error.</p>
|
|
278
|
-
* @public
|
|
279
|
-
*/
|
|
280
|
-
Message: string | undefined;
|
|
281
|
-
/**
|
|
282
|
-
* @internal
|
|
283
|
-
*/
|
|
284
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
285
|
-
}
|
|
286
171
|
/**
|
|
287
172
|
* @public
|
|
288
173
|
*/
|
|
@@ -303,23 +188,6 @@ export interface DeleteInactiveApprovalTeamVersionRequest {
|
|
|
303
188
|
*/
|
|
304
189
|
export interface DeleteInactiveApprovalTeamVersionResponse {
|
|
305
190
|
}
|
|
306
|
-
/**
|
|
307
|
-
* <p>The specified resource doesn't exist. Check the resource ID, and try again.</p>
|
|
308
|
-
* @public
|
|
309
|
-
*/
|
|
310
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
311
|
-
readonly name: "ResourceNotFoundException";
|
|
312
|
-
readonly $fault: "client";
|
|
313
|
-
/**
|
|
314
|
-
* <p>Message for the <code>ResourceNotFoundException</code> error.</p>
|
|
315
|
-
* @public
|
|
316
|
-
*/
|
|
317
|
-
Message: string | undefined;
|
|
318
|
-
/**
|
|
319
|
-
* @internal
|
|
320
|
-
*/
|
|
321
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
322
|
-
}
|
|
323
191
|
/**
|
|
324
192
|
* @public
|
|
325
193
|
*/
|
|
@@ -330,20 +198,6 @@ export interface GetApprovalTeamRequest {
|
|
|
330
198
|
*/
|
|
331
199
|
Arn: string | undefined;
|
|
332
200
|
}
|
|
333
|
-
/**
|
|
334
|
-
* @public
|
|
335
|
-
* @enum
|
|
336
|
-
*/
|
|
337
|
-
export declare const IdentityStatus: {
|
|
338
|
-
readonly ACCEPTED: "ACCEPTED";
|
|
339
|
-
readonly INVALID: "INVALID";
|
|
340
|
-
readonly PENDING: "PENDING";
|
|
341
|
-
readonly REJECTED: "REJECTED";
|
|
342
|
-
};
|
|
343
|
-
/**
|
|
344
|
-
* @public
|
|
345
|
-
*/
|
|
346
|
-
export type IdentityStatus = (typeof IdentityStatus)[keyof typeof IdentityStatus];
|
|
347
201
|
/**
|
|
348
202
|
* <p>Contains details for an approver.</p>
|
|
349
203
|
* @public
|
|
@@ -375,42 +229,6 @@ export interface GetApprovalTeamResponseApprover {
|
|
|
375
229
|
*/
|
|
376
230
|
PrimaryIdentityStatus?: IdentityStatus | undefined;
|
|
377
231
|
}
|
|
378
|
-
/**
|
|
379
|
-
* @public
|
|
380
|
-
* @enum
|
|
381
|
-
*/
|
|
382
|
-
export declare const ApprovalTeamStatus: {
|
|
383
|
-
readonly ACTIVE: "ACTIVE";
|
|
384
|
-
readonly DELETING: "DELETING";
|
|
385
|
-
readonly INACTIVE: "INACTIVE";
|
|
386
|
-
readonly PENDING: "PENDING";
|
|
387
|
-
};
|
|
388
|
-
/**
|
|
389
|
-
* @public
|
|
390
|
-
*/
|
|
391
|
-
export type ApprovalTeamStatus = (typeof ApprovalTeamStatus)[keyof typeof ApprovalTeamStatus];
|
|
392
|
-
/**
|
|
393
|
-
* @public
|
|
394
|
-
* @enum
|
|
395
|
-
*/
|
|
396
|
-
export declare const ApprovalTeamStatusCode: {
|
|
397
|
-
readonly DELETE_FAILED_APPROVAL: "DELETE_FAILED_APPROVAL";
|
|
398
|
-
readonly DELETE_FAILED_VALIDATION: "DELETE_FAILED_VALIDATION";
|
|
399
|
-
readonly DELETE_PENDING_APPROVAL: "DELETE_PENDING_APPROVAL";
|
|
400
|
-
readonly FAILED_ACTIVATION: "FAILED_ACTIVATION";
|
|
401
|
-
readonly FAILED_VALIDATION: "FAILED_VALIDATION";
|
|
402
|
-
readonly PENDING_ACTIVATION: "PENDING_ACTIVATION";
|
|
403
|
-
readonly UPDATE_FAILED_ACTIVATION: "UPDATE_FAILED_ACTIVATION";
|
|
404
|
-
readonly UPDATE_FAILED_APPROVAL: "UPDATE_FAILED_APPROVAL";
|
|
405
|
-
readonly UPDATE_FAILED_VALIDATION: "UPDATE_FAILED_VALIDATION";
|
|
406
|
-
readonly UPDATE_PENDING_ACTIVATION: "UPDATE_PENDING_ACTIVATION";
|
|
407
|
-
readonly UPDATE_PENDING_APPROVAL: "UPDATE_PENDING_APPROVAL";
|
|
408
|
-
readonly VALIDATING: "VALIDATING";
|
|
409
|
-
};
|
|
410
|
-
/**
|
|
411
|
-
* @public
|
|
412
|
-
*/
|
|
413
|
-
export type ApprovalTeamStatusCode = (typeof ApprovalTeamStatusCode)[keyof typeof ApprovalTeamStatusCode];
|
|
414
232
|
/**
|
|
415
233
|
* <p>Contains details for the pending updates for an approval team, if applicable.</p>
|
|
416
234
|
* @public
|
|
@@ -698,30 +516,6 @@ export interface GetPolicyVersionRequest {
|
|
|
698
516
|
*/
|
|
699
517
|
PolicyVersionArn: string | undefined;
|
|
700
518
|
}
|
|
701
|
-
/**
|
|
702
|
-
* @public
|
|
703
|
-
* @enum
|
|
704
|
-
*/
|
|
705
|
-
export declare const PolicyType: {
|
|
706
|
-
readonly AWS_MANAGED: "AWS_MANAGED";
|
|
707
|
-
readonly AWS_RAM: "AWS_RAM";
|
|
708
|
-
};
|
|
709
|
-
/**
|
|
710
|
-
* @public
|
|
711
|
-
*/
|
|
712
|
-
export type PolicyType = (typeof PolicyType)[keyof typeof PolicyType];
|
|
713
|
-
/**
|
|
714
|
-
* @public
|
|
715
|
-
* @enum
|
|
716
|
-
*/
|
|
717
|
-
export declare const PolicyStatus: {
|
|
718
|
-
readonly ATTACHABLE: "ATTACHABLE";
|
|
719
|
-
readonly DEPRECATED: "DEPRECATED";
|
|
720
|
-
};
|
|
721
|
-
/**
|
|
722
|
-
* @public
|
|
723
|
-
*/
|
|
724
|
-
export type PolicyStatus = (typeof PolicyStatus)[keyof typeof PolicyStatus];
|
|
725
519
|
/**
|
|
726
520
|
* <p>Contains details for the version of a policy. Policies define what operations a team that define the permissions for team resources.</p> <p>The protected operation for a service integration might require specific permissions. For more information, see <a href="https://docs.aws.amazon.com/mpa/latest/userguide/mpa-integrations.html">How other services work with Multi-party approval</a> in the <i>Multi-party approval User Guide</i>.</p>
|
|
727
521
|
* @public
|
|
@@ -838,23 +632,6 @@ export interface GetResourcePolicyResponse {
|
|
|
838
632
|
*/
|
|
839
633
|
PolicyDocument: string | undefined;
|
|
840
634
|
}
|
|
841
|
-
/**
|
|
842
|
-
* <p>The request contains an invalid parameter value.</p>
|
|
843
|
-
* @public
|
|
844
|
-
*/
|
|
845
|
-
export declare class InvalidParameterException extends __BaseException {
|
|
846
|
-
readonly name: "InvalidParameterException";
|
|
847
|
-
readonly $fault: "client";
|
|
848
|
-
/**
|
|
849
|
-
* <p>Message for the <code>InvalidParameterException</code> error.</p>
|
|
850
|
-
* @public
|
|
851
|
-
*/
|
|
852
|
-
Message: string | undefined;
|
|
853
|
-
/**
|
|
854
|
-
* @internal
|
|
855
|
-
*/
|
|
856
|
-
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
857
|
-
}
|
|
858
635
|
/**
|
|
859
636
|
* <p>IAM Identity Center credentials. For more information see, <a href="http://aws.amazon.com/identity-center/">IAM Identity Center</a> .</p>
|
|
860
637
|
* @public
|
|
@@ -902,17 +679,6 @@ export interface CreateIdentitySourceRequest {
|
|
|
902
679
|
*/
|
|
903
680
|
Tags?: Record<string, string> | undefined;
|
|
904
681
|
}
|
|
905
|
-
/**
|
|
906
|
-
* @public
|
|
907
|
-
* @enum
|
|
908
|
-
*/
|
|
909
|
-
export declare const IdentitySourceType: {
|
|
910
|
-
readonly IAM_IDENTITY_CENTER: "IAM_IDENTITY_CENTER";
|
|
911
|
-
};
|
|
912
|
-
/**
|
|
913
|
-
* @public
|
|
914
|
-
*/
|
|
915
|
-
export type IdentitySourceType = (typeof IdentitySourceType)[keyof typeof IdentitySourceType];
|
|
916
682
|
/**
|
|
917
683
|
* @public
|
|
918
684
|
*/
|
|
@@ -1007,34 +773,6 @@ export declare namespace IdentitySourceParametersForGet {
|
|
|
1007
773
|
_: (name: string, value: any) => T;
|
|
1008
774
|
}
|
|
1009
775
|
}
|
|
1010
|
-
/**
|
|
1011
|
-
* @public
|
|
1012
|
-
* @enum
|
|
1013
|
-
*/
|
|
1014
|
-
export declare const IdentitySourceStatus: {
|
|
1015
|
-
readonly ACTIVE: "ACTIVE";
|
|
1016
|
-
readonly CREATING: "CREATING";
|
|
1017
|
-
readonly DELETING: "DELETING";
|
|
1018
|
-
readonly ERROR: "ERROR";
|
|
1019
|
-
};
|
|
1020
|
-
/**
|
|
1021
|
-
* @public
|
|
1022
|
-
*/
|
|
1023
|
-
export type IdentitySourceStatus = (typeof IdentitySourceStatus)[keyof typeof IdentitySourceStatus];
|
|
1024
|
-
/**
|
|
1025
|
-
* @public
|
|
1026
|
-
* @enum
|
|
1027
|
-
*/
|
|
1028
|
-
export declare const IdentitySourceStatusCode: {
|
|
1029
|
-
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
1030
|
-
readonly DELETION_FAILED: "DELETION_FAILED";
|
|
1031
|
-
readonly IDC_INSTANCE_NOT_FOUND: "IDC_INSTANCE_NOT_FOUND";
|
|
1032
|
-
readonly IDC_INSTANCE_NOT_VALID: "IDC_INSTANCE_NOT_VALID";
|
|
1033
|
-
};
|
|
1034
|
-
/**
|
|
1035
|
-
* @public
|
|
1036
|
-
*/
|
|
1037
|
-
export type IdentitySourceStatusCode = (typeof IdentitySourceStatusCode)[keyof typeof IdentitySourceStatusCode];
|
|
1038
776
|
/**
|
|
1039
777
|
* @public
|
|
1040
778
|
*/
|
|
@@ -1443,19 +1181,6 @@ export interface GetSessionRequest {
|
|
|
1443
1181
|
*/
|
|
1444
1182
|
SessionArn: string | undefined;
|
|
1445
1183
|
}
|
|
1446
|
-
/**
|
|
1447
|
-
* @public
|
|
1448
|
-
* @enum
|
|
1449
|
-
*/
|
|
1450
|
-
export declare const SessionResponse: {
|
|
1451
|
-
readonly APPROVED: "APPROVED";
|
|
1452
|
-
readonly NO_RESPONSE: "NO_RESPONSE";
|
|
1453
|
-
readonly REJECTED: "REJECTED";
|
|
1454
|
-
};
|
|
1455
|
-
/**
|
|
1456
|
-
* @public
|
|
1457
|
-
*/
|
|
1458
|
-
export type SessionResponse = (typeof SessionResponse)[keyof typeof SessionResponse];
|
|
1459
1184
|
/**
|
|
1460
1185
|
* <p>Contains details for an approver response in an approval session.</p>
|
|
1461
1186
|
* @public
|
|
@@ -1487,47 +1212,6 @@ export interface GetSessionResponseApproverResponse {
|
|
|
1487
1212
|
*/
|
|
1488
1213
|
ResponseTime?: Date | undefined;
|
|
1489
1214
|
}
|
|
1490
|
-
/**
|
|
1491
|
-
* @public
|
|
1492
|
-
* @enum
|
|
1493
|
-
*/
|
|
1494
|
-
export declare const SessionExecutionStatus: {
|
|
1495
|
-
readonly EXECUTED: "EXECUTED";
|
|
1496
|
-
readonly FAILED: "FAILED";
|
|
1497
|
-
readonly PENDING: "PENDING";
|
|
1498
|
-
};
|
|
1499
|
-
/**
|
|
1500
|
-
* @public
|
|
1501
|
-
*/
|
|
1502
|
-
export type SessionExecutionStatus = (typeof SessionExecutionStatus)[keyof typeof SessionExecutionStatus];
|
|
1503
|
-
/**
|
|
1504
|
-
* @public
|
|
1505
|
-
* @enum
|
|
1506
|
-
*/
|
|
1507
|
-
export declare const SessionStatus: {
|
|
1508
|
-
readonly APPROVED: "APPROVED";
|
|
1509
|
-
readonly CANCELLED: "CANCELLED";
|
|
1510
|
-
readonly CREATING: "CREATING";
|
|
1511
|
-
readonly FAILED: "FAILED";
|
|
1512
|
-
readonly PENDING: "PENDING";
|
|
1513
|
-
};
|
|
1514
|
-
/**
|
|
1515
|
-
* @public
|
|
1516
|
-
*/
|
|
1517
|
-
export type SessionStatus = (typeof SessionStatus)[keyof typeof SessionStatus];
|
|
1518
|
-
/**
|
|
1519
|
-
* @public
|
|
1520
|
-
* @enum
|
|
1521
|
-
*/
|
|
1522
|
-
export declare const SessionStatusCode: {
|
|
1523
|
-
readonly CONFIGURATION_CHANGED: "CONFIGURATION_CHANGED";
|
|
1524
|
-
readonly EXPIRED: "EXPIRED";
|
|
1525
|
-
readonly REJECTED: "REJECTED";
|
|
1526
|
-
};
|
|
1527
|
-
/**
|
|
1528
|
-
* @public
|
|
1529
|
-
*/
|
|
1530
|
-
export type SessionStatusCode = (typeof SessionStatusCode)[keyof typeof SessionStatusCode];
|
|
1531
1215
|
/**
|
|
1532
1216
|
* @public
|
|
1533
1217
|
*/
|
|
@@ -1648,41 +1332,6 @@ export interface GetSessionResponse {
|
|
|
1648
1332
|
*/
|
|
1649
1333
|
ApproverResponses?: GetSessionResponseApproverResponse[] | undefined;
|
|
1650
1334
|
}
|
|
1651
|
-
/**
|
|
1652
|
-
* @public
|
|
1653
|
-
* @enum
|
|
1654
|
-
*/
|
|
1655
|
-
export declare const FilterField: {
|
|
1656
|
-
readonly ACTION_NAME: "ActionName";
|
|
1657
|
-
readonly APPROVAL_TEAM_NAME: "ApprovalTeamName";
|
|
1658
|
-
readonly INITIATION_TIME: "InitiationTime";
|
|
1659
|
-
readonly SESSION_STATUS: "SessionStatus";
|
|
1660
|
-
readonly VOTE: "Vote";
|
|
1661
|
-
readonly VOTING_TIME: "VotingTime";
|
|
1662
|
-
};
|
|
1663
|
-
/**
|
|
1664
|
-
* @public
|
|
1665
|
-
*/
|
|
1666
|
-
export type FilterField = (typeof FilterField)[keyof typeof FilterField];
|
|
1667
|
-
/**
|
|
1668
|
-
* @public
|
|
1669
|
-
* @enum
|
|
1670
|
-
*/
|
|
1671
|
-
export declare const Operator: {
|
|
1672
|
-
readonly BETWEEN: "BETWEEN";
|
|
1673
|
-
readonly CONTAINS: "CONTAINS";
|
|
1674
|
-
readonly DOES_NOT_CONTAIN: "NOT_CONTAINS";
|
|
1675
|
-
readonly EQUALS: "EQ";
|
|
1676
|
-
readonly GREATER_THAN: "GT";
|
|
1677
|
-
readonly GREATER_THAN_OR_EQUAL_TO: "GTE";
|
|
1678
|
-
readonly LESS_THAN: "LT";
|
|
1679
|
-
readonly LESS_THAN_OR_EQUAL_TO: "LTE";
|
|
1680
|
-
readonly NOT_EQUALS: "NE";
|
|
1681
|
-
};
|
|
1682
|
-
/**
|
|
1683
|
-
* @public
|
|
1684
|
-
*/
|
|
1685
|
-
export type Operator = (typeof Operator)[keyof typeof Operator];
|
|
1686
1335
|
/**
|
|
1687
1336
|
* <p>Contains the filter to apply to requests. You can specify up to 10 filters for a request.</p>
|
|
1688
1337
|
* @public
|
|
@@ -1855,28 +1504,6 @@ export interface TagResourceRequest {
|
|
|
1855
1504
|
*/
|
|
1856
1505
|
export interface TagResourceResponse {
|
|
1857
1506
|
}
|
|
1858
|
-
/**
|
|
1859
|
-
* <p>The request exceeds the maximum number of tags allowed for this resource. Remove some tags, and try again.</p>
|
|
1860
|
-
* @public
|
|
1861
|
-
*/
|
|
1862
|
-
export declare class TooManyTagsException extends __BaseException {
|
|
1863
|
-
readonly name: "TooManyTagsException";
|
|
1864
|
-
readonly $fault: "client";
|
|
1865
|
-
/**
|
|
1866
|
-
* <p>Message for the <code>TooManyTagsException</code> error.</p>
|
|
1867
|
-
* @public
|
|
1868
|
-
*/
|
|
1869
|
-
Message: string | undefined;
|
|
1870
|
-
/**
|
|
1871
|
-
* <p>Name of the resource for the <code>TooManyTagsException</code> error.</p>
|
|
1872
|
-
* @public
|
|
1873
|
-
*/
|
|
1874
|
-
ResourceName?: string | undefined;
|
|
1875
|
-
/**
|
|
1876
|
-
* @internal
|
|
1877
|
-
*/
|
|
1878
|
-
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
1879
|
-
}
|
|
1880
1507
|
/**
|
|
1881
1508
|
* @public
|
|
1882
1509
|
*/
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { MPAExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { MPAServiceException } from "./models/MPAServiceException";
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
export declare const ActionCompletionStrategy: {
|
|
2
|
+
readonly AUTO_COMPLETION_UPON_APPROVAL: "AUTO_COMPLETION_UPON_APPROVAL";
|
|
3
|
+
};
|
|
4
|
+
export type ActionCompletionStrategy =
|
|
5
|
+
(typeof ActionCompletionStrategy)[keyof typeof ActionCompletionStrategy];
|
|
6
|
+
export declare const IdentityStatus: {
|
|
7
|
+
readonly ACCEPTED: "ACCEPTED";
|
|
8
|
+
readonly INVALID: "INVALID";
|
|
9
|
+
readonly PENDING: "PENDING";
|
|
10
|
+
readonly REJECTED: "REJECTED";
|
|
11
|
+
};
|
|
12
|
+
export type IdentityStatus =
|
|
13
|
+
(typeof IdentityStatus)[keyof typeof IdentityStatus];
|
|
14
|
+
export declare const ApprovalTeamStatus: {
|
|
15
|
+
readonly ACTIVE: "ACTIVE";
|
|
16
|
+
readonly DELETING: "DELETING";
|
|
17
|
+
readonly INACTIVE: "INACTIVE";
|
|
18
|
+
readonly PENDING: "PENDING";
|
|
19
|
+
};
|
|
20
|
+
export type ApprovalTeamStatus =
|
|
21
|
+
(typeof ApprovalTeamStatus)[keyof typeof ApprovalTeamStatus];
|
|
22
|
+
export declare const ApprovalTeamStatusCode: {
|
|
23
|
+
readonly DELETE_FAILED_APPROVAL: "DELETE_FAILED_APPROVAL";
|
|
24
|
+
readonly DELETE_FAILED_VALIDATION: "DELETE_FAILED_VALIDATION";
|
|
25
|
+
readonly DELETE_PENDING_APPROVAL: "DELETE_PENDING_APPROVAL";
|
|
26
|
+
readonly FAILED_ACTIVATION: "FAILED_ACTIVATION";
|
|
27
|
+
readonly FAILED_VALIDATION: "FAILED_VALIDATION";
|
|
28
|
+
readonly PENDING_ACTIVATION: "PENDING_ACTIVATION";
|
|
29
|
+
readonly UPDATE_FAILED_ACTIVATION: "UPDATE_FAILED_ACTIVATION";
|
|
30
|
+
readonly UPDATE_FAILED_APPROVAL: "UPDATE_FAILED_APPROVAL";
|
|
31
|
+
readonly UPDATE_FAILED_VALIDATION: "UPDATE_FAILED_VALIDATION";
|
|
32
|
+
readonly UPDATE_PENDING_ACTIVATION: "UPDATE_PENDING_ACTIVATION";
|
|
33
|
+
readonly UPDATE_PENDING_APPROVAL: "UPDATE_PENDING_APPROVAL";
|
|
34
|
+
readonly VALIDATING: "VALIDATING";
|
|
35
|
+
};
|
|
36
|
+
export type ApprovalTeamStatusCode =
|
|
37
|
+
(typeof ApprovalTeamStatusCode)[keyof typeof ApprovalTeamStatusCode];
|
|
38
|
+
export declare const PolicyType: {
|
|
39
|
+
readonly AWS_MANAGED: "AWS_MANAGED";
|
|
40
|
+
readonly AWS_RAM: "AWS_RAM";
|
|
41
|
+
};
|
|
42
|
+
export type PolicyType = (typeof PolicyType)[keyof typeof PolicyType];
|
|
43
|
+
export declare const PolicyStatus: {
|
|
44
|
+
readonly ATTACHABLE: "ATTACHABLE";
|
|
45
|
+
readonly DEPRECATED: "DEPRECATED";
|
|
46
|
+
};
|
|
47
|
+
export type PolicyStatus = (typeof PolicyStatus)[keyof typeof PolicyStatus];
|
|
48
|
+
export declare const IdentitySourceType: {
|
|
49
|
+
readonly IAM_IDENTITY_CENTER: "IAM_IDENTITY_CENTER";
|
|
50
|
+
};
|
|
51
|
+
export type IdentitySourceType =
|
|
52
|
+
(typeof IdentitySourceType)[keyof typeof IdentitySourceType];
|
|
53
|
+
export declare const IdentitySourceStatus: {
|
|
54
|
+
readonly ACTIVE: "ACTIVE";
|
|
55
|
+
readonly CREATING: "CREATING";
|
|
56
|
+
readonly DELETING: "DELETING";
|
|
57
|
+
readonly ERROR: "ERROR";
|
|
58
|
+
};
|
|
59
|
+
export type IdentitySourceStatus =
|
|
60
|
+
(typeof IdentitySourceStatus)[keyof typeof IdentitySourceStatus];
|
|
61
|
+
export declare const IdentitySourceStatusCode: {
|
|
62
|
+
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
63
|
+
readonly DELETION_FAILED: "DELETION_FAILED";
|
|
64
|
+
readonly IDC_INSTANCE_NOT_FOUND: "IDC_INSTANCE_NOT_FOUND";
|
|
65
|
+
readonly IDC_INSTANCE_NOT_VALID: "IDC_INSTANCE_NOT_VALID";
|
|
66
|
+
};
|
|
67
|
+
export type IdentitySourceStatusCode =
|
|
68
|
+
(typeof IdentitySourceStatusCode)[keyof typeof IdentitySourceStatusCode];
|
|
69
|
+
export declare const SessionResponse: {
|
|
70
|
+
readonly APPROVED: "APPROVED";
|
|
71
|
+
readonly NO_RESPONSE: "NO_RESPONSE";
|
|
72
|
+
readonly REJECTED: "REJECTED";
|
|
73
|
+
};
|
|
74
|
+
export type SessionResponse =
|
|
75
|
+
(typeof SessionResponse)[keyof typeof SessionResponse];
|
|
76
|
+
export declare const SessionExecutionStatus: {
|
|
77
|
+
readonly EXECUTED: "EXECUTED";
|
|
78
|
+
readonly FAILED: "FAILED";
|
|
79
|
+
readonly PENDING: "PENDING";
|
|
80
|
+
};
|
|
81
|
+
export type SessionExecutionStatus =
|
|
82
|
+
(typeof SessionExecutionStatus)[keyof typeof SessionExecutionStatus];
|
|
83
|
+
export declare const SessionStatus: {
|
|
84
|
+
readonly APPROVED: "APPROVED";
|
|
85
|
+
readonly CANCELLED: "CANCELLED";
|
|
86
|
+
readonly CREATING: "CREATING";
|
|
87
|
+
readonly FAILED: "FAILED";
|
|
88
|
+
readonly PENDING: "PENDING";
|
|
89
|
+
};
|
|
90
|
+
export type SessionStatus = (typeof SessionStatus)[keyof typeof SessionStatus];
|
|
91
|
+
export declare const SessionStatusCode: {
|
|
92
|
+
readonly CONFIGURATION_CHANGED: "CONFIGURATION_CHANGED";
|
|
93
|
+
readonly EXPIRED: "EXPIRED";
|
|
94
|
+
readonly REJECTED: "REJECTED";
|
|
95
|
+
};
|
|
96
|
+
export type SessionStatusCode =
|
|
97
|
+
(typeof SessionStatusCode)[keyof typeof SessionStatusCode];
|
|
98
|
+
export declare const FilterField: {
|
|
99
|
+
readonly ACTION_NAME: "ActionName";
|
|
100
|
+
readonly APPROVAL_TEAM_NAME: "ApprovalTeamName";
|
|
101
|
+
readonly INITIATION_TIME: "InitiationTime";
|
|
102
|
+
readonly SESSION_STATUS: "SessionStatus";
|
|
103
|
+
readonly VOTE: "Vote";
|
|
104
|
+
readonly VOTING_TIME: "VotingTime";
|
|
105
|
+
};
|
|
106
|
+
export type FilterField = (typeof FilterField)[keyof typeof FilterField];
|
|
107
|
+
export declare const Operator: {
|
|
108
|
+
readonly BETWEEN: "BETWEEN";
|
|
109
|
+
readonly CONTAINS: "CONTAINS";
|
|
110
|
+
readonly DOES_NOT_CONTAIN: "NOT_CONTAINS";
|
|
111
|
+
readonly EQUALS: "EQ";
|
|
112
|
+
readonly GREATER_THAN: "GT";
|
|
113
|
+
readonly GREATER_THAN_OR_EQUAL_TO: "GTE";
|
|
114
|
+
readonly LESS_THAN: "LT";
|
|
115
|
+
readonly LESS_THAN_OR_EQUAL_TO: "LTE";
|
|
116
|
+
readonly NOT_EQUALS: "NE";
|
|
117
|
+
};
|
|
118
|
+
export type Operator = (typeof Operator)[keyof typeof Operator];
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { MPAServiceException as __BaseException } from "./MPAServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message: string | undefined;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class ConflictException extends __BaseException {
|
|
12
|
+
readonly name: "ConflictException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
Message: string | undefined;
|
|
15
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
16
|
+
}
|
|
17
|
+
export declare class InternalServerException extends __BaseException {
|
|
18
|
+
readonly name: "InternalServerException";
|
|
19
|
+
readonly $fault: "server";
|
|
20
|
+
$retryable: {};
|
|
21
|
+
Message: string | undefined;
|
|
22
|
+
constructor(
|
|
23
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
27
|
+
readonly name: "ServiceQuotaExceededException";
|
|
28
|
+
readonly $fault: "client";
|
|
29
|
+
Message: string | undefined;
|
|
30
|
+
constructor(
|
|
31
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
32
|
+
);
|
|
33
|
+
}
|
|
34
|
+
export declare class ThrottlingException extends __BaseException {
|
|
35
|
+
readonly name: "ThrottlingException";
|
|
36
|
+
readonly $fault: "client";
|
|
37
|
+
Message: string | undefined;
|
|
38
|
+
constructor(
|
|
39
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
40
|
+
);
|
|
41
|
+
}
|
|
42
|
+
export declare class ValidationException extends __BaseException {
|
|
43
|
+
readonly name: "ValidationException";
|
|
44
|
+
readonly $fault: "client";
|
|
45
|
+
Message: string | undefined;
|
|
46
|
+
constructor(
|
|
47
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
48
|
+
);
|
|
49
|
+
}
|
|
50
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
51
|
+
readonly name: "ResourceNotFoundException";
|
|
52
|
+
readonly $fault: "client";
|
|
53
|
+
Message: string | undefined;
|
|
54
|
+
constructor(
|
|
55
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
56
|
+
);
|
|
57
|
+
}
|
|
58
|
+
export declare class InvalidParameterException extends __BaseException {
|
|
59
|
+
readonly name: "InvalidParameterException";
|
|
60
|
+
readonly $fault: "client";
|
|
61
|
+
Message: string | undefined;
|
|
62
|
+
constructor(
|
|
63
|
+
opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
|
|
64
|
+
);
|
|
65
|
+
}
|
|
66
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
67
|
+
readonly name: "TooManyTagsException";
|
|
68
|
+
readonly $fault: "client";
|
|
69
|
+
Message: string | undefined;
|
|
70
|
+
ResourceName?: string | undefined;
|
|
71
|
+
constructor(
|
|
72
|
+
opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
|
|
73
|
+
);
|
|
74
|
+
}
|