@aws-sdk/client-application-signals 3.928.0 → 3.930.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.
Files changed (46) hide show
  1. package/dist-cjs/index.js +1416 -1246
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/ApplicationSignalsClient.js +2 -0
  4. package/dist-es/commands/BatchGetServiceLevelObjectiveBudgetReportCommand.js +3 -9
  5. package/dist-es/commands/BatchUpdateExclusionWindowsCommand.js +3 -9
  6. package/dist-es/commands/CreateServiceLevelObjectiveCommand.js +3 -9
  7. package/dist-es/commands/DeleteGroupingConfigurationCommand.js +3 -9
  8. package/dist-es/commands/DeleteServiceLevelObjectiveCommand.js +3 -9
  9. package/dist-es/commands/GetServiceCommand.js +3 -9
  10. package/dist-es/commands/GetServiceLevelObjectiveCommand.js +3 -9
  11. package/dist-es/commands/ListAuditFindingsCommand.js +3 -9
  12. package/dist-es/commands/ListGroupingAttributeDefinitionsCommand.js +3 -9
  13. package/dist-es/commands/ListServiceDependenciesCommand.js +3 -9
  14. package/dist-es/commands/ListServiceDependentsCommand.js +3 -9
  15. package/dist-es/commands/ListServiceLevelObjectiveExclusionWindowsCommand.js +3 -9
  16. package/dist-es/commands/ListServiceLevelObjectivesCommand.js +3 -9
  17. package/dist-es/commands/ListServiceOperationsCommand.js +3 -9
  18. package/dist-es/commands/ListServiceStatesCommand.js +3 -9
  19. package/dist-es/commands/ListServicesCommand.js +3 -9
  20. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  21. package/dist-es/commands/PutGroupingConfigurationCommand.js +3 -9
  22. package/dist-es/commands/StartDiscoveryCommand.js +3 -9
  23. package/dist-es/commands/TagResourceCommand.js +3 -9
  24. package/dist-es/commands/UntagResourceCommand.js +3 -9
  25. package/dist-es/commands/UpdateServiceLevelObjectiveCommand.js +3 -9
  26. package/dist-es/models/models_0.js +0 -34
  27. package/dist-es/runtimeConfig.shared.js +2 -0
  28. package/dist-es/schemas/schemas_0.js +1371 -0
  29. package/dist-types/ApplicationSignalsClient.d.ts +10 -1
  30. package/dist-types/models/models_0.d.ts +12 -3
  31. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  32. package/dist-types/runtimeConfig.d.ts +1 -0
  33. package/dist-types/runtimeConfig.native.d.ts +1 -0
  34. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  35. package/dist-types/schemas/schemas_0.d.ts +160 -0
  36. package/dist-types/ts3.4/ApplicationSignalsClient.d.ts +4 -0
  37. package/dist-types/ts3.4/models/models_0.d.ts +0 -6
  38. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  39. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  40. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  41. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  42. package/dist-types/ts3.4/schemas/schemas_0.d.ts +165 -0
  43. package/package.json +33 -33
  44. package/dist-es/protocols/Aws_restJson1.js +0 -1050
  45. package/dist-types/protocols/Aws_restJson1.d.ts +0 -200
  46. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -269
package/dist-cjs/index.js CHANGED
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
6
6
  var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
7
7
  var configResolver = require('@smithy/config-resolver');
8
8
  var core = require('@smithy/core');
9
+ var schema = require('@smithy/core/schema');
9
10
  var middlewareContentLength = require('@smithy/middleware-content-length');
10
11
  var middlewareEndpoint = require('@smithy/middleware-endpoint');
11
12
  var middlewareRetry = require('@smithy/middleware-retry');
@@ -14,8 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
14
15
  var runtimeConfig = require('./runtimeConfig');
15
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
16
17
  var protocolHttp = require('@smithy/protocol-http');
17
- var middlewareSerde = require('@smithy/middleware-serde');
18
- var core$1 = require('@aws-sdk/core');
19
18
 
20
19
  const resolveClientEndpointParameters = (options) => {
21
20
  return Object.assign(options, {
@@ -89,6 +88,7 @@ class ApplicationSignalsClient extends smithyClient.Client {
89
88
  const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
90
89
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
91
90
  this.config = _config_8;
91
+ this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
92
92
  this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
93
93
  this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
94
94
  this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
@@ -108,14 +108,14 @@ class ApplicationSignalsClient extends smithyClient.Client {
108
108
  }
109
109
  }
110
110
 
111
- class ApplicationSignalsServiceException extends smithyClient.ServiceException {
111
+ let ApplicationSignalsServiceException$1 = class ApplicationSignalsServiceException extends smithyClient.ServiceException {
112
112
  constructor(options) {
113
113
  super(options);
114
114
  Object.setPrototypeOf(this, ApplicationSignalsServiceException.prototype);
115
115
  }
116
- }
116
+ };
117
117
 
118
- class AccessDeniedException extends ApplicationSignalsServiceException {
118
+ let AccessDeniedException$1 = class AccessDeniedException extends ApplicationSignalsServiceException$1 {
119
119
  name = "AccessDeniedException";
120
120
  $fault = "client";
121
121
  Message;
@@ -128,7 +128,7 @@ class AccessDeniedException extends ApplicationSignalsServiceException {
128
128
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
129
129
  this.Message = opts.Message;
130
130
  }
131
- }
131
+ };
132
132
  const ServiceLevelObjectiveBudgetStatus = {
133
133
  BREACHED: "BREACHED",
134
134
  INSUFFICIENT_DATA: "INSUFFICIENT_DATA",
@@ -145,16 +145,6 @@ const DurationUnit = {
145
145
  MINUTE: "MINUTE",
146
146
  MONTH: "MONTH",
147
147
  };
148
- exports.Interval = void 0;
149
- (function (Interval) {
150
- Interval.visit = (value, visitor) => {
151
- if (value.RollingInterval !== undefined)
152
- return visitor.RollingInterval(value.RollingInterval);
153
- if (value.CalendarInterval !== undefined)
154
- return visitor.CalendarInterval(value.CalendarInterval);
155
- return visitor._(value.$unknown[0], value.$unknown[1]);
156
- };
157
- })(exports.Interval || (exports.Interval = {}));
158
148
  const ServiceLevelIndicatorComparisonOperator = {
159
149
  GREATER_THAN: "GreaterThan",
160
150
  GREATER_THAN_OR_EQUAL_TO: "GreaterThanOrEqualTo",
@@ -194,17 +184,7 @@ const StandardUnit = {
194
184
  TERABYTES: "Terabytes",
195
185
  TERABYTES_SECOND: "Terabytes/Second",
196
186
  };
197
- exports.MonitoredRequestCountMetricDataQueries = void 0;
198
- (function (MonitoredRequestCountMetricDataQueries) {
199
- MonitoredRequestCountMetricDataQueries.visit = (value, visitor) => {
200
- if (value.GoodCountMetric !== undefined)
201
- return visitor.GoodCountMetric(value.GoodCountMetric);
202
- if (value.BadCountMetric !== undefined)
203
- return visitor.BadCountMetric(value.BadCountMetric);
204
- return visitor._(value.$unknown[0], value.$unknown[1]);
205
- };
206
- })(exports.MonitoredRequestCountMetricDataQueries || (exports.MonitoredRequestCountMetricDataQueries = {}));
207
- class ThrottlingException extends ApplicationSignalsServiceException {
187
+ let ThrottlingException$1 = class ThrottlingException extends ApplicationSignalsServiceException$1 {
208
188
  name = "ThrottlingException";
209
189
  $fault = "client";
210
190
  Message;
@@ -217,8 +197,8 @@ class ThrottlingException extends ApplicationSignalsServiceException {
217
197
  Object.setPrototypeOf(this, ThrottlingException.prototype);
218
198
  this.Message = opts.Message;
219
199
  }
220
- }
221
- class ValidationException extends ApplicationSignalsServiceException {
200
+ };
201
+ let ValidationException$1 = class ValidationException extends ApplicationSignalsServiceException$1 {
222
202
  name = "ValidationException";
223
203
  $fault = "client";
224
204
  constructor(opts) {
@@ -229,8 +209,8 @@ class ValidationException extends ApplicationSignalsServiceException {
229
209
  });
230
210
  Object.setPrototypeOf(this, ValidationException.prototype);
231
211
  }
232
- }
233
- class ResourceNotFoundException extends ApplicationSignalsServiceException {
212
+ };
213
+ let ResourceNotFoundException$1 = class ResourceNotFoundException extends ApplicationSignalsServiceException$1 {
234
214
  name = "ResourceNotFoundException";
235
215
  $fault = "client";
236
216
  ResourceType;
@@ -247,21 +227,7 @@ class ResourceNotFoundException extends ApplicationSignalsServiceException {
247
227
  this.ResourceId = opts.ResourceId;
248
228
  this.Message = opts.Message;
249
229
  }
250
- }
251
- exports.AuditTargetEntity = void 0;
252
- (function (AuditTargetEntity) {
253
- AuditTargetEntity.visit = (value, visitor) => {
254
- if (value.Service !== undefined)
255
- return visitor.Service(value.Service);
256
- if (value.Slo !== undefined)
257
- return visitor.Slo(value.Slo);
258
- if (value.ServiceOperation !== undefined)
259
- return visitor.ServiceOperation(value.ServiceOperation);
260
- if (value.Canary !== undefined)
261
- return visitor.Canary(value.Canary);
262
- return visitor._(value.$unknown[0], value.$unknown[1]);
263
- };
264
- })(exports.AuditTargetEntity || (exports.AuditTargetEntity = {}));
230
+ };
265
231
  const Severity = {
266
232
  CRITICAL: "CRITICAL",
267
233
  HIGH: "HIGH",
@@ -276,7 +242,7 @@ const ConnectionType = {
276
242
  const ChangeEventType = {
277
243
  DEPLOYMENT: "DEPLOYMENT",
278
244
  };
279
- class ConflictException extends ApplicationSignalsServiceException {
245
+ let ConflictException$1 = class ConflictException extends ApplicationSignalsServiceException$1 {
280
246
  name = "ConflictException";
281
247
  $fault = "client";
282
248
  Message;
@@ -289,13 +255,13 @@ class ConflictException extends ApplicationSignalsServiceException {
289
255
  Object.setPrototypeOf(this, ConflictException.prototype);
290
256
  this.Message = opts.Message;
291
257
  }
292
- }
258
+ };
293
259
  const MetricSourceType = {
294
260
  CLOUDWATCH_METRIC: "CloudWatchMetric",
295
261
  SERVICE_DEPENDENCY: "ServiceDependency",
296
262
  SERVICE_OPERATION: "ServiceOperation",
297
263
  };
298
- class ServiceQuotaExceededException extends ApplicationSignalsServiceException {
264
+ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends ApplicationSignalsServiceException$1 {
299
265
  name = "ServiceQuotaExceededException";
300
266
  $fault = "client";
301
267
  Message;
@@ -308,1067 +274,1376 @@ class ServiceQuotaExceededException extends ApplicationSignalsServiceException {
308
274
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
309
275
  this.Message = opts.Message;
310
276
  }
311
- }
312
-
313
- const se_BatchGetServiceLevelObjectiveBudgetReportCommand = async (input, context) => {
314
- const b = core.requestBuilder(input, context);
315
- const headers = {
316
- "content-type": "application/json",
317
- };
318
- b.bp("/budget-report");
319
- let body;
320
- body = JSON.stringify(smithyClient.take(input, {
321
- SloIds: (_) => smithyClient._json(_),
322
- Timestamp: (_) => _.getTime() / 1_000,
323
- }));
324
- b.m("POST").h(headers).b(body);
325
- return b.build();
326
- };
327
- const se_BatchUpdateExclusionWindowsCommand = async (input, context) => {
328
- const b = core.requestBuilder(input, context);
329
- const headers = {
330
- "content-type": "application/json",
331
- };
332
- b.bp("/exclusion-windows");
333
- let body;
334
- body = JSON.stringify(smithyClient.take(input, {
335
- AddExclusionWindows: (_) => se_ExclusionWindows(_),
336
- RemoveExclusionWindows: (_) => se_ExclusionWindows(_),
337
- SloIds: (_) => smithyClient._json(_),
338
- }));
339
- b.m("PATCH").h(headers).b(body);
340
- return b.build();
341
- };
342
- const se_CreateServiceLevelObjectiveCommand = async (input, context) => {
343
- const b = core.requestBuilder(input, context);
344
- const headers = {
345
- "content-type": "application/json",
346
- };
347
- b.bp("/slo");
348
- let body;
349
- body = JSON.stringify(smithyClient.take(input, {
350
- BurnRateConfigurations: (_) => smithyClient._json(_),
351
- Description: [],
352
- Goal: (_) => se_Goal(_),
353
- Name: [],
354
- RequestBasedSliConfig: (_) => se_RequestBasedServiceLevelIndicatorConfig(_),
355
- SliConfig: (_) => se_ServiceLevelIndicatorConfig(_),
356
- Tags: (_) => smithyClient._json(_),
357
- }));
358
- b.m("POST").h(headers).b(body);
359
- return b.build();
360
- };
361
- const se_DeleteGroupingConfigurationCommand = async (input, context) => {
362
- const b = core.requestBuilder(input, context);
363
- const headers = {};
364
- b.bp("/grouping-configuration");
365
- let body;
366
- b.m("DELETE").h(headers).b(body);
367
- return b.build();
368
277
  };
369
- const se_DeleteServiceLevelObjectiveCommand = async (input, context) => {
370
- const b = core.requestBuilder(input, context);
371
- const headers = {};
372
- b.bp("/slo/{Id}");
373
- b.p("Id", () => input.Id, "{Id}", false);
374
- let body;
375
- b.m("DELETE").h(headers).b(body);
376
- return b.build();
377
- };
378
- const se_GetServiceCommand = async (input, context) => {
379
- const b = core.requestBuilder(input, context);
380
- const headers = {
381
- "content-type": "application/json",
382
- };
383
- b.bp("/service");
384
- const query = smithyClient.map({
385
- [_ST]: [smithyClient.expectNonNull(input.StartTime, `StartTime`) != null, () => smithyClient.serializeDateTime(input[_ST]).toString()],
386
- [_ET]: [smithyClient.expectNonNull(input.EndTime, `EndTime`) != null, () => smithyClient.serializeDateTime(input[_ET]).toString()],
387
- });
388
- let body;
389
- body = JSON.stringify(smithyClient.take(input, {
390
- KeyAttributes: (_) => smithyClient._json(_),
391
- }));
392
- b.m("POST").h(headers).q(query).b(body);
393
- return b.build();
394
- };
395
- const se_GetServiceLevelObjectiveCommand = async (input, context) => {
396
- const b = core.requestBuilder(input, context);
397
- const headers = {};
398
- b.bp("/slo/{Id}");
399
- b.p("Id", () => input.Id, "{Id}", false);
400
- let body;
401
- b.m("GET").h(headers).b(body);
402
- return b.build();
403
- };
404
- const se_ListAuditFindingsCommand = async (input, context) => {
405
- const b = core.requestBuilder(input, context);
406
- const headers = {
407
- "content-type": "application/json",
408
- };
409
- b.bp("/auditFindings");
410
- const query = smithyClient.map({
411
- [_ST]: [smithyClient.expectNonNull(input.StartTime, `StartTime`) != null, () => smithyClient.serializeDateTime(input[_ST]).toString()],
412
- [_ET]: [smithyClient.expectNonNull(input.EndTime, `EndTime`) != null, () => smithyClient.serializeDateTime(input[_ET]).toString()],
413
- });
414
- let body;
415
- body = JSON.stringify(smithyClient.take(input, {
416
- AuditTargets: (_) => smithyClient._json(_),
417
- Auditors: (_) => smithyClient._json(_),
418
- MaxResults: [],
419
- NextToken: [],
420
- }));
421
- b.m("POST").h(headers).q(query).b(body);
422
- return b.build();
423
- };
424
- const se_ListGroupingAttributeDefinitionsCommand = async (input, context) => {
425
- const b = core.requestBuilder(input, context);
426
- const headers = {};
427
- b.bp("/grouping-attribute-definitions");
428
- const query = smithyClient.map({
429
- [_NT]: [, input[_NT]],
430
- });
431
- let body;
432
- b.m("POST").h(headers).q(query).b(body);
433
- return b.build();
434
- };
435
- const se_ListServiceDependenciesCommand = async (input, context) => {
436
- const b = core.requestBuilder(input, context);
437
- const headers = {
438
- "content-type": "application/json",
439
- };
440
- b.bp("/service-dependencies");
441
- const query = smithyClient.map({
442
- [_ST]: [smithyClient.expectNonNull(input.StartTime, `StartTime`) != null, () => smithyClient.serializeDateTime(input[_ST]).toString()],
443
- [_ET]: [smithyClient.expectNonNull(input.EndTime, `EndTime`) != null, () => smithyClient.serializeDateTime(input[_ET]).toString()],
444
- [_MR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
445
- [_NT]: [, input[_NT]],
446
- });
447
- let body;
448
- body = JSON.stringify(smithyClient.take(input, {
449
- KeyAttributes: (_) => smithyClient._json(_),
450
- }));
451
- b.m("POST").h(headers).q(query).b(body);
452
- return b.build();
453
- };
454
- const se_ListServiceDependentsCommand = async (input, context) => {
455
- const b = core.requestBuilder(input, context);
456
- const headers = {
457
- "content-type": "application/json",
458
- };
459
- b.bp("/service-dependents");
460
- const query = smithyClient.map({
461
- [_ST]: [smithyClient.expectNonNull(input.StartTime, `StartTime`) != null, () => smithyClient.serializeDateTime(input[_ST]).toString()],
462
- [_ET]: [smithyClient.expectNonNull(input.EndTime, `EndTime`) != null, () => smithyClient.serializeDateTime(input[_ET]).toString()],
463
- [_MR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
464
- [_NT]: [, input[_NT]],
465
- });
466
- let body;
467
- body = JSON.stringify(smithyClient.take(input, {
468
- KeyAttributes: (_) => smithyClient._json(_),
469
- }));
470
- b.m("POST").h(headers).q(query).b(body);
471
- return b.build();
472
- };
473
- const se_ListServiceLevelObjectiveExclusionWindowsCommand = async (input, context) => {
474
- const b = core.requestBuilder(input, context);
475
- const headers = {};
476
- b.bp("/slo/{Id}/exclusion-windows");
477
- b.p("Id", () => input.Id, "{Id}", false);
478
- const query = smithyClient.map({
479
- [_MR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
480
- [_NT]: [, input[_NT]],
481
- });
482
- let body;
483
- b.m("GET").h(headers).q(query).b(body);
484
- return b.build();
485
- };
486
- const se_ListServiceLevelObjectivesCommand = async (input, context) => {
487
- const b = core.requestBuilder(input, context);
488
- const headers = {
489
- "content-type": "application/json",
490
- };
491
- b.bp("/slos");
492
- const query = smithyClient.map({
493
- [_ON]: [, input[_ON]],
494
- [_MR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
495
- [_NT]: [, input[_NT]],
496
- [_ILA]: [() => input.IncludeLinkedAccounts !== void 0, () => input[_ILA].toString()],
497
- [_SOAAI]: [, input[_SOAAI]],
498
- });
499
- let body;
500
- body = JSON.stringify(smithyClient.take(input, {
501
- DependencyConfig: (_) => smithyClient._json(_),
502
- KeyAttributes: (_) => smithyClient._json(_),
503
- MetricSourceTypes: (_) => smithyClient._json(_),
504
- }));
505
- b.m("POST").h(headers).q(query).b(body);
506
- return b.build();
507
- };
508
- const se_ListServiceOperationsCommand = async (input, context) => {
509
- const b = core.requestBuilder(input, context);
510
- const headers = {
511
- "content-type": "application/json",
512
- };
513
- b.bp("/service-operations");
514
- const query = smithyClient.map({
515
- [_ST]: [smithyClient.expectNonNull(input.StartTime, `StartTime`) != null, () => smithyClient.serializeDateTime(input[_ST]).toString()],
516
- [_ET]: [smithyClient.expectNonNull(input.EndTime, `EndTime`) != null, () => smithyClient.serializeDateTime(input[_ET]).toString()],
517
- [_MR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
518
- [_NT]: [, input[_NT]],
519
- });
520
- let body;
521
- body = JSON.stringify(smithyClient.take(input, {
522
- KeyAttributes: (_) => smithyClient._json(_),
523
- }));
524
- b.m("POST").h(headers).q(query).b(body);
525
- return b.build();
526
- };
527
- const se_ListServicesCommand = async (input, context) => {
528
- const b = core.requestBuilder(input, context);
529
- const headers = {};
530
- b.bp("/services");
531
- const query = smithyClient.map({
532
- [_ST]: [smithyClient.expectNonNull(input.StartTime, `StartTime`) != null, () => smithyClient.serializeDateTime(input[_ST]).toString()],
533
- [_ET]: [smithyClient.expectNonNull(input.EndTime, `EndTime`) != null, () => smithyClient.serializeDateTime(input[_ET]).toString()],
534
- [_MR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
535
- [_NT]: [, input[_NT]],
536
- [_ILA]: [() => input.IncludeLinkedAccounts !== void 0, () => input[_ILA].toString()],
537
- [_AAI]: [, input[_AAI]],
538
- });
539
- let body;
540
- b.m("GET").h(headers).q(query).b(body);
541
- return b.build();
542
- };
543
- const se_ListServiceStatesCommand = async (input, context) => {
544
- const b = core.requestBuilder(input, context);
545
- const headers = {
546
- "content-type": "application/json",
547
- };
548
- b.bp("/service/states");
549
- let body;
550
- body = JSON.stringify(smithyClient.take(input, {
551
- AttributeFilters: (_) => smithyClient._json(_),
552
- AwsAccountId: [],
553
- EndTime: (_) => _.getTime() / 1_000,
554
- IncludeLinkedAccounts: [],
555
- MaxResults: [],
556
- NextToken: [],
557
- StartTime: (_) => _.getTime() / 1_000,
558
- }));
559
- b.m("POST").h(headers).b(body);
560
- return b.build();
561
- };
562
- const se_ListTagsForResourceCommand = async (input, context) => {
563
- const b = core.requestBuilder(input, context);
564
- const headers = {};
565
- b.bp("/tags");
566
- const query = smithyClient.map({
567
- [_RA]: [, smithyClient.expectNonNull(input[_RA], `ResourceArn`)],
568
- });
569
- let body;
570
- b.m("GET").h(headers).q(query).b(body);
571
- return b.build();
572
- };
573
- const se_PutGroupingConfigurationCommand = async (input, context) => {
574
- const b = core.requestBuilder(input, context);
575
- const headers = {
576
- "content-type": "application/json",
577
- };
578
- b.bp("/grouping-configuration");
579
- let body;
580
- body = JSON.stringify(smithyClient.take(input, {
581
- GroupingAttributeDefinitions: (_) => smithyClient._json(_),
582
- }));
583
- b.m("PUT").h(headers).b(body);
584
- return b.build();
585
- };
586
- const se_StartDiscoveryCommand = async (input, context) => {
587
- const b = core.requestBuilder(input, context);
588
- const headers = {};
589
- b.bp("/start-discovery");
590
- let body;
591
- b.m("POST").h(headers).b(body);
592
- return b.build();
593
- };
594
- const se_TagResourceCommand = async (input, context) => {
595
- const b = core.requestBuilder(input, context);
596
- const headers = {
597
- "content-type": "application/json",
598
- };
599
- b.bp("/tag-resource");
600
- let body;
601
- body = JSON.stringify(smithyClient.take(input, {
602
- ResourceArn: [],
603
- Tags: (_) => smithyClient._json(_),
604
- }));
605
- b.m("POST").h(headers).b(body);
606
- return b.build();
607
- };
608
- const se_UntagResourceCommand = async (input, context) => {
609
- const b = core.requestBuilder(input, context);
610
- const headers = {
611
- "content-type": "application/json",
612
- };
613
- b.bp("/untag-resource");
614
- let body;
615
- body = JSON.stringify(smithyClient.take(input, {
616
- ResourceArn: [],
617
- TagKeys: (_) => smithyClient._json(_),
618
- }));
619
- b.m("POST").h(headers).b(body);
620
- return b.build();
621
- };
622
- const se_UpdateServiceLevelObjectiveCommand = async (input, context) => {
623
- const b = core.requestBuilder(input, context);
624
- const headers = {
625
- "content-type": "application/json",
626
- };
627
- b.bp("/slo/{Id}");
628
- b.p("Id", () => input.Id, "{Id}", false);
629
- let body;
630
- body = JSON.stringify(smithyClient.take(input, {
631
- BurnRateConfigurations: (_) => smithyClient._json(_),
632
- Description: [],
633
- Goal: (_) => se_Goal(_),
634
- RequestBasedSliConfig: (_) => se_RequestBasedServiceLevelIndicatorConfig(_),
635
- SliConfig: (_) => se_ServiceLevelIndicatorConfig(_),
636
- }));
637
- b.m("PATCH").h(headers).b(body);
638
- return b.build();
639
- };
640
- const de_BatchGetServiceLevelObjectiveBudgetReportCommand = async (output, context) => {
641
- if (output.statusCode !== 200 && output.statusCode >= 300) {
642
- return de_CommandError(output, context);
643
- }
644
- const contents = smithyClient.map({
645
- $metadata: deserializeMetadata(output),
646
- });
647
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
648
- const doc = smithyClient.take(data, {
649
- Errors: smithyClient._json,
650
- Reports: (_) => de_ServiceLevelObjectiveBudgetReports(_),
651
- Timestamp: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
652
- });
653
- Object.assign(contents, doc);
654
- return contents;
655
- };
656
- const de_BatchUpdateExclusionWindowsCommand = async (output, context) => {
657
- if (output.statusCode !== 200 && output.statusCode >= 300) {
658
- return de_CommandError(output, context);
659
- }
660
- const contents = smithyClient.map({
661
- $metadata: deserializeMetadata(output),
662
- });
663
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
664
- const doc = smithyClient.take(data, {
665
- Errors: smithyClient._json,
666
- SloIds: smithyClient._json,
667
- });
668
- Object.assign(contents, doc);
669
- return contents;
670
- };
671
- const de_CreateServiceLevelObjectiveCommand = async (output, context) => {
672
- if (output.statusCode !== 200 && output.statusCode >= 300) {
673
- return de_CommandError(output, context);
674
- }
675
- const contents = smithyClient.map({
676
- $metadata: deserializeMetadata(output),
677
- });
678
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
679
- const doc = smithyClient.take(data, {
680
- Slo: (_) => de_ServiceLevelObjective(_),
681
- });
682
- Object.assign(contents, doc);
683
- return contents;
684
- };
685
- const de_DeleteGroupingConfigurationCommand = async (output, context) => {
686
- if (output.statusCode !== 200 && output.statusCode >= 300) {
687
- return de_CommandError(output, context);
688
- }
689
- const contents = smithyClient.map({
690
- $metadata: deserializeMetadata(output),
691
- });
692
- await smithyClient.collectBody(output.body, context);
693
- return contents;
694
- };
695
- const de_DeleteServiceLevelObjectiveCommand = async (output, context) => {
696
- if (output.statusCode !== 200 && output.statusCode >= 300) {
697
- return de_CommandError(output, context);
698
- }
699
- const contents = smithyClient.map({
700
- $metadata: deserializeMetadata(output),
701
- });
702
- await smithyClient.collectBody(output.body, context);
703
- return contents;
704
- };
705
- const de_GetServiceCommand = async (output, context) => {
706
- if (output.statusCode !== 200 && output.statusCode >= 300) {
707
- return de_CommandError(output, context);
708
- }
709
- const contents = smithyClient.map({
710
- $metadata: deserializeMetadata(output),
711
- });
712
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
713
- const doc = smithyClient.take(data, {
714
- EndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
715
- LogGroupReferences: smithyClient._json,
716
- Service: smithyClient._json,
717
- StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
718
- });
719
- Object.assign(contents, doc);
720
- return contents;
721
- };
722
- const de_GetServiceLevelObjectiveCommand = async (output, context) => {
723
- if (output.statusCode !== 200 && output.statusCode >= 300) {
724
- return de_CommandError(output, context);
725
- }
726
- const contents = smithyClient.map({
727
- $metadata: deserializeMetadata(output),
728
- });
729
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
730
- const doc = smithyClient.take(data, {
731
- Slo: (_) => de_ServiceLevelObjective(_),
732
- });
733
- Object.assign(contents, doc);
734
- return contents;
735
- };
736
- const de_ListAuditFindingsCommand = async (output, context) => {
737
- if (output.statusCode !== 200 && output.statusCode >= 300) {
738
- return de_CommandError(output, context);
739
- }
740
- const contents = smithyClient.map({
741
- $metadata: deserializeMetadata(output),
742
- });
743
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
744
- const doc = smithyClient.take(data, {
745
- AuditFindings: (_) => de_AuditFindings(_),
746
- NextToken: smithyClient.expectString,
747
- });
748
- Object.assign(contents, doc);
749
- return contents;
750
- };
751
- const de_ListGroupingAttributeDefinitionsCommand = async (output, context) => {
752
- if (output.statusCode !== 200 && output.statusCode >= 300) {
753
- return de_CommandError(output, context);
754
- }
755
- const contents = smithyClient.map({
756
- $metadata: deserializeMetadata(output),
757
- });
758
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
759
- const doc = smithyClient.take(data, {
760
- GroupingAttributeDefinitions: smithyClient._json,
761
- NextToken: smithyClient.expectString,
762
- UpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
763
- });
764
- Object.assign(contents, doc);
765
- return contents;
766
- };
767
- const de_ListServiceDependenciesCommand = async (output, context) => {
768
- if (output.statusCode !== 200 && output.statusCode >= 300) {
769
- return de_CommandError(output, context);
770
- }
771
- const contents = smithyClient.map({
772
- $metadata: deserializeMetadata(output),
773
- });
774
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
775
- const doc = smithyClient.take(data, {
776
- EndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
777
- NextToken: smithyClient.expectString,
778
- ServiceDependencies: smithyClient._json,
779
- StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
780
- });
781
- Object.assign(contents, doc);
782
- return contents;
783
- };
784
- const de_ListServiceDependentsCommand = async (output, context) => {
785
- if (output.statusCode !== 200 && output.statusCode >= 300) {
786
- return de_CommandError(output, context);
787
- }
788
- const contents = smithyClient.map({
789
- $metadata: deserializeMetadata(output),
790
- });
791
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
792
- const doc = smithyClient.take(data, {
793
- EndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
794
- NextToken: smithyClient.expectString,
795
- ServiceDependents: smithyClient._json,
796
- StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
797
- });
798
- Object.assign(contents, doc);
799
- return contents;
800
- };
801
- const de_ListServiceLevelObjectiveExclusionWindowsCommand = async (output, context) => {
802
- if (output.statusCode !== 200 && output.statusCode >= 300) {
803
- return de_CommandError(output, context);
804
- }
805
- const contents = smithyClient.map({
806
- $metadata: deserializeMetadata(output),
807
- });
808
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
809
- const doc = smithyClient.take(data, {
810
- ExclusionWindows: (_) => de_ExclusionWindows(_),
811
- NextToken: smithyClient.expectString,
812
- });
813
- Object.assign(contents, doc);
814
- return contents;
815
- };
816
- const de_ListServiceLevelObjectivesCommand = async (output, context) => {
817
- if (output.statusCode !== 200 && output.statusCode >= 300) {
818
- return de_CommandError(output, context);
819
- }
820
- const contents = smithyClient.map({
821
- $metadata: deserializeMetadata(output),
822
- });
823
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
824
- const doc = smithyClient.take(data, {
825
- NextToken: smithyClient.expectString,
826
- SloSummaries: (_) => de_ServiceLevelObjectiveSummaries(_),
827
- });
828
- Object.assign(contents, doc);
829
- return contents;
830
- };
831
- const de_ListServiceOperationsCommand = async (output, context) => {
832
- if (output.statusCode !== 200 && output.statusCode >= 300) {
833
- return de_CommandError(output, context);
834
- }
835
- const contents = smithyClient.map({
836
- $metadata: deserializeMetadata(output),
837
- });
838
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
839
- const doc = smithyClient.take(data, {
840
- EndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
841
- NextToken: smithyClient.expectString,
842
- ServiceOperations: smithyClient._json,
843
- StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
844
- });
845
- Object.assign(contents, doc);
846
- return contents;
847
- };
848
- const de_ListServicesCommand = async (output, context) => {
849
- if (output.statusCode !== 200 && output.statusCode >= 300) {
850
- return de_CommandError(output, context);
851
- }
852
- const contents = smithyClient.map({
853
- $metadata: deserializeMetadata(output),
854
- });
855
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
856
- const doc = smithyClient.take(data, {
857
- EndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
858
- NextToken: smithyClient.expectString,
859
- ServiceSummaries: smithyClient._json,
860
- StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
861
- });
862
- Object.assign(contents, doc);
863
- return contents;
864
- };
865
- const de_ListServiceStatesCommand = async (output, context) => {
866
- if (output.statusCode !== 200 && output.statusCode >= 300) {
867
- return de_CommandError(output, context);
868
- }
869
- const contents = smithyClient.map({
870
- $metadata: deserializeMetadata(output),
871
- });
872
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
873
- const doc = smithyClient.take(data, {
874
- EndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
875
- NextToken: smithyClient.expectString,
876
- ServiceStates: (_) => de_ServiceStates(_),
877
- StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
878
- });
879
- Object.assign(contents, doc);
880
- return contents;
881
- };
882
- const de_ListTagsForResourceCommand = async (output, context) => {
883
- if (output.statusCode !== 200 && output.statusCode >= 300) {
884
- return de_CommandError(output, context);
885
- }
886
- const contents = smithyClient.map({
887
- $metadata: deserializeMetadata(output),
888
- });
889
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
890
- const doc = smithyClient.take(data, {
891
- Tags: smithyClient._json,
892
- });
893
- Object.assign(contents, doc);
894
- return contents;
895
- };
896
- const de_PutGroupingConfigurationCommand = async (output, context) => {
897
- if (output.statusCode !== 200 && output.statusCode >= 300) {
898
- return de_CommandError(output, context);
899
- }
900
- const contents = smithyClient.map({
901
- $metadata: deserializeMetadata(output),
902
- });
903
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
904
- const doc = smithyClient.take(data, {
905
- GroupingConfiguration: (_) => de_GroupingConfiguration(_),
906
- });
907
- Object.assign(contents, doc);
908
- return contents;
909
- };
910
- const de_StartDiscoveryCommand = async (output, context) => {
911
- if (output.statusCode !== 200 && output.statusCode >= 300) {
912
- return de_CommandError(output, context);
913
- }
914
- const contents = smithyClient.map({
915
- $metadata: deserializeMetadata(output),
916
- });
917
- await smithyClient.collectBody(output.body, context);
918
- return contents;
919
- };
920
- const de_TagResourceCommand = async (output, context) => {
921
- if (output.statusCode !== 200 && output.statusCode >= 300) {
922
- return de_CommandError(output, context);
923
- }
924
- const contents = smithyClient.map({
925
- $metadata: deserializeMetadata(output),
926
- });
927
- await smithyClient.collectBody(output.body, context);
928
- return contents;
929
- };
930
- const de_UntagResourceCommand = async (output, context) => {
931
- if (output.statusCode !== 200 && output.statusCode >= 300) {
932
- return de_CommandError(output, context);
933
- }
934
- const contents = smithyClient.map({
935
- $metadata: deserializeMetadata(output),
936
- });
937
- await smithyClient.collectBody(output.body, context);
938
- return contents;
939
- };
940
- const de_UpdateServiceLevelObjectiveCommand = async (output, context) => {
941
- if (output.statusCode !== 200 && output.statusCode >= 300) {
942
- return de_CommandError(output, context);
943
- }
944
- const contents = smithyClient.map({
945
- $metadata: deserializeMetadata(output),
946
- });
947
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
948
- const doc = smithyClient.take(data, {
949
- Slo: (_) => de_ServiceLevelObjective(_),
950
- });
951
- Object.assign(contents, doc);
952
- return contents;
953
- };
954
- const de_CommandError = async (output, context) => {
955
- const parsedOutput = {
956
- ...output,
957
- body: await core$1.parseJsonErrorBody(output.body, context),
958
- };
959
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
960
- switch (errorCode) {
961
- case "ThrottlingException":
962
- case "com.amazonaws.applicationsignals#ThrottlingException":
963
- throw await de_ThrottlingExceptionRes(parsedOutput);
964
- case "ValidationException":
965
- case "com.amazonaws.applicationsignals#ValidationException":
966
- throw await de_ValidationExceptionRes(parsedOutput);
967
- case "ResourceNotFoundException":
968
- case "com.amazonaws.applicationsignals#ResourceNotFoundException":
969
- throw await de_ResourceNotFoundExceptionRes(parsedOutput);
970
- case "AccessDeniedException":
971
- case "com.amazonaws.applicationsignals#AccessDeniedException":
972
- throw await de_AccessDeniedExceptionRes(parsedOutput);
973
- case "ConflictException":
974
- case "com.amazonaws.applicationsignals#ConflictException":
975
- throw await de_ConflictExceptionRes(parsedOutput);
976
- case "ServiceQuotaExceededException":
977
- case "com.amazonaws.applicationsignals#ServiceQuotaExceededException":
978
- throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
979
- default:
980
- const parsedBody = parsedOutput.body;
981
- return throwDefaultError({
982
- output,
983
- parsedBody,
984
- errorCode,
985
- });
986
- }
987
- };
988
- const throwDefaultError = smithyClient.withBaseException(ApplicationSignalsServiceException);
989
- const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
990
- const contents = smithyClient.map({});
991
- const data = parsedOutput.body;
992
- const doc = smithyClient.take(data, {
993
- Message: smithyClient.expectString,
994
- });
995
- Object.assign(contents, doc);
996
- const exception = new AccessDeniedException({
997
- $metadata: deserializeMetadata(parsedOutput),
998
- ...contents,
999
- });
1000
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1001
- };
1002
- const de_ConflictExceptionRes = async (parsedOutput, context) => {
1003
- const contents = smithyClient.map({});
1004
- const data = parsedOutput.body;
1005
- const doc = smithyClient.take(data, {
1006
- Message: smithyClient.expectString,
1007
- });
1008
- Object.assign(contents, doc);
1009
- const exception = new ConflictException({
1010
- $metadata: deserializeMetadata(parsedOutput),
1011
- ...contents,
1012
- });
1013
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1014
- };
1015
- const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
1016
- const contents = smithyClient.map({});
1017
- const data = parsedOutput.body;
1018
- const doc = smithyClient.take(data, {
1019
- Message: smithyClient.expectString,
1020
- ResourceId: smithyClient.expectString,
1021
- ResourceType: smithyClient.expectString,
1022
- });
1023
- Object.assign(contents, doc);
1024
- const exception = new ResourceNotFoundException({
1025
- $metadata: deserializeMetadata(parsedOutput),
1026
- ...contents,
1027
- });
1028
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1029
- };
1030
- const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
1031
- const contents = smithyClient.map({});
1032
- const data = parsedOutput.body;
1033
- const doc = smithyClient.take(data, {
1034
- Message: smithyClient.expectString,
1035
- });
1036
- Object.assign(contents, doc);
1037
- const exception = new ServiceQuotaExceededException({
1038
- $metadata: deserializeMetadata(parsedOutput),
1039
- ...contents,
1040
- });
1041
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1042
- };
1043
- const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
1044
- const contents = smithyClient.map({});
1045
- const data = parsedOutput.body;
1046
- const doc = smithyClient.take(data, {
1047
- Message: smithyClient.expectString,
1048
- });
1049
- Object.assign(contents, doc);
1050
- const exception = new ThrottlingException({
1051
- $metadata: deserializeMetadata(parsedOutput),
1052
- ...contents,
1053
- });
1054
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1055
- };
1056
- const de_ValidationExceptionRes = async (parsedOutput, context) => {
1057
- const contents = smithyClient.map({});
1058
- const data = parsedOutput.body;
1059
- const doc = smithyClient.take(data, {
1060
- message: smithyClient.expectString,
1061
- });
1062
- Object.assign(contents, doc);
1063
- const exception = new ValidationException({
1064
- $metadata: deserializeMetadata(parsedOutput),
1065
- ...contents,
1066
- });
1067
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1068
- };
1069
- const se_CalendarInterval = (input, context) => {
1070
- return smithyClient.take(input, {
1071
- Duration: [],
1072
- DurationUnit: [],
1073
- StartTime: (_) => _.getTime() / 1_000,
1074
- });
1075
- };
1076
- const se_ExclusionWindow = (input, context) => {
1077
- return smithyClient.take(input, {
1078
- Reason: [],
1079
- RecurrenceRule: smithyClient._json,
1080
- StartTime: (_) => _.getTime() / 1_000,
1081
- Window: smithyClient._json,
1082
- });
1083
- };
1084
- const se_ExclusionWindows = (input, context) => {
1085
- return input
1086
- .filter((e) => e != null)
1087
- .map((entry) => {
1088
- return se_ExclusionWindow(entry);
1089
- });
1090
- };
1091
- const se_Goal = (input, context) => {
1092
- return smithyClient.take(input, {
1093
- AttainmentGoal: smithyClient.serializeFloat,
1094
- Interval: (_) => se_Interval(_),
1095
- WarningThreshold: smithyClient.serializeFloat,
1096
- });
1097
- };
1098
- const se_Interval = (input, context) => {
1099
- return exports.Interval.visit(input, {
1100
- CalendarInterval: (value) => ({ CalendarInterval: se_CalendarInterval(value) }),
1101
- RollingInterval: (value) => ({ RollingInterval: smithyClient._json(value) }),
1102
- _: (name, value) => ({ [name]: value }),
1103
- });
1104
- };
1105
- const se_RequestBasedServiceLevelIndicatorConfig = (input, context) => {
1106
- return smithyClient.take(input, {
1107
- ComparisonOperator: [],
1108
- MetricThreshold: smithyClient.serializeFloat,
1109
- RequestBasedSliMetricConfig: smithyClient._json,
1110
- });
1111
- };
1112
- const se_ServiceLevelIndicatorConfig = (input, context) => {
1113
- return smithyClient.take(input, {
1114
- ComparisonOperator: [],
1115
- MetricThreshold: smithyClient.serializeFloat,
1116
- SliMetricConfig: smithyClient._json,
1117
- });
1118
- };
1119
- const de_AuditFinding = (output, context) => {
1120
- return smithyClient.take(output, {
1121
- AuditorResults: smithyClient._json,
1122
- DependencyGraph: (_) => de_DependencyGraph(_),
1123
- KeyAttributes: smithyClient._json,
1124
- MetricGraph: (_) => de_MetricGraph(_),
1125
- Operation: smithyClient.expectString,
1126
- Type: smithyClient.expectString,
1127
- });
1128
- };
1129
- const de_AuditFindings = (output, context) => {
1130
- const retVal = (output || [])
1131
- .filter((e) => e != null)
1132
- .map((entry) => {
1133
- return de_AuditFinding(entry);
1134
- });
1135
- return retVal;
1136
- };
1137
- const de_CalendarInterval = (output, context) => {
1138
- return smithyClient.take(output, {
1139
- Duration: smithyClient.expectInt32,
1140
- DurationUnit: smithyClient.expectString,
1141
- StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1142
- });
1143
- };
1144
- const de_ChangeEvent = (output, context) => {
1145
- return smithyClient.take(output, {
1146
- AccountId: smithyClient.expectString,
1147
- ChangeEventType: smithyClient.expectString,
1148
- Entity: smithyClient._json,
1149
- EventId: smithyClient.expectString,
1150
- EventName: smithyClient.expectString,
1151
- Region: smithyClient.expectString,
1152
- Timestamp: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1153
- UserName: smithyClient.expectString,
1154
- });
1155
- };
1156
- const de_DependencyGraph = (output, context) => {
1157
- return smithyClient.take(output, {
1158
- Edges: (_) => de_Edges(_),
1159
- Nodes: (_) => de_Nodes(_),
1160
- });
1161
- };
1162
- const de_Edge = (output, context) => {
1163
- return smithyClient.take(output, {
1164
- ConnectionType: smithyClient.expectString,
1165
- DestinationNodeId: smithyClient.expectString,
1166
- Duration: smithyClient.limitedParseDouble,
1167
- SourceNodeId: smithyClient.expectString,
1168
- });
1169
- };
1170
- const de_Edges = (output, context) => {
1171
- const retVal = (output || [])
1172
- .filter((e) => e != null)
1173
- .map((entry) => {
1174
- return de_Edge(entry);
1175
- });
1176
- return retVal;
1177
- };
1178
- const de_ExclusionWindow = (output, context) => {
1179
- return smithyClient.take(output, {
1180
- Reason: smithyClient.expectString,
1181
- RecurrenceRule: smithyClient._json,
1182
- StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1183
- Window: smithyClient._json,
1184
- });
1185
- };
1186
- const de_ExclusionWindows = (output, context) => {
1187
- const retVal = (output || [])
1188
- .filter((e) => e != null)
1189
- .map((entry) => {
1190
- return de_ExclusionWindow(entry);
1191
- });
1192
- return retVal;
1193
- };
1194
- const de_Goal = (output, context) => {
1195
- return smithyClient.take(output, {
1196
- AttainmentGoal: smithyClient.limitedParseDouble,
1197
- Interval: (_) => de_Interval(core$1.awsExpectUnion(_)),
1198
- WarningThreshold: smithyClient.limitedParseDouble,
1199
- });
1200
- };
1201
- const de_GroupingConfiguration = (output, context) => {
1202
- return smithyClient.take(output, {
1203
- GroupingAttributeDefinitions: smithyClient._json,
1204
- UpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1205
- });
1206
- };
1207
- const de_Interval = (output, context) => {
1208
- if (output.CalendarInterval != null) {
1209
- return {
1210
- CalendarInterval: de_CalendarInterval(output.CalendarInterval),
1211
- };
1212
- }
1213
- if (output.RollingInterval != null) {
1214
- return {
1215
- RollingInterval: smithyClient._json(output.RollingInterval),
1216
- };
1217
- }
1218
- return { $unknown: Object.entries(output)[0] };
1219
- };
1220
- const de_LatestChangeEvents = (output, context) => {
1221
- const retVal = (output || [])
1222
- .filter((e) => e != null)
1223
- .map((entry) => {
1224
- return de_ChangeEvent(entry);
1225
- });
1226
- return retVal;
1227
- };
1228
- const de_MetricGraph = (output, context) => {
1229
- return smithyClient.take(output, {
1230
- EndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1231
- MetricDataQueries: smithyClient._json,
1232
- StartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1233
- });
1234
- };
1235
- const de_Node = (output, context) => {
1236
- return smithyClient.take(output, {
1237
- Duration: smithyClient.limitedParseDouble,
1238
- KeyAttributes: smithyClient._json,
1239
- Name: smithyClient.expectString,
1240
- NodeId: smithyClient.expectString,
1241
- Operation: smithyClient.expectString,
1242
- Status: smithyClient.expectString,
1243
- Type: smithyClient.expectString,
1244
- });
1245
- };
1246
- const de_Nodes = (output, context) => {
1247
- const retVal = (output || [])
1248
- .filter((e) => e != null)
1249
- .map((entry) => {
1250
- return de_Node(entry);
1251
- });
1252
- return retVal;
1253
- };
1254
- const de_RequestBasedServiceLevelIndicator = (output, context) => {
1255
- return smithyClient.take(output, {
1256
- ComparisonOperator: smithyClient.expectString,
1257
- MetricThreshold: smithyClient.limitedParseDouble,
1258
- RequestBasedSliMetric: smithyClient._json,
1259
- });
1260
- };
1261
- const de_ServiceLevelIndicator = (output, context) => {
1262
- return smithyClient.take(output, {
1263
- ComparisonOperator: smithyClient.expectString,
1264
- MetricThreshold: smithyClient.limitedParseDouble,
1265
- SliMetric: smithyClient._json,
1266
- });
1267
- };
1268
- const de_ServiceLevelObjective = (output, context) => {
1269
- return smithyClient.take(output, {
1270
- Arn: smithyClient.expectString,
1271
- BurnRateConfigurations: smithyClient._json,
1272
- CreatedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1273
- Description: smithyClient.expectString,
1274
- EvaluationType: smithyClient.expectString,
1275
- Goal: (_) => de_Goal(_),
1276
- LastUpdatedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1277
- MetricSourceType: smithyClient.expectString,
1278
- Name: smithyClient.expectString,
1279
- RequestBasedSli: (_) => de_RequestBasedServiceLevelIndicator(_),
1280
- Sli: (_) => de_ServiceLevelIndicator(_),
1281
- });
1282
- };
1283
- const de_ServiceLevelObjectiveBudgetReport = (output, context) => {
1284
- return smithyClient.take(output, {
1285
- Arn: smithyClient.expectString,
1286
- Attainment: smithyClient.limitedParseDouble,
1287
- BudgetRequestsRemaining: smithyClient.expectInt32,
1288
- BudgetSecondsRemaining: smithyClient.expectInt32,
1289
- BudgetStatus: smithyClient.expectString,
1290
- EvaluationType: smithyClient.expectString,
1291
- Goal: (_) => de_Goal(_),
1292
- Name: smithyClient.expectString,
1293
- RequestBasedSli: (_) => de_RequestBasedServiceLevelIndicator(_),
1294
- Sli: (_) => de_ServiceLevelIndicator(_),
1295
- TotalBudgetRequests: smithyClient.expectInt32,
1296
- TotalBudgetSeconds: smithyClient.expectInt32,
1297
- });
1298
- };
1299
- const de_ServiceLevelObjectiveBudgetReports = (output, context) => {
1300
- const retVal = (output || [])
1301
- .filter((e) => e != null)
1302
- .map((entry) => {
1303
- return de_ServiceLevelObjectiveBudgetReport(entry);
1304
- });
1305
- return retVal;
1306
- };
1307
- const de_ServiceLevelObjectiveSummaries = (output, context) => {
1308
- const retVal = (output || [])
1309
- .filter((e) => e != null)
1310
- .map((entry) => {
1311
- return de_ServiceLevelObjectiveSummary(entry);
1312
- });
1313
- return retVal;
1314
- };
1315
- const de_ServiceLevelObjectiveSummary = (output, context) => {
1316
- return smithyClient.take(output, {
1317
- Arn: smithyClient.expectString,
1318
- CreatedTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1319
- DependencyConfig: smithyClient._json,
1320
- EvaluationType: smithyClient.expectString,
1321
- KeyAttributes: smithyClient._json,
1322
- MetricSourceType: smithyClient.expectString,
1323
- Name: smithyClient.expectString,
1324
- OperationName: smithyClient.expectString,
1325
- });
1326
- };
1327
- const de_ServiceState = (output, context) => {
1328
- return smithyClient.take(output, {
1329
- AttributeFilters: smithyClient._json,
1330
- LatestChangeEvents: (_) => de_LatestChangeEvents(_),
1331
- Service: smithyClient._json,
1332
- });
1333
- };
1334
- const de_ServiceStates = (output, context) => {
1335
- const retVal = (output || [])
1336
- .filter((e) => e != null)
1337
- .map((entry) => {
1338
- return de_ServiceState(entry);
1339
- });
1340
- return retVal;
1341
- };
1342
- const deserializeMetadata = (output) => ({
1343
- httpStatusCode: output.statusCode,
1344
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
1345
- extendedRequestId: output.headers["x-amz-id-2"],
1346
- cfId: output.headers["x-amz-cf-id"],
1347
- });
278
+
279
+ const _A = "Auditor";
1348
280
  const _AAI = "AwsAccountId";
281
+ const _ADE = "AccessDeniedException";
282
+ const _AEW = "AddExclusionWindows";
283
+ const _AF = "AttributeFilter";
284
+ const _AFN = "AttributeFilterName";
285
+ const _AFV = "AttributeFilterValues";
286
+ const _AFt = "AttributeFilters";
287
+ const _AFu = "AuditFinding";
288
+ const _AFud = "AuditFindings";
289
+ const _AG = "AttainmentGoal";
290
+ const _AI = "AccountId";
291
+ const _AM = "AttributeMaps";
292
+ const _AR = "AuditorResults";
293
+ const _ARu = "AuditorResult";
294
+ const _AT = "AuditTarget";
295
+ const _ATE = "AuditTargetEntity";
296
+ const _ATu = "AuditTargets";
297
+ const _Ar = "Arn";
298
+ const _At = "Attainment";
299
+ const _Au = "Auditors";
300
+ const _BCM = "BadCountMetric";
301
+ const _BGSLOBR = "BatchGetServiceLevelObjectiveBudgetReport";
302
+ const _BGSLOBRI = "BatchGetServiceLevelObjectiveBudgetReportInput";
303
+ const _BGSLOBRO = "BatchGetServiceLevelObjectiveBudgetReportOutput";
304
+ const _BRC = "BurnRateConfiguration";
305
+ const _BRCu = "BurnRateConfigurations";
306
+ const _BRR = "BudgetRequestsRemaining";
307
+ const _BS = "BudgetStatus";
308
+ const _BSR = "BudgetSecondsRemaining";
309
+ const _BUEW = "BatchUpdateExclusionWindows";
310
+ const _BUEWE = "BatchUpdateExclusionWindowsError";
311
+ const _BUEWEa = "BatchUpdateExclusionWindowsErrors";
312
+ const _BUEWI = "BatchUpdateExclusionWindowsInput";
313
+ const _BUEWO = "BatchUpdateExclusionWindowsOutput";
314
+ const _C = "Canary";
315
+ const _CE = "CanaryEntity";
316
+ const _CET = "ChangeEventType";
317
+ const _CEh = "ChangeEvent";
318
+ const _CEo = "ConflictException";
319
+ const _CI = "CalendarInterval";
320
+ const _CN = "CanaryName";
321
+ const _CO = "ComparisonOperator";
322
+ const _CSLO = "CreateServiceLevelObjective";
323
+ const _CSLOI = "CreateServiceLevelObjectiveInput";
324
+ const _CSLOO = "CreateServiceLevelObjectiveOutput";
325
+ const _CT = "ConnectionType";
326
+ const _CTr = "CreatedTime";
327
+ const _D = "Description";
328
+ const _DC = "DependencyConfig";
329
+ const _DG = "DependencyGraph";
330
+ const _DGC = "DeleteGroupingConfiguration";
331
+ const _DGCO = "DeleteGroupingConfigurationOutput";
332
+ const _DGV = "DefaultGroupingValue";
333
+ const _DKA = "DependencyKeyAttributes";
334
+ const _DKAe = "DependentKeyAttributes";
335
+ const _DNI = "DestinationNodeId";
336
+ const _DON = "DependencyOperationName";
337
+ const _DONe = "DependentOperationName";
338
+ const _DSLO = "DeleteServiceLevelObjective";
339
+ const _DSLOI = "DeleteServiceLevelObjectiveInput";
340
+ const _DSLOO = "DeleteServiceLevelObjectiveOutput";
341
+ const _DU = "DurationUnit";
342
+ const _Da = "Data";
343
+ const _Di = "Dimension";
344
+ const _Dim = "Dimensions";
345
+ const _Du = "Duration";
346
+ const _E = "Errors";
347
+ const _EC = "ErrorCode";
348
+ const _EI = "EventId";
349
+ const _EM = "ErrorMessage";
350
+ const _EN = "EventName";
1349
351
  const _ET = "EndTime";
352
+ const _ETv = "EvaluationType";
353
+ const _EW = "ExclusionWindow";
354
+ const _EWx = "ExclusionWindows";
355
+ const _Ed = "Edges";
356
+ const _Edg = "Edge";
357
+ const _En = "Entity";
358
+ const _Env = "Environment";
359
+ const _Ex = "Expression";
360
+ const _G = "Goal";
361
+ const _GAD = "GroupingAttributeDefinition";
362
+ const _GADr = "GroupingAttributeDefinitions";
363
+ const _GC = "GroupingConfiguration";
364
+ const _GCM = "GoodCountMetric";
365
+ const _GI = "GroupIdentifier";
366
+ const _GN = "GroupingName";
367
+ const _GNr = "GroupName";
368
+ const _GS = "GroupSource";
369
+ const _GSI = "GetServiceInput";
370
+ const _GSK = "GroupingSourceKeys";
371
+ const _GSLO = "GetServiceLevelObjective";
372
+ const _GSLOI = "GetServiceLevelObjectiveInput";
373
+ const _GSLOO = "GetServiceLevelObjectiveOutput";
374
+ const _GSO = "GetServiceOutput";
375
+ const _GSe = "GetService";
376
+ const _GV = "GroupValue";
377
+ const _I = "Id";
1350
378
  const _ILA = "IncludeLinkedAccounts";
379
+ const _In = "Interval";
380
+ const _K = "Key";
381
+ const _KA = "KeyAttributes";
382
+ const _L = "Label";
383
+ const _LAF = "ListAuditFindings";
384
+ const _LAFI = "ListAuditFindingsInput";
385
+ const _LAFO = "ListAuditFindingsOutput";
386
+ const _LBWM = "LookBackWindowMinutes";
387
+ const _LCE = "LatestChangeEvents";
388
+ const _LGAD = "ListGroupingAttributeDefinitions";
389
+ const _LGADI = "ListGroupingAttributeDefinitionsInput";
390
+ const _LGADO = "ListGroupingAttributeDefinitionsOutput";
391
+ const _LGR = "LogGroupReferences";
392
+ const _LS = "ListServices";
393
+ const _LSD = "ListServiceDependencies";
394
+ const _LSDI = "ListServiceDependenciesInput";
395
+ const _LSDIi = "ListServiceDependentsInput";
396
+ const _LSDO = "ListServiceDependenciesOutput";
397
+ const _LSDOi = "ListServiceDependentsOutput";
398
+ const _LSDi = "ListServiceDependents";
399
+ const _LSI = "ListServicesInput";
400
+ const _LSLO = "ListServiceLevelObjectives";
401
+ const _LSLOEW = "ListServiceLevelObjectiveExclusionWindows";
402
+ const _LSLOEWI = "ListServiceLevelObjectiveExclusionWindowsInput";
403
+ const _LSLOEWO = "ListServiceLevelObjectiveExclusionWindowsOutput";
404
+ const _LSLOI = "ListServiceLevelObjectivesInput";
405
+ const _LSLOO = "ListServiceLevelObjectivesOutput";
406
+ const _LSO = "ListServicesOutput";
407
+ const _LSOI = "ListServiceOperationsInput";
408
+ const _LSOO = "ListServiceOperationsOutput";
409
+ const _LSOi = "ListServiceOperations";
410
+ const _LSS = "ListServiceStates";
411
+ const _LSSI = "ListServiceStatesInput";
412
+ const _LSSO = "ListServiceStatesOutput";
413
+ const _LTFR = "ListTagsForResource";
414
+ const _LTFRR = "ListTagsForResourceRequest";
415
+ const _LTFRRi = "ListTagsForResourceResponse";
416
+ const _LUT = "LastUpdatedTime";
417
+ const _M = "Message";
418
+ const _MDQ = "MetricDataQuery";
419
+ const _MDQe = "MetricDataQueries";
420
+ const _MG = "MetricGraph";
421
+ const _MN = "MetricName";
1351
422
  const _MR = "MaxResults";
423
+ const _MRCM = "MonitoredRequestCountMetric";
424
+ const _MRCMDQ = "MonitoredRequestCountMetricDataQueries";
425
+ const _MRe = "MetricReference";
426
+ const _MRet = "MetricReferences";
427
+ const _MS = "MetricStat";
428
+ const _MST = "MetricSourceTypes";
429
+ const _MSTe = "MetricSourceType";
430
+ const _MT = "MetricType";
431
+ const _MTe = "MetricThreshold";
432
+ const _Me = "Metric";
433
+ const _N = "Name";
434
+ const _NI = "NodeId";
1352
435
  const _NT = "NextToken";
436
+ const _Na = "Namespace";
437
+ const _No = "Nodes";
438
+ const _Nod = "Node";
439
+ const _O = "Operation";
1353
440
  const _ON = "OperationName";
441
+ const _P = "Period";
442
+ const _PGC = "PutGroupingConfiguration";
443
+ const _PGCI = "PutGroupingConfigurationInput";
444
+ const _PGCO = "PutGroupingConfigurationOutput";
445
+ const _PS = "PeriodSeconds";
446
+ const _R = "Reports";
1354
447
  const _RA = "ResourceArn";
448
+ const _RBS = "RequestBasedSli";
449
+ const _RBSC = "RequestBasedSliConfig";
450
+ const _RBSLI = "RequestBasedServiceLevelIndicator";
451
+ const _RBSLIC = "RequestBasedServiceLevelIndicatorConfig";
452
+ const _RBSLIM = "RequestBasedServiceLevelIndicatorMetric";
453
+ const _RBSLIMC = "RequestBasedServiceLevelIndicatorMetricConfig";
454
+ const _RBSM = "RequestBasedSliMetric";
455
+ const _RBSMC = "RequestBasedSliMetricConfig";
456
+ const _RD = "ReturnData";
457
+ const _REW = "RemoveExclusionWindows";
458
+ const _RI = "ResourceId";
459
+ const _RIo = "RollingInterval";
460
+ const _RNFE = "ResourceNotFoundException";
461
+ const _RR = "RecurrenceRule";
462
+ const _RT = "ResourceType";
463
+ const _Re = "Region";
464
+ const _Rea = "Reason";
465
+ const _S = "Severity";
466
+ const _SA = "SloArn";
467
+ const _SC = "SliConfig";
468
+ const _SD = "ServiceDependencies";
469
+ const _SDI = "StartDiscoveryInput";
470
+ const _SDO = "StartDiscoveryOutput";
471
+ const _SDe = "ServiceDependents";
472
+ const _SDer = "ServiceDependency";
473
+ const _SDerv = "ServiceDependent";
474
+ const _SDt = "StartDiscovery";
475
+ const _SE = "ServiceEntity";
476
+ const _SG = "ServiceGroups";
477
+ const _SGe = "ServiceGroup";
478
+ const _SI = "SloIds";
479
+ const _SIl = "SloId";
480
+ const _SLI = "ServiceLevelIndicator";
481
+ const _SLIC = "ServiceLevelIndicatorConfig";
482
+ const _SLIM = "ServiceLevelIndicatorMetric";
483
+ const _SLIMC = "ServiceLevelIndicatorMetricConfig";
484
+ const _SLO = "ServiceLevelObjective";
485
+ const _SLOBR = "ServiceLevelObjectiveBudgetReport";
486
+ const _SLOBRE = "ServiceLevelObjectiveBudgetReportError";
487
+ const _SLOBREe = "ServiceLevelObjectiveBudgetReportErrors";
488
+ const _SLOBRe = "ServiceLevelObjectiveBudgetReports";
489
+ const _SLOE = "ServiceLevelObjectiveEntity";
490
+ const _SLOS = "ServiceLevelObjectiveSummary";
491
+ const _SLOSe = "ServiceLevelObjectiveSummaries";
492
+ const _SM = "SliMetric";
493
+ const _SMC = "SliMetricConfig";
494
+ const _SN = "SloName";
495
+ const _SNI = "SourceNodeId";
496
+ const _SO = "ServiceOperations";
1355
497
  const _SOAAI = "SloOwnerAwsAccountId";
498
+ const _SOE = "ServiceOperationEntity";
499
+ const _SOe = "ServiceOperation";
500
+ const _SQEE = "ServiceQuotaExceededException";
501
+ const _SS = "SloSummaries";
502
+ const _SSe = "ServiceSummaries";
503
+ const _SSer = "ServiceStates";
504
+ const _SServ = "ServiceState";
505
+ const _SServi = "ServiceSummary";
1356
506
  const _ST = "StartTime";
507
+ const _Se = "Service";
508
+ const _Sl = "Slo";
509
+ const _Sli = "Sli";
510
+ const _St = "Stat";
511
+ const _Sta = "Status";
512
+ const _Stat = "Statistic";
513
+ const _T = "Type";
514
+ const _TBR = "TotalBudgetRequests";
515
+ const _TBS = "TotalBudgetSeconds";
516
+ const _TE = "ThrottlingException";
517
+ const _TK = "TagKeys";
518
+ const _TL = "TagList";
519
+ const _TR = "TagResource";
520
+ const _TRCM = "TotalRequestCountMetric";
521
+ const _TRR = "TagResourceRequest";
522
+ const _TRRa = "TagResourceResponse";
523
+ const _Ta = "Tags";
524
+ const _Tag = "Tag";
525
+ const _Ti = "Timestamp";
526
+ const _U = "Unit";
527
+ const _UA = "UpdatedAt";
528
+ const _UN = "UserName";
529
+ const _UR = "UntagResource";
530
+ const _URR = "UntagResourceRequest";
531
+ const _URRn = "UntagResourceResponse";
532
+ const _USLO = "UpdateServiceLevelObjective";
533
+ const _USLOI = "UpdateServiceLevelObjectiveInput";
534
+ const _USLOO = "UpdateServiceLevelObjectiveOutput";
535
+ const _V = "Value";
536
+ const _VE = "ValidationException";
537
+ const _W = "Window";
538
+ const _WT = "WarningThreshold";
539
+ const _aQE = "awsQueryError";
540
+ const _c = "client";
541
+ const _e = "error";
542
+ const _h = "http";
543
+ const _hE = "httpError";
544
+ const _hQ = "httpQuery";
545
+ const _m = "message";
546
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.applicationsignals";
547
+ const n0 = "com.amazonaws.applicationsignals";
548
+ var AccessDeniedException = [
549
+ -3,
550
+ n0,
551
+ _ADE,
552
+ {
553
+ [_e]: _c,
554
+ [_hE]: 403,
555
+ [_aQE]: [`AccessDenied`, 403],
556
+ },
557
+ [_M],
558
+ [0],
559
+ ];
560
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
561
+ var AttributeFilter = [3, n0, _AF, 0, [_AFN, _AFV], [0, 64 | 0]];
562
+ var AuditFinding = [
563
+ 3,
564
+ n0,
565
+ _AFu,
566
+ 0,
567
+ [_KA, _AR, _O, _MG, _DG, _T],
568
+ [128 | 0, () => AuditorResults, 0, () => MetricGraph, () => DependencyGraph, 0],
569
+ ];
570
+ var AuditorResult = [3, n0, _ARu, 0, [_A, _D, _S], [0, 0, 0]];
571
+ var AuditTarget = [3, n0, _AT, 0, [_T, _Da], [0, () => AuditTargetEntity]];
572
+ var BatchGetServiceLevelObjectiveBudgetReportInput = [
573
+ 3,
574
+ n0,
575
+ _BGSLOBRI,
576
+ 0,
577
+ [_Ti, _SI],
578
+ [4, 64 | 0],
579
+ ];
580
+ var BatchGetServiceLevelObjectiveBudgetReportOutput = [
581
+ 3,
582
+ n0,
583
+ _BGSLOBRO,
584
+ 0,
585
+ [_Ti, _R, _E],
586
+ [4, () => ServiceLevelObjectiveBudgetReports, () => ServiceLevelObjectiveBudgetReportErrors],
587
+ ];
588
+ var BatchUpdateExclusionWindowsError = [3, n0, _BUEWE, 0, [_SIl, _EC, _EM], [0, 0, 0]];
589
+ var BatchUpdateExclusionWindowsInput = [
590
+ 3,
591
+ n0,
592
+ _BUEWI,
593
+ 0,
594
+ [_SI, _AEW, _REW],
595
+ [64 | 0, () => ExclusionWindows, () => ExclusionWindows],
596
+ ];
597
+ var BatchUpdateExclusionWindowsOutput = [
598
+ 3,
599
+ n0,
600
+ _BUEWO,
601
+ 0,
602
+ [_SI, _E],
603
+ [64 | 0, () => BatchUpdateExclusionWindowsErrors],
604
+ ];
605
+ var BurnRateConfiguration = [3, n0, _BRC, 0, [_LBWM], [1]];
606
+ var CalendarInterval = [3, n0, _CI, 0, [_ST, _DU, _Du], [4, 0, 1]];
607
+ var CanaryEntity = [3, n0, _CE, 0, [_CN], [0]];
608
+ var ChangeEvent = [
609
+ 3,
610
+ n0,
611
+ _CEh,
612
+ 0,
613
+ [_Ti, _AI, _Re, _En, _CET, _EI, _UN, _EN],
614
+ [4, 0, 0, 128 | 0, 0, 0, 0, 0],
615
+ ];
616
+ var ConflictException = [
617
+ -3,
618
+ n0,
619
+ _CEo,
620
+ {
621
+ [_e]: _c,
622
+ [_hE]: 409,
623
+ },
624
+ [_M],
625
+ [0],
626
+ ];
627
+ schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
628
+ var CreateServiceLevelObjectiveInput = [
629
+ 3,
630
+ n0,
631
+ _CSLOI,
632
+ 0,
633
+ [_N, _D, _SC, _RBSC, _G, _Ta, _BRCu],
634
+ [
635
+ 0,
636
+ 0,
637
+ () => ServiceLevelIndicatorConfig,
638
+ () => RequestBasedServiceLevelIndicatorConfig,
639
+ () => Goal,
640
+ () => TagList,
641
+ () => BurnRateConfigurations,
642
+ ],
643
+ ];
644
+ var CreateServiceLevelObjectiveOutput = [
645
+ 3,
646
+ n0,
647
+ _CSLOO,
648
+ 0,
649
+ [_Sl],
650
+ [() => ServiceLevelObjective],
651
+ ];
652
+ var DeleteGroupingConfigurationOutput = [3, n0, _DGCO, 0, [], []];
653
+ var DeleteServiceLevelObjectiveInput = [3, n0, _DSLOI, 0, [_I], [[0, 1]]];
654
+ var DeleteServiceLevelObjectiveOutput = [3, n0, _DSLOO, 0, [], []];
655
+ var DependencyConfig = [3, n0, _DC, 0, [_DKA, _DON], [128 | 0, 0]];
656
+ var DependencyGraph = [3, n0, _DG, 0, [_No, _Ed], [() => Nodes, () => Edges]];
657
+ var Dimension = [3, n0, _Di, 0, [_N, _V], [0, 0]];
658
+ var Edge = [3, n0, _Edg, 0, [_SNI, _DNI, _Du, _CT], [0, 0, 1, 0]];
659
+ var ExclusionWindow = [
660
+ 3,
661
+ n0,
662
+ _EW,
663
+ 0,
664
+ [_W, _ST, _RR, _Rea],
665
+ [() => Window, 4, () => RecurrenceRule, 0],
666
+ ];
667
+ var GetServiceInput = [
668
+ 3,
669
+ n0,
670
+ _GSI,
671
+ 0,
672
+ [_ST, _ET, _KA],
673
+ [
674
+ [
675
+ 4,
676
+ {
677
+ [_hQ]: _ST,
678
+ },
679
+ ],
680
+ [
681
+ 4,
682
+ {
683
+ [_hQ]: _ET,
684
+ },
685
+ ],
686
+ 128 | 0,
687
+ ],
688
+ ];
689
+ var GetServiceLevelObjectiveInput = [3, n0, _GSLOI, 0, [_I], [[0, 1]]];
690
+ var GetServiceLevelObjectiveOutput = [
691
+ 3,
692
+ n0,
693
+ _GSLOO,
694
+ 0,
695
+ [_Sl],
696
+ [() => ServiceLevelObjective],
697
+ ];
698
+ var GetServiceOutput = [
699
+ 3,
700
+ n0,
701
+ _GSO,
702
+ 0,
703
+ [_Se, _ST, _ET, _LGR],
704
+ [() => Service, 4, 4, [1, n0, _LGR, 0, 128 | 0]],
705
+ ];
706
+ var Goal = [3, n0, _G, 0, [_In, _AG, _WT], [() => Interval, 1, 1]];
707
+ var GroupingAttributeDefinition = [3, n0, _GAD, 0, [_GN, _GSK, _DGV], [0, 64 | 0, 0]];
708
+ var GroupingConfiguration = [
709
+ 3,
710
+ n0,
711
+ _GC,
712
+ 0,
713
+ [_GADr, _UA],
714
+ [() => GroupingAttributeDefinitions, 4],
715
+ ];
716
+ var ListAuditFindingsInput = [
717
+ 3,
718
+ n0,
719
+ _LAFI,
720
+ 0,
721
+ [_ST, _ET, _Au, _ATu, _NT, _MR],
722
+ [
723
+ [
724
+ 4,
725
+ {
726
+ [_hQ]: _ST,
727
+ },
728
+ ],
729
+ [
730
+ 4,
731
+ {
732
+ [_hQ]: _ET,
733
+ },
734
+ ],
735
+ 64 | 0,
736
+ () => AuditTargets,
737
+ 0,
738
+ 1,
739
+ ],
740
+ ];
741
+ var ListAuditFindingsOutput = [3, n0, _LAFO, 0, [_AFud, _NT], [() => AuditFindings, 0]];
742
+ var ListGroupingAttributeDefinitionsInput = [
743
+ 3,
744
+ n0,
745
+ _LGADI,
746
+ 0,
747
+ [_NT],
748
+ [
749
+ [
750
+ 0,
751
+ {
752
+ [_hQ]: _NT,
753
+ },
754
+ ],
755
+ ],
756
+ ];
757
+ var ListGroupingAttributeDefinitionsOutput = [
758
+ 3,
759
+ n0,
760
+ _LGADO,
761
+ 0,
762
+ [_GADr, _UA, _NT],
763
+ [() => GroupingAttributeDefinitions, 4, 0],
764
+ ];
765
+ var ListServiceDependenciesInput = [
766
+ 3,
767
+ n0,
768
+ _LSDI,
769
+ 0,
770
+ [_ST, _ET, _KA, _MR, _NT],
771
+ [
772
+ [
773
+ 4,
774
+ {
775
+ [_hQ]: _ST,
776
+ },
777
+ ],
778
+ [
779
+ 4,
780
+ {
781
+ [_hQ]: _ET,
782
+ },
783
+ ],
784
+ 128 | 0,
785
+ [
786
+ 1,
787
+ {
788
+ [_hQ]: _MR,
789
+ },
790
+ ],
791
+ [
792
+ 0,
793
+ {
794
+ [_hQ]: _NT,
795
+ },
796
+ ],
797
+ ],
798
+ ];
799
+ var ListServiceDependenciesOutput = [
800
+ 3,
801
+ n0,
802
+ _LSDO,
803
+ 0,
804
+ [_ST, _ET, _SD, _NT],
805
+ [4, 4, () => ServiceDependencies, 0],
806
+ ];
807
+ var ListServiceDependentsInput = [
808
+ 3,
809
+ n0,
810
+ _LSDIi,
811
+ 0,
812
+ [_ST, _ET, _KA, _MR, _NT],
813
+ [
814
+ [
815
+ 4,
816
+ {
817
+ [_hQ]: _ST,
818
+ },
819
+ ],
820
+ [
821
+ 4,
822
+ {
823
+ [_hQ]: _ET,
824
+ },
825
+ ],
826
+ 128 | 0,
827
+ [
828
+ 1,
829
+ {
830
+ [_hQ]: _MR,
831
+ },
832
+ ],
833
+ [
834
+ 0,
835
+ {
836
+ [_hQ]: _NT,
837
+ },
838
+ ],
839
+ ],
840
+ ];
841
+ var ListServiceDependentsOutput = [
842
+ 3,
843
+ n0,
844
+ _LSDOi,
845
+ 0,
846
+ [_ST, _ET, _SDe, _NT],
847
+ [4, 4, () => ServiceDependents, 0],
848
+ ];
849
+ var ListServiceLevelObjectiveExclusionWindowsInput = [
850
+ 3,
851
+ n0,
852
+ _LSLOEWI,
853
+ 0,
854
+ [_I, _MR, _NT],
855
+ [
856
+ [0, 1],
857
+ [
858
+ 1,
859
+ {
860
+ [_hQ]: _MR,
861
+ },
862
+ ],
863
+ [
864
+ 0,
865
+ {
866
+ [_hQ]: _NT,
867
+ },
868
+ ],
869
+ ],
870
+ ];
871
+ var ListServiceLevelObjectiveExclusionWindowsOutput = [
872
+ 3,
873
+ n0,
874
+ _LSLOEWO,
875
+ 0,
876
+ [_EWx, _NT],
877
+ [() => ExclusionWindows, 0],
878
+ ];
879
+ var ListServiceLevelObjectivesInput = [
880
+ 3,
881
+ n0,
882
+ _LSLOI,
883
+ 0,
884
+ [_KA, _ON, _DC, _MR, _NT, _ILA, _SOAAI, _MST],
885
+ [
886
+ 128 | 0,
887
+ [
888
+ 0,
889
+ {
890
+ [_hQ]: _ON,
891
+ },
892
+ ],
893
+ () => DependencyConfig,
894
+ [
895
+ 1,
896
+ {
897
+ [_hQ]: _MR,
898
+ },
899
+ ],
900
+ [
901
+ 0,
902
+ {
903
+ [_hQ]: _NT,
904
+ },
905
+ ],
906
+ [
907
+ 2,
908
+ {
909
+ [_hQ]: _ILA,
910
+ },
911
+ ],
912
+ [
913
+ 0,
914
+ {
915
+ [_hQ]: _SOAAI,
916
+ },
917
+ ],
918
+ 64 | 0,
919
+ ],
920
+ ];
921
+ var ListServiceLevelObjectivesOutput = [
922
+ 3,
923
+ n0,
924
+ _LSLOO,
925
+ 0,
926
+ [_SS, _NT],
927
+ [() => ServiceLevelObjectiveSummaries, 0],
928
+ ];
929
+ var ListServiceOperationsInput = [
930
+ 3,
931
+ n0,
932
+ _LSOI,
933
+ 0,
934
+ [_ST, _ET, _KA, _MR, _NT],
935
+ [
936
+ [
937
+ 4,
938
+ {
939
+ [_hQ]: _ST,
940
+ },
941
+ ],
942
+ [
943
+ 4,
944
+ {
945
+ [_hQ]: _ET,
946
+ },
947
+ ],
948
+ 128 | 0,
949
+ [
950
+ 1,
951
+ {
952
+ [_hQ]: _MR,
953
+ },
954
+ ],
955
+ [
956
+ 0,
957
+ {
958
+ [_hQ]: _NT,
959
+ },
960
+ ],
961
+ ],
962
+ ];
963
+ var ListServiceOperationsOutput = [
964
+ 3,
965
+ n0,
966
+ _LSOO,
967
+ 0,
968
+ [_ST, _ET, _SO, _NT],
969
+ [4, 4, () => ServiceOperations, 0],
970
+ ];
971
+ var ListServicesInput = [
972
+ 3,
973
+ n0,
974
+ _LSI,
975
+ 0,
976
+ [_ST, _ET, _MR, _NT, _ILA, _AAI],
977
+ [
978
+ [
979
+ 4,
980
+ {
981
+ [_hQ]: _ST,
982
+ },
983
+ ],
984
+ [
985
+ 4,
986
+ {
987
+ [_hQ]: _ET,
988
+ },
989
+ ],
990
+ [
991
+ 1,
992
+ {
993
+ [_hQ]: _MR,
994
+ },
995
+ ],
996
+ [
997
+ 0,
998
+ {
999
+ [_hQ]: _NT,
1000
+ },
1001
+ ],
1002
+ [
1003
+ 2,
1004
+ {
1005
+ [_hQ]: _ILA,
1006
+ },
1007
+ ],
1008
+ [
1009
+ 0,
1010
+ {
1011
+ [_hQ]: _AAI,
1012
+ },
1013
+ ],
1014
+ ],
1015
+ ];
1016
+ var ListServicesOutput = [
1017
+ 3,
1018
+ n0,
1019
+ _LSO,
1020
+ 0,
1021
+ [_ST, _ET, _SSe, _NT],
1022
+ [4, 4, () => ServiceSummaries, 0],
1023
+ ];
1024
+ var ListServiceStatesInput = [
1025
+ 3,
1026
+ n0,
1027
+ _LSSI,
1028
+ 0,
1029
+ [_ST, _ET, _MR, _NT, _ILA, _AAI, _AFt],
1030
+ [4, 4, 1, 0, 2, 0, () => AttributeFilters],
1031
+ ];
1032
+ var ListServiceStatesOutput = [
1033
+ 3,
1034
+ n0,
1035
+ _LSSO,
1036
+ 0,
1037
+ [_ST, _ET, _SSer, _NT],
1038
+ [4, 4, () => ServiceStates, 0],
1039
+ ];
1040
+ var ListTagsForResourceRequest = [
1041
+ 3,
1042
+ n0,
1043
+ _LTFRR,
1044
+ 0,
1045
+ [_RA],
1046
+ [
1047
+ [
1048
+ 0,
1049
+ {
1050
+ [_hQ]: _RA,
1051
+ },
1052
+ ],
1053
+ ],
1054
+ ];
1055
+ var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_Ta], [() => TagList]];
1056
+ var Metric = [3, n0, _Me, 0, [_Na, _MN, _Dim], [0, 0, () => Dimensions]];
1057
+ var MetricDataQuery = [
1058
+ 3,
1059
+ n0,
1060
+ _MDQ,
1061
+ 0,
1062
+ [_I, _MS, _Ex, _L, _RD, _P, _AI],
1063
+ [0, () => MetricStat, 0, 0, 2, 1, 0],
1064
+ ];
1065
+ var MetricGraph = [3, n0, _MG, 0, [_MDQe, _ST, _ET], [() => MetricDataQueries, 4, 4]];
1066
+ var MetricReference = [
1067
+ 3,
1068
+ n0,
1069
+ _MRe,
1070
+ 0,
1071
+ [_Na, _MT, _Dim, _MN, _AI],
1072
+ [0, 0, () => Dimensions, 0, 0],
1073
+ ];
1074
+ var MetricStat = [3, n0, _MS, 0, [_Me, _P, _St, _U], [() => Metric, 1, 0, 0]];
1075
+ var Node = [
1076
+ 3,
1077
+ n0,
1078
+ _Nod,
1079
+ 0,
1080
+ [_KA, _N, _NI, _O, _T, _Du, _Sta],
1081
+ [128 | 0, 0, 0, 0, 0, 1, 0],
1082
+ ];
1083
+ var PutGroupingConfigurationInput = [
1084
+ 3,
1085
+ n0,
1086
+ _PGCI,
1087
+ 0,
1088
+ [_GADr],
1089
+ [() => GroupingAttributeDefinitions],
1090
+ ];
1091
+ var PutGroupingConfigurationOutput = [
1092
+ 3,
1093
+ n0,
1094
+ _PGCO,
1095
+ 0,
1096
+ [_GC],
1097
+ [() => GroupingConfiguration],
1098
+ ];
1099
+ var RecurrenceRule = [3, n0, _RR, 0, [_Ex], [0]];
1100
+ var RequestBasedServiceLevelIndicator = [
1101
+ 3,
1102
+ n0,
1103
+ _RBSLI,
1104
+ 0,
1105
+ [_RBSM, _MTe, _CO],
1106
+ [() => RequestBasedServiceLevelIndicatorMetric, 1, 0],
1107
+ ];
1108
+ var RequestBasedServiceLevelIndicatorConfig = [
1109
+ 3,
1110
+ n0,
1111
+ _RBSLIC,
1112
+ 0,
1113
+ [_RBSMC, _MTe, _CO],
1114
+ [() => RequestBasedServiceLevelIndicatorMetricConfig, 1, 0],
1115
+ ];
1116
+ var RequestBasedServiceLevelIndicatorMetric = [
1117
+ 3,
1118
+ n0,
1119
+ _RBSLIM,
1120
+ 0,
1121
+ [_KA, _ON, _MT, _TRCM, _MRCM, _DC],
1122
+ [128 | 0, 0, 0, () => MetricDataQueries, () => MonitoredRequestCountMetricDataQueries, () => DependencyConfig],
1123
+ ];
1124
+ var RequestBasedServiceLevelIndicatorMetricConfig = [
1125
+ 3,
1126
+ n0,
1127
+ _RBSLIMC,
1128
+ 0,
1129
+ [_KA, _ON, _MT, _TRCM, _MRCM, _DC],
1130
+ [128 | 0, 0, 0, () => MetricDataQueries, () => MonitoredRequestCountMetricDataQueries, () => DependencyConfig],
1131
+ ];
1132
+ var ResourceNotFoundException = [
1133
+ -3,
1134
+ n0,
1135
+ _RNFE,
1136
+ {
1137
+ [_e]: _c,
1138
+ [_hE]: 404,
1139
+ },
1140
+ [_RT, _RI, _M],
1141
+ [0, 0, 0],
1142
+ ];
1143
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
1144
+ var RollingInterval = [3, n0, _RIo, 0, [_DU, _Du], [0, 1]];
1145
+ var Service = [
1146
+ 3,
1147
+ n0,
1148
+ _Se,
1149
+ 0,
1150
+ [_KA, _AM, _SG, _MRet, _LGR],
1151
+ [128 | 0, [1, n0, _AM, 0, 128 | 0], () => ServiceGroups, () => MetricReferences, [1, n0, _LGR, 0, 128 | 0]],
1152
+ ];
1153
+ var ServiceDependency = [
1154
+ 3,
1155
+ n0,
1156
+ _SDer,
1157
+ 0,
1158
+ [_ON, _DKA, _DON, _MRet],
1159
+ [0, 128 | 0, 0, () => MetricReferences],
1160
+ ];
1161
+ var ServiceDependent = [
1162
+ 3,
1163
+ n0,
1164
+ _SDerv,
1165
+ 0,
1166
+ [_ON, _DKAe, _DONe, _MRet],
1167
+ [0, 128 | 0, 0, () => MetricReferences],
1168
+ ];
1169
+ var ServiceEntity = [3, n0, _SE, 0, [_T, _N, _Env, _AAI], [0, 0, 0, 0]];
1170
+ var ServiceGroup = [3, n0, _SGe, 0, [_GNr, _GV, _GS, _GI], [0, 0, 0, 0]];
1171
+ var ServiceLevelIndicator = [
1172
+ 3,
1173
+ n0,
1174
+ _SLI,
1175
+ 0,
1176
+ [_SM, _MTe, _CO],
1177
+ [() => ServiceLevelIndicatorMetric, 1, 0],
1178
+ ];
1179
+ var ServiceLevelIndicatorConfig = [
1180
+ 3,
1181
+ n0,
1182
+ _SLIC,
1183
+ 0,
1184
+ [_SMC, _MTe, _CO],
1185
+ [() => ServiceLevelIndicatorMetricConfig, 1, 0],
1186
+ ];
1187
+ var ServiceLevelIndicatorMetric = [
1188
+ 3,
1189
+ n0,
1190
+ _SLIM,
1191
+ 0,
1192
+ [_KA, _ON, _MT, _MDQe, _DC],
1193
+ [128 | 0, 0, 0, () => MetricDataQueries, () => DependencyConfig],
1194
+ ];
1195
+ var ServiceLevelIndicatorMetricConfig = [
1196
+ 3,
1197
+ n0,
1198
+ _SLIMC,
1199
+ 0,
1200
+ [_KA, _ON, _MT, _MN, _Stat, _PS, _MDQe, _DC],
1201
+ [128 | 0, 0, 0, 0, 0, 1, () => MetricDataQueries, () => DependencyConfig],
1202
+ ];
1203
+ var ServiceLevelObjective = [
1204
+ 3,
1205
+ n0,
1206
+ _SLO,
1207
+ 0,
1208
+ [_Ar, _N, _D, _CTr, _LUT, _Sli, _RBS, _ETv, _G, _BRCu, _MSTe],
1209
+ [
1210
+ 0,
1211
+ 0,
1212
+ 0,
1213
+ 4,
1214
+ 4,
1215
+ () => ServiceLevelIndicator,
1216
+ () => RequestBasedServiceLevelIndicator,
1217
+ 0,
1218
+ () => Goal,
1219
+ () => BurnRateConfigurations,
1220
+ 0,
1221
+ ],
1222
+ ];
1223
+ var ServiceLevelObjectiveBudgetReport = [
1224
+ 3,
1225
+ n0,
1226
+ _SLOBR,
1227
+ 0,
1228
+ [_Ar, _N, _ETv, _BS, _At, _TBS, _BSR, _TBR, _BRR, _Sli, _RBS, _G],
1229
+ [0, 0, 0, 0, 1, 1, 1, 1, 1, () => ServiceLevelIndicator, () => RequestBasedServiceLevelIndicator, () => Goal],
1230
+ ];
1231
+ var ServiceLevelObjectiveBudgetReportError = [
1232
+ 3,
1233
+ n0,
1234
+ _SLOBRE,
1235
+ 0,
1236
+ [_N, _Ar, _EC, _EM],
1237
+ [0, 0, 0, 0],
1238
+ ];
1239
+ var ServiceLevelObjectiveEntity = [3, n0, _SLOE, 0, [_SN, _SA], [0, 0]];
1240
+ var ServiceLevelObjectiveSummary = [
1241
+ 3,
1242
+ n0,
1243
+ _SLOS,
1244
+ 0,
1245
+ [_Ar, _N, _KA, _ON, _DC, _CTr, _ETv, _MSTe],
1246
+ [0, 0, 128 | 0, 0, () => DependencyConfig, 4, 0, 0],
1247
+ ];
1248
+ var ServiceOperation = [3, n0, _SOe, 0, [_N, _MRet], [0, () => MetricReferences]];
1249
+ var ServiceOperationEntity = [
1250
+ 3,
1251
+ n0,
1252
+ _SOE,
1253
+ 0,
1254
+ [_Se, _O, _MT],
1255
+ [() => ServiceEntity, 0, 0],
1256
+ ];
1257
+ var ServiceQuotaExceededException = [
1258
+ -3,
1259
+ n0,
1260
+ _SQEE,
1261
+ {
1262
+ [_e]: _c,
1263
+ [_hE]: 402,
1264
+ },
1265
+ [_M],
1266
+ [0],
1267
+ ];
1268
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
1269
+ var ServiceState = [
1270
+ 3,
1271
+ n0,
1272
+ _SServ,
1273
+ 0,
1274
+ [_AFt, _Se, _LCE],
1275
+ [() => AttributeFilters, 128 | 0, () => LatestChangeEvents],
1276
+ ];
1277
+ var ServiceSummary = [
1278
+ 3,
1279
+ n0,
1280
+ _SServi,
1281
+ 0,
1282
+ [_KA, _AM, _MRet, _SG],
1283
+ [128 | 0, [1, n0, _AM, 0, 128 | 0], () => MetricReferences, () => ServiceGroups],
1284
+ ];
1285
+ var StartDiscoveryInput = [3, n0, _SDI, 0, [], []];
1286
+ var StartDiscoveryOutput = [3, n0, _SDO, 0, [], []];
1287
+ var Tag = [3, n0, _Tag, 0, [_K, _V], [0, 0]];
1288
+ var TagResourceRequest = [3, n0, _TRR, 0, [_RA, _Ta], [0, () => TagList]];
1289
+ var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
1290
+ var ThrottlingException = [
1291
+ -3,
1292
+ n0,
1293
+ _TE,
1294
+ {
1295
+ [_e]: _c,
1296
+ [_hE]: 429,
1297
+ },
1298
+ [_M],
1299
+ [0],
1300
+ ];
1301
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
1302
+ var UntagResourceRequest = [3, n0, _URR, 0, [_RA, _TK], [0, 64 | 0]];
1303
+ var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
1304
+ var UpdateServiceLevelObjectiveInput = [
1305
+ 3,
1306
+ n0,
1307
+ _USLOI,
1308
+ 0,
1309
+ [_I, _D, _SC, _RBSC, _G, _BRCu],
1310
+ [
1311
+ [0, 1],
1312
+ 0,
1313
+ () => ServiceLevelIndicatorConfig,
1314
+ () => RequestBasedServiceLevelIndicatorConfig,
1315
+ () => Goal,
1316
+ () => BurnRateConfigurations,
1317
+ ],
1318
+ ];
1319
+ var UpdateServiceLevelObjectiveOutput = [
1320
+ 3,
1321
+ n0,
1322
+ _USLOO,
1323
+ 0,
1324
+ [_Sl],
1325
+ [() => ServiceLevelObjective],
1326
+ ];
1327
+ var ValidationException = [
1328
+ -3,
1329
+ n0,
1330
+ _VE,
1331
+ {
1332
+ [_e]: _c,
1333
+ [_hE]: 400,
1334
+ [_aQE]: [`ValidationError`, 400],
1335
+ },
1336
+ [_m],
1337
+ [0],
1338
+ ];
1339
+ schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
1340
+ var Window = [3, n0, _W, 0, [_DU, _Du], [0, 1]];
1341
+ var __Unit = "unit";
1342
+ var ApplicationSignalsServiceException = [
1343
+ -3,
1344
+ _s,
1345
+ "ApplicationSignalsServiceException",
1346
+ 0,
1347
+ [],
1348
+ [],
1349
+ ];
1350
+ schema.TypeRegistry.for(_s).registerError(ApplicationSignalsServiceException, ApplicationSignalsServiceException$1);
1351
+ var AttributeFilters = [1, n0, _AFt, 0, () => AttributeFilter];
1352
+ var AuditFindings = [1, n0, _AFud, 0, () => AuditFinding];
1353
+ var AuditorResults = [1, n0, _AR, 0, () => AuditorResult];
1354
+ var AuditTargets = [1, n0, _ATu, 0, () => AuditTarget];
1355
+ var BatchUpdateExclusionWindowsErrors = [
1356
+ 1,
1357
+ n0,
1358
+ _BUEWEa,
1359
+ 0,
1360
+ () => BatchUpdateExclusionWindowsError,
1361
+ ];
1362
+ var BurnRateConfigurations = [1, n0, _BRCu, 0, () => BurnRateConfiguration];
1363
+ var Dimensions = [1, n0, _Dim, 0, () => Dimension];
1364
+ var Edges = [1, n0, _Ed, 0, () => Edge];
1365
+ var ExclusionWindows = [1, n0, _EWx, 0, () => ExclusionWindow];
1366
+ var GroupingAttributeDefinitions = [1, n0, _GADr, 0, () => GroupingAttributeDefinition];
1367
+ var LatestChangeEvents = [1, n0, _LCE, 0, () => ChangeEvent];
1368
+ var MetricDataQueries = [1, n0, _MDQe, 0, () => MetricDataQuery];
1369
+ var MetricReferences = [1, n0, _MRet, 0, () => MetricReference];
1370
+ var Nodes = [1, n0, _No, 0, () => Node];
1371
+ var ServiceDependencies = [1, n0, _SD, 0, () => ServiceDependency];
1372
+ var ServiceDependents = [1, n0, _SDe, 0, () => ServiceDependent];
1373
+ var ServiceGroups = [1, n0, _SG, 0, () => ServiceGroup];
1374
+ var ServiceLevelObjectiveBudgetReportErrors = [
1375
+ 1,
1376
+ n0,
1377
+ _SLOBREe,
1378
+ 0,
1379
+ () => ServiceLevelObjectiveBudgetReportError,
1380
+ ];
1381
+ var ServiceLevelObjectiveBudgetReports = [
1382
+ 1,
1383
+ n0,
1384
+ _SLOBRe,
1385
+ 0,
1386
+ () => ServiceLevelObjectiveBudgetReport,
1387
+ ];
1388
+ var ServiceLevelObjectiveSummaries = [1, n0, _SLOSe, 0, () => ServiceLevelObjectiveSummary];
1389
+ var ServiceOperations = [1, n0, _SO, 0, () => ServiceOperation];
1390
+ var ServiceStates = [1, n0, _SSer, 0, () => ServiceState];
1391
+ var ServiceSummaries = [1, n0, _SSe, 0, () => ServiceSummary];
1392
+ var TagList = [1, n0, _TL, 0, () => Tag];
1393
+ var AuditTargetEntity = [
1394
+ 3,
1395
+ n0,
1396
+ _ATE,
1397
+ 0,
1398
+ [_Se, _Sl, _SOe, _C],
1399
+ [() => ServiceEntity, () => ServiceLevelObjectiveEntity, () => ServiceOperationEntity, () => CanaryEntity],
1400
+ ];
1401
+ var Interval = [
1402
+ 3,
1403
+ n0,
1404
+ _In,
1405
+ 0,
1406
+ [_RIo, _CI],
1407
+ [() => RollingInterval, () => CalendarInterval],
1408
+ ];
1409
+ var MonitoredRequestCountMetricDataQueries = [
1410
+ 3,
1411
+ n0,
1412
+ _MRCMDQ,
1413
+ 0,
1414
+ [_GCM, _BCM],
1415
+ [() => MetricDataQueries, () => MetricDataQueries],
1416
+ ];
1417
+ var BatchGetServiceLevelObjectiveBudgetReport = [
1418
+ 9,
1419
+ n0,
1420
+ _BGSLOBR,
1421
+ {
1422
+ [_h]: ["POST", "/budget-report", 200],
1423
+ },
1424
+ () => BatchGetServiceLevelObjectiveBudgetReportInput,
1425
+ () => BatchGetServiceLevelObjectiveBudgetReportOutput,
1426
+ ];
1427
+ var BatchUpdateExclusionWindows = [
1428
+ 9,
1429
+ n0,
1430
+ _BUEW,
1431
+ {
1432
+ [_h]: ["PATCH", "/exclusion-windows", 200],
1433
+ },
1434
+ () => BatchUpdateExclusionWindowsInput,
1435
+ () => BatchUpdateExclusionWindowsOutput,
1436
+ ];
1437
+ var CreateServiceLevelObjective = [
1438
+ 9,
1439
+ n0,
1440
+ _CSLO,
1441
+ {
1442
+ [_h]: ["POST", "/slo", 200],
1443
+ },
1444
+ () => CreateServiceLevelObjectiveInput,
1445
+ () => CreateServiceLevelObjectiveOutput,
1446
+ ];
1447
+ var DeleteGroupingConfiguration = [
1448
+ 9,
1449
+ n0,
1450
+ _DGC,
1451
+ {
1452
+ [_h]: ["DELETE", "/grouping-configuration", 200],
1453
+ },
1454
+ () => __Unit,
1455
+ () => DeleteGroupingConfigurationOutput,
1456
+ ];
1457
+ var DeleteServiceLevelObjective = [
1458
+ 9,
1459
+ n0,
1460
+ _DSLO,
1461
+ {
1462
+ [_h]: ["DELETE", "/slo/{Id}", 200],
1463
+ },
1464
+ () => DeleteServiceLevelObjectiveInput,
1465
+ () => DeleteServiceLevelObjectiveOutput,
1466
+ ];
1467
+ var GetService = [
1468
+ 9,
1469
+ n0,
1470
+ _GSe,
1471
+ {
1472
+ [_h]: ["POST", "/service", 200],
1473
+ },
1474
+ () => GetServiceInput,
1475
+ () => GetServiceOutput,
1476
+ ];
1477
+ var GetServiceLevelObjective = [
1478
+ 9,
1479
+ n0,
1480
+ _GSLO,
1481
+ {
1482
+ [_h]: ["GET", "/slo/{Id}", 200],
1483
+ },
1484
+ () => GetServiceLevelObjectiveInput,
1485
+ () => GetServiceLevelObjectiveOutput,
1486
+ ];
1487
+ var ListAuditFindings = [
1488
+ 9,
1489
+ n0,
1490
+ _LAF,
1491
+ {
1492
+ [_h]: ["POST", "/auditFindings", 200],
1493
+ },
1494
+ () => ListAuditFindingsInput,
1495
+ () => ListAuditFindingsOutput,
1496
+ ];
1497
+ var ListGroupingAttributeDefinitions = [
1498
+ 9,
1499
+ n0,
1500
+ _LGAD,
1501
+ {
1502
+ [_h]: ["POST", "/grouping-attribute-definitions", 200],
1503
+ },
1504
+ () => ListGroupingAttributeDefinitionsInput,
1505
+ () => ListGroupingAttributeDefinitionsOutput,
1506
+ ];
1507
+ var ListServiceDependencies = [
1508
+ 9,
1509
+ n0,
1510
+ _LSD,
1511
+ {
1512
+ [_h]: ["POST", "/service-dependencies", 200],
1513
+ },
1514
+ () => ListServiceDependenciesInput,
1515
+ () => ListServiceDependenciesOutput,
1516
+ ];
1517
+ var ListServiceDependents = [
1518
+ 9,
1519
+ n0,
1520
+ _LSDi,
1521
+ {
1522
+ [_h]: ["POST", "/service-dependents", 200],
1523
+ },
1524
+ () => ListServiceDependentsInput,
1525
+ () => ListServiceDependentsOutput,
1526
+ ];
1527
+ var ListServiceLevelObjectiveExclusionWindows = [
1528
+ 9,
1529
+ n0,
1530
+ _LSLOEW,
1531
+ {
1532
+ [_h]: ["GET", "/slo/{Id}/exclusion-windows", 200],
1533
+ },
1534
+ () => ListServiceLevelObjectiveExclusionWindowsInput,
1535
+ () => ListServiceLevelObjectiveExclusionWindowsOutput,
1536
+ ];
1537
+ var ListServiceLevelObjectives = [
1538
+ 9,
1539
+ n0,
1540
+ _LSLO,
1541
+ {
1542
+ [_h]: ["POST", "/slos", 200],
1543
+ },
1544
+ () => ListServiceLevelObjectivesInput,
1545
+ () => ListServiceLevelObjectivesOutput,
1546
+ ];
1547
+ var ListServiceOperations = [
1548
+ 9,
1549
+ n0,
1550
+ _LSOi,
1551
+ {
1552
+ [_h]: ["POST", "/service-operations", 200],
1553
+ },
1554
+ () => ListServiceOperationsInput,
1555
+ () => ListServiceOperationsOutput,
1556
+ ];
1557
+ var ListServices = [
1558
+ 9,
1559
+ n0,
1560
+ _LS,
1561
+ {
1562
+ [_h]: ["GET", "/services", 200],
1563
+ },
1564
+ () => ListServicesInput,
1565
+ () => ListServicesOutput,
1566
+ ];
1567
+ var ListServiceStates = [
1568
+ 9,
1569
+ n0,
1570
+ _LSS,
1571
+ {
1572
+ [_h]: ["POST", "/service/states", 200],
1573
+ },
1574
+ () => ListServiceStatesInput,
1575
+ () => ListServiceStatesOutput,
1576
+ ];
1577
+ var ListTagsForResource = [
1578
+ 9,
1579
+ n0,
1580
+ _LTFR,
1581
+ {
1582
+ [_h]: ["GET", "/tags", 200],
1583
+ },
1584
+ () => ListTagsForResourceRequest,
1585
+ () => ListTagsForResourceResponse,
1586
+ ];
1587
+ var PutGroupingConfiguration = [
1588
+ 9,
1589
+ n0,
1590
+ _PGC,
1591
+ {
1592
+ [_h]: ["PUT", "/grouping-configuration", 200],
1593
+ },
1594
+ () => PutGroupingConfigurationInput,
1595
+ () => PutGroupingConfigurationOutput,
1596
+ ];
1597
+ var StartDiscovery = [
1598
+ 9,
1599
+ n0,
1600
+ _SDt,
1601
+ {
1602
+ [_h]: ["POST", "/start-discovery", 200],
1603
+ },
1604
+ () => StartDiscoveryInput,
1605
+ () => StartDiscoveryOutput,
1606
+ ];
1607
+ var TagResource = [
1608
+ 9,
1609
+ n0,
1610
+ _TR,
1611
+ {
1612
+ [_h]: ["POST", "/tag-resource", 200],
1613
+ },
1614
+ () => TagResourceRequest,
1615
+ () => TagResourceResponse,
1616
+ ];
1617
+ var UntagResource = [
1618
+ 9,
1619
+ n0,
1620
+ _UR,
1621
+ {
1622
+ [_h]: ["POST", "/untag-resource", 200],
1623
+ },
1624
+ () => UntagResourceRequest,
1625
+ () => UntagResourceResponse,
1626
+ ];
1627
+ var UpdateServiceLevelObjective = [
1628
+ 9,
1629
+ n0,
1630
+ _USLO,
1631
+ {
1632
+ [_h]: ["PATCH", "/slo/{Id}", 200],
1633
+ },
1634
+ () => UpdateServiceLevelObjectiveInput,
1635
+ () => UpdateServiceLevelObjectiveOutput,
1636
+ ];
1357
1637
 
1358
1638
  class BatchGetServiceLevelObjectiveBudgetReportCommand extends smithyClient.Command
1359
1639
  .classBuilder()
1360
1640
  .ep(commonParams)
1361
1641
  .m(function (Command, cs, config, o) {
1362
- return [
1363
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1364
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1365
- ];
1642
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1366
1643
  })
1367
1644
  .s("ApplicationSignals", "BatchGetServiceLevelObjectiveBudgetReport", {})
1368
1645
  .n("ApplicationSignalsClient", "BatchGetServiceLevelObjectiveBudgetReportCommand")
1369
- .f(void 0, void 0)
1370
- .ser(se_BatchGetServiceLevelObjectiveBudgetReportCommand)
1371
- .de(de_BatchGetServiceLevelObjectiveBudgetReportCommand)
1646
+ .sc(BatchGetServiceLevelObjectiveBudgetReport)
1372
1647
  .build() {
1373
1648
  }
1374
1649
 
@@ -1376,16 +1651,11 @@ class BatchUpdateExclusionWindowsCommand extends smithyClient.Command
1376
1651
  .classBuilder()
1377
1652
  .ep(commonParams)
1378
1653
  .m(function (Command, cs, config, o) {
1379
- return [
1380
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1381
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1382
- ];
1654
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1383
1655
  })
1384
1656
  .s("ApplicationSignals", "BatchUpdateExclusionWindows", {})
1385
1657
  .n("ApplicationSignalsClient", "BatchUpdateExclusionWindowsCommand")
1386
- .f(void 0, void 0)
1387
- .ser(se_BatchUpdateExclusionWindowsCommand)
1388
- .de(de_BatchUpdateExclusionWindowsCommand)
1658
+ .sc(BatchUpdateExclusionWindows)
1389
1659
  .build() {
1390
1660
  }
1391
1661
 
@@ -1393,16 +1663,11 @@ class CreateServiceLevelObjectiveCommand extends smithyClient.Command
1393
1663
  .classBuilder()
1394
1664
  .ep(commonParams)
1395
1665
  .m(function (Command, cs, config, o) {
1396
- return [
1397
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1398
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1399
- ];
1666
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1400
1667
  })
1401
1668
  .s("ApplicationSignals", "CreateServiceLevelObjective", {})
1402
1669
  .n("ApplicationSignalsClient", "CreateServiceLevelObjectiveCommand")
1403
- .f(void 0, void 0)
1404
- .ser(se_CreateServiceLevelObjectiveCommand)
1405
- .de(de_CreateServiceLevelObjectiveCommand)
1670
+ .sc(CreateServiceLevelObjective)
1406
1671
  .build() {
1407
1672
  }
1408
1673
 
@@ -1410,16 +1675,11 @@ class DeleteGroupingConfigurationCommand extends smithyClient.Command
1410
1675
  .classBuilder()
1411
1676
  .ep(commonParams)
1412
1677
  .m(function (Command, cs, config, o) {
1413
- return [
1414
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1415
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1416
- ];
1678
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1417
1679
  })
1418
1680
  .s("ApplicationSignals", "DeleteGroupingConfiguration", {})
1419
1681
  .n("ApplicationSignalsClient", "DeleteGroupingConfigurationCommand")
1420
- .f(void 0, void 0)
1421
- .ser(se_DeleteGroupingConfigurationCommand)
1422
- .de(de_DeleteGroupingConfigurationCommand)
1682
+ .sc(DeleteGroupingConfiguration)
1423
1683
  .build() {
1424
1684
  }
1425
1685
 
@@ -1427,16 +1687,11 @@ class DeleteServiceLevelObjectiveCommand extends smithyClient.Command
1427
1687
  .classBuilder()
1428
1688
  .ep(commonParams)
1429
1689
  .m(function (Command, cs, config, o) {
1430
- return [
1431
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1432
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1433
- ];
1690
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1434
1691
  })
1435
1692
  .s("ApplicationSignals", "DeleteServiceLevelObjective", {})
1436
1693
  .n("ApplicationSignalsClient", "DeleteServiceLevelObjectiveCommand")
1437
- .f(void 0, void 0)
1438
- .ser(se_DeleteServiceLevelObjectiveCommand)
1439
- .de(de_DeleteServiceLevelObjectiveCommand)
1694
+ .sc(DeleteServiceLevelObjective)
1440
1695
  .build() {
1441
1696
  }
1442
1697
 
@@ -1444,16 +1699,11 @@ class GetServiceCommand extends smithyClient.Command
1444
1699
  .classBuilder()
1445
1700
  .ep(commonParams)
1446
1701
  .m(function (Command, cs, config, o) {
1447
- return [
1448
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1449
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1450
- ];
1702
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1451
1703
  })
1452
1704
  .s("ApplicationSignals", "GetService", {})
1453
1705
  .n("ApplicationSignalsClient", "GetServiceCommand")
1454
- .f(void 0, void 0)
1455
- .ser(se_GetServiceCommand)
1456
- .de(de_GetServiceCommand)
1706
+ .sc(GetService)
1457
1707
  .build() {
1458
1708
  }
1459
1709
 
@@ -1461,16 +1711,11 @@ class GetServiceLevelObjectiveCommand extends smithyClient.Command
1461
1711
  .classBuilder()
1462
1712
  .ep(commonParams)
1463
1713
  .m(function (Command, cs, config, o) {
1464
- return [
1465
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1466
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1467
- ];
1714
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1468
1715
  })
1469
1716
  .s("ApplicationSignals", "GetServiceLevelObjective", {})
1470
1717
  .n("ApplicationSignalsClient", "GetServiceLevelObjectiveCommand")
1471
- .f(void 0, void 0)
1472
- .ser(se_GetServiceLevelObjectiveCommand)
1473
- .de(de_GetServiceLevelObjectiveCommand)
1718
+ .sc(GetServiceLevelObjective)
1474
1719
  .build() {
1475
1720
  }
1476
1721
 
@@ -1478,16 +1723,11 @@ class ListAuditFindingsCommand extends smithyClient.Command
1478
1723
  .classBuilder()
1479
1724
  .ep(commonParams)
1480
1725
  .m(function (Command, cs, config, o) {
1481
- return [
1482
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1483
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1484
- ];
1726
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1485
1727
  })
1486
1728
  .s("ApplicationSignals", "ListAuditFindings", {})
1487
1729
  .n("ApplicationSignalsClient", "ListAuditFindingsCommand")
1488
- .f(void 0, void 0)
1489
- .ser(se_ListAuditFindingsCommand)
1490
- .de(de_ListAuditFindingsCommand)
1730
+ .sc(ListAuditFindings)
1491
1731
  .build() {
1492
1732
  }
1493
1733
 
@@ -1495,16 +1735,11 @@ class ListGroupingAttributeDefinitionsCommand extends smithyClient.Command
1495
1735
  .classBuilder()
1496
1736
  .ep(commonParams)
1497
1737
  .m(function (Command, cs, config, o) {
1498
- return [
1499
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1500
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1501
- ];
1738
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1502
1739
  })
1503
1740
  .s("ApplicationSignals", "ListGroupingAttributeDefinitions", {})
1504
1741
  .n("ApplicationSignalsClient", "ListGroupingAttributeDefinitionsCommand")
1505
- .f(void 0, void 0)
1506
- .ser(se_ListGroupingAttributeDefinitionsCommand)
1507
- .de(de_ListGroupingAttributeDefinitionsCommand)
1742
+ .sc(ListGroupingAttributeDefinitions)
1508
1743
  .build() {
1509
1744
  }
1510
1745
 
@@ -1512,16 +1747,11 @@ class ListServiceDependenciesCommand extends smithyClient.Command
1512
1747
  .classBuilder()
1513
1748
  .ep(commonParams)
1514
1749
  .m(function (Command, cs, config, o) {
1515
- return [
1516
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1517
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1518
- ];
1750
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1519
1751
  })
1520
1752
  .s("ApplicationSignals", "ListServiceDependencies", {})
1521
1753
  .n("ApplicationSignalsClient", "ListServiceDependenciesCommand")
1522
- .f(void 0, void 0)
1523
- .ser(se_ListServiceDependenciesCommand)
1524
- .de(de_ListServiceDependenciesCommand)
1754
+ .sc(ListServiceDependencies)
1525
1755
  .build() {
1526
1756
  }
1527
1757
 
@@ -1529,16 +1759,11 @@ class ListServiceDependentsCommand extends smithyClient.Command
1529
1759
  .classBuilder()
1530
1760
  .ep(commonParams)
1531
1761
  .m(function (Command, cs, config, o) {
1532
- return [
1533
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1534
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1535
- ];
1762
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1536
1763
  })
1537
1764
  .s("ApplicationSignals", "ListServiceDependents", {})
1538
1765
  .n("ApplicationSignalsClient", "ListServiceDependentsCommand")
1539
- .f(void 0, void 0)
1540
- .ser(se_ListServiceDependentsCommand)
1541
- .de(de_ListServiceDependentsCommand)
1766
+ .sc(ListServiceDependents)
1542
1767
  .build() {
1543
1768
  }
1544
1769
 
@@ -1546,16 +1771,11 @@ class ListServiceLevelObjectiveExclusionWindowsCommand extends smithyClient.Comm
1546
1771
  .classBuilder()
1547
1772
  .ep(commonParams)
1548
1773
  .m(function (Command, cs, config, o) {
1549
- return [
1550
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1551
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1552
- ];
1774
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1553
1775
  })
1554
1776
  .s("ApplicationSignals", "ListServiceLevelObjectiveExclusionWindows", {})
1555
1777
  .n("ApplicationSignalsClient", "ListServiceLevelObjectiveExclusionWindowsCommand")
1556
- .f(void 0, void 0)
1557
- .ser(se_ListServiceLevelObjectiveExclusionWindowsCommand)
1558
- .de(de_ListServiceLevelObjectiveExclusionWindowsCommand)
1778
+ .sc(ListServiceLevelObjectiveExclusionWindows)
1559
1779
  .build() {
1560
1780
  }
1561
1781
 
@@ -1563,16 +1783,11 @@ class ListServiceLevelObjectivesCommand extends smithyClient.Command
1563
1783
  .classBuilder()
1564
1784
  .ep(commonParams)
1565
1785
  .m(function (Command, cs, config, o) {
1566
- return [
1567
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1568
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1569
- ];
1786
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1570
1787
  })
1571
1788
  .s("ApplicationSignals", "ListServiceLevelObjectives", {})
1572
1789
  .n("ApplicationSignalsClient", "ListServiceLevelObjectivesCommand")
1573
- .f(void 0, void 0)
1574
- .ser(se_ListServiceLevelObjectivesCommand)
1575
- .de(de_ListServiceLevelObjectivesCommand)
1790
+ .sc(ListServiceLevelObjectives)
1576
1791
  .build() {
1577
1792
  }
1578
1793
 
@@ -1580,16 +1795,11 @@ class ListServiceOperationsCommand extends smithyClient.Command
1580
1795
  .classBuilder()
1581
1796
  .ep(commonParams)
1582
1797
  .m(function (Command, cs, config, o) {
1583
- return [
1584
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1585
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1586
- ];
1798
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1587
1799
  })
1588
1800
  .s("ApplicationSignals", "ListServiceOperations", {})
1589
1801
  .n("ApplicationSignalsClient", "ListServiceOperationsCommand")
1590
- .f(void 0, void 0)
1591
- .ser(se_ListServiceOperationsCommand)
1592
- .de(de_ListServiceOperationsCommand)
1802
+ .sc(ListServiceOperations)
1593
1803
  .build() {
1594
1804
  }
1595
1805
 
@@ -1597,16 +1807,11 @@ class ListServicesCommand extends smithyClient.Command
1597
1807
  .classBuilder()
1598
1808
  .ep(commonParams)
1599
1809
  .m(function (Command, cs, config, o) {
1600
- return [
1601
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1602
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1603
- ];
1810
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1604
1811
  })
1605
1812
  .s("ApplicationSignals", "ListServices", {})
1606
1813
  .n("ApplicationSignalsClient", "ListServicesCommand")
1607
- .f(void 0, void 0)
1608
- .ser(se_ListServicesCommand)
1609
- .de(de_ListServicesCommand)
1814
+ .sc(ListServices)
1610
1815
  .build() {
1611
1816
  }
1612
1817
 
@@ -1614,16 +1819,11 @@ class ListServiceStatesCommand extends smithyClient.Command
1614
1819
  .classBuilder()
1615
1820
  .ep(commonParams)
1616
1821
  .m(function (Command, cs, config, o) {
1617
- return [
1618
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1619
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1620
- ];
1822
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1621
1823
  })
1622
1824
  .s("ApplicationSignals", "ListServiceStates", {})
1623
1825
  .n("ApplicationSignalsClient", "ListServiceStatesCommand")
1624
- .f(void 0, void 0)
1625
- .ser(se_ListServiceStatesCommand)
1626
- .de(de_ListServiceStatesCommand)
1826
+ .sc(ListServiceStates)
1627
1827
  .build() {
1628
1828
  }
1629
1829
 
@@ -1631,16 +1831,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
1631
1831
  .classBuilder()
1632
1832
  .ep(commonParams)
1633
1833
  .m(function (Command, cs, config, o) {
1634
- return [
1635
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1636
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1637
- ];
1834
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1638
1835
  })
1639
1836
  .s("ApplicationSignals", "ListTagsForResource", {})
1640
1837
  .n("ApplicationSignalsClient", "ListTagsForResourceCommand")
1641
- .f(void 0, void 0)
1642
- .ser(se_ListTagsForResourceCommand)
1643
- .de(de_ListTagsForResourceCommand)
1838
+ .sc(ListTagsForResource)
1644
1839
  .build() {
1645
1840
  }
1646
1841
 
@@ -1648,16 +1843,11 @@ class PutGroupingConfigurationCommand extends smithyClient.Command
1648
1843
  .classBuilder()
1649
1844
  .ep(commonParams)
1650
1845
  .m(function (Command, cs, config, o) {
1651
- return [
1652
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1653
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1654
- ];
1846
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1655
1847
  })
1656
1848
  .s("ApplicationSignals", "PutGroupingConfiguration", {})
1657
1849
  .n("ApplicationSignalsClient", "PutGroupingConfigurationCommand")
1658
- .f(void 0, void 0)
1659
- .ser(se_PutGroupingConfigurationCommand)
1660
- .de(de_PutGroupingConfigurationCommand)
1850
+ .sc(PutGroupingConfiguration)
1661
1851
  .build() {
1662
1852
  }
1663
1853
 
@@ -1665,16 +1855,11 @@ class StartDiscoveryCommand extends smithyClient.Command
1665
1855
  .classBuilder()
1666
1856
  .ep(commonParams)
1667
1857
  .m(function (Command, cs, config, o) {
1668
- return [
1669
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1670
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1671
- ];
1858
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1672
1859
  })
1673
1860
  .s("ApplicationSignals", "StartDiscovery", {})
1674
1861
  .n("ApplicationSignalsClient", "StartDiscoveryCommand")
1675
- .f(void 0, void 0)
1676
- .ser(se_StartDiscoveryCommand)
1677
- .de(de_StartDiscoveryCommand)
1862
+ .sc(StartDiscovery)
1678
1863
  .build() {
1679
1864
  }
1680
1865
 
@@ -1682,16 +1867,11 @@ class TagResourceCommand extends smithyClient.Command
1682
1867
  .classBuilder()
1683
1868
  .ep(commonParams)
1684
1869
  .m(function (Command, cs, config, o) {
1685
- return [
1686
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1687
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1688
- ];
1870
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1689
1871
  })
1690
1872
  .s("ApplicationSignals", "TagResource", {})
1691
1873
  .n("ApplicationSignalsClient", "TagResourceCommand")
1692
- .f(void 0, void 0)
1693
- .ser(se_TagResourceCommand)
1694
- .de(de_TagResourceCommand)
1874
+ .sc(TagResource)
1695
1875
  .build() {
1696
1876
  }
1697
1877
 
@@ -1699,16 +1879,11 @@ class UntagResourceCommand extends smithyClient.Command
1699
1879
  .classBuilder()
1700
1880
  .ep(commonParams)
1701
1881
  .m(function (Command, cs, config, o) {
1702
- return [
1703
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1704
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1705
- ];
1882
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1706
1883
  })
1707
1884
  .s("ApplicationSignals", "UntagResource", {})
1708
1885
  .n("ApplicationSignalsClient", "UntagResourceCommand")
1709
- .f(void 0, void 0)
1710
- .ser(se_UntagResourceCommand)
1711
- .de(de_UntagResourceCommand)
1886
+ .sc(UntagResource)
1712
1887
  .build() {
1713
1888
  }
1714
1889
 
@@ -1716,16 +1891,11 @@ class UpdateServiceLevelObjectiveCommand extends smithyClient.Command
1716
1891
  .classBuilder()
1717
1892
  .ep(commonParams)
1718
1893
  .m(function (Command, cs, config, o) {
1719
- return [
1720
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
1721
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
1722
- ];
1894
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
1723
1895
  })
1724
1896
  .s("ApplicationSignals", "UpdateServiceLevelObjective", {})
1725
1897
  .n("ApplicationSignalsClient", "UpdateServiceLevelObjectiveCommand")
1726
- .f(void 0, void 0)
1727
- .ser(se_UpdateServiceLevelObjectiveCommand)
1728
- .de(de_UpdateServiceLevelObjectiveCommand)
1898
+ .sc(UpdateServiceLevelObjective)
1729
1899
  .build() {
1730
1900
  }
1731
1901
 
@@ -1779,14 +1949,14 @@ Object.defineProperty(exports, "__Client", {
1779
1949
  enumerable: true,
1780
1950
  get: function () { return smithyClient.Client; }
1781
1951
  });
1782
- exports.AccessDeniedException = AccessDeniedException;
1952
+ exports.AccessDeniedException = AccessDeniedException$1;
1783
1953
  exports.ApplicationSignals = ApplicationSignals;
1784
1954
  exports.ApplicationSignalsClient = ApplicationSignalsClient;
1785
- exports.ApplicationSignalsServiceException = ApplicationSignalsServiceException;
1955
+ exports.ApplicationSignalsServiceException = ApplicationSignalsServiceException$1;
1786
1956
  exports.BatchGetServiceLevelObjectiveBudgetReportCommand = BatchGetServiceLevelObjectiveBudgetReportCommand;
1787
1957
  exports.BatchUpdateExclusionWindowsCommand = BatchUpdateExclusionWindowsCommand;
1788
1958
  exports.ChangeEventType = ChangeEventType;
1789
- exports.ConflictException = ConflictException;
1959
+ exports.ConflictException = ConflictException$1;
1790
1960
  exports.ConnectionType = ConnectionType;
1791
1961
  exports.CreateServiceLevelObjectiveCommand = CreateServiceLevelObjectiveCommand;
1792
1962
  exports.DeleteGroupingConfigurationCommand = DeleteGroupingConfigurationCommand;
@@ -1807,19 +1977,19 @@ exports.ListServicesCommand = ListServicesCommand;
1807
1977
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
1808
1978
  exports.MetricSourceType = MetricSourceType;
1809
1979
  exports.PutGroupingConfigurationCommand = PutGroupingConfigurationCommand;
1810
- exports.ResourceNotFoundException = ResourceNotFoundException;
1980
+ exports.ResourceNotFoundException = ResourceNotFoundException$1;
1811
1981
  exports.ServiceLevelIndicatorComparisonOperator = ServiceLevelIndicatorComparisonOperator;
1812
1982
  exports.ServiceLevelIndicatorMetricType = ServiceLevelIndicatorMetricType;
1813
1983
  exports.ServiceLevelObjectiveBudgetStatus = ServiceLevelObjectiveBudgetStatus;
1814
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
1984
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
1815
1985
  exports.Severity = Severity;
1816
1986
  exports.StandardUnit = StandardUnit;
1817
1987
  exports.StartDiscoveryCommand = StartDiscoveryCommand;
1818
1988
  exports.TagResourceCommand = TagResourceCommand;
1819
- exports.ThrottlingException = ThrottlingException;
1989
+ exports.ThrottlingException = ThrottlingException$1;
1820
1990
  exports.UntagResourceCommand = UntagResourceCommand;
1821
1991
  exports.UpdateServiceLevelObjectiveCommand = UpdateServiceLevelObjectiveCommand;
1822
- exports.ValidationException = ValidationException;
1992
+ exports.ValidationException = ValidationException$1;
1823
1993
  exports.paginateListServiceDependencies = paginateListServiceDependencies;
1824
1994
  exports.paginateListServiceDependents = paginateListServiceDependents;
1825
1995
  exports.paginateListServiceLevelObjectiveExclusionWindows = paginateListServiceLevelObjectiveExclusionWindows;