@aws-sdk/client-sso-admin 3.980.0 → 3.982.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/README.md +28 -0
- package/dist-cjs/index.js +180 -22
- package/dist-es/SSOAdmin.js +10 -0
- package/dist-es/commands/AddRegionCommand.js +16 -0
- package/dist-es/commands/DescribeRegionCommand.js +16 -0
- package/dist-es/commands/ListRegionsCommand.js +16 -0
- package/dist-es/commands/RemoveRegionCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +13 -8
- package/dist-es/models/errors.js +10 -10
- package/dist-es/pagination/ListRegionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +83 -4
- package/dist-types/SSOAdmin.d.ts +35 -0
- package/dist-types/SSOAdminClient.d.ts +6 -2
- package/dist-types/commands/AddRegionCommand.d.ts +93 -0
- package/dist-types/commands/DescribeApplicationCommand.d.ts +1 -0
- package/dist-types/commands/DescribeRegionCommand.d.ts +93 -0
- package/dist-types/commands/ListApplicationsCommand.d.ts +1 -0
- package/dist-types/commands/ListRegionsCommand.d.ts +96 -0
- package/dist-types/commands/RemoveRegionCommand.d.ts +93 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +36 -23
- package/dist-types/models/errors.d.ts +13 -13
- package/dist-types/models/models_0.d.ts +163 -2
- package/dist-types/pagination/ListRegionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +13 -0
- package/dist-types/ts3.4/SSOAdmin.d.ts +75 -0
- package/dist-types/ts3.4/SSOAdminClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/AddRegionCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DescribeRegionCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListRegionsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/RemoveRegionCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +18 -12
- package/dist-types/ts3.4/models/errors.d.ts +7 -7
- package/dist-types/ts3.4/models/models_0.d.ts +42 -0
- package/dist-types/ts3.4/pagination/ListRegionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +13 -0
- package/package.json +6 -6
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { RemoveRegionRequest, RemoveRegionResponse } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
SSOAdminClientResolvedConfig,
|
|
8
|
+
} from "../SSOAdminClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface RemoveRegionCommandInput extends RemoveRegionRequest {}
|
|
12
|
+
export interface RemoveRegionCommandOutput
|
|
13
|
+
extends RemoveRegionResponse,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const RemoveRegionCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: RemoveRegionCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
RemoveRegionCommandInput,
|
|
20
|
+
RemoveRegionCommandOutput,
|
|
21
|
+
SSOAdminClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: RemoveRegionCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
RemoveRegionCommandInput,
|
|
29
|
+
RemoveRegionCommandOutput,
|
|
30
|
+
SSOAdminClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class RemoveRegionCommand extends RemoveRegionCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: RemoveRegionRequest;
|
|
40
|
+
output: RemoveRegionResponse;
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: RemoveRegionCommandInput;
|
|
44
|
+
output: RemoveRegionCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * from "./AddRegionCommand";
|
|
1
2
|
export * from "./AttachCustomerManagedPolicyReferenceToPermissionSetCommand";
|
|
2
3
|
export * from "./AttachManagedPolicyToPermissionSetCommand";
|
|
3
4
|
export * from "./CreateAccountAssignmentCommand";
|
|
@@ -28,6 +29,7 @@ export * from "./DescribeInstanceAccessControlAttributeConfigurationCommand";
|
|
|
28
29
|
export * from "./DescribeInstanceCommand";
|
|
29
30
|
export * from "./DescribePermissionSetCommand";
|
|
30
31
|
export * from "./DescribePermissionSetProvisioningStatusCommand";
|
|
32
|
+
export * from "./DescribeRegionCommand";
|
|
31
33
|
export * from "./DescribeTrustedTokenIssuerCommand";
|
|
32
34
|
export * from "./DetachCustomerManagedPolicyReferenceFromPermissionSetCommand";
|
|
33
35
|
export * from "./DetachManagedPolicyFromPermissionSetCommand";
|
|
@@ -56,6 +58,7 @@ export * from "./ListManagedPoliciesInPermissionSetCommand";
|
|
|
56
58
|
export * from "./ListPermissionSetProvisioningStatusCommand";
|
|
57
59
|
export * from "./ListPermissionSetsCommand";
|
|
58
60
|
export * from "./ListPermissionSetsProvisionedToAccountCommand";
|
|
61
|
+
export * from "./ListRegionsCommand";
|
|
59
62
|
export * from "./ListTagsForResourceCommand";
|
|
60
63
|
export * from "./ListTrustedTokenIssuersCommand";
|
|
61
64
|
export * from "./ProvisionPermissionSetCommand";
|
|
@@ -66,6 +69,7 @@ export * from "./PutApplicationGrantCommand";
|
|
|
66
69
|
export * from "./PutApplicationSessionConfigurationCommand";
|
|
67
70
|
export * from "./PutInlinePolicyToPermissionSetCommand";
|
|
68
71
|
export * from "./PutPermissionsBoundaryToPermissionSetCommand";
|
|
72
|
+
export * from "./RemoveRegionCommand";
|
|
69
73
|
export * from "./TagResourceCommand";
|
|
70
74
|
export * from "./UntagResourceCommand";
|
|
71
75
|
export * from "./UpdateApplicationCommand";
|
|
@@ -18,6 +18,24 @@ export declare const TargetType: {
|
|
|
18
18
|
readonly AWS_ACCOUNT: "AWS_ACCOUNT";
|
|
19
19
|
};
|
|
20
20
|
export type TargetType = (typeof TargetType)[keyof typeof TargetType];
|
|
21
|
+
export declare const RegionStatus: {
|
|
22
|
+
readonly ACTIVE: "ACTIVE";
|
|
23
|
+
readonly ADDING: "ADDING";
|
|
24
|
+
readonly REMOVING: "REMOVING";
|
|
25
|
+
};
|
|
26
|
+
export type RegionStatus = (typeof RegionStatus)[keyof typeof RegionStatus];
|
|
27
|
+
export declare const ThrottlingExceptionReason: {
|
|
28
|
+
readonly KMS_THROTTLING_EXCEPTION: "KMS_ThrottlingException";
|
|
29
|
+
};
|
|
30
|
+
export type ThrottlingExceptionReason =
|
|
31
|
+
(typeof ThrottlingExceptionReason)[keyof typeof ThrottlingExceptionReason];
|
|
32
|
+
export declare const ValidationExceptionReason: {
|
|
33
|
+
readonly KMS_DISABLED_EXCEPTION: "KMS_DisabledException";
|
|
34
|
+
readonly KMS_INVALID_KEY_USAGE_EXCEPTION: "KMS_InvalidKeyUsageException";
|
|
35
|
+
readonly KMS_INVALID_STATE_EXCEPTION: "KMS_InvalidStateException";
|
|
36
|
+
};
|
|
37
|
+
export type ValidationExceptionReason =
|
|
38
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
21
39
|
export declare const SignInOrigin: {
|
|
22
40
|
readonly APPLICATION: "APPLICATION";
|
|
23
41
|
readonly IDENTITY_CENTER: "IDENTITY_CENTER";
|
|
@@ -40,18 +58,6 @@ export declare const ResourceNotFoundExceptionReason: {
|
|
|
40
58
|
};
|
|
41
59
|
export type ResourceNotFoundExceptionReason =
|
|
42
60
|
(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
61
|
export declare const AuthenticationMethodType: {
|
|
56
62
|
readonly IAM: "IAM";
|
|
57
63
|
};
|
|
@@ -29,13 +29,12 @@ export declare class InternalServerException extends __BaseException {
|
|
|
29
29
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
30
30
|
);
|
|
31
31
|
}
|
|
32
|
-
export declare class
|
|
33
|
-
readonly name: "
|
|
32
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
33
|
+
readonly name: "ServiceQuotaExceededException";
|
|
34
34
|
readonly $fault: "client";
|
|
35
35
|
Message?: string | undefined;
|
|
36
|
-
Reason?: ResourceNotFoundExceptionReason | undefined;
|
|
37
36
|
constructor(
|
|
38
|
-
opts: __ExceptionOptionType<
|
|
37
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
39
38
|
);
|
|
40
39
|
}
|
|
41
40
|
export declare class ThrottlingException extends __BaseException {
|
|
@@ -56,11 +55,12 @@ export declare class ValidationException extends __BaseException {
|
|
|
56
55
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
57
56
|
);
|
|
58
57
|
}
|
|
59
|
-
export declare class
|
|
60
|
-
readonly name: "
|
|
58
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
59
|
+
readonly name: "ResourceNotFoundException";
|
|
61
60
|
readonly $fault: "client";
|
|
62
61
|
Message?: string | undefined;
|
|
62
|
+
Reason?: ResourceNotFoundExceptionReason | undefined;
|
|
63
63
|
constructor(
|
|
64
|
-
opts: __ExceptionOptionType<
|
|
64
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
65
65
|
);
|
|
66
66
|
}
|
|
@@ -13,6 +13,7 @@ import {
|
|
|
13
13
|
PrincipalType,
|
|
14
14
|
ProvisioningStatus,
|
|
15
15
|
ProvisionTargetType,
|
|
16
|
+
RegionStatus,
|
|
16
17
|
SignInOrigin,
|
|
17
18
|
StatusValues,
|
|
18
19
|
TargetType,
|
|
@@ -54,6 +55,13 @@ export interface AccountAssignmentOperationStatusMetadata {
|
|
|
54
55
|
RequestId?: string | undefined;
|
|
55
56
|
CreatedDate?: Date | undefined;
|
|
56
57
|
}
|
|
58
|
+
export interface AddRegionRequest {
|
|
59
|
+
InstanceArn: string | undefined;
|
|
60
|
+
RegionName: string | undefined;
|
|
61
|
+
}
|
|
62
|
+
export interface AddRegionResponse {
|
|
63
|
+
Status?: RegionStatus | undefined;
|
|
64
|
+
}
|
|
57
65
|
export interface SignInOptions {
|
|
58
66
|
Origin: SignInOrigin | undefined;
|
|
59
67
|
ApplicationUrl?: string | undefined;
|
|
@@ -72,6 +80,7 @@ export interface Application {
|
|
|
72
80
|
PortalOptions?: PortalOptions | undefined;
|
|
73
81
|
Description?: string | undefined;
|
|
74
82
|
CreatedDate?: Date | undefined;
|
|
83
|
+
CreatedFrom?: string | undefined;
|
|
75
84
|
}
|
|
76
85
|
export interface DeleteApplicationAccessScopeRequest {
|
|
77
86
|
ApplicationArn: string | undefined;
|
|
@@ -477,6 +486,7 @@ export interface DescribeApplicationResponse {
|
|
|
477
486
|
PortalOptions?: PortalOptions | undefined;
|
|
478
487
|
Description?: string | undefined;
|
|
479
488
|
CreatedDate?: Date | undefined;
|
|
489
|
+
CreatedFrom?: string | undefined;
|
|
480
490
|
}
|
|
481
491
|
export interface DescribeApplicationAssignmentRequest {
|
|
482
492
|
ApplicationArn: string | undefined;
|
|
@@ -548,6 +558,16 @@ export interface PermissionSetProvisioningStatus {
|
|
|
548
558
|
export interface DescribePermissionSetProvisioningStatusResponse {
|
|
549
559
|
PermissionSetProvisioningStatus?: PermissionSetProvisioningStatus | undefined;
|
|
550
560
|
}
|
|
561
|
+
export interface DescribeRegionRequest {
|
|
562
|
+
InstanceArn: string | undefined;
|
|
563
|
+
RegionName: string | undefined;
|
|
564
|
+
}
|
|
565
|
+
export interface DescribeRegionResponse {
|
|
566
|
+
RegionName?: string | undefined;
|
|
567
|
+
Status?: RegionStatus | undefined;
|
|
568
|
+
AddedDate?: Date | undefined;
|
|
569
|
+
IsPrimaryRegion?: boolean | undefined;
|
|
570
|
+
}
|
|
551
571
|
export interface DescribeTrustedTokenIssuerRequest {
|
|
552
572
|
TrustedTokenIssuerArn: string | undefined;
|
|
553
573
|
}
|
|
@@ -791,6 +811,21 @@ export interface ListPermissionSetsProvisionedToAccountResponse {
|
|
|
791
811
|
NextToken?: string | undefined;
|
|
792
812
|
PermissionSets?: string[] | undefined;
|
|
793
813
|
}
|
|
814
|
+
export interface ListRegionsRequest {
|
|
815
|
+
InstanceArn: string | undefined;
|
|
816
|
+
MaxResults?: number | undefined;
|
|
817
|
+
NextToken?: string | undefined;
|
|
818
|
+
}
|
|
819
|
+
export interface RegionMetadata {
|
|
820
|
+
RegionName?: string | undefined;
|
|
821
|
+
Status?: RegionStatus | undefined;
|
|
822
|
+
AddedDate?: Date | undefined;
|
|
823
|
+
IsPrimaryRegion?: boolean | undefined;
|
|
824
|
+
}
|
|
825
|
+
export interface ListRegionsResponse {
|
|
826
|
+
Regions?: RegionMetadata[] | undefined;
|
|
827
|
+
NextToken?: string | undefined;
|
|
828
|
+
}
|
|
794
829
|
export interface ListTagsForResourceRequest {
|
|
795
830
|
InstanceArn?: string | undefined;
|
|
796
831
|
ResourceArn: string | undefined;
|
|
@@ -852,6 +887,13 @@ export interface PutPermissionsBoundaryToPermissionSetRequest {
|
|
|
852
887
|
PermissionsBoundary: PermissionsBoundary | undefined;
|
|
853
888
|
}
|
|
854
889
|
export interface PutPermissionsBoundaryToPermissionSetResponse {}
|
|
890
|
+
export interface RemoveRegionRequest {
|
|
891
|
+
InstanceArn: string | undefined;
|
|
892
|
+
RegionName: string | undefined;
|
|
893
|
+
}
|
|
894
|
+
export interface RemoveRegionResponse {
|
|
895
|
+
Status?: RegionStatus | undefined;
|
|
896
|
+
}
|
|
855
897
|
export interface TagResourceRequest {
|
|
856
898
|
InstanceArn?: string | undefined;
|
|
857
899
|
ResourceArn: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListRegionsCommandInput,
|
|
4
|
+
ListRegionsCommandOutput,
|
|
5
|
+
} from "../commands/ListRegionsCommand";
|
|
6
|
+
import { SSOAdminPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListRegions: (
|
|
8
|
+
config: SSOAdminPaginationConfiguration,
|
|
9
|
+
input: ListRegionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRegionsCommandOutput>;
|
|
@@ -17,5 +17,6 @@ export * from "./ListManagedPoliciesInPermissionSetPaginator";
|
|
|
17
17
|
export * from "./ListPermissionSetProvisioningStatusPaginator";
|
|
18
18
|
export * from "./ListPermissionSetsPaginator";
|
|
19
19
|
export * from "./ListPermissionSetsProvisionedToAccountPaginator";
|
|
20
|
+
export * from "./ListRegionsPaginator";
|
|
20
21
|
export * from "./ListTagsForResourcePaginator";
|
|
21
22
|
export * from "./ListTrustedTokenIssuersPaginator";
|
|
@@ -11,6 +11,8 @@ export declare var AccountAssignment$: StaticStructureSchema;
|
|
|
11
11
|
export declare var AccountAssignmentForPrincipal$: StaticStructureSchema;
|
|
12
12
|
export declare var AccountAssignmentOperationStatus$: StaticStructureSchema;
|
|
13
13
|
export declare var AccountAssignmentOperationStatusMetadata$: StaticStructureSchema;
|
|
14
|
+
export declare var AddRegionRequest$: StaticStructureSchema;
|
|
15
|
+
export declare var AddRegionResponse$: StaticStructureSchema;
|
|
14
16
|
export declare var Application$: StaticStructureSchema;
|
|
15
17
|
export declare var ApplicationAssignment$: StaticStructureSchema;
|
|
16
18
|
export declare var ApplicationAssignmentForPrincipal$: StaticStructureSchema;
|
|
@@ -78,6 +80,8 @@ export declare var DescribePermissionSetProvisioningStatusRequest$: StaticStruct
|
|
|
78
80
|
export declare var DescribePermissionSetProvisioningStatusResponse$: StaticStructureSchema;
|
|
79
81
|
export declare var DescribePermissionSetRequest$: StaticStructureSchema;
|
|
80
82
|
export declare var DescribePermissionSetResponse$: StaticStructureSchema;
|
|
83
|
+
export declare var DescribeRegionRequest$: StaticStructureSchema;
|
|
84
|
+
export declare var DescribeRegionResponse$: StaticStructureSchema;
|
|
81
85
|
export declare var DescribeTrustedTokenIssuerRequest$: StaticStructureSchema;
|
|
82
86
|
export declare var DescribeTrustedTokenIssuerResponse$: StaticStructureSchema;
|
|
83
87
|
export declare var DetachCustomerManagedPolicyReferenceFromPermissionSetRequest$: StaticStructureSchema;
|
|
@@ -146,6 +150,8 @@ export declare var ListPermissionSetsProvisionedToAccountRequest$: StaticStructu
|
|
|
146
150
|
export declare var ListPermissionSetsProvisionedToAccountResponse$: StaticStructureSchema;
|
|
147
151
|
export declare var ListPermissionSetsRequest$: StaticStructureSchema;
|
|
148
152
|
export declare var ListPermissionSetsResponse$: StaticStructureSchema;
|
|
153
|
+
export declare var ListRegionsRequest$: StaticStructureSchema;
|
|
154
|
+
export declare var ListRegionsResponse$: StaticStructureSchema;
|
|
149
155
|
export declare var ListTagsForResourceRequest$: StaticStructureSchema;
|
|
150
156
|
export declare var ListTagsForResourceResponse$: StaticStructureSchema;
|
|
151
157
|
export declare var ListTrustedTokenIssuersRequest$: StaticStructureSchema;
|
|
@@ -172,6 +178,9 @@ export declare var PutInlinePolicyToPermissionSetResponse$: StaticStructureSchem
|
|
|
172
178
|
export declare var PutPermissionsBoundaryToPermissionSetRequest$: StaticStructureSchema;
|
|
173
179
|
export declare var PutPermissionsBoundaryToPermissionSetResponse$: StaticStructureSchema;
|
|
174
180
|
export declare var RefreshTokenGrant$: StaticStructureSchema;
|
|
181
|
+
export declare var RegionMetadata$: StaticStructureSchema;
|
|
182
|
+
export declare var RemoveRegionRequest$: StaticStructureSchema;
|
|
183
|
+
export declare var RemoveRegionResponse$: StaticStructureSchema;
|
|
175
184
|
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
176
185
|
export declare var ResourceServerConfig$: StaticStructureSchema;
|
|
177
186
|
export declare var ResourceServerScopeDetails$: StaticStructureSchema;
|
|
@@ -203,6 +212,7 @@ export declare var AuthenticationMethod$: StaticUnionSchema;
|
|
|
203
212
|
export declare var Grant$: StaticUnionSchema;
|
|
204
213
|
export declare var TrustedTokenIssuerConfiguration$: StaticUnionSchema;
|
|
205
214
|
export declare var TrustedTokenIssuerUpdateConfiguration$: StaticUnionSchema;
|
|
215
|
+
export declare var AddRegion$: StaticOperationSchema;
|
|
206
216
|
export declare var AttachCustomerManagedPolicyReferenceToPermissionSet$: StaticOperationSchema;
|
|
207
217
|
export declare var AttachManagedPolicyToPermissionSet$: StaticOperationSchema;
|
|
208
218
|
export declare var CreateAccountAssignment$: StaticOperationSchema;
|
|
@@ -233,6 +243,7 @@ export declare var DescribeInstance$: StaticOperationSchema;
|
|
|
233
243
|
export declare var DescribeInstanceAccessControlAttributeConfiguration$: StaticOperationSchema;
|
|
234
244
|
export declare var DescribePermissionSet$: StaticOperationSchema;
|
|
235
245
|
export declare var DescribePermissionSetProvisioningStatus$: StaticOperationSchema;
|
|
246
|
+
export declare var DescribeRegion$: StaticOperationSchema;
|
|
236
247
|
export declare var DescribeTrustedTokenIssuer$: StaticOperationSchema;
|
|
237
248
|
export declare var DetachCustomerManagedPolicyReferenceFromPermissionSet$: StaticOperationSchema;
|
|
238
249
|
export declare var DetachManagedPolicyFromPermissionSet$: StaticOperationSchema;
|
|
@@ -261,6 +272,7 @@ export declare var ListManagedPoliciesInPermissionSet$: StaticOperationSchema;
|
|
|
261
272
|
export declare var ListPermissionSetProvisioningStatus$: StaticOperationSchema;
|
|
262
273
|
export declare var ListPermissionSets$: StaticOperationSchema;
|
|
263
274
|
export declare var ListPermissionSetsProvisionedToAccount$: StaticOperationSchema;
|
|
275
|
+
export declare var ListRegions$: StaticOperationSchema;
|
|
264
276
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
265
277
|
export declare var ListTrustedTokenIssuers$: StaticOperationSchema;
|
|
266
278
|
export declare var ProvisionPermissionSet$: StaticOperationSchema;
|
|
@@ -271,6 +283,7 @@ export declare var PutApplicationGrant$: StaticOperationSchema;
|
|
|
271
283
|
export declare var PutApplicationSessionConfiguration$: StaticOperationSchema;
|
|
272
284
|
export declare var PutInlinePolicyToPermissionSet$: StaticOperationSchema;
|
|
273
285
|
export declare var PutPermissionsBoundaryToPermissionSet$: StaticOperationSchema;
|
|
286
|
+
export declare var RemoveRegion$: StaticOperationSchema;
|
|
274
287
|
export declare var TagResource$: StaticOperationSchema;
|
|
275
288
|
export declare var UntagResource$: StaticOperationSchema;
|
|
276
289
|
export declare var UpdateApplication$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sso-admin",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sso Admin Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.982.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sso-admin",
|
|
@@ -21,17 +21,17 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.6",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.5",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.6",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.982.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.4",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
36
|
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|