@aws-sdk/client-amp 3.200.0 → 3.201.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 +11 -0
- package/dist-cjs/endpoint/EndpointParameters.js +2 -3
- package/dist-cjs/protocols/Aws_restJson1.js +36 -48
- package/dist-cjs/runtimeConfig.browser.js +16 -16
- package/dist-cjs/runtimeConfig.js +20 -19
- package/dist-cjs/runtimeConfig.native.js +1 -2
- package/dist-cjs/runtimeConfig.shared.js +8 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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.201.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.200.0...v3.201.0) (2022-11-01)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* end support for Node.js 12.x ([#4123](https://github.com/aws/aws-sdk-js-v3/issues/4123)) ([83f913e](https://github.com/aws/aws-sdk-js-v3/commit/83f913ec2ac3878d8726c6964f585550dc5caf3e))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
# [3.200.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.199.0...v3.200.0) (2022-10-31)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @aws-sdk/client-amp
|
|
@@ -2,11 +2,10 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.resolveClientEndpointParameters = void 0;
|
|
4
4
|
const resolveClientEndpointParameters = (options) => {
|
|
5
|
-
var _a, _b;
|
|
6
5
|
return {
|
|
7
6
|
...options,
|
|
8
|
-
useDualstackEndpoint:
|
|
9
|
-
useFipsEndpoint:
|
|
7
|
+
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
8
|
+
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
10
9
|
defaultSigningName: "aps",
|
|
11
10
|
};
|
|
12
11
|
};
|
|
@@ -7,17 +7,16 @@ const uuid_1 = require("uuid");
|
|
|
7
7
|
const AmpServiceException_1 = require("../models/AmpServiceException");
|
|
8
8
|
const models_0_1 = require("../models/models_0");
|
|
9
9
|
const serializeAws_restJson1CreateAlertManagerDefinitionCommand = async (input, context) => {
|
|
10
|
-
var _a;
|
|
11
10
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
12
11
|
const headers = {
|
|
13
12
|
"content-type": "application/json",
|
|
14
13
|
};
|
|
15
|
-
let resolvedPath = `${
|
|
14
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
16
15
|
"/workspaces/{workspaceId}/alertmanager/definition";
|
|
17
16
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
18
17
|
let body;
|
|
19
18
|
body = JSON.stringify({
|
|
20
|
-
clientToken:
|
|
19
|
+
clientToken: input.clientToken ?? (0, uuid_1.v4)(),
|
|
21
20
|
...(input.data != null && { data: context.base64Encoder(input.data) }),
|
|
22
21
|
});
|
|
23
22
|
return new protocol_http_1.HttpRequest({
|
|
@@ -32,16 +31,15 @@ const serializeAws_restJson1CreateAlertManagerDefinitionCommand = async (input,
|
|
|
32
31
|
};
|
|
33
32
|
exports.serializeAws_restJson1CreateAlertManagerDefinitionCommand = serializeAws_restJson1CreateAlertManagerDefinitionCommand;
|
|
34
33
|
const serializeAws_restJson1CreateLoggingConfigurationCommand = async (input, context) => {
|
|
35
|
-
var _a;
|
|
36
34
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
37
35
|
const headers = {
|
|
38
36
|
"content-type": "application/json",
|
|
39
37
|
};
|
|
40
|
-
let resolvedPath = `${
|
|
38
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/workspaces/{workspaceId}/logging";
|
|
41
39
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
42
40
|
let body;
|
|
43
41
|
body = JSON.stringify({
|
|
44
|
-
clientToken:
|
|
42
|
+
clientToken: input.clientToken ?? (0, uuid_1.v4)(),
|
|
45
43
|
...(input.logGroupArn != null && { logGroupArn: input.logGroupArn }),
|
|
46
44
|
});
|
|
47
45
|
return new protocol_http_1.HttpRequest({
|
|
@@ -56,17 +54,16 @@ const serializeAws_restJson1CreateLoggingConfigurationCommand = async (input, co
|
|
|
56
54
|
};
|
|
57
55
|
exports.serializeAws_restJson1CreateLoggingConfigurationCommand = serializeAws_restJson1CreateLoggingConfigurationCommand;
|
|
58
56
|
const serializeAws_restJson1CreateRuleGroupsNamespaceCommand = async (input, context) => {
|
|
59
|
-
var _a;
|
|
60
57
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
61
58
|
const headers = {
|
|
62
59
|
"content-type": "application/json",
|
|
63
60
|
};
|
|
64
|
-
let resolvedPath = `${
|
|
61
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
65
62
|
"/workspaces/{workspaceId}/rulegroupsnamespaces";
|
|
66
63
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
67
64
|
let body;
|
|
68
65
|
body = JSON.stringify({
|
|
69
|
-
clientToken:
|
|
66
|
+
clientToken: input.clientToken ?? (0, uuid_1.v4)(),
|
|
70
67
|
...(input.data != null && { data: context.base64Encoder(input.data) }),
|
|
71
68
|
...(input.name != null && { name: input.name }),
|
|
72
69
|
...(input.tags != null && { tags: serializeAws_restJson1TagMap(input.tags, context) }),
|
|
@@ -83,16 +80,15 @@ const serializeAws_restJson1CreateRuleGroupsNamespaceCommand = async (input, con
|
|
|
83
80
|
};
|
|
84
81
|
exports.serializeAws_restJson1CreateRuleGroupsNamespaceCommand = serializeAws_restJson1CreateRuleGroupsNamespaceCommand;
|
|
85
82
|
const serializeAws_restJson1CreateWorkspaceCommand = async (input, context) => {
|
|
86
|
-
var _a;
|
|
87
83
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
88
84
|
const headers = {
|
|
89
85
|
"content-type": "application/json",
|
|
90
86
|
};
|
|
91
|
-
const resolvedPath = `${
|
|
87
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/workspaces";
|
|
92
88
|
let body;
|
|
93
89
|
body = JSON.stringify({
|
|
94
90
|
...(input.alias != null && { alias: input.alias }),
|
|
95
|
-
clientToken:
|
|
91
|
+
clientToken: input.clientToken ?? (0, uuid_1.v4)(),
|
|
96
92
|
...(input.tags != null && { tags: serializeAws_restJson1TagMap(input.tags, context) }),
|
|
97
93
|
});
|
|
98
94
|
return new protocol_http_1.HttpRequest({
|
|
@@ -109,7 +105,7 @@ exports.serializeAws_restJson1CreateWorkspaceCommand = serializeAws_restJson1Cre
|
|
|
109
105
|
const serializeAws_restJson1DeleteAlertManagerDefinitionCommand = async (input, context) => {
|
|
110
106
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
111
107
|
const headers = {};
|
|
112
|
-
let resolvedPath = `${
|
|
108
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
113
109
|
"/workspaces/{workspaceId}/alertmanager/definition";
|
|
114
110
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
115
111
|
const query = map({
|
|
@@ -131,7 +127,7 @@ exports.serializeAws_restJson1DeleteAlertManagerDefinitionCommand = serializeAws
|
|
|
131
127
|
const serializeAws_restJson1DeleteLoggingConfigurationCommand = async (input, context) => {
|
|
132
128
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
133
129
|
const headers = {};
|
|
134
|
-
let resolvedPath = `${
|
|
130
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/workspaces/{workspaceId}/logging";
|
|
135
131
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
136
132
|
const query = map({
|
|
137
133
|
clientToken: [, input.clientToken],
|
|
@@ -152,7 +148,7 @@ exports.serializeAws_restJson1DeleteLoggingConfigurationCommand = serializeAws_r
|
|
|
152
148
|
const serializeAws_restJson1DeleteRuleGroupsNamespaceCommand = async (input, context) => {
|
|
153
149
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
154
150
|
const headers = {};
|
|
155
|
-
let resolvedPath = `${
|
|
151
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
156
152
|
"/workspaces/{workspaceId}/rulegroupsnamespaces/{name}";
|
|
157
153
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
158
154
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "name", () => input.name, "{name}", false);
|
|
@@ -175,7 +171,7 @@ exports.serializeAws_restJson1DeleteRuleGroupsNamespaceCommand = serializeAws_re
|
|
|
175
171
|
const serializeAws_restJson1DeleteWorkspaceCommand = async (input, context) => {
|
|
176
172
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
177
173
|
const headers = {};
|
|
178
|
-
let resolvedPath = `${
|
|
174
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/workspaces/{workspaceId}";
|
|
179
175
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
180
176
|
const query = map({
|
|
181
177
|
clientToken: [, input.clientToken],
|
|
@@ -196,7 +192,7 @@ exports.serializeAws_restJson1DeleteWorkspaceCommand = serializeAws_restJson1Del
|
|
|
196
192
|
const serializeAws_restJson1DescribeAlertManagerDefinitionCommand = async (input, context) => {
|
|
197
193
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
198
194
|
const headers = {};
|
|
199
|
-
let resolvedPath = `${
|
|
195
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
200
196
|
"/workspaces/{workspaceId}/alertmanager/definition";
|
|
201
197
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
202
198
|
let body;
|
|
@@ -214,7 +210,7 @@ exports.serializeAws_restJson1DescribeAlertManagerDefinitionCommand = serializeA
|
|
|
214
210
|
const serializeAws_restJson1DescribeLoggingConfigurationCommand = async (input, context) => {
|
|
215
211
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
216
212
|
const headers = {};
|
|
217
|
-
let resolvedPath = `${
|
|
213
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/workspaces/{workspaceId}/logging";
|
|
218
214
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
219
215
|
let body;
|
|
220
216
|
return new protocol_http_1.HttpRequest({
|
|
@@ -231,7 +227,7 @@ exports.serializeAws_restJson1DescribeLoggingConfigurationCommand = serializeAws
|
|
|
231
227
|
const serializeAws_restJson1DescribeRuleGroupsNamespaceCommand = async (input, context) => {
|
|
232
228
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
233
229
|
const headers = {};
|
|
234
|
-
let resolvedPath = `${
|
|
230
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
235
231
|
"/workspaces/{workspaceId}/rulegroupsnamespaces/{name}";
|
|
236
232
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
237
233
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "name", () => input.name, "{name}", false);
|
|
@@ -250,7 +246,7 @@ exports.serializeAws_restJson1DescribeRuleGroupsNamespaceCommand = serializeAws_
|
|
|
250
246
|
const serializeAws_restJson1DescribeWorkspaceCommand = async (input, context) => {
|
|
251
247
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
252
248
|
const headers = {};
|
|
253
|
-
let resolvedPath = `${
|
|
249
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/workspaces/{workspaceId}";
|
|
254
250
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
255
251
|
let body;
|
|
256
252
|
return new protocol_http_1.HttpRequest({
|
|
@@ -267,7 +263,7 @@ exports.serializeAws_restJson1DescribeWorkspaceCommand = serializeAws_restJson1D
|
|
|
267
263
|
const serializeAws_restJson1ListRuleGroupsNamespacesCommand = async (input, context) => {
|
|
268
264
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
269
265
|
const headers = {};
|
|
270
|
-
let resolvedPath = `${
|
|
266
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
271
267
|
"/workspaces/{workspaceId}/rulegroupsnamespaces";
|
|
272
268
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
273
269
|
const query = map({
|
|
@@ -291,7 +287,7 @@ exports.serializeAws_restJson1ListRuleGroupsNamespacesCommand = serializeAws_res
|
|
|
291
287
|
const serializeAws_restJson1ListTagsForResourceCommand = async (input, context) => {
|
|
292
288
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
293
289
|
const headers = {};
|
|
294
|
-
let resolvedPath = `${
|
|
290
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/tags/{resourceArn}";
|
|
295
291
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
296
292
|
let body;
|
|
297
293
|
return new protocol_http_1.HttpRequest({
|
|
@@ -308,7 +304,7 @@ exports.serializeAws_restJson1ListTagsForResourceCommand = serializeAws_restJson
|
|
|
308
304
|
const serializeAws_restJson1ListWorkspacesCommand = async (input, context) => {
|
|
309
305
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
310
306
|
const headers = {};
|
|
311
|
-
const resolvedPath = `${
|
|
307
|
+
const resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/workspaces";
|
|
312
308
|
const query = map({
|
|
313
309
|
nextToken: [, input.nextToken],
|
|
314
310
|
alias: [, input.alias],
|
|
@@ -328,17 +324,16 @@ const serializeAws_restJson1ListWorkspacesCommand = async (input, context) => {
|
|
|
328
324
|
};
|
|
329
325
|
exports.serializeAws_restJson1ListWorkspacesCommand = serializeAws_restJson1ListWorkspacesCommand;
|
|
330
326
|
const serializeAws_restJson1PutAlertManagerDefinitionCommand = async (input, context) => {
|
|
331
|
-
var _a;
|
|
332
327
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
333
328
|
const headers = {
|
|
334
329
|
"content-type": "application/json",
|
|
335
330
|
};
|
|
336
|
-
let resolvedPath = `${
|
|
331
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
337
332
|
"/workspaces/{workspaceId}/alertmanager/definition";
|
|
338
333
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
339
334
|
let body;
|
|
340
335
|
body = JSON.stringify({
|
|
341
|
-
clientToken:
|
|
336
|
+
clientToken: input.clientToken ?? (0, uuid_1.v4)(),
|
|
342
337
|
...(input.data != null && { data: context.base64Encoder(input.data) }),
|
|
343
338
|
});
|
|
344
339
|
return new protocol_http_1.HttpRequest({
|
|
@@ -353,18 +348,17 @@ const serializeAws_restJson1PutAlertManagerDefinitionCommand = async (input, con
|
|
|
353
348
|
};
|
|
354
349
|
exports.serializeAws_restJson1PutAlertManagerDefinitionCommand = serializeAws_restJson1PutAlertManagerDefinitionCommand;
|
|
355
350
|
const serializeAws_restJson1PutRuleGroupsNamespaceCommand = async (input, context) => {
|
|
356
|
-
var _a;
|
|
357
351
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
358
352
|
const headers = {
|
|
359
353
|
"content-type": "application/json",
|
|
360
354
|
};
|
|
361
|
-
let resolvedPath = `${
|
|
355
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` +
|
|
362
356
|
"/workspaces/{workspaceId}/rulegroupsnamespaces/{name}";
|
|
363
357
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
364
358
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "name", () => input.name, "{name}", false);
|
|
365
359
|
let body;
|
|
366
360
|
body = JSON.stringify({
|
|
367
|
-
clientToken:
|
|
361
|
+
clientToken: input.clientToken ?? (0, uuid_1.v4)(),
|
|
368
362
|
...(input.data != null && { data: context.base64Encoder(input.data) }),
|
|
369
363
|
});
|
|
370
364
|
return new protocol_http_1.HttpRequest({
|
|
@@ -383,7 +377,7 @@ const serializeAws_restJson1TagResourceCommand = async (input, context) => {
|
|
|
383
377
|
const headers = {
|
|
384
378
|
"content-type": "application/json",
|
|
385
379
|
};
|
|
386
|
-
let resolvedPath = `${
|
|
380
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/tags/{resourceArn}";
|
|
387
381
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
388
382
|
let body;
|
|
389
383
|
body = JSON.stringify({
|
|
@@ -403,7 +397,7 @@ exports.serializeAws_restJson1TagResourceCommand = serializeAws_restJson1TagReso
|
|
|
403
397
|
const serializeAws_restJson1UntagResourceCommand = async (input, context) => {
|
|
404
398
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
405
399
|
const headers = {};
|
|
406
|
-
let resolvedPath = `${
|
|
400
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/tags/{resourceArn}";
|
|
407
401
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "resourceArn", () => input.resourceArn, "{resourceArn}", false);
|
|
408
402
|
const query = map({
|
|
409
403
|
tagKeys: [() => input.tagKeys !== void 0, () => (input.tagKeys || []).map((_entry) => _entry)],
|
|
@@ -422,16 +416,15 @@ const serializeAws_restJson1UntagResourceCommand = async (input, context) => {
|
|
|
422
416
|
};
|
|
423
417
|
exports.serializeAws_restJson1UntagResourceCommand = serializeAws_restJson1UntagResourceCommand;
|
|
424
418
|
const serializeAws_restJson1UpdateLoggingConfigurationCommand = async (input, context) => {
|
|
425
|
-
var _a;
|
|
426
419
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
427
420
|
const headers = {
|
|
428
421
|
"content-type": "application/json",
|
|
429
422
|
};
|
|
430
|
-
let resolvedPath = `${
|
|
423
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/workspaces/{workspaceId}/logging";
|
|
431
424
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
432
425
|
let body;
|
|
433
426
|
body = JSON.stringify({
|
|
434
|
-
clientToken:
|
|
427
|
+
clientToken: input.clientToken ?? (0, uuid_1.v4)(),
|
|
435
428
|
...(input.logGroupArn != null && { logGroupArn: input.logGroupArn }),
|
|
436
429
|
});
|
|
437
430
|
return new protocol_http_1.HttpRequest({
|
|
@@ -446,17 +439,16 @@ const serializeAws_restJson1UpdateLoggingConfigurationCommand = async (input, co
|
|
|
446
439
|
};
|
|
447
440
|
exports.serializeAws_restJson1UpdateLoggingConfigurationCommand = serializeAws_restJson1UpdateLoggingConfigurationCommand;
|
|
448
441
|
const serializeAws_restJson1UpdateWorkspaceAliasCommand = async (input, context) => {
|
|
449
|
-
var _a;
|
|
450
442
|
const { hostname, protocol = "https", port, path: basePath } = await context.endpoint();
|
|
451
443
|
const headers = {
|
|
452
444
|
"content-type": "application/json",
|
|
453
445
|
};
|
|
454
|
-
let resolvedPath = `${
|
|
446
|
+
let resolvedPath = `${basePath?.endsWith("/") ? basePath.slice(0, -1) : basePath || ""}` + "/workspaces/{workspaceId}/alias";
|
|
455
447
|
resolvedPath = (0, smithy_client_1.resolvedPath)(resolvedPath, input, "workspaceId", () => input.workspaceId, "{workspaceId}", false);
|
|
456
448
|
let body;
|
|
457
449
|
body = JSON.stringify({
|
|
458
450
|
...(input.alias != null && { alias: input.alias }),
|
|
459
|
-
clientToken:
|
|
451
|
+
clientToken: input.clientToken ?? (0, uuid_1.v4)(),
|
|
460
452
|
});
|
|
461
453
|
return new protocol_http_1.HttpRequest({
|
|
462
454
|
protocol,
|
|
@@ -1754,15 +1746,12 @@ const deserializeAws_restJson1WorkspaceSummaryList = (output, context) => {
|
|
|
1754
1746
|
});
|
|
1755
1747
|
return retVal;
|
|
1756
1748
|
};
|
|
1757
|
-
const deserializeMetadata = (output) => {
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1764
|
-
});
|
|
1765
|
-
};
|
|
1749
|
+
const deserializeMetadata = (output) => ({
|
|
1750
|
+
httpStatusCode: output.statusCode,
|
|
1751
|
+
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1752
|
+
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1753
|
+
cfId: output.headers["x-amz-cf-id"],
|
|
1754
|
+
});
|
|
1766
1755
|
const collectBody = (streamBody = new Uint8Array(), context) => {
|
|
1767
1756
|
if (streamBody instanceof Uint8Array) {
|
|
1768
1757
|
return Promise.resolve(streamBody);
|
|
@@ -1782,9 +1771,8 @@ const parseBody = (streamBody, context) => collectBodyString(streamBody, context
|
|
|
1782
1771
|
return {};
|
|
1783
1772
|
});
|
|
1784
1773
|
const parseErrorBody = async (errorBody, context) => {
|
|
1785
|
-
var _a;
|
|
1786
1774
|
const value = await parseBody(errorBody, context);
|
|
1787
|
-
value.message =
|
|
1775
|
+
value.message = value.message ?? value.Message;
|
|
1788
1776
|
return value;
|
|
1789
1777
|
};
|
|
1790
1778
|
const loadRestJsonErrorCode = (output, data) => {
|
|
@@ -16,7 +16,6 @@ const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
|
16
16
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
17
17
|
const util_defaults_mode_browser_1 = require("@aws-sdk/util-defaults-mode-browser");
|
|
18
18
|
const getRuntimeConfig = (config) => {
|
|
19
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
20
19
|
const defaultsMode = (0, util_defaults_mode_browser_1.resolveDefaultsModeConfig)(config);
|
|
21
20
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
22
21
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
@@ -25,21 +24,22 @@ const getRuntimeConfig = (config) => {
|
|
|
25
24
|
...config,
|
|
26
25
|
runtime: "browser",
|
|
27
26
|
defaultsMode,
|
|
28
|
-
base64Decoder:
|
|
29
|
-
base64Encoder:
|
|
30
|
-
bodyLengthChecker:
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
defaultUserAgentProvider:
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
27
|
+
base64Decoder: config?.base64Decoder ?? util_base64_browser_1.fromBase64,
|
|
28
|
+
base64Encoder: config?.base64Encoder ?? util_base64_browser_1.toBase64,
|
|
29
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_browser_1.calculateBodyLength,
|
|
30
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
|
|
31
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
32
|
+
(0, util_user_agent_browser_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
33
|
+
maxAttempts: config?.maxAttempts ?? middleware_retry_1.DEFAULT_MAX_ATTEMPTS,
|
|
34
|
+
region: config?.region ?? (0, invalid_dependency_1.invalidProvider)("Region is missing"),
|
|
35
|
+
requestHandler: config?.requestHandler ?? new fetch_http_handler_1.FetchHttpHandler(defaultConfigProvider),
|
|
36
|
+
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || middleware_retry_1.DEFAULT_RETRY_MODE),
|
|
37
|
+
sha256: config?.sha256 ?? sha256_browser_1.Sha256,
|
|
38
|
+
streamCollector: config?.streamCollector ?? fetch_http_handler_1.streamCollector,
|
|
39
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(config_resolver_1.DEFAULT_USE_DUALSTACK_ENDPOINT)),
|
|
40
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(config_resolver_1.DEFAULT_USE_FIPS_ENDPOINT)),
|
|
41
|
+
utf8Decoder: config?.utf8Decoder ?? util_utf8_browser_1.fromUtf8,
|
|
42
|
+
utf8Encoder: config?.utf8Encoder ?? util_utf8_browser_1.toUtf8,
|
|
43
43
|
};
|
|
44
44
|
};
|
|
45
45
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -19,7 +19,6 @@ const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
|
19
19
|
const util_defaults_mode_node_1 = require("@aws-sdk/util-defaults-mode-node");
|
|
20
20
|
const smithy_client_2 = require("@aws-sdk/smithy-client");
|
|
21
21
|
const getRuntimeConfig = (config) => {
|
|
22
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q;
|
|
23
22
|
(0, smithy_client_2.emitWarningIfUnsupportedVersion)(process.version);
|
|
24
23
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
25
24
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
@@ -29,24 +28,26 @@ const getRuntimeConfig = (config) => {
|
|
|
29
28
|
...config,
|
|
30
29
|
runtime: "node",
|
|
31
30
|
defaultsMode,
|
|
32
|
-
base64Decoder:
|
|
33
|
-
base64Encoder:
|
|
34
|
-
bodyLengthChecker:
|
|
35
|
-
credentialDefaultProvider:
|
|
36
|
-
defaultUserAgentProvider:
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
31
|
+
base64Decoder: config?.base64Decoder ?? util_base64_node_1.fromBase64,
|
|
32
|
+
base64Encoder: config?.base64Encoder ?? util_base64_node_1.toBase64,
|
|
33
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
34
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? (0, client_sts_1.decorateDefaultCredentialProvider)(credential_provider_node_1.defaultProvider),
|
|
35
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
36
|
+
(0, util_user_agent_node_1.defaultUserAgent)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
37
|
+
maxAttempts: config?.maxAttempts ?? (0, node_config_provider_1.loadConfig)(middleware_retry_1.NODE_MAX_ATTEMPT_CONFIG_OPTIONS),
|
|
38
|
+
region: config?.region ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_REGION_CONFIG_OPTIONS, config_resolver_1.NODE_REGION_CONFIG_FILE_OPTIONS),
|
|
39
|
+
requestHandler: config?.requestHandler ?? new node_http_handler_1.NodeHttpHandler(defaultConfigProvider),
|
|
40
|
+
retryMode: config?.retryMode ??
|
|
41
|
+
(0, node_config_provider_1.loadConfig)({
|
|
42
|
+
...middleware_retry_1.NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
43
|
+
default: async () => (await defaultConfigProvider()).retryMode || middleware_retry_1.DEFAULT_RETRY_MODE,
|
|
44
|
+
}),
|
|
45
|
+
sha256: config?.sha256 ?? hash_node_1.Hash.bind(null, "sha256"),
|
|
46
|
+
streamCollector: config?.streamCollector ?? node_http_handler_1.streamCollector,
|
|
47
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS),
|
|
48
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? (0, node_config_provider_1.loadConfig)(config_resolver_1.NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS),
|
|
49
|
+
utf8Decoder: config?.utf8Decoder ?? util_utf8_node_1.fromUtf8,
|
|
50
|
+
utf8Encoder: config?.utf8Encoder ?? util_utf8_node_1.toUtf8,
|
|
50
51
|
};
|
|
51
52
|
};
|
|
52
53
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -4,13 +4,12 @@ exports.getRuntimeConfig = void 0;
|
|
|
4
4
|
const sha256_js_1 = require("@aws-crypto/sha256-js");
|
|
5
5
|
const runtimeConfig_browser_1 = require("./runtimeConfig.browser");
|
|
6
6
|
const getRuntimeConfig = (config) => {
|
|
7
|
-
var _a;
|
|
8
7
|
const browserDefaults = (0, runtimeConfig_browser_1.getRuntimeConfig)(config);
|
|
9
8
|
return {
|
|
10
9
|
...browserDefaults,
|
|
11
10
|
...config,
|
|
12
11
|
runtime: "react-native",
|
|
13
|
-
sha256:
|
|
12
|
+
sha256: config?.sha256 ?? sha256_js_1.Sha256,
|
|
14
13
|
};
|
|
15
14
|
};
|
|
16
15
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -3,15 +3,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
4
|
const url_parser_1 = require("@aws-sdk/url-parser");
|
|
5
5
|
const endpointResolver_1 = require("./endpoint/endpointResolver");
|
|
6
|
-
const getRuntimeConfig = (config) => {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
urlParser: (_e = config === null || config === void 0 ? void 0 : config.urlParser) !== null && _e !== void 0 ? _e : url_parser_1.parseUrl,
|
|
15
|
-
});
|
|
16
|
-
};
|
|
6
|
+
const getRuntimeConfig = (config) => ({
|
|
7
|
+
apiVersion: "2020-08-01",
|
|
8
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
9
|
+
endpointProvider: config?.endpointProvider ?? endpointResolver_1.defaultEndpointResolver,
|
|
10
|
+
logger: config?.logger ?? {},
|
|
11
|
+
serviceId: config?.serviceId ?? "amp",
|
|
12
|
+
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
13
|
+
});
|
|
17
14
|
exports.getRuntimeConfig = getRuntimeConfig;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-amp",
|
|
3
3
|
"description": "AWS SDK for JavaScript Amp Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.201.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",
|
|
@@ -19,46 +19,46 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.201.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.201.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.201.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.201.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.201.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.201.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.201.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.201.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.201.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.201.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.201.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.201.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.201.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.201.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.201.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.201.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.201.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.201.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.201.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.201.0",
|
|
42
|
+
"@aws-sdk/types": "3.201.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.201.0",
|
|
44
44
|
"@aws-sdk/util-base64-browser": "3.188.0",
|
|
45
|
-
"@aws-sdk/util-base64-node": "3.
|
|
45
|
+
"@aws-sdk/util-base64-node": "3.201.0",
|
|
46
46
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
47
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
49
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
-
"@aws-sdk/util-endpoints": "3.
|
|
51
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
52
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
47
|
+
"@aws-sdk/util-body-length-node": "3.201.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-browser": "3.201.0",
|
|
49
|
+
"@aws-sdk/util-defaults-mode-node": "3.201.0",
|
|
50
|
+
"@aws-sdk/util-endpoints": "3.201.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-browser": "3.201.0",
|
|
52
|
+
"@aws-sdk/util-user-agent-node": "3.201.0",
|
|
53
53
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
54
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
55
|
-
"@aws-sdk/util-waiter": "3.
|
|
54
|
+
"@aws-sdk/util-utf8-node": "3.201.0",
|
|
55
|
+
"@aws-sdk/util-waiter": "3.201.0",
|
|
56
56
|
"tslib": "^2.3.1",
|
|
57
57
|
"uuid": "^8.3.2"
|
|
58
58
|
},
|
|
59
59
|
"devDependencies": {
|
|
60
60
|
"@aws-sdk/service-client-documentation-generator": "3.188.0",
|
|
61
|
-
"@tsconfig/
|
|
61
|
+
"@tsconfig/node14": "1.0.3",
|
|
62
62
|
"@types/node": "^12.7.5",
|
|
63
63
|
"@types/uuid": "^8.3.0",
|
|
64
64
|
"concurrently": "7.0.0",
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
}
|
|
74
74
|
},
|
|
75
75
|
"engines": {
|
|
76
|
-
"node": ">=
|
|
76
|
+
"node": ">=14.0.0"
|
|
77
77
|
},
|
|
78
78
|
"typesVersions": {
|
|
79
79
|
"<4.0": {
|