@aws-sdk/client-application-insights 3.987.0 → 3.988.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 +52 -1078
- package/dist-cjs/models/ApplicationInsightsServiceException.js +12 -0
- package/dist-cjs/models/errors.js +126 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +817 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +53 -47
- package/dist-types/schemas/schemas_0.d.ts +15 -8
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +10 -8
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var ApplicationInsightsServiceException = require('./models/ApplicationInsightsServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,924 +113,6 @@ class ApplicationInsightsClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class ApplicationInsightsServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, ApplicationInsightsServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends ApplicationInsightsServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AccessDeniedException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class InternalServerException extends ApplicationInsightsServiceException {
|
|
135
|
-
name = "InternalServerException";
|
|
136
|
-
$fault = "server";
|
|
137
|
-
Message;
|
|
138
|
-
constructor(opts) {
|
|
139
|
-
super({
|
|
140
|
-
name: "InternalServerException",
|
|
141
|
-
$fault: "server",
|
|
142
|
-
...opts,
|
|
143
|
-
});
|
|
144
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
145
|
-
this.Message = opts.Message;
|
|
146
|
-
}
|
|
147
|
-
}
|
|
148
|
-
class ResourceInUseException extends ApplicationInsightsServiceException {
|
|
149
|
-
name = "ResourceInUseException";
|
|
150
|
-
$fault = "client";
|
|
151
|
-
Message;
|
|
152
|
-
constructor(opts) {
|
|
153
|
-
super({
|
|
154
|
-
name: "ResourceInUseException",
|
|
155
|
-
$fault: "client",
|
|
156
|
-
...opts,
|
|
157
|
-
});
|
|
158
|
-
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
159
|
-
this.Message = opts.Message;
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
class ResourceNotFoundException extends ApplicationInsightsServiceException {
|
|
163
|
-
name = "ResourceNotFoundException";
|
|
164
|
-
$fault = "client";
|
|
165
|
-
Message;
|
|
166
|
-
constructor(opts) {
|
|
167
|
-
super({
|
|
168
|
-
name: "ResourceNotFoundException",
|
|
169
|
-
$fault: "client",
|
|
170
|
-
...opts,
|
|
171
|
-
});
|
|
172
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
173
|
-
this.Message = opts.Message;
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
class ValidationException extends ApplicationInsightsServiceException {
|
|
177
|
-
name = "ValidationException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
Message;
|
|
180
|
-
constructor(opts) {
|
|
181
|
-
super({
|
|
182
|
-
name: "ValidationException",
|
|
183
|
-
$fault: "client",
|
|
184
|
-
...opts,
|
|
185
|
-
});
|
|
186
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
187
|
-
this.Message = opts.Message;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
class BadRequestException extends ApplicationInsightsServiceException {
|
|
191
|
-
name = "BadRequestException";
|
|
192
|
-
$fault = "client";
|
|
193
|
-
Message;
|
|
194
|
-
constructor(opts) {
|
|
195
|
-
super({
|
|
196
|
-
name: "BadRequestException",
|
|
197
|
-
$fault: "client",
|
|
198
|
-
...opts,
|
|
199
|
-
});
|
|
200
|
-
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
201
|
-
this.Message = opts.Message;
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class TagsAlreadyExistException extends ApplicationInsightsServiceException {
|
|
205
|
-
name = "TagsAlreadyExistException";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
Message;
|
|
208
|
-
constructor(opts) {
|
|
209
|
-
super({
|
|
210
|
-
name: "TagsAlreadyExistException",
|
|
211
|
-
$fault: "client",
|
|
212
|
-
...opts,
|
|
213
|
-
});
|
|
214
|
-
Object.setPrototypeOf(this, TagsAlreadyExistException.prototype);
|
|
215
|
-
this.Message = opts.Message;
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
class TooManyTagsException extends ApplicationInsightsServiceException {
|
|
219
|
-
name = "TooManyTagsException";
|
|
220
|
-
$fault = "client";
|
|
221
|
-
Message;
|
|
222
|
-
ResourceName;
|
|
223
|
-
constructor(opts) {
|
|
224
|
-
super({
|
|
225
|
-
name: "TooManyTagsException",
|
|
226
|
-
$fault: "client",
|
|
227
|
-
...opts,
|
|
228
|
-
});
|
|
229
|
-
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
230
|
-
this.Message = opts.Message;
|
|
231
|
-
this.ResourceName = opts.ResourceName;
|
|
232
|
-
}
|
|
233
|
-
}
|
|
234
|
-
|
|
235
|
-
const _AC = "ApplicationComponent";
|
|
236
|
-
const _ACE = "AutoConfigEnabled";
|
|
237
|
-
const _ACL = "ApplicationComponentList";
|
|
238
|
-
const _ACu = "AutoCreate";
|
|
239
|
-
const _ADE = "AccessDeniedException";
|
|
240
|
-
const _AI = "ApplicationInfo";
|
|
241
|
-
const _AIL = "ApplicationInfoList";
|
|
242
|
-
const _AIc = "AccountId";
|
|
243
|
-
const _AMP = "AttachMissingPermission";
|
|
244
|
-
const _AR = "AffectedResource";
|
|
245
|
-
const _AW = "AddWorkload";
|
|
246
|
-
const _AWR = "AddWorkloadRequest";
|
|
247
|
-
const _AWRd = "AddWorkloadResponse";
|
|
248
|
-
const _BRE = "BadRequestException";
|
|
249
|
-
const _C = "Configuration";
|
|
250
|
-
const _CA = "CreateApplication";
|
|
251
|
-
const _CAR = "CreateApplicationRequest";
|
|
252
|
-
const _CARr = "CreateApplicationResponse";
|
|
253
|
-
const _CC = "ComponentConfiguration";
|
|
254
|
-
const _CCR = "CreateComponentRequest";
|
|
255
|
-
const _CCRr = "CreateComponentResponse";
|
|
256
|
-
const _CCr = "CreateComponent";
|
|
257
|
-
const _CDA = "CodeDeployApplication";
|
|
258
|
-
const _CDDG = "CodeDeployDeploymentGroup";
|
|
259
|
-
const _CDDI = "CodeDeployDeploymentId";
|
|
260
|
-
const _CDIGI = "CodeDeployInstanceGroupId";
|
|
261
|
-
const _CDS = "CodeDeployState";
|
|
262
|
-
const _CE = "ConfigurationEvent";
|
|
263
|
-
const _CEL = "ConfigurationEventList";
|
|
264
|
-
const _CLP = "CreateLogPattern";
|
|
265
|
-
const _CLPR = "CreateLogPatternRequest";
|
|
266
|
-
const _CLPRr = "CreateLogPatternResponse";
|
|
267
|
-
const _CN = "ComponentName";
|
|
268
|
-
const _CR = "ComponentRemarks";
|
|
269
|
-
const _CWEDT = "CloudWatchEventDetailType";
|
|
270
|
-
const _CWEI = "CloudWatchEventId";
|
|
271
|
-
const _CWEME = "CWEMonitorEnabled";
|
|
272
|
-
const _CWES = "CloudWatchEventSource";
|
|
273
|
-
const _DA = "DeleteApplication";
|
|
274
|
-
const _DAR = "DeleteApplicationRequest";
|
|
275
|
-
const _DARe = "DeleteApplicationResponse";
|
|
276
|
-
const _DARes = "DescribeApplicationRequest";
|
|
277
|
-
const _DAResc = "DescribeApplicationResponse";
|
|
278
|
-
const _DAe = "DescribeApplication";
|
|
279
|
-
const _DC = "DeleteComponent";
|
|
280
|
-
const _DCC = "DescribeComponentConfiguration";
|
|
281
|
-
const _DCCR = "DescribeComponentConfigurationRequest";
|
|
282
|
-
const _DCCRR = "DescribeComponentConfigurationRecommendationRequest";
|
|
283
|
-
const _DCCRRe = "DescribeComponentConfigurationRecommendationResponse";
|
|
284
|
-
const _DCCRe = "DescribeComponentConfigurationResponse";
|
|
285
|
-
const _DCCRes = "DescribeComponentConfigurationRecommendation";
|
|
286
|
-
const _DCR = "DeleteComponentRequest";
|
|
287
|
-
const _DCRe = "DeleteComponentResponse";
|
|
288
|
-
const _DCRes = "DescribeComponentRequest";
|
|
289
|
-
const _DCResc = "DescribeComponentResponse";
|
|
290
|
-
const _DCe = "DescribeComponent";
|
|
291
|
-
const _DLP = "DeleteLogPattern";
|
|
292
|
-
const _DLPR = "DeleteLogPatternRequest";
|
|
293
|
-
const _DLPRe = "DeleteLogPatternResponse";
|
|
294
|
-
const _DLPRes = "DescribeLogPatternRequest";
|
|
295
|
-
const _DLPResc = "DescribeLogPatternResponse";
|
|
296
|
-
const _DLPe = "DescribeLogPattern";
|
|
297
|
-
const _DO = "DescribeObservation";
|
|
298
|
-
const _DOR = "DescribeObservationRequest";
|
|
299
|
-
const _DORe = "DescribeObservationResponse";
|
|
300
|
-
const _DP = "DescribeProblem";
|
|
301
|
-
const _DPO = "DescribeProblemObservations";
|
|
302
|
-
const _DPOR = "DescribeProblemObservationsRequest";
|
|
303
|
-
const _DPORe = "DescribeProblemObservationsResponse";
|
|
304
|
-
const _DPR = "DescribeProblemRequest";
|
|
305
|
-
const _DPRe = "DescribeProblemResponse";
|
|
306
|
-
const _DT = "DiscoveryType";
|
|
307
|
-
const _DW = "DetectedWorkload";
|
|
308
|
-
const _DWR = "DescribeWorkloadRequest";
|
|
309
|
-
const _DWRe = "DescribeWorkloadResponse";
|
|
310
|
-
const _DWe = "DescribeWorkload";
|
|
311
|
-
const _EC = "EbsCause";
|
|
312
|
-
const _ED = "EventDetail";
|
|
313
|
-
const _EE = "EbsEvent";
|
|
314
|
-
const _EL = "EventList";
|
|
315
|
-
const _ER = "EbsResult";
|
|
316
|
-
const _ERI = "EbsRequestId";
|
|
317
|
-
const _ERN = "EventResourceName";
|
|
318
|
-
const _ERT = "EventResourceType";
|
|
319
|
-
const _ES = "EventStatus";
|
|
320
|
-
const _ESc = "Ec2State";
|
|
321
|
-
const _ET = "EventTime";
|
|
322
|
-
const _ETn = "EndTime";
|
|
323
|
-
const _F = "Feedback";
|
|
324
|
-
const _GT = "GroupingType";
|
|
325
|
-
const _HEA = "HealthEventArn";
|
|
326
|
-
const _HED = "HealthEventDescription";
|
|
327
|
-
const _HETC = "HealthEventTypeCode";
|
|
328
|
-
const _HETCe = "HealthEventTypeCategory";
|
|
329
|
-
const _HS = "HealthService";
|
|
330
|
-
const _I = "Id";
|
|
331
|
-
const _ISE = "InternalServerException";
|
|
332
|
-
const _In = "Insights";
|
|
333
|
-
const _K = "Key";
|
|
334
|
-
const _LA = "ListApplications";
|
|
335
|
-
const _LAR = "ListApplicationsRequest";
|
|
336
|
-
const _LARi = "ListApplicationsResponse";
|
|
337
|
-
const _LC = "LifeCycle";
|
|
338
|
-
const _LCH = "ListConfigurationHistory";
|
|
339
|
-
const _LCHR = "ListConfigurationHistoryRequest";
|
|
340
|
-
const _LCHRi = "ListConfigurationHistoryResponse";
|
|
341
|
-
const _LCR = "ListComponentsRequest";
|
|
342
|
-
const _LCRi = "ListComponentsResponse";
|
|
343
|
-
const _LCi = "ListComponents";
|
|
344
|
-
const _LF = "LogFilter";
|
|
345
|
-
const _LG = "LogGroup";
|
|
346
|
-
const _LLP = "ListLogPatterns";
|
|
347
|
-
const _LLPR = "ListLogPatternsRequest";
|
|
348
|
-
const _LLPRi = "ListLogPatternsResponse";
|
|
349
|
-
const _LLPS = "ListLogPatternSets";
|
|
350
|
-
const _LLPSR = "ListLogPatternSetsRequest";
|
|
351
|
-
const _LLPSRi = "ListLogPatternSetsResponse";
|
|
352
|
-
const _LP = "LogPattern";
|
|
353
|
-
const _LPL = "LogPatternList";
|
|
354
|
-
const _LPR = "ListProblemsRequest";
|
|
355
|
-
const _LPRi = "ListProblemsResponse";
|
|
356
|
-
const _LPS = "LogPatternSets";
|
|
357
|
-
const _LPi = "ListProblems";
|
|
358
|
-
const _LPo = "LogPatterns";
|
|
359
|
-
const _LRT = "LastRecurrenceTime";
|
|
360
|
-
const _LT = "LineTime";
|
|
361
|
-
const _LTFR = "ListTagsForResource";
|
|
362
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
363
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
364
|
-
const _LTo = "LogText";
|
|
365
|
-
const _LW = "ListWorkloads";
|
|
366
|
-
const _LWR = "ListWorkloadsRequest";
|
|
367
|
-
const _LWRi = "ListWorkloadsResponse";
|
|
368
|
-
const _M = "Message";
|
|
369
|
-
const _MN = "MetricNamespace";
|
|
370
|
-
const _MNe = "MetricName";
|
|
371
|
-
const _MR = "MaxResults";
|
|
372
|
-
const _MRARN = "MonitoredResourceARN";
|
|
373
|
-
const _MWC = "MissingWorkloadConfig";
|
|
374
|
-
const _Mo = "Monitor";
|
|
375
|
-
const _NCN = "NewComponentName";
|
|
376
|
-
const _NT = "NextToken";
|
|
377
|
-
const _O = "Observation";
|
|
378
|
-
const _OCE = "OpsCenterEnabled";
|
|
379
|
-
const _OI = "ObservationId";
|
|
380
|
-
const _OISNSTA = "OpsItemSNSTopicArn";
|
|
381
|
-
const _OL = "ObservationList";
|
|
382
|
-
const _OT = "OsType";
|
|
383
|
-
const _P = "Pattern";
|
|
384
|
-
const _PI = "ProblemId";
|
|
385
|
-
const _PL = "ProblemList";
|
|
386
|
-
const _PN = "PatternName";
|
|
387
|
-
const _PSN = "PatternSetName";
|
|
388
|
-
const _Pr = "Problem";
|
|
389
|
-
const _R = "Remarks";
|
|
390
|
-
const _RARN = "ResourceARN";
|
|
391
|
-
const _RC = "RecurringCount";
|
|
392
|
-
const _REC = "RdsEventCategories";
|
|
393
|
-
const _REM = "RdsEventMessage";
|
|
394
|
-
const _RGN = "ResourceGroupName";
|
|
395
|
-
const _RIUE = "ResourceInUseException";
|
|
396
|
-
const _RL = "ResourceList";
|
|
397
|
-
const _RM = "ResolutionMethod";
|
|
398
|
-
const _RN = "ResourceName";
|
|
399
|
-
const _RNFE = "ResourceNotFoundException";
|
|
400
|
-
const _RO = "RelatedObservations";
|
|
401
|
-
const _RSNST = "RemoveSNSTopic";
|
|
402
|
-
const _RT = "ResourceType";
|
|
403
|
-
const _RTe = "RecommendationType";
|
|
404
|
-
const _RW = "RemoveWorkload";
|
|
405
|
-
const _RWR = "RemoveWorkloadRequest";
|
|
406
|
-
const _RWRe = "RemoveWorkloadResponse";
|
|
407
|
-
const _Ra = "Rank";
|
|
408
|
-
const _S = "Status";
|
|
409
|
-
const _SA = "StatesArn";
|
|
410
|
-
const _SARN = "SourceARN";
|
|
411
|
-
const _SEA = "StatesExecutionArn";
|
|
412
|
-
const _SEN = "S3EventName";
|
|
413
|
-
const _SI = "StatesInput";
|
|
414
|
-
const _SL = "SeverityLevel";
|
|
415
|
-
const _SN = "ShortName";
|
|
416
|
-
const _SNSNA = "SNSNotificationArn";
|
|
417
|
-
const _SS = "StatesStatus";
|
|
418
|
-
const _ST = "StartTime";
|
|
419
|
-
const _STo = "SourceType";
|
|
420
|
-
const _T = "Tier";
|
|
421
|
-
const _TAEE = "TagsAlreadyExistException";
|
|
422
|
-
const _TK = "TagKeys";
|
|
423
|
-
const _TL = "TagList";
|
|
424
|
-
const _TMTE = "TooManyTagsException";
|
|
425
|
-
const _TR = "TagResource";
|
|
426
|
-
const _TRR = "TagResourceRequest";
|
|
427
|
-
const _TRRa = "TagResourceResponse";
|
|
428
|
-
const _Ta = "Tags";
|
|
429
|
-
const _Tag = "Tag";
|
|
430
|
-
const _Ti = "Title";
|
|
431
|
-
const _U = "Unit";
|
|
432
|
-
const _UA = "UpdateApplication";
|
|
433
|
-
const _UAR = "UpdateApplicationRequest";
|
|
434
|
-
const _UARp = "UpdateApplicationResponse";
|
|
435
|
-
const _UC = "UpdateComponent";
|
|
436
|
-
const _UCC = "UpdateComponentConfiguration";
|
|
437
|
-
const _UCCR = "UpdateComponentConfigurationRequest";
|
|
438
|
-
const _UCCRp = "UpdateComponentConfigurationResponse";
|
|
439
|
-
const _UCR = "UpdateComponentRequest";
|
|
440
|
-
const _UCRp = "UpdateComponentResponse";
|
|
441
|
-
const _ULP = "UpdateLogPattern";
|
|
442
|
-
const _ULPR = "UpdateLogPatternRequest";
|
|
443
|
-
const _ULPRp = "UpdateLogPatternResponse";
|
|
444
|
-
const _UP = "UpdateProblem";
|
|
445
|
-
const _UPR = "UpdateProblemRequest";
|
|
446
|
-
const _UPRp = "UpdateProblemResponse";
|
|
447
|
-
const _UR = "UntagResource";
|
|
448
|
-
const _URR = "UntagResourceRequest";
|
|
449
|
-
const _URRn = "UntagResourceResponse";
|
|
450
|
-
const _US = "UpdateStatus";
|
|
451
|
-
const _UW = "UpdateWorkload";
|
|
452
|
-
const _UWR = "UpdateWorkloadRequest";
|
|
453
|
-
const _UWRp = "UpdateWorkloadResponse";
|
|
454
|
-
const _V = "Visibility";
|
|
455
|
-
const _VE = "ValidationException";
|
|
456
|
-
const _Va = "Value";
|
|
457
|
-
const _W = "Workload";
|
|
458
|
-
const _WC = "WorkloadConfiguration";
|
|
459
|
-
const _WI = "WorkloadId";
|
|
460
|
-
const _WL = "WorkloadList";
|
|
461
|
-
const _WN = "WorkloadName";
|
|
462
|
-
const _WR = "WorkloadRemarks";
|
|
463
|
-
const _XREP = "XRayErrorPercent";
|
|
464
|
-
const _XRFP = "XRayFaultPercent";
|
|
465
|
-
const _XRNN = "XRayNodeName";
|
|
466
|
-
const _XRNT = "XRayNodeType";
|
|
467
|
-
const _XRRAL = "XRayRequestAverageLatency";
|
|
468
|
-
const _XRRC = "XRayRequestCount";
|
|
469
|
-
const _XRTP = "XRayThrottlePercent";
|
|
470
|
-
const _aQE = "awsQueryError";
|
|
471
|
-
const _c = "client";
|
|
472
|
-
const _e = "error";
|
|
473
|
-
const _hE = "httpError";
|
|
474
|
-
const _s = "server";
|
|
475
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.applicationinsights";
|
|
476
|
-
const n0 = "com.amazonaws.applicationinsights";
|
|
477
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
478
|
-
{ [_aQE]: [`AccessDeniedException`, 403], [_e]: _c, [_hE]: 403 },
|
|
479
|
-
[_M],
|
|
480
|
-
[0]
|
|
481
|
-
];
|
|
482
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
483
|
-
var AddWorkloadRequest$ = [3, n0, _AWR,
|
|
484
|
-
0,
|
|
485
|
-
[_RGN, _CN, _WC],
|
|
486
|
-
[0, 0, () => WorkloadConfiguration$], 3
|
|
487
|
-
];
|
|
488
|
-
var AddWorkloadResponse$ = [3, n0, _AWRd,
|
|
489
|
-
0,
|
|
490
|
-
[_WI, _WC],
|
|
491
|
-
[0, () => WorkloadConfiguration$]
|
|
492
|
-
];
|
|
493
|
-
var ApplicationComponent$ = [3, n0, _AC,
|
|
494
|
-
0,
|
|
495
|
-
[_CN, _CR, _RT, _OT, _T, _Mo, _DW],
|
|
496
|
-
[0, 0, 0, 0, 0, 2, [2, n0, _DW, 0, 0, 128 | 0]]
|
|
497
|
-
];
|
|
498
|
-
var ApplicationInfo$ = [3, n0, _AI,
|
|
499
|
-
0,
|
|
500
|
-
[_AIc, _RGN, _LC, _OISNSTA, _SNSNA, _OCE, _CWEME, _R, _ACE, _DT, _AMP],
|
|
501
|
-
[0, 0, 0, 0, 0, 2, 2, 0, 2, 0, 2]
|
|
502
|
-
];
|
|
503
|
-
var BadRequestException$ = [-3, n0, _BRE,
|
|
504
|
-
{ [_aQE]: [`BadRequestException`, 400], [_e]: _c, [_hE]: 400 },
|
|
505
|
-
[_M],
|
|
506
|
-
[0]
|
|
507
|
-
];
|
|
508
|
-
schema.TypeRegistry.for(n0).registerError(BadRequestException$, BadRequestException);
|
|
509
|
-
var ConfigurationEvent$ = [3, n0, _CE,
|
|
510
|
-
0,
|
|
511
|
-
[_RGN, _AIc, _MRARN, _ES, _ERT, _ET, _ED, _ERN],
|
|
512
|
-
[0, 0, 0, 0, 0, 4, 0, 0]
|
|
513
|
-
];
|
|
514
|
-
var CreateApplicationRequest$ = [3, n0, _CAR,
|
|
515
|
-
0,
|
|
516
|
-
[_RGN, _OCE, _CWEME, _OISNSTA, _SNSNA, _Ta, _ACE, _ACu, _GT, _AMP],
|
|
517
|
-
[0, 2, 2, 0, 0, () => TagList, 2, 2, 0, 2]
|
|
518
|
-
];
|
|
519
|
-
var CreateApplicationResponse$ = [3, n0, _CARr,
|
|
520
|
-
0,
|
|
521
|
-
[_AI],
|
|
522
|
-
[() => ApplicationInfo$]
|
|
523
|
-
];
|
|
524
|
-
var CreateComponentRequest$ = [3, n0, _CCR,
|
|
525
|
-
0,
|
|
526
|
-
[_RGN, _CN, _RL],
|
|
527
|
-
[0, 0, 64 | 0], 3
|
|
528
|
-
];
|
|
529
|
-
var CreateComponentResponse$ = [3, n0, _CCRr,
|
|
530
|
-
0,
|
|
531
|
-
[],
|
|
532
|
-
[]
|
|
533
|
-
];
|
|
534
|
-
var CreateLogPatternRequest$ = [3, n0, _CLPR,
|
|
535
|
-
0,
|
|
536
|
-
[_RGN, _PSN, _PN, _P, _Ra],
|
|
537
|
-
[0, 0, 0, 0, 1], 5
|
|
538
|
-
];
|
|
539
|
-
var CreateLogPatternResponse$ = [3, n0, _CLPRr,
|
|
540
|
-
0,
|
|
541
|
-
[_LP, _RGN],
|
|
542
|
-
[() => LogPattern$, 0]
|
|
543
|
-
];
|
|
544
|
-
var DeleteApplicationRequest$ = [3, n0, _DAR,
|
|
545
|
-
0,
|
|
546
|
-
[_RGN],
|
|
547
|
-
[0], 1
|
|
548
|
-
];
|
|
549
|
-
var DeleteApplicationResponse$ = [3, n0, _DARe,
|
|
550
|
-
0,
|
|
551
|
-
[],
|
|
552
|
-
[]
|
|
553
|
-
];
|
|
554
|
-
var DeleteComponentRequest$ = [3, n0, _DCR,
|
|
555
|
-
0,
|
|
556
|
-
[_RGN, _CN],
|
|
557
|
-
[0, 0], 2
|
|
558
|
-
];
|
|
559
|
-
var DeleteComponentResponse$ = [3, n0, _DCRe,
|
|
560
|
-
0,
|
|
561
|
-
[],
|
|
562
|
-
[]
|
|
563
|
-
];
|
|
564
|
-
var DeleteLogPatternRequest$ = [3, n0, _DLPR,
|
|
565
|
-
0,
|
|
566
|
-
[_RGN, _PSN, _PN],
|
|
567
|
-
[0, 0, 0], 3
|
|
568
|
-
];
|
|
569
|
-
var DeleteLogPatternResponse$ = [3, n0, _DLPRe,
|
|
570
|
-
0,
|
|
571
|
-
[],
|
|
572
|
-
[]
|
|
573
|
-
];
|
|
574
|
-
var DescribeApplicationRequest$ = [3, n0, _DARes,
|
|
575
|
-
0,
|
|
576
|
-
[_RGN, _AIc],
|
|
577
|
-
[0, 0], 1
|
|
578
|
-
];
|
|
579
|
-
var DescribeApplicationResponse$ = [3, n0, _DAResc,
|
|
580
|
-
0,
|
|
581
|
-
[_AI],
|
|
582
|
-
[() => ApplicationInfo$]
|
|
583
|
-
];
|
|
584
|
-
var DescribeComponentConfigurationRecommendationRequest$ = [3, n0, _DCCRR,
|
|
585
|
-
0,
|
|
586
|
-
[_RGN, _CN, _T, _WN, _RTe],
|
|
587
|
-
[0, 0, 0, 0, 0], 3
|
|
588
|
-
];
|
|
589
|
-
var DescribeComponentConfigurationRecommendationResponse$ = [3, n0, _DCCRRe,
|
|
590
|
-
0,
|
|
591
|
-
[_CC],
|
|
592
|
-
[0]
|
|
593
|
-
];
|
|
594
|
-
var DescribeComponentConfigurationRequest$ = [3, n0, _DCCR,
|
|
595
|
-
0,
|
|
596
|
-
[_RGN, _CN, _AIc],
|
|
597
|
-
[0, 0, 0], 2
|
|
598
|
-
];
|
|
599
|
-
var DescribeComponentConfigurationResponse$ = [3, n0, _DCCRe,
|
|
600
|
-
0,
|
|
601
|
-
[_Mo, _T, _CC],
|
|
602
|
-
[2, 0, 0]
|
|
603
|
-
];
|
|
604
|
-
var DescribeComponentRequest$ = [3, n0, _DCRes,
|
|
605
|
-
0,
|
|
606
|
-
[_RGN, _CN, _AIc],
|
|
607
|
-
[0, 0, 0], 2
|
|
608
|
-
];
|
|
609
|
-
var DescribeComponentResponse$ = [3, n0, _DCResc,
|
|
610
|
-
0,
|
|
611
|
-
[_AC, _RL],
|
|
612
|
-
[() => ApplicationComponent$, 64 | 0]
|
|
613
|
-
];
|
|
614
|
-
var DescribeLogPatternRequest$ = [3, n0, _DLPRes,
|
|
615
|
-
0,
|
|
616
|
-
[_RGN, _PSN, _PN, _AIc],
|
|
617
|
-
[0, 0, 0, 0], 3
|
|
618
|
-
];
|
|
619
|
-
var DescribeLogPatternResponse$ = [3, n0, _DLPResc,
|
|
620
|
-
0,
|
|
621
|
-
[_RGN, _AIc, _LP],
|
|
622
|
-
[0, 0, () => LogPattern$]
|
|
623
|
-
];
|
|
624
|
-
var DescribeObservationRequest$ = [3, n0, _DOR,
|
|
625
|
-
0,
|
|
626
|
-
[_OI, _AIc],
|
|
627
|
-
[0, 0], 1
|
|
628
|
-
];
|
|
629
|
-
var DescribeObservationResponse$ = [3, n0, _DORe,
|
|
630
|
-
0,
|
|
631
|
-
[_O],
|
|
632
|
-
[() => Observation$]
|
|
633
|
-
];
|
|
634
|
-
var DescribeProblemObservationsRequest$ = [3, n0, _DPOR,
|
|
635
|
-
0,
|
|
636
|
-
[_PI, _AIc],
|
|
637
|
-
[0, 0], 1
|
|
638
|
-
];
|
|
639
|
-
var DescribeProblemObservationsResponse$ = [3, n0, _DPORe,
|
|
640
|
-
0,
|
|
641
|
-
[_RO],
|
|
642
|
-
[() => RelatedObservations$]
|
|
643
|
-
];
|
|
644
|
-
var DescribeProblemRequest$ = [3, n0, _DPR,
|
|
645
|
-
0,
|
|
646
|
-
[_PI, _AIc],
|
|
647
|
-
[0, 0], 1
|
|
648
|
-
];
|
|
649
|
-
var DescribeProblemResponse$ = [3, n0, _DPRe,
|
|
650
|
-
0,
|
|
651
|
-
[_Pr, _SNSNA],
|
|
652
|
-
[() => Problem$, 0]
|
|
653
|
-
];
|
|
654
|
-
var DescribeWorkloadRequest$ = [3, n0, _DWR,
|
|
655
|
-
0,
|
|
656
|
-
[_RGN, _CN, _WI, _AIc],
|
|
657
|
-
[0, 0, 0, 0], 3
|
|
658
|
-
];
|
|
659
|
-
var DescribeWorkloadResponse$ = [3, n0, _DWRe,
|
|
660
|
-
0,
|
|
661
|
-
[_WI, _WR, _WC],
|
|
662
|
-
[0, 0, () => WorkloadConfiguration$]
|
|
663
|
-
];
|
|
664
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
665
|
-
{ [_aQE]: [`InternalServerException`, 500], [_e]: _s, [_hE]: 500 },
|
|
666
|
-
[_M],
|
|
667
|
-
[0]
|
|
668
|
-
];
|
|
669
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
670
|
-
var ListApplicationsRequest$ = [3, n0, _LAR,
|
|
671
|
-
0,
|
|
672
|
-
[_MR, _NT, _AIc],
|
|
673
|
-
[1, 0, 0]
|
|
674
|
-
];
|
|
675
|
-
var ListApplicationsResponse$ = [3, n0, _LARi,
|
|
676
|
-
0,
|
|
677
|
-
[_AIL, _NT],
|
|
678
|
-
[() => ApplicationInfoList, 0]
|
|
679
|
-
];
|
|
680
|
-
var ListComponentsRequest$ = [3, n0, _LCR,
|
|
681
|
-
0,
|
|
682
|
-
[_RGN, _MR, _NT, _AIc],
|
|
683
|
-
[0, 1, 0, 0], 1
|
|
684
|
-
];
|
|
685
|
-
var ListComponentsResponse$ = [3, n0, _LCRi,
|
|
686
|
-
0,
|
|
687
|
-
[_ACL, _NT],
|
|
688
|
-
[() => ApplicationComponentList, 0]
|
|
689
|
-
];
|
|
690
|
-
var ListConfigurationHistoryRequest$ = [3, n0, _LCHR,
|
|
691
|
-
0,
|
|
692
|
-
[_RGN, _ST, _ETn, _ES, _MR, _NT, _AIc],
|
|
693
|
-
[0, 4, 4, 0, 1, 0, 0]
|
|
694
|
-
];
|
|
695
|
-
var ListConfigurationHistoryResponse$ = [3, n0, _LCHRi,
|
|
696
|
-
0,
|
|
697
|
-
[_EL, _NT],
|
|
698
|
-
[() => ConfigurationEventList, 0]
|
|
699
|
-
];
|
|
700
|
-
var ListLogPatternSetsRequest$ = [3, n0, _LLPSR,
|
|
701
|
-
0,
|
|
702
|
-
[_RGN, _MR, _NT, _AIc],
|
|
703
|
-
[0, 1, 0, 0], 1
|
|
704
|
-
];
|
|
705
|
-
var ListLogPatternSetsResponse$ = [3, n0, _LLPSRi,
|
|
706
|
-
0,
|
|
707
|
-
[_RGN, _AIc, _LPS, _NT],
|
|
708
|
-
[0, 0, 64 | 0, 0]
|
|
709
|
-
];
|
|
710
|
-
var ListLogPatternsRequest$ = [3, n0, _LLPR,
|
|
711
|
-
0,
|
|
712
|
-
[_RGN, _PSN, _MR, _NT, _AIc],
|
|
713
|
-
[0, 0, 1, 0, 0], 1
|
|
714
|
-
];
|
|
715
|
-
var ListLogPatternsResponse$ = [3, n0, _LLPRi,
|
|
716
|
-
0,
|
|
717
|
-
[_RGN, _AIc, _LPo, _NT],
|
|
718
|
-
[0, 0, () => LogPatternList, 0]
|
|
719
|
-
];
|
|
720
|
-
var ListProblemsRequest$ = [3, n0, _LPR,
|
|
721
|
-
0,
|
|
722
|
-
[_AIc, _RGN, _ST, _ETn, _MR, _NT, _CN, _V],
|
|
723
|
-
[0, 0, 4, 4, 1, 0, 0, 0]
|
|
724
|
-
];
|
|
725
|
-
var ListProblemsResponse$ = [3, n0, _LPRi,
|
|
726
|
-
0,
|
|
727
|
-
[_PL, _NT, _RGN, _AIc],
|
|
728
|
-
[() => ProblemList, 0, 0, 0]
|
|
729
|
-
];
|
|
730
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
731
|
-
0,
|
|
732
|
-
[_RARN],
|
|
733
|
-
[0], 1
|
|
734
|
-
];
|
|
735
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
736
|
-
0,
|
|
737
|
-
[_Ta],
|
|
738
|
-
[() => TagList]
|
|
739
|
-
];
|
|
740
|
-
var ListWorkloadsRequest$ = [3, n0, _LWR,
|
|
741
|
-
0,
|
|
742
|
-
[_RGN, _CN, _MR, _NT, _AIc],
|
|
743
|
-
[0, 0, 1, 0, 0], 2
|
|
744
|
-
];
|
|
745
|
-
var ListWorkloadsResponse$ = [3, n0, _LWRi,
|
|
746
|
-
0,
|
|
747
|
-
[_WL, _NT],
|
|
748
|
-
[() => WorkloadList, 0]
|
|
749
|
-
];
|
|
750
|
-
var LogPattern$ = [3, n0, _LP,
|
|
751
|
-
0,
|
|
752
|
-
[_PSN, _PN, _P, _Ra],
|
|
753
|
-
[0, 0, 0, 1]
|
|
754
|
-
];
|
|
755
|
-
var Observation$ = [3, n0, _O,
|
|
756
|
-
0,
|
|
757
|
-
[_I, _ST, _ETn, _STo, _SARN, _LG, _LT, _LTo, _LF, _MN, _MNe, _U, _Va, _CWEI, _CWES, _CWEDT, _HEA, _HS, _HETC, _HETCe, _HED, _CDDI, _CDDG, _CDS, _CDA, _CDIGI, _ESc, _REC, _REM, _SEN, _SEA, _SA, _SS, _SI, _EE, _ER, _EC, _ERI, _XRFP, _XRTP, _XREP, _XRRC, _XRRAL, _XRNN, _XRNT],
|
|
758
|
-
[0, 4, 4, 0, 0, 0, 4, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0]
|
|
759
|
-
];
|
|
760
|
-
var Problem$ = [3, n0, _Pr,
|
|
761
|
-
0,
|
|
762
|
-
[_I, _Ti, _SN, _In, _S, _AR, _ST, _ETn, _SL, _AIc, _RGN, _F, _RC, _LRT, _V, _RM],
|
|
763
|
-
[0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 0, 128 | 0, 1, 4, 0, 0]
|
|
764
|
-
];
|
|
765
|
-
var RelatedObservations$ = [3, n0, _RO,
|
|
766
|
-
0,
|
|
767
|
-
[_OL],
|
|
768
|
-
[() => ObservationList]
|
|
769
|
-
];
|
|
770
|
-
var RemoveWorkloadRequest$ = [3, n0, _RWR,
|
|
771
|
-
0,
|
|
772
|
-
[_RGN, _CN, _WI],
|
|
773
|
-
[0, 0, 0], 3
|
|
774
|
-
];
|
|
775
|
-
var RemoveWorkloadResponse$ = [3, n0, _RWRe,
|
|
776
|
-
0,
|
|
777
|
-
[],
|
|
778
|
-
[]
|
|
779
|
-
];
|
|
780
|
-
var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
781
|
-
{ [_aQE]: [`ResourceInUseException`, 400], [_e]: _c, [_hE]: 400 },
|
|
782
|
-
[_M],
|
|
783
|
-
[0]
|
|
784
|
-
];
|
|
785
|
-
schema.TypeRegistry.for(n0).registerError(ResourceInUseException$, ResourceInUseException);
|
|
786
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
787
|
-
{ [_aQE]: [`ResourceNotFoundException`, 404], [_e]: _c, [_hE]: 404 },
|
|
788
|
-
[_M],
|
|
789
|
-
[0]
|
|
790
|
-
];
|
|
791
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
792
|
-
var Tag$ = [3, n0, _Tag,
|
|
793
|
-
0,
|
|
794
|
-
[_K, _Va],
|
|
795
|
-
[0, 0], 2
|
|
796
|
-
];
|
|
797
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
798
|
-
0,
|
|
799
|
-
[_RARN, _Ta],
|
|
800
|
-
[0, () => TagList], 2
|
|
801
|
-
];
|
|
802
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
803
|
-
0,
|
|
804
|
-
[],
|
|
805
|
-
[]
|
|
806
|
-
];
|
|
807
|
-
var TagsAlreadyExistException$ = [-3, n0, _TAEE,
|
|
808
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
809
|
-
[_M],
|
|
810
|
-
[0]
|
|
811
|
-
];
|
|
812
|
-
schema.TypeRegistry.for(n0).registerError(TagsAlreadyExistException$, TagsAlreadyExistException);
|
|
813
|
-
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
814
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
815
|
-
[_M, _RN],
|
|
816
|
-
[0, 0]
|
|
817
|
-
];
|
|
818
|
-
schema.TypeRegistry.for(n0).registerError(TooManyTagsException$, TooManyTagsException);
|
|
819
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
820
|
-
0,
|
|
821
|
-
[_RARN, _TK],
|
|
822
|
-
[0, 64 | 0], 2
|
|
823
|
-
];
|
|
824
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
825
|
-
0,
|
|
826
|
-
[],
|
|
827
|
-
[]
|
|
828
|
-
];
|
|
829
|
-
var UpdateApplicationRequest$ = [3, n0, _UAR,
|
|
830
|
-
0,
|
|
831
|
-
[_RGN, _OCE, _CWEME, _OISNSTA, _SNSNA, _RSNST, _ACE, _AMP],
|
|
832
|
-
[0, 2, 2, 0, 0, 2, 2, 2], 1
|
|
833
|
-
];
|
|
834
|
-
var UpdateApplicationResponse$ = [3, n0, _UARp,
|
|
835
|
-
0,
|
|
836
|
-
[_AI],
|
|
837
|
-
[() => ApplicationInfo$]
|
|
838
|
-
];
|
|
839
|
-
var UpdateComponentConfigurationRequest$ = [3, n0, _UCCR,
|
|
840
|
-
0,
|
|
841
|
-
[_RGN, _CN, _Mo, _T, _CC, _ACE],
|
|
842
|
-
[0, 0, 2, 0, 0, 2], 2
|
|
843
|
-
];
|
|
844
|
-
var UpdateComponentConfigurationResponse$ = [3, n0, _UCCRp,
|
|
845
|
-
0,
|
|
846
|
-
[],
|
|
847
|
-
[]
|
|
848
|
-
];
|
|
849
|
-
var UpdateComponentRequest$ = [3, n0, _UCR,
|
|
850
|
-
0,
|
|
851
|
-
[_RGN, _CN, _NCN, _RL],
|
|
852
|
-
[0, 0, 0, 64 | 0], 2
|
|
853
|
-
];
|
|
854
|
-
var UpdateComponentResponse$ = [3, n0, _UCRp,
|
|
855
|
-
0,
|
|
856
|
-
[],
|
|
857
|
-
[]
|
|
858
|
-
];
|
|
859
|
-
var UpdateLogPatternRequest$ = [3, n0, _ULPR,
|
|
860
|
-
0,
|
|
861
|
-
[_RGN, _PSN, _PN, _P, _Ra],
|
|
862
|
-
[0, 0, 0, 0, 1], 3
|
|
863
|
-
];
|
|
864
|
-
var UpdateLogPatternResponse$ = [3, n0, _ULPRp,
|
|
865
|
-
0,
|
|
866
|
-
[_RGN, _LP],
|
|
867
|
-
[0, () => LogPattern$]
|
|
868
|
-
];
|
|
869
|
-
var UpdateProblemRequest$ = [3, n0, _UPR,
|
|
870
|
-
0,
|
|
871
|
-
[_PI, _US, _V],
|
|
872
|
-
[0, 0, 0], 1
|
|
873
|
-
];
|
|
874
|
-
var UpdateProblemResponse$ = [3, n0, _UPRp,
|
|
875
|
-
0,
|
|
876
|
-
[],
|
|
877
|
-
[]
|
|
878
|
-
];
|
|
879
|
-
var UpdateWorkloadRequest$ = [3, n0, _UWR,
|
|
880
|
-
0,
|
|
881
|
-
[_RGN, _CN, _WC, _WI],
|
|
882
|
-
[0, 0, () => WorkloadConfiguration$, 0], 3
|
|
883
|
-
];
|
|
884
|
-
var UpdateWorkloadResponse$ = [3, n0, _UWRp,
|
|
885
|
-
0,
|
|
886
|
-
[_WI, _WC],
|
|
887
|
-
[0, () => WorkloadConfiguration$]
|
|
888
|
-
];
|
|
889
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
890
|
-
{ [_aQE]: [`ValidationException`, 400], [_e]: _c, [_hE]: 400 },
|
|
891
|
-
[_M],
|
|
892
|
-
[0]
|
|
893
|
-
];
|
|
894
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
895
|
-
var Workload$ = [3, n0, _W,
|
|
896
|
-
0,
|
|
897
|
-
[_WI, _CN, _WN, _T, _WR, _MWC],
|
|
898
|
-
[0, 0, 0, 0, 0, 2]
|
|
899
|
-
];
|
|
900
|
-
var WorkloadConfiguration$ = [3, n0, _WC,
|
|
901
|
-
0,
|
|
902
|
-
[_WN, _T, _C],
|
|
903
|
-
[0, 0, 0]
|
|
904
|
-
];
|
|
905
|
-
var ApplicationInsightsServiceException$ = [-3, _sm, "ApplicationInsightsServiceException", 0, [], []];
|
|
906
|
-
schema.TypeRegistry.for(_sm).registerError(ApplicationInsightsServiceException$, ApplicationInsightsServiceException);
|
|
907
|
-
var ApplicationComponentList = [1, n0, _ACL,
|
|
908
|
-
0, () => ApplicationComponent$
|
|
909
|
-
];
|
|
910
|
-
var ApplicationInfoList = [1, n0, _AIL,
|
|
911
|
-
0, () => ApplicationInfo$
|
|
912
|
-
];
|
|
913
|
-
var ConfigurationEventList = [1, n0, _CEL,
|
|
914
|
-
0, () => ConfigurationEvent$
|
|
915
|
-
];
|
|
916
|
-
var LogPatternList = [1, n0, _LPL,
|
|
917
|
-
0, () => LogPattern$
|
|
918
|
-
];
|
|
919
|
-
var ObservationList = [1, n0, _OL,
|
|
920
|
-
0, () => Observation$
|
|
921
|
-
];
|
|
922
|
-
var ProblemList = [1, n0, _PL,
|
|
923
|
-
0, () => Problem$
|
|
924
|
-
];
|
|
925
|
-
var TagList = [1, n0, _TL,
|
|
926
|
-
0, () => Tag$
|
|
927
|
-
];
|
|
928
|
-
var WorkloadList = [1, n0, _WL,
|
|
929
|
-
0, () => Workload$
|
|
930
|
-
];
|
|
931
|
-
var AddWorkload$ = [9, n0, _AW,
|
|
932
|
-
0, () => AddWorkloadRequest$, () => AddWorkloadResponse$
|
|
933
|
-
];
|
|
934
|
-
var CreateApplication$ = [9, n0, _CA,
|
|
935
|
-
0, () => CreateApplicationRequest$, () => CreateApplicationResponse$
|
|
936
|
-
];
|
|
937
|
-
var CreateComponent$ = [9, n0, _CCr,
|
|
938
|
-
0, () => CreateComponentRequest$, () => CreateComponentResponse$
|
|
939
|
-
];
|
|
940
|
-
var CreateLogPattern$ = [9, n0, _CLP,
|
|
941
|
-
0, () => CreateLogPatternRequest$, () => CreateLogPatternResponse$
|
|
942
|
-
];
|
|
943
|
-
var DeleteApplication$ = [9, n0, _DA,
|
|
944
|
-
0, () => DeleteApplicationRequest$, () => DeleteApplicationResponse$
|
|
945
|
-
];
|
|
946
|
-
var DeleteComponent$ = [9, n0, _DC,
|
|
947
|
-
0, () => DeleteComponentRequest$, () => DeleteComponentResponse$
|
|
948
|
-
];
|
|
949
|
-
var DeleteLogPattern$ = [9, n0, _DLP,
|
|
950
|
-
0, () => DeleteLogPatternRequest$, () => DeleteLogPatternResponse$
|
|
951
|
-
];
|
|
952
|
-
var DescribeApplication$ = [9, n0, _DAe,
|
|
953
|
-
0, () => DescribeApplicationRequest$, () => DescribeApplicationResponse$
|
|
954
|
-
];
|
|
955
|
-
var DescribeComponent$ = [9, n0, _DCe,
|
|
956
|
-
0, () => DescribeComponentRequest$, () => DescribeComponentResponse$
|
|
957
|
-
];
|
|
958
|
-
var DescribeComponentConfiguration$ = [9, n0, _DCC,
|
|
959
|
-
0, () => DescribeComponentConfigurationRequest$, () => DescribeComponentConfigurationResponse$
|
|
960
|
-
];
|
|
961
|
-
var DescribeComponentConfigurationRecommendation$ = [9, n0, _DCCRes,
|
|
962
|
-
0, () => DescribeComponentConfigurationRecommendationRequest$, () => DescribeComponentConfigurationRecommendationResponse$
|
|
963
|
-
];
|
|
964
|
-
var DescribeLogPattern$ = [9, n0, _DLPe,
|
|
965
|
-
0, () => DescribeLogPatternRequest$, () => DescribeLogPatternResponse$
|
|
966
|
-
];
|
|
967
|
-
var DescribeObservation$ = [9, n0, _DO,
|
|
968
|
-
0, () => DescribeObservationRequest$, () => DescribeObservationResponse$
|
|
969
|
-
];
|
|
970
|
-
var DescribeProblem$ = [9, n0, _DP,
|
|
971
|
-
0, () => DescribeProblemRequest$, () => DescribeProblemResponse$
|
|
972
|
-
];
|
|
973
|
-
var DescribeProblemObservations$ = [9, n0, _DPO,
|
|
974
|
-
0, () => DescribeProblemObservationsRequest$, () => DescribeProblemObservationsResponse$
|
|
975
|
-
];
|
|
976
|
-
var DescribeWorkload$ = [9, n0, _DWe,
|
|
977
|
-
0, () => DescribeWorkloadRequest$, () => DescribeWorkloadResponse$
|
|
978
|
-
];
|
|
979
|
-
var ListApplications$ = [9, n0, _LA,
|
|
980
|
-
0, () => ListApplicationsRequest$, () => ListApplicationsResponse$
|
|
981
|
-
];
|
|
982
|
-
var ListComponents$ = [9, n0, _LCi,
|
|
983
|
-
0, () => ListComponentsRequest$, () => ListComponentsResponse$
|
|
984
|
-
];
|
|
985
|
-
var ListConfigurationHistory$ = [9, n0, _LCH,
|
|
986
|
-
0, () => ListConfigurationHistoryRequest$, () => ListConfigurationHistoryResponse$
|
|
987
|
-
];
|
|
988
|
-
var ListLogPatterns$ = [9, n0, _LLP,
|
|
989
|
-
0, () => ListLogPatternsRequest$, () => ListLogPatternsResponse$
|
|
990
|
-
];
|
|
991
|
-
var ListLogPatternSets$ = [9, n0, _LLPS,
|
|
992
|
-
0, () => ListLogPatternSetsRequest$, () => ListLogPatternSetsResponse$
|
|
993
|
-
];
|
|
994
|
-
var ListProblems$ = [9, n0, _LPi,
|
|
995
|
-
0, () => ListProblemsRequest$, () => ListProblemsResponse$
|
|
996
|
-
];
|
|
997
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
998
|
-
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
999
|
-
];
|
|
1000
|
-
var ListWorkloads$ = [9, n0, _LW,
|
|
1001
|
-
0, () => ListWorkloadsRequest$, () => ListWorkloadsResponse$
|
|
1002
|
-
];
|
|
1003
|
-
var RemoveWorkload$ = [9, n0, _RW,
|
|
1004
|
-
0, () => RemoveWorkloadRequest$, () => RemoveWorkloadResponse$
|
|
1005
|
-
];
|
|
1006
|
-
var TagResource$ = [9, n0, _TR,
|
|
1007
|
-
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1008
|
-
];
|
|
1009
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1010
|
-
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1011
|
-
];
|
|
1012
|
-
var UpdateApplication$ = [9, n0, _UA,
|
|
1013
|
-
0, () => UpdateApplicationRequest$, () => UpdateApplicationResponse$
|
|
1014
|
-
];
|
|
1015
|
-
var UpdateComponent$ = [9, n0, _UC,
|
|
1016
|
-
0, () => UpdateComponentRequest$, () => UpdateComponentResponse$
|
|
1017
|
-
];
|
|
1018
|
-
var UpdateComponentConfiguration$ = [9, n0, _UCC,
|
|
1019
|
-
0, () => UpdateComponentConfigurationRequest$, () => UpdateComponentConfigurationResponse$
|
|
1020
|
-
];
|
|
1021
|
-
var UpdateLogPattern$ = [9, n0, _ULP,
|
|
1022
|
-
0, () => UpdateLogPatternRequest$, () => UpdateLogPatternResponse$
|
|
1023
|
-
];
|
|
1024
|
-
var UpdateProblem$ = [9, n0, _UP,
|
|
1025
|
-
0, () => UpdateProblemRequest$, () => UpdateProblemResponse$
|
|
1026
|
-
];
|
|
1027
|
-
var UpdateWorkload$ = [9, n0, _UW,
|
|
1028
|
-
0, () => UpdateWorkloadRequest$, () => UpdateWorkloadResponse$
|
|
1029
|
-
];
|
|
1030
|
-
|
|
1031
116
|
class AddWorkloadCommand extends smithyClient.Command
|
|
1032
117
|
.classBuilder()
|
|
1033
118
|
.ep(commonParams)
|
|
@@ -1036,7 +121,7 @@ class AddWorkloadCommand extends smithyClient.Command
|
|
|
1036
121
|
})
|
|
1037
122
|
.s("EC2WindowsBarleyService", "AddWorkload", {})
|
|
1038
123
|
.n("ApplicationInsightsClient", "AddWorkloadCommand")
|
|
1039
|
-
.sc(AddWorkload$)
|
|
124
|
+
.sc(schemas_0.AddWorkload$)
|
|
1040
125
|
.build() {
|
|
1041
126
|
}
|
|
1042
127
|
|
|
@@ -1048,7 +133,7 @@ class CreateApplicationCommand extends smithyClient.Command
|
|
|
1048
133
|
})
|
|
1049
134
|
.s("EC2WindowsBarleyService", "CreateApplication", {})
|
|
1050
135
|
.n("ApplicationInsightsClient", "CreateApplicationCommand")
|
|
1051
|
-
.sc(CreateApplication$)
|
|
136
|
+
.sc(schemas_0.CreateApplication$)
|
|
1052
137
|
.build() {
|
|
1053
138
|
}
|
|
1054
139
|
|
|
@@ -1060,7 +145,7 @@ class CreateComponentCommand extends smithyClient.Command
|
|
|
1060
145
|
})
|
|
1061
146
|
.s("EC2WindowsBarleyService", "CreateComponent", {})
|
|
1062
147
|
.n("ApplicationInsightsClient", "CreateComponentCommand")
|
|
1063
|
-
.sc(CreateComponent$)
|
|
148
|
+
.sc(schemas_0.CreateComponent$)
|
|
1064
149
|
.build() {
|
|
1065
150
|
}
|
|
1066
151
|
|
|
@@ -1072,7 +157,7 @@ class CreateLogPatternCommand extends smithyClient.Command
|
|
|
1072
157
|
})
|
|
1073
158
|
.s("EC2WindowsBarleyService", "CreateLogPattern", {})
|
|
1074
159
|
.n("ApplicationInsightsClient", "CreateLogPatternCommand")
|
|
1075
|
-
.sc(CreateLogPattern$)
|
|
160
|
+
.sc(schemas_0.CreateLogPattern$)
|
|
1076
161
|
.build() {
|
|
1077
162
|
}
|
|
1078
163
|
|
|
@@ -1084,7 +169,7 @@ class DeleteApplicationCommand extends smithyClient.Command
|
|
|
1084
169
|
})
|
|
1085
170
|
.s("EC2WindowsBarleyService", "DeleteApplication", {})
|
|
1086
171
|
.n("ApplicationInsightsClient", "DeleteApplicationCommand")
|
|
1087
|
-
.sc(DeleteApplication$)
|
|
172
|
+
.sc(schemas_0.DeleteApplication$)
|
|
1088
173
|
.build() {
|
|
1089
174
|
}
|
|
1090
175
|
|
|
@@ -1096,7 +181,7 @@ class DeleteComponentCommand extends smithyClient.Command
|
|
|
1096
181
|
})
|
|
1097
182
|
.s("EC2WindowsBarleyService", "DeleteComponent", {})
|
|
1098
183
|
.n("ApplicationInsightsClient", "DeleteComponentCommand")
|
|
1099
|
-
.sc(DeleteComponent$)
|
|
184
|
+
.sc(schemas_0.DeleteComponent$)
|
|
1100
185
|
.build() {
|
|
1101
186
|
}
|
|
1102
187
|
|
|
@@ -1108,7 +193,7 @@ class DeleteLogPatternCommand extends smithyClient.Command
|
|
|
1108
193
|
})
|
|
1109
194
|
.s("EC2WindowsBarleyService", "DeleteLogPattern", {})
|
|
1110
195
|
.n("ApplicationInsightsClient", "DeleteLogPatternCommand")
|
|
1111
|
-
.sc(DeleteLogPattern$)
|
|
196
|
+
.sc(schemas_0.DeleteLogPattern$)
|
|
1112
197
|
.build() {
|
|
1113
198
|
}
|
|
1114
199
|
|
|
@@ -1120,7 +205,7 @@ class DescribeApplicationCommand extends smithyClient.Command
|
|
|
1120
205
|
})
|
|
1121
206
|
.s("EC2WindowsBarleyService", "DescribeApplication", {})
|
|
1122
207
|
.n("ApplicationInsightsClient", "DescribeApplicationCommand")
|
|
1123
|
-
.sc(DescribeApplication$)
|
|
208
|
+
.sc(schemas_0.DescribeApplication$)
|
|
1124
209
|
.build() {
|
|
1125
210
|
}
|
|
1126
211
|
|
|
@@ -1132,7 +217,7 @@ class DescribeComponentCommand extends smithyClient.Command
|
|
|
1132
217
|
})
|
|
1133
218
|
.s("EC2WindowsBarleyService", "DescribeComponent", {})
|
|
1134
219
|
.n("ApplicationInsightsClient", "DescribeComponentCommand")
|
|
1135
|
-
.sc(DescribeComponent$)
|
|
220
|
+
.sc(schemas_0.DescribeComponent$)
|
|
1136
221
|
.build() {
|
|
1137
222
|
}
|
|
1138
223
|
|
|
@@ -1144,7 +229,7 @@ class DescribeComponentConfigurationCommand extends smithyClient.Command
|
|
|
1144
229
|
})
|
|
1145
230
|
.s("EC2WindowsBarleyService", "DescribeComponentConfiguration", {})
|
|
1146
231
|
.n("ApplicationInsightsClient", "DescribeComponentConfigurationCommand")
|
|
1147
|
-
.sc(DescribeComponentConfiguration$)
|
|
232
|
+
.sc(schemas_0.DescribeComponentConfiguration$)
|
|
1148
233
|
.build() {
|
|
1149
234
|
}
|
|
1150
235
|
|
|
@@ -1156,7 +241,7 @@ class DescribeComponentConfigurationRecommendationCommand extends smithyClient.C
|
|
|
1156
241
|
})
|
|
1157
242
|
.s("EC2WindowsBarleyService", "DescribeComponentConfigurationRecommendation", {})
|
|
1158
243
|
.n("ApplicationInsightsClient", "DescribeComponentConfigurationRecommendationCommand")
|
|
1159
|
-
.sc(DescribeComponentConfigurationRecommendation$)
|
|
244
|
+
.sc(schemas_0.DescribeComponentConfigurationRecommendation$)
|
|
1160
245
|
.build() {
|
|
1161
246
|
}
|
|
1162
247
|
|
|
@@ -1168,7 +253,7 @@ class DescribeLogPatternCommand extends smithyClient.Command
|
|
|
1168
253
|
})
|
|
1169
254
|
.s("EC2WindowsBarleyService", "DescribeLogPattern", {})
|
|
1170
255
|
.n("ApplicationInsightsClient", "DescribeLogPatternCommand")
|
|
1171
|
-
.sc(DescribeLogPattern$)
|
|
256
|
+
.sc(schemas_0.DescribeLogPattern$)
|
|
1172
257
|
.build() {
|
|
1173
258
|
}
|
|
1174
259
|
|
|
@@ -1180,7 +265,7 @@ class DescribeObservationCommand extends smithyClient.Command
|
|
|
1180
265
|
})
|
|
1181
266
|
.s("EC2WindowsBarleyService", "DescribeObservation", {})
|
|
1182
267
|
.n("ApplicationInsightsClient", "DescribeObservationCommand")
|
|
1183
|
-
.sc(DescribeObservation$)
|
|
268
|
+
.sc(schemas_0.DescribeObservation$)
|
|
1184
269
|
.build() {
|
|
1185
270
|
}
|
|
1186
271
|
|
|
@@ -1192,7 +277,7 @@ class DescribeProblemCommand extends smithyClient.Command
|
|
|
1192
277
|
})
|
|
1193
278
|
.s("EC2WindowsBarleyService", "DescribeProblem", {})
|
|
1194
279
|
.n("ApplicationInsightsClient", "DescribeProblemCommand")
|
|
1195
|
-
.sc(DescribeProblem$)
|
|
280
|
+
.sc(schemas_0.DescribeProblem$)
|
|
1196
281
|
.build() {
|
|
1197
282
|
}
|
|
1198
283
|
|
|
@@ -1204,7 +289,7 @@ class DescribeProblemObservationsCommand extends smithyClient.Command
|
|
|
1204
289
|
})
|
|
1205
290
|
.s("EC2WindowsBarleyService", "DescribeProblemObservations", {})
|
|
1206
291
|
.n("ApplicationInsightsClient", "DescribeProblemObservationsCommand")
|
|
1207
|
-
.sc(DescribeProblemObservations$)
|
|
292
|
+
.sc(schemas_0.DescribeProblemObservations$)
|
|
1208
293
|
.build() {
|
|
1209
294
|
}
|
|
1210
295
|
|
|
@@ -1216,7 +301,7 @@ class DescribeWorkloadCommand extends smithyClient.Command
|
|
|
1216
301
|
})
|
|
1217
302
|
.s("EC2WindowsBarleyService", "DescribeWorkload", {})
|
|
1218
303
|
.n("ApplicationInsightsClient", "DescribeWorkloadCommand")
|
|
1219
|
-
.sc(DescribeWorkload$)
|
|
304
|
+
.sc(schemas_0.DescribeWorkload$)
|
|
1220
305
|
.build() {
|
|
1221
306
|
}
|
|
1222
307
|
|
|
@@ -1228,7 +313,7 @@ class ListApplicationsCommand extends smithyClient.Command
|
|
|
1228
313
|
})
|
|
1229
314
|
.s("EC2WindowsBarleyService", "ListApplications", {})
|
|
1230
315
|
.n("ApplicationInsightsClient", "ListApplicationsCommand")
|
|
1231
|
-
.sc(ListApplications$)
|
|
316
|
+
.sc(schemas_0.ListApplications$)
|
|
1232
317
|
.build() {
|
|
1233
318
|
}
|
|
1234
319
|
|
|
@@ -1240,7 +325,7 @@ class ListComponentsCommand extends smithyClient.Command
|
|
|
1240
325
|
})
|
|
1241
326
|
.s("EC2WindowsBarleyService", "ListComponents", {})
|
|
1242
327
|
.n("ApplicationInsightsClient", "ListComponentsCommand")
|
|
1243
|
-
.sc(ListComponents$)
|
|
328
|
+
.sc(schemas_0.ListComponents$)
|
|
1244
329
|
.build() {
|
|
1245
330
|
}
|
|
1246
331
|
|
|
@@ -1252,7 +337,7 @@ class ListConfigurationHistoryCommand extends smithyClient.Command
|
|
|
1252
337
|
})
|
|
1253
338
|
.s("EC2WindowsBarleyService", "ListConfigurationHistory", {})
|
|
1254
339
|
.n("ApplicationInsightsClient", "ListConfigurationHistoryCommand")
|
|
1255
|
-
.sc(ListConfigurationHistory$)
|
|
340
|
+
.sc(schemas_0.ListConfigurationHistory$)
|
|
1256
341
|
.build() {
|
|
1257
342
|
}
|
|
1258
343
|
|
|
@@ -1264,7 +349,7 @@ class ListLogPatternsCommand extends smithyClient.Command
|
|
|
1264
349
|
})
|
|
1265
350
|
.s("EC2WindowsBarleyService", "ListLogPatterns", {})
|
|
1266
351
|
.n("ApplicationInsightsClient", "ListLogPatternsCommand")
|
|
1267
|
-
.sc(ListLogPatterns$)
|
|
352
|
+
.sc(schemas_0.ListLogPatterns$)
|
|
1268
353
|
.build() {
|
|
1269
354
|
}
|
|
1270
355
|
|
|
@@ -1276,7 +361,7 @@ class ListLogPatternSetsCommand extends smithyClient.Command
|
|
|
1276
361
|
})
|
|
1277
362
|
.s("EC2WindowsBarleyService", "ListLogPatternSets", {})
|
|
1278
363
|
.n("ApplicationInsightsClient", "ListLogPatternSetsCommand")
|
|
1279
|
-
.sc(ListLogPatternSets$)
|
|
364
|
+
.sc(schemas_0.ListLogPatternSets$)
|
|
1280
365
|
.build() {
|
|
1281
366
|
}
|
|
1282
367
|
|
|
@@ -1288,7 +373,7 @@ class ListProblemsCommand extends smithyClient.Command
|
|
|
1288
373
|
})
|
|
1289
374
|
.s("EC2WindowsBarleyService", "ListProblems", {})
|
|
1290
375
|
.n("ApplicationInsightsClient", "ListProblemsCommand")
|
|
1291
|
-
.sc(ListProblems$)
|
|
376
|
+
.sc(schemas_0.ListProblems$)
|
|
1292
377
|
.build() {
|
|
1293
378
|
}
|
|
1294
379
|
|
|
@@ -1300,7 +385,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1300
385
|
})
|
|
1301
386
|
.s("EC2WindowsBarleyService", "ListTagsForResource", {})
|
|
1302
387
|
.n("ApplicationInsightsClient", "ListTagsForResourceCommand")
|
|
1303
|
-
.sc(ListTagsForResource$)
|
|
388
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1304
389
|
.build() {
|
|
1305
390
|
}
|
|
1306
391
|
|
|
@@ -1312,7 +397,7 @@ class ListWorkloadsCommand extends smithyClient.Command
|
|
|
1312
397
|
})
|
|
1313
398
|
.s("EC2WindowsBarleyService", "ListWorkloads", {})
|
|
1314
399
|
.n("ApplicationInsightsClient", "ListWorkloadsCommand")
|
|
1315
|
-
.sc(ListWorkloads$)
|
|
400
|
+
.sc(schemas_0.ListWorkloads$)
|
|
1316
401
|
.build() {
|
|
1317
402
|
}
|
|
1318
403
|
|
|
@@ -1324,7 +409,7 @@ class RemoveWorkloadCommand extends smithyClient.Command
|
|
|
1324
409
|
})
|
|
1325
410
|
.s("EC2WindowsBarleyService", "RemoveWorkload", {})
|
|
1326
411
|
.n("ApplicationInsightsClient", "RemoveWorkloadCommand")
|
|
1327
|
-
.sc(RemoveWorkload$)
|
|
412
|
+
.sc(schemas_0.RemoveWorkload$)
|
|
1328
413
|
.build() {
|
|
1329
414
|
}
|
|
1330
415
|
|
|
@@ -1336,7 +421,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1336
421
|
})
|
|
1337
422
|
.s("EC2WindowsBarleyService", "TagResource", {})
|
|
1338
423
|
.n("ApplicationInsightsClient", "TagResourceCommand")
|
|
1339
|
-
.sc(TagResource$)
|
|
424
|
+
.sc(schemas_0.TagResource$)
|
|
1340
425
|
.build() {
|
|
1341
426
|
}
|
|
1342
427
|
|
|
@@ -1348,7 +433,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1348
433
|
})
|
|
1349
434
|
.s("EC2WindowsBarleyService", "UntagResource", {})
|
|
1350
435
|
.n("ApplicationInsightsClient", "UntagResourceCommand")
|
|
1351
|
-
.sc(UntagResource$)
|
|
436
|
+
.sc(schemas_0.UntagResource$)
|
|
1352
437
|
.build() {
|
|
1353
438
|
}
|
|
1354
439
|
|
|
@@ -1360,7 +445,7 @@ class UpdateApplicationCommand extends smithyClient.Command
|
|
|
1360
445
|
})
|
|
1361
446
|
.s("EC2WindowsBarleyService", "UpdateApplication", {})
|
|
1362
447
|
.n("ApplicationInsightsClient", "UpdateApplicationCommand")
|
|
1363
|
-
.sc(UpdateApplication$)
|
|
448
|
+
.sc(schemas_0.UpdateApplication$)
|
|
1364
449
|
.build() {
|
|
1365
450
|
}
|
|
1366
451
|
|
|
@@ -1372,7 +457,7 @@ class UpdateComponentCommand extends smithyClient.Command
|
|
|
1372
457
|
})
|
|
1373
458
|
.s("EC2WindowsBarleyService", "UpdateComponent", {})
|
|
1374
459
|
.n("ApplicationInsightsClient", "UpdateComponentCommand")
|
|
1375
|
-
.sc(UpdateComponent$)
|
|
460
|
+
.sc(schemas_0.UpdateComponent$)
|
|
1376
461
|
.build() {
|
|
1377
462
|
}
|
|
1378
463
|
|
|
@@ -1384,7 +469,7 @@ class UpdateComponentConfigurationCommand extends smithyClient.Command
|
|
|
1384
469
|
})
|
|
1385
470
|
.s("EC2WindowsBarleyService", "UpdateComponentConfiguration", {})
|
|
1386
471
|
.n("ApplicationInsightsClient", "UpdateComponentConfigurationCommand")
|
|
1387
|
-
.sc(UpdateComponentConfiguration$)
|
|
472
|
+
.sc(schemas_0.UpdateComponentConfiguration$)
|
|
1388
473
|
.build() {
|
|
1389
474
|
}
|
|
1390
475
|
|
|
@@ -1396,7 +481,7 @@ class UpdateLogPatternCommand extends smithyClient.Command
|
|
|
1396
481
|
})
|
|
1397
482
|
.s("EC2WindowsBarleyService", "UpdateLogPattern", {})
|
|
1398
483
|
.n("ApplicationInsightsClient", "UpdateLogPatternCommand")
|
|
1399
|
-
.sc(UpdateLogPattern$)
|
|
484
|
+
.sc(schemas_0.UpdateLogPattern$)
|
|
1400
485
|
.build() {
|
|
1401
486
|
}
|
|
1402
487
|
|
|
@@ -1408,7 +493,7 @@ class UpdateProblemCommand extends smithyClient.Command
|
|
|
1408
493
|
})
|
|
1409
494
|
.s("EC2WindowsBarleyService", "UpdateProblem", {})
|
|
1410
495
|
.n("ApplicationInsightsClient", "UpdateProblemCommand")
|
|
1411
|
-
.sc(UpdateProblem$)
|
|
496
|
+
.sc(schemas_0.UpdateProblem$)
|
|
1412
497
|
.build() {
|
|
1413
498
|
}
|
|
1414
499
|
|
|
@@ -1420,7 +505,7 @@ class UpdateWorkloadCommand extends smithyClient.Command
|
|
|
1420
505
|
})
|
|
1421
506
|
.s("EC2WindowsBarleyService", "UpdateWorkload", {})
|
|
1422
507
|
.n("ApplicationInsightsClient", "UpdateWorkloadCommand")
|
|
1423
|
-
.sc(UpdateWorkload$)
|
|
508
|
+
.sc(schemas_0.UpdateWorkload$)
|
|
1424
509
|
.build() {
|
|
1425
510
|
}
|
|
1426
511
|
|
|
@@ -1591,184 +676,61 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1591
676
|
enumerable: true,
|
|
1592
677
|
get: function () { return smithyClient.Client; }
|
|
1593
678
|
});
|
|
1594
|
-
exports
|
|
1595
|
-
|
|
1596
|
-
|
|
679
|
+
Object.defineProperty(exports, "ApplicationInsightsServiceException", {
|
|
680
|
+
enumerable: true,
|
|
681
|
+
get: function () { return ApplicationInsightsServiceException.ApplicationInsightsServiceException; }
|
|
682
|
+
});
|
|
1597
683
|
exports.AddWorkloadCommand = AddWorkloadCommand;
|
|
1598
|
-
exports.AddWorkloadRequest$ = AddWorkloadRequest$;
|
|
1599
|
-
exports.AddWorkloadResponse$ = AddWorkloadResponse$;
|
|
1600
|
-
exports.ApplicationComponent$ = ApplicationComponent$;
|
|
1601
|
-
exports.ApplicationInfo$ = ApplicationInfo$;
|
|
1602
684
|
exports.ApplicationInsights = ApplicationInsights;
|
|
1603
685
|
exports.ApplicationInsightsClient = ApplicationInsightsClient;
|
|
1604
|
-
exports.ApplicationInsightsServiceException = ApplicationInsightsServiceException;
|
|
1605
|
-
exports.ApplicationInsightsServiceException$ = ApplicationInsightsServiceException$;
|
|
1606
|
-
exports.BadRequestException = BadRequestException;
|
|
1607
|
-
exports.BadRequestException$ = BadRequestException$;
|
|
1608
686
|
exports.CloudWatchEventSource = CloudWatchEventSource;
|
|
1609
|
-
exports.ConfigurationEvent$ = ConfigurationEvent$;
|
|
1610
687
|
exports.ConfigurationEventResourceType = ConfigurationEventResourceType;
|
|
1611
688
|
exports.ConfigurationEventStatus = ConfigurationEventStatus;
|
|
1612
|
-
exports.CreateApplication$ = CreateApplication$;
|
|
1613
689
|
exports.CreateApplicationCommand = CreateApplicationCommand;
|
|
1614
|
-
exports.CreateApplicationRequest$ = CreateApplicationRequest$;
|
|
1615
|
-
exports.CreateApplicationResponse$ = CreateApplicationResponse$;
|
|
1616
|
-
exports.CreateComponent$ = CreateComponent$;
|
|
1617
690
|
exports.CreateComponentCommand = CreateComponentCommand;
|
|
1618
|
-
exports.CreateComponentRequest$ = CreateComponentRequest$;
|
|
1619
|
-
exports.CreateComponentResponse$ = CreateComponentResponse$;
|
|
1620
|
-
exports.CreateLogPattern$ = CreateLogPattern$;
|
|
1621
691
|
exports.CreateLogPatternCommand = CreateLogPatternCommand;
|
|
1622
|
-
exports.CreateLogPatternRequest$ = CreateLogPatternRequest$;
|
|
1623
|
-
exports.CreateLogPatternResponse$ = CreateLogPatternResponse$;
|
|
1624
|
-
exports.DeleteApplication$ = DeleteApplication$;
|
|
1625
692
|
exports.DeleteApplicationCommand = DeleteApplicationCommand;
|
|
1626
|
-
exports.DeleteApplicationRequest$ = DeleteApplicationRequest$;
|
|
1627
|
-
exports.DeleteApplicationResponse$ = DeleteApplicationResponse$;
|
|
1628
|
-
exports.DeleteComponent$ = DeleteComponent$;
|
|
1629
693
|
exports.DeleteComponentCommand = DeleteComponentCommand;
|
|
1630
|
-
exports.DeleteComponentRequest$ = DeleteComponentRequest$;
|
|
1631
|
-
exports.DeleteComponentResponse$ = DeleteComponentResponse$;
|
|
1632
|
-
exports.DeleteLogPattern$ = DeleteLogPattern$;
|
|
1633
694
|
exports.DeleteLogPatternCommand = DeleteLogPatternCommand;
|
|
1634
|
-
exports.DeleteLogPatternRequest$ = DeleteLogPatternRequest$;
|
|
1635
|
-
exports.DeleteLogPatternResponse$ = DeleteLogPatternResponse$;
|
|
1636
|
-
exports.DescribeApplication$ = DescribeApplication$;
|
|
1637
695
|
exports.DescribeApplicationCommand = DescribeApplicationCommand;
|
|
1638
|
-
exports.DescribeApplicationRequest$ = DescribeApplicationRequest$;
|
|
1639
|
-
exports.DescribeApplicationResponse$ = DescribeApplicationResponse$;
|
|
1640
|
-
exports.DescribeComponent$ = DescribeComponent$;
|
|
1641
696
|
exports.DescribeComponentCommand = DescribeComponentCommand;
|
|
1642
|
-
exports.DescribeComponentConfiguration$ = DescribeComponentConfiguration$;
|
|
1643
697
|
exports.DescribeComponentConfigurationCommand = DescribeComponentConfigurationCommand;
|
|
1644
|
-
exports.DescribeComponentConfigurationRecommendation$ = DescribeComponentConfigurationRecommendation$;
|
|
1645
698
|
exports.DescribeComponentConfigurationRecommendationCommand = DescribeComponentConfigurationRecommendationCommand;
|
|
1646
|
-
exports.DescribeComponentConfigurationRecommendationRequest$ = DescribeComponentConfigurationRecommendationRequest$;
|
|
1647
|
-
exports.DescribeComponentConfigurationRecommendationResponse$ = DescribeComponentConfigurationRecommendationResponse$;
|
|
1648
|
-
exports.DescribeComponentConfigurationRequest$ = DescribeComponentConfigurationRequest$;
|
|
1649
|
-
exports.DescribeComponentConfigurationResponse$ = DescribeComponentConfigurationResponse$;
|
|
1650
|
-
exports.DescribeComponentRequest$ = DescribeComponentRequest$;
|
|
1651
|
-
exports.DescribeComponentResponse$ = DescribeComponentResponse$;
|
|
1652
|
-
exports.DescribeLogPattern$ = DescribeLogPattern$;
|
|
1653
699
|
exports.DescribeLogPatternCommand = DescribeLogPatternCommand;
|
|
1654
|
-
exports.DescribeLogPatternRequest$ = DescribeLogPatternRequest$;
|
|
1655
|
-
exports.DescribeLogPatternResponse$ = DescribeLogPatternResponse$;
|
|
1656
|
-
exports.DescribeObservation$ = DescribeObservation$;
|
|
1657
700
|
exports.DescribeObservationCommand = DescribeObservationCommand;
|
|
1658
|
-
exports.DescribeObservationRequest$ = DescribeObservationRequest$;
|
|
1659
|
-
exports.DescribeObservationResponse$ = DescribeObservationResponse$;
|
|
1660
|
-
exports.DescribeProblem$ = DescribeProblem$;
|
|
1661
701
|
exports.DescribeProblemCommand = DescribeProblemCommand;
|
|
1662
|
-
exports.DescribeProblemObservations$ = DescribeProblemObservations$;
|
|
1663
702
|
exports.DescribeProblemObservationsCommand = DescribeProblemObservationsCommand;
|
|
1664
|
-
exports.DescribeProblemObservationsRequest$ = DescribeProblemObservationsRequest$;
|
|
1665
|
-
exports.DescribeProblemObservationsResponse$ = DescribeProblemObservationsResponse$;
|
|
1666
|
-
exports.DescribeProblemRequest$ = DescribeProblemRequest$;
|
|
1667
|
-
exports.DescribeProblemResponse$ = DescribeProblemResponse$;
|
|
1668
|
-
exports.DescribeWorkload$ = DescribeWorkload$;
|
|
1669
703
|
exports.DescribeWorkloadCommand = DescribeWorkloadCommand;
|
|
1670
|
-
exports.DescribeWorkloadRequest$ = DescribeWorkloadRequest$;
|
|
1671
|
-
exports.DescribeWorkloadResponse$ = DescribeWorkloadResponse$;
|
|
1672
704
|
exports.DiscoveryType = DiscoveryType;
|
|
1673
705
|
exports.FeedbackKey = FeedbackKey;
|
|
1674
706
|
exports.FeedbackValue = FeedbackValue;
|
|
1675
707
|
exports.GroupingType = GroupingType;
|
|
1676
|
-
exports.InternalServerException = InternalServerException;
|
|
1677
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1678
|
-
exports.ListApplications$ = ListApplications$;
|
|
1679
708
|
exports.ListApplicationsCommand = ListApplicationsCommand;
|
|
1680
|
-
exports.ListApplicationsRequest$ = ListApplicationsRequest$;
|
|
1681
|
-
exports.ListApplicationsResponse$ = ListApplicationsResponse$;
|
|
1682
|
-
exports.ListComponents$ = ListComponents$;
|
|
1683
709
|
exports.ListComponentsCommand = ListComponentsCommand;
|
|
1684
|
-
exports.ListComponentsRequest$ = ListComponentsRequest$;
|
|
1685
|
-
exports.ListComponentsResponse$ = ListComponentsResponse$;
|
|
1686
|
-
exports.ListConfigurationHistory$ = ListConfigurationHistory$;
|
|
1687
710
|
exports.ListConfigurationHistoryCommand = ListConfigurationHistoryCommand;
|
|
1688
|
-
exports.ListConfigurationHistoryRequest$ = ListConfigurationHistoryRequest$;
|
|
1689
|
-
exports.ListConfigurationHistoryResponse$ = ListConfigurationHistoryResponse$;
|
|
1690
|
-
exports.ListLogPatternSets$ = ListLogPatternSets$;
|
|
1691
711
|
exports.ListLogPatternSetsCommand = ListLogPatternSetsCommand;
|
|
1692
|
-
exports.ListLogPatternSetsRequest$ = ListLogPatternSetsRequest$;
|
|
1693
|
-
exports.ListLogPatternSetsResponse$ = ListLogPatternSetsResponse$;
|
|
1694
|
-
exports.ListLogPatterns$ = ListLogPatterns$;
|
|
1695
712
|
exports.ListLogPatternsCommand = ListLogPatternsCommand;
|
|
1696
|
-
exports.ListLogPatternsRequest$ = ListLogPatternsRequest$;
|
|
1697
|
-
exports.ListLogPatternsResponse$ = ListLogPatternsResponse$;
|
|
1698
|
-
exports.ListProblems$ = ListProblems$;
|
|
1699
713
|
exports.ListProblemsCommand = ListProblemsCommand;
|
|
1700
|
-
exports.ListProblemsRequest$ = ListProblemsRequest$;
|
|
1701
|
-
exports.ListProblemsResponse$ = ListProblemsResponse$;
|
|
1702
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1703
714
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1704
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1705
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1706
|
-
exports.ListWorkloads$ = ListWorkloads$;
|
|
1707
715
|
exports.ListWorkloadsCommand = ListWorkloadsCommand;
|
|
1708
|
-
exports.ListWorkloadsRequest$ = ListWorkloadsRequest$;
|
|
1709
|
-
exports.ListWorkloadsResponse$ = ListWorkloadsResponse$;
|
|
1710
716
|
exports.LogFilter = LogFilter;
|
|
1711
|
-
exports.LogPattern$ = LogPattern$;
|
|
1712
|
-
exports.Observation$ = Observation$;
|
|
1713
717
|
exports.OsType = OsType;
|
|
1714
|
-
exports.Problem$ = Problem$;
|
|
1715
718
|
exports.RecommendationType = RecommendationType;
|
|
1716
|
-
exports.RelatedObservations$ = RelatedObservations$;
|
|
1717
|
-
exports.RemoveWorkload$ = RemoveWorkload$;
|
|
1718
719
|
exports.RemoveWorkloadCommand = RemoveWorkloadCommand;
|
|
1719
|
-
exports.RemoveWorkloadRequest$ = RemoveWorkloadRequest$;
|
|
1720
|
-
exports.RemoveWorkloadResponse$ = RemoveWorkloadResponse$;
|
|
1721
720
|
exports.ResolutionMethod = ResolutionMethod;
|
|
1722
|
-
exports.ResourceInUseException = ResourceInUseException;
|
|
1723
|
-
exports.ResourceInUseException$ = ResourceInUseException$;
|
|
1724
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1725
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1726
721
|
exports.SeverityLevel = SeverityLevel;
|
|
1727
722
|
exports.Status = Status;
|
|
1728
|
-
exports.Tag$ = Tag$;
|
|
1729
|
-
exports.TagResource$ = TagResource$;
|
|
1730
723
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1731
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1732
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1733
|
-
exports.TagsAlreadyExistException = TagsAlreadyExistException;
|
|
1734
|
-
exports.TagsAlreadyExistException$ = TagsAlreadyExistException$;
|
|
1735
724
|
exports.Tier = Tier;
|
|
1736
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
1737
|
-
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
1738
|
-
exports.UntagResource$ = UntagResource$;
|
|
1739
725
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1740
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1741
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1742
|
-
exports.UpdateApplication$ = UpdateApplication$;
|
|
1743
726
|
exports.UpdateApplicationCommand = UpdateApplicationCommand;
|
|
1744
|
-
exports.UpdateApplicationRequest$ = UpdateApplicationRequest$;
|
|
1745
|
-
exports.UpdateApplicationResponse$ = UpdateApplicationResponse$;
|
|
1746
|
-
exports.UpdateComponent$ = UpdateComponent$;
|
|
1747
727
|
exports.UpdateComponentCommand = UpdateComponentCommand;
|
|
1748
|
-
exports.UpdateComponentConfiguration$ = UpdateComponentConfiguration$;
|
|
1749
728
|
exports.UpdateComponentConfigurationCommand = UpdateComponentConfigurationCommand;
|
|
1750
|
-
exports.UpdateComponentConfigurationRequest$ = UpdateComponentConfigurationRequest$;
|
|
1751
|
-
exports.UpdateComponentConfigurationResponse$ = UpdateComponentConfigurationResponse$;
|
|
1752
|
-
exports.UpdateComponentRequest$ = UpdateComponentRequest$;
|
|
1753
|
-
exports.UpdateComponentResponse$ = UpdateComponentResponse$;
|
|
1754
|
-
exports.UpdateLogPattern$ = UpdateLogPattern$;
|
|
1755
729
|
exports.UpdateLogPatternCommand = UpdateLogPatternCommand;
|
|
1756
|
-
exports.UpdateLogPatternRequest$ = UpdateLogPatternRequest$;
|
|
1757
|
-
exports.UpdateLogPatternResponse$ = UpdateLogPatternResponse$;
|
|
1758
|
-
exports.UpdateProblem$ = UpdateProblem$;
|
|
1759
730
|
exports.UpdateProblemCommand = UpdateProblemCommand;
|
|
1760
|
-
exports.UpdateProblemRequest$ = UpdateProblemRequest$;
|
|
1761
|
-
exports.UpdateProblemResponse$ = UpdateProblemResponse$;
|
|
1762
731
|
exports.UpdateStatus = UpdateStatus;
|
|
1763
|
-
exports.UpdateWorkload$ = UpdateWorkload$;
|
|
1764
732
|
exports.UpdateWorkloadCommand = UpdateWorkloadCommand;
|
|
1765
|
-
exports.UpdateWorkloadRequest$ = UpdateWorkloadRequest$;
|
|
1766
|
-
exports.UpdateWorkloadResponse$ = UpdateWorkloadResponse$;
|
|
1767
|
-
exports.ValidationException = ValidationException;
|
|
1768
|
-
exports.ValidationException$ = ValidationException$;
|
|
1769
733
|
exports.Visibility = Visibility;
|
|
1770
|
-
exports.Workload$ = Workload$;
|
|
1771
|
-
exports.WorkloadConfiguration$ = WorkloadConfiguration$;
|
|
1772
734
|
exports.paginateListApplications = paginateListApplications;
|
|
1773
735
|
exports.paginateListComponents = paginateListComponents;
|
|
1774
736
|
exports.paginateListConfigurationHistory = paginateListConfigurationHistory;
|
|
@@ -1776,3 +738,15 @@ exports.paginateListLogPatternSets = paginateListLogPatternSets;
|
|
|
1776
738
|
exports.paginateListLogPatterns = paginateListLogPatterns;
|
|
1777
739
|
exports.paginateListProblems = paginateListProblems;
|
|
1778
740
|
exports.paginateListWorkloads = paginateListWorkloads;
|
|
741
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
742
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
743
|
+
enumerable: true,
|
|
744
|
+
get: function () { return schemas_0[k]; }
|
|
745
|
+
});
|
|
746
|
+
});
|
|
747
|
+
Object.keys(errors).forEach(function (k) {
|
|
748
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
749
|
+
enumerable: true,
|
|
750
|
+
get: function () { return errors[k]; }
|
|
751
|
+
});
|
|
752
|
+
});
|