@aws-sdk/client-wellarchitected 3.183.0 → 3.185.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/protocols/Aws_restJson1.js +2 -2
- package/dist-es/WellArchitected.js +169 -162
- package/dist-es/WellArchitectedClient.js +28 -22
- package/dist-es/commands/AssociateLensesCommand.js +29 -22
- package/dist-es/commands/CreateLensShareCommand.js +28 -21
- package/dist-es/commands/CreateLensVersionCommand.js +28 -21
- package/dist-es/commands/CreateMilestoneCommand.js +28 -21
- package/dist-es/commands/CreateWorkloadCommand.js +28 -21
- package/dist-es/commands/CreateWorkloadShareCommand.js +28 -21
- package/dist-es/commands/DeleteLensCommand.js +29 -22
- package/dist-es/commands/DeleteLensShareCommand.js +29 -22
- package/dist-es/commands/DeleteWorkloadCommand.js +29 -22
- package/dist-es/commands/DeleteWorkloadShareCommand.js +29 -22
- package/dist-es/commands/DisassociateLensesCommand.js +29 -22
- package/dist-es/commands/ExportLensCommand.js +28 -21
- package/dist-es/commands/GetAnswerCommand.js +28 -21
- package/dist-es/commands/GetLensCommand.js +28 -21
- package/dist-es/commands/GetLensReviewCommand.js +28 -21
- package/dist-es/commands/GetLensReviewReportCommand.js +28 -21
- package/dist-es/commands/GetLensVersionDifferenceCommand.js +28 -21
- package/dist-es/commands/GetMilestoneCommand.js +28 -21
- package/dist-es/commands/GetWorkloadCommand.js +28 -21
- package/dist-es/commands/ImportLensCommand.js +28 -21
- package/dist-es/commands/ListAnswersCommand.js +28 -21
- package/dist-es/commands/ListLensReviewImprovementsCommand.js +28 -21
- package/dist-es/commands/ListLensReviewsCommand.js +28 -21
- package/dist-es/commands/ListLensSharesCommand.js +28 -21
- package/dist-es/commands/ListLensesCommand.js +28 -21
- package/dist-es/commands/ListMilestonesCommand.js +28 -21
- package/dist-es/commands/ListNotificationsCommand.js +28 -21
- package/dist-es/commands/ListShareInvitationsCommand.js +28 -21
- package/dist-es/commands/ListTagsForResourceCommand.js +28 -21
- package/dist-es/commands/ListWorkloadSharesCommand.js +28 -21
- package/dist-es/commands/ListWorkloadsCommand.js +28 -21
- package/dist-es/commands/TagResourceCommand.js +28 -21
- package/dist-es/commands/UntagResourceCommand.js +28 -21
- package/dist-es/commands/UpdateAnswerCommand.js +28 -21
- package/dist-es/commands/UpdateGlobalSettingsCommand.js +29 -22
- package/dist-es/commands/UpdateLensReviewCommand.js +28 -21
- package/dist-es/commands/UpdateShareInvitationCommand.js +28 -21
- package/dist-es/commands/UpdateWorkloadCommand.js +28 -21
- package/dist-es/commands/UpdateWorkloadShareCommand.js +28 -21
- package/dist-es/commands/UpgradeLensReviewCommand.js +29 -22
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/WellArchitectedServiceException.js +10 -5
- package/dist-es/models/models_0.js +200 -405
- package/dist-es/pagination/ListAnswersPaginator.js +68 -25
- package/dist-es/pagination/ListLensReviewImprovementsPaginator.js +68 -25
- package/dist-es/pagination/ListLensReviewsPaginator.js +68 -25
- package/dist-es/pagination/ListLensSharesPaginator.js +68 -25
- package/dist-es/pagination/ListLensesPaginator.js +68 -25
- package/dist-es/pagination/ListMilestonesPaginator.js +68 -25
- package/dist-es/pagination/ListNotificationsPaginator.js +68 -25
- package/dist-es/pagination/ListShareInvitationsPaginator.js +68 -25
- package/dist-es/pagination/ListWorkloadSharesPaginator.js +68 -25
- package/dist-es/pagination/ListWorkloadsPaginator.js +68 -25
- package/dist-es/protocols/Aws_restJson1.js +4391 -3150
- package/dist-es/runtimeConfig.browser.js +12 -26
- package/dist-es/runtimeConfig.js +12 -30
- package/dist-es/runtimeConfig.native.js +5 -8
- package/dist-es/runtimeConfig.shared.js +11 -8
- package/package.json +5 -5
|
@@ -1,17 +1,18 @@
|
|
|
1
|
+
import { __assign, __extends } from "tslib";
|
|
1
2
|
import { WellArchitectedServiceException as __BaseException } from "./WellArchitectedServiceException";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
-
this.Message = opts.Message;
|
|
3
|
+
var AccessDeniedException = (function (_super) {
|
|
4
|
+
__extends(AccessDeniedException, _super);
|
|
5
|
+
function AccessDeniedException(opts) {
|
|
6
|
+
var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
|
|
7
|
+
_this.name = "AccessDeniedException";
|
|
8
|
+
_this.$fault = "client";
|
|
9
|
+
Object.setPrototypeOf(_this, AccessDeniedException.prototype);
|
|
10
|
+
_this.Message = opts.Message;
|
|
11
|
+
return _this;
|
|
13
12
|
}
|
|
14
|
-
|
|
13
|
+
return AccessDeniedException;
|
|
14
|
+
}(__BaseException));
|
|
15
|
+
export { AccessDeniedException };
|
|
15
16
|
export var AdditionalResourceType;
|
|
16
17
|
(function (AdditionalResourceType) {
|
|
17
18
|
AdditionalResourceType["HELPFUL_RESOURCE"] = "HELPFUL_RESOURCE";
|
|
@@ -47,64 +48,64 @@ export var Risk;
|
|
|
47
48
|
Risk["NOT_APPLICABLE"] = "NOT_APPLICABLE";
|
|
48
49
|
Risk["UNANSWERED"] = "UNANSWERED";
|
|
49
50
|
})(Risk || (Risk = {}));
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
this.ResourceId = opts.ResourceId;
|
|
62
|
-
this.ResourceType = opts.ResourceType;
|
|
51
|
+
var ConflictException = (function (_super) {
|
|
52
|
+
__extends(ConflictException, _super);
|
|
53
|
+
function ConflictException(opts) {
|
|
54
|
+
var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
|
|
55
|
+
_this.name = "ConflictException";
|
|
56
|
+
_this.$fault = "client";
|
|
57
|
+
Object.setPrototypeOf(_this, ConflictException.prototype);
|
|
58
|
+
_this.Message = opts.Message;
|
|
59
|
+
_this.ResourceId = opts.ResourceId;
|
|
60
|
+
_this.ResourceType = opts.ResourceType;
|
|
61
|
+
return _this;
|
|
63
62
|
}
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
63
|
+
return ConflictException;
|
|
64
|
+
}(__BaseException));
|
|
65
|
+
export { ConflictException };
|
|
66
|
+
var InternalServerException = (function (_super) {
|
|
67
|
+
__extends(InternalServerException, _super);
|
|
68
|
+
function InternalServerException(opts) {
|
|
69
|
+
var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
|
|
70
|
+
_this.name = "InternalServerException";
|
|
71
|
+
_this.$fault = "server";
|
|
72
|
+
Object.setPrototypeOf(_this, InternalServerException.prototype);
|
|
73
|
+
_this.Message = opts.Message;
|
|
74
|
+
return _this;
|
|
76
75
|
}
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
76
|
+
return InternalServerException;
|
|
77
|
+
}(__BaseException));
|
|
78
|
+
export { InternalServerException };
|
|
79
|
+
var ResourceNotFoundException = (function (_super) {
|
|
80
|
+
__extends(ResourceNotFoundException, _super);
|
|
81
|
+
function ResourceNotFoundException(opts) {
|
|
82
|
+
var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
|
|
83
|
+
_this.name = "ResourceNotFoundException";
|
|
84
|
+
_this.$fault = "client";
|
|
85
|
+
Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
|
|
86
|
+
_this.Message = opts.Message;
|
|
87
|
+
_this.ResourceId = opts.ResourceId;
|
|
88
|
+
_this.ResourceType = opts.ResourceType;
|
|
89
|
+
return _this;
|
|
91
90
|
}
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
91
|
+
return ResourceNotFoundException;
|
|
92
|
+
}(__BaseException));
|
|
93
|
+
export { ResourceNotFoundException };
|
|
94
|
+
var ThrottlingException = (function (_super) {
|
|
95
|
+
__extends(ThrottlingException, _super);
|
|
96
|
+
function ThrottlingException(opts) {
|
|
97
|
+
var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
|
|
98
|
+
_this.name = "ThrottlingException";
|
|
99
|
+
_this.$fault = "client";
|
|
100
|
+
Object.setPrototypeOf(_this, ThrottlingException.prototype);
|
|
101
|
+
_this.Message = opts.Message;
|
|
102
|
+
_this.QuotaCode = opts.QuotaCode;
|
|
103
|
+
_this.ServiceCode = opts.ServiceCode;
|
|
104
|
+
return _this;
|
|
106
105
|
}
|
|
107
|
-
|
|
106
|
+
return ThrottlingException;
|
|
107
|
+
}(__BaseException));
|
|
108
|
+
export { ThrottlingException };
|
|
108
109
|
export var ValidationExceptionReason;
|
|
109
110
|
(function (ValidationExceptionReason) {
|
|
110
111
|
ValidationExceptionReason["CANNOT_PARSE"] = "CANNOT_PARSE";
|
|
@@ -112,38 +113,38 @@ export var ValidationExceptionReason;
|
|
|
112
113
|
ValidationExceptionReason["OTHER"] = "OTHER";
|
|
113
114
|
ValidationExceptionReason["UNKNOWN_OPERATION"] = "UNKNOWN_OPERATION";
|
|
114
115
|
})(ValidationExceptionReason || (ValidationExceptionReason = {}));
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
this.Reason = opts.Reason;
|
|
127
|
-
this.Fields = opts.Fields;
|
|
116
|
+
var ValidationException = (function (_super) {
|
|
117
|
+
__extends(ValidationException, _super);
|
|
118
|
+
function ValidationException(opts) {
|
|
119
|
+
var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
|
|
120
|
+
_this.name = "ValidationException";
|
|
121
|
+
_this.$fault = "client";
|
|
122
|
+
Object.setPrototypeOf(_this, ValidationException.prototype);
|
|
123
|
+
_this.Message = opts.Message;
|
|
124
|
+
_this.Reason = opts.Reason;
|
|
125
|
+
_this.Fields = opts.Fields;
|
|
126
|
+
return _this;
|
|
128
127
|
}
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
128
|
+
return ValidationException;
|
|
129
|
+
}(__BaseException));
|
|
130
|
+
export { ValidationException };
|
|
131
|
+
var ServiceQuotaExceededException = (function (_super) {
|
|
132
|
+
__extends(ServiceQuotaExceededException, _super);
|
|
133
|
+
function ServiceQuotaExceededException(opts) {
|
|
134
|
+
var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
|
|
135
|
+
_this.name = "ServiceQuotaExceededException";
|
|
136
|
+
_this.$fault = "client";
|
|
137
|
+
Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
|
|
138
|
+
_this.Message = opts.Message;
|
|
139
|
+
_this.ResourceId = opts.ResourceId;
|
|
140
|
+
_this.ResourceType = opts.ResourceType;
|
|
141
|
+
_this.QuotaCode = opts.QuotaCode;
|
|
142
|
+
_this.ServiceCode = opts.ServiceCode;
|
|
143
|
+
return _this;
|
|
145
144
|
}
|
|
146
|
-
|
|
145
|
+
return ServiceQuotaExceededException;
|
|
146
|
+
}(__BaseException));
|
|
147
|
+
export { ServiceQuotaExceededException };
|
|
147
148
|
export var WorkloadEnvironment;
|
|
148
149
|
(function (WorkloadEnvironment) {
|
|
149
150
|
WorkloadEnvironment["PREPRODUCTION"] = "PREPRODUCTION";
|
|
@@ -225,312 +226,106 @@ export var ShareInvitationAction;
|
|
|
225
226
|
ShareInvitationAction["ACCEPT"] = "ACCEPT";
|
|
226
227
|
ShareInvitationAction["REJECT"] = "REJECT";
|
|
227
228
|
})(ShareInvitationAction || (ShareInvitationAction = {}));
|
|
228
|
-
export
|
|
229
|
-
|
|
230
|
-
});
|
|
231
|
-
export
|
|
232
|
-
|
|
233
|
-
});
|
|
234
|
-
export
|
|
235
|
-
|
|
236
|
-
});
|
|
237
|
-
export
|
|
238
|
-
|
|
239
|
-
});
|
|
240
|
-
export
|
|
241
|
-
|
|
242
|
-
});
|
|
243
|
-
export
|
|
244
|
-
|
|
245
|
-
});
|
|
246
|
-
export
|
|
247
|
-
|
|
248
|
-
});
|
|
249
|
-
export
|
|
250
|
-
|
|
251
|
-
});
|
|
252
|
-
export
|
|
253
|
-
|
|
254
|
-
});
|
|
255
|
-
export
|
|
256
|
-
|
|
257
|
-
});
|
|
258
|
-
export
|
|
259
|
-
|
|
260
|
-
});
|
|
261
|
-
export
|
|
262
|
-
|
|
263
|
-
});
|
|
264
|
-
export
|
|
265
|
-
|
|
266
|
-
});
|
|
267
|
-
export
|
|
268
|
-
|
|
269
|
-
});
|
|
270
|
-
export
|
|
271
|
-
|
|
272
|
-
});
|
|
273
|
-
export
|
|
274
|
-
|
|
275
|
-
});
|
|
276
|
-
export
|
|
277
|
-
|
|
278
|
-
});
|
|
279
|
-
export
|
|
280
|
-
|
|
281
|
-
});
|
|
282
|
-
export
|
|
283
|
-
|
|
284
|
-
});
|
|
285
|
-
export
|
|
286
|
-
|
|
287
|
-
});
|
|
288
|
-
export
|
|
289
|
-
|
|
290
|
-
});
|
|
291
|
-
export
|
|
292
|
-
|
|
293
|
-
});
|
|
294
|
-
export
|
|
295
|
-
|
|
296
|
-
});
|
|
297
|
-
export
|
|
298
|
-
|
|
299
|
-
});
|
|
300
|
-
export
|
|
301
|
-
|
|
302
|
-
});
|
|
303
|
-
export
|
|
304
|
-
|
|
305
|
-
});
|
|
306
|
-
export
|
|
307
|
-
|
|
308
|
-
});
|
|
309
|
-
export
|
|
310
|
-
|
|
311
|
-
});
|
|
312
|
-
export
|
|
313
|
-
|
|
314
|
-
});
|
|
315
|
-
export
|
|
316
|
-
|
|
317
|
-
});
|
|
318
|
-
export
|
|
319
|
-
|
|
320
|
-
});
|
|
321
|
-
export
|
|
322
|
-
|
|
323
|
-
});
|
|
324
|
-
export
|
|
325
|
-
|
|
326
|
-
});
|
|
327
|
-
export
|
|
328
|
-
|
|
329
|
-
});
|
|
330
|
-
export
|
|
331
|
-
...obj,
|
|
332
|
-
});
|
|
333
|
-
export const LensReviewFilterSensitiveLog = (obj) => ({
|
|
334
|
-
...obj,
|
|
335
|
-
});
|
|
336
|
-
export const GetLensReviewOutputFilterSensitiveLog = (obj) => ({
|
|
337
|
-
...obj,
|
|
338
|
-
});
|
|
339
|
-
export const GetLensReviewReportInputFilterSensitiveLog = (obj) => ({
|
|
340
|
-
...obj,
|
|
341
|
-
});
|
|
342
|
-
export const LensReviewReportFilterSensitiveLog = (obj) => ({
|
|
343
|
-
...obj,
|
|
344
|
-
});
|
|
345
|
-
export const GetLensReviewReportOutputFilterSensitiveLog = (obj) => ({
|
|
346
|
-
...obj,
|
|
347
|
-
});
|
|
348
|
-
export const GetLensVersionDifferenceInputFilterSensitiveLog = (obj) => ({
|
|
349
|
-
...obj,
|
|
350
|
-
});
|
|
351
|
-
export const QuestionDifferenceFilterSensitiveLog = (obj) => ({
|
|
352
|
-
...obj,
|
|
353
|
-
});
|
|
354
|
-
export const PillarDifferenceFilterSensitiveLog = (obj) => ({
|
|
355
|
-
...obj,
|
|
356
|
-
});
|
|
357
|
-
export const VersionDifferencesFilterSensitiveLog = (obj) => ({
|
|
358
|
-
...obj,
|
|
359
|
-
});
|
|
360
|
-
export const GetLensVersionDifferenceOutputFilterSensitiveLog = (obj) => ({
|
|
361
|
-
...obj,
|
|
362
|
-
});
|
|
363
|
-
export const GetMilestoneInputFilterSensitiveLog = (obj) => ({
|
|
364
|
-
...obj,
|
|
365
|
-
});
|
|
366
|
-
export const WorkloadFilterSensitiveLog = (obj) => ({
|
|
367
|
-
...obj,
|
|
368
|
-
});
|
|
369
|
-
export const MilestoneFilterSensitiveLog = (obj) => ({
|
|
370
|
-
...obj,
|
|
371
|
-
});
|
|
372
|
-
export const GetMilestoneOutputFilterSensitiveLog = (obj) => ({
|
|
373
|
-
...obj,
|
|
374
|
-
});
|
|
375
|
-
export const GetWorkloadInputFilterSensitiveLog = (obj) => ({
|
|
376
|
-
...obj,
|
|
377
|
-
});
|
|
378
|
-
export const GetWorkloadOutputFilterSensitiveLog = (obj) => ({
|
|
379
|
-
...obj,
|
|
380
|
-
});
|
|
381
|
-
export const ImportLensInputFilterSensitiveLog = (obj) => ({
|
|
382
|
-
...obj,
|
|
383
|
-
});
|
|
384
|
-
export const ImportLensOutputFilterSensitiveLog = (obj) => ({
|
|
385
|
-
...obj,
|
|
386
|
-
});
|
|
387
|
-
export const ImprovementSummaryFilterSensitiveLog = (obj) => ({
|
|
388
|
-
...obj,
|
|
389
|
-
});
|
|
390
|
-
export const LensReviewSummaryFilterSensitiveLog = (obj) => ({
|
|
391
|
-
...obj,
|
|
392
|
-
});
|
|
393
|
-
export const LensShareSummaryFilterSensitiveLog = (obj) => ({
|
|
394
|
-
...obj,
|
|
395
|
-
});
|
|
396
|
-
export const LensSummaryFilterSensitiveLog = (obj) => ({
|
|
397
|
-
...obj,
|
|
398
|
-
});
|
|
399
|
-
export const LensUpgradeSummaryFilterSensitiveLog = (obj) => ({
|
|
400
|
-
...obj,
|
|
401
|
-
});
|
|
402
|
-
export const ListAnswersInputFilterSensitiveLog = (obj) => ({
|
|
403
|
-
...obj,
|
|
404
|
-
});
|
|
405
|
-
export const ListAnswersOutputFilterSensitiveLog = (obj) => ({
|
|
406
|
-
...obj,
|
|
407
|
-
});
|
|
408
|
-
export const ListLensesInputFilterSensitiveLog = (obj) => ({
|
|
409
|
-
...obj,
|
|
410
|
-
});
|
|
411
|
-
export const ListLensesOutputFilterSensitiveLog = (obj) => ({
|
|
412
|
-
...obj,
|
|
413
|
-
});
|
|
414
|
-
export const ListLensReviewImprovementsInputFilterSensitiveLog = (obj) => ({
|
|
415
|
-
...obj,
|
|
416
|
-
});
|
|
417
|
-
export const ListLensReviewImprovementsOutputFilterSensitiveLog = (obj) => ({
|
|
418
|
-
...obj,
|
|
419
|
-
});
|
|
420
|
-
export const ListLensReviewsInputFilterSensitiveLog = (obj) => ({
|
|
421
|
-
...obj,
|
|
422
|
-
});
|
|
423
|
-
export const ListLensReviewsOutputFilterSensitiveLog = (obj) => ({
|
|
424
|
-
...obj,
|
|
425
|
-
});
|
|
426
|
-
export const ListLensSharesInputFilterSensitiveLog = (obj) => ({
|
|
427
|
-
...obj,
|
|
428
|
-
});
|
|
429
|
-
export const ListLensSharesOutputFilterSensitiveLog = (obj) => ({
|
|
430
|
-
...obj,
|
|
431
|
-
});
|
|
432
|
-
export const ListMilestonesInputFilterSensitiveLog = (obj) => ({
|
|
433
|
-
...obj,
|
|
434
|
-
});
|
|
435
|
-
export const WorkloadSummaryFilterSensitiveLog = (obj) => ({
|
|
436
|
-
...obj,
|
|
437
|
-
});
|
|
438
|
-
export const MilestoneSummaryFilterSensitiveLog = (obj) => ({
|
|
439
|
-
...obj,
|
|
440
|
-
});
|
|
441
|
-
export const ListMilestonesOutputFilterSensitiveLog = (obj) => ({
|
|
442
|
-
...obj,
|
|
443
|
-
});
|
|
444
|
-
export const ListNotificationsInputFilterSensitiveLog = (obj) => ({
|
|
445
|
-
...obj,
|
|
446
|
-
});
|
|
447
|
-
export const NotificationSummaryFilterSensitiveLog = (obj) => ({
|
|
448
|
-
...obj,
|
|
449
|
-
});
|
|
450
|
-
export const ListNotificationsOutputFilterSensitiveLog = (obj) => ({
|
|
451
|
-
...obj,
|
|
452
|
-
});
|
|
453
|
-
export const ListShareInvitationsInputFilterSensitiveLog = (obj) => ({
|
|
454
|
-
...obj,
|
|
455
|
-
});
|
|
456
|
-
export const ShareInvitationSummaryFilterSensitiveLog = (obj) => ({
|
|
457
|
-
...obj,
|
|
458
|
-
});
|
|
459
|
-
export const ListShareInvitationsOutputFilterSensitiveLog = (obj) => ({
|
|
460
|
-
...obj,
|
|
461
|
-
});
|
|
462
|
-
export const ListTagsForResourceInputFilterSensitiveLog = (obj) => ({
|
|
463
|
-
...obj,
|
|
464
|
-
});
|
|
465
|
-
export const ListTagsForResourceOutputFilterSensitiveLog = (obj) => ({
|
|
466
|
-
...obj,
|
|
467
|
-
});
|
|
468
|
-
export const ListWorkloadsInputFilterSensitiveLog = (obj) => ({
|
|
469
|
-
...obj,
|
|
470
|
-
});
|
|
471
|
-
export const ListWorkloadsOutputFilterSensitiveLog = (obj) => ({
|
|
472
|
-
...obj,
|
|
473
|
-
});
|
|
474
|
-
export const ListWorkloadSharesInputFilterSensitiveLog = (obj) => ({
|
|
475
|
-
...obj,
|
|
476
|
-
});
|
|
477
|
-
export const WorkloadShareSummaryFilterSensitiveLog = (obj) => ({
|
|
478
|
-
...obj,
|
|
479
|
-
});
|
|
480
|
-
export const ListWorkloadSharesOutputFilterSensitiveLog = (obj) => ({
|
|
481
|
-
...obj,
|
|
482
|
-
});
|
|
483
|
-
export const ShareInvitationFilterSensitiveLog = (obj) => ({
|
|
484
|
-
...obj,
|
|
485
|
-
});
|
|
486
|
-
export const TagResourceInputFilterSensitiveLog = (obj) => ({
|
|
487
|
-
...obj,
|
|
488
|
-
});
|
|
489
|
-
export const TagResourceOutputFilterSensitiveLog = (obj) => ({
|
|
490
|
-
...obj,
|
|
491
|
-
});
|
|
492
|
-
export const UntagResourceInputFilterSensitiveLog = (obj) => ({
|
|
493
|
-
...obj,
|
|
494
|
-
});
|
|
495
|
-
export const UntagResourceOutputFilterSensitiveLog = (obj) => ({
|
|
496
|
-
...obj,
|
|
497
|
-
});
|
|
498
|
-
export const UpdateAnswerInputFilterSensitiveLog = (obj) => ({
|
|
499
|
-
...obj,
|
|
500
|
-
});
|
|
501
|
-
export const UpdateAnswerOutputFilterSensitiveLog = (obj) => ({
|
|
502
|
-
...obj,
|
|
503
|
-
});
|
|
504
|
-
export const UpdateGlobalSettingsInputFilterSensitiveLog = (obj) => ({
|
|
505
|
-
...obj,
|
|
506
|
-
});
|
|
507
|
-
export const UpdateLensReviewInputFilterSensitiveLog = (obj) => ({
|
|
508
|
-
...obj,
|
|
509
|
-
});
|
|
510
|
-
export const UpdateLensReviewOutputFilterSensitiveLog = (obj) => ({
|
|
511
|
-
...obj,
|
|
512
|
-
});
|
|
513
|
-
export const UpdateShareInvitationInputFilterSensitiveLog = (obj) => ({
|
|
514
|
-
...obj,
|
|
515
|
-
});
|
|
516
|
-
export const UpdateShareInvitationOutputFilterSensitiveLog = (obj) => ({
|
|
517
|
-
...obj,
|
|
518
|
-
});
|
|
519
|
-
export const UpdateWorkloadInputFilterSensitiveLog = (obj) => ({
|
|
520
|
-
...obj,
|
|
521
|
-
});
|
|
522
|
-
export const UpdateWorkloadOutputFilterSensitiveLog = (obj) => ({
|
|
523
|
-
...obj,
|
|
524
|
-
});
|
|
525
|
-
export const UpdateWorkloadShareInputFilterSensitiveLog = (obj) => ({
|
|
526
|
-
...obj,
|
|
527
|
-
});
|
|
528
|
-
export const WorkloadShareFilterSensitiveLog = (obj) => ({
|
|
529
|
-
...obj,
|
|
530
|
-
});
|
|
531
|
-
export const UpdateWorkloadShareOutputFilterSensitiveLog = (obj) => ({
|
|
532
|
-
...obj,
|
|
533
|
-
});
|
|
534
|
-
export const UpgradeLensReviewInputFilterSensitiveLog = (obj) => ({
|
|
535
|
-
...obj,
|
|
536
|
-
});
|
|
229
|
+
export var ChoiceContentFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
230
|
+
export var AdditionalResourcesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
231
|
+
export var ChoiceAnswerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
232
|
+
export var ChoiceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
233
|
+
export var AnswerFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
234
|
+
export var ChoiceAnswerSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
235
|
+
export var AnswerSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
236
|
+
export var AssociateLensesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
237
|
+
export var ValidationExceptionFieldFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
238
|
+
export var ChoiceImprovementPlanFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
239
|
+
export var ChoiceUpdateFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
240
|
+
export var CreateLensShareInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
241
|
+
export var CreateLensShareOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
242
|
+
export var CreateLensVersionInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
243
|
+
export var CreateLensVersionOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
244
|
+
export var CreateMilestoneInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
245
|
+
export var CreateMilestoneOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
246
|
+
export var CreateWorkloadInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
247
|
+
export var CreateWorkloadOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
248
|
+
export var CreateWorkloadShareInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
249
|
+
export var CreateWorkloadShareOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
250
|
+
export var DeleteLensInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
251
|
+
export var DeleteLensShareInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
252
|
+
export var DeleteWorkloadInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
253
|
+
export var DeleteWorkloadShareInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
254
|
+
export var DisassociateLensesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
255
|
+
export var ExportLensInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
256
|
+
export var ExportLensOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
257
|
+
export var GetAnswerInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
258
|
+
export var GetAnswerOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
259
|
+
export var GetLensInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
260
|
+
export var LensFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
261
|
+
export var GetLensOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
262
|
+
export var GetLensReviewInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
263
|
+
export var PillarReviewSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
264
|
+
export var LensReviewFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
265
|
+
export var GetLensReviewOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
266
|
+
export var GetLensReviewReportInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
267
|
+
export var LensReviewReportFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
268
|
+
export var GetLensReviewReportOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
269
|
+
export var GetLensVersionDifferenceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
270
|
+
export var QuestionDifferenceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
271
|
+
export var PillarDifferenceFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
272
|
+
export var VersionDifferencesFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
273
|
+
export var GetLensVersionDifferenceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
274
|
+
export var GetMilestoneInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
275
|
+
export var WorkloadFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
276
|
+
export var MilestoneFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
277
|
+
export var GetMilestoneOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
278
|
+
export var GetWorkloadInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
279
|
+
export var GetWorkloadOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
280
|
+
export var ImportLensInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
281
|
+
export var ImportLensOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
282
|
+
export var ImprovementSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
283
|
+
export var LensReviewSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
284
|
+
export var LensShareSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
285
|
+
export var LensSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
286
|
+
export var LensUpgradeSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
287
|
+
export var ListAnswersInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
288
|
+
export var ListAnswersOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
289
|
+
export var ListLensesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
290
|
+
export var ListLensesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
291
|
+
export var ListLensReviewImprovementsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
292
|
+
export var ListLensReviewImprovementsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
293
|
+
export var ListLensReviewsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
294
|
+
export var ListLensReviewsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
295
|
+
export var ListLensSharesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
296
|
+
export var ListLensSharesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
297
|
+
export var ListMilestonesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
298
|
+
export var WorkloadSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
299
|
+
export var MilestoneSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
300
|
+
export var ListMilestonesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
301
|
+
export var ListNotificationsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
302
|
+
export var NotificationSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
303
|
+
export var ListNotificationsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
304
|
+
export var ListShareInvitationsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
305
|
+
export var ShareInvitationSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
306
|
+
export var ListShareInvitationsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
307
|
+
export var ListTagsForResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
308
|
+
export var ListTagsForResourceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
309
|
+
export var ListWorkloadsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
310
|
+
export var ListWorkloadsOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
311
|
+
export var ListWorkloadSharesInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
312
|
+
export var WorkloadShareSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
313
|
+
export var ListWorkloadSharesOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
314
|
+
export var ShareInvitationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
315
|
+
export var TagResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
316
|
+
export var TagResourceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
317
|
+
export var UntagResourceInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
318
|
+
export var UntagResourceOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
319
|
+
export var UpdateAnswerInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
320
|
+
export var UpdateAnswerOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
321
|
+
export var UpdateGlobalSettingsInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
322
|
+
export var UpdateLensReviewInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
323
|
+
export var UpdateLensReviewOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
324
|
+
export var UpdateShareInvitationInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
325
|
+
export var UpdateShareInvitationOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
326
|
+
export var UpdateWorkloadInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
327
|
+
export var UpdateWorkloadOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
328
|
+
export var UpdateWorkloadShareInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
329
|
+
export var WorkloadShareFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
330
|
+
export var UpdateWorkloadShareOutputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
331
|
+
export var UpgradeLensReviewInputFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|