@aws-sdk/client-wellarchitected 3.54.1 → 3.58.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 +24 -0
- package/dist-cjs/WellArchitectedClient.js +13 -13
- package/dist-cjs/commands/AssociateLensesCommand.js +3 -3
- package/dist-cjs/commands/CreateLensShareCommand.js +3 -3
- package/dist-cjs/commands/CreateLensVersionCommand.js +3 -3
- package/dist-cjs/commands/CreateMilestoneCommand.js +3 -3
- package/dist-cjs/commands/CreateWorkloadCommand.js +3 -3
- package/dist-cjs/commands/CreateWorkloadShareCommand.js +3 -3
- package/dist-cjs/commands/DeleteLensCommand.js +3 -3
- package/dist-cjs/commands/DeleteLensShareCommand.js +3 -3
- package/dist-cjs/commands/DeleteWorkloadCommand.js +3 -3
- package/dist-cjs/commands/DeleteWorkloadShareCommand.js +3 -3
- package/dist-cjs/commands/DisassociateLensesCommand.js +3 -3
- package/dist-cjs/commands/ExportLensCommand.js +3 -3
- package/dist-cjs/commands/GetAnswerCommand.js +3 -3
- package/dist-cjs/commands/GetLensCommand.js +3 -3
- package/dist-cjs/commands/GetLensReviewCommand.js +3 -3
- package/dist-cjs/commands/GetLensReviewReportCommand.js +3 -3
- package/dist-cjs/commands/GetLensVersionDifferenceCommand.js +3 -3
- package/dist-cjs/commands/GetMilestoneCommand.js +3 -3
- package/dist-cjs/commands/GetWorkloadCommand.js +3 -3
- package/dist-cjs/commands/ImportLensCommand.js +3 -3
- package/dist-cjs/commands/ListAnswersCommand.js +3 -3
- package/dist-cjs/commands/ListLensReviewImprovementsCommand.js +3 -3
- package/dist-cjs/commands/ListLensReviewsCommand.js +3 -3
- package/dist-cjs/commands/ListLensSharesCommand.js +3 -3
- package/dist-cjs/commands/ListLensesCommand.js +3 -3
- package/dist-cjs/commands/ListMilestonesCommand.js +3 -3
- package/dist-cjs/commands/ListNotificationsCommand.js +3 -3
- package/dist-cjs/commands/ListShareInvitationsCommand.js +3 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-cjs/commands/ListWorkloadSharesCommand.js +3 -3
- package/dist-cjs/commands/ListWorkloadsCommand.js +3 -3
- package/dist-cjs/commands/TagResourceCommand.js +3 -3
- package/dist-cjs/commands/UntagResourceCommand.js +3 -3
- package/dist-cjs/commands/UpdateAnswerCommand.js +3 -3
- package/dist-cjs/commands/UpdateLensReviewCommand.js +3 -3
- package/dist-cjs/commands/UpdateShareInvitationCommand.js +3 -3
- package/dist-cjs/commands/UpdateWorkloadCommand.js +3 -3
- package/dist-cjs/commands/UpdateWorkloadShareCommand.js +3 -3
- package/dist-cjs/commands/UpgradeLensReviewCommand.js +3 -3
- package/dist-cjs/endpoints.js +1 -1
- package/dist-cjs/protocols/Aws_restJson1.js +352 -352
- package/dist-cjs/runtimeConfig.browser.js +4 -4
- package/dist-cjs/runtimeConfig.js +9 -9
- package/dist-cjs/runtimeConfig.native.js +1 -1
- package/dist-es/WellArchitected.js +39 -39
- package/dist-es/pagination/ListAnswersPaginator.js +4 -4
- package/dist-es/pagination/ListLensReviewImprovementsPaginator.js +4 -4
- package/dist-es/pagination/ListLensReviewsPaginator.js +4 -4
- package/dist-es/pagination/ListLensSharesPaginator.js +4 -4
- package/dist-es/pagination/ListLensesPaginator.js +4 -4
- package/dist-es/pagination/ListMilestonesPaginator.js +4 -4
- package/dist-es/pagination/ListNotificationsPaginator.js +4 -4
- package/dist-es/pagination/ListShareInvitationsPaginator.js +4 -4
- package/dist-es/pagination/ListWorkloadSharesPaginator.js +4 -4
- package/dist-es/pagination/ListWorkloadsPaginator.js +4 -4
- package/dist-es/protocols/Aws_restJson1.js +39 -39
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -2
- package/package.json +34 -34
|
@@ -10,7 +10,7 @@ var makePagedClientRequest = function (client, input) {
|
|
|
10
10
|
return __awaiter(void 0, void 0, void 0, function () {
|
|
11
11
|
return __generator(this, function (_a) {
|
|
12
12
|
switch (_a.label) {
|
|
13
|
-
case 0: return [4, client.send.apply(client, __spreadArray([new ListNotificationsCommand(input)], __read(args)))];
|
|
13
|
+
case 0: return [4, client.send.apply(client, __spreadArray([new ListNotificationsCommand(input)], __read(args), false))];
|
|
14
14
|
case 1: return [2, _a.sent()];
|
|
15
15
|
}
|
|
16
16
|
});
|
|
@@ -24,7 +24,7 @@ var makePagedRequest = function (client, input) {
|
|
|
24
24
|
return __awaiter(void 0, void 0, void 0, function () {
|
|
25
25
|
return __generator(this, function (_a) {
|
|
26
26
|
switch (_a.label) {
|
|
27
|
-
case 0: return [4, client.listNotifications.apply(client, __spreadArray([input], __read(args)))];
|
|
27
|
+
case 0: return [4, client.listNotifications.apply(client, __spreadArray([input], __read(args), false))];
|
|
28
28
|
case 1: return [2, _a.sent()];
|
|
29
29
|
}
|
|
30
30
|
});
|
|
@@ -48,13 +48,13 @@ export function paginateListNotifications(config, input) {
|
|
|
48
48
|
input.NextToken = token;
|
|
49
49
|
input["MaxResults"] = config.pageSize;
|
|
50
50
|
if (!(config.client instanceof WellArchitected)) return [3, 3];
|
|
51
|
-
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
|
|
51
|
+
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
52
52
|
case 2:
|
|
53
53
|
page = _a.sent();
|
|
54
54
|
return [3, 6];
|
|
55
55
|
case 3:
|
|
56
56
|
if (!(config.client instanceof WellArchitectedClient)) return [3, 5];
|
|
57
|
-
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
|
|
57
|
+
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
58
58
|
case 4:
|
|
59
59
|
page = _a.sent();
|
|
60
60
|
return [3, 6];
|
|
@@ -10,7 +10,7 @@ var makePagedClientRequest = function (client, input) {
|
|
|
10
10
|
return __awaiter(void 0, void 0, void 0, function () {
|
|
11
11
|
return __generator(this, function (_a) {
|
|
12
12
|
switch (_a.label) {
|
|
13
|
-
case 0: return [4, client.send.apply(client, __spreadArray([new ListShareInvitationsCommand(input)], __read(args)))];
|
|
13
|
+
case 0: return [4, client.send.apply(client, __spreadArray([new ListShareInvitationsCommand(input)], __read(args), false))];
|
|
14
14
|
case 1: return [2, _a.sent()];
|
|
15
15
|
}
|
|
16
16
|
});
|
|
@@ -24,7 +24,7 @@ var makePagedRequest = function (client, input) {
|
|
|
24
24
|
return __awaiter(void 0, void 0, void 0, function () {
|
|
25
25
|
return __generator(this, function (_a) {
|
|
26
26
|
switch (_a.label) {
|
|
27
|
-
case 0: return [4, client.listShareInvitations.apply(client, __spreadArray([input], __read(args)))];
|
|
27
|
+
case 0: return [4, client.listShareInvitations.apply(client, __spreadArray([input], __read(args), false))];
|
|
28
28
|
case 1: return [2, _a.sent()];
|
|
29
29
|
}
|
|
30
30
|
});
|
|
@@ -48,13 +48,13 @@ export function paginateListShareInvitations(config, input) {
|
|
|
48
48
|
input.NextToken = token;
|
|
49
49
|
input["MaxResults"] = config.pageSize;
|
|
50
50
|
if (!(config.client instanceof WellArchitected)) return [3, 3];
|
|
51
|
-
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
|
|
51
|
+
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
52
52
|
case 2:
|
|
53
53
|
page = _a.sent();
|
|
54
54
|
return [3, 6];
|
|
55
55
|
case 3:
|
|
56
56
|
if (!(config.client instanceof WellArchitectedClient)) return [3, 5];
|
|
57
|
-
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
|
|
57
|
+
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
58
58
|
case 4:
|
|
59
59
|
page = _a.sent();
|
|
60
60
|
return [3, 6];
|
|
@@ -10,7 +10,7 @@ var makePagedClientRequest = function (client, input) {
|
|
|
10
10
|
return __awaiter(void 0, void 0, void 0, function () {
|
|
11
11
|
return __generator(this, function (_a) {
|
|
12
12
|
switch (_a.label) {
|
|
13
|
-
case 0: return [4, client.send.apply(client, __spreadArray([new ListWorkloadSharesCommand(input)], __read(args)))];
|
|
13
|
+
case 0: return [4, client.send.apply(client, __spreadArray([new ListWorkloadSharesCommand(input)], __read(args), false))];
|
|
14
14
|
case 1: return [2, _a.sent()];
|
|
15
15
|
}
|
|
16
16
|
});
|
|
@@ -24,7 +24,7 @@ var makePagedRequest = function (client, input) {
|
|
|
24
24
|
return __awaiter(void 0, void 0, void 0, function () {
|
|
25
25
|
return __generator(this, function (_a) {
|
|
26
26
|
switch (_a.label) {
|
|
27
|
-
case 0: return [4, client.listWorkloadShares.apply(client, __spreadArray([input], __read(args)))];
|
|
27
|
+
case 0: return [4, client.listWorkloadShares.apply(client, __spreadArray([input], __read(args), false))];
|
|
28
28
|
case 1: return [2, _a.sent()];
|
|
29
29
|
}
|
|
30
30
|
});
|
|
@@ -48,13 +48,13 @@ export function paginateListWorkloadShares(config, input) {
|
|
|
48
48
|
input.NextToken = token;
|
|
49
49
|
input["MaxResults"] = config.pageSize;
|
|
50
50
|
if (!(config.client instanceof WellArchitected)) return [3, 3];
|
|
51
|
-
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
|
|
51
|
+
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
52
52
|
case 2:
|
|
53
53
|
page = _a.sent();
|
|
54
54
|
return [3, 6];
|
|
55
55
|
case 3:
|
|
56
56
|
if (!(config.client instanceof WellArchitectedClient)) return [3, 5];
|
|
57
|
-
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
|
|
57
|
+
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
58
58
|
case 4:
|
|
59
59
|
page = _a.sent();
|
|
60
60
|
return [3, 6];
|
|
@@ -10,7 +10,7 @@ var makePagedClientRequest = function (client, input) {
|
|
|
10
10
|
return __awaiter(void 0, void 0, void 0, function () {
|
|
11
11
|
return __generator(this, function (_a) {
|
|
12
12
|
switch (_a.label) {
|
|
13
|
-
case 0: return [4, client.send.apply(client, __spreadArray([new ListWorkloadsCommand(input)], __read(args)))];
|
|
13
|
+
case 0: return [4, client.send.apply(client, __spreadArray([new ListWorkloadsCommand(input)], __read(args), false))];
|
|
14
14
|
case 1: return [2, _a.sent()];
|
|
15
15
|
}
|
|
16
16
|
});
|
|
@@ -24,7 +24,7 @@ var makePagedRequest = function (client, input) {
|
|
|
24
24
|
return __awaiter(void 0, void 0, void 0, function () {
|
|
25
25
|
return __generator(this, function (_a) {
|
|
26
26
|
switch (_a.label) {
|
|
27
|
-
case 0: return [4, client.listWorkloads.apply(client, __spreadArray([input], __read(args)))];
|
|
27
|
+
case 0: return [4, client.listWorkloads.apply(client, __spreadArray([input], __read(args), false))];
|
|
28
28
|
case 1: return [2, _a.sent()];
|
|
29
29
|
}
|
|
30
30
|
});
|
|
@@ -48,13 +48,13 @@ export function paginateListWorkloads(config, input) {
|
|
|
48
48
|
input.NextToken = token;
|
|
49
49
|
input["MaxResults"] = config.pageSize;
|
|
50
50
|
if (!(config.client instanceof WellArchitected)) return [3, 3];
|
|
51
|
-
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
|
|
51
|
+
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
52
52
|
case 2:
|
|
53
53
|
page = _a.sent();
|
|
54
54
|
return [3, 6];
|
|
55
55
|
case 3:
|
|
56
56
|
if (!(config.client instanceof WellArchitectedClient)) return [3, 5];
|
|
57
|
-
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
|
|
57
|
+
return [4, __await(makePagedClientRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments), false)))];
|
|
58
58
|
case 4:
|
|
59
59
|
page = _a.sent();
|
|
60
60
|
return [3, 6];
|
|
@@ -14,7 +14,7 @@ export var serializeAws_restJson1AssociateLensesCommand = function (input, conte
|
|
|
14
14
|
headers = {
|
|
15
15
|
"content-type": "application/json",
|
|
16
16
|
};
|
|
17
|
-
resolvedPath = ""
|
|
17
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workloads/{WorkloadId}/associateLenses";
|
|
18
18
|
if (input.WorkloadId !== undefined) {
|
|
19
19
|
labelValue = input.WorkloadId;
|
|
20
20
|
if (labelValue.length <= 0) {
|
|
@@ -50,7 +50,7 @@ export var serializeAws_restJson1CreateLensShareCommand = function (input, conte
|
|
|
50
50
|
headers = {
|
|
51
51
|
"content-type": "application/json",
|
|
52
52
|
};
|
|
53
|
-
resolvedPath = ""
|
|
53
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/lenses/{LensAlias}/shares";
|
|
54
54
|
if (input.LensAlias !== undefined) {
|
|
55
55
|
labelValue = input.LensAlias;
|
|
56
56
|
if (labelValue.length <= 0) {
|
|
@@ -85,7 +85,7 @@ export var serializeAws_restJson1CreateLensVersionCommand = function (input, con
|
|
|
85
85
|
headers = {
|
|
86
86
|
"content-type": "application/json",
|
|
87
87
|
};
|
|
88
|
-
resolvedPath = ""
|
|
88
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/lenses/{LensAlias}/versions";
|
|
89
89
|
if (input.LensAlias !== undefined) {
|
|
90
90
|
labelValue = input.LensAlias;
|
|
91
91
|
if (labelValue.length <= 0) {
|
|
@@ -121,7 +121,7 @@ export var serializeAws_restJson1CreateMilestoneCommand = function (input, conte
|
|
|
121
121
|
headers = {
|
|
122
122
|
"content-type": "application/json",
|
|
123
123
|
};
|
|
124
|
-
resolvedPath = ""
|
|
124
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workloads/{WorkloadId}/milestones";
|
|
125
125
|
if (input.WorkloadId !== undefined) {
|
|
126
126
|
labelValue = input.WorkloadId;
|
|
127
127
|
if (labelValue.length <= 0) {
|
|
@@ -156,7 +156,7 @@ export var serializeAws_restJson1CreateWorkloadCommand = function (input, contex
|
|
|
156
156
|
headers = {
|
|
157
157
|
"content-type": "application/json",
|
|
158
158
|
};
|
|
159
|
-
resolvedPath = ""
|
|
159
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workloads";
|
|
160
160
|
body = JSON.stringify(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, (input.AccountIds !== undefined &&
|
|
161
161
|
input.AccountIds !== null && { AccountIds: serializeAws_restJson1WorkloadAccountIds(input.AccountIds, context) })), (input.ArchitecturalDesign !== undefined &&
|
|
162
162
|
input.ArchitecturalDesign !== null && { ArchitecturalDesign: input.ArchitecturalDesign })), (input.AwsRegions !== undefined &&
|
|
@@ -191,7 +191,7 @@ export var serializeAws_restJson1CreateWorkloadShareCommand = function (input, c
|
|
|
191
191
|
headers = {
|
|
192
192
|
"content-type": "application/json",
|
|
193
193
|
};
|
|
194
|
-
resolvedPath = ""
|
|
194
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workloads/{WorkloadId}/shares";
|
|
195
195
|
if (input.WorkloadId !== undefined) {
|
|
196
196
|
labelValue = input.WorkloadId;
|
|
197
197
|
if (labelValue.length <= 0) {
|
|
@@ -224,7 +224,7 @@ export var serializeAws_restJson1DeleteLensCommand = function (input, context) {
|
|
|
224
224
|
case 1:
|
|
225
225
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
226
226
|
headers = {};
|
|
227
|
-
resolvedPath = ""
|
|
227
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/lenses/{LensAlias}";
|
|
228
228
|
if (input.LensAlias !== undefined) {
|
|
229
229
|
labelValue = input.LensAlias;
|
|
230
230
|
if (labelValue.length <= 0) {
|
|
@@ -257,7 +257,7 @@ export var serializeAws_restJson1DeleteLensShareCommand = function (input, conte
|
|
|
257
257
|
case 1:
|
|
258
258
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
259
259
|
headers = {};
|
|
260
|
-
resolvedPath = ""
|
|
260
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/lenses/{LensAlias}/shares/{ShareId}";
|
|
261
261
|
if (input.ShareId !== undefined) {
|
|
262
262
|
labelValue = input.ShareId;
|
|
263
263
|
if (labelValue.length <= 0) {
|
|
@@ -300,7 +300,7 @@ export var serializeAws_restJson1DeleteWorkloadCommand = function (input, contex
|
|
|
300
300
|
case 1:
|
|
301
301
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
302
302
|
headers = {};
|
|
303
|
-
resolvedPath = ""
|
|
303
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workloads/{WorkloadId}";
|
|
304
304
|
if (input.WorkloadId !== undefined) {
|
|
305
305
|
labelValue = input.WorkloadId;
|
|
306
306
|
if (labelValue.length <= 0) {
|
|
@@ -333,7 +333,7 @@ export var serializeAws_restJson1DeleteWorkloadShareCommand = function (input, c
|
|
|
333
333
|
case 1:
|
|
334
334
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
335
335
|
headers = {};
|
|
336
|
-
resolvedPath = ""
|
|
336
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workloads/{WorkloadId}/shares/{ShareId}";
|
|
337
337
|
if (input.ShareId !== undefined) {
|
|
338
338
|
labelValue = input.ShareId;
|
|
339
339
|
if (labelValue.length <= 0) {
|
|
@@ -378,7 +378,7 @@ export var serializeAws_restJson1DisassociateLensesCommand = function (input, co
|
|
|
378
378
|
headers = {
|
|
379
379
|
"content-type": "application/json",
|
|
380
380
|
};
|
|
381
|
-
resolvedPath = ""
|
|
381
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
382
382
|
"/workloads/{WorkloadId}/disassociateLenses";
|
|
383
383
|
if (input.WorkloadId !== undefined) {
|
|
384
384
|
labelValue = input.WorkloadId;
|
|
@@ -412,7 +412,7 @@ export var serializeAws_restJson1ExportLensCommand = function (input, context) {
|
|
|
412
412
|
case 1:
|
|
413
413
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
414
414
|
headers = {};
|
|
415
|
-
resolvedPath = ""
|
|
415
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/lenses/{LensAlias}/export";
|
|
416
416
|
if (input.LensAlias !== undefined) {
|
|
417
417
|
labelValue = input.LensAlias;
|
|
418
418
|
if (labelValue.length <= 0) {
|
|
@@ -445,7 +445,7 @@ export var serializeAws_restJson1GetAnswerCommand = function (input, context) {
|
|
|
445
445
|
case 1:
|
|
446
446
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
447
447
|
headers = {};
|
|
448
|
-
resolvedPath = ""
|
|
448
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
449
449
|
"/workloads/{WorkloadId}/lensReviews/{LensAlias}/answers/{QuestionId}";
|
|
450
450
|
if (input.WorkloadId !== undefined) {
|
|
451
451
|
labelValue = input.WorkloadId;
|
|
@@ -499,7 +499,7 @@ export var serializeAws_restJson1GetLensCommand = function (input, context) { re
|
|
|
499
499
|
case 1:
|
|
500
500
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
501
501
|
headers = {};
|
|
502
|
-
resolvedPath = ""
|
|
502
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/lenses/{LensAlias}";
|
|
503
503
|
if (input.LensAlias !== undefined) {
|
|
504
504
|
labelValue = input.LensAlias;
|
|
505
505
|
if (labelValue.length <= 0) {
|
|
@@ -532,7 +532,7 @@ export var serializeAws_restJson1GetLensReviewCommand = function (input, context
|
|
|
532
532
|
case 1:
|
|
533
533
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
534
534
|
headers = {};
|
|
535
|
-
resolvedPath = ""
|
|
535
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
536
536
|
"/workloads/{WorkloadId}/lensReviews/{LensAlias}";
|
|
537
537
|
if (input.WorkloadId !== undefined) {
|
|
538
538
|
labelValue = input.WorkloadId;
|
|
@@ -576,7 +576,7 @@ export var serializeAws_restJson1GetLensReviewReportCommand = function (input, c
|
|
|
576
576
|
case 1:
|
|
577
577
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
578
578
|
headers = {};
|
|
579
|
-
resolvedPath = ""
|
|
579
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
580
580
|
"/workloads/{WorkloadId}/lensReviews/{LensAlias}/report";
|
|
581
581
|
if (input.WorkloadId !== undefined) {
|
|
582
582
|
labelValue = input.WorkloadId;
|
|
@@ -620,7 +620,7 @@ export var serializeAws_restJson1GetLensVersionDifferenceCommand = function (inp
|
|
|
620
620
|
case 1:
|
|
621
621
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
622
622
|
headers = {};
|
|
623
|
-
resolvedPath = ""
|
|
623
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/lenses/{LensAlias}/versionDifference";
|
|
624
624
|
if (input.LensAlias !== undefined) {
|
|
625
625
|
labelValue = input.LensAlias;
|
|
626
626
|
if (labelValue.length <= 0) {
|
|
@@ -653,7 +653,7 @@ export var serializeAws_restJson1GetMilestoneCommand = function (input, context)
|
|
|
653
653
|
case 1:
|
|
654
654
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
655
655
|
headers = {};
|
|
656
|
-
resolvedPath = ""
|
|
656
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
657
657
|
"/workloads/{WorkloadId}/milestones/{MilestoneNumber}";
|
|
658
658
|
if (input.WorkloadId !== undefined) {
|
|
659
659
|
labelValue = input.WorkloadId;
|
|
@@ -695,7 +695,7 @@ export var serializeAws_restJson1GetWorkloadCommand = function (input, context)
|
|
|
695
695
|
case 1:
|
|
696
696
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
697
697
|
headers = {};
|
|
698
|
-
resolvedPath = ""
|
|
698
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workloads/{WorkloadId}";
|
|
699
699
|
if (input.WorkloadId !== undefined) {
|
|
700
700
|
labelValue = input.WorkloadId;
|
|
701
701
|
if (labelValue.length <= 0) {
|
|
@@ -729,7 +729,7 @@ export var serializeAws_restJson1ImportLensCommand = function (input, context) {
|
|
|
729
729
|
headers = {
|
|
730
730
|
"content-type": "application/json",
|
|
731
731
|
};
|
|
732
|
-
resolvedPath = ""
|
|
732
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/importLens";
|
|
733
733
|
body = JSON.stringify(__assign(__assign(__assign({ ClientRequestToken: (_c = input.ClientRequestToken) !== null && _c !== void 0 ? _c : generateIdempotencyToken() }, (input.JSONString !== undefined && input.JSONString !== null && { JSONString: input.JSONString })), (input.LensAlias !== undefined && input.LensAlias !== null && { LensAlias: input.LensAlias })), (input.Tags !== undefined && input.Tags !== null && { Tags: serializeAws_restJson1TagMap(input.Tags, context) })));
|
|
734
734
|
return [2, new __HttpRequest({
|
|
735
735
|
protocol: protocol,
|
|
@@ -751,7 +751,7 @@ export var serializeAws_restJson1ListAnswersCommand = function (input, context)
|
|
|
751
751
|
case 1:
|
|
752
752
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
753
753
|
headers = {};
|
|
754
|
-
resolvedPath = ""
|
|
754
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
755
755
|
"/workloads/{WorkloadId}/lensReviews/{LensAlias}/answers";
|
|
756
756
|
if (input.WorkloadId !== undefined) {
|
|
757
757
|
labelValue = input.WorkloadId;
|
|
@@ -795,7 +795,7 @@ export var serializeAws_restJson1ListLensesCommand = function (input, context) {
|
|
|
795
795
|
case 1:
|
|
796
796
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
797
797
|
headers = {};
|
|
798
|
-
resolvedPath = ""
|
|
798
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/lenses";
|
|
799
799
|
query = __assign(__assign(__assign(__assign(__assign({}, (input.NextToken !== undefined && { NextToken: input.NextToken })), (input.MaxResults !== undefined && { MaxResults: input.MaxResults.toString() })), (input.LensType !== undefined && { LensType: input.LensType })), (input.LensStatus !== undefined && { LensStatus: input.LensStatus })), (input.LensName !== undefined && { LensName: input.LensName }));
|
|
800
800
|
return [2, new __HttpRequest({
|
|
801
801
|
protocol: protocol,
|
|
@@ -818,7 +818,7 @@ export var serializeAws_restJson1ListLensReviewImprovementsCommand = function (i
|
|
|
818
818
|
case 1:
|
|
819
819
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
820
820
|
headers = {};
|
|
821
|
-
resolvedPath = ""
|
|
821
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
822
822
|
"/workloads/{WorkloadId}/lensReviews/{LensAlias}/improvements";
|
|
823
823
|
if (input.WorkloadId !== undefined) {
|
|
824
824
|
labelValue = input.WorkloadId;
|
|
@@ -862,7 +862,7 @@ export var serializeAws_restJson1ListLensReviewsCommand = function (input, conte
|
|
|
862
862
|
case 1:
|
|
863
863
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
864
864
|
headers = {};
|
|
865
|
-
resolvedPath = ""
|
|
865
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workloads/{WorkloadId}/lensReviews";
|
|
866
866
|
if (input.WorkloadId !== undefined) {
|
|
867
867
|
labelValue = input.WorkloadId;
|
|
868
868
|
if (labelValue.length <= 0) {
|
|
@@ -895,7 +895,7 @@ export var serializeAws_restJson1ListLensSharesCommand = function (input, contex
|
|
|
895
895
|
case 1:
|
|
896
896
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
897
897
|
headers = {};
|
|
898
|
-
resolvedPath = ""
|
|
898
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/lenses/{LensAlias}/shares";
|
|
899
899
|
if (input.LensAlias !== undefined) {
|
|
900
900
|
labelValue = input.LensAlias;
|
|
901
901
|
if (labelValue.length <= 0) {
|
|
@@ -930,7 +930,7 @@ export var serializeAws_restJson1ListMilestonesCommand = function (input, contex
|
|
|
930
930
|
headers = {
|
|
931
931
|
"content-type": "application/json",
|
|
932
932
|
};
|
|
933
|
-
resolvedPath = ""
|
|
933
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
934
934
|
"/workloads/{WorkloadId}/milestonesSummaries";
|
|
935
935
|
if (input.WorkloadId !== undefined) {
|
|
936
936
|
labelValue = input.WorkloadId;
|
|
@@ -965,7 +965,7 @@ export var serializeAws_restJson1ListNotificationsCommand = function (input, con
|
|
|
965
965
|
headers = {
|
|
966
966
|
"content-type": "application/json",
|
|
967
967
|
};
|
|
968
|
-
resolvedPath = ""
|
|
968
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/notifications";
|
|
969
969
|
body = JSON.stringify(__assign(__assign(__assign({}, (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken })), (input.WorkloadId !== undefined && input.WorkloadId !== null && { WorkloadId: input.WorkloadId })));
|
|
970
970
|
return [2, new __HttpRequest({
|
|
971
971
|
protocol: protocol,
|
|
@@ -987,7 +987,7 @@ export var serializeAws_restJson1ListShareInvitationsCommand = function (input,
|
|
|
987
987
|
case 1:
|
|
988
988
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
989
989
|
headers = {};
|
|
990
|
-
resolvedPath = ""
|
|
990
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/shareInvitations";
|
|
991
991
|
query = __assign(__assign(__assign(__assign(__assign({}, (input.WorkloadNamePrefix !== undefined && { WorkloadNamePrefix: input.WorkloadNamePrefix })), (input.LensNamePrefix !== undefined && { LensNamePrefix: input.LensNamePrefix })), (input.ShareResourceType !== undefined && { ShareResourceType: input.ShareResourceType })), (input.NextToken !== undefined && { NextToken: input.NextToken })), (input.MaxResults !== undefined && { MaxResults: input.MaxResults.toString() }));
|
|
992
992
|
return [2, new __HttpRequest({
|
|
993
993
|
protocol: protocol,
|
|
@@ -1010,7 +1010,7 @@ export var serializeAws_restJson1ListTagsForResourceCommand = function (input, c
|
|
|
1010
1010
|
case 1:
|
|
1011
1011
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
1012
1012
|
headers = {};
|
|
1013
|
-
resolvedPath = ""
|
|
1013
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/tags/{WorkloadArn}";
|
|
1014
1014
|
if (input.WorkloadArn !== undefined) {
|
|
1015
1015
|
labelValue = input.WorkloadArn;
|
|
1016
1016
|
if (labelValue.length <= 0) {
|
|
@@ -1043,7 +1043,7 @@ export var serializeAws_restJson1ListWorkloadsCommand = function (input, context
|
|
|
1043
1043
|
headers = {
|
|
1044
1044
|
"content-type": "application/json",
|
|
1045
1045
|
};
|
|
1046
|
-
resolvedPath = ""
|
|
1046
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workloadsSummaries";
|
|
1047
1047
|
body = JSON.stringify(__assign(__assign(__assign({}, (input.MaxResults !== undefined && input.MaxResults !== null && { MaxResults: input.MaxResults })), (input.NextToken !== undefined && input.NextToken !== null && { NextToken: input.NextToken })), (input.WorkloadNamePrefix !== undefined &&
|
|
1048
1048
|
input.WorkloadNamePrefix !== null && { WorkloadNamePrefix: input.WorkloadNamePrefix })));
|
|
1049
1049
|
return [2, new __HttpRequest({
|
|
@@ -1066,7 +1066,7 @@ export var serializeAws_restJson1ListWorkloadSharesCommand = function (input, co
|
|
|
1066
1066
|
case 1:
|
|
1067
1067
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
1068
1068
|
headers = {};
|
|
1069
|
-
resolvedPath = ""
|
|
1069
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workloads/{WorkloadId}/shares";
|
|
1070
1070
|
if (input.WorkloadId !== undefined) {
|
|
1071
1071
|
labelValue = input.WorkloadId;
|
|
1072
1072
|
if (labelValue.length <= 0) {
|
|
@@ -1101,7 +1101,7 @@ export var serializeAws_restJson1TagResourceCommand = function (input, context)
|
|
|
1101
1101
|
headers = {
|
|
1102
1102
|
"content-type": "application/json",
|
|
1103
1103
|
};
|
|
1104
|
-
resolvedPath = ""
|
|
1104
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/tags/{WorkloadArn}";
|
|
1105
1105
|
if (input.WorkloadArn !== undefined) {
|
|
1106
1106
|
labelValue = input.WorkloadArn;
|
|
1107
1107
|
if (labelValue.length <= 0) {
|
|
@@ -1133,7 +1133,7 @@ export var serializeAws_restJson1UntagResourceCommand = function (input, context
|
|
|
1133
1133
|
case 1:
|
|
1134
1134
|
_a = _c.sent(), hostname = _a.hostname, _b = _a.protocol, protocol = _b === void 0 ? "https" : _b, port = _a.port, basePath = _a.path;
|
|
1135
1135
|
headers = {};
|
|
1136
|
-
resolvedPath = ""
|
|
1136
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/tags/{WorkloadArn}";
|
|
1137
1137
|
if (input.WorkloadArn !== undefined) {
|
|
1138
1138
|
labelValue = input.WorkloadArn;
|
|
1139
1139
|
if (labelValue.length <= 0) {
|
|
@@ -1168,7 +1168,7 @@ export var serializeAws_restJson1UpdateAnswerCommand = function (input, context)
|
|
|
1168
1168
|
headers = {
|
|
1169
1169
|
"content-type": "application/json",
|
|
1170
1170
|
};
|
|
1171
|
-
resolvedPath = ""
|
|
1171
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
1172
1172
|
"/workloads/{WorkloadId}/lensReviews/{LensAlias}/answers/{QuestionId}";
|
|
1173
1173
|
if (input.WorkloadId !== undefined) {
|
|
1174
1174
|
labelValue = input.WorkloadId;
|
|
@@ -1229,7 +1229,7 @@ export var serializeAws_restJson1UpdateLensReviewCommand = function (input, cont
|
|
|
1229
1229
|
headers = {
|
|
1230
1230
|
"content-type": "application/json",
|
|
1231
1231
|
};
|
|
1232
|
-
resolvedPath = ""
|
|
1232
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
1233
1233
|
"/workloads/{WorkloadId}/lensReviews/{LensAlias}";
|
|
1234
1234
|
if (input.WorkloadId !== undefined) {
|
|
1235
1235
|
labelValue = input.WorkloadId;
|
|
@@ -1275,7 +1275,7 @@ export var serializeAws_restJson1UpdateShareInvitationCommand = function (input,
|
|
|
1275
1275
|
headers = {
|
|
1276
1276
|
"content-type": "application/json",
|
|
1277
1277
|
};
|
|
1278
|
-
resolvedPath = ""
|
|
1278
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/shareInvitations/{ShareInvitationId}";
|
|
1279
1279
|
if (input.ShareInvitationId !== undefined) {
|
|
1280
1280
|
labelValue = input.ShareInvitationId;
|
|
1281
1281
|
if (labelValue.length <= 0) {
|
|
@@ -1310,7 +1310,7 @@ export var serializeAws_restJson1UpdateWorkloadCommand = function (input, contex
|
|
|
1310
1310
|
headers = {
|
|
1311
1311
|
"content-type": "application/json",
|
|
1312
1312
|
};
|
|
1313
|
-
resolvedPath = ""
|
|
1313
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workloads/{WorkloadId}";
|
|
1314
1314
|
if (input.WorkloadId !== undefined) {
|
|
1315
1315
|
labelValue = input.WorkloadId;
|
|
1316
1316
|
if (labelValue.length <= 0) {
|
|
@@ -1357,7 +1357,7 @@ export var serializeAws_restJson1UpdateWorkloadShareCommand = function (input, c
|
|
|
1357
1357
|
headers = {
|
|
1358
1358
|
"content-type": "application/json",
|
|
1359
1359
|
};
|
|
1360
|
-
resolvedPath = ""
|
|
1360
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") + "/workloads/{WorkloadId}/shares/{ShareId}";
|
|
1361
1361
|
if (input.ShareId !== undefined) {
|
|
1362
1362
|
labelValue = input.ShareId;
|
|
1363
1363
|
if (labelValue.length <= 0) {
|
|
@@ -1402,7 +1402,7 @@ export var serializeAws_restJson1UpgradeLensReviewCommand = function (input, con
|
|
|
1402
1402
|
headers = {
|
|
1403
1403
|
"content-type": "application/json",
|
|
1404
1404
|
};
|
|
1405
|
-
resolvedPath = ""
|
|
1405
|
+
resolvedPath = "".concat((basePath === null || basePath === void 0 ? void 0 : basePath.endsWith("/")) ? basePath.slice(0, -1) : basePath || "") +
|
|
1406
1406
|
"/workloads/{WorkloadId}/lensReviews/{LensAlias}/upgrade";
|
|
1407
1407
|
if (input.WorkloadId !== undefined) {
|
|
1408
1408
|
labelValue = input.WorkloadId;
|
|
@@ -21,11 +21,11 @@ export declare const getRuntimeConfig: (config: WellArchitectedClientConfig) =>
|
|
|
21
21
|
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
22
22
|
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
23
23
|
serviceId: string;
|
|
24
|
-
region: string | import("@aws-sdk/types").Provider<
|
|
24
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
25
25
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
26
26
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
27
27
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
28
|
-
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode
|
|
28
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
29
29
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
30
30
|
tls?: boolean | undefined;
|
|
31
31
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
@@ -19,11 +19,11 @@ export declare const getRuntimeConfig: (config: WellArchitectedClientConfig) =>
|
|
|
19
19
|
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
20
20
|
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
21
21
|
serviceId: string;
|
|
22
|
-
region: string | import("@aws-sdk/types").Provider<
|
|
22
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
23
23
|
credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
24
24
|
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
25
25
|
defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
|
|
26
|
-
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode
|
|
26
|
+
defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
|
|
27
27
|
endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
|
|
28
28
|
tls?: boolean | undefined;
|
|
29
29
|
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|