@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.
@@ -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?: (body: any) => number | undefined;
62
+ bodyLengthChecker?: __BodyLengthCalculator;
63
63
  /**
64
64
  * A function that converts a stream into an array of bytes.
65
65
  * @internal
@@ -3,3 +3,4 @@ export * from "./SSOAdminClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { SSOAdminServiceException } from "./models/SSOAdminServiceException";
@@ -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 { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
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 interface AccessDeniedException extends __SmithyException, $MetadataBearer {
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 interface ConflictException extends __SmithyException, $MetadataBearer {
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 interface InternalServerException extends __SmithyException, $MetadataBearer {
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 interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
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 interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
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 interface ThrottlingException extends __SmithyException, $MetadataBearer {
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 interface ValidationException extends __SmithyException, $MetadataBearer {
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: (body: any) => number | undefined;
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: (body: any) => number | undefined;
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: (body: any) => number | undefined;
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?: (body: any) => number | undefined;
50
+ bodyLengthChecker?: __BodyLengthCalculator;
51
51
 
52
52
  streamCollector?: __StreamCollector;
53
53
 
@@ -3,3 +3,4 @@ export * from "./SSOAdminClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { SSOAdminServiceException } from "./models/SSOAdminServiceException";
@@ -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 { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
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 interface AccessDeniedException extends __SmithyException, $MetadataBearer {
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 interface ConflictException extends __SmithyException, $MetadataBearer {
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 interface InternalServerException extends __SmithyException, $MetadataBearer {
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 interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
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 interface ServiceQuotaExceededException extends __SmithyException, $MetadataBearer {
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 interface ThrottlingException extends __SmithyException, $MetadataBearer {
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 interface ValidationException extends __SmithyException, $MetadataBearer {
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: (body: any) => number | undefined;
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: (body: any) => number | undefined;
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: (body: any) => number | undefined;
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.52.0",
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.52.0",
22
- "@aws-sdk/config-resolver": "3.52.0",
23
- "@aws-sdk/credential-provider-node": "3.52.0",
24
- "@aws-sdk/fetch-http-handler": "3.52.0",
25
- "@aws-sdk/hash-node": "3.52.0",
26
- "@aws-sdk/invalid-dependency": "3.52.0",
27
- "@aws-sdk/middleware-content-length": "3.52.0",
28
- "@aws-sdk/middleware-host-header": "3.52.0",
29
- "@aws-sdk/middleware-logger": "3.52.0",
30
- "@aws-sdk/middleware-retry": "3.52.0",
31
- "@aws-sdk/middleware-serde": "3.52.0",
32
- "@aws-sdk/middleware-signing": "3.52.0",
33
- "@aws-sdk/middleware-stack": "3.52.0",
34
- "@aws-sdk/middleware-user-agent": "3.52.0",
35
- "@aws-sdk/node-config-provider": "3.52.0",
36
- "@aws-sdk/node-http-handler": "3.52.0",
37
- "@aws-sdk/protocol-http": "3.52.0",
38
- "@aws-sdk/smithy-client": "3.52.0",
39
- "@aws-sdk/types": "3.52.0",
40
- "@aws-sdk/url-parser": "3.52.0",
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.52.0",
44
- "@aws-sdk/util-body-length-node": "3.52.0",
45
- "@aws-sdk/util-defaults-mode-browser": "3.52.0",
46
- "@aws-sdk/util-defaults-mode-node": "3.52.0",
47
- "@aws-sdk/util-user-agent-browser": "3.52.0",
48
- "@aws-sdk/util-user-agent-node": "3.52.0",
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"