@aws-sdk/client-sso-admin 3.52.0 → 3.54.1
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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/SSOAdminServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +101 -2
- package/dist-cjs/protocols/Aws_json1_1.js +341 -1399
- package/dist-es/index.js +1 -0
- package/dist-es/models/SSOAdminServiceException.js +12 -0
- package/dist-es/models/models_0.js +93 -1
- package/dist-es/protocols/Aws_json1_1.js +764 -1510
- package/dist-types/SSOAdminClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/SSOAdminServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +51 -22
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/SSOAdminClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/SSOAdminServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -22
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +27 -27
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AttachManagedPolicyToPermissionSetCommandInput, AttachManagedPolicyToPermissionSetCommandOutput } from "./commands/AttachManagedPolicyToPermissionSetCommand";
|
|
10
10
|
import { CreateAccountAssignmentCommandInput, CreateAccountAssignmentCommandOutput } from "./commands/CreateAccountAssignmentCommand";
|
|
11
11
|
import { CreateInstanceAccessControlAttributeConfigurationCommandInput, CreateInstanceAccessControlAttributeConfigurationCommandOutput } from "./commands/CreateInstanceAccessControlAttributeConfigurationCommand";
|
|
@@ -59,7 +59,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
59
59
|
* A function that can calculate the length of a request body.
|
|
60
60
|
* @internal
|
|
61
61
|
*/
|
|
62
|
-
bodyLengthChecker?:
|
|
62
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
63
63
|
/**
|
|
64
64
|
* A function that converts a stream into an array of bytes.
|
|
65
65
|
* @internal
|
package/dist-types/index.d.ts
CHANGED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
/**
|
|
3
|
+
* Base exception class for all service exceptions from SSOAdmin service.
|
|
4
|
+
*/
|
|
5
|
+
export declare class SSOAdminServiceException extends __ServiceException {
|
|
6
|
+
/**
|
|
7
|
+
* @internal
|
|
8
|
+
*/
|
|
9
|
+
constructor(options: __ServiceExceptionOptions);
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { SSOAdminServiceException as __BaseException } from "./SSOAdminServiceException";
|
|
2
3
|
/**
|
|
3
4
|
* <p>The value used for mapping a specified attribute to an identity source.</p>
|
|
4
5
|
*/
|
|
@@ -42,10 +43,14 @@ export declare namespace AccessControlAttribute {
|
|
|
42
43
|
/**
|
|
43
44
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
44
45
|
*/
|
|
45
|
-
export
|
|
46
|
-
name: "AccessDeniedException";
|
|
47
|
-
$fault: "client";
|
|
46
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
47
|
+
readonly name: "AccessDeniedException";
|
|
48
|
+
readonly $fault: "client";
|
|
48
49
|
Message?: string;
|
|
50
|
+
/**
|
|
51
|
+
* @internal
|
|
52
|
+
*/
|
|
53
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
49
54
|
}
|
|
50
55
|
export declare enum PrincipalType {
|
|
51
56
|
GROUP = "GROUP",
|
|
@@ -223,53 +228,77 @@ export declare namespace AttachManagedPolicyToPermissionSetResponse {
|
|
|
223
228
|
* request. A retry (with appropriate backoff logic) is the recommended response to this
|
|
224
229
|
* exception.</p>
|
|
225
230
|
*/
|
|
226
|
-
export
|
|
227
|
-
name: "ConflictException";
|
|
228
|
-
$fault: "client";
|
|
231
|
+
export declare class ConflictException extends __BaseException {
|
|
232
|
+
readonly name: "ConflictException";
|
|
233
|
+
readonly $fault: "client";
|
|
229
234
|
Message?: string;
|
|
235
|
+
/**
|
|
236
|
+
* @internal
|
|
237
|
+
*/
|
|
238
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
230
239
|
}
|
|
231
240
|
/**
|
|
232
241
|
* <p>The request processing has failed because of an unknown error, exception, or failure with
|
|
233
242
|
* an internal server.</p>
|
|
234
243
|
*/
|
|
235
|
-
export
|
|
236
|
-
name: "InternalServerException";
|
|
237
|
-
$fault: "server";
|
|
244
|
+
export declare class InternalServerException extends __BaseException {
|
|
245
|
+
readonly name: "InternalServerException";
|
|
246
|
+
readonly $fault: "server";
|
|
238
247
|
Message?: string;
|
|
248
|
+
/**
|
|
249
|
+
* @internal
|
|
250
|
+
*/
|
|
251
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
239
252
|
}
|
|
240
253
|
/**
|
|
241
254
|
* <p>Indicates that a requested resource is not found.</p>
|
|
242
255
|
*/
|
|
243
|
-
export
|
|
244
|
-
name: "ResourceNotFoundException";
|
|
245
|
-
$fault: "client";
|
|
256
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
257
|
+
readonly name: "ResourceNotFoundException";
|
|
258
|
+
readonly $fault: "client";
|
|
246
259
|
Message?: string;
|
|
260
|
+
/**
|
|
261
|
+
* @internal
|
|
262
|
+
*/
|
|
263
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
247
264
|
}
|
|
248
265
|
/**
|
|
249
266
|
* <p>Indicates that the principal has crossed the permitted number of resources that can be
|
|
250
267
|
* created.</p>
|
|
251
268
|
*/
|
|
252
|
-
export
|
|
253
|
-
name: "ServiceQuotaExceededException";
|
|
254
|
-
$fault: "client";
|
|
269
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
270
|
+
readonly name: "ServiceQuotaExceededException";
|
|
271
|
+
readonly $fault: "client";
|
|
255
272
|
Message?: string;
|
|
273
|
+
/**
|
|
274
|
+
* @internal
|
|
275
|
+
*/
|
|
276
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
256
277
|
}
|
|
257
278
|
/**
|
|
258
279
|
* <p>Indicates that the principal has crossed the throttling limits of the API
|
|
259
280
|
* operations.</p>
|
|
260
281
|
*/
|
|
261
|
-
export
|
|
262
|
-
name: "ThrottlingException";
|
|
263
|
-
$fault: "client";
|
|
282
|
+
export declare class ThrottlingException extends __BaseException {
|
|
283
|
+
readonly name: "ThrottlingException";
|
|
284
|
+
readonly $fault: "client";
|
|
264
285
|
Message?: string;
|
|
286
|
+
/**
|
|
287
|
+
* @internal
|
|
288
|
+
*/
|
|
289
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
265
290
|
}
|
|
266
291
|
/**
|
|
267
292
|
* <p>The request failed because it contains a syntax error.</p>
|
|
268
293
|
*/
|
|
269
|
-
export
|
|
270
|
-
name: "ValidationException";
|
|
271
|
-
$fault: "client";
|
|
294
|
+
export declare class ValidationException extends __BaseException {
|
|
295
|
+
readonly name: "ValidationException";
|
|
296
|
+
readonly $fault: "client";
|
|
272
297
|
Message?: string;
|
|
298
|
+
/**
|
|
299
|
+
* @internal
|
|
300
|
+
*/
|
|
301
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
273
302
|
}
|
|
274
303
|
export interface CreateAccountAssignmentRequest {
|
|
275
304
|
/**
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: SSOAdminClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: SSOAdminClientConfig) => {
|
|
|
8
8
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
10
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
13
13
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
14
14
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -8,7 +8,7 @@ export declare const getRuntimeConfig: (config: SSOAdminClientConfig) => {
|
|
|
8
8
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
apiVersion: string;
|
|
10
10
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
11
|
-
bodyLengthChecker: (
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
12
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
13
13
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
14
14
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
@@ -5,7 +5,7 @@ import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-s
|
|
|
5
5
|
import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
|
|
6
6
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
8
|
-
import { Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
8
|
+
import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
9
9
|
import { AttachManagedPolicyToPermissionSetCommandInput, AttachManagedPolicyToPermissionSetCommandOutput } from "./commands/AttachManagedPolicyToPermissionSetCommand";
|
|
10
10
|
import { CreateAccountAssignmentCommandInput, CreateAccountAssignmentCommandOutput } from "./commands/CreateAccountAssignmentCommand";
|
|
11
11
|
import { CreateInstanceAccessControlAttributeConfigurationCommandInput, CreateInstanceAccessControlAttributeConfigurationCommandOutput } from "./commands/CreateInstanceAccessControlAttributeConfigurationCommand";
|
|
@@ -47,7 +47,7 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
47
47
|
|
|
48
48
|
urlParser?: __UrlParser;
|
|
49
49
|
|
|
50
|
-
bodyLengthChecker?:
|
|
50
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
51
51
|
|
|
52
52
|
streamCollector?: __StreamCollector;
|
|
53
53
|
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
|
+
|
|
3
|
+
export declare class SSOAdminServiceException extends __ServiceException {
|
|
4
|
+
|
|
5
|
+
constructor(options: __ServiceExceptionOptions);
|
|
6
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { SSOAdminServiceException as __BaseException } from "./SSOAdminServiceException";
|
|
2
3
|
|
|
3
4
|
export interface AccessControlAttributeValue {
|
|
4
5
|
|
|
@@ -20,10 +21,12 @@ export declare namespace AccessControlAttribute {
|
|
|
20
21
|
const filterSensitiveLog: (obj: AccessControlAttribute) => any;
|
|
21
22
|
}
|
|
22
23
|
|
|
23
|
-
export
|
|
24
|
-
name: "AccessDeniedException";
|
|
25
|
-
$fault: "client";
|
|
24
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
25
|
+
readonly name: "AccessDeniedException";
|
|
26
|
+
readonly $fault: "client";
|
|
26
27
|
Message?: string;
|
|
28
|
+
|
|
29
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
27
30
|
}
|
|
28
31
|
export declare enum PrincipalType {
|
|
29
32
|
GROUP = "GROUP",
|
|
@@ -120,40 +123,52 @@ export declare namespace AttachManagedPolicyToPermissionSetResponse {
|
|
|
120
123
|
const filterSensitiveLog: (obj: AttachManagedPolicyToPermissionSetResponse) => any;
|
|
121
124
|
}
|
|
122
125
|
|
|
123
|
-
export
|
|
124
|
-
name: "ConflictException";
|
|
125
|
-
$fault: "client";
|
|
126
|
+
export declare class ConflictException extends __BaseException {
|
|
127
|
+
readonly name: "ConflictException";
|
|
128
|
+
readonly $fault: "client";
|
|
126
129
|
Message?: string;
|
|
130
|
+
|
|
131
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
127
132
|
}
|
|
128
133
|
|
|
129
|
-
export
|
|
130
|
-
name: "InternalServerException";
|
|
131
|
-
$fault: "server";
|
|
134
|
+
export declare class InternalServerException extends __BaseException {
|
|
135
|
+
readonly name: "InternalServerException";
|
|
136
|
+
readonly $fault: "server";
|
|
132
137
|
Message?: string;
|
|
138
|
+
|
|
139
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
133
140
|
}
|
|
134
141
|
|
|
135
|
-
export
|
|
136
|
-
name: "ResourceNotFoundException";
|
|
137
|
-
$fault: "client";
|
|
142
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
143
|
+
readonly name: "ResourceNotFoundException";
|
|
144
|
+
readonly $fault: "client";
|
|
138
145
|
Message?: string;
|
|
146
|
+
|
|
147
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
139
148
|
}
|
|
140
149
|
|
|
141
|
-
export
|
|
142
|
-
name: "ServiceQuotaExceededException";
|
|
143
|
-
$fault: "client";
|
|
150
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
151
|
+
readonly name: "ServiceQuotaExceededException";
|
|
152
|
+
readonly $fault: "client";
|
|
144
153
|
Message?: string;
|
|
154
|
+
|
|
155
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
145
156
|
}
|
|
146
157
|
|
|
147
|
-
export
|
|
148
|
-
name: "ThrottlingException";
|
|
149
|
-
$fault: "client";
|
|
158
|
+
export declare class ThrottlingException extends __BaseException {
|
|
159
|
+
readonly name: "ThrottlingException";
|
|
160
|
+
readonly $fault: "client";
|
|
150
161
|
Message?: string;
|
|
162
|
+
|
|
163
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
151
164
|
}
|
|
152
165
|
|
|
153
|
-
export
|
|
154
|
-
name: "ValidationException";
|
|
155
|
-
$fault: "client";
|
|
166
|
+
export declare class ValidationException extends __BaseException {
|
|
167
|
+
readonly name: "ValidationException";
|
|
168
|
+
readonly $fault: "client";
|
|
156
169
|
Message?: string;
|
|
170
|
+
|
|
171
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
157
172
|
}
|
|
158
173
|
export interface CreateAccountAssignmentRequest {
|
|
159
174
|
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: SSOAdminClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: SSOAdminClientConfig) => {
|
|
|
6
6
|
defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
|
|
7
7
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
8
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
11
11
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
@@ -6,7 +6,7 @@ export declare const getRuntimeConfig: (config: SSOAdminClientConfig) => {
|
|
|
6
6
|
requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
|
|
7
7
|
apiVersion: string;
|
|
8
8
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
9
|
-
bodyLengthChecker: (
|
|
9
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
10
10
|
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
11
11
|
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
12
12
|
base64Encoder: import("@aws-sdk/types").Encoder;
|
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.54.1",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,34 +18,34 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
-
"@aws-sdk/config-resolver": "3.
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
25
|
-
"@aws-sdk/hash-node": "3.
|
|
26
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
27
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
28
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
29
|
-
"@aws-sdk/middleware-logger": "3.
|
|
30
|
-
"@aws-sdk/middleware-retry": "3.
|
|
31
|
-
"@aws-sdk/middleware-serde": "3.
|
|
32
|
-
"@aws-sdk/middleware-signing": "3.
|
|
33
|
-
"@aws-sdk/middleware-stack": "3.
|
|
34
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
35
|
-
"@aws-sdk/node-config-provider": "3.
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
37
|
-
"@aws-sdk/protocol-http": "3.
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
-
"@aws-sdk/types": "3.
|
|
40
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.54.1",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.54.1",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.54.1",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.54.1",
|
|
25
|
+
"@aws-sdk/hash-node": "3.54.1",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.54.1",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.54.1",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.54.1",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.54.1",
|
|
30
|
+
"@aws-sdk/middleware-retry": "3.54.1",
|
|
31
|
+
"@aws-sdk/middleware-serde": "3.54.1",
|
|
32
|
+
"@aws-sdk/middleware-signing": "3.54.1",
|
|
33
|
+
"@aws-sdk/middleware-stack": "3.54.1",
|
|
34
|
+
"@aws-sdk/middleware-user-agent": "3.54.1",
|
|
35
|
+
"@aws-sdk/node-config-provider": "3.54.1",
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.54.1",
|
|
37
|
+
"@aws-sdk/protocol-http": "3.54.1",
|
|
38
|
+
"@aws-sdk/smithy-client": "3.54.1",
|
|
39
|
+
"@aws-sdk/types": "3.54.1",
|
|
40
|
+
"@aws-sdk/url-parser": "3.54.1",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.52.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.52.0",
|
|
43
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
44
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
47
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
43
|
+
"@aws-sdk/util-body-length-browser": "3.54.0",
|
|
44
|
+
"@aws-sdk/util-body-length-node": "3.54.0",
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.54.1",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.54.1",
|
|
47
|
+
"@aws-sdk/util-user-agent-browser": "3.54.1",
|
|
48
|
+
"@aws-sdk/util-user-agent-node": "3.54.1",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.52.0",
|
|
50
50
|
"@aws-sdk/util-utf8-node": "3.52.0",
|
|
51
51
|
"tslib": "^2.3.0"
|