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