@aws-sdk/client-sso-admin 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 +90 -89
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +89 -0
- package/dist-es/models/errors.js +107 -0
- package/dist-es/models/models_0.js +1 -196
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +265 -0
- package/dist-types/models/errors.d.ts +114 -0
- package/dist-types/models/models_0.d.ts +1 -378
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +126 -0
- package/dist-types/ts3.4/models/errors.d.ts +66 -0
- package/dist-types/ts3.4/models/models_0.d.ts +20 -186
- 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,6 +1,5 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
1
|
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
3
|
-
import {
|
|
2
|
+
import { ApplicationStatus, ApplicationVisibility, AuthenticationMethodType, FederationProtocol, GrantType, InstanceAccessControlAttributeConfigurationStatus, InstanceStatus, JwksRetrievalOption, KmsKeyStatus, KmsKeyType, PrincipalType, ProvisioningStatus, ProvisionTargetType, SignInOrigin, StatusValues, TargetType, TrustedTokenIssuerType, UserBackgroundSessionApplicationStatus } from "./enums";
|
|
4
3
|
/**
|
|
5
4
|
* <p>The value used for mapping a specified attribute to an identity source. For more information, see <a href="https://docs.aws.amazon.com/singlesignon/latest/userguide/attributemappingsconcept.html">Attribute mappings</a> in the <i>IAM Identity Center User Guide</i>.</p>
|
|
6
5
|
* @public
|
|
@@ -28,47 +27,6 @@ export interface AccessControlAttribute {
|
|
|
28
27
|
*/
|
|
29
28
|
Value: AccessControlAttributeValue | undefined;
|
|
30
29
|
}
|
|
31
|
-
/**
|
|
32
|
-
* @public
|
|
33
|
-
* @enum
|
|
34
|
-
*/
|
|
35
|
-
export declare const AccessDeniedExceptionReason: {
|
|
36
|
-
readonly KMS_ACCESS_DENIED_EXCEPTION: "KMS_AccessDeniedException";
|
|
37
|
-
};
|
|
38
|
-
/**
|
|
39
|
-
* @public
|
|
40
|
-
*/
|
|
41
|
-
export type AccessDeniedExceptionReason = (typeof AccessDeniedExceptionReason)[keyof typeof AccessDeniedExceptionReason];
|
|
42
|
-
/**
|
|
43
|
-
* <p>You do not have sufficient access to perform this action.</p>
|
|
44
|
-
* @public
|
|
45
|
-
*/
|
|
46
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
47
|
-
readonly name: "AccessDeniedException";
|
|
48
|
-
readonly $fault: "client";
|
|
49
|
-
Message?: string | undefined;
|
|
50
|
-
/**
|
|
51
|
-
* <p>The reason for the access denied exception.</p>
|
|
52
|
-
* @public
|
|
53
|
-
*/
|
|
54
|
-
Reason?: AccessDeniedExceptionReason | undefined;
|
|
55
|
-
/**
|
|
56
|
-
* @internal
|
|
57
|
-
*/
|
|
58
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
59
|
-
}
|
|
60
|
-
/**
|
|
61
|
-
* @public
|
|
62
|
-
* @enum
|
|
63
|
-
*/
|
|
64
|
-
export declare const PrincipalType: {
|
|
65
|
-
readonly GROUP: "GROUP";
|
|
66
|
-
readonly USER: "USER";
|
|
67
|
-
};
|
|
68
|
-
/**
|
|
69
|
-
* @public
|
|
70
|
-
*/
|
|
71
|
-
export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
|
|
72
30
|
/**
|
|
73
31
|
* <p>The assignment that indicates a principal's limited access to a specified Amazon Web Services account with a specified permission set.</p> <note> <p>The term <i>principal</i> here refers to a user or group that is defined in IAM Identity Center.</p> </note>
|
|
74
32
|
* @public
|
|
@@ -121,30 +79,6 @@ export interface AccountAssignmentForPrincipal {
|
|
|
121
79
|
*/
|
|
122
80
|
PrincipalType?: PrincipalType | undefined;
|
|
123
81
|
}
|
|
124
|
-
/**
|
|
125
|
-
* @public
|
|
126
|
-
* @enum
|
|
127
|
-
*/
|
|
128
|
-
export declare const StatusValues: {
|
|
129
|
-
readonly FAILED: "FAILED";
|
|
130
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
131
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
132
|
-
};
|
|
133
|
-
/**
|
|
134
|
-
* @public
|
|
135
|
-
*/
|
|
136
|
-
export type StatusValues = (typeof StatusValues)[keyof typeof StatusValues];
|
|
137
|
-
/**
|
|
138
|
-
* @public
|
|
139
|
-
* @enum
|
|
140
|
-
*/
|
|
141
|
-
export declare const TargetType: {
|
|
142
|
-
readonly AWS_ACCOUNT: "AWS_ACCOUNT";
|
|
143
|
-
};
|
|
144
|
-
/**
|
|
145
|
-
* @public
|
|
146
|
-
*/
|
|
147
|
-
export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
148
82
|
/**
|
|
149
83
|
* <p>The status of the creation or deletion operation of an assignment that a principal needs to access an account.</p>
|
|
150
84
|
* @public
|
|
@@ -217,18 +151,6 @@ export interface AccountAssignmentOperationStatusMetadata {
|
|
|
217
151
|
*/
|
|
218
152
|
CreatedDate?: Date | undefined;
|
|
219
153
|
}
|
|
220
|
-
/**
|
|
221
|
-
* @public
|
|
222
|
-
* @enum
|
|
223
|
-
*/
|
|
224
|
-
export declare const SignInOrigin: {
|
|
225
|
-
readonly APPLICATION: "APPLICATION";
|
|
226
|
-
readonly IDENTITY_CENTER: "IDENTITY_CENTER";
|
|
227
|
-
};
|
|
228
|
-
/**
|
|
229
|
-
* @public
|
|
230
|
-
*/
|
|
231
|
-
export type SignInOrigin = (typeof SignInOrigin)[keyof typeof SignInOrigin];
|
|
232
154
|
/**
|
|
233
155
|
* <p>A structure that describes the sign-in options for an application portal.</p>
|
|
234
156
|
* @public
|
|
@@ -245,18 +167,6 @@ export interface SignInOptions {
|
|
|
245
167
|
*/
|
|
246
168
|
ApplicationUrl?: string | undefined;
|
|
247
169
|
}
|
|
248
|
-
/**
|
|
249
|
-
* @public
|
|
250
|
-
* @enum
|
|
251
|
-
*/
|
|
252
|
-
export declare const ApplicationVisibility: {
|
|
253
|
-
readonly DISABLED: "DISABLED";
|
|
254
|
-
readonly ENABLED: "ENABLED";
|
|
255
|
-
};
|
|
256
|
-
/**
|
|
257
|
-
* @public
|
|
258
|
-
*/
|
|
259
|
-
export type ApplicationVisibility = (typeof ApplicationVisibility)[keyof typeof ApplicationVisibility];
|
|
260
170
|
/**
|
|
261
171
|
* <p>A structure that describes the options for the access portal associated with an application.</p>
|
|
262
172
|
* @public
|
|
@@ -273,18 +183,6 @@ export interface PortalOptions {
|
|
|
273
183
|
*/
|
|
274
184
|
Visibility?: ApplicationVisibility | undefined;
|
|
275
185
|
}
|
|
276
|
-
/**
|
|
277
|
-
* @public
|
|
278
|
-
* @enum
|
|
279
|
-
*/
|
|
280
|
-
export declare const ApplicationStatus: {
|
|
281
|
-
readonly DISABLED: "DISABLED";
|
|
282
|
-
readonly ENABLED: "ENABLED";
|
|
283
|
-
};
|
|
284
|
-
/**
|
|
285
|
-
* @public
|
|
286
|
-
*/
|
|
287
|
-
export type ApplicationStatus = (typeof ApplicationStatus)[keyof typeof ApplicationStatus];
|
|
288
186
|
/**
|
|
289
187
|
* <p>A structure that describes an application that uses IAM Identity Center for access management.</p>
|
|
290
188
|
* @public
|
|
@@ -336,19 +234,6 @@ export interface Application {
|
|
|
336
234
|
*/
|
|
337
235
|
CreatedDate?: Date | undefined;
|
|
338
236
|
}
|
|
339
|
-
/**
|
|
340
|
-
* <p>Occurs when a conflict with a previous successful write is detected. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
341
|
-
* @public
|
|
342
|
-
*/
|
|
343
|
-
export declare class ConflictException extends __BaseException {
|
|
344
|
-
readonly name: "ConflictException";
|
|
345
|
-
readonly $fault: "client";
|
|
346
|
-
Message?: string | undefined;
|
|
347
|
-
/**
|
|
348
|
-
* @internal
|
|
349
|
-
*/
|
|
350
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
351
|
-
}
|
|
352
237
|
/**
|
|
353
238
|
* @public
|
|
354
239
|
*/
|
|
@@ -364,108 +249,6 @@ export interface DeleteApplicationAccessScopeRequest {
|
|
|
364
249
|
*/
|
|
365
250
|
Scope: string | undefined;
|
|
366
251
|
}
|
|
367
|
-
/**
|
|
368
|
-
* <p>The request processing has failed because of an unknown error, exception, or failure with an internal server.</p>
|
|
369
|
-
* @public
|
|
370
|
-
*/
|
|
371
|
-
export declare class InternalServerException extends __BaseException {
|
|
372
|
-
readonly name: "InternalServerException";
|
|
373
|
-
readonly $fault: "server";
|
|
374
|
-
Message?: string | undefined;
|
|
375
|
-
/**
|
|
376
|
-
* @internal
|
|
377
|
-
*/
|
|
378
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
379
|
-
}
|
|
380
|
-
/**
|
|
381
|
-
* @public
|
|
382
|
-
* @enum
|
|
383
|
-
*/
|
|
384
|
-
export declare const ResourceNotFoundExceptionReason: {
|
|
385
|
-
readonly KMS_NOT_FOUND_EXCEPTION: "KMS_NotFoundException";
|
|
386
|
-
};
|
|
387
|
-
/**
|
|
388
|
-
* @public
|
|
389
|
-
*/
|
|
390
|
-
export type ResourceNotFoundExceptionReason = (typeof ResourceNotFoundExceptionReason)[keyof typeof ResourceNotFoundExceptionReason];
|
|
391
|
-
/**
|
|
392
|
-
* <p>Indicates that a requested resource is not found.</p>
|
|
393
|
-
* @public
|
|
394
|
-
*/
|
|
395
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
396
|
-
readonly name: "ResourceNotFoundException";
|
|
397
|
-
readonly $fault: "client";
|
|
398
|
-
Message?: string | undefined;
|
|
399
|
-
/**
|
|
400
|
-
* <p>The reason for the resource not found exception.</p>
|
|
401
|
-
* @public
|
|
402
|
-
*/
|
|
403
|
-
Reason?: ResourceNotFoundExceptionReason | undefined;
|
|
404
|
-
/**
|
|
405
|
-
* @internal
|
|
406
|
-
*/
|
|
407
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
408
|
-
}
|
|
409
|
-
/**
|
|
410
|
-
* @public
|
|
411
|
-
* @enum
|
|
412
|
-
*/
|
|
413
|
-
export declare const ThrottlingExceptionReason: {
|
|
414
|
-
readonly KMS_THROTTLING_EXCEPTION: "KMS_ThrottlingException";
|
|
415
|
-
};
|
|
416
|
-
/**
|
|
417
|
-
* @public
|
|
418
|
-
*/
|
|
419
|
-
export type ThrottlingExceptionReason = (typeof ThrottlingExceptionReason)[keyof typeof ThrottlingExceptionReason];
|
|
420
|
-
/**
|
|
421
|
-
* <p>Indicates that the principal has crossed the throttling limits of the API operations.</p>
|
|
422
|
-
* @public
|
|
423
|
-
*/
|
|
424
|
-
export declare class ThrottlingException extends __BaseException {
|
|
425
|
-
readonly name: "ThrottlingException";
|
|
426
|
-
readonly $fault: "client";
|
|
427
|
-
Message?: string | undefined;
|
|
428
|
-
/**
|
|
429
|
-
* <p>The reason for the throttling exception.</p>
|
|
430
|
-
* @public
|
|
431
|
-
*/
|
|
432
|
-
Reason?: ThrottlingExceptionReason | undefined;
|
|
433
|
-
/**
|
|
434
|
-
* @internal
|
|
435
|
-
*/
|
|
436
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
437
|
-
}
|
|
438
|
-
/**
|
|
439
|
-
* @public
|
|
440
|
-
* @enum
|
|
441
|
-
*/
|
|
442
|
-
export declare const ValidationExceptionReason: {
|
|
443
|
-
readonly KMS_DISABLED_EXCEPTION: "KMS_DisabledException";
|
|
444
|
-
readonly KMS_INVALID_KEY_USAGE_EXCEPTION: "KMS_InvalidKeyUsageException";
|
|
445
|
-
readonly KMS_INVALID_STATE_EXCEPTION: "KMS_InvalidStateException";
|
|
446
|
-
};
|
|
447
|
-
/**
|
|
448
|
-
* @public
|
|
449
|
-
*/
|
|
450
|
-
export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
451
|
-
/**
|
|
452
|
-
* <p>The request failed because it contains a syntax error.</p>
|
|
453
|
-
* @public
|
|
454
|
-
*/
|
|
455
|
-
export declare class ValidationException extends __BaseException {
|
|
456
|
-
readonly name: "ValidationException";
|
|
457
|
-
readonly $fault: "client";
|
|
458
|
-
Message?: string | undefined;
|
|
459
|
-
/**
|
|
460
|
-
* <p>The reason for the validation exception.</p>
|
|
461
|
-
* @public
|
|
462
|
-
*/
|
|
463
|
-
Reason?: ValidationExceptionReason | undefined;
|
|
464
|
-
/**
|
|
465
|
-
* @internal
|
|
466
|
-
*/
|
|
467
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
468
|
-
}
|
|
469
252
|
/**
|
|
470
253
|
* @public
|
|
471
254
|
*/
|
|
@@ -609,17 +392,6 @@ export interface ApplicationAssignmentForPrincipal {
|
|
|
609
392
|
*/
|
|
610
393
|
PrincipalType?: PrincipalType | undefined;
|
|
611
394
|
}
|
|
612
|
-
/**
|
|
613
|
-
* @public
|
|
614
|
-
* @enum
|
|
615
|
-
*/
|
|
616
|
-
export declare const AuthenticationMethodType: {
|
|
617
|
-
readonly IAM: "IAM";
|
|
618
|
-
};
|
|
619
|
-
/**
|
|
620
|
-
* @public
|
|
621
|
-
*/
|
|
622
|
-
export type AuthenticationMethodType = (typeof AuthenticationMethodType)[keyof typeof AuthenticationMethodType];
|
|
623
395
|
/**
|
|
624
396
|
* @public
|
|
625
397
|
*/
|
|
@@ -770,20 +542,6 @@ export interface PutApplicationAuthenticationMethodRequest {
|
|
|
770
542
|
*/
|
|
771
543
|
AuthenticationMethod: AuthenticationMethod | undefined;
|
|
772
544
|
}
|
|
773
|
-
/**
|
|
774
|
-
* @public
|
|
775
|
-
* @enum
|
|
776
|
-
*/
|
|
777
|
-
export declare const GrantType: {
|
|
778
|
-
readonly AUTHORIZATION_CODE: "authorization_code";
|
|
779
|
-
readonly JWT_BEARER: "urn:ietf:params:oauth:grant-type:jwt-bearer";
|
|
780
|
-
readonly REFRESH_TOKEN: "refresh_token";
|
|
781
|
-
readonly TOKEN_EXCHANGE: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
782
|
-
};
|
|
783
|
-
/**
|
|
784
|
-
* @public
|
|
785
|
-
*/
|
|
786
|
-
export type GrantType = (typeof GrantType)[keyof typeof GrantType];
|
|
787
545
|
/**
|
|
788
546
|
* @public
|
|
789
547
|
*/
|
|
@@ -1036,18 +794,6 @@ export interface DisplayData {
|
|
|
1036
794
|
*/
|
|
1037
795
|
Description?: string | undefined;
|
|
1038
796
|
}
|
|
1039
|
-
/**
|
|
1040
|
-
* @public
|
|
1041
|
-
* @enum
|
|
1042
|
-
*/
|
|
1043
|
-
export declare const FederationProtocol: {
|
|
1044
|
-
readonly OAUTH: "OAUTH";
|
|
1045
|
-
readonly SAML: "SAML";
|
|
1046
|
-
};
|
|
1047
|
-
/**
|
|
1048
|
-
* @public
|
|
1049
|
-
*/
|
|
1050
|
-
export type FederationProtocol = (typeof FederationProtocol)[keyof typeof FederationProtocol];
|
|
1051
797
|
/**
|
|
1052
798
|
* <p>A structure that describes details for an IAM Identity Center access scope that is associated with a resource server.</p>
|
|
1053
799
|
* @public
|
|
@@ -1142,19 +888,6 @@ export interface AttachCustomerManagedPolicyReferenceToPermissionSetRequest {
|
|
|
1142
888
|
*/
|
|
1143
889
|
export interface AttachCustomerManagedPolicyReferenceToPermissionSetResponse {
|
|
1144
890
|
}
|
|
1145
|
-
/**
|
|
1146
|
-
* <p>Indicates that the principal has crossed the permitted number of resources that can be created.</p>
|
|
1147
|
-
* @public
|
|
1148
|
-
*/
|
|
1149
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
1150
|
-
readonly name: "ServiceQuotaExceededException";
|
|
1151
|
-
readonly $fault: "client";
|
|
1152
|
-
Message?: string | undefined;
|
|
1153
|
-
/**
|
|
1154
|
-
* @internal
|
|
1155
|
-
*/
|
|
1156
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
1157
|
-
}
|
|
1158
891
|
/**
|
|
1159
892
|
* <p>A structure that stores a list of managed policy ARNs that describe the associated Amazon Web Services managed policy.</p>
|
|
1160
893
|
* @public
|
|
@@ -1479,17 +1212,6 @@ export interface CreatePermissionSetResponse {
|
|
|
1479
1212
|
*/
|
|
1480
1213
|
PermissionSet?: PermissionSet | undefined;
|
|
1481
1214
|
}
|
|
1482
|
-
/**
|
|
1483
|
-
* @public
|
|
1484
|
-
* @enum
|
|
1485
|
-
*/
|
|
1486
|
-
export declare const JwksRetrievalOption: {
|
|
1487
|
-
readonly OPEN_ID_DISCOVERY: "OPEN_ID_DISCOVERY";
|
|
1488
|
-
};
|
|
1489
|
-
/**
|
|
1490
|
-
* @public
|
|
1491
|
-
*/
|
|
1492
|
-
export type JwksRetrievalOption = (typeof JwksRetrievalOption)[keyof typeof JwksRetrievalOption];
|
|
1493
1215
|
/**
|
|
1494
1216
|
* <p>A structure that describes configuration settings for a trusted token issuer that supports OpenID Connect (OIDC) and JSON Web Tokens (JWTs).</p>
|
|
1495
1217
|
* @public
|
|
@@ -1549,17 +1271,6 @@ export declare namespace TrustedTokenIssuerConfiguration {
|
|
|
1549
1271
|
_: (name: string, value: any) => T;
|
|
1550
1272
|
}
|
|
1551
1273
|
}
|
|
1552
|
-
/**
|
|
1553
|
-
* @public
|
|
1554
|
-
* @enum
|
|
1555
|
-
*/
|
|
1556
|
-
export declare const TrustedTokenIssuerType: {
|
|
1557
|
-
readonly OIDC_JWT: "OIDC_JWT";
|
|
1558
|
-
};
|
|
1559
|
-
/**
|
|
1560
|
-
* @public
|
|
1561
|
-
*/
|
|
1562
|
-
export type TrustedTokenIssuerType = (typeof TrustedTokenIssuerType)[keyof typeof TrustedTokenIssuerType];
|
|
1563
1274
|
/**
|
|
1564
1275
|
* @public
|
|
1565
1276
|
*/
|
|
@@ -1990,31 +1701,6 @@ export interface DescribeInstanceRequest {
|
|
|
1990
1701
|
*/
|
|
1991
1702
|
InstanceArn: string | undefined;
|
|
1992
1703
|
}
|
|
1993
|
-
/**
|
|
1994
|
-
* @public
|
|
1995
|
-
* @enum
|
|
1996
|
-
*/
|
|
1997
|
-
export declare const KmsKeyStatus: {
|
|
1998
|
-
readonly ENABLED: "ENABLED";
|
|
1999
|
-
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
2000
|
-
readonly UPDATING: "UPDATING";
|
|
2001
|
-
};
|
|
2002
|
-
/**
|
|
2003
|
-
* @public
|
|
2004
|
-
*/
|
|
2005
|
-
export type KmsKeyStatus = (typeof KmsKeyStatus)[keyof typeof KmsKeyStatus];
|
|
2006
|
-
/**
|
|
2007
|
-
* @public
|
|
2008
|
-
* @enum
|
|
2009
|
-
*/
|
|
2010
|
-
export declare const KmsKeyType: {
|
|
2011
|
-
readonly AWS_OWNED_KMS_KEY: "AWS_OWNED_KMS_KEY";
|
|
2012
|
-
readonly CUSTOMER_MANAGED_KEY: "CUSTOMER_MANAGED_KEY";
|
|
2013
|
-
};
|
|
2014
|
-
/**
|
|
2015
|
-
* @public
|
|
2016
|
-
*/
|
|
2017
|
-
export type KmsKeyType = (typeof KmsKeyType)[keyof typeof KmsKeyType];
|
|
2018
1704
|
/**
|
|
2019
1705
|
* <p>The encryption configuration of your IAM Identity Center instance, including the key type, KMS key ARN, and current encryption status. </p>
|
|
2020
1706
|
* @public
|
|
@@ -2041,20 +1727,6 @@ export interface EncryptionConfigurationDetails {
|
|
|
2041
1727
|
*/
|
|
2042
1728
|
EncryptionStatusReason?: string | undefined;
|
|
2043
1729
|
}
|
|
2044
|
-
/**
|
|
2045
|
-
* @public
|
|
2046
|
-
* @enum
|
|
2047
|
-
*/
|
|
2048
|
-
export declare const InstanceStatus: {
|
|
2049
|
-
readonly ACTIVE: "ACTIVE";
|
|
2050
|
-
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
2051
|
-
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
2052
|
-
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
2053
|
-
};
|
|
2054
|
-
/**
|
|
2055
|
-
* @public
|
|
2056
|
-
*/
|
|
2057
|
-
export type InstanceStatus = (typeof InstanceStatus)[keyof typeof InstanceStatus];
|
|
2058
1730
|
/**
|
|
2059
1731
|
* @public
|
|
2060
1732
|
*/
|
|
@@ -2110,19 +1782,6 @@ export interface DescribeInstanceAccessControlAttributeConfigurationRequest {
|
|
|
2110
1782
|
*/
|
|
2111
1783
|
InstanceArn: string | undefined;
|
|
2112
1784
|
}
|
|
2113
|
-
/**
|
|
2114
|
-
* @public
|
|
2115
|
-
* @enum
|
|
2116
|
-
*/
|
|
2117
|
-
export declare const InstanceAccessControlAttributeConfigurationStatus: {
|
|
2118
|
-
readonly CREATION_FAILED: "CREATION_FAILED";
|
|
2119
|
-
readonly CREATION_IN_PROGRESS: "CREATION_IN_PROGRESS";
|
|
2120
|
-
readonly ENABLED: "ENABLED";
|
|
2121
|
-
};
|
|
2122
|
-
/**
|
|
2123
|
-
* @public
|
|
2124
|
-
*/
|
|
2125
|
-
export type InstanceAccessControlAttributeConfigurationStatus = (typeof InstanceAccessControlAttributeConfigurationStatus)[keyof typeof InstanceAccessControlAttributeConfigurationStatus];
|
|
2126
1785
|
/**
|
|
2127
1786
|
* @public
|
|
2128
1787
|
*/
|
|
@@ -2360,18 +2019,6 @@ export interface GetApplicationSessionConfigurationRequest {
|
|
|
2360
2019
|
*/
|
|
2361
2020
|
ApplicationArn: string | undefined;
|
|
2362
2021
|
}
|
|
2363
|
-
/**
|
|
2364
|
-
* @public
|
|
2365
|
-
* @enum
|
|
2366
|
-
*/
|
|
2367
|
-
export declare const UserBackgroundSessionApplicationStatus: {
|
|
2368
|
-
readonly DISABLED: "DISABLED";
|
|
2369
|
-
readonly ENABLED: "ENABLED";
|
|
2370
|
-
};
|
|
2371
|
-
/**
|
|
2372
|
-
* @public
|
|
2373
|
-
*/
|
|
2374
|
-
export type UserBackgroundSessionApplicationStatus = (typeof UserBackgroundSessionApplicationStatus)[keyof typeof UserBackgroundSessionApplicationStatus];
|
|
2375
2022
|
/**
|
|
2376
2023
|
* @public
|
|
2377
2024
|
*/
|
|
@@ -2686,18 +2333,6 @@ export interface ListAccountAssignmentsForPrincipalResponse {
|
|
|
2686
2333
|
*/
|
|
2687
2334
|
NextToken?: string | undefined;
|
|
2688
2335
|
}
|
|
2689
|
-
/**
|
|
2690
|
-
* @public
|
|
2691
|
-
* @enum
|
|
2692
|
-
*/
|
|
2693
|
-
export declare const ProvisioningStatus: {
|
|
2694
|
-
readonly LATEST_PERMISSION_SET_NOT_PROVISIONED: "LATEST_PERMISSION_SET_NOT_PROVISIONED";
|
|
2695
|
-
readonly LATEST_PERMISSION_SET_PROVISIONED: "LATEST_PERMISSION_SET_PROVISIONED";
|
|
2696
|
-
};
|
|
2697
|
-
/**
|
|
2698
|
-
* @public
|
|
2699
|
-
*/
|
|
2700
|
-
export type ProvisioningStatus = (typeof ProvisioningStatus)[keyof typeof ProvisioningStatus];
|
|
2701
2336
|
/**
|
|
2702
2337
|
* @public
|
|
2703
2338
|
*/
|
|
@@ -3288,18 +2923,6 @@ export interface OidcJwtUpdateConfiguration {
|
|
|
3288
2923
|
*/
|
|
3289
2924
|
JwksRetrievalOption?: JwksRetrievalOption | undefined;
|
|
3290
2925
|
}
|
|
3291
|
-
/**
|
|
3292
|
-
* @public
|
|
3293
|
-
* @enum
|
|
3294
|
-
*/
|
|
3295
|
-
export declare const ProvisionTargetType: {
|
|
3296
|
-
readonly ALL_PROVISIONED_ACCOUNTS: "ALL_PROVISIONED_ACCOUNTS";
|
|
3297
|
-
readonly AWS_ACCOUNT: "AWS_ACCOUNT";
|
|
3298
|
-
};
|
|
3299
|
-
/**
|
|
3300
|
-
* @public
|
|
3301
|
-
*/
|
|
3302
|
-
export type ProvisionTargetType = (typeof ProvisionTargetType)[keyof typeof ProvisionTargetType];
|
|
3303
2926
|
/**
|
|
3304
2927
|
* @public
|
|
3305
2928
|
*/
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { SSOAdminExtensionConfiguration } 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 { SSOAdminServiceException } from "./models/SSOAdminServiceException";
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
export declare const AccessDeniedExceptionReason: {
|
|
2
|
+
readonly KMS_ACCESS_DENIED_EXCEPTION: "KMS_AccessDeniedException";
|
|
3
|
+
};
|
|
4
|
+
export type AccessDeniedExceptionReason =
|
|
5
|
+
(typeof AccessDeniedExceptionReason)[keyof typeof AccessDeniedExceptionReason];
|
|
6
|
+
export declare const PrincipalType: {
|
|
7
|
+
readonly GROUP: "GROUP";
|
|
8
|
+
readonly USER: "USER";
|
|
9
|
+
};
|
|
10
|
+
export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
|
|
11
|
+
export declare const StatusValues: {
|
|
12
|
+
readonly FAILED: "FAILED";
|
|
13
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
14
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
15
|
+
};
|
|
16
|
+
export type StatusValues = (typeof StatusValues)[keyof typeof StatusValues];
|
|
17
|
+
export declare const TargetType: {
|
|
18
|
+
readonly AWS_ACCOUNT: "AWS_ACCOUNT";
|
|
19
|
+
};
|
|
20
|
+
export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
21
|
+
export declare const SignInOrigin: {
|
|
22
|
+
readonly APPLICATION: "APPLICATION";
|
|
23
|
+
readonly IDENTITY_CENTER: "IDENTITY_CENTER";
|
|
24
|
+
};
|
|
25
|
+
export type SignInOrigin = (typeof SignInOrigin)[keyof typeof SignInOrigin];
|
|
26
|
+
export declare const ApplicationVisibility: {
|
|
27
|
+
readonly DISABLED: "DISABLED";
|
|
28
|
+
readonly ENABLED: "ENABLED";
|
|
29
|
+
};
|
|
30
|
+
export type ApplicationVisibility =
|
|
31
|
+
(typeof ApplicationVisibility)[keyof typeof ApplicationVisibility];
|
|
32
|
+
export declare const ApplicationStatus: {
|
|
33
|
+
readonly DISABLED: "DISABLED";
|
|
34
|
+
readonly ENABLED: "ENABLED";
|
|
35
|
+
};
|
|
36
|
+
export type ApplicationStatus =
|
|
37
|
+
(typeof ApplicationStatus)[keyof typeof ApplicationStatus];
|
|
38
|
+
export declare const ResourceNotFoundExceptionReason: {
|
|
39
|
+
readonly KMS_NOT_FOUND_EXCEPTION: "KMS_NotFoundException";
|
|
40
|
+
};
|
|
41
|
+
export type ResourceNotFoundExceptionReason =
|
|
42
|
+
(typeof ResourceNotFoundExceptionReason)[keyof typeof ResourceNotFoundExceptionReason];
|
|
43
|
+
export declare const ThrottlingExceptionReason: {
|
|
44
|
+
readonly KMS_THROTTLING_EXCEPTION: "KMS_ThrottlingException";
|
|
45
|
+
};
|
|
46
|
+
export type ThrottlingExceptionReason =
|
|
47
|
+
(typeof ThrottlingExceptionReason)[keyof typeof ThrottlingExceptionReason];
|
|
48
|
+
export declare const ValidationExceptionReason: {
|
|
49
|
+
readonly KMS_DISABLED_EXCEPTION: "KMS_DisabledException";
|
|
50
|
+
readonly KMS_INVALID_KEY_USAGE_EXCEPTION: "KMS_InvalidKeyUsageException";
|
|
51
|
+
readonly KMS_INVALID_STATE_EXCEPTION: "KMS_InvalidStateException";
|
|
52
|
+
};
|
|
53
|
+
export type ValidationExceptionReason =
|
|
54
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
55
|
+
export declare const AuthenticationMethodType: {
|
|
56
|
+
readonly IAM: "IAM";
|
|
57
|
+
};
|
|
58
|
+
export type AuthenticationMethodType =
|
|
59
|
+
(typeof AuthenticationMethodType)[keyof typeof AuthenticationMethodType];
|
|
60
|
+
export declare const GrantType: {
|
|
61
|
+
readonly AUTHORIZATION_CODE: "authorization_code";
|
|
62
|
+
readonly JWT_BEARER: "urn:ietf:params:oauth:grant-type:jwt-bearer";
|
|
63
|
+
readonly REFRESH_TOKEN: "refresh_token";
|
|
64
|
+
readonly TOKEN_EXCHANGE: "urn:ietf:params:oauth:grant-type:token-exchange";
|
|
65
|
+
};
|
|
66
|
+
export type GrantType = (typeof GrantType)[keyof typeof GrantType];
|
|
67
|
+
export declare const FederationProtocol: {
|
|
68
|
+
readonly OAUTH: "OAUTH";
|
|
69
|
+
readonly SAML: "SAML";
|
|
70
|
+
};
|
|
71
|
+
export type FederationProtocol =
|
|
72
|
+
(typeof FederationProtocol)[keyof typeof FederationProtocol];
|
|
73
|
+
export declare const JwksRetrievalOption: {
|
|
74
|
+
readonly OPEN_ID_DISCOVERY: "OPEN_ID_DISCOVERY";
|
|
75
|
+
};
|
|
76
|
+
export type JwksRetrievalOption =
|
|
77
|
+
(typeof JwksRetrievalOption)[keyof typeof JwksRetrievalOption];
|
|
78
|
+
export declare const TrustedTokenIssuerType: {
|
|
79
|
+
readonly OIDC_JWT: "OIDC_JWT";
|
|
80
|
+
};
|
|
81
|
+
export type TrustedTokenIssuerType =
|
|
82
|
+
(typeof TrustedTokenIssuerType)[keyof typeof TrustedTokenIssuerType];
|
|
83
|
+
export declare const KmsKeyStatus: {
|
|
84
|
+
readonly ENABLED: "ENABLED";
|
|
85
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
86
|
+
readonly UPDATING: "UPDATING";
|
|
87
|
+
};
|
|
88
|
+
export type KmsKeyStatus = (typeof KmsKeyStatus)[keyof typeof KmsKeyStatus];
|
|
89
|
+
export declare const KmsKeyType: {
|
|
90
|
+
readonly AWS_OWNED_KMS_KEY: "AWS_OWNED_KMS_KEY";
|
|
91
|
+
readonly CUSTOMER_MANAGED_KEY: "CUSTOMER_MANAGED_KEY";
|
|
92
|
+
};
|
|
93
|
+
export type KmsKeyType = (typeof KmsKeyType)[keyof typeof KmsKeyType];
|
|
94
|
+
export declare const InstanceStatus: {
|
|
95
|
+
readonly ACTIVE: "ACTIVE";
|
|
96
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
97
|
+
readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
|
|
98
|
+
readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
|
|
99
|
+
};
|
|
100
|
+
export type InstanceStatus =
|
|
101
|
+
(typeof InstanceStatus)[keyof typeof InstanceStatus];
|
|
102
|
+
export declare const InstanceAccessControlAttributeConfigurationStatus: {
|
|
103
|
+
readonly CREATION_FAILED: "CREATION_FAILED";
|
|
104
|
+
readonly CREATION_IN_PROGRESS: "CREATION_IN_PROGRESS";
|
|
105
|
+
readonly ENABLED: "ENABLED";
|
|
106
|
+
};
|
|
107
|
+
export type InstanceAccessControlAttributeConfigurationStatus =
|
|
108
|
+
(typeof InstanceAccessControlAttributeConfigurationStatus)[keyof typeof InstanceAccessControlAttributeConfigurationStatus];
|
|
109
|
+
export declare const UserBackgroundSessionApplicationStatus: {
|
|
110
|
+
readonly DISABLED: "DISABLED";
|
|
111
|
+
readonly ENABLED: "ENABLED";
|
|
112
|
+
};
|
|
113
|
+
export type UserBackgroundSessionApplicationStatus =
|
|
114
|
+
(typeof UserBackgroundSessionApplicationStatus)[keyof typeof UserBackgroundSessionApplicationStatus];
|
|
115
|
+
export declare const ProvisioningStatus: {
|
|
116
|
+
readonly LATEST_PERMISSION_SET_NOT_PROVISIONED: "LATEST_PERMISSION_SET_NOT_PROVISIONED";
|
|
117
|
+
readonly LATEST_PERMISSION_SET_PROVISIONED: "LATEST_PERMISSION_SET_PROVISIONED";
|
|
118
|
+
};
|
|
119
|
+
export type ProvisioningStatus =
|
|
120
|
+
(typeof ProvisioningStatus)[keyof typeof ProvisioningStatus];
|
|
121
|
+
export declare const ProvisionTargetType: {
|
|
122
|
+
readonly ALL_PROVISIONED_ACCOUNTS: "ALL_PROVISIONED_ACCOUNTS";
|
|
123
|
+
readonly AWS_ACCOUNT: "AWS_ACCOUNT";
|
|
124
|
+
};
|
|
125
|
+
export type ProvisionTargetType =
|
|
126
|
+
(typeof ProvisionTargetType)[keyof typeof ProvisionTargetType];
|