@aws-sdk/client-migrationhub-config 3.118.1 → 3.128.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/CHANGELOG.md +27 -0
- package/dist-cjs/protocols/Aws_json1_1.js +29 -31
- package/dist-es/protocols/Aws_json1_1.js +22 -24
- package/package.json +26 -26
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,33 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.128.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.127.0...v3.128.0) (2022-07-12)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-migrationhub-config
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.127.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.126.0...v3.127.0) (2022-07-11)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-migrationhub-config
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [3.121.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.120.0...v3.121.0) (2022-06-30)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
|
|
27
|
+
* **clients:** fallback to status code for unmodeled errors ([#3752](https://github.com/aws/aws-sdk-js-v3/issues/3752)) ([49bcc4f](https://github.com/aws/aws-sdk-js-v3/commit/49bcc4f153e890e798a8e82fd5fc397b2dcc449f))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
6
33
|
## [3.118.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.118.0...v3.118.1) (2022-06-27)
|
|
7
34
|
|
|
8
35
|
**Note:** Version bump only for package @aws-sdk/client-migrationhub-config
|
|
@@ -55,8 +55,7 @@ const deserializeAws_json1_1CreateHomeRegionControlCommandError = async (output,
|
|
|
55
55
|
body: await parseBody(output.body, context),
|
|
56
56
|
};
|
|
57
57
|
let response;
|
|
58
|
-
|
|
59
|
-
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
58
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
60
59
|
switch (errorCode) {
|
|
61
60
|
case "AccessDeniedException":
|
|
62
61
|
case "com.amazonaws.migrationhubconfig#AccessDeniedException":
|
|
@@ -78,10 +77,12 @@ const deserializeAws_json1_1CreateHomeRegionControlCommandError = async (output,
|
|
|
78
77
|
throw await deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context);
|
|
79
78
|
default:
|
|
80
79
|
const parsedBody = parsedOutput.body;
|
|
80
|
+
const $metadata = deserializeMetadata(output);
|
|
81
|
+
const statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + "" : undefined;
|
|
81
82
|
response = new MigrationHubConfigServiceException_1.MigrationHubConfigServiceException({
|
|
82
|
-
name: parsedBody.code || parsedBody.Code || errorCode,
|
|
83
|
+
name: parsedBody.code || parsedBody.Code || errorCode || statusCode || "UnknowError",
|
|
83
84
|
$fault: "client",
|
|
84
|
-
$metadata
|
|
85
|
+
$metadata,
|
|
85
86
|
});
|
|
86
87
|
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
87
88
|
}
|
|
@@ -106,8 +107,7 @@ const deserializeAws_json1_1DescribeHomeRegionControlsCommandError = async (outp
|
|
|
106
107
|
body: await parseBody(output.body, context),
|
|
107
108
|
};
|
|
108
109
|
let response;
|
|
109
|
-
|
|
110
|
-
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
110
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
111
111
|
switch (errorCode) {
|
|
112
112
|
case "AccessDeniedException":
|
|
113
113
|
case "com.amazonaws.migrationhubconfig#AccessDeniedException":
|
|
@@ -126,10 +126,12 @@ const deserializeAws_json1_1DescribeHomeRegionControlsCommandError = async (outp
|
|
|
126
126
|
throw await deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context);
|
|
127
127
|
default:
|
|
128
128
|
const parsedBody = parsedOutput.body;
|
|
129
|
+
const $metadata = deserializeMetadata(output);
|
|
130
|
+
const statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + "" : undefined;
|
|
129
131
|
response = new MigrationHubConfigServiceException_1.MigrationHubConfigServiceException({
|
|
130
|
-
name: parsedBody.code || parsedBody.Code || errorCode,
|
|
132
|
+
name: parsedBody.code || parsedBody.Code || errorCode || statusCode || "UnknowError",
|
|
131
133
|
$fault: "client",
|
|
132
|
-
$metadata
|
|
134
|
+
$metadata,
|
|
133
135
|
});
|
|
134
136
|
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
135
137
|
}
|
|
@@ -154,8 +156,7 @@ const deserializeAws_json1_1GetHomeRegionCommandError = async (output, context)
|
|
|
154
156
|
body: await parseBody(output.body, context),
|
|
155
157
|
};
|
|
156
158
|
let response;
|
|
157
|
-
|
|
158
|
-
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
159
|
+
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
159
160
|
switch (errorCode) {
|
|
160
161
|
case "AccessDeniedException":
|
|
161
162
|
case "com.amazonaws.migrationhubconfig#AccessDeniedException":
|
|
@@ -174,10 +175,12 @@ const deserializeAws_json1_1GetHomeRegionCommandError = async (output, context)
|
|
|
174
175
|
throw await deserializeAws_json1_1ThrottlingExceptionResponse(parsedOutput, context);
|
|
175
176
|
default:
|
|
176
177
|
const parsedBody = parsedOutput.body;
|
|
178
|
+
const $metadata = deserializeMetadata(output);
|
|
179
|
+
const statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + "" : undefined;
|
|
177
180
|
response = new MigrationHubConfigServiceException_1.MigrationHubConfigServiceException({
|
|
178
|
-
name: parsedBody.code || parsedBody.Code || errorCode,
|
|
181
|
+
name: parsedBody.code || parsedBody.Code || errorCode || statusCode || "UnknowError",
|
|
179
182
|
$fault: "client",
|
|
180
|
-
$metadata
|
|
183
|
+
$metadata,
|
|
181
184
|
});
|
|
182
185
|
throw (0, smithy_client_1.decorateServiceException)(response, parsedBody);
|
|
183
186
|
}
|
|
@@ -238,20 +241,18 @@ const deserializeAws_json1_1ThrottlingExceptionResponse = async (parsedOutput, c
|
|
|
238
241
|
};
|
|
239
242
|
const serializeAws_json1_1CreateHomeRegionControlRequest = (input, context) => {
|
|
240
243
|
return {
|
|
241
|
-
...(input.DryRun
|
|
242
|
-
...(input.HomeRegion
|
|
243
|
-
...(input.Target
|
|
244
|
-
input.Target !== null && { Target: serializeAws_json1_1Target(input.Target, context) }),
|
|
244
|
+
...(input.DryRun != null && { DryRun: input.DryRun }),
|
|
245
|
+
...(input.HomeRegion != null && { HomeRegion: input.HomeRegion }),
|
|
246
|
+
...(input.Target != null && { Target: serializeAws_json1_1Target(input.Target, context) }),
|
|
245
247
|
};
|
|
246
248
|
};
|
|
247
249
|
const serializeAws_json1_1DescribeHomeRegionControlsRequest = (input, context) => {
|
|
248
250
|
return {
|
|
249
|
-
...(input.ControlId
|
|
250
|
-
...(input.HomeRegion
|
|
251
|
-
...(input.MaxResults
|
|
252
|
-
...(input.NextToken
|
|
253
|
-
...(input.Target
|
|
254
|
-
input.Target !== null && { Target: serializeAws_json1_1Target(input.Target, context) }),
|
|
251
|
+
...(input.ControlId != null && { ControlId: input.ControlId }),
|
|
252
|
+
...(input.HomeRegion != null && { HomeRegion: input.HomeRegion }),
|
|
253
|
+
...(input.MaxResults != null && { MaxResults: input.MaxResults }),
|
|
254
|
+
...(input.NextToken != null && { NextToken: input.NextToken }),
|
|
255
|
+
...(input.Target != null && { Target: serializeAws_json1_1Target(input.Target, context) }),
|
|
255
256
|
};
|
|
256
257
|
};
|
|
257
258
|
const serializeAws_json1_1GetHomeRegionRequest = (input, context) => {
|
|
@@ -259,8 +260,8 @@ const serializeAws_json1_1GetHomeRegionRequest = (input, context) => {
|
|
|
259
260
|
};
|
|
260
261
|
const serializeAws_json1_1Target = (input, context) => {
|
|
261
262
|
return {
|
|
262
|
-
...(input.Id
|
|
263
|
-
...(input.Type
|
|
263
|
+
...(input.Id != null && { Id: input.Id }),
|
|
264
|
+
...(input.Type != null && { Type: input.Type }),
|
|
264
265
|
};
|
|
265
266
|
};
|
|
266
267
|
const deserializeAws_json1_1AccessDeniedException = (output, context) => {
|
|
@@ -270,14 +271,14 @@ const deserializeAws_json1_1AccessDeniedException = (output, context) => {
|
|
|
270
271
|
};
|
|
271
272
|
const deserializeAws_json1_1CreateHomeRegionControlResult = (output, context) => {
|
|
272
273
|
return {
|
|
273
|
-
HomeRegionControl: output.HomeRegionControl
|
|
274
|
+
HomeRegionControl: output.HomeRegionControl != null
|
|
274
275
|
? deserializeAws_json1_1HomeRegionControl(output.HomeRegionControl, context)
|
|
275
276
|
: undefined,
|
|
276
277
|
};
|
|
277
278
|
};
|
|
278
279
|
const deserializeAws_json1_1DescribeHomeRegionControlsResult = (output, context) => {
|
|
279
280
|
return {
|
|
280
|
-
HomeRegionControls: output.HomeRegionControls
|
|
281
|
+
HomeRegionControls: output.HomeRegionControls != null
|
|
281
282
|
? deserializeAws_json1_1HomeRegionControls(output.HomeRegionControls, context)
|
|
282
283
|
: undefined,
|
|
283
284
|
NextToken: (0, smithy_client_1.expectString)(output.NextToken),
|
|
@@ -297,12 +298,10 @@ const deserializeAws_json1_1HomeRegionControl = (output, context) => {
|
|
|
297
298
|
return {
|
|
298
299
|
ControlId: (0, smithy_client_1.expectString)(output.ControlId),
|
|
299
300
|
HomeRegion: (0, smithy_client_1.expectString)(output.HomeRegion),
|
|
300
|
-
RequestedTime: output.RequestedTime
|
|
301
|
+
RequestedTime: output.RequestedTime != null
|
|
301
302
|
? (0, smithy_client_1.expectNonNull)((0, smithy_client_1.parseEpochTimestamp)((0, smithy_client_1.expectNumber)(output.RequestedTime)))
|
|
302
303
|
: undefined,
|
|
303
|
-
Target: output.Target
|
|
304
|
-
? deserializeAws_json1_1Target(output.Target, context)
|
|
305
|
-
: undefined,
|
|
304
|
+
Target: output.Target != null ? deserializeAws_json1_1Target(output.Target, context) : undefined,
|
|
306
305
|
};
|
|
307
306
|
};
|
|
308
307
|
const deserializeAws_json1_1HomeRegionControls = (output, context) => {
|
|
@@ -405,5 +404,4 @@ const loadRestJsonErrorCode = (output, data) => {
|
|
|
405
404
|
if (data["__type"] !== undefined) {
|
|
406
405
|
return sanitizeErrorCode(data["__type"]);
|
|
407
406
|
}
|
|
408
|
-
return "";
|
|
409
407
|
};
|
|
@@ -55,7 +55,7 @@ export var deserializeAws_json1_1CreateHomeRegionControlCommand = function (outp
|
|
|
55
55
|
});
|
|
56
56
|
}); };
|
|
57
57
|
var deserializeAws_json1_1CreateHomeRegionControlCommandError = function (output, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
58
|
-
var parsedOutput, _a, response, errorCode, _b, parsedBody;
|
|
58
|
+
var parsedOutput, _a, response, errorCode, _b, parsedBody, $metadata, statusCode;
|
|
59
59
|
var _c;
|
|
60
60
|
return __generator(this, function (_d) {
|
|
61
61
|
switch (_d.label) {
|
|
@@ -65,7 +65,6 @@ var deserializeAws_json1_1CreateHomeRegionControlCommandError = function (output
|
|
|
65
65
|
return [4, parseBody(output.body, context)];
|
|
66
66
|
case 1:
|
|
67
67
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
68
|
-
errorCode = "UnknownError";
|
|
69
68
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
70
69
|
_b = errorCode;
|
|
71
70
|
switch (_b) {
|
|
@@ -97,10 +96,12 @@ var deserializeAws_json1_1CreateHomeRegionControlCommandError = function (output
|
|
|
97
96
|
case 13: throw _d.sent();
|
|
98
97
|
case 14:
|
|
99
98
|
parsedBody = parsedOutput.body;
|
|
99
|
+
$metadata = deserializeMetadata(output);
|
|
100
|
+
statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + "" : undefined;
|
|
100
101
|
response = new __BaseException({
|
|
101
|
-
name: parsedBody.code || parsedBody.Code || errorCode,
|
|
102
|
+
name: parsedBody.code || parsedBody.Code || errorCode || statusCode || "UnknowError",
|
|
102
103
|
$fault: "client",
|
|
103
|
-
$metadata:
|
|
104
|
+
$metadata: $metadata,
|
|
104
105
|
});
|
|
105
106
|
throw __decorateServiceException(response, parsedBody);
|
|
106
107
|
}
|
|
@@ -125,7 +126,7 @@ export var deserializeAws_json1_1DescribeHomeRegionControlsCommand = function (o
|
|
|
125
126
|
});
|
|
126
127
|
}); };
|
|
127
128
|
var deserializeAws_json1_1DescribeHomeRegionControlsCommandError = function (output, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
128
|
-
var parsedOutput, _a, response, errorCode, _b, parsedBody;
|
|
129
|
+
var parsedOutput, _a, response, errorCode, _b, parsedBody, $metadata, statusCode;
|
|
129
130
|
var _c;
|
|
130
131
|
return __generator(this, function (_d) {
|
|
131
132
|
switch (_d.label) {
|
|
@@ -135,7 +136,6 @@ var deserializeAws_json1_1DescribeHomeRegionControlsCommandError = function (out
|
|
|
135
136
|
return [4, parseBody(output.body, context)];
|
|
136
137
|
case 1:
|
|
137
138
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
138
|
-
errorCode = "UnknownError";
|
|
139
139
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
140
140
|
_b = errorCode;
|
|
141
141
|
switch (_b) {
|
|
@@ -163,10 +163,12 @@ var deserializeAws_json1_1DescribeHomeRegionControlsCommandError = function (out
|
|
|
163
163
|
case 11: throw _d.sent();
|
|
164
164
|
case 12:
|
|
165
165
|
parsedBody = parsedOutput.body;
|
|
166
|
+
$metadata = deserializeMetadata(output);
|
|
167
|
+
statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + "" : undefined;
|
|
166
168
|
response = new __BaseException({
|
|
167
|
-
name: parsedBody.code || parsedBody.Code || errorCode,
|
|
169
|
+
name: parsedBody.code || parsedBody.Code || errorCode || statusCode || "UnknowError",
|
|
168
170
|
$fault: "client",
|
|
169
|
-
$metadata:
|
|
171
|
+
$metadata: $metadata,
|
|
170
172
|
});
|
|
171
173
|
throw __decorateServiceException(response, parsedBody);
|
|
172
174
|
}
|
|
@@ -191,7 +193,7 @@ export var deserializeAws_json1_1GetHomeRegionCommand = function (output, contex
|
|
|
191
193
|
});
|
|
192
194
|
}); };
|
|
193
195
|
var deserializeAws_json1_1GetHomeRegionCommandError = function (output, context) { return __awaiter(void 0, void 0, void 0, function () {
|
|
194
|
-
var parsedOutput, _a, response, errorCode, _b, parsedBody;
|
|
196
|
+
var parsedOutput, _a, response, errorCode, _b, parsedBody, $metadata, statusCode;
|
|
195
197
|
var _c;
|
|
196
198
|
return __generator(this, function (_d) {
|
|
197
199
|
switch (_d.label) {
|
|
@@ -201,7 +203,6 @@ var deserializeAws_json1_1GetHomeRegionCommandError = function (output, context)
|
|
|
201
203
|
return [4, parseBody(output.body, context)];
|
|
202
204
|
case 1:
|
|
203
205
|
parsedOutput = __assign.apply(void 0, _a.concat([(_c.body = _d.sent(), _c)]));
|
|
204
|
-
errorCode = "UnknownError";
|
|
205
206
|
errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
206
207
|
_b = errorCode;
|
|
207
208
|
switch (_b) {
|
|
@@ -229,10 +230,12 @@ var deserializeAws_json1_1GetHomeRegionCommandError = function (output, context)
|
|
|
229
230
|
case 11: throw _d.sent();
|
|
230
231
|
case 12:
|
|
231
232
|
parsedBody = parsedOutput.body;
|
|
233
|
+
$metadata = deserializeMetadata(output);
|
|
234
|
+
statusCode = $metadata.httpStatusCode ? $metadata.httpStatusCode + "" : undefined;
|
|
232
235
|
response = new __BaseException({
|
|
233
|
-
name: parsedBody.code || parsedBody.Code || errorCode,
|
|
236
|
+
name: parsedBody.code || parsedBody.Code || errorCode || statusCode || "UnknowError",
|
|
234
237
|
$fault: "client",
|
|
235
|
-
$metadata:
|
|
238
|
+
$metadata: $metadata,
|
|
236
239
|
});
|
|
237
240
|
throw __decorateServiceException(response, parsedBody);
|
|
238
241
|
}
|
|
@@ -293,18 +296,16 @@ var deserializeAws_json1_1ThrottlingExceptionResponse = function (parsedOutput,
|
|
|
293
296
|
});
|
|
294
297
|
}); };
|
|
295
298
|
var serializeAws_json1_1CreateHomeRegionControlRequest = function (input, context) {
|
|
296
|
-
return __assign(__assign(__assign({}, (input.DryRun
|
|
297
|
-
input.Target !== null && { Target: serializeAws_json1_1Target(input.Target, context) }));
|
|
299
|
+
return __assign(__assign(__assign({}, (input.DryRun != null && { DryRun: input.DryRun })), (input.HomeRegion != null && { HomeRegion: input.HomeRegion })), (input.Target != null && { Target: serializeAws_json1_1Target(input.Target, context) }));
|
|
298
300
|
};
|
|
299
301
|
var serializeAws_json1_1DescribeHomeRegionControlsRequest = function (input, context) {
|
|
300
|
-
return __assign(__assign(__assign(__assign(__assign({}, (input.ControlId
|
|
301
|
-
input.Target !== null && { Target: serializeAws_json1_1Target(input.Target, context) }));
|
|
302
|
+
return __assign(__assign(__assign(__assign(__assign({}, (input.ControlId != null && { ControlId: input.ControlId })), (input.HomeRegion != null && { HomeRegion: input.HomeRegion })), (input.MaxResults != null && { MaxResults: input.MaxResults })), (input.NextToken != null && { NextToken: input.NextToken })), (input.Target != null && { Target: serializeAws_json1_1Target(input.Target, context) }));
|
|
302
303
|
};
|
|
303
304
|
var serializeAws_json1_1GetHomeRegionRequest = function (input, context) {
|
|
304
305
|
return {};
|
|
305
306
|
};
|
|
306
307
|
var serializeAws_json1_1Target = function (input, context) {
|
|
307
|
-
return __assign(__assign({}, (input.Id
|
|
308
|
+
return __assign(__assign({}, (input.Id != null && { Id: input.Id })), (input.Type != null && { Type: input.Type }));
|
|
308
309
|
};
|
|
309
310
|
var deserializeAws_json1_1AccessDeniedException = function (output, context) {
|
|
310
311
|
return {
|
|
@@ -313,14 +314,14 @@ var deserializeAws_json1_1AccessDeniedException = function (output, context) {
|
|
|
313
314
|
};
|
|
314
315
|
var deserializeAws_json1_1CreateHomeRegionControlResult = function (output, context) {
|
|
315
316
|
return {
|
|
316
|
-
HomeRegionControl: output.HomeRegionControl
|
|
317
|
+
HomeRegionControl: output.HomeRegionControl != null
|
|
317
318
|
? deserializeAws_json1_1HomeRegionControl(output.HomeRegionControl, context)
|
|
318
319
|
: undefined,
|
|
319
320
|
};
|
|
320
321
|
};
|
|
321
322
|
var deserializeAws_json1_1DescribeHomeRegionControlsResult = function (output, context) {
|
|
322
323
|
return {
|
|
323
|
-
HomeRegionControls: output.HomeRegionControls
|
|
324
|
+
HomeRegionControls: output.HomeRegionControls != null
|
|
324
325
|
? deserializeAws_json1_1HomeRegionControls(output.HomeRegionControls, context)
|
|
325
326
|
: undefined,
|
|
326
327
|
NextToken: __expectString(output.NextToken),
|
|
@@ -340,12 +341,10 @@ var deserializeAws_json1_1HomeRegionControl = function (output, context) {
|
|
|
340
341
|
return {
|
|
341
342
|
ControlId: __expectString(output.ControlId),
|
|
342
343
|
HomeRegion: __expectString(output.HomeRegion),
|
|
343
|
-
RequestedTime: output.RequestedTime
|
|
344
|
+
RequestedTime: output.RequestedTime != null
|
|
344
345
|
? __expectNonNull(__parseEpochTimestamp(__expectNumber(output.RequestedTime)))
|
|
345
346
|
: undefined,
|
|
346
|
-
Target: output.Target
|
|
347
|
-
? deserializeAws_json1_1Target(output.Target, context)
|
|
348
|
-
: undefined,
|
|
347
|
+
Target: output.Target != null ? deserializeAws_json1_1Target(output.Target, context) : undefined,
|
|
349
348
|
};
|
|
350
349
|
};
|
|
351
350
|
var deserializeAws_json1_1HomeRegionControls = function (output, context) {
|
|
@@ -460,5 +459,4 @@ var loadRestJsonErrorCode = function (output, data) {
|
|
|
460
459
|
if (data["__type"] !== undefined) {
|
|
461
460
|
return sanitizeErrorCode(data["__type"]);
|
|
462
461
|
}
|
|
463
|
-
return "";
|
|
464
462
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-migrationhub-config",
|
|
3
3
|
"description": "AWS SDK for JavaScript Migrationhub Config Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.128.0",
|
|
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,35 +18,35 @@
|
|
|
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-recursion-detection": "3.
|
|
31
|
-
"@aws-sdk/middleware-retry": "3.
|
|
32
|
-
"@aws-sdk/middleware-serde": "3.
|
|
33
|
-
"@aws-sdk/middleware-signing": "3.
|
|
34
|
-
"@aws-sdk/middleware-stack": "3.
|
|
35
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
36
|
-
"@aws-sdk/node-config-provider": "3.
|
|
37
|
-
"@aws-sdk/node-http-handler": "3.
|
|
38
|
-
"@aws-sdk/protocol-http": "3.
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
40
|
-
"@aws-sdk/types": "3.
|
|
41
|
-
"@aws-sdk/url-parser": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.128.0",
|
|
22
|
+
"@aws-sdk/config-resolver": "3.128.0",
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.128.0",
|
|
24
|
+
"@aws-sdk/fetch-http-handler": "3.127.0",
|
|
25
|
+
"@aws-sdk/hash-node": "3.127.0",
|
|
26
|
+
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
27
|
+
"@aws-sdk/middleware-content-length": "3.127.0",
|
|
28
|
+
"@aws-sdk/middleware-host-header": "3.127.0",
|
|
29
|
+
"@aws-sdk/middleware-logger": "3.127.0",
|
|
30
|
+
"@aws-sdk/middleware-recursion-detection": "3.127.0",
|
|
31
|
+
"@aws-sdk/middleware-retry": "3.127.0",
|
|
32
|
+
"@aws-sdk/middleware-serde": "3.127.0",
|
|
33
|
+
"@aws-sdk/middleware-signing": "3.128.0",
|
|
34
|
+
"@aws-sdk/middleware-stack": "3.127.0",
|
|
35
|
+
"@aws-sdk/middleware-user-agent": "3.127.0",
|
|
36
|
+
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
|
+
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
|
+
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
+
"@aws-sdk/smithy-client": "3.127.0",
|
|
40
|
+
"@aws-sdk/types": "3.127.0",
|
|
41
|
+
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
48
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
49
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.127.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.128.0",
|
|
48
|
+
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
|
+
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|
|
51
51
|
"@aws-sdk/util-utf8-node": "3.109.0",
|
|
52
52
|
"tslib": "^2.3.1"
|