@aws-sdk/client-wellarchitected 3.1074.0 → 3.1076.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/dist-cjs/index.js CHANGED
@@ -1,21 +1,57 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultWellArchitectedHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { AssociateLenses$, AssociateProfiles$, CreateLensShare$, CreateLensVersion$, CreateMilestone$, CreateProfile$, CreateProfileShare$, CreateReviewTemplate$, CreateTemplateShare$, CreateWorkload$, CreateWorkloadShare$, DeleteLens$, DeleteLensShare$, DeleteProfile$, DeleteProfileShare$, DeleteReviewTemplate$, DeleteTemplateShare$, DeleteWorkload$, DeleteWorkloadShare$, DisassociateLenses$, DisassociateProfiles$, ExportLens$, GetAnswer$, GetConsolidatedReport$, GetGlobalSettings$, GetLens$, GetLensReview$, GetLensReviewReport$, GetLensVersionDifference$, GetMilestone$, GetProfile$, GetProfileTemplate$, GetReviewTemplateAnswer$, GetReviewTemplate$, GetReviewTemplateLensReview$, GetWorkload$, ImportLens$, ListAnswers$, ListCheckDetails$, ListCheckSummaries$, ListLenses$, ListLensReviewImprovements$, ListLensReviews$, ListLensShares$, ListMilestones$, ListNotifications$, ListProfileNotifications$, ListProfiles$, ListProfileShares$, ListReviewTemplateAnswers$, ListReviewTemplates$, ListShareInvitations$, ListTagsForResource$, ListTemplateShares$, ListWorkloads$, ListWorkloadShares$, TagResource$, UntagResource$, UpdateAnswer$, UpdateGlobalSettings$, UpdateIntegration$, UpdateLensReview$, UpdateProfile$, UpdateReviewTemplateAnswer$, UpdateReviewTemplate$, UpdateReviewTemplateLensReview$, UpdateShareInvitation$, UpdateWorkload$, UpdateWorkloadShare$, UpgradeLensReview$, UpgradeProfileVersion$, UpgradeReviewTemplateLensReview$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { WellArchitectedServiceException } = require("./models/WellArchitectedServiceException");
18
- exports.WellArchitectedServiceException = WellArchitectedServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+
17
+ const defaultWellArchitectedHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
+ return {
19
+ operation: getSmithyContext(context).operation,
20
+ region: await normalizeProvider(config.region)() || (() => {
21
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
22
+ })(),
23
+ };
24
+ };
25
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
26
+ return {
27
+ schemeId: "aws.auth#sigv4",
28
+ signingProperties: {
29
+ name: "wellarchitected",
30
+ region: authParameters.region,
31
+ },
32
+ propertiesExtractor: (config, context) => ({
33
+ signingProperties: {
34
+ config,
35
+ context,
36
+ },
37
+ }),
38
+ };
39
+ }
40
+ const defaultWellArchitectedHttpAuthSchemeProvider = (authParameters) => {
41
+ const options = [];
42
+ switch (authParameters.operation) {
43
+ default: {
44
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
45
+ }
46
+ }
47
+ return options;
48
+ };
49
+ const resolveHttpAuthSchemeConfig = (config) => {
50
+ const config_0 = resolveAwsSdkSigV4Config(config);
51
+ return Object.assign(config_0, {
52
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
53
+ });
54
+ };
19
55
 
20
56
  const resolveClientEndpointParameters = (options) => {
21
57
  return Object.assign(options, {
@@ -31,6 +67,2074 @@ const commonParams = {
31
67
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
32
68
  };
33
69
 
70
+ var version = "3.1075.0";
71
+ var packageInfo = {
72
+ version: version};
73
+
74
+ const k = "ref";
75
+ const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
76
+ const _data = {
77
+ conditions: [
78
+ [c, [g]],
79
+ [c, j],
80
+ ["aws.partition", j, d],
81
+ [e, [{ [k]: "UseFIPS" }, b]],
82
+ [e, [{ [k]: "UseDualStack" }, b]],
83
+ [e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
84
+ [e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
85
+ ],
86
+ results: [
87
+ [a],
88
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
89
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
90
+ [g, i],
91
+ ["https://wellarchitected-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
92
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
93
+ ["https://wellarchitected-fips.{Region}.{PartitionResult#dnsSuffix}", i],
94
+ [a, "FIPS is enabled but this partition does not support FIPS"],
95
+ ["https://wellarchitected.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
96
+ [a, "DualStack is enabled but this partition does not support DualStack"],
97
+ ["https://wellarchitected.{Region}.{PartitionResult#dnsSuffix}", i],
98
+ [a, "Invalid Configuration: Missing Region"]
99
+ ]
100
+ };
101
+ const root = 2;
102
+ const r = 100_000_000;
103
+ const nodes = new Int32Array([
104
+ -1, 1, -1,
105
+ 0, 12, 3,
106
+ 1, 4, r + 11,
107
+ 2, 5, r + 11,
108
+ 3, 8, 6,
109
+ 4, 7, r + 10,
110
+ 5, r + 8, r + 9,
111
+ 4, 10, 9,
112
+ 6, r + 6, r + 7,
113
+ 5, 11, r + 5,
114
+ 6, r + 4, r + 5,
115
+ 3, r + 1, 13,
116
+ 4, r + 2, r + 3,
117
+ ]);
118
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
119
+
120
+ const cache = new EndpointCache({
121
+ size: 50,
122
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
123
+ });
124
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
125
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
126
+ endpointParams: endpointParams,
127
+ logger: context.logger,
128
+ }));
129
+ };
130
+ customEndpointFunctions.aws = awsEndpointFunctions;
131
+
132
+ class WellArchitectedServiceException extends ServiceException {
133
+ constructor(options) {
134
+ super(options);
135
+ Object.setPrototypeOf(this, WellArchitectedServiceException.prototype);
136
+ }
137
+ }
138
+
139
+ class AccessDeniedException extends WellArchitectedServiceException {
140
+ name = "AccessDeniedException";
141
+ $fault = "client";
142
+ Message;
143
+ constructor(opts) {
144
+ super({
145
+ name: "AccessDeniedException",
146
+ $fault: "client",
147
+ ...opts,
148
+ });
149
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
150
+ this.Message = opts.Message;
151
+ }
152
+ }
153
+ class ConflictException extends WellArchitectedServiceException {
154
+ name = "ConflictException";
155
+ $fault = "client";
156
+ Message;
157
+ ResourceId;
158
+ ResourceType;
159
+ constructor(opts) {
160
+ super({
161
+ name: "ConflictException",
162
+ $fault: "client",
163
+ ...opts,
164
+ });
165
+ Object.setPrototypeOf(this, ConflictException.prototype);
166
+ this.Message = opts.Message;
167
+ this.ResourceId = opts.ResourceId;
168
+ this.ResourceType = opts.ResourceType;
169
+ }
170
+ }
171
+ class InternalServerException extends WellArchitectedServiceException {
172
+ name = "InternalServerException";
173
+ $fault = "server";
174
+ Message;
175
+ constructor(opts) {
176
+ super({
177
+ name: "InternalServerException",
178
+ $fault: "server",
179
+ ...opts,
180
+ });
181
+ Object.setPrototypeOf(this, InternalServerException.prototype);
182
+ this.Message = opts.Message;
183
+ }
184
+ }
185
+ class ResourceNotFoundException extends WellArchitectedServiceException {
186
+ name = "ResourceNotFoundException";
187
+ $fault = "client";
188
+ Message;
189
+ ResourceId;
190
+ ResourceType;
191
+ constructor(opts) {
192
+ super({
193
+ name: "ResourceNotFoundException",
194
+ $fault: "client",
195
+ ...opts,
196
+ });
197
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
198
+ this.Message = opts.Message;
199
+ this.ResourceId = opts.ResourceId;
200
+ this.ResourceType = opts.ResourceType;
201
+ }
202
+ }
203
+ class ThrottlingException extends WellArchitectedServiceException {
204
+ name = "ThrottlingException";
205
+ $fault = "client";
206
+ Message;
207
+ QuotaCode;
208
+ ServiceCode;
209
+ constructor(opts) {
210
+ super({
211
+ name: "ThrottlingException",
212
+ $fault: "client",
213
+ ...opts,
214
+ });
215
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
216
+ this.Message = opts.Message;
217
+ this.QuotaCode = opts.QuotaCode;
218
+ this.ServiceCode = opts.ServiceCode;
219
+ }
220
+ }
221
+ class ValidationException extends WellArchitectedServiceException {
222
+ name = "ValidationException";
223
+ $fault = "client";
224
+ Message;
225
+ Reason;
226
+ Fields;
227
+ constructor(opts) {
228
+ super({
229
+ name: "ValidationException",
230
+ $fault: "client",
231
+ ...opts,
232
+ });
233
+ Object.setPrototypeOf(this, ValidationException.prototype);
234
+ this.Message = opts.Message;
235
+ this.Reason = opts.Reason;
236
+ this.Fields = opts.Fields;
237
+ }
238
+ }
239
+ class ServiceQuotaExceededException extends WellArchitectedServiceException {
240
+ name = "ServiceQuotaExceededException";
241
+ $fault = "client";
242
+ Message;
243
+ ResourceId;
244
+ ResourceType;
245
+ QuotaCode;
246
+ ServiceCode;
247
+ constructor(opts) {
248
+ super({
249
+ name: "ServiceQuotaExceededException",
250
+ $fault: "client",
251
+ ...opts,
252
+ });
253
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
254
+ this.Message = opts.Message;
255
+ this.ResourceId = opts.ResourceId;
256
+ this.ResourceType = opts.ResourceType;
257
+ this.QuotaCode = opts.QuotaCode;
258
+ this.ServiceCode = opts.ServiceCode;
259
+ }
260
+ }
261
+
262
+ const _A = "Answer";
263
+ const _AD = "ArchitecturalDesign";
264
+ const _ADE = "AccessDeniedException";
265
+ const _AI = "AccountId";
266
+ const _AIc = "AccountIds";
267
+ const _AJCI = "AccountJiraConfigurationInput";
268
+ const _AJCO = "AccountJiraConfigurationOutput";
269
+ const _AL = "AssociateLenses";
270
+ const _ALI = "AssociateLensesInput";
271
+ const _AP = "AssociateProfiles";
272
+ const _API = "AssociateProfilesInput";
273
+ const _AR = "AdditionalResources";
274
+ const _ARL = "AdditionalResourcesList";
275
+ const _ARw = "AwsRegions";
276
+ const _AS = "AnswerSummary";
277
+ const _ASc = "AccountSummary";
278
+ const _ASn = "AnswerSummaries";
279
+ const _ASns = "AnswerStatus";
280
+ const _Ap = "Applications";
281
+ const _BLV = "BaseLensVersion";
282
+ const _BP = "BestPractice";
283
+ const _BPe = "BestPractices";
284
+ const _BS = "Base64String";
285
+ const _C = "Content";
286
+ const _CA = "ChoiceAnswers";
287
+ const _CAS = "ChoiceAnswerSummaries";
288
+ const _CASh = "ChoiceAnswerSummary";
289
+ const _CAh = "ChoiceAnswer";
290
+ const _CAr = "CreatedAt";
291
+ const _CC = "ChoiceContent";
292
+ const _CD = "CheckDetail";
293
+ const _CDh = "CheckDetails";
294
+ const _CDho = "ChoiceDescription";
295
+ const _CE = "ConflictException";
296
+ const _CI = "ChoiceId";
297
+ const _CIP = "ChoiceImprovementPlan";
298
+ const _CIPh = "ChoiceImprovementPlans";
299
+ const _CLS = "CreateLensShare";
300
+ const _CLSI = "CreateLensShareInput";
301
+ const _CLSO = "CreateLensShareOutput";
302
+ const _CLV = "CurrentLensVersion";
303
+ const _CLVI = "CreateLensVersionInput";
304
+ const _CLVO = "CreateLensVersionOutput";
305
+ const _CLVr = "CreateLensVersion";
306
+ const _CM = "CreateMilestone";
307
+ const _CMI = "CreateMilestoneInput";
308
+ const _CMO = "CreateMilestoneOutput";
309
+ const _CP = "CreateProfile";
310
+ const _CPI = "CreateProfileInput";
311
+ const _CPO = "CreateProfileOutput";
312
+ const _CPS = "CreateProfileShare";
313
+ const _CPSI = "CreateProfileShareInput";
314
+ const _CPSO = "CreateProfileShareOutput";
315
+ const _CPV = "CurrentProfileVersion";
316
+ const _CRM = "ConsolidatedReportMetric";
317
+ const _CRMo = "ConsolidatedReportMetrics";
318
+ const _CRT = "ClientRequestToken";
319
+ const _CRTI = "CreateReviewTemplateInput";
320
+ const _CRTO = "CreateReviewTemplateOutput";
321
+ const _CRTr = "CreateReviewTemplate";
322
+ const _CS = "CheckSummary";
323
+ const _CSh = "CheckSummaries";
324
+ const _CT = "ChoiceTitle";
325
+ const _CTS = "CreateTemplateShare";
326
+ const _CTSI = "CreateTemplateShareInput";
327
+ const _CTSO = "CreateTemplateShareOutput";
328
+ const _CU = "ChoiceUpdate";
329
+ const _CUh = "ChoiceUpdates";
330
+ const _CW = "CreateWorkload";
331
+ const _CWI = "CreateWorkloadInput";
332
+ const _CWO = "CreateWorkloadOutput";
333
+ const _CWS = "CreateWorkloadShare";
334
+ const _CWSI = "CreateWorkloadShareInput";
335
+ const _CWSO = "CreateWorkloadShareOutput";
336
+ const _Ch = "Choices";
337
+ const _Cho = "Choice";
338
+ const _D = "Description";
339
+ const _DC = "DiscoveryConfig";
340
+ const _DIS = "DiscoveryIntegrationStatus";
341
+ const _DL = "DeleteLens";
342
+ const _DLI = "DeleteLensInput";
343
+ const _DLIi = "DisassociateLensesInput";
344
+ const _DLS = "DeleteLensShare";
345
+ const _DLSI = "DeleteLensShareInput";
346
+ const _DLi = "DisassociateLenses";
347
+ const _DP = "DeleteProfile";
348
+ const _DPI = "DeleteProfileInput";
349
+ const _DPIi = "DisassociateProfilesInput";
350
+ const _DPS = "DeleteProfileShare";
351
+ const _DPSI = "DeleteProfileShareInput";
352
+ const _DPi = "DisassociateProfiles";
353
+ const _DRT = "DeleteReviewTemplate";
354
+ const _DRTI = "DeleteReviewTemplateInput";
355
+ const _DS = "DifferenceStatus";
356
+ const _DT = "DisplayText";
357
+ const _DTS = "DeleteTemplateShare";
358
+ const _DTSI = "DeleteTemplateShareInput";
359
+ const _DW = "DeleteWorkload";
360
+ const _DWI = "DeleteWorkloadInput";
361
+ const _DWS = "DeleteWorkloadShare";
362
+ const _DWSI = "DeleteWorkloadShareInput";
363
+ const _E = "Environment";
364
+ const _EL = "ExportLens";
365
+ const _ELI = "ExportLensInput";
366
+ const _ELO = "ExportLensOutput";
367
+ const _F = "Fields";
368
+ const _FR = "FlaggedResources";
369
+ const _Fo = "Format";
370
+ const _GA = "GetAnswer";
371
+ const _GAI = "GetAnswerInput";
372
+ const _GAO = "GetAnswerOutput";
373
+ const _GCR = "GetConsolidatedReport";
374
+ const _GCRI = "GetConsolidatedReportInput";
375
+ const _GCRO = "GetConsolidatedReportOutput";
376
+ const _GGS = "GetGlobalSettings";
377
+ const _GGSO = "GetGlobalSettingsOutput";
378
+ const _GL = "GetLens";
379
+ const _GLI = "GetLensInput";
380
+ const _GLO = "GetLensOutput";
381
+ const _GLR = "GetLensReview";
382
+ const _GLRI = "GetLensReviewInput";
383
+ const _GLRO = "GetLensReviewOutput";
384
+ const _GLRR = "GetLensReviewReport";
385
+ const _GLRRI = "GetLensReviewReportInput";
386
+ const _GLRRO = "GetLensReviewReportOutput";
387
+ const _GLVD = "GetLensVersionDifference";
388
+ const _GLVDI = "GetLensVersionDifferenceInput";
389
+ const _GLVDO = "GetLensVersionDifferenceOutput";
390
+ const _GM = "GetMilestone";
391
+ const _GMI = "GetMilestoneInput";
392
+ const _GMO = "GetMilestoneOutput";
393
+ const _GP = "GetProfile";
394
+ const _GPI = "GetProfileInput";
395
+ const _GPO = "GetProfileOutput";
396
+ const _GPT = "GetProfileTemplate";
397
+ const _GPTI = "GetProfileTemplateInput";
398
+ const _GPTO = "GetProfileTemplateOutput";
399
+ const _GRT = "GetReviewTemplate";
400
+ const _GRTA = "GetReviewTemplateAnswer";
401
+ const _GRTAI = "GetReviewTemplateAnswerInput";
402
+ const _GRTAO = "GetReviewTemplateAnswerOutput";
403
+ const _GRTI = "GetReviewTemplateInput";
404
+ const _GRTLR = "GetReviewTemplateLensReview";
405
+ const _GRTLRI = "GetReviewTemplateLensReviewInput";
406
+ const _GRTLRO = "GetReviewTemplateLensReviewOutput";
407
+ const _GRTO = "GetReviewTemplateOutput";
408
+ const _GW = "GetWorkload";
409
+ const _GWI = "GetWorkloadInput";
410
+ const _GWO = "GetWorkloadOutput";
411
+ const _HR = "HelpfulResource";
412
+ const _HRDT = "HelpfulResourceDisplayText";
413
+ const _HRU = "HelpfulResourceUrl";
414
+ const _I = "Id";
415
+ const _IA = "IsApplicable";
416
+ const _IL = "ImportLens";
417
+ const _ILI = "ImportLensInput";
418
+ const _ILO = "ImportLensOutput";
419
+ const _IMS = "IssueManagementStatus";
420
+ const _IMT = "IssueManagementType";
421
+ const _IMV = "IsMajorVersion";
422
+ const _IP = "ImprovementPlan";
423
+ const _IPU = "ImprovementPlanUrl";
424
+ const _IPm = "ImprovementPlans";
425
+ const _IROUA = "IsReviewOwnerUpdateAcknowledged";
426
+ const _IS = "IntegrationStatus";
427
+ const _ISE = "InternalServerException";
428
+ const _ISR = "IncludeSharedResources";
429
+ const _ISm = "ImprovementSummary";
430
+ const _ISmp = "ImprovementSummaries";
431
+ const _ISmpr = "ImprovementStatus";
432
+ const _ISn = "IntegratingService";
433
+ const _IT = "IndustryType";
434
+ const _In = "Industry";
435
+ const _JC = "JiraConfiguration";
436
+ const _JIU = "JiraIssueUrl";
437
+ const _JPK = "JiraProjectKey";
438
+ const _JSONS = "JSONString";
439
+ const _JSQC = "JiraSelectedQuestionConfiguration";
440
+ const _L = "Lenses";
441
+ const _LA = "LensAliases";
442
+ const _LAC = "LensesAppliedCount";
443
+ const _LAI = "ListAnswersInput";
444
+ const _LAO = "ListAnswersOutput";
445
+ const _LAe = "LensArn";
446
+ const _LAen = "LensAlias";
447
+ const _LAi = "ListAnswers";
448
+ const _LCD = "ListCheckDetails";
449
+ const _LCDI = "ListCheckDetailsInput";
450
+ const _LCDO = "ListCheckDetailsOutput";
451
+ const _LCS = "ListCheckSummaries";
452
+ const _LCSI = "ListCheckSummariesInput";
453
+ const _LCSO = "ListCheckSummariesOutput";
454
+ const _LJSON = "LensJSON";
455
+ const _LL = "ListLenses";
456
+ const _LLI = "ListLensesInput";
457
+ const _LLO = "ListLensesOutput";
458
+ const _LLR = "ListLensReviews";
459
+ const _LLRI = "ListLensReviewsInput";
460
+ const _LLRII = "ListLensReviewImprovementsInput";
461
+ const _LLRIO = "ListLensReviewImprovementsOutput";
462
+ const _LLRIi = "ListLensReviewImprovements";
463
+ const _LLRO = "ListLensReviewsOutput";
464
+ const _LLS = "ListLensShares";
465
+ const _LLSI = "ListLensSharesInput";
466
+ const _LLSO = "ListLensSharesOutput";
467
+ const _LLV = "LatestLensVersion";
468
+ const _LM = "LensMetric";
469
+ const _LMI = "ListMilestonesInput";
470
+ const _LMO = "ListMilestonesOutput";
471
+ const _LMe = "LensMetrics";
472
+ const _LMi = "ListMilestones";
473
+ const _LN = "LensName";
474
+ const _LNI = "ListNotificationsInput";
475
+ const _LNO = "ListNotificationsOutput";
476
+ const _LNP = "LensNamePrefix";
477
+ const _LNe = "LensNotes";
478
+ const _LNi = "ListNotifications";
479
+ const _LP = "ListProfiles";
480
+ const _LPI = "ListProfilesInput";
481
+ const _LPN = "ListProfileNotifications";
482
+ const _LPNI = "ListProfileNotificationsInput";
483
+ const _LPNO = "ListProfileNotificationsOutput";
484
+ const _LPO = "ListProfilesOutput";
485
+ const _LPS = "ListProfileShares";
486
+ const _LPSI = "ListProfileSharesInput";
487
+ const _LPSO = "ListProfileSharesOutput";
488
+ const _LPV = "LatestProfileVersion";
489
+ const _LR = "LensReview";
490
+ const _LRR = "LensReviewReport";
491
+ const _LRS = "LensReviewSummary";
492
+ const _LRSe = "LensReviewSummaries";
493
+ const _LRT = "ListReviewTemplates";
494
+ const _LRTA = "ListReviewTemplateAnswers";
495
+ const _LRTAI = "ListReviewTemplateAnswersInput";
496
+ const _LRTAO = "ListReviewTemplateAnswersOutput";
497
+ const _LRTI = "ListReviewTemplatesInput";
498
+ const _LRTO = "ListReviewTemplatesOutput";
499
+ const _LS = "LensStatus";
500
+ const _LSI = "ListShareInvitations";
501
+ const _LSII = "ListShareInvitationsInput";
502
+ const _LSIO = "ListShareInvitationsOutput";
503
+ const _LSS = "LensShareSummary";
504
+ const _LSSe = "LensShareSummaries";
505
+ const _LST = "LastSyncedTime";
506
+ const _LSe = "LensSummary";
507
+ const _LSen = "LensSummaries";
508
+ const _LT = "LensType";
509
+ const _LTA = "LensesToAssociate";
510
+ const _LTD = "LensesToDisassociate";
511
+ const _LTFR = "ListTagsForResource";
512
+ const _LTFRI = "ListTagsForResourceInput";
513
+ const _LTFRO = "ListTagsForResourceOutput";
514
+ const _LTS = "ListTemplateShares";
515
+ const _LTSI = "ListTemplateSharesInput";
516
+ const _LTSO = "ListTemplateSharesOutput";
517
+ const _LUS = "LensUpgradeSummary";
518
+ const _LV = "LensVersion";
519
+ const _LW = "ListWorkloads";
520
+ const _LWI = "ListWorkloadsInput";
521
+ const _LWO = "ListWorkloadsOutput";
522
+ const _LWS = "ListWorkloadShares";
523
+ const _LWSI = "ListWorkloadSharesInput";
524
+ const _LWSO = "ListWorkloadSharesOutput";
525
+ const _Le = "Lens";
526
+ const _M = "Message";
527
+ const _MN = "MilestoneName";
528
+ const _MNi = "MilestoneNumber";
529
+ const _MR = "MaxResults";
530
+ const _MS = "MilestoneSummaries";
531
+ const _MSC = "MinSelectedChoices";
532
+ const _MSCa = "MaxSelectedChoices";
533
+ const _MSi = "MilestoneSummary";
534
+ const _MT = "MetricType";
535
+ const _Me = "Metrics";
536
+ const _Mi = "Milestone";
537
+ const _N = "Notes";
538
+ const _NAR = "NonAwsRegions";
539
+ const _NS = "NotificationSummaries";
540
+ const _NSo = "NotificationSummary";
541
+ const _NT = "NextToken";
542
+ const _Na = "Name";
543
+ const _O = "Owner";
544
+ const _OSS = "OrganizationSharingStatus";
545
+ const _P = "Provider";
546
+ const _PA = "ProfileArns";
547
+ const _PAr = "ProfileArn";
548
+ const _PC = "ProfileChoice";
549
+ const _PD = "ProfileDescription";
550
+ const _PDi = "PillarDifference";
551
+ const _PDil = "PillarDifferences";
552
+ const _PI = "PillarId";
553
+ const _PM = "PillarMetric";
554
+ const _PMi = "PillarMetrics";
555
+ const _PN = "ProfileName";
556
+ const _PNP = "ProfileNamePrefix";
557
+ const _PNS = "ProfileNotificationSummary";
558
+ const _PNSr = "ProfileNotificationSummaries";
559
+ const _PNi = "PillarName";
560
+ const _PNil = "PillarNotes";
561
+ const _POT = "ProfileOwnerType";
562
+ const _PP = "PillarPriorities";
563
+ const _PQ = "ProfileQuestions";
564
+ const _PQC = "ProfileQuestionChoices";
565
+ const _PQU = "ProfileQuestionUpdate";
566
+ const _PQUr = "ProfileQuestionUpdates";
567
+ const _PQr = "ProfileQuestion";
568
+ const _PRC = "PrioritizedRiskCounts";
569
+ const _PRS = "PillarReviewSummaries";
570
+ const _PRSi = "PillarReviewSummary";
571
+ const _PS = "ProfileSummaries";
572
+ const _PSS = "ProfileShareSummaries";
573
+ const _PSSr = "ProfileShareSummary";
574
+ const _PSr = "ProfileSummary";
575
+ const _PT = "PermissionType";
576
+ const _PTC = "ProfileTemplateChoice";
577
+ const _PTQ = "ProfileTemplateQuestion";
578
+ const _PTQC = "ProfileTemplateQuestionChoices";
579
+ const _PTr = "ProfileTemplate";
580
+ const _PV = "ProfileVersion";
581
+ const _Pi = "Pillars";
582
+ const _Pr = "Profile";
583
+ const _Pro = "Profiles";
584
+ const _Q = "Questions";
585
+ const _QC = "QuotaCode";
586
+ const _QCu = "QuestionChoices";
587
+ const _QCue = "QuestionCounts";
588
+ const _QD = "QuestionDescription";
589
+ const _QDu = "QuestionDifferences";
590
+ const _QDue = "QuestionDifference";
591
+ const _QI = "QuestionId";
592
+ const _QM = "QuestionMetric";
593
+ const _QMu = "QuestionMetrics";
594
+ const _QP = "QuestionPriority";
595
+ const _QT = "QuestionTitle";
596
+ const _QTu = "QuestionType";
597
+ const _R = "Reason";
598
+ const _RA = "ResourceArn";
599
+ const _RAe = "RecordedAt";
600
+ const _RC = "RiskCounts";
601
+ const _RI = "ResourceId";
602
+ const _RN = "ResourceName";
603
+ const _RNFE = "ResourceNotFoundException";
604
+ const _RO = "ReviewOwner";
605
+ const _RRD = "ReviewRestrictionDate";
606
+ const _RT = "ResourceType";
607
+ const _RTA = "ReviewTemplateArns";
608
+ const _RTAS = "ReviewTemplateAnswerSummary";
609
+ const _RTASe = "ReviewTemplateAnswerSummaries";
610
+ const _RTAe = "ReviewTemplateAnswer";
611
+ const _RTLR = "ReviewTemplateLensReview";
612
+ const _RTPRS = "ReviewTemplatePillarReviewSummary";
613
+ const _RTPRSe = "ReviewTemplatePillarReviewSummaries";
614
+ const _RTS = "ReviewTemplateSummary";
615
+ const _RTe = "ReviewTemplate";
616
+ const _RTev = "ReviewTemplates";
617
+ const _Ri = "Risk";
618
+ const _S = "Subdomain";
619
+ const _SB = "SharedBy";
620
+ const _SC = "ServiceCode";
621
+ const _SCI = "SelectedChoiceIds";
622
+ const _SCe = "SelectedChoices";
623
+ const _SI = "ShareId";
624
+ const _SIA = "ShareInvitationAction";
625
+ const _SII = "ShareInvitationId";
626
+ const _SIS = "ShareInvitationSummaries";
627
+ const _SISh = "ShareInvitationSummary";
628
+ const _SIh = "ShareInvitation";
629
+ const _SM = "StatusMessage";
630
+ const _SP = "SelectedPillars";
631
+ const _SPe = "SelectedPillar";
632
+ const _SQEE = "ServiceQuotaExceededException";
633
+ const _SQI = "SelectedQuestionIds";
634
+ const _SRT = "ShareResourceType";
635
+ const _SW = "SharedWith";
636
+ const _SWP = "SharedWithPrefix";
637
+ const _St = "Status";
638
+ const _T = "Type";
639
+ const _TA = "TemplateArn";
640
+ const _TAIS = "TrustedAdvisorIntegrationStatus";
641
+ const _TE = "ThrottlingException";
642
+ const _TK = "TagKeys";
643
+ const _TLV = "TargetLensVersion";
644
+ const _TN = "TemplateName";
645
+ const _TNP = "TemplateNamePrefix";
646
+ const _TQ = "TemplateQuestions";
647
+ const _TR = "TagResource";
648
+ const _TRI = "TagResourceInput";
649
+ const _TRO = "TagResourceOutput";
650
+ const _TSS = "TemplateShareSummaries";
651
+ const _TSSe = "TemplateShareSummary";
652
+ const _Ta = "Tags";
653
+ const _Ti = "Title";
654
+ const _U = "Url";
655
+ const _UA = "UpdatedAt";
656
+ const _UAI = "UpdateAnswerInput";
657
+ const _UAO = "UpdateAnswerOutput";
658
+ const _UAp = "UpdateAnswer";
659
+ const _UGS = "UpdateGlobalSettings";
660
+ const _UGSI = "UpdateGlobalSettingsInput";
661
+ const _UI = "UpdateIntegration";
662
+ const _UII = "UpdateIntegrationInput";
663
+ const _ULR = "UpdateLensReview";
664
+ const _ULRI = "UpdateLensReviewInput";
665
+ const _ULRIp = "UpgradeLensReviewInput";
666
+ const _ULRO = "UpdateLensReviewOutput";
667
+ const _ULRp = "UpgradeLensReview";
668
+ const _UP = "UpdateProfile";
669
+ const _UPI = "UpdateProfileInput";
670
+ const _UPO = "UpdateProfileOutput";
671
+ const _UPV = "UpgradeProfileVersion";
672
+ const _UPVI = "UpgradeProfileVersionInput";
673
+ const _UR = "UntagResource";
674
+ const _URI = "UntagResourceInput";
675
+ const _URO = "UntagResourceOutput";
676
+ const _URT = "UpdateReviewTemplate";
677
+ const _URTA = "UpdateReviewTemplateAnswer";
678
+ const _URTAI = "UpdateReviewTemplateAnswerInput";
679
+ const _URTAO = "UpdateReviewTemplateAnswerOutput";
680
+ const _URTI = "UpdateReviewTemplateInput";
681
+ const _URTLR = "UpdateReviewTemplateLensReview";
682
+ const _URTLRI = "UpdateReviewTemplateLensReviewInput";
683
+ const _URTLRIp = "UpgradeReviewTemplateLensReviewInput";
684
+ const _URTLRO = "UpdateReviewTemplateLensReviewOutput";
685
+ const _URTLRp = "UpgradeReviewTemplateLensReview";
686
+ const _URTO = "UpdateReviewTemplateOutput";
687
+ const _US = "UpdateStatus";
688
+ const _USI = "UpdateShareInvitation";
689
+ const _USII = "UpdateShareInvitationInput";
690
+ const _USIO = "UpdateShareInvitationOutput";
691
+ const _UW = "UpdateWorkload";
692
+ const _UWI = "UpdateWorkloadInput";
693
+ const _UWO = "UpdateWorkloadOutput";
694
+ const _UWS = "UpdateWorkloadShare";
695
+ const _UWSI = "UpdateWorkloadShareInput";
696
+ const _UWSO = "UpdateWorkloadShareOutput";
697
+ const _Ur = "Urls";
698
+ const _VD = "VersionDifferences";
699
+ const _VE = "ValidationException";
700
+ const _VEF = "ValidationExceptionField";
701
+ const _VEFL = "ValidationExceptionFieldList";
702
+ const _W = "Workload";
703
+ const _WA = "WorkloadArn";
704
+ const _WDC = "WorkloadDiscoveryConfig";
705
+ const _WI = "WorkloadId";
706
+ const _WJCI = "WorkloadJiraConfigurationInput";
707
+ const _WJCO = "WorkloadJiraConfigurationOutput";
708
+ const _WN = "WorkloadName";
709
+ const _WNP = "WorkloadNamePrefix";
710
+ const _WP = "WorkloadProfile";
711
+ const _WPo = "WorkloadProfiles";
712
+ const _WRD = "WorkloadResourceDefinition";
713
+ const _WS = "WorkloadSummaries";
714
+ const _WSS = "WorkloadShareSummaries";
715
+ const _WSSo = "WorkloadShareSummary";
716
+ const _WSo = "WorkloadSummary";
717
+ const _WSor = "WorkloadShare";
718
+ const _c = "client";
719
+ const _e = "error";
720
+ const _h = "http";
721
+ const _hE = "httpError";
722
+ const _hQ = "httpQuery";
723
+ const _iT = "idempotencyToken";
724
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.wellarchitected";
725
+ const _se = "server";
726
+ const _tK = "tagKeys";
727
+ const n0 = "com.amazonaws.wellarchitected";
728
+ const _s_registry = TypeRegistry.for(_s);
729
+ var WellArchitectedServiceException$ = [-3, _s, "WellArchitectedServiceException", 0, [], []];
730
+ _s_registry.registerError(WellArchitectedServiceException$, WellArchitectedServiceException);
731
+ const n0_registry = TypeRegistry.for(n0);
732
+ var AccessDeniedException$ = [-3, n0, _ADE,
733
+ { [_e]: _c, [_hE]: 403 },
734
+ [_M],
735
+ [0], 1
736
+ ];
737
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
738
+ var ConflictException$ = [-3, n0, _CE,
739
+ { [_e]: _c, [_hE]: 409 },
740
+ [_M, _RI, _RT],
741
+ [0, 0, 0], 3
742
+ ];
743
+ n0_registry.registerError(ConflictException$, ConflictException);
744
+ var InternalServerException$ = [-3, n0, _ISE,
745
+ { [_e]: _se, [_hE]: 500 },
746
+ [_M],
747
+ [0], 1
748
+ ];
749
+ n0_registry.registerError(InternalServerException$, InternalServerException);
750
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
751
+ { [_e]: _c, [_hE]: 404 },
752
+ [_M, _RI, _RT],
753
+ [0, 0, 0], 3
754
+ ];
755
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
756
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
757
+ { [_e]: _c, [_hE]: 402 },
758
+ [_M, _QC, _SC, _RI, _RT],
759
+ [0, 0, 0, 0, 0], 3
760
+ ];
761
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
762
+ var ThrottlingException$ = [-3, n0, _TE,
763
+ { [_e]: _c, [_hE]: 429 },
764
+ [_M, _QC, _SC],
765
+ [0, 0, 0], 1
766
+ ];
767
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
768
+ var ValidationException$ = [-3, n0, _VE,
769
+ { [_e]: _c, [_hE]: 400 },
770
+ [_M, _R, _F],
771
+ [0, 0, () => ValidationExceptionFieldList], 1
772
+ ];
773
+ n0_registry.registerError(ValidationException$, ValidationException);
774
+ const errorTypeRegistries = [
775
+ _s_registry,
776
+ n0_registry,
777
+ ];
778
+ var AccountJiraConfigurationInput$ = [3, n0, _AJCI,
779
+ 0,
780
+ [_IMS, _IMT, _JPK, _IS],
781
+ [0, 0, 0, 0]
782
+ ];
783
+ var AccountJiraConfigurationOutput$ = [3, n0, _AJCO,
784
+ 0,
785
+ [_IS, _IMS, _IMT, _S, _JPK, _SM],
786
+ [0, 0, 0, 0, 0, 0]
787
+ ];
788
+ var AdditionalResources$ = [3, n0, _AR,
789
+ 0,
790
+ [_T, _C],
791
+ [0, () => Urls]
792
+ ];
793
+ var Answer$ = [3, n0, _A,
794
+ 0,
795
+ [_QI, _PI, _QT, _QD, _IPU, _HRU, _HRDT, _Ch, _SCe, _CA, _IA, _Ri, _N, _R, _JC],
796
+ [0, 0, 0, 0, 0, 0, 0, () => Choices, 64 | 0, () => ChoiceAnswers, 2, 0, 0, 0, () => JiraConfiguration$]
797
+ ];
798
+ var AnswerSummary$ = [3, n0, _AS,
799
+ 0,
800
+ [_QI, _PI, _QT, _Ch, _SCe, _CAS, _IA, _Ri, _R, _QTu, _JC],
801
+ [0, 0, 0, () => Choices, 64 | 0, () => ChoiceAnswerSummaries, 2, 0, 0, 0, () => JiraConfiguration$]
802
+ ];
803
+ var AssociateLensesInput$ = [3, n0, _ALI,
804
+ 0,
805
+ [_WI, _LA],
806
+ [[0, 1], 64 | 0], 2
807
+ ];
808
+ var AssociateProfilesInput$ = [3, n0, _API,
809
+ 0,
810
+ [_WI, _PA],
811
+ [[0, 1], 64 | 0], 2
812
+ ];
813
+ var BestPractice$ = [3, n0, _BP,
814
+ 0,
815
+ [_CI, _CT],
816
+ [0, 0]
817
+ ];
818
+ var CheckDetail$ = [3, n0, _CD,
819
+ 0,
820
+ [_I, _Na, _D, _P, _LAe, _PI, _QI, _CI, _St, _AI, _FR, _R, _UA],
821
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 4]
822
+ ];
823
+ var CheckSummary$ = [3, n0, _CS,
824
+ 0,
825
+ [_I, _Na, _P, _D, _UA, _LAe, _PI, _QI, _CI, _St, _ASc],
826
+ [0, 0, 0, 0, 4, 0, 0, 0, 0, 0, 128 | 1]
827
+ ];
828
+ var Choice$ = [3, n0, _Cho,
829
+ 0,
830
+ [_CI, _Ti, _D, _HR, _IP, _AR],
831
+ [0, 0, 0, () => ChoiceContent$, () => ChoiceContent$, () => AdditionalResourcesList]
832
+ ];
833
+ var ChoiceAnswer$ = [3, n0, _CAh,
834
+ 0,
835
+ [_CI, _St, _R, _N],
836
+ [0, 0, 0, 0]
837
+ ];
838
+ var ChoiceAnswerSummary$ = [3, n0, _CASh,
839
+ 0,
840
+ [_CI, _St, _R],
841
+ [0, 0, 0]
842
+ ];
843
+ var ChoiceContent$ = [3, n0, _CC,
844
+ 0,
845
+ [_DT, _U],
846
+ [0, 0]
847
+ ];
848
+ var ChoiceImprovementPlan$ = [3, n0, _CIP,
849
+ 0,
850
+ [_CI, _DT, _IPU],
851
+ [0, 0, 0]
852
+ ];
853
+ var ChoiceUpdate$ = [3, n0, _CU,
854
+ 0,
855
+ [_St, _R, _N],
856
+ [0, 0, 0], 1
857
+ ];
858
+ var ConsolidatedReportMetric$ = [3, n0, _CRM,
859
+ 0,
860
+ [_MT, _RC, _WI, _WN, _WA, _UA, _L, _LAC],
861
+ [0, 128 | 1, 0, 0, 0, 4, () => LensMetrics, 1]
862
+ ];
863
+ var CreateLensShareInput$ = [3, n0, _CLSI,
864
+ 0,
865
+ [_LAen, _SW, _CRT],
866
+ [[0, 1], 0, [0, 4]], 2
867
+ ];
868
+ var CreateLensShareOutput$ = [3, n0, _CLSO,
869
+ 0,
870
+ [_SI],
871
+ [0]
872
+ ];
873
+ var CreateLensVersionInput$ = [3, n0, _CLVI,
874
+ 0,
875
+ [_LAen, _LV, _IMV, _CRT],
876
+ [[0, 1], 0, 2, [0, 4]], 2
877
+ ];
878
+ var CreateLensVersionOutput$ = [3, n0, _CLVO,
879
+ 0,
880
+ [_LAe, _LV],
881
+ [0, 0]
882
+ ];
883
+ var CreateMilestoneInput$ = [3, n0, _CMI,
884
+ 0,
885
+ [_WI, _MN, _CRT],
886
+ [[0, 1], 0, [0, 4]], 2
887
+ ];
888
+ var CreateMilestoneOutput$ = [3, n0, _CMO,
889
+ 0,
890
+ [_WI, _MNi],
891
+ [0, 1]
892
+ ];
893
+ var CreateProfileInput$ = [3, n0, _CPI,
894
+ 0,
895
+ [_PN, _PD, _PQ, _CRT, _Ta],
896
+ [0, 0, () => ProfileQuestionUpdates, [0, 4], 128 | 0], 3
897
+ ];
898
+ var CreateProfileOutput$ = [3, n0, _CPO,
899
+ 0,
900
+ [_PAr, _PV],
901
+ [0, 0]
902
+ ];
903
+ var CreateProfileShareInput$ = [3, n0, _CPSI,
904
+ 0,
905
+ [_PAr, _SW, _CRT],
906
+ [[0, 1], 0, [0, 4]], 2
907
+ ];
908
+ var CreateProfileShareOutput$ = [3, n0, _CPSO,
909
+ 0,
910
+ [_SI, _PAr],
911
+ [0, 0]
912
+ ];
913
+ var CreateReviewTemplateInput$ = [3, n0, _CRTI,
914
+ 0,
915
+ [_TN, _D, _L, _N, _Ta, _CRT],
916
+ [0, 0, 64 | 0, 0, 128 | 0, [0, 4]], 3
917
+ ];
918
+ var CreateReviewTemplateOutput$ = [3, n0, _CRTO,
919
+ 0,
920
+ [_TA],
921
+ [0]
922
+ ];
923
+ var CreateTemplateShareInput$ = [3, n0, _CTSI,
924
+ 0,
925
+ [_TA, _SW, _CRT],
926
+ [[0, 1], 0, [0, 4]], 2
927
+ ];
928
+ var CreateTemplateShareOutput$ = [3, n0, _CTSO,
929
+ 0,
930
+ [_TA, _SI],
931
+ [0, 0]
932
+ ];
933
+ var CreateWorkloadInput$ = [3, n0, _CWI,
934
+ 0,
935
+ [_WN, _D, _E, _L, _AIc, _ARw, _NAR, _PP, _AD, _RO, _IT, _In, _N, _CRT, _Ta, _DC, _Ap, _PA, _RTA, _JC],
936
+ [0, 0, 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 0, 0, 0, 0, 0, [0, 4], 128 | 0, () => WorkloadDiscoveryConfig$, 64 | 0, 64 | 0, 64 | 0, () => WorkloadJiraConfigurationInput$], 4
937
+ ];
938
+ var CreateWorkloadOutput$ = [3, n0, _CWO,
939
+ 0,
940
+ [_WI, _WA],
941
+ [0, 0]
942
+ ];
943
+ var CreateWorkloadShareInput$ = [3, n0, _CWSI,
944
+ 0,
945
+ [_WI, _SW, _PT, _CRT],
946
+ [[0, 1], 0, 0, [0, 4]], 3
947
+ ];
948
+ var CreateWorkloadShareOutput$ = [3, n0, _CWSO,
949
+ 0,
950
+ [_WI, _SI],
951
+ [0, 0]
952
+ ];
953
+ var DeleteLensInput$ = [3, n0, _DLI,
954
+ 0,
955
+ [_LAen, _LS, _CRT],
956
+ [[0, 1], [0, { [_hQ]: _LS }], [0, { [_hQ]: _CRT, [_iT]: 1 }]], 2
957
+ ];
958
+ var DeleteLensShareInput$ = [3, n0, _DLSI,
959
+ 0,
960
+ [_SI, _LAen, _CRT],
961
+ [[0, 1], [0, 1], [0, { [_hQ]: _CRT, [_iT]: 1 }]], 2
962
+ ];
963
+ var DeleteProfileInput$ = [3, n0, _DPI,
964
+ 0,
965
+ [_PAr, _CRT],
966
+ [[0, 1], [0, { [_hQ]: _CRT, [_iT]: 1 }]], 1
967
+ ];
968
+ var DeleteProfileShareInput$ = [3, n0, _DPSI,
969
+ 0,
970
+ [_SI, _PAr, _CRT],
971
+ [[0, 1], [0, 1], [0, { [_hQ]: _CRT, [_iT]: 1 }]], 2
972
+ ];
973
+ var DeleteReviewTemplateInput$ = [3, n0, _DRTI,
974
+ 0,
975
+ [_TA, _CRT],
976
+ [[0, 1], [0, { [_hQ]: _CRT, [_iT]: 1 }]], 1
977
+ ];
978
+ var DeleteTemplateShareInput$ = [3, n0, _DTSI,
979
+ 0,
980
+ [_SI, _TA, _CRT],
981
+ [[0, 1], [0, 1], [0, { [_hQ]: _CRT, [_iT]: 1 }]], 2
982
+ ];
983
+ var DeleteWorkloadInput$ = [3, n0, _DWI,
984
+ 0,
985
+ [_WI, _CRT],
986
+ [[0, 1], [0, { [_hQ]: _CRT, [_iT]: 1 }]], 1
987
+ ];
988
+ var DeleteWorkloadShareInput$ = [3, n0, _DWSI,
989
+ 0,
990
+ [_SI, _WI, _CRT],
991
+ [[0, 1], [0, 1], [0, { [_hQ]: _CRT, [_iT]: 1 }]], 2
992
+ ];
993
+ var DisassociateLensesInput$ = [3, n0, _DLIi,
994
+ 0,
995
+ [_WI, _LA],
996
+ [[0, 1], 64 | 0], 2
997
+ ];
998
+ var DisassociateProfilesInput$ = [3, n0, _DPIi,
999
+ 0,
1000
+ [_WI, _PA],
1001
+ [[0, 1], 64 | 0], 2
1002
+ ];
1003
+ var ExportLensInput$ = [3, n0, _ELI,
1004
+ 0,
1005
+ [_LAen, _LV],
1006
+ [[0, 1], [0, { [_hQ]: _LV }]], 1
1007
+ ];
1008
+ var ExportLensOutput$ = [3, n0, _ELO,
1009
+ 0,
1010
+ [_LJSON],
1011
+ [0]
1012
+ ];
1013
+ var GetAnswerInput$ = [3, n0, _GAI,
1014
+ 0,
1015
+ [_WI, _LAen, _QI, _MNi],
1016
+ [[0, 1], [0, 1], [0, 1], [1, { [_hQ]: _MNi }]], 3
1017
+ ];
1018
+ var GetAnswerOutput$ = [3, n0, _GAO,
1019
+ 0,
1020
+ [_WI, _MNi, _LAen, _LAe, _A],
1021
+ [0, 1, 0, 0, () => Answer$]
1022
+ ];
1023
+ var GetConsolidatedReportInput$ = [3, n0, _GCRI,
1024
+ 0,
1025
+ [_Fo, _ISR, _NT, _MR],
1026
+ [[0, { [_hQ]: _Fo }], [2, { [_hQ]: _ISR }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]], 1
1027
+ ];
1028
+ var GetConsolidatedReportOutput$ = [3, n0, _GCRO,
1029
+ 0,
1030
+ [_Me, _NT, _BS],
1031
+ [() => ConsolidatedReportMetrics, 0, 0]
1032
+ ];
1033
+ var GetGlobalSettingsOutput$ = [3, n0, _GGSO,
1034
+ 0,
1035
+ [_OSS, _DIS, _JC],
1036
+ [0, 0, () => AccountJiraConfigurationOutput$]
1037
+ ];
1038
+ var GetLensInput$ = [3, n0, _GLI,
1039
+ 0,
1040
+ [_LAen, _LV],
1041
+ [[0, 1], [0, { [_hQ]: _LV }]], 1
1042
+ ];
1043
+ var GetLensOutput$ = [3, n0, _GLO,
1044
+ 0,
1045
+ [_Le],
1046
+ [() => Lens$]
1047
+ ];
1048
+ var GetLensReviewInput$ = [3, n0, _GLRI,
1049
+ 0,
1050
+ [_WI, _LAen, _MNi],
1051
+ [[0, 1], [0, 1], [1, { [_hQ]: _MNi }]], 2
1052
+ ];
1053
+ var GetLensReviewOutput$ = [3, n0, _GLRO,
1054
+ 0,
1055
+ [_WI, _MNi, _LR],
1056
+ [0, 1, () => LensReview$]
1057
+ ];
1058
+ var GetLensReviewReportInput$ = [3, n0, _GLRRI,
1059
+ 0,
1060
+ [_WI, _LAen, _MNi],
1061
+ [[0, 1], [0, 1], [1, { [_hQ]: _MNi }]], 2
1062
+ ];
1063
+ var GetLensReviewReportOutput$ = [3, n0, _GLRRO,
1064
+ 0,
1065
+ [_WI, _MNi, _LRR],
1066
+ [0, 1, () => LensReviewReport$]
1067
+ ];
1068
+ var GetLensVersionDifferenceInput$ = [3, n0, _GLVDI,
1069
+ 0,
1070
+ [_LAen, _BLV, _TLV],
1071
+ [[0, 1], [0, { [_hQ]: _BLV }], [0, { [_hQ]: _TLV }]], 1
1072
+ ];
1073
+ var GetLensVersionDifferenceOutput$ = [3, n0, _GLVDO,
1074
+ 0,
1075
+ [_LAen, _LAe, _BLV, _TLV, _LLV, _VD],
1076
+ [0, 0, 0, 0, 0, () => VersionDifferences$]
1077
+ ];
1078
+ var GetMilestoneInput$ = [3, n0, _GMI,
1079
+ 0,
1080
+ [_WI, _MNi],
1081
+ [[0, 1], [1, 1]], 2
1082
+ ];
1083
+ var GetMilestoneOutput$ = [3, n0, _GMO,
1084
+ 0,
1085
+ [_WI, _Mi],
1086
+ [0, () => Milestone$]
1087
+ ];
1088
+ var GetProfileInput$ = [3, n0, _GPI,
1089
+ 0,
1090
+ [_PAr, _PV],
1091
+ [[0, 1], [0, { [_hQ]: _PV }]], 1
1092
+ ];
1093
+ var GetProfileOutput$ = [3, n0, _GPO,
1094
+ 0,
1095
+ [_Pr],
1096
+ [() => Profile$]
1097
+ ];
1098
+ var GetProfileTemplateInput$ = [3, n0, _GPTI,
1099
+ 0,
1100
+ [],
1101
+ []
1102
+ ];
1103
+ var GetProfileTemplateOutput$ = [3, n0, _GPTO,
1104
+ 0,
1105
+ [_PTr],
1106
+ [() => ProfileTemplate$]
1107
+ ];
1108
+ var GetReviewTemplateAnswerInput$ = [3, n0, _GRTAI,
1109
+ 0,
1110
+ [_TA, _LAen, _QI],
1111
+ [[0, 1], [0, 1], [0, 1]], 3
1112
+ ];
1113
+ var GetReviewTemplateAnswerOutput$ = [3, n0, _GRTAO,
1114
+ 0,
1115
+ [_TA, _LAen, _A],
1116
+ [0, 0, () => ReviewTemplateAnswer$]
1117
+ ];
1118
+ var GetReviewTemplateInput$ = [3, n0, _GRTI,
1119
+ 0,
1120
+ [_TA],
1121
+ [[0, 1]], 1
1122
+ ];
1123
+ var GetReviewTemplateLensReviewInput$ = [3, n0, _GRTLRI,
1124
+ 0,
1125
+ [_TA, _LAen],
1126
+ [[0, 1], [0, 1]], 2
1127
+ ];
1128
+ var GetReviewTemplateLensReviewOutput$ = [3, n0, _GRTLRO,
1129
+ 0,
1130
+ [_TA, _LR],
1131
+ [0, () => ReviewTemplateLensReview$]
1132
+ ];
1133
+ var GetReviewTemplateOutput$ = [3, n0, _GRTO,
1134
+ 0,
1135
+ [_RTe],
1136
+ [() => ReviewTemplate$]
1137
+ ];
1138
+ var GetWorkloadInput$ = [3, n0, _GWI,
1139
+ 0,
1140
+ [_WI],
1141
+ [[0, 1]], 1
1142
+ ];
1143
+ var GetWorkloadOutput$ = [3, n0, _GWO,
1144
+ 0,
1145
+ [_W],
1146
+ [() => Workload$]
1147
+ ];
1148
+ var ImportLensInput$ = [3, n0, _ILI,
1149
+ 0,
1150
+ [_JSONS, _LAen, _CRT, _Ta],
1151
+ [0, 0, [0, 4], 128 | 0], 1
1152
+ ];
1153
+ var ImportLensOutput$ = [3, n0, _ILO,
1154
+ 0,
1155
+ [_LAe, _St],
1156
+ [0, 0]
1157
+ ];
1158
+ var ImprovementSummary$ = [3, n0, _ISm,
1159
+ 0,
1160
+ [_QI, _PI, _QT, _Ri, _IPU, _IPm, _JC],
1161
+ [0, 0, 0, 0, 0, () => ChoiceImprovementPlans, () => JiraConfiguration$]
1162
+ ];
1163
+ var JiraConfiguration$ = [3, n0, _JC,
1164
+ 0,
1165
+ [_JIU, _LST],
1166
+ [0, 4]
1167
+ ];
1168
+ var JiraSelectedQuestionConfiguration$ = [3, n0, _JSQC,
1169
+ 0,
1170
+ [_SP],
1171
+ [() => SelectedPillars]
1172
+ ];
1173
+ var Lens$ = [3, n0, _Le,
1174
+ 0,
1175
+ [_LAe, _LV, _Na, _D, _O, _SII, _Ta],
1176
+ [0, 0, 0, 0, 0, 0, 128 | 0]
1177
+ ];
1178
+ var LensMetric$ = [3, n0, _LM,
1179
+ 0,
1180
+ [_LAe, _Pi, _RC],
1181
+ [0, () => PillarMetrics, 128 | 1]
1182
+ ];
1183
+ var LensReview$ = [3, n0, _LR,
1184
+ 0,
1185
+ [_LAen, _LAe, _LV, _LN, _LS, _PRS, _JC, _UA, _N, _RC, _NT, _Pro, _PRC],
1186
+ [0, 0, 0, 0, 0, () => PillarReviewSummaries, () => JiraSelectedQuestionConfiguration$, 4, 0, 128 | 1, 0, () => WorkloadProfiles, 128 | 1]
1187
+ ];
1188
+ var LensReviewReport$ = [3, n0, _LRR,
1189
+ 0,
1190
+ [_LAen, _LAe, _BS],
1191
+ [0, 0, 0]
1192
+ ];
1193
+ var LensReviewSummary$ = [3, n0, _LRS,
1194
+ 0,
1195
+ [_LAen, _LAe, _LV, _LN, _LS, _UA, _RC, _Pro, _PRC],
1196
+ [0, 0, 0, 0, 0, 4, 128 | 1, () => WorkloadProfiles, 128 | 1]
1197
+ ];
1198
+ var LensShareSummary$ = [3, n0, _LSS,
1199
+ 0,
1200
+ [_SI, _SW, _St, _SM],
1201
+ [0, 0, 0, 0]
1202
+ ];
1203
+ var LensSummary$ = [3, n0, _LSe,
1204
+ 0,
1205
+ [_LAe, _LAen, _LN, _LT, _D, _CAr, _UA, _LV, _O, _LS],
1206
+ [0, 0, 0, 0, 0, 4, 4, 0, 0, 0]
1207
+ ];
1208
+ var LensUpgradeSummary$ = [3, n0, _LUS,
1209
+ 0,
1210
+ [_WI, _WN, _LAen, _LAe, _CLV, _LLV, _RA, _RN],
1211
+ [0, 0, 0, 0, 0, 0, 0, 0]
1212
+ ];
1213
+ var ListAnswersInput$ = [3, n0, _LAI,
1214
+ 0,
1215
+ [_WI, _LAen, _PI, _MNi, _NT, _MR, _QP],
1216
+ [[0, 1], [0, 1], [0, { [_hQ]: _PI }], [1, { [_hQ]: _MNi }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _QP }]], 2
1217
+ ];
1218
+ var ListAnswersOutput$ = [3, n0, _LAO,
1219
+ 0,
1220
+ [_WI, _MNi, _LAen, _LAe, _ASn, _NT],
1221
+ [0, 1, 0, 0, () => AnswerSummaries, 0]
1222
+ ];
1223
+ var ListCheckDetailsInput$ = [3, n0, _LCDI,
1224
+ 0,
1225
+ [_WI, _LAe, _PI, _QI, _CI, _NT, _MR],
1226
+ [[0, 1], 0, 0, 0, 0, 0, 1], 5
1227
+ ];
1228
+ var ListCheckDetailsOutput$ = [3, n0, _LCDO,
1229
+ 0,
1230
+ [_CDh, _NT],
1231
+ [() => CheckDetails, 0]
1232
+ ];
1233
+ var ListCheckSummariesInput$ = [3, n0, _LCSI,
1234
+ 0,
1235
+ [_WI, _LAe, _PI, _QI, _CI, _NT, _MR],
1236
+ [[0, 1], 0, 0, 0, 0, 0, 1], 5
1237
+ ];
1238
+ var ListCheckSummariesOutput$ = [3, n0, _LCSO,
1239
+ 0,
1240
+ [_CSh, _NT],
1241
+ [() => CheckSummaries, 0]
1242
+ ];
1243
+ var ListLensesInput$ = [3, n0, _LLI,
1244
+ 0,
1245
+ [_NT, _MR, _LT, _LS, _LN],
1246
+ [[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _LT }], [0, { [_hQ]: _LS }], [0, { [_hQ]: _LN }]]
1247
+ ];
1248
+ var ListLensesOutput$ = [3, n0, _LLO,
1249
+ 0,
1250
+ [_LSen, _NT],
1251
+ [() => LensSummaries, 0]
1252
+ ];
1253
+ var ListLensReviewImprovementsInput$ = [3, n0, _LLRII,
1254
+ 0,
1255
+ [_WI, _LAen, _PI, _MNi, _NT, _MR, _QP],
1256
+ [[0, 1], [0, 1], [0, { [_hQ]: _PI }], [1, { [_hQ]: _MNi }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _QP }]], 2
1257
+ ];
1258
+ var ListLensReviewImprovementsOutput$ = [3, n0, _LLRIO,
1259
+ 0,
1260
+ [_WI, _MNi, _LAen, _LAe, _ISmp, _NT],
1261
+ [0, 1, 0, 0, () => ImprovementSummaries, 0]
1262
+ ];
1263
+ var ListLensReviewsInput$ = [3, n0, _LLRI,
1264
+ 0,
1265
+ [_WI, _MNi, _NT, _MR],
1266
+ [[0, 1], [1, { [_hQ]: _MNi }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]], 1
1267
+ ];
1268
+ var ListLensReviewsOutput$ = [3, n0, _LLRO,
1269
+ 0,
1270
+ [_WI, _MNi, _LRSe, _NT],
1271
+ [0, 1, () => LensReviewSummaries, 0]
1272
+ ];
1273
+ var ListLensSharesInput$ = [3, n0, _LLSI,
1274
+ 0,
1275
+ [_LAen, _SWP, _NT, _MR, _St],
1276
+ [[0, 1], [0, { [_hQ]: _SWP }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _St }]], 1
1277
+ ];
1278
+ var ListLensSharesOutput$ = [3, n0, _LLSO,
1279
+ 0,
1280
+ [_LSSe, _NT],
1281
+ [() => LensShareSummaries, 0]
1282
+ ];
1283
+ var ListMilestonesInput$ = [3, n0, _LMI,
1284
+ 0,
1285
+ [_WI, _NT, _MR],
1286
+ [[0, 1], 0, 1], 1
1287
+ ];
1288
+ var ListMilestonesOutput$ = [3, n0, _LMO,
1289
+ 0,
1290
+ [_WI, _MS, _NT],
1291
+ [0, () => MilestoneSummaries, 0]
1292
+ ];
1293
+ var ListNotificationsInput$ = [3, n0, _LNI,
1294
+ 0,
1295
+ [_WI, _NT, _MR, _RA],
1296
+ [0, 0, 1, 0]
1297
+ ];
1298
+ var ListNotificationsOutput$ = [3, n0, _LNO,
1299
+ 0,
1300
+ [_NS, _NT],
1301
+ [() => NotificationSummaries, 0]
1302
+ ];
1303
+ var ListProfileNotificationsInput$ = [3, n0, _LPNI,
1304
+ 0,
1305
+ [_WI, _NT, _MR],
1306
+ [[0, { [_hQ]: _WI }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
1307
+ ];
1308
+ var ListProfileNotificationsOutput$ = [3, n0, _LPNO,
1309
+ 0,
1310
+ [_NS, _NT],
1311
+ [() => ProfileNotificationSummaries, 0]
1312
+ ];
1313
+ var ListProfileSharesInput$ = [3, n0, _LPSI,
1314
+ 0,
1315
+ [_PAr, _SWP, _NT, _MR, _St],
1316
+ [[0, 1], [0, { [_hQ]: _SWP }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _St }]], 1
1317
+ ];
1318
+ var ListProfileSharesOutput$ = [3, n0, _LPSO,
1319
+ 0,
1320
+ [_PSS, _NT],
1321
+ [() => ProfileShareSummaries, 0]
1322
+ ];
1323
+ var ListProfilesInput$ = [3, n0, _LPI,
1324
+ 0,
1325
+ [_PNP, _POT, _NT, _MR],
1326
+ [[0, { [_hQ]: _PNP }], [0, { [_hQ]: _POT }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
1327
+ ];
1328
+ var ListProfilesOutput$ = [3, n0, _LPO,
1329
+ 0,
1330
+ [_PS, _NT],
1331
+ [() => ProfileSummaries, 0]
1332
+ ];
1333
+ var ListReviewTemplateAnswersInput$ = [3, n0, _LRTAI,
1334
+ 0,
1335
+ [_TA, _LAen, _PI, _NT, _MR],
1336
+ [[0, 1], [0, 1], [0, { [_hQ]: _PI }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]], 2
1337
+ ];
1338
+ var ListReviewTemplateAnswersOutput$ = [3, n0, _LRTAO,
1339
+ 0,
1340
+ [_TA, _LAen, _ASn, _NT],
1341
+ [0, 0, () => ReviewTemplateAnswerSummaries, 0]
1342
+ ];
1343
+ var ListReviewTemplatesInput$ = [3, n0, _LRTI,
1344
+ 0,
1345
+ [_NT, _MR],
1346
+ [[0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
1347
+ ];
1348
+ var ListReviewTemplatesOutput$ = [3, n0, _LRTO,
1349
+ 0,
1350
+ [_RTev, _NT],
1351
+ [() => ReviewTemplates, 0]
1352
+ ];
1353
+ var ListShareInvitationsInput$ = [3, n0, _LSII,
1354
+ 0,
1355
+ [_WNP, _LNP, _SRT, _NT, _MR, _PNP, _TNP],
1356
+ [[0, { [_hQ]: _WNP }], [0, { [_hQ]: _LNP }], [0, { [_hQ]: _SRT }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _PNP }], [0, { [_hQ]: _TNP }]]
1357
+ ];
1358
+ var ListShareInvitationsOutput$ = [3, n0, _LSIO,
1359
+ 0,
1360
+ [_SIS, _NT],
1361
+ [() => ShareInvitationSummaries, 0]
1362
+ ];
1363
+ var ListTagsForResourceInput$ = [3, n0, _LTFRI,
1364
+ 0,
1365
+ [_WA],
1366
+ [[0, 1]], 1
1367
+ ];
1368
+ var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
1369
+ 0,
1370
+ [_Ta],
1371
+ [128 | 0]
1372
+ ];
1373
+ var ListTemplateSharesInput$ = [3, n0, _LTSI,
1374
+ 0,
1375
+ [_TA, _SWP, _NT, _MR, _St],
1376
+ [[0, 1], [0, { [_hQ]: _SWP }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _St }]], 1
1377
+ ];
1378
+ var ListTemplateSharesOutput$ = [3, n0, _LTSO,
1379
+ 0,
1380
+ [_TA, _TSS, _NT],
1381
+ [0, () => TemplateShareSummaries, 0]
1382
+ ];
1383
+ var ListWorkloadSharesInput$ = [3, n0, _LWSI,
1384
+ 0,
1385
+ [_WI, _SWP, _NT, _MR, _St],
1386
+ [[0, 1], [0, { [_hQ]: _SWP }], [0, { [_hQ]: _NT }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _St }]], 1
1387
+ ];
1388
+ var ListWorkloadSharesOutput$ = [3, n0, _LWSO,
1389
+ 0,
1390
+ [_WI, _WSS, _NT],
1391
+ [0, () => WorkloadShareSummaries, 0]
1392
+ ];
1393
+ var ListWorkloadsInput$ = [3, n0, _LWI,
1394
+ 0,
1395
+ [_WNP, _NT, _MR],
1396
+ [0, 0, 1]
1397
+ ];
1398
+ var ListWorkloadsOutput$ = [3, n0, _LWO,
1399
+ 0,
1400
+ [_WS, _NT],
1401
+ [() => WorkloadSummaries, 0]
1402
+ ];
1403
+ var Milestone$ = [3, n0, _Mi,
1404
+ 0,
1405
+ [_MNi, _MN, _RAe, _W],
1406
+ [1, 0, 4, () => Workload$]
1407
+ ];
1408
+ var MilestoneSummary$ = [3, n0, _MSi,
1409
+ 0,
1410
+ [_MNi, _MN, _RAe, _WSo],
1411
+ [1, 0, 4, () => WorkloadSummary$]
1412
+ ];
1413
+ var NotificationSummary$ = [3, n0, _NSo,
1414
+ 0,
1415
+ [_T, _LUS],
1416
+ [0, () => LensUpgradeSummary$]
1417
+ ];
1418
+ var PillarDifference$ = [3, n0, _PDi,
1419
+ 0,
1420
+ [_PI, _PNi, _DS, _QDu],
1421
+ [0, 0, 0, () => QuestionDifferences]
1422
+ ];
1423
+ var PillarMetric$ = [3, n0, _PM,
1424
+ 0,
1425
+ [_PI, _RC, _Q],
1426
+ [0, 128 | 1, () => QuestionMetrics]
1427
+ ];
1428
+ var PillarReviewSummary$ = [3, n0, _PRSi,
1429
+ 0,
1430
+ [_PI, _PNi, _N, _RC, _PRC],
1431
+ [0, 0, 0, 128 | 1, 128 | 1]
1432
+ ];
1433
+ var Profile$ = [3, n0, _Pr,
1434
+ 0,
1435
+ [_PAr, _PV, _PN, _PD, _PQ, _O, _CAr, _UA, _SII, _Ta],
1436
+ [0, 0, 0, 0, () => ProfileQuestions, 0, 4, 4, 0, 128 | 0]
1437
+ ];
1438
+ var ProfileChoice$ = [3, n0, _PC,
1439
+ 0,
1440
+ [_CI, _CT, _CDho],
1441
+ [0, 0, 0]
1442
+ ];
1443
+ var ProfileNotificationSummary$ = [3, n0, _PNS,
1444
+ 0,
1445
+ [_CPV, _LPV, _T, _PAr, _PN, _WI, _WN],
1446
+ [0, 0, 0, 0, 0, 0, 0]
1447
+ ];
1448
+ var ProfileQuestion$ = [3, n0, _PQr,
1449
+ 0,
1450
+ [_QI, _QT, _QD, _QCu, _SCI, _MSC, _MSCa],
1451
+ [0, 0, 0, () => ProfileQuestionChoices, 64 | 0, 1, 1]
1452
+ ];
1453
+ var ProfileQuestionUpdate$ = [3, n0, _PQU,
1454
+ 0,
1455
+ [_QI, _SCI],
1456
+ [0, 64 | 0]
1457
+ ];
1458
+ var ProfileShareSummary$ = [3, n0, _PSSr,
1459
+ 0,
1460
+ [_SI, _SW, _St, _SM],
1461
+ [0, 0, 0, 0]
1462
+ ];
1463
+ var ProfileSummary$ = [3, n0, _PSr,
1464
+ 0,
1465
+ [_PAr, _PV, _PN, _PD, _O, _CAr, _UA],
1466
+ [0, 0, 0, 0, 0, 4, 4]
1467
+ ];
1468
+ var ProfileTemplate$ = [3, n0, _PTr,
1469
+ 0,
1470
+ [_TN, _TQ, _CAr, _UA],
1471
+ [0, () => TemplateQuestions, 4, 4]
1472
+ ];
1473
+ var ProfileTemplateChoice$ = [3, n0, _PTC,
1474
+ 0,
1475
+ [_CI, _CT, _CDho],
1476
+ [0, 0, 0]
1477
+ ];
1478
+ var ProfileTemplateQuestion$ = [3, n0, _PTQ,
1479
+ 0,
1480
+ [_QI, _QT, _QD, _QCu, _MSC, _MSCa],
1481
+ [0, 0, 0, () => ProfileTemplateQuestionChoices, 1, 1]
1482
+ ];
1483
+ var QuestionDifference$ = [3, n0, _QDue,
1484
+ 0,
1485
+ [_QI, _QT, _DS],
1486
+ [0, 0, 0]
1487
+ ];
1488
+ var QuestionMetric$ = [3, n0, _QM,
1489
+ 0,
1490
+ [_QI, _Ri, _BPe],
1491
+ [0, 0, () => BestPractices]
1492
+ ];
1493
+ var ReviewTemplate$ = [3, n0, _RTe,
1494
+ 0,
1495
+ [_D, _L, _N, _QCue, _O, _UA, _TA, _TN, _Ta, _US, _SII],
1496
+ [0, 64 | 0, 0, 128 | 1, 0, 4, 0, 0, 128 | 0, 0, 0]
1497
+ ];
1498
+ var ReviewTemplateAnswer$ = [3, n0, _RTAe,
1499
+ 0,
1500
+ [_QI, _PI, _QT, _QD, _IPU, _HRU, _HRDT, _Ch, _SCe, _CA, _IA, _ASns, _N, _R],
1501
+ [0, 0, 0, 0, 0, 0, 0, () => Choices, 64 | 0, () => ChoiceAnswers, 2, 0, 0, 0]
1502
+ ];
1503
+ var ReviewTemplateAnswerSummary$ = [3, n0, _RTAS,
1504
+ 0,
1505
+ [_QI, _PI, _QT, _Ch, _SCe, _CAS, _IA, _ASns, _R, _QTu],
1506
+ [0, 0, 0, () => Choices, 64 | 0, () => ChoiceAnswerSummaries, 2, 0, 0, 0]
1507
+ ];
1508
+ var ReviewTemplateLensReview$ = [3, n0, _RTLR,
1509
+ 0,
1510
+ [_LAen, _LAe, _LV, _LN, _LS, _PRS, _UA, _N, _QCue, _NT],
1511
+ [0, 0, 0, 0, 0, () => ReviewTemplatePillarReviewSummaries, 4, 0, 128 | 1, 0]
1512
+ ];
1513
+ var ReviewTemplatePillarReviewSummary$ = [3, n0, _RTPRS,
1514
+ 0,
1515
+ [_PI, _PNi, _N, _QCue],
1516
+ [0, 0, 0, 128 | 1]
1517
+ ];
1518
+ var ReviewTemplateSummary$ = [3, n0, _RTS,
1519
+ 0,
1520
+ [_D, _L, _O, _UA, _TA, _TN, _US],
1521
+ [0, 64 | 0, 0, 4, 0, 0, 0]
1522
+ ];
1523
+ var SelectedPillar$ = [3, n0, _SPe,
1524
+ 0,
1525
+ [_PI, _SQI],
1526
+ [0, 64 | 0]
1527
+ ];
1528
+ var ShareInvitation$ = [3, n0, _SIh,
1529
+ 0,
1530
+ [_SII, _SRT, _WI, _LAen, _LAe, _PAr, _TA],
1531
+ [0, 0, 0, 0, 0, 0, 0]
1532
+ ];
1533
+ var ShareInvitationSummary$ = [3, n0, _SISh,
1534
+ 0,
1535
+ [_SII, _SB, _SW, _PT, _SRT, _WN, _WI, _LN, _LAe, _PN, _PAr, _TN, _TA],
1536
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
1537
+ ];
1538
+ var TagResourceInput$ = [3, n0, _TRI,
1539
+ 0,
1540
+ [_WA, _Ta],
1541
+ [[0, 1], 128 | 0], 2
1542
+ ];
1543
+ var TagResourceOutput$ = [3, n0, _TRO,
1544
+ 0,
1545
+ [],
1546
+ []
1547
+ ];
1548
+ var TemplateShareSummary$ = [3, n0, _TSSe,
1549
+ 0,
1550
+ [_SI, _SW, _St, _SM],
1551
+ [0, 0, 0, 0]
1552
+ ];
1553
+ var UntagResourceInput$ = [3, n0, _URI,
1554
+ 0,
1555
+ [_WA, _TK],
1556
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
1557
+ ];
1558
+ var UntagResourceOutput$ = [3, n0, _URO,
1559
+ 0,
1560
+ [],
1561
+ []
1562
+ ];
1563
+ var UpdateAnswerInput$ = [3, n0, _UAI,
1564
+ 0,
1565
+ [_WI, _LAen, _QI, _SCe, _CUh, _N, _IA, _R],
1566
+ [[0, 1], [0, 1], [0, 1], 64 | 0, () => ChoiceUpdates, 0, 2, 0], 3
1567
+ ];
1568
+ var UpdateAnswerOutput$ = [3, n0, _UAO,
1569
+ 0,
1570
+ [_WI, _LAen, _LAe, _A],
1571
+ [0, 0, 0, () => Answer$]
1572
+ ];
1573
+ var UpdateGlobalSettingsInput$ = [3, n0, _UGSI,
1574
+ 0,
1575
+ [_OSS, _DIS, _JC],
1576
+ [0, 0, () => AccountJiraConfigurationInput$]
1577
+ ];
1578
+ var UpdateIntegrationInput$ = [3, n0, _UII,
1579
+ 0,
1580
+ [_WI, _ISn, _CRT],
1581
+ [[0, 1], 0, [0, 4]], 2
1582
+ ];
1583
+ var UpdateLensReviewInput$ = [3, n0, _ULRI,
1584
+ 0,
1585
+ [_WI, _LAen, _LNe, _PNil, _JC],
1586
+ [[0, 1], [0, 1], 0, 128 | 0, () => JiraSelectedQuestionConfiguration$], 2
1587
+ ];
1588
+ var UpdateLensReviewOutput$ = [3, n0, _ULRO,
1589
+ 0,
1590
+ [_WI, _LR],
1591
+ [0, () => LensReview$]
1592
+ ];
1593
+ var UpdateProfileInput$ = [3, n0, _UPI,
1594
+ 0,
1595
+ [_PAr, _PD, _PQ],
1596
+ [[0, 1], 0, () => ProfileQuestionUpdates], 1
1597
+ ];
1598
+ var UpdateProfileOutput$ = [3, n0, _UPO,
1599
+ 0,
1600
+ [_Pr],
1601
+ [() => Profile$]
1602
+ ];
1603
+ var UpdateReviewTemplateAnswerInput$ = [3, n0, _URTAI,
1604
+ 0,
1605
+ [_TA, _LAen, _QI, _SCe, _CUh, _N, _IA, _R],
1606
+ [[0, 1], [0, 1], [0, 1], 64 | 0, () => ChoiceUpdates, 0, 2, 0], 3
1607
+ ];
1608
+ var UpdateReviewTemplateAnswerOutput$ = [3, n0, _URTAO,
1609
+ 0,
1610
+ [_TA, _LAen, _A],
1611
+ [0, 0, () => ReviewTemplateAnswer$]
1612
+ ];
1613
+ var UpdateReviewTemplateInput$ = [3, n0, _URTI,
1614
+ 0,
1615
+ [_TA, _TN, _D, _N, _LTA, _LTD],
1616
+ [[0, 1], 0, 0, 0, 64 | 0, 64 | 0], 1
1617
+ ];
1618
+ var UpdateReviewTemplateLensReviewInput$ = [3, n0, _URTLRI,
1619
+ 0,
1620
+ [_TA, _LAen, _LNe, _PNil],
1621
+ [[0, 1], [0, 1], 0, 128 | 0], 2
1622
+ ];
1623
+ var UpdateReviewTemplateLensReviewOutput$ = [3, n0, _URTLRO,
1624
+ 0,
1625
+ [_TA, _LR],
1626
+ [0, () => ReviewTemplateLensReview$]
1627
+ ];
1628
+ var UpdateReviewTemplateOutput$ = [3, n0, _URTO,
1629
+ 0,
1630
+ [_RTe],
1631
+ [() => ReviewTemplate$]
1632
+ ];
1633
+ var UpdateShareInvitationInput$ = [3, n0, _USII,
1634
+ 0,
1635
+ [_SII, _SIA],
1636
+ [[0, 1], 0], 2
1637
+ ];
1638
+ var UpdateShareInvitationOutput$ = [3, n0, _USIO,
1639
+ 0,
1640
+ [_SIh],
1641
+ [() => ShareInvitation$]
1642
+ ];
1643
+ var UpdateWorkloadInput$ = [3, n0, _UWI,
1644
+ 0,
1645
+ [_WI, _WN, _D, _E, _AIc, _ARw, _NAR, _PP, _AD, _RO, _IROUA, _IT, _In, _N, _ISmpr, _DC, _Ap, _JC],
1646
+ [[0, 1], 0, 0, 0, 64 | 0, 64 | 0, 64 | 0, 64 | 0, 0, 0, 2, 0, 0, 0, 0, () => WorkloadDiscoveryConfig$, 64 | 0, () => WorkloadJiraConfigurationInput$], 1
1647
+ ];
1648
+ var UpdateWorkloadOutput$ = [3, n0, _UWO,
1649
+ 0,
1650
+ [_W],
1651
+ [() => Workload$]
1652
+ ];
1653
+ var UpdateWorkloadShareInput$ = [3, n0, _UWSI,
1654
+ 0,
1655
+ [_SI, _WI, _PT],
1656
+ [[0, 1], [0, 1], 0], 3
1657
+ ];
1658
+ var UpdateWorkloadShareOutput$ = [3, n0, _UWSO,
1659
+ 0,
1660
+ [_WI, _WSor],
1661
+ [0, () => WorkloadShare$]
1662
+ ];
1663
+ var UpgradeLensReviewInput$ = [3, n0, _ULRIp,
1664
+ 0,
1665
+ [_WI, _LAen, _MN, _CRT],
1666
+ [[0, 1], [0, 1], 0, 0], 3
1667
+ ];
1668
+ var UpgradeProfileVersionInput$ = [3, n0, _UPVI,
1669
+ 0,
1670
+ [_WI, _PAr, _MN, _CRT],
1671
+ [[0, 1], [0, 1], 0, [0, 4]], 2
1672
+ ];
1673
+ var UpgradeReviewTemplateLensReviewInput$ = [3, n0, _URTLRIp,
1674
+ 0,
1675
+ [_TA, _LAen, _CRT],
1676
+ [[0, 1], [0, 1], 0], 2
1677
+ ];
1678
+ var ValidationExceptionField$ = [3, n0, _VEF,
1679
+ 0,
1680
+ [_Na, _M],
1681
+ [0, 0], 2
1682
+ ];
1683
+ var VersionDifferences$ = [3, n0, _VD,
1684
+ 0,
1685
+ [_PDil],
1686
+ [() => PillarDifferences]
1687
+ ];
1688
+ var Workload$ = [3, n0, _W,
1689
+ 0,
1690
+ [_WI, _WA, _WN, _D, _E, _UA, _AIc, _ARw, _NAR, _AD, _RO, _RRD, _IROUA, _IT, _In, _N, _ISmpr, _RC, _PP, _L, _O, _SII, _Ta, _DC, _Ap, _Pro, _PRC, _JC],
1691
+ [0, 0, 0, 0, 0, 4, 64 | 0, 64 | 0, 64 | 0, 0, 0, 4, 2, 0, 0, 0, 0, 128 | 1, 64 | 0, 64 | 0, 0, 0, 128 | 0, () => WorkloadDiscoveryConfig$, 64 | 0, () => WorkloadProfiles, 128 | 1, () => WorkloadJiraConfigurationOutput$]
1692
+ ];
1693
+ var WorkloadDiscoveryConfig$ = [3, n0, _WDC,
1694
+ 0,
1695
+ [_TAIS, _WRD],
1696
+ [0, 64 | 0]
1697
+ ];
1698
+ var WorkloadJiraConfigurationInput$ = [3, n0, _WJCI,
1699
+ 0,
1700
+ [_IMS, _IMT, _JPK],
1701
+ [0, 0, 0]
1702
+ ];
1703
+ var WorkloadJiraConfigurationOutput$ = [3, n0, _WJCO,
1704
+ 0,
1705
+ [_IMS, _IMT, _JPK, _SM],
1706
+ [0, 0, 0, 0]
1707
+ ];
1708
+ var WorkloadProfile$ = [3, n0, _WP,
1709
+ 0,
1710
+ [_PAr, _PV],
1711
+ [0, 0]
1712
+ ];
1713
+ var WorkloadShare$ = [3, n0, _WSor,
1714
+ 0,
1715
+ [_SI, _SB, _SW, _PT, _St, _WN, _WI],
1716
+ [0, 0, 0, 0, 0, 0, 0]
1717
+ ];
1718
+ var WorkloadShareSummary$ = [3, n0, _WSSo,
1719
+ 0,
1720
+ [_SI, _SW, _PT, _St, _SM],
1721
+ [0, 0, 0, 0, 0]
1722
+ ];
1723
+ var WorkloadSummary$ = [3, n0, _WSo,
1724
+ 0,
1725
+ [_WI, _WA, _WN, _O, _UA, _L, _RC, _ISmpr, _Pro, _PRC],
1726
+ [0, 0, 0, 0, 4, 64 | 0, 128 | 1, 0, () => WorkloadProfiles, 128 | 1]
1727
+ ];
1728
+ var __Unit = "unit";
1729
+ var AdditionalResourcesList = [1, n0, _ARL,
1730
+ 0, () => AdditionalResources$
1731
+ ];
1732
+ var AnswerSummaries = [1, n0, _ASn,
1733
+ 0, () => AnswerSummary$
1734
+ ];
1735
+ var BestPractices = [1, n0, _BPe,
1736
+ 0, () => BestPractice$
1737
+ ];
1738
+ var CheckDetails = [1, n0, _CDh,
1739
+ 0, () => CheckDetail$
1740
+ ];
1741
+ var CheckSummaries = [1, n0, _CSh,
1742
+ 0, () => CheckSummary$
1743
+ ];
1744
+ var ChoiceAnswers = [1, n0, _CA,
1745
+ 0, () => ChoiceAnswer$
1746
+ ];
1747
+ var ChoiceAnswerSummaries = [1, n0, _CAS,
1748
+ 0, () => ChoiceAnswerSummary$
1749
+ ];
1750
+ var ChoiceImprovementPlans = [1, n0, _CIPh,
1751
+ 0, () => ChoiceImprovementPlan$
1752
+ ];
1753
+ var Choices = [1, n0, _Ch,
1754
+ 0, () => Choice$
1755
+ ];
1756
+ var ConsolidatedReportMetrics = [1, n0, _CRMo,
1757
+ 0, () => ConsolidatedReportMetric$
1758
+ ];
1759
+ var ImprovementSummaries = [1, n0, _ISmp,
1760
+ 0, () => ImprovementSummary$
1761
+ ];
1762
+ var LensMetrics = [1, n0, _LMe,
1763
+ 0, () => LensMetric$
1764
+ ];
1765
+ var LensReviewSummaries = [1, n0, _LRSe,
1766
+ 0, () => LensReviewSummary$
1767
+ ];
1768
+ var LensShareSummaries = [1, n0, _LSSe,
1769
+ 0, () => LensShareSummary$
1770
+ ];
1771
+ var LensSummaries = [1, n0, _LSen,
1772
+ 0, () => LensSummary$
1773
+ ];
1774
+ var MilestoneSummaries = [1, n0, _MS,
1775
+ 0, () => MilestoneSummary$
1776
+ ];
1777
+ var NotificationSummaries = [1, n0, _NS,
1778
+ 0, () => NotificationSummary$
1779
+ ];
1780
+ var PillarDifferences = [1, n0, _PDil,
1781
+ 0, () => PillarDifference$
1782
+ ];
1783
+ var PillarMetrics = [1, n0, _PMi,
1784
+ 0, () => PillarMetric$
1785
+ ];
1786
+ var PillarReviewSummaries = [1, n0, _PRS,
1787
+ 0, () => PillarReviewSummary$
1788
+ ];
1789
+ var ProfileNotificationSummaries = [1, n0, _PNSr,
1790
+ 0, () => ProfileNotificationSummary$
1791
+ ];
1792
+ var ProfileQuestionChoices = [1, n0, _PQC,
1793
+ 0, () => ProfileChoice$
1794
+ ];
1795
+ var ProfileQuestions = [1, n0, _PQ,
1796
+ 0, () => ProfileQuestion$
1797
+ ];
1798
+ var ProfileQuestionUpdates = [1, n0, _PQUr,
1799
+ 0, () => ProfileQuestionUpdate$
1800
+ ];
1801
+ var ProfileShareSummaries = [1, n0, _PSS,
1802
+ 0, () => ProfileShareSummary$
1803
+ ];
1804
+ var ProfileSummaries = [1, n0, _PS,
1805
+ 0, () => ProfileSummary$
1806
+ ];
1807
+ var ProfileTemplateQuestionChoices = [1, n0, _PTQC,
1808
+ 0, () => ProfileTemplateChoice$
1809
+ ];
1810
+ var QuestionDifferences = [1, n0, _QDu,
1811
+ 0, () => QuestionDifference$
1812
+ ];
1813
+ var QuestionMetrics = [1, n0, _QMu,
1814
+ 0, () => QuestionMetric$
1815
+ ];
1816
+ var ReviewTemplateAnswerSummaries = [1, n0, _RTASe,
1817
+ 0, () => ReviewTemplateAnswerSummary$
1818
+ ];
1819
+ var ReviewTemplatePillarReviewSummaries = [1, n0, _RTPRSe,
1820
+ 0, () => ReviewTemplatePillarReviewSummary$
1821
+ ];
1822
+ var ReviewTemplates = [1, n0, _RTev,
1823
+ 0, () => ReviewTemplateSummary$
1824
+ ];
1825
+ var SelectedPillars = [1, n0, _SP,
1826
+ 0, () => SelectedPillar$
1827
+ ];
1828
+ var ShareInvitationSummaries = [1, n0, _SIS,
1829
+ 0, () => ShareInvitationSummary$
1830
+ ];
1831
+ var TemplateQuestions = [1, n0, _TQ,
1832
+ 0, () => ProfileTemplateQuestion$
1833
+ ];
1834
+ var TemplateShareSummaries = [1, n0, _TSS,
1835
+ 0, () => TemplateShareSummary$
1836
+ ];
1837
+ var Urls = [1, n0, _Ur,
1838
+ 0, () => ChoiceContent$
1839
+ ];
1840
+ var ValidationExceptionFieldList = [1, n0, _VEFL,
1841
+ 0, () => ValidationExceptionField$
1842
+ ];
1843
+ var WorkloadProfiles = [1, n0, _WPo,
1844
+ 0, () => WorkloadProfile$
1845
+ ];
1846
+ var WorkloadShareSummaries = [1, n0, _WSS,
1847
+ 0, () => WorkloadShareSummary$
1848
+ ];
1849
+ var WorkloadSummaries = [1, n0, _WS,
1850
+ 0, () => WorkloadSummary$
1851
+ ];
1852
+ var ChoiceUpdates = [2, n0, _CUh,
1853
+ 0, 0, () => ChoiceUpdate$
1854
+ ];
1855
+ var AssociateLenses$ = [9, n0, _AL,
1856
+ { [_h]: ["PATCH", "/workloads/{WorkloadId}/associateLenses", 200] }, () => AssociateLensesInput$, () => __Unit
1857
+ ];
1858
+ var AssociateProfiles$ = [9, n0, _AP,
1859
+ { [_h]: ["PATCH", "/workloads/{WorkloadId}/associateProfiles", 200] }, () => AssociateProfilesInput$, () => __Unit
1860
+ ];
1861
+ var CreateLensShare$ = [9, n0, _CLS,
1862
+ { [_h]: ["POST", "/lenses/{LensAlias}/shares", 200] }, () => CreateLensShareInput$, () => CreateLensShareOutput$
1863
+ ];
1864
+ var CreateLensVersion$ = [9, n0, _CLVr,
1865
+ { [_h]: ["POST", "/lenses/{LensAlias}/versions", 200] }, () => CreateLensVersionInput$, () => CreateLensVersionOutput$
1866
+ ];
1867
+ var CreateMilestone$ = [9, n0, _CM,
1868
+ { [_h]: ["POST", "/workloads/{WorkloadId}/milestones", 200] }, () => CreateMilestoneInput$, () => CreateMilestoneOutput$
1869
+ ];
1870
+ var CreateProfile$ = [9, n0, _CP,
1871
+ { [_h]: ["POST", "/profiles", 200] }, () => CreateProfileInput$, () => CreateProfileOutput$
1872
+ ];
1873
+ var CreateProfileShare$ = [9, n0, _CPS,
1874
+ { [_h]: ["POST", "/profiles/{ProfileArn}/shares", 200] }, () => CreateProfileShareInput$, () => CreateProfileShareOutput$
1875
+ ];
1876
+ var CreateReviewTemplate$ = [9, n0, _CRTr,
1877
+ { [_h]: ["POST", "/reviewTemplates", 200] }, () => CreateReviewTemplateInput$, () => CreateReviewTemplateOutput$
1878
+ ];
1879
+ var CreateTemplateShare$ = [9, n0, _CTS,
1880
+ { [_h]: ["POST", "/templates/shares/{TemplateArn}", 200] }, () => CreateTemplateShareInput$, () => CreateTemplateShareOutput$
1881
+ ];
1882
+ var CreateWorkload$ = [9, n0, _CW,
1883
+ { [_h]: ["POST", "/workloads", 200] }, () => CreateWorkloadInput$, () => CreateWorkloadOutput$
1884
+ ];
1885
+ var CreateWorkloadShare$ = [9, n0, _CWS,
1886
+ { [_h]: ["POST", "/workloads/{WorkloadId}/shares", 200] }, () => CreateWorkloadShareInput$, () => CreateWorkloadShareOutput$
1887
+ ];
1888
+ var DeleteLens$ = [9, n0, _DL,
1889
+ { [_h]: ["DELETE", "/lenses/{LensAlias}", 200] }, () => DeleteLensInput$, () => __Unit
1890
+ ];
1891
+ var DeleteLensShare$ = [9, n0, _DLS,
1892
+ { [_h]: ["DELETE", "/lenses/{LensAlias}/shares/{ShareId}", 200] }, () => DeleteLensShareInput$, () => __Unit
1893
+ ];
1894
+ var DeleteProfile$ = [9, n0, _DP,
1895
+ { [_h]: ["DELETE", "/profiles/{ProfileArn}", 200] }, () => DeleteProfileInput$, () => __Unit
1896
+ ];
1897
+ var DeleteProfileShare$ = [9, n0, _DPS,
1898
+ { [_h]: ["DELETE", "/profiles/{ProfileArn}/shares/{ShareId}", 200] }, () => DeleteProfileShareInput$, () => __Unit
1899
+ ];
1900
+ var DeleteReviewTemplate$ = [9, n0, _DRT,
1901
+ { [_h]: ["DELETE", "/reviewTemplates/{TemplateArn}", 200] }, () => DeleteReviewTemplateInput$, () => __Unit
1902
+ ];
1903
+ var DeleteTemplateShare$ = [9, n0, _DTS,
1904
+ { [_h]: ["DELETE", "/templates/shares/{TemplateArn}/{ShareId}", 200] }, () => DeleteTemplateShareInput$, () => __Unit
1905
+ ];
1906
+ var DeleteWorkload$ = [9, n0, _DW,
1907
+ { [_h]: ["DELETE", "/workloads/{WorkloadId}", 200] }, () => DeleteWorkloadInput$, () => __Unit
1908
+ ];
1909
+ var DeleteWorkloadShare$ = [9, n0, _DWS,
1910
+ { [_h]: ["DELETE", "/workloads/{WorkloadId}/shares/{ShareId}", 200] }, () => DeleteWorkloadShareInput$, () => __Unit
1911
+ ];
1912
+ var DisassociateLenses$ = [9, n0, _DLi,
1913
+ { [_h]: ["PATCH", "/workloads/{WorkloadId}/disassociateLenses", 200] }, () => DisassociateLensesInput$, () => __Unit
1914
+ ];
1915
+ var DisassociateProfiles$ = [9, n0, _DPi,
1916
+ { [_h]: ["PATCH", "/workloads/{WorkloadId}/disassociateProfiles", 200] }, () => DisassociateProfilesInput$, () => __Unit
1917
+ ];
1918
+ var ExportLens$ = [9, n0, _EL,
1919
+ { [_h]: ["GET", "/lenses/{LensAlias}/export", 200] }, () => ExportLensInput$, () => ExportLensOutput$
1920
+ ];
1921
+ var GetAnswer$ = [9, n0, _GA,
1922
+ { [_h]: ["GET", "/workloads/{WorkloadId}/lensReviews/{LensAlias}/answers/{QuestionId}", 200] }, () => GetAnswerInput$, () => GetAnswerOutput$
1923
+ ];
1924
+ var GetConsolidatedReport$ = [9, n0, _GCR,
1925
+ { [_h]: ["GET", "/consolidatedReport", 200] }, () => GetConsolidatedReportInput$, () => GetConsolidatedReportOutput$
1926
+ ];
1927
+ var GetGlobalSettings$ = [9, n0, _GGS,
1928
+ { [_h]: ["GET", "/global-settings", 200] }, () => __Unit, () => GetGlobalSettingsOutput$
1929
+ ];
1930
+ var GetLens$ = [9, n0, _GL,
1931
+ { [_h]: ["GET", "/lenses/{LensAlias}", 200] }, () => GetLensInput$, () => GetLensOutput$
1932
+ ];
1933
+ var GetLensReview$ = [9, n0, _GLR,
1934
+ { [_h]: ["GET", "/workloads/{WorkloadId}/lensReviews/{LensAlias}", 200] }, () => GetLensReviewInput$, () => GetLensReviewOutput$
1935
+ ];
1936
+ var GetLensReviewReport$ = [9, n0, _GLRR,
1937
+ { [_h]: ["GET", "/workloads/{WorkloadId}/lensReviews/{LensAlias}/report", 200] }, () => GetLensReviewReportInput$, () => GetLensReviewReportOutput$
1938
+ ];
1939
+ var GetLensVersionDifference$ = [9, n0, _GLVD,
1940
+ { [_h]: ["GET", "/lenses/{LensAlias}/versionDifference", 200] }, () => GetLensVersionDifferenceInput$, () => GetLensVersionDifferenceOutput$
1941
+ ];
1942
+ var GetMilestone$ = [9, n0, _GM,
1943
+ { [_h]: ["GET", "/workloads/{WorkloadId}/milestones/{MilestoneNumber}", 200] }, () => GetMilestoneInput$, () => GetMilestoneOutput$
1944
+ ];
1945
+ var GetProfile$ = [9, n0, _GP,
1946
+ { [_h]: ["GET", "/profiles/{ProfileArn}", 200] }, () => GetProfileInput$, () => GetProfileOutput$
1947
+ ];
1948
+ var GetProfileTemplate$ = [9, n0, _GPT,
1949
+ { [_h]: ["GET", "/profileTemplate", 200] }, () => GetProfileTemplateInput$, () => GetProfileTemplateOutput$
1950
+ ];
1951
+ var GetReviewTemplate$ = [9, n0, _GRT,
1952
+ { [_h]: ["GET", "/reviewTemplates/{TemplateArn}", 200] }, () => GetReviewTemplateInput$, () => GetReviewTemplateOutput$
1953
+ ];
1954
+ var GetReviewTemplateAnswer$ = [9, n0, _GRTA,
1955
+ { [_h]: ["GET", "/reviewTemplates/{TemplateArn}/lensReviews/{LensAlias}/answers/{QuestionId}", 200] }, () => GetReviewTemplateAnswerInput$, () => GetReviewTemplateAnswerOutput$
1956
+ ];
1957
+ var GetReviewTemplateLensReview$ = [9, n0, _GRTLR,
1958
+ { [_h]: ["GET", "/reviewTemplates/{TemplateArn}/lensReviews/{LensAlias}", 200] }, () => GetReviewTemplateLensReviewInput$, () => GetReviewTemplateLensReviewOutput$
1959
+ ];
1960
+ var GetWorkload$ = [9, n0, _GW,
1961
+ { [_h]: ["GET", "/workloads/{WorkloadId}", 200] }, () => GetWorkloadInput$, () => GetWorkloadOutput$
1962
+ ];
1963
+ var ImportLens$ = [9, n0, _IL,
1964
+ { [_h]: ["PUT", "/importLens", 200] }, () => ImportLensInput$, () => ImportLensOutput$
1965
+ ];
1966
+ var ListAnswers$ = [9, n0, _LAi,
1967
+ { [_h]: ["GET", "/workloads/{WorkloadId}/lensReviews/{LensAlias}/answers", 200] }, () => ListAnswersInput$, () => ListAnswersOutput$
1968
+ ];
1969
+ var ListCheckDetails$ = [9, n0, _LCD,
1970
+ { [_h]: ["POST", "/workloads/{WorkloadId}/checks", 200] }, () => ListCheckDetailsInput$, () => ListCheckDetailsOutput$
1971
+ ];
1972
+ var ListCheckSummaries$ = [9, n0, _LCS,
1973
+ { [_h]: ["POST", "/workloads/{WorkloadId}/checkSummaries", 200] }, () => ListCheckSummariesInput$, () => ListCheckSummariesOutput$
1974
+ ];
1975
+ var ListLenses$ = [9, n0, _LL,
1976
+ { [_h]: ["GET", "/lenses", 200] }, () => ListLensesInput$, () => ListLensesOutput$
1977
+ ];
1978
+ var ListLensReviewImprovements$ = [9, n0, _LLRIi,
1979
+ { [_h]: ["GET", "/workloads/{WorkloadId}/lensReviews/{LensAlias}/improvements", 200] }, () => ListLensReviewImprovementsInput$, () => ListLensReviewImprovementsOutput$
1980
+ ];
1981
+ var ListLensReviews$ = [9, n0, _LLR,
1982
+ { [_h]: ["GET", "/workloads/{WorkloadId}/lensReviews", 200] }, () => ListLensReviewsInput$, () => ListLensReviewsOutput$
1983
+ ];
1984
+ var ListLensShares$ = [9, n0, _LLS,
1985
+ { [_h]: ["GET", "/lenses/{LensAlias}/shares", 200] }, () => ListLensSharesInput$, () => ListLensSharesOutput$
1986
+ ];
1987
+ var ListMilestones$ = [9, n0, _LMi,
1988
+ { [_h]: ["POST", "/workloads/{WorkloadId}/milestonesSummaries", 200] }, () => ListMilestonesInput$, () => ListMilestonesOutput$
1989
+ ];
1990
+ var ListNotifications$ = [9, n0, _LNi,
1991
+ { [_h]: ["POST", "/notifications", 200] }, () => ListNotificationsInput$, () => ListNotificationsOutput$
1992
+ ];
1993
+ var ListProfileNotifications$ = [9, n0, _LPN,
1994
+ { [_h]: ["GET", "/profileNotifications", 200] }, () => ListProfileNotificationsInput$, () => ListProfileNotificationsOutput$
1995
+ ];
1996
+ var ListProfiles$ = [9, n0, _LP,
1997
+ { [_h]: ["GET", "/profileSummaries", 200] }, () => ListProfilesInput$, () => ListProfilesOutput$
1998
+ ];
1999
+ var ListProfileShares$ = [9, n0, _LPS,
2000
+ { [_h]: ["GET", "/profiles/{ProfileArn}/shares", 200] }, () => ListProfileSharesInput$, () => ListProfileSharesOutput$
2001
+ ];
2002
+ var ListReviewTemplateAnswers$ = [9, n0, _LRTA,
2003
+ { [_h]: ["GET", "/reviewTemplates/{TemplateArn}/lensReviews/{LensAlias}/answers", 200] }, () => ListReviewTemplateAnswersInput$, () => ListReviewTemplateAnswersOutput$
2004
+ ];
2005
+ var ListReviewTemplates$ = [9, n0, _LRT,
2006
+ { [_h]: ["GET", "/reviewTemplates", 200] }, () => ListReviewTemplatesInput$, () => ListReviewTemplatesOutput$
2007
+ ];
2008
+ var ListShareInvitations$ = [9, n0, _LSI,
2009
+ { [_h]: ["GET", "/shareInvitations", 200] }, () => ListShareInvitationsInput$, () => ListShareInvitationsOutput$
2010
+ ];
2011
+ var ListTagsForResource$ = [9, n0, _LTFR,
2012
+ { [_h]: ["GET", "/tags/{WorkloadArn}", 200] }, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
2013
+ ];
2014
+ var ListTemplateShares$ = [9, n0, _LTS,
2015
+ { [_h]: ["GET", "/templates/shares/{TemplateArn}", 200] }, () => ListTemplateSharesInput$, () => ListTemplateSharesOutput$
2016
+ ];
2017
+ var ListWorkloads$ = [9, n0, _LW,
2018
+ { [_h]: ["POST", "/workloadsSummaries", 200] }, () => ListWorkloadsInput$, () => ListWorkloadsOutput$
2019
+ ];
2020
+ var ListWorkloadShares$ = [9, n0, _LWS,
2021
+ { [_h]: ["GET", "/workloads/{WorkloadId}/shares", 200] }, () => ListWorkloadSharesInput$, () => ListWorkloadSharesOutput$
2022
+ ];
2023
+ var TagResource$ = [9, n0, _TR,
2024
+ { [_h]: ["POST", "/tags/{WorkloadArn}", 200] }, () => TagResourceInput$, () => TagResourceOutput$
2025
+ ];
2026
+ var UntagResource$ = [9, n0, _UR,
2027
+ { [_h]: ["DELETE", "/tags/{WorkloadArn}", 200] }, () => UntagResourceInput$, () => UntagResourceOutput$
2028
+ ];
2029
+ var UpdateAnswer$ = [9, n0, _UAp,
2030
+ { [_h]: ["PATCH", "/workloads/{WorkloadId}/lensReviews/{LensAlias}/answers/{QuestionId}", 200] }, () => UpdateAnswerInput$, () => UpdateAnswerOutput$
2031
+ ];
2032
+ var UpdateGlobalSettings$ = [9, n0, _UGS,
2033
+ { [_h]: ["PATCH", "/global-settings", 200] }, () => UpdateGlobalSettingsInput$, () => __Unit
2034
+ ];
2035
+ var UpdateIntegration$ = [9, n0, _UI,
2036
+ { [_h]: ["POST", "/workloads/{WorkloadId}/updateIntegration", 200] }, () => UpdateIntegrationInput$, () => __Unit
2037
+ ];
2038
+ var UpdateLensReview$ = [9, n0, _ULR,
2039
+ { [_h]: ["PATCH", "/workloads/{WorkloadId}/lensReviews/{LensAlias}", 200] }, () => UpdateLensReviewInput$, () => UpdateLensReviewOutput$
2040
+ ];
2041
+ var UpdateProfile$ = [9, n0, _UP,
2042
+ { [_h]: ["PATCH", "/profiles/{ProfileArn}", 200] }, () => UpdateProfileInput$, () => UpdateProfileOutput$
2043
+ ];
2044
+ var UpdateReviewTemplate$ = [9, n0, _URT,
2045
+ { [_h]: ["PATCH", "/reviewTemplates/{TemplateArn}", 200] }, () => UpdateReviewTemplateInput$, () => UpdateReviewTemplateOutput$
2046
+ ];
2047
+ var UpdateReviewTemplateAnswer$ = [9, n0, _URTA,
2048
+ { [_h]: ["PATCH", "/reviewTemplates/{TemplateArn}/lensReviews/{LensAlias}/answers/{QuestionId}", 200] }, () => UpdateReviewTemplateAnswerInput$, () => UpdateReviewTemplateAnswerOutput$
2049
+ ];
2050
+ var UpdateReviewTemplateLensReview$ = [9, n0, _URTLR,
2051
+ { [_h]: ["PATCH", "/reviewTemplates/{TemplateArn}/lensReviews/{LensAlias}", 200] }, () => UpdateReviewTemplateLensReviewInput$, () => UpdateReviewTemplateLensReviewOutput$
2052
+ ];
2053
+ var UpdateShareInvitation$ = [9, n0, _USI,
2054
+ { [_h]: ["PATCH", "/shareInvitations/{ShareInvitationId}", 200] }, () => UpdateShareInvitationInput$, () => UpdateShareInvitationOutput$
2055
+ ];
2056
+ var UpdateWorkload$ = [9, n0, _UW,
2057
+ { [_h]: ["PATCH", "/workloads/{WorkloadId}", 200] }, () => UpdateWorkloadInput$, () => UpdateWorkloadOutput$
2058
+ ];
2059
+ var UpdateWorkloadShare$ = [9, n0, _UWS,
2060
+ { [_h]: ["PATCH", "/workloads/{WorkloadId}/shares/{ShareId}", 200] }, () => UpdateWorkloadShareInput$, () => UpdateWorkloadShareOutput$
2061
+ ];
2062
+ var UpgradeLensReview$ = [9, n0, _ULRp,
2063
+ { [_h]: ["PUT", "/workloads/{WorkloadId}/lensReviews/{LensAlias}/upgrade", 200] }, () => UpgradeLensReviewInput$, () => __Unit
2064
+ ];
2065
+ var UpgradeProfileVersion$ = [9, n0, _UPV,
2066
+ { [_h]: ["PUT", "/workloads/{WorkloadId}/profiles/{ProfileArn}/upgrade", 200] }, () => UpgradeProfileVersionInput$, () => __Unit
2067
+ ];
2068
+ var UpgradeReviewTemplateLensReview$ = [9, n0, _URTLRp,
2069
+ { [_h]: ["PUT", "/reviewTemplates/{TemplateArn}/lensReviews/{LensAlias}/upgrade", 200] }, () => UpgradeReviewTemplateLensReviewInput$, () => __Unit
2070
+ ];
2071
+
2072
+ const getRuntimeConfig$1 = (config) => {
2073
+ return {
2074
+ apiVersion: "2020-03-31",
2075
+ base64Decoder: config?.base64Decoder ?? fromBase64,
2076
+ base64Encoder: config?.base64Encoder ?? toBase64,
2077
+ disableHostPrefix: config?.disableHostPrefix ?? false,
2078
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
2079
+ extensions: config?.extensions ?? [],
2080
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultWellArchitectedHttpAuthSchemeProvider,
2081
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
2082
+ {
2083
+ schemeId: "aws.auth#sigv4",
2084
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
2085
+ signer: new AwsSdkSigV4Signer(),
2086
+ },
2087
+ ],
2088
+ logger: config?.logger ?? new NoOpLogger(),
2089
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
2090
+ protocolSettings: config?.protocolSettings ?? {
2091
+ defaultNamespace: "com.amazonaws.wellarchitected",
2092
+ errorTypeRegistries,
2093
+ version: "2020-03-31",
2094
+ serviceTarget: "WellArchitectedApiServiceLambda",
2095
+ },
2096
+ serviceId: config?.serviceId ?? "WellArchitected",
2097
+ urlParser: config?.urlParser ?? parseUrl,
2098
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
2099
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
2100
+ };
2101
+ };
2102
+
2103
+ const getRuntimeConfig = (config) => {
2104
+ emitWarningIfUnsupportedVersion(process.version);
2105
+ const defaultsMode = resolveDefaultsModeConfig(config);
2106
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
2107
+ const clientSharedValues = getRuntimeConfig$1(config);
2108
+ emitWarningIfUnsupportedVersion$1(process.version);
2109
+ const loaderConfig = {
2110
+ profile: config?.profile,
2111
+ logger: clientSharedValues.logger,
2112
+ };
2113
+ return {
2114
+ ...clientSharedValues,
2115
+ ...config,
2116
+ runtime: "node",
2117
+ defaultsMode,
2118
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
2119
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
2120
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
2121
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
2122
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
2123
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
2124
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
2125
+ retryMode: config?.retryMode ??
2126
+ loadConfig({
2127
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
2128
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
2129
+ }, config),
2130
+ sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
2131
+ streamCollector: config?.streamCollector ?? streamCollector,
2132
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
2133
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
2134
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
2135
+ };
2136
+ };
2137
+
34
2138
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
2139
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
2140
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -1305,120 +3409,399 @@ const ShareInvitationAction = {
1305
3409
  REJECT: "REJECT",
1306
3410
  };
1307
3411
 
3412
+ exports.AccessDeniedException = AccessDeniedException;
3413
+ exports.AccessDeniedException$ = AccessDeniedException$;
3414
+ exports.AccountJiraConfigurationInput$ = AccountJiraConfigurationInput$;
3415
+ exports.AccountJiraConfigurationOutput$ = AccountJiraConfigurationOutput$;
1308
3416
  exports.AccountJiraIssueManagementStatus = AccountJiraIssueManagementStatus;
1309
3417
  exports.AdditionalResourceType = AdditionalResourceType;
3418
+ exports.AdditionalResources$ = AdditionalResources$;
3419
+ exports.Answer$ = Answer$;
1310
3420
  exports.AnswerReason = AnswerReason;
3421
+ exports.AnswerSummary$ = AnswerSummary$;
3422
+ exports.AssociateLenses$ = AssociateLenses$;
1311
3423
  exports.AssociateLensesCommand = AssociateLensesCommand;
3424
+ exports.AssociateLensesInput$ = AssociateLensesInput$;
3425
+ exports.AssociateProfiles$ = AssociateProfiles$;
1312
3426
  exports.AssociateProfilesCommand = AssociateProfilesCommand;
3427
+ exports.AssociateProfilesInput$ = AssociateProfilesInput$;
3428
+ exports.BestPractice$ = BestPractice$;
3429
+ exports.CheckDetail$ = CheckDetail$;
1313
3430
  exports.CheckFailureReason = CheckFailureReason;
1314
3431
  exports.CheckProvider = CheckProvider;
1315
3432
  exports.CheckStatus = CheckStatus;
3433
+ exports.CheckSummary$ = CheckSummary$;
3434
+ exports.Choice$ = Choice$;
3435
+ exports.ChoiceAnswer$ = ChoiceAnswer$;
3436
+ exports.ChoiceAnswerSummary$ = ChoiceAnswerSummary$;
3437
+ exports.ChoiceContent$ = ChoiceContent$;
3438
+ exports.ChoiceImprovementPlan$ = ChoiceImprovementPlan$;
1316
3439
  exports.ChoiceReason = ChoiceReason;
1317
3440
  exports.ChoiceStatus = ChoiceStatus;
3441
+ exports.ChoiceUpdate$ = ChoiceUpdate$;
3442
+ exports.ConflictException = ConflictException;
3443
+ exports.ConflictException$ = ConflictException$;
3444
+ exports.ConsolidatedReportMetric$ = ConsolidatedReportMetric$;
3445
+ exports.CreateLensShare$ = CreateLensShare$;
1318
3446
  exports.CreateLensShareCommand = CreateLensShareCommand;
3447
+ exports.CreateLensShareInput$ = CreateLensShareInput$;
3448
+ exports.CreateLensShareOutput$ = CreateLensShareOutput$;
3449
+ exports.CreateLensVersion$ = CreateLensVersion$;
1319
3450
  exports.CreateLensVersionCommand = CreateLensVersionCommand;
3451
+ exports.CreateLensVersionInput$ = CreateLensVersionInput$;
3452
+ exports.CreateLensVersionOutput$ = CreateLensVersionOutput$;
3453
+ exports.CreateMilestone$ = CreateMilestone$;
1320
3454
  exports.CreateMilestoneCommand = CreateMilestoneCommand;
3455
+ exports.CreateMilestoneInput$ = CreateMilestoneInput$;
3456
+ exports.CreateMilestoneOutput$ = CreateMilestoneOutput$;
3457
+ exports.CreateProfile$ = CreateProfile$;
1321
3458
  exports.CreateProfileCommand = CreateProfileCommand;
3459
+ exports.CreateProfileInput$ = CreateProfileInput$;
3460
+ exports.CreateProfileOutput$ = CreateProfileOutput$;
3461
+ exports.CreateProfileShare$ = CreateProfileShare$;
1322
3462
  exports.CreateProfileShareCommand = CreateProfileShareCommand;
3463
+ exports.CreateProfileShareInput$ = CreateProfileShareInput$;
3464
+ exports.CreateProfileShareOutput$ = CreateProfileShareOutput$;
3465
+ exports.CreateReviewTemplate$ = CreateReviewTemplate$;
1323
3466
  exports.CreateReviewTemplateCommand = CreateReviewTemplateCommand;
3467
+ exports.CreateReviewTemplateInput$ = CreateReviewTemplateInput$;
3468
+ exports.CreateReviewTemplateOutput$ = CreateReviewTemplateOutput$;
3469
+ exports.CreateTemplateShare$ = CreateTemplateShare$;
1324
3470
  exports.CreateTemplateShareCommand = CreateTemplateShareCommand;
3471
+ exports.CreateTemplateShareInput$ = CreateTemplateShareInput$;
3472
+ exports.CreateTemplateShareOutput$ = CreateTemplateShareOutput$;
3473
+ exports.CreateWorkload$ = CreateWorkload$;
1325
3474
  exports.CreateWorkloadCommand = CreateWorkloadCommand;
3475
+ exports.CreateWorkloadInput$ = CreateWorkloadInput$;
3476
+ exports.CreateWorkloadOutput$ = CreateWorkloadOutput$;
3477
+ exports.CreateWorkloadShare$ = CreateWorkloadShare$;
1326
3478
  exports.CreateWorkloadShareCommand = CreateWorkloadShareCommand;
3479
+ exports.CreateWorkloadShareInput$ = CreateWorkloadShareInput$;
3480
+ exports.CreateWorkloadShareOutput$ = CreateWorkloadShareOutput$;
1327
3481
  exports.DefinitionType = DefinitionType;
3482
+ exports.DeleteLens$ = DeleteLens$;
1328
3483
  exports.DeleteLensCommand = DeleteLensCommand;
3484
+ exports.DeleteLensInput$ = DeleteLensInput$;
3485
+ exports.DeleteLensShare$ = DeleteLensShare$;
1329
3486
  exports.DeleteLensShareCommand = DeleteLensShareCommand;
3487
+ exports.DeleteLensShareInput$ = DeleteLensShareInput$;
3488
+ exports.DeleteProfile$ = DeleteProfile$;
1330
3489
  exports.DeleteProfileCommand = DeleteProfileCommand;
3490
+ exports.DeleteProfileInput$ = DeleteProfileInput$;
3491
+ exports.DeleteProfileShare$ = DeleteProfileShare$;
1331
3492
  exports.DeleteProfileShareCommand = DeleteProfileShareCommand;
3493
+ exports.DeleteProfileShareInput$ = DeleteProfileShareInput$;
3494
+ exports.DeleteReviewTemplate$ = DeleteReviewTemplate$;
1332
3495
  exports.DeleteReviewTemplateCommand = DeleteReviewTemplateCommand;
3496
+ exports.DeleteReviewTemplateInput$ = DeleteReviewTemplateInput$;
3497
+ exports.DeleteTemplateShare$ = DeleteTemplateShare$;
1333
3498
  exports.DeleteTemplateShareCommand = DeleteTemplateShareCommand;
3499
+ exports.DeleteTemplateShareInput$ = DeleteTemplateShareInput$;
3500
+ exports.DeleteWorkload$ = DeleteWorkload$;
1334
3501
  exports.DeleteWorkloadCommand = DeleteWorkloadCommand;
3502
+ exports.DeleteWorkloadInput$ = DeleteWorkloadInput$;
3503
+ exports.DeleteWorkloadShare$ = DeleteWorkloadShare$;
1335
3504
  exports.DeleteWorkloadShareCommand = DeleteWorkloadShareCommand;
3505
+ exports.DeleteWorkloadShareInput$ = DeleteWorkloadShareInput$;
1336
3506
  exports.DifferenceStatus = DifferenceStatus;
3507
+ exports.DisassociateLenses$ = DisassociateLenses$;
1337
3508
  exports.DisassociateLensesCommand = DisassociateLensesCommand;
3509
+ exports.DisassociateLensesInput$ = DisassociateLensesInput$;
3510
+ exports.DisassociateProfiles$ = DisassociateProfiles$;
1338
3511
  exports.DisassociateProfilesCommand = DisassociateProfilesCommand;
3512
+ exports.DisassociateProfilesInput$ = DisassociateProfilesInput$;
1339
3513
  exports.DiscoveryIntegrationStatus = DiscoveryIntegrationStatus;
3514
+ exports.ExportLens$ = ExportLens$;
1340
3515
  exports.ExportLensCommand = ExportLensCommand;
3516
+ exports.ExportLensInput$ = ExportLensInput$;
3517
+ exports.ExportLensOutput$ = ExportLensOutput$;
3518
+ exports.GetAnswer$ = GetAnswer$;
1341
3519
  exports.GetAnswerCommand = GetAnswerCommand;
3520
+ exports.GetAnswerInput$ = GetAnswerInput$;
3521
+ exports.GetAnswerOutput$ = GetAnswerOutput$;
3522
+ exports.GetConsolidatedReport$ = GetConsolidatedReport$;
1342
3523
  exports.GetConsolidatedReportCommand = GetConsolidatedReportCommand;
3524
+ exports.GetConsolidatedReportInput$ = GetConsolidatedReportInput$;
3525
+ exports.GetConsolidatedReportOutput$ = GetConsolidatedReportOutput$;
3526
+ exports.GetGlobalSettings$ = GetGlobalSettings$;
1343
3527
  exports.GetGlobalSettingsCommand = GetGlobalSettingsCommand;
3528
+ exports.GetGlobalSettingsOutput$ = GetGlobalSettingsOutput$;
3529
+ exports.GetLens$ = GetLens$;
1344
3530
  exports.GetLensCommand = GetLensCommand;
3531
+ exports.GetLensInput$ = GetLensInput$;
3532
+ exports.GetLensOutput$ = GetLensOutput$;
3533
+ exports.GetLensReview$ = GetLensReview$;
1345
3534
  exports.GetLensReviewCommand = GetLensReviewCommand;
3535
+ exports.GetLensReviewInput$ = GetLensReviewInput$;
3536
+ exports.GetLensReviewOutput$ = GetLensReviewOutput$;
3537
+ exports.GetLensReviewReport$ = GetLensReviewReport$;
1346
3538
  exports.GetLensReviewReportCommand = GetLensReviewReportCommand;
3539
+ exports.GetLensReviewReportInput$ = GetLensReviewReportInput$;
3540
+ exports.GetLensReviewReportOutput$ = GetLensReviewReportOutput$;
3541
+ exports.GetLensVersionDifference$ = GetLensVersionDifference$;
1347
3542
  exports.GetLensVersionDifferenceCommand = GetLensVersionDifferenceCommand;
3543
+ exports.GetLensVersionDifferenceInput$ = GetLensVersionDifferenceInput$;
3544
+ exports.GetLensVersionDifferenceOutput$ = GetLensVersionDifferenceOutput$;
3545
+ exports.GetMilestone$ = GetMilestone$;
1348
3546
  exports.GetMilestoneCommand = GetMilestoneCommand;
3547
+ exports.GetMilestoneInput$ = GetMilestoneInput$;
3548
+ exports.GetMilestoneOutput$ = GetMilestoneOutput$;
3549
+ exports.GetProfile$ = GetProfile$;
1349
3550
  exports.GetProfileCommand = GetProfileCommand;
3551
+ exports.GetProfileInput$ = GetProfileInput$;
3552
+ exports.GetProfileOutput$ = GetProfileOutput$;
3553
+ exports.GetProfileTemplate$ = GetProfileTemplate$;
1350
3554
  exports.GetProfileTemplateCommand = GetProfileTemplateCommand;
3555
+ exports.GetProfileTemplateInput$ = GetProfileTemplateInput$;
3556
+ exports.GetProfileTemplateOutput$ = GetProfileTemplateOutput$;
3557
+ exports.GetReviewTemplate$ = GetReviewTemplate$;
3558
+ exports.GetReviewTemplateAnswer$ = GetReviewTemplateAnswer$;
1351
3559
  exports.GetReviewTemplateAnswerCommand = GetReviewTemplateAnswerCommand;
3560
+ exports.GetReviewTemplateAnswerInput$ = GetReviewTemplateAnswerInput$;
3561
+ exports.GetReviewTemplateAnswerOutput$ = GetReviewTemplateAnswerOutput$;
1352
3562
  exports.GetReviewTemplateCommand = GetReviewTemplateCommand;
3563
+ exports.GetReviewTemplateInput$ = GetReviewTemplateInput$;
3564
+ exports.GetReviewTemplateLensReview$ = GetReviewTemplateLensReview$;
1353
3565
  exports.GetReviewTemplateLensReviewCommand = GetReviewTemplateLensReviewCommand;
3566
+ exports.GetReviewTemplateLensReviewInput$ = GetReviewTemplateLensReviewInput$;
3567
+ exports.GetReviewTemplateLensReviewOutput$ = GetReviewTemplateLensReviewOutput$;
3568
+ exports.GetReviewTemplateOutput$ = GetReviewTemplateOutput$;
3569
+ exports.GetWorkload$ = GetWorkload$;
1354
3570
  exports.GetWorkloadCommand = GetWorkloadCommand;
3571
+ exports.GetWorkloadInput$ = GetWorkloadInput$;
3572
+ exports.GetWorkloadOutput$ = GetWorkloadOutput$;
3573
+ exports.ImportLens$ = ImportLens$;
1355
3574
  exports.ImportLensCommand = ImportLensCommand;
3575
+ exports.ImportLensInput$ = ImportLensInput$;
3576
+ exports.ImportLensOutput$ = ImportLensOutput$;
1356
3577
  exports.ImportLensStatus = ImportLensStatus;
3578
+ exports.ImprovementSummary$ = ImprovementSummary$;
1357
3579
  exports.IntegratingService = IntegratingService;
1358
3580
  exports.IntegrationStatus = IntegrationStatus;
1359
3581
  exports.IntegrationStatusInput = IntegrationStatusInput;
3582
+ exports.InternalServerException = InternalServerException;
3583
+ exports.InternalServerException$ = InternalServerException$;
1360
3584
  exports.IssueManagementType = IssueManagementType;
3585
+ exports.JiraConfiguration$ = JiraConfiguration$;
3586
+ exports.JiraSelectedQuestionConfiguration$ = JiraSelectedQuestionConfiguration$;
3587
+ exports.Lens$ = Lens$;
3588
+ exports.LensMetric$ = LensMetric$;
3589
+ exports.LensReview$ = LensReview$;
3590
+ exports.LensReviewReport$ = LensReviewReport$;
3591
+ exports.LensReviewSummary$ = LensReviewSummary$;
3592
+ exports.LensShareSummary$ = LensShareSummary$;
1361
3593
  exports.LensStatus = LensStatus;
1362
3594
  exports.LensStatusType = LensStatusType;
3595
+ exports.LensSummary$ = LensSummary$;
1363
3596
  exports.LensType = LensType;
3597
+ exports.LensUpgradeSummary$ = LensUpgradeSummary$;
3598
+ exports.ListAnswers$ = ListAnswers$;
1364
3599
  exports.ListAnswersCommand = ListAnswersCommand;
3600
+ exports.ListAnswersInput$ = ListAnswersInput$;
3601
+ exports.ListAnswersOutput$ = ListAnswersOutput$;
3602
+ exports.ListCheckDetails$ = ListCheckDetails$;
1365
3603
  exports.ListCheckDetailsCommand = ListCheckDetailsCommand;
3604
+ exports.ListCheckDetailsInput$ = ListCheckDetailsInput$;
3605
+ exports.ListCheckDetailsOutput$ = ListCheckDetailsOutput$;
3606
+ exports.ListCheckSummaries$ = ListCheckSummaries$;
1366
3607
  exports.ListCheckSummariesCommand = ListCheckSummariesCommand;
3608
+ exports.ListCheckSummariesInput$ = ListCheckSummariesInput$;
3609
+ exports.ListCheckSummariesOutput$ = ListCheckSummariesOutput$;
3610
+ exports.ListLensReviewImprovements$ = ListLensReviewImprovements$;
1367
3611
  exports.ListLensReviewImprovementsCommand = ListLensReviewImprovementsCommand;
3612
+ exports.ListLensReviewImprovementsInput$ = ListLensReviewImprovementsInput$;
3613
+ exports.ListLensReviewImprovementsOutput$ = ListLensReviewImprovementsOutput$;
3614
+ exports.ListLensReviews$ = ListLensReviews$;
1368
3615
  exports.ListLensReviewsCommand = ListLensReviewsCommand;
3616
+ exports.ListLensReviewsInput$ = ListLensReviewsInput$;
3617
+ exports.ListLensReviewsOutput$ = ListLensReviewsOutput$;
3618
+ exports.ListLensShares$ = ListLensShares$;
1369
3619
  exports.ListLensSharesCommand = ListLensSharesCommand;
3620
+ exports.ListLensSharesInput$ = ListLensSharesInput$;
3621
+ exports.ListLensSharesOutput$ = ListLensSharesOutput$;
3622
+ exports.ListLenses$ = ListLenses$;
1370
3623
  exports.ListLensesCommand = ListLensesCommand;
3624
+ exports.ListLensesInput$ = ListLensesInput$;
3625
+ exports.ListLensesOutput$ = ListLensesOutput$;
3626
+ exports.ListMilestones$ = ListMilestones$;
1371
3627
  exports.ListMilestonesCommand = ListMilestonesCommand;
3628
+ exports.ListMilestonesInput$ = ListMilestonesInput$;
3629
+ exports.ListMilestonesOutput$ = ListMilestonesOutput$;
3630
+ exports.ListNotifications$ = ListNotifications$;
1372
3631
  exports.ListNotificationsCommand = ListNotificationsCommand;
3632
+ exports.ListNotificationsInput$ = ListNotificationsInput$;
3633
+ exports.ListNotificationsOutput$ = ListNotificationsOutput$;
3634
+ exports.ListProfileNotifications$ = ListProfileNotifications$;
1373
3635
  exports.ListProfileNotificationsCommand = ListProfileNotificationsCommand;
3636
+ exports.ListProfileNotificationsInput$ = ListProfileNotificationsInput$;
3637
+ exports.ListProfileNotificationsOutput$ = ListProfileNotificationsOutput$;
3638
+ exports.ListProfileShares$ = ListProfileShares$;
1374
3639
  exports.ListProfileSharesCommand = ListProfileSharesCommand;
3640
+ exports.ListProfileSharesInput$ = ListProfileSharesInput$;
3641
+ exports.ListProfileSharesOutput$ = ListProfileSharesOutput$;
3642
+ exports.ListProfiles$ = ListProfiles$;
1375
3643
  exports.ListProfilesCommand = ListProfilesCommand;
3644
+ exports.ListProfilesInput$ = ListProfilesInput$;
3645
+ exports.ListProfilesOutput$ = ListProfilesOutput$;
3646
+ exports.ListReviewTemplateAnswers$ = ListReviewTemplateAnswers$;
1376
3647
  exports.ListReviewTemplateAnswersCommand = ListReviewTemplateAnswersCommand;
3648
+ exports.ListReviewTemplateAnswersInput$ = ListReviewTemplateAnswersInput$;
3649
+ exports.ListReviewTemplateAnswersOutput$ = ListReviewTemplateAnswersOutput$;
3650
+ exports.ListReviewTemplates$ = ListReviewTemplates$;
1377
3651
  exports.ListReviewTemplatesCommand = ListReviewTemplatesCommand;
3652
+ exports.ListReviewTemplatesInput$ = ListReviewTemplatesInput$;
3653
+ exports.ListReviewTemplatesOutput$ = ListReviewTemplatesOutput$;
3654
+ exports.ListShareInvitations$ = ListShareInvitations$;
1378
3655
  exports.ListShareInvitationsCommand = ListShareInvitationsCommand;
3656
+ exports.ListShareInvitationsInput$ = ListShareInvitationsInput$;
3657
+ exports.ListShareInvitationsOutput$ = ListShareInvitationsOutput$;
3658
+ exports.ListTagsForResource$ = ListTagsForResource$;
1379
3659
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
3660
+ exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
3661
+ exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
3662
+ exports.ListTemplateShares$ = ListTemplateShares$;
1380
3663
  exports.ListTemplateSharesCommand = ListTemplateSharesCommand;
3664
+ exports.ListTemplateSharesInput$ = ListTemplateSharesInput$;
3665
+ exports.ListTemplateSharesOutput$ = ListTemplateSharesOutput$;
3666
+ exports.ListWorkloadShares$ = ListWorkloadShares$;
1381
3667
  exports.ListWorkloadSharesCommand = ListWorkloadSharesCommand;
3668
+ exports.ListWorkloadSharesInput$ = ListWorkloadSharesInput$;
3669
+ exports.ListWorkloadSharesOutput$ = ListWorkloadSharesOutput$;
3670
+ exports.ListWorkloads$ = ListWorkloads$;
1382
3671
  exports.ListWorkloadsCommand = ListWorkloadsCommand;
3672
+ exports.ListWorkloadsInput$ = ListWorkloadsInput$;
3673
+ exports.ListWorkloadsOutput$ = ListWorkloadsOutput$;
1383
3674
  exports.MetricType = MetricType;
3675
+ exports.Milestone$ = Milestone$;
3676
+ exports.MilestoneSummary$ = MilestoneSummary$;
3677
+ exports.NotificationSummary$ = NotificationSummary$;
1384
3678
  exports.NotificationType = NotificationType;
1385
3679
  exports.OrganizationSharingStatus = OrganizationSharingStatus;
1386
3680
  exports.PermissionType = PermissionType;
3681
+ exports.PillarDifference$ = PillarDifference$;
3682
+ exports.PillarMetric$ = PillarMetric$;
3683
+ exports.PillarReviewSummary$ = PillarReviewSummary$;
3684
+ exports.Profile$ = Profile$;
3685
+ exports.ProfileChoice$ = ProfileChoice$;
3686
+ exports.ProfileNotificationSummary$ = ProfileNotificationSummary$;
1387
3687
  exports.ProfileNotificationType = ProfileNotificationType;
1388
3688
  exports.ProfileOwnerType = ProfileOwnerType;
3689
+ exports.ProfileQuestion$ = ProfileQuestion$;
3690
+ exports.ProfileQuestionUpdate$ = ProfileQuestionUpdate$;
3691
+ exports.ProfileShareSummary$ = ProfileShareSummary$;
3692
+ exports.ProfileSummary$ = ProfileSummary$;
3693
+ exports.ProfileTemplate$ = ProfileTemplate$;
3694
+ exports.ProfileTemplateChoice$ = ProfileTemplateChoice$;
3695
+ exports.ProfileTemplateQuestion$ = ProfileTemplateQuestion$;
1389
3696
  exports.Question = Question;
3697
+ exports.QuestionDifference$ = QuestionDifference$;
3698
+ exports.QuestionMetric$ = QuestionMetric$;
1390
3699
  exports.QuestionPriority = QuestionPriority;
1391
3700
  exports.QuestionType = QuestionType;
1392
3701
  exports.ReportFormat = ReportFormat;
3702
+ exports.ResourceNotFoundException = ResourceNotFoundException;
3703
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
3704
+ exports.ReviewTemplate$ = ReviewTemplate$;
3705
+ exports.ReviewTemplateAnswer$ = ReviewTemplateAnswer$;
1393
3706
  exports.ReviewTemplateAnswerStatus = ReviewTemplateAnswerStatus;
3707
+ exports.ReviewTemplateAnswerSummary$ = ReviewTemplateAnswerSummary$;
3708
+ exports.ReviewTemplateLensReview$ = ReviewTemplateLensReview$;
3709
+ exports.ReviewTemplatePillarReviewSummary$ = ReviewTemplatePillarReviewSummary$;
3710
+ exports.ReviewTemplateSummary$ = ReviewTemplateSummary$;
1394
3711
  exports.ReviewTemplateUpdateStatus = ReviewTemplateUpdateStatus;
1395
3712
  exports.Risk = Risk;
3713
+ exports.SelectedPillar$ = SelectedPillar$;
3714
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
3715
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
3716
+ exports.ShareInvitation$ = ShareInvitation$;
1396
3717
  exports.ShareInvitationAction = ShareInvitationAction;
3718
+ exports.ShareInvitationSummary$ = ShareInvitationSummary$;
1397
3719
  exports.ShareResourceType = ShareResourceType;
1398
3720
  exports.ShareStatus = ShareStatus;
3721
+ exports.TagResource$ = TagResource$;
1399
3722
  exports.TagResourceCommand = TagResourceCommand;
3723
+ exports.TagResourceInput$ = TagResourceInput$;
3724
+ exports.TagResourceOutput$ = TagResourceOutput$;
3725
+ exports.TemplateShareSummary$ = TemplateShareSummary$;
3726
+ exports.ThrottlingException = ThrottlingException;
3727
+ exports.ThrottlingException$ = ThrottlingException$;
1400
3728
  exports.TrustedAdvisorIntegrationStatus = TrustedAdvisorIntegrationStatus;
3729
+ exports.UntagResource$ = UntagResource$;
1401
3730
  exports.UntagResourceCommand = UntagResourceCommand;
3731
+ exports.UntagResourceInput$ = UntagResourceInput$;
3732
+ exports.UntagResourceOutput$ = UntagResourceOutput$;
3733
+ exports.UpdateAnswer$ = UpdateAnswer$;
1402
3734
  exports.UpdateAnswerCommand = UpdateAnswerCommand;
3735
+ exports.UpdateAnswerInput$ = UpdateAnswerInput$;
3736
+ exports.UpdateAnswerOutput$ = UpdateAnswerOutput$;
3737
+ exports.UpdateGlobalSettings$ = UpdateGlobalSettings$;
1403
3738
  exports.UpdateGlobalSettingsCommand = UpdateGlobalSettingsCommand;
3739
+ exports.UpdateGlobalSettingsInput$ = UpdateGlobalSettingsInput$;
3740
+ exports.UpdateIntegration$ = UpdateIntegration$;
1404
3741
  exports.UpdateIntegrationCommand = UpdateIntegrationCommand;
3742
+ exports.UpdateIntegrationInput$ = UpdateIntegrationInput$;
3743
+ exports.UpdateLensReview$ = UpdateLensReview$;
1405
3744
  exports.UpdateLensReviewCommand = UpdateLensReviewCommand;
3745
+ exports.UpdateLensReviewInput$ = UpdateLensReviewInput$;
3746
+ exports.UpdateLensReviewOutput$ = UpdateLensReviewOutput$;
3747
+ exports.UpdateProfile$ = UpdateProfile$;
1406
3748
  exports.UpdateProfileCommand = UpdateProfileCommand;
3749
+ exports.UpdateProfileInput$ = UpdateProfileInput$;
3750
+ exports.UpdateProfileOutput$ = UpdateProfileOutput$;
3751
+ exports.UpdateReviewTemplate$ = UpdateReviewTemplate$;
3752
+ exports.UpdateReviewTemplateAnswer$ = UpdateReviewTemplateAnswer$;
1407
3753
  exports.UpdateReviewTemplateAnswerCommand = UpdateReviewTemplateAnswerCommand;
3754
+ exports.UpdateReviewTemplateAnswerInput$ = UpdateReviewTemplateAnswerInput$;
3755
+ exports.UpdateReviewTemplateAnswerOutput$ = UpdateReviewTemplateAnswerOutput$;
1408
3756
  exports.UpdateReviewTemplateCommand = UpdateReviewTemplateCommand;
3757
+ exports.UpdateReviewTemplateInput$ = UpdateReviewTemplateInput$;
3758
+ exports.UpdateReviewTemplateLensReview$ = UpdateReviewTemplateLensReview$;
1409
3759
  exports.UpdateReviewTemplateLensReviewCommand = UpdateReviewTemplateLensReviewCommand;
3760
+ exports.UpdateReviewTemplateLensReviewInput$ = UpdateReviewTemplateLensReviewInput$;
3761
+ exports.UpdateReviewTemplateLensReviewOutput$ = UpdateReviewTemplateLensReviewOutput$;
3762
+ exports.UpdateReviewTemplateOutput$ = UpdateReviewTemplateOutput$;
3763
+ exports.UpdateShareInvitation$ = UpdateShareInvitation$;
1410
3764
  exports.UpdateShareInvitationCommand = UpdateShareInvitationCommand;
3765
+ exports.UpdateShareInvitationInput$ = UpdateShareInvitationInput$;
3766
+ exports.UpdateShareInvitationOutput$ = UpdateShareInvitationOutput$;
3767
+ exports.UpdateWorkload$ = UpdateWorkload$;
1411
3768
  exports.UpdateWorkloadCommand = UpdateWorkloadCommand;
3769
+ exports.UpdateWorkloadInput$ = UpdateWorkloadInput$;
3770
+ exports.UpdateWorkloadOutput$ = UpdateWorkloadOutput$;
3771
+ exports.UpdateWorkloadShare$ = UpdateWorkloadShare$;
1412
3772
  exports.UpdateWorkloadShareCommand = UpdateWorkloadShareCommand;
3773
+ exports.UpdateWorkloadShareInput$ = UpdateWorkloadShareInput$;
3774
+ exports.UpdateWorkloadShareOutput$ = UpdateWorkloadShareOutput$;
3775
+ exports.UpgradeLensReview$ = UpgradeLensReview$;
1413
3776
  exports.UpgradeLensReviewCommand = UpgradeLensReviewCommand;
3777
+ exports.UpgradeLensReviewInput$ = UpgradeLensReviewInput$;
3778
+ exports.UpgradeProfileVersion$ = UpgradeProfileVersion$;
1414
3779
  exports.UpgradeProfileVersionCommand = UpgradeProfileVersionCommand;
3780
+ exports.UpgradeProfileVersionInput$ = UpgradeProfileVersionInput$;
3781
+ exports.UpgradeReviewTemplateLensReview$ = UpgradeReviewTemplateLensReview$;
1415
3782
  exports.UpgradeReviewTemplateLensReviewCommand = UpgradeReviewTemplateLensReviewCommand;
3783
+ exports.UpgradeReviewTemplateLensReviewInput$ = UpgradeReviewTemplateLensReviewInput$;
3784
+ exports.ValidationException = ValidationException;
3785
+ exports.ValidationException$ = ValidationException$;
3786
+ exports.ValidationExceptionField$ = ValidationExceptionField$;
1416
3787
  exports.ValidationExceptionReason = ValidationExceptionReason;
3788
+ exports.VersionDifferences$ = VersionDifferences$;
1417
3789
  exports.WellArchitected = WellArchitected;
1418
3790
  exports.WellArchitectedClient = WellArchitectedClient;
3791
+ exports.WellArchitectedServiceException = WellArchitectedServiceException;
3792
+ exports.WellArchitectedServiceException$ = WellArchitectedServiceException$;
3793
+ exports.Workload$ = Workload$;
3794
+ exports.WorkloadDiscoveryConfig$ = WorkloadDiscoveryConfig$;
1419
3795
  exports.WorkloadEnvironment = WorkloadEnvironment;
1420
3796
  exports.WorkloadImprovementStatus = WorkloadImprovementStatus;
1421
3797
  exports.WorkloadIssueManagementStatus = WorkloadIssueManagementStatus;
3798
+ exports.WorkloadJiraConfigurationInput$ = WorkloadJiraConfigurationInput$;
3799
+ exports.WorkloadJiraConfigurationOutput$ = WorkloadJiraConfigurationOutput$;
3800
+ exports.WorkloadProfile$ = WorkloadProfile$;
3801
+ exports.WorkloadShare$ = WorkloadShare$;
3802
+ exports.WorkloadShareSummary$ = WorkloadShareSummary$;
3803
+ exports.WorkloadSummary$ = WorkloadSummary$;
3804
+ exports.errorTypeRegistries = errorTypeRegistries;
1422
3805
  exports.paginateGetConsolidatedReport = paginateGetConsolidatedReport;
1423
3806
  exports.paginateListAnswers = paginateListAnswers;
1424
3807
  exports.paginateListCheckDetails = paginateListCheckDetails;