@aws-sdk/client-application-signals 3.1075.0 → 3.1077.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -1,21 +1,58 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultApplicationSignalsHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { BatchDeleteInstrumentationConfigurations$, BatchGetServiceLevelObjectiveBudgetReport$, BatchUpdateExclusionWindows$, CreateInstrumentationConfiguration$, CreateServiceLevelObjective$, DeleteGroupingConfiguration$, DeleteInstrumentationConfiguration$, DeleteServiceLevelObjective$, GetInstrumentationConfiguration$, GetInstrumentationConfigurationStatus$, GetService$, GetServiceLevelObjective$, ListAuditFindings$, ListEntityEvents$, ListGroupingAttributeDefinitions$, ListInstrumentationConfigurations$, ListServiceDependencies$, ListServiceDependents$, ListServiceLevelObjectiveExclusionWindows$, ListServiceLevelObjectives$, ListServiceOperations$, ListServices$, ListServiceStates$, ListTagsForResource$, PutGroupingConfiguration$, ReportInstrumentationConfigurationStatus$, StartDiscovery$, TagResource$, UntagResource$, UpdateServiceLevelObjective$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { ApplicationSignalsServiceException } = require("./models/ApplicationSignalsServiceException");
18
- exports.ApplicationSignalsServiceException = ApplicationSignalsServiceException;
6
+ const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
+ const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
8
+ const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
9
+ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
10
+ const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
+ const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
+ const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
+ const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+ const { Sha256 } = require("@smithy/core/checksum");
17
+
18
+ const defaultApplicationSignalsHttpAuthSchemeParametersProvider = async (config, context, input) => {
19
+ return {
20
+ operation: getSmithyContext(context).operation,
21
+ region: await normalizeProvider(config.region)() || (() => {
22
+ throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
23
+ })(),
24
+ };
25
+ };
26
+ function createAwsAuthSigv4HttpAuthOption(authParameters) {
27
+ return {
28
+ schemeId: "aws.auth#sigv4",
29
+ signingProperties: {
30
+ name: "application-signals",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultApplicationSignalsHttpAuthSchemeProvider = (authParameters) => {
42
+ const options = [];
43
+ switch (authParameters.operation) {
44
+ default: {
45
+ options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
46
+ }
47
+ }
48
+ return options;
49
+ };
50
+ const resolveHttpAuthSchemeConfig = (config) => {
51
+ const config_0 = resolveAwsSdkSigV4Config(config);
52
+ return Object.assign(config_0, {
53
+ authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
54
+ });
55
+ };
19
56
 
20
57
  const resolveClientEndpointParameters = (options) => {
21
58
  return Object.assign(options, {
@@ -29,6 +66,1471 @@ const commonParams = {
29
66
  Region: { type: "builtInParams", name: "region" },
30
67
  };
31
68
 
69
+ var version = "3.1076.0";
70
+ var packageInfo = {
71
+ version: version};
72
+
73
+ const a = "isSet", b = { "ref": "Endpoint" }, c = [{ "ref": "Region" }];
74
+ const _data = {
75
+ conditions: [
76
+ [a, [b]],
77
+ [a, c],
78
+ ["aws.partition", c, "PartitionResult"],
79
+ ["booleanEquals", [{ ref: "UseFIPS" }, true]]
80
+ ],
81
+ results: [
82
+ [-1],
83
+ [-1, "Invalid Configuration: FIPS and custom endpoint are not supported"],
84
+ [b, {}],
85
+ ["https://application-signals-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
86
+ ["https://application-signals.{Region}.{PartitionResult#dualStackDnsSuffix}", {}],
87
+ [-1, "Invalid Configuration: Missing Region"]
88
+ ]
89
+ };
90
+ const root = 2;
91
+ const r = 100_000_000;
92
+ const nodes = new Int32Array([
93
+ -1, 1, -1,
94
+ 0, 6, 3,
95
+ 1, 4, r + 5,
96
+ 2, 5, r + 5,
97
+ 3, r + 3, r + 4,
98
+ 3, r + 1, r + 2,
99
+ ]);
100
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
101
+
102
+ const cache = new EndpointCache({
103
+ size: 50,
104
+ params: ["Endpoint", "Region", "UseFIPS"],
105
+ });
106
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
107
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
108
+ endpointParams: endpointParams,
109
+ logger: context.logger,
110
+ }));
111
+ };
112
+ customEndpointFunctions.aws = awsEndpointFunctions;
113
+
114
+ class ApplicationSignalsServiceException extends ServiceException {
115
+ constructor(options) {
116
+ super(options);
117
+ Object.setPrototypeOf(this, ApplicationSignalsServiceException.prototype);
118
+ }
119
+ }
120
+
121
+ class AccessDeniedException extends ApplicationSignalsServiceException {
122
+ name = "AccessDeniedException";
123
+ $fault = "client";
124
+ Message;
125
+ constructor(opts) {
126
+ super({
127
+ name: "AccessDeniedException",
128
+ $fault: "client",
129
+ ...opts,
130
+ });
131
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
132
+ this.Message = opts.Message;
133
+ }
134
+ }
135
+ class ThrottlingException extends ApplicationSignalsServiceException {
136
+ name = "ThrottlingException";
137
+ $fault = "client";
138
+ Message;
139
+ constructor(opts) {
140
+ super({
141
+ name: "ThrottlingException",
142
+ $fault: "client",
143
+ ...opts,
144
+ });
145
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
146
+ this.Message = opts.Message;
147
+ }
148
+ }
149
+ class ValidationException extends ApplicationSignalsServiceException {
150
+ name = "ValidationException";
151
+ $fault = "client";
152
+ constructor(opts) {
153
+ super({
154
+ name: "ValidationException",
155
+ $fault: "client",
156
+ ...opts,
157
+ });
158
+ Object.setPrototypeOf(this, ValidationException.prototype);
159
+ }
160
+ }
161
+ class ResourceNotFoundException extends ApplicationSignalsServiceException {
162
+ name = "ResourceNotFoundException";
163
+ $fault = "client";
164
+ ResourceType;
165
+ ResourceId;
166
+ Message;
167
+ constructor(opts) {
168
+ super({
169
+ name: "ResourceNotFoundException",
170
+ $fault: "client",
171
+ ...opts,
172
+ });
173
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
174
+ this.ResourceType = opts.ResourceType;
175
+ this.ResourceId = opts.ResourceId;
176
+ this.Message = opts.Message;
177
+ }
178
+ }
179
+ class ConflictException extends ApplicationSignalsServiceException {
180
+ name = "ConflictException";
181
+ $fault = "client";
182
+ Message;
183
+ constructor(opts) {
184
+ super({
185
+ name: "ConflictException",
186
+ $fault: "client",
187
+ ...opts,
188
+ });
189
+ Object.setPrototypeOf(this, ConflictException.prototype);
190
+ this.Message = opts.Message;
191
+ }
192
+ }
193
+ class ServiceQuotaExceededException extends ApplicationSignalsServiceException {
194
+ name = "ServiceQuotaExceededException";
195
+ $fault = "client";
196
+ Message;
197
+ constructor(opts) {
198
+ super({
199
+ name: "ServiceQuotaExceededException",
200
+ $fault: "client",
201
+ ...opts,
202
+ });
203
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
204
+ this.Message = opts.Message;
205
+ }
206
+ }
207
+
208
+ const _A = "Auditor";
209
+ const _AAI = "AwsAccountId";
210
+ const _ADE = "AccessDeniedException";
211
+ const _AEW = "AddExclusionWindows";
212
+ const _AF = "AttributeFilter";
213
+ const _AFN = "AttributeFilterName";
214
+ const _AFV = "AttributeFilterValues";
215
+ const _AFt = "AttributeFilters";
216
+ const _AFu = "AuditFinding";
217
+ const _AFud = "AuditFindings";
218
+ const _AG = "AttainmentGoal";
219
+ const _AI = "AccountId";
220
+ const _AIE = "AutoInvestigationEnabled";
221
+ const _AM = "AttributeMaps";
222
+ const _AR = "AuditorResults";
223
+ const _ARN = "ARN";
224
+ const _ARu = "AuditorResult";
225
+ const _AT = "AuditTarget";
226
+ const _ATE = "AuditTargetEntity";
227
+ const _ATu = "AuditTargets";
228
+ const _Ar = "Arn";
229
+ const _At = "Attainment";
230
+ const _Au = "Auditors";
231
+ const _BCM = "BadCountMetric";
232
+ const _BDBRA = "BatchDeleteByResourceArns";
233
+ const _BDDT = "BatchDeleteDeletionTarget";
234
+ const _BDE = "BatchDeleteError";
235
+ const _BDEL = "BatchDeleteErrorList";
236
+ const _BDIC = "BatchDeleteInstrumentationConfigurations";
237
+ const _BDICR = "BatchDeleteInstrumentationConfigurationsRequest";
238
+ const _BDICRa = "BatchDeleteInstrumentationConfigurationsResponse";
239
+ const _BDS = "BatchDeleteScope";
240
+ const _BDSD = "BatchDeleteSuccessfulDeletion";
241
+ const _BDSDL = "BatchDeleteSuccessfulDeletionList";
242
+ const _BGSLOBR = "BatchGetServiceLevelObjectiveBudgetReport";
243
+ const _BGSLOBRI = "BatchGetServiceLevelObjectiveBudgetReportInput";
244
+ const _BGSLOBRO = "BatchGetServiceLevelObjectiveBudgetReportOutput";
245
+ const _BRC = "BurnRateConfiguration";
246
+ const _BRCu = "BurnRateConfigurations";
247
+ const _BRR = "BudgetRequestsRemaining";
248
+ const _BS = "BudgetStatus";
249
+ const _BSR = "BudgetSecondsRemaining";
250
+ const _BUEW = "BatchUpdateExclusionWindows";
251
+ const _BUEWE = "BatchUpdateExclusionWindowsError";
252
+ const _BUEWEa = "BatchUpdateExclusionWindowsErrors";
253
+ const _BUEWI = "BatchUpdateExclusionWindowsInput";
254
+ const _BUEWO = "BatchUpdateExclusionWindowsOutput";
255
+ const _C = "Code";
256
+ const _CA = "CaptureArguments";
257
+ const _CAr = "CreatedAt";
258
+ const _CC = "CaptureConfiguration";
259
+ const _CCC = "CodeCaptureConfiguration";
260
+ const _CCo = "CodeCapture";
261
+ const _CE = "ConflictException";
262
+ const _CET = "ChangeEventType";
263
+ const _CEa = "CanaryEntity";
264
+ const _CEh = "ChangeEvent";
265
+ const _CEha = "ChangeEvents";
266
+ const _CI = "CalendarInterval";
267
+ const _CIC = "CreateInstrumentationConfiguration";
268
+ const _CICR = "CreateInstrumentationConfigurationRequest";
269
+ const _CICRr = "CreateInstrumentationConfigurationResponse";
270
+ const _CL = "CaptureLimits";
271
+ const _CLC = "CaptureLimitsConfig";
272
+ const _CLa = "CaptureLocals";
273
+ const _CLo = "CodeLocation";
274
+ const _CN = "CanaryName";
275
+ const _CNl = "ClassName";
276
+ const _CO = "ComparisonOperator";
277
+ const _CR = "CaptureReturn";
278
+ const _CRS = "CreateRecommendedSlo";
279
+ const _CSC = "CompositeSliConfig";
280
+ const _CSCo = "CompositeSliComponents";
281
+ const _CSCom = "CompositeSliComponent";
282
+ const _CSLO = "CreateServiceLevelObjective";
283
+ const _CSLOI = "CreateServiceLevelObjectiveInput";
284
+ const _CSLOO = "CreateServiceLevelObjectiveOutput";
285
+ const _CST = "CaptureStackTrace";
286
+ const _CT = "ConnectionType";
287
+ const _CTr = "CreatedTime";
288
+ const _CU = "CodeUnit";
289
+ const _Ca = "Canary";
290
+ const _Ch = "Changed";
291
+ const _Co = "Components";
292
+ const _Con = "Configuration";
293
+ const _Conf = "Configurations";
294
+ const _D = "Description";
295
+ const _DC = "DeletedCount";
296
+ const _DCe = "DependencyConfig";
297
+ const _DG = "DependencyGraph";
298
+ const _DGC = "DeleteGroupingConfiguration";
299
+ const _DGCO = "DeleteGroupingConfigurationOutput";
300
+ const _DGV = "DefaultGroupingValue";
301
+ const _DIAF = "DynamicInstrumentationAttributeFilters";
302
+ const _DIC = "DeleteInstrumentationConfiguration";
303
+ const _DICR = "DeleteInstrumentationConfigurationRequest";
304
+ const _DICRe = "DeleteInstrumentationConfigurationResponse";
305
+ const _DKA = "DependencyKeyAttributes";
306
+ const _DKAe = "DependentKeyAttributes";
307
+ const _DL = "DetailLevel";
308
+ const _DNI = "DestinationNodeId";
309
+ const _DON = "DependencyOperationName";
310
+ const _DONe = "DependentOperationName";
311
+ const _DS = "DeletionStatus";
312
+ const _DSLO = "DeleteServiceLevelObjective";
313
+ const _DSLOI = "DeleteServiceLevelObjectiveInput";
314
+ const _DSLOO = "DeleteServiceLevelObjectiveOutput";
315
+ const _DT = "DeletionTarget";
316
+ const _DU = "DurationUnit";
317
+ const _Da = "Data";
318
+ const _Di = "Dimension";
319
+ const _Dim = "Dimensions";
320
+ const _Du = "Duration";
321
+ const _E = "Errors";
322
+ const _EA = "ExpiresAt";
323
+ const _EC = "ErrorCode";
324
+ const _ECr = "ErrorCause";
325
+ const _EI = "EventId";
326
+ const _EM = "ErrorMessage";
327
+ const _EN = "EventName";
328
+ const _ET = "EndTime";
329
+ const _ETv = "EvaluationType";
330
+ const _EW = "ExclusionWindow";
331
+ const _EWx = "ExclusionWindows";
332
+ const _Ed = "Edges";
333
+ const _Edg = "Edge";
334
+ const _En = "Environment";
335
+ const _Ent = "Entity";
336
+ const _Ev = "Events";
337
+ const _Ex = "Expression";
338
+ const _FP = "FilePath";
339
+ const _FR = "FailedReason";
340
+ const _G = "Goal";
341
+ const _GAD = "GroupingAttributeDefinition";
342
+ const _GADr = "GroupingAttributeDefinitions";
343
+ const _GC = "GroupingConfiguration";
344
+ const _GCM = "GoodCountMetric";
345
+ const _GI = "GroupIdentifier";
346
+ const _GIC = "GetInstrumentationConfiguration";
347
+ const _GICR = "GetInstrumentationConfigurationRequest";
348
+ const _GICRe = "GetInstrumentationConfigurationResponse";
349
+ const _GICS = "GetInstrumentationConfigurationStatus";
350
+ const _GICSR = "GetInstrumentationConfigurationStatusRequest";
351
+ const _GICSRe = "GetInstrumentationConfigurationStatusResponse";
352
+ const _GN = "GroupingName";
353
+ const _GNr = "GroupName";
354
+ const _GS = "GroupSource";
355
+ const _GSI = "GetServiceInput";
356
+ const _GSK = "GroupingSourceKeys";
357
+ const _GSLO = "GetServiceLevelObjective";
358
+ const _GSLOI = "GetServiceLevelObjectiveInput";
359
+ const _GSLOO = "GetServiceLevelObjectiveOutput";
360
+ const _GSO = "GetServiceOutput";
361
+ const _GSe = "GetService";
362
+ const _GV = "GroupValue";
363
+ const _I = "Id";
364
+ const _IC = "InstrumentationConfiguration";
365
+ const _ICP = "InstrumentationConfigurationsPage";
366
+ const _ICSL = "InstrumentationConfigurationStatusList";
367
+ const _ICSR = "InstrumentationConfigurationStatusReport";
368
+ const _ICWSE = "InstrumentationConfigurationWithoutServiceEnv";
369
+ const _ICWSEn = "InstrumentationConfigurationsWithoutServiceEnv";
370
+ const _ILA = "IncludeLinkedAccounts";
371
+ const _ISE = "InstrumentationStatusEvent";
372
+ const _ISEL = "InstrumentationStatusEventList";
373
+ const _IT = "InstrumentationType";
374
+ const _In = "Interval";
375
+ const _K = "Key";
376
+ const _KA = "KeyAttributes";
377
+ const _L = "Language";
378
+ const _LAF = "ListAuditFindings";
379
+ const _LAFI = "ListAuditFindingsInput";
380
+ const _LAFO = "ListAuditFindingsOutput";
381
+ const _LBWM = "LookBackWindowMinutes";
382
+ const _LC = "LatestConfigurations";
383
+ const _LCE = "LatestChangeEvents";
384
+ const _LEE = "ListEntityEvents";
385
+ const _LEEI = "ListEntityEventsInput";
386
+ const _LEEO = "ListEntityEventsOutput";
387
+ const _LGAD = "ListGroupingAttributeDefinitions";
388
+ const _LGADI = "ListGroupingAttributeDefinitionsInput";
389
+ const _LGADO = "ListGroupingAttributeDefinitionsOutput";
390
+ const _LGR = "LogGroupReferences";
391
+ const _LH = "LocationHash";
392
+ const _LI = "LocationIdentifier";
393
+ const _LIC = "ListInstrumentationConfigurations";
394
+ const _LICR = "ListInstrumentationConfigurationsRequest";
395
+ const _LN = "LineNumber";
396
+ const _LS = "ListServices";
397
+ const _LSD = "ListServiceDependencies";
398
+ const _LSDI = "ListServiceDependenciesInput";
399
+ const _LSDIi = "ListServiceDependentsInput";
400
+ const _LSDO = "ListServiceDependenciesOutput";
401
+ const _LSDOi = "ListServiceDependentsOutput";
402
+ const _LSDi = "ListServiceDependents";
403
+ const _LSI = "ListServicesInput";
404
+ const _LSLO = "ListServiceLevelObjectives";
405
+ const _LSLOEW = "ListServiceLevelObjectiveExclusionWindows";
406
+ const _LSLOEWI = "ListServiceLevelObjectiveExclusionWindowsInput";
407
+ const _LSLOEWO = "ListServiceLevelObjectiveExclusionWindowsOutput";
408
+ const _LSLOI = "ListServiceLevelObjectivesInput";
409
+ const _LSLOO = "ListServiceLevelObjectivesOutput";
410
+ const _LSO = "ListServicesOutput";
411
+ const _LSOI = "ListServiceOperationsInput";
412
+ const _LSOO = "ListServiceOperationsOutput";
413
+ const _LSOi = "ListServiceOperations";
414
+ const _LSS = "ListServiceStates";
415
+ const _LSSI = "ListServiceStatesInput";
416
+ const _LSSO = "ListServiceStatesOutput";
417
+ const _LTFR = "ListTagsForResource";
418
+ const _LTFRR = "ListTagsForResourceRequest";
419
+ const _LTFRRi = "ListTagsForResourceResponse";
420
+ const _LUT = "LastUpdatedTime";
421
+ const _La = "Label";
422
+ const _Lo = "Location";
423
+ const _M = "Message";
424
+ const _MCD = "MaxCollectionDepth";
425
+ const _MCW = "MaxCollectionWidth";
426
+ const _MDQ = "MetricDataQuery";
427
+ const _MDQe = "MetricDataQueries";
428
+ const _MFPO = "MaxFieldsPerObject";
429
+ const _MG = "MetricGraph";
430
+ const _MH = "MaxHits";
431
+ const _MN = "MethodName";
432
+ const _MNe = "MetricName";
433
+ const _MOD = "MaxObjectDepth";
434
+ const _MR = "MaxResults";
435
+ const _MRCM = "MonitoredRequestCountMetric";
436
+ const _MRCMDQ = "MonitoredRequestCountMetricDataQueries";
437
+ const _MRe = "MetricReference";
438
+ const _MRet = "MetricReferences";
439
+ const _MS = "MetricSource";
440
+ const _MSA = "MetricSourceAttributes";
441
+ const _MSF = "MaxStackFrames";
442
+ const _MSKA = "MetricSourceKeyAttributes";
443
+ const _MSL = "MaxStringLength";
444
+ const _MST = "MetricSourceTypes";
445
+ const _MSTS = "MaxStackTraceSize";
446
+ const _MSTe = "MetricSourceType";
447
+ const _MSe = "MetricStat";
448
+ const _MT = "MetricType";
449
+ const _MTe = "MetricThreshold";
450
+ const _Me = "Metric";
451
+ const _N = "Name";
452
+ const _NI = "NodeId";
453
+ const _NT = "NextToken";
454
+ const _Na = "Namespace";
455
+ const _No = "Nodes";
456
+ const _Nod = "Node";
457
+ const _O = "Operation";
458
+ const _ON = "OperationName";
459
+ const _P = "Period";
460
+ const _PGC = "PutGroupingConfiguration";
461
+ const _PGCI = "PutGroupingConfigurationInput";
462
+ const _PGCO = "PutGroupingConfigurationOutput";
463
+ const _PS = "PeriodSeconds";
464
+ const _Pa = "Pattern";
465
+ const _R = "Reports";
466
+ const _RA = "ResourceArns";
467
+ const _RAe = "ResourceArn";
468
+ const _RBS = "RequestBasedSli";
469
+ const _RBSC = "RequestBasedSliConfig";
470
+ const _RBSLI = "RequestBasedServiceLevelIndicator";
471
+ const _RBSLIC = "RequestBasedServiceLevelIndicatorConfig";
472
+ const _RBSLIM = "RequestBasedServiceLevelIndicatorMetric";
473
+ const _RBSLIMC = "RequestBasedServiceLevelIndicatorMetricConfig";
474
+ const _RBSM = "RequestBasedSliMetric";
475
+ const _RBSMC = "RequestBasedSliMetricConfig";
476
+ const _RD = "ReturnData";
477
+ const _REW = "RemoveExclusionWindows";
478
+ const _RI = "ResourceId";
479
+ const _RICS = "ReportInstrumentationConfigurationStatus";
480
+ const _RICSR = "ReportInstrumentationConfigurationStatusRequest";
481
+ const _RICSRe = "ReportInstrumentationConfigurationStatusResponse";
482
+ const _RIo = "RollingInterval";
483
+ const _RNFE = "ResourceNotFoundException";
484
+ const _RR = "RecurrenceRule";
485
+ const _RT = "ResourceType";
486
+ const _Re = "Region";
487
+ const _Rea = "Reason";
488
+ const _S = "Severity";
489
+ const _SA = "SyncedAt";
490
+ const _SAl = "SloArn";
491
+ const _SC = "SelectionConfig";
492
+ const _SCl = "SliConfig";
493
+ const _SD = "SuccessfulDeletions";
494
+ const _SDI = "StartDiscoveryInput";
495
+ const _SDO = "StartDiscoveryOutput";
496
+ const _SDe = "ServiceDependencies";
497
+ const _SDer = "ServiceDependents";
498
+ const _SDerv = "ServiceDependency";
499
+ const _SDervi = "ServiceDependent";
500
+ const _SDt = "StartDiscovery";
501
+ const _SE = "ServiceEntity";
502
+ const _SG = "ServiceGroups";
503
+ const _SGe = "ServiceGroup";
504
+ const _SI = "SloIds";
505
+ const _SIl = "SloId";
506
+ const _SIy = "SyncInterval";
507
+ const _SLI = "ServiceLevelIndicator";
508
+ const _SLIC = "ServiceLevelIndicatorConfig";
509
+ const _SLIM = "ServiceLevelIndicatorMetric";
510
+ const _SLIMC = "ServiceLevelIndicatorMetricConfig";
511
+ const _SLO = "ServiceLevelObjective";
512
+ const _SLOBR = "ServiceLevelObjectiveBudgetReport";
513
+ const _SLOBRE = "ServiceLevelObjectiveBudgetReportError";
514
+ const _SLOBREe = "ServiceLevelObjectiveBudgetReportErrors";
515
+ const _SLOBRe = "ServiceLevelObjectiveBudgetReports";
516
+ const _SLOE = "ServiceLevelObjectiveEntity";
517
+ const _SLOS = "ServiceLevelObjectiveSummary";
518
+ const _SLOSe = "ServiceLevelObjectiveSummaries";
519
+ const _SM = "SliMetric";
520
+ const _SMC = "SliMetricConfig";
521
+ const _SN = "SloName";
522
+ const _SNI = "SourceNodeId";
523
+ const _SO = "ServiceOperations";
524
+ const _SOAAI = "SloOwnerAwsAccountId";
525
+ const _SOE = "ServiceOperationEntity";
526
+ const _SOe = "ServiceOperation";
527
+ const _SQEE = "ServiceQuotaExceededException";
528
+ const _SS = "SloSummaries";
529
+ const _SSe = "ServiceSummaries";
530
+ const _SSer = "ServiceStates";
531
+ const _SServ = "ServiceState";
532
+ const _SServi = "ServiceSummary";
533
+ const _ST = "SignalType";
534
+ const _STt = "StartTime";
535
+ const _Sc = "Scope";
536
+ const _Se = "Service";
537
+ const _Sl = "Slo";
538
+ const _Sli = "Sli";
539
+ const _St = "Status";
540
+ const _Sta = "Stat";
541
+ const _Stat = "Statistic";
542
+ const _T = "Type";
543
+ const _TBR = "TotalBudgetRequests";
544
+ const _TBS = "TotalBudgetSeconds";
545
+ const _TE = "ThrottlingException";
546
+ const _TK = "TagKeys";
547
+ const _TL = "TagList";
548
+ const _TR = "TagResource";
549
+ const _TRCM = "TotalRequestCountMetric";
550
+ const _TRR = "TagResourceRequest";
551
+ const _TRRa = "TagResourceResponse";
552
+ const _Ta = "Tags";
553
+ const _Tag = "Tag";
554
+ const _Ti = "Timestamp";
555
+ const _Tim = "Time";
556
+ const _U = "Unit";
557
+ const _UA = "UpdatedAt";
558
+ const _UN = "UserName";
559
+ const _UR = "UntagResource";
560
+ const _URR = "UntagResourceRequest";
561
+ const _URRn = "UntagResourceResponse";
562
+ const _USE = "UnprocessedStatusEvents";
563
+ const _USEL = "UnprocessedStatusEventList";
564
+ const _USEn = "UnprocessedStatusEvent";
565
+ const _USLO = "UpdateServiceLevelObjective";
566
+ const _USLOI = "UpdateServiceLevelObjectiveInput";
567
+ const _USLOO = "UpdateServiceLevelObjectiveOutput";
568
+ const _V = "Value";
569
+ const _VE = "ValidationException";
570
+ const _W = "Window";
571
+ const _WT = "WarningThreshold";
572
+ const _aQE = "awsQueryError";
573
+ const _c = "client";
574
+ const _e = "error";
575
+ const _h = "http";
576
+ const _hE = "httpError";
577
+ const _hQ = "httpQuery";
578
+ const _m = "message";
579
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.applicationsignals";
580
+ const n0 = "com.amazonaws.applicationsignals";
581
+ const _s_registry = TypeRegistry.for(_s);
582
+ var ApplicationSignalsServiceException$ = [-3, _s, "ApplicationSignalsServiceException", 0, [], []];
583
+ _s_registry.registerError(ApplicationSignalsServiceException$, ApplicationSignalsServiceException);
584
+ const n0_registry = TypeRegistry.for(n0);
585
+ var AccessDeniedException$ = [-3, n0, _ADE,
586
+ { [_aQE]: [`AccessDenied`, 403], [_e]: _c, [_hE]: 403 },
587
+ [_M],
588
+ [0]
589
+ ];
590
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
591
+ var ConflictException$ = [-3, n0, _CE,
592
+ { [_e]: _c, [_hE]: 409 },
593
+ [_M],
594
+ [0], 1
595
+ ];
596
+ n0_registry.registerError(ConflictException$, ConflictException);
597
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
598
+ { [_e]: _c, [_hE]: 404 },
599
+ [_RT, _RI, _M],
600
+ [0, 0, 0], 3
601
+ ];
602
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
603
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
604
+ { [_e]: _c, [_hE]: 402 },
605
+ [_M],
606
+ [0], 1
607
+ ];
608
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
609
+ var ThrottlingException$ = [-3, n0, _TE,
610
+ { [_e]: _c, [_hE]: 429 },
611
+ [_M],
612
+ [0], 1
613
+ ];
614
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
615
+ var ValidationException$ = [-3, n0, _VE,
616
+ { [_aQE]: [`ValidationError`, 400], [_e]: _c, [_hE]: 400 },
617
+ [_m],
618
+ [0]
619
+ ];
620
+ n0_registry.registerError(ValidationException$, ValidationException);
621
+ const errorTypeRegistries = [
622
+ _s_registry,
623
+ n0_registry,
624
+ ];
625
+ var AttributeFilter$ = [3, n0, _AF,
626
+ 0,
627
+ [_AFN, _AFV],
628
+ [0, 64 | 0], 2
629
+ ];
630
+ var AuditFinding$ = [3, n0, _AFu,
631
+ 0,
632
+ [_KA, _AR, _O, _MG, _DG, _T],
633
+ [128 | 0, () => AuditorResults, 0, () => MetricGraph$, () => DependencyGraph$, 0], 1
634
+ ];
635
+ var AuditorResult$ = [3, n0, _ARu,
636
+ 0,
637
+ [_A, _D, _Da, _S],
638
+ [0, 0, 128 | 0, 0]
639
+ ];
640
+ var AuditTarget$ = [3, n0, _AT,
641
+ 0,
642
+ [_T, _Da],
643
+ [0, () => AuditTargetEntity$], 2
644
+ ];
645
+ var BatchDeleteByResourceArns$ = [3, n0, _BDBRA,
646
+ 0,
647
+ [_RA, _IT],
648
+ [64 | 0, 0], 2
649
+ ];
650
+ var BatchDeleteError$ = [3, n0, _BDE,
651
+ 0,
652
+ [_RAe, _C, _M],
653
+ [0, 0, 0], 3
654
+ ];
655
+ var BatchDeleteInstrumentationConfigurationsRequest$ = [3, n0, _BDICR,
656
+ 0,
657
+ [_DT],
658
+ [() => BatchDeleteDeletionTarget$], 1
659
+ ];
660
+ var BatchDeleteInstrumentationConfigurationsResponse$ = [3, n0, _BDICRa,
661
+ 0,
662
+ [_DC, _SD, _E],
663
+ [1, () => BatchDeleteSuccessfulDeletionList, () => BatchDeleteErrorList], 3
664
+ ];
665
+ var BatchDeleteScope$ = [3, n0, _BDS,
666
+ 0,
667
+ [_Se, _En, _IT],
668
+ [0, 0, 0], 3
669
+ ];
670
+ var BatchDeleteSuccessfulDeletion$ = [3, n0, _BDSD,
671
+ 0,
672
+ [_RAe, _ST, _LH],
673
+ [0, 0, 0]
674
+ ];
675
+ var BatchGetServiceLevelObjectiveBudgetReportInput$ = [3, n0, _BGSLOBRI,
676
+ 0,
677
+ [_Ti, _SI],
678
+ [4, 64 | 0], 2
679
+ ];
680
+ var BatchGetServiceLevelObjectiveBudgetReportOutput$ = [3, n0, _BGSLOBRO,
681
+ 0,
682
+ [_Ti, _R, _E],
683
+ [4, () => ServiceLevelObjectiveBudgetReports, () => ServiceLevelObjectiveBudgetReportErrors], 3
684
+ ];
685
+ var BatchUpdateExclusionWindowsError$ = [3, n0, _BUEWE,
686
+ 0,
687
+ [_SIl, _EC, _EM],
688
+ [0, 0, 0], 3
689
+ ];
690
+ var BatchUpdateExclusionWindowsInput$ = [3, n0, _BUEWI,
691
+ 0,
692
+ [_SI, _AEW, _REW],
693
+ [64 | 0, () => ExclusionWindows, () => ExclusionWindows], 1
694
+ ];
695
+ var BatchUpdateExclusionWindowsOutput$ = [3, n0, _BUEWO,
696
+ 0,
697
+ [_SI, _E],
698
+ [64 | 0, () => BatchUpdateExclusionWindowsErrors], 2
699
+ ];
700
+ var BurnRateConfiguration$ = [3, n0, _BRC,
701
+ 0,
702
+ [_LBWM],
703
+ [1], 1
704
+ ];
705
+ var CalendarInterval$ = [3, n0, _CI,
706
+ 0,
707
+ [_STt, _DU, _Du],
708
+ [4, 0, 1], 3
709
+ ];
710
+ var CanaryEntity$ = [3, n0, _CEa,
711
+ 0,
712
+ [_CN],
713
+ [0], 1
714
+ ];
715
+ var CaptureLimitsConfig$ = [3, n0, _CLC,
716
+ 0,
717
+ [_MH, _MSL, _MCW, _MCD, _MSF, _MSTS, _MOD, _MFPO],
718
+ [1, 1, 1, 1, 1, 1, 1, 1]
719
+ ];
720
+ var ChangeEvent$ = [3, n0, _CEh,
721
+ 0,
722
+ [_Ti, _AI, _Re, _Ent, _CET, _EI, _UN, _EN],
723
+ [4, 0, 0, 128 | 0, 0, 0, 0, 0], 6
724
+ ];
725
+ var CodeCaptureConfiguration$ = [3, n0, _CCC,
726
+ 0,
727
+ [_CL, _CA, _CR, _CST, _CLa],
728
+ [() => CaptureLimitsConfig$, 64 | 0, 2, 2, 64 | 0], 1
729
+ ];
730
+ var CodeLocation$ = [3, n0, _CLo,
731
+ 0,
732
+ [_L, _FP, _CU, _CNl, _MN, _LN],
733
+ [0, 0, 0, 0, 0, 1], 2
734
+ ];
735
+ var CompositeSliConfig$ = [3, n0, _CSC,
736
+ 0,
737
+ [_SC, _Co],
738
+ [() => SelectionConfig$, () => CompositeSliComponents], 1
739
+ ];
740
+ var CreateInstrumentationConfigurationRequest$ = [3, n0, _CICR,
741
+ 0,
742
+ [_IT, _Se, _En, _ST, _Lo, _CC, _D, _EA, _AFt, _Ta],
743
+ [0, 0, 0, 0, () => Location$, () => CaptureConfiguration$, 0, 4, [1, n0, _DIAF, 0, 128 | 0], () => TagList], 6
744
+ ];
745
+ var CreateInstrumentationConfigurationResponse$ = [3, n0, _CICRr,
746
+ 0,
747
+ [_IT, _Se, _En, _ST, _Lo, _LH, _CC, _CAr, _ARN, _D, _EA, _AFt],
748
+ [0, 0, 0, 0, () => Location$, 0, () => CaptureConfiguration$, 4, 0, 0, 4, [1, n0, _DIAF, 0, 128 | 0]], 9
749
+ ];
750
+ var CreateServiceLevelObjectiveInput$ = [3, n0, _CSLOI,
751
+ 0,
752
+ [_N, _D, _SCl, _RBSC, _G, _Ta, _BRCu, _CRS, _AIE],
753
+ [0, 0, () => ServiceLevelIndicatorConfig$, () => RequestBasedServiceLevelIndicatorConfig$, () => Goal$, () => TagList, () => BurnRateConfigurations, 2, 2], 1
754
+ ];
755
+ var CreateServiceLevelObjectiveOutput$ = [3, n0, _CSLOO,
756
+ 0,
757
+ [_Sl],
758
+ [() => ServiceLevelObjective$], 1
759
+ ];
760
+ var DeleteGroupingConfigurationOutput$ = [3, n0, _DGCO,
761
+ 0,
762
+ [],
763
+ []
764
+ ];
765
+ var DeleteInstrumentationConfigurationRequest$ = [3, n0, _DICR,
766
+ 0,
767
+ [_IT, _Se, _En, _ST, _LI],
768
+ [0, 0, 0, 0, () => LocationIdentifier$], 5
769
+ ];
770
+ var DeleteInstrumentationConfigurationResponse$ = [3, n0, _DICRe,
771
+ 0,
772
+ [_DS],
773
+ [0], 1
774
+ ];
775
+ var DeleteServiceLevelObjectiveInput$ = [3, n0, _DSLOI,
776
+ 0,
777
+ [_I],
778
+ [[0, 1]], 1
779
+ ];
780
+ var DeleteServiceLevelObjectiveOutput$ = [3, n0, _DSLOO,
781
+ 0,
782
+ [],
783
+ []
784
+ ];
785
+ var DependencyConfig$ = [3, n0, _DCe,
786
+ 0,
787
+ [_DKA, _DON],
788
+ [128 | 0, 0], 2
789
+ ];
790
+ var DependencyGraph$ = [3, n0, _DG,
791
+ 0,
792
+ [_No, _Ed],
793
+ [() => Nodes, () => Edges]
794
+ ];
795
+ var Dimension$ = [3, n0, _Di,
796
+ 0,
797
+ [_N, _V],
798
+ [0, 0], 2
799
+ ];
800
+ var Edge$ = [3, n0, _Edg,
801
+ 0,
802
+ [_SNI, _DNI, _Du, _CT],
803
+ [0, 0, 1, 0]
804
+ ];
805
+ var ExclusionWindow$ = [3, n0, _EW,
806
+ 0,
807
+ [_W, _STt, _RR, _Rea],
808
+ [() => Window$, 4, () => RecurrenceRule$, 0], 1
809
+ ];
810
+ var GetInstrumentationConfigurationRequest$ = [3, n0, _GICR,
811
+ 0,
812
+ [_IT, _Se, _En, _ST, _LI],
813
+ [0, 0, 0, 0, () => LocationIdentifier$], 5
814
+ ];
815
+ var GetInstrumentationConfigurationResponse$ = [3, n0, _GICRe,
816
+ 0,
817
+ [_Con],
818
+ [() => InstrumentationConfiguration$], 1
819
+ ];
820
+ var GetInstrumentationConfigurationStatusRequest$ = [3, n0, _GICSR,
821
+ 0,
822
+ [_IT, _Se, _En, _ST, _LI, _St, _STt, _ET, _MR, _NT],
823
+ [0, 0, 0, 0, () => LocationIdentifier$, 0, 4, 4, 1, 0], 5
824
+ ];
825
+ var GetInstrumentationConfigurationStatusResponse$ = [3, n0, _GICSRe,
826
+ 0,
827
+ [_Se, _En, _ST, _Lo, _St, _Ev, _NT],
828
+ [0, 0, 0, () => Location$, 0, () => InstrumentationStatusEventList, 0], 6
829
+ ];
830
+ var GetServiceInput$ = [3, n0, _GSI,
831
+ 0,
832
+ [_STt, _ET, _KA],
833
+ [[4, { [_hQ]: _STt }], [4, { [_hQ]: _ET }], 128 | 0], 3
834
+ ];
835
+ var GetServiceLevelObjectiveInput$ = [3, n0, _GSLOI,
836
+ 0,
837
+ [_I],
838
+ [[0, 1]], 1
839
+ ];
840
+ var GetServiceLevelObjectiveOutput$ = [3, n0, _GSLOO,
841
+ 0,
842
+ [_Sl],
843
+ [() => ServiceLevelObjective$], 1
844
+ ];
845
+ var GetServiceOutput$ = [3, n0, _GSO,
846
+ 0,
847
+ [_Se, _STt, _ET, _LGR],
848
+ [() => Service$, 4, 4, [1, n0, _LGR, 0, 128 | 0]], 3
849
+ ];
850
+ var Goal$ = [3, n0, _G,
851
+ 0,
852
+ [_In, _AG, _WT],
853
+ [() => Interval$, 1, 1]
854
+ ];
855
+ var GroupingAttributeDefinition$ = [3, n0, _GAD,
856
+ 0,
857
+ [_GN, _GSK, _DGV],
858
+ [0, 64 | 0, 0], 1
859
+ ];
860
+ var GroupingConfiguration$ = [3, n0, _GC,
861
+ 0,
862
+ [_GADr, _UA],
863
+ [() => GroupingAttributeDefinitions, 4], 2
864
+ ];
865
+ var InstrumentationConfiguration$ = [3, n0, _IC,
866
+ 0,
867
+ [_IT, _Se, _En, _ST, _Lo, _LH, _CC, _CAr, _ARN, _D, _EA, _AFt],
868
+ [0, 0, 0, 0, () => Location$, 0, () => CaptureConfiguration$, 4, 0, 0, 4, [1, n0, _DIAF, 0, 128 | 0]], 9
869
+ ];
870
+ var InstrumentationConfigurationsPage$ = [3, n0, _ICP,
871
+ 0,
872
+ [_Se, _En, _Ch, _SA, _SIy, _LC, _NT],
873
+ [0, 0, 2, 4, 1, () => InstrumentationConfigurationsWithoutServiceEnv, 0], 5
874
+ ];
875
+ var InstrumentationConfigurationStatusReport$ = [3, n0, _ICSR,
876
+ 0,
877
+ [_IT, _ST, _LH, _St, _Tim, _ECr],
878
+ [0, 0, 0, 0, 4, 0], 5
879
+ ];
880
+ var InstrumentationConfigurationWithoutServiceEnv$ = [3, n0, _ICWSE,
881
+ 0,
882
+ [_IT, _ST, _Lo, _LH, _CC, _CAr, _ARN, _D, _EA, _AFt],
883
+ [0, 0, () => Location$, 0, () => CaptureConfiguration$, 4, 0, 0, 4, [1, n0, _DIAF, 0, 128 | 0]], 7
884
+ ];
885
+ var InstrumentationStatusEvent$ = [3, n0, _ISE,
886
+ 0,
887
+ [_Tim, _ECr],
888
+ [4, 0], 1
889
+ ];
890
+ var ListAuditFindingsInput$ = [3, n0, _LAFI,
891
+ 0,
892
+ [_STt, _ET, _ATu, _Au, _DL, _NT, _MR],
893
+ [[4, { [_hQ]: _STt }], [4, { [_hQ]: _ET }], () => AuditTargets, 64 | 0, 0, 0, 1], 3
894
+ ];
895
+ var ListAuditFindingsOutput$ = [3, n0, _LAFO,
896
+ 0,
897
+ [_AFud, _STt, _ET, _NT],
898
+ [() => AuditFindings, 4, 4, 0], 1
899
+ ];
900
+ var ListEntityEventsInput$ = [3, n0, _LEEI,
901
+ 0,
902
+ [_Ent, _STt, _ET, _MR, _NT],
903
+ [128 | 0, 4, 4, [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 3
904
+ ];
905
+ var ListEntityEventsOutput$ = [3, n0, _LEEO,
906
+ 0,
907
+ [_STt, _ET, _CEha, _NT],
908
+ [4, 4, () => ChangeEvents, 0], 3
909
+ ];
910
+ var ListGroupingAttributeDefinitionsInput$ = [3, n0, _LGADI,
911
+ 0,
912
+ [_NT, _AAI, _ILA],
913
+ [[0, { [_hQ]: _NT }], [0, { [_hQ]: _AAI }], [2, { [_hQ]: _ILA }]]
914
+ ];
915
+ var ListGroupingAttributeDefinitionsOutput$ = [3, n0, _LGADO,
916
+ 0,
917
+ [_GADr, _UA, _NT],
918
+ [() => GroupingAttributeDefinitions, 4, 0], 1
919
+ ];
920
+ var ListInstrumentationConfigurationsRequest$ = [3, n0, _LICR,
921
+ 0,
922
+ [_Se, _En, _IT, _SA, _MR, _NT],
923
+ [0, 0, 0, 4, 1, 0], 3
924
+ ];
925
+ var ListServiceDependenciesInput$ = [3, n0, _LSDI,
926
+ 0,
927
+ [_STt, _ET, _KA, _MR, _NT],
928
+ [[4, { [_hQ]: _STt }], [4, { [_hQ]: _ET }], 128 | 0, [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 3
929
+ ];
930
+ var ListServiceDependenciesOutput$ = [3, n0, _LSDO,
931
+ 0,
932
+ [_STt, _ET, _SDe, _NT],
933
+ [4, 4, () => ServiceDependencies, 0], 3
934
+ ];
935
+ var ListServiceDependentsInput$ = [3, n0, _LSDIi,
936
+ 0,
937
+ [_STt, _ET, _KA, _MR, _NT],
938
+ [[4, { [_hQ]: _STt }], [4, { [_hQ]: _ET }], 128 | 0, [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 3
939
+ ];
940
+ var ListServiceDependentsOutput$ = [3, n0, _LSDOi,
941
+ 0,
942
+ [_STt, _ET, _SDer, _NT],
943
+ [4, 4, () => ServiceDependents, 0], 3
944
+ ];
945
+ var ListServiceLevelObjectiveExclusionWindowsInput$ = [3, n0, _LSLOEWI,
946
+ 0,
947
+ [_I, _MR, _NT],
948
+ [[0, 1], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 1
949
+ ];
950
+ var ListServiceLevelObjectiveExclusionWindowsOutput$ = [3, n0, _LSLOEWO,
951
+ 0,
952
+ [_EWx, _NT],
953
+ [() => ExclusionWindows, 0], 1
954
+ ];
955
+ var ListServiceLevelObjectivesInput$ = [3, n0, _LSLOI,
956
+ 0,
957
+ [_KA, _ON, _DCe, _MR, _NT, _MST, _ILA, _SOAAI, _MS],
958
+ [128 | 0, [0, { [_hQ]: _ON }], () => DependencyConfig$, [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }], 64 | 0, [2, { [_hQ]: _ILA }], [0, { [_hQ]: _SOAAI }], () => MetricSource$]
959
+ ];
960
+ var ListServiceLevelObjectivesOutput$ = [3, n0, _LSLOO,
961
+ 0,
962
+ [_SS, _NT],
963
+ [() => ServiceLevelObjectiveSummaries, 0]
964
+ ];
965
+ var ListServiceOperationsInput$ = [3, n0, _LSOI,
966
+ 0,
967
+ [_STt, _ET, _KA, _MR, _NT],
968
+ [[4, { [_hQ]: _STt }], [4, { [_hQ]: _ET }], 128 | 0, [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }]], 3
969
+ ];
970
+ var ListServiceOperationsOutput$ = [3, n0, _LSOO,
971
+ 0,
972
+ [_STt, _ET, _SO, _NT],
973
+ [4, 4, () => ServiceOperations, 0], 3
974
+ ];
975
+ var ListServicesInput$ = [3, n0, _LSI,
976
+ 0,
977
+ [_STt, _ET, _MR, _NT, _ILA, _AAI],
978
+ [[4, { [_hQ]: _STt }], [4, { [_hQ]: _ET }], [1, { [_hQ]: _MR }], [0, { [_hQ]: _NT }], [2, { [_hQ]: _ILA }], [0, { [_hQ]: _AAI }]], 2
979
+ ];
980
+ var ListServicesOutput$ = [3, n0, _LSO,
981
+ 0,
982
+ [_STt, _ET, _SSe, _NT],
983
+ [4, 4, () => ServiceSummaries, 0], 3
984
+ ];
985
+ var ListServiceStatesInput$ = [3, n0, _LSSI,
986
+ 0,
987
+ [_STt, _ET, _MR, _NT, _ILA, _AAI, _AFt],
988
+ [4, 4, 1, 0, 2, 0, () => AttributeFilters], 2
989
+ ];
990
+ var ListServiceStatesOutput$ = [3, n0, _LSSO,
991
+ 0,
992
+ [_STt, _ET, _SSer, _NT],
993
+ [4, 4, () => ServiceStates, 0], 3
994
+ ];
995
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
996
+ 0,
997
+ [_RAe],
998
+ [[0, { [_hQ]: _RAe }]], 1
999
+ ];
1000
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
1001
+ 0,
1002
+ [_Ta],
1003
+ [() => TagList]
1004
+ ];
1005
+ var Metric$ = [3, n0, _Me,
1006
+ 0,
1007
+ [_Na, _MNe, _Dim],
1008
+ [0, 0, () => Dimensions]
1009
+ ];
1010
+ var MetricDataQuery$ = [3, n0, _MDQ,
1011
+ 0,
1012
+ [_I, _MSe, _Ex, _La, _RD, _P, _AI],
1013
+ [0, () => MetricStat$, 0, 0, 2, 1, 0], 1
1014
+ ];
1015
+ var MetricGraph$ = [3, n0, _MG,
1016
+ 0,
1017
+ [_MDQe, _STt, _ET],
1018
+ [() => MetricDataQueries, 4, 4]
1019
+ ];
1020
+ var MetricReference$ = [3, n0, _MRe,
1021
+ 0,
1022
+ [_Na, _MT, _MNe, _Dim, _AI],
1023
+ [0, 0, 0, () => Dimensions, 0], 3
1024
+ ];
1025
+ var MetricSource$ = [3, n0, _MS,
1026
+ 0,
1027
+ [_MSKA, _MSA],
1028
+ [128 | 0, 128 | 0], 1
1029
+ ];
1030
+ var MetricStat$ = [3, n0, _MSe,
1031
+ 0,
1032
+ [_Me, _P, _Sta, _U],
1033
+ [() => Metric$, 1, 0, 0], 3
1034
+ ];
1035
+ var Node$ = [3, n0, _Nod,
1036
+ 0,
1037
+ [_KA, _N, _NI, _O, _T, _Du, _St],
1038
+ [128 | 0, 0, 0, 0, 0, 1, 0], 3
1039
+ ];
1040
+ var PutGroupingConfigurationInput$ = [3, n0, _PGCI,
1041
+ 0,
1042
+ [_GADr],
1043
+ [() => GroupingAttributeDefinitions], 1
1044
+ ];
1045
+ var PutGroupingConfigurationOutput$ = [3, n0, _PGCO,
1046
+ 0,
1047
+ [_GC],
1048
+ [() => GroupingConfiguration$], 1
1049
+ ];
1050
+ var RecurrenceRule$ = [3, n0, _RR,
1051
+ 0,
1052
+ [_Ex],
1053
+ [0], 1
1054
+ ];
1055
+ var ReportInstrumentationConfigurationStatusRequest$ = [3, n0, _RICSR,
1056
+ 0,
1057
+ [_Se, _En, _Conf],
1058
+ [0, 0, () => InstrumentationConfigurationStatusList], 3
1059
+ ];
1060
+ var ReportInstrumentationConfigurationStatusResponse$ = [3, n0, _RICSRe,
1061
+ 0,
1062
+ [_Se, _En, _USE],
1063
+ [0, 0, () => UnprocessedStatusEventList], 3
1064
+ ];
1065
+ var RequestBasedServiceLevelIndicator$ = [3, n0, _RBSLI,
1066
+ 0,
1067
+ [_RBSM, _MTe, _CO],
1068
+ [() => RequestBasedServiceLevelIndicatorMetric$, 1, 0], 1
1069
+ ];
1070
+ var RequestBasedServiceLevelIndicatorConfig$ = [3, n0, _RBSLIC,
1071
+ 0,
1072
+ [_RBSMC, _MTe, _CO],
1073
+ [() => RequestBasedServiceLevelIndicatorMetricConfig$, 1, 0], 1
1074
+ ];
1075
+ var RequestBasedServiceLevelIndicatorMetric$ = [3, n0, _RBSLIM,
1076
+ 0,
1077
+ [_TRCM, _MRCM, _KA, _ON, _MT, _DCe, _MS, _CSC],
1078
+ [() => MetricDataQueries, () => MonitoredRequestCountMetricDataQueries$, 128 | 0, 0, 0, () => DependencyConfig$, () => MetricSource$, () => CompositeSliConfig$], 2
1079
+ ];
1080
+ var RequestBasedServiceLevelIndicatorMetricConfig$ = [3, n0, _RBSLIMC,
1081
+ 0,
1082
+ [_KA, _ON, _MT, _TRCM, _MRCM, _DCe, _MS, _MNe, _CSC],
1083
+ [128 | 0, 0, 0, () => MetricDataQueries, () => MonitoredRequestCountMetricDataQueries$, () => DependencyConfig$, () => MetricSource$, 0, () => CompositeSliConfig$]
1084
+ ];
1085
+ var RollingInterval$ = [3, n0, _RIo,
1086
+ 0,
1087
+ [_DU, _Du],
1088
+ [0, 1], 2
1089
+ ];
1090
+ var SelectionConfig$ = [3, n0, _SC,
1091
+ 0,
1092
+ [_T, _Pa],
1093
+ [0, 0], 1
1094
+ ];
1095
+ var Service$ = [3, n0, _Se,
1096
+ 0,
1097
+ [_KA, _MRet, _AM, _SG, _LGR],
1098
+ [128 | 0, () => MetricReferences, [1, n0, _AM, 0, 128 | 0], () => ServiceGroups, [1, n0, _LGR, 0, 128 | 0]], 2
1099
+ ];
1100
+ var ServiceDependency$ = [3, n0, _SDerv,
1101
+ 0,
1102
+ [_ON, _DKA, _DON, _MRet],
1103
+ [0, 128 | 0, 0, () => MetricReferences], 4
1104
+ ];
1105
+ var ServiceDependent$ = [3, n0, _SDervi,
1106
+ 0,
1107
+ [_DKAe, _MRet, _ON, _DONe],
1108
+ [128 | 0, () => MetricReferences, 0, 0], 2
1109
+ ];
1110
+ var ServiceEntity$ = [3, n0, _SE,
1111
+ 0,
1112
+ [_T, _N, _En, _AAI],
1113
+ [0, 0, 0, 0]
1114
+ ];
1115
+ var ServiceGroup$ = [3, n0, _SGe,
1116
+ 0,
1117
+ [_GNr, _GV, _GS, _GI],
1118
+ [0, 0, 0, 0], 4
1119
+ ];
1120
+ var ServiceLevelIndicator$ = [3, n0, _SLI,
1121
+ 0,
1122
+ [_SM, _MTe, _CO],
1123
+ [() => ServiceLevelIndicatorMetric$, 1, 0], 3
1124
+ ];
1125
+ var ServiceLevelIndicatorConfig$ = [3, n0, _SLIC,
1126
+ 0,
1127
+ [_SMC, _MTe, _CO],
1128
+ [() => ServiceLevelIndicatorMetricConfig$, 1, 0], 1
1129
+ ];
1130
+ var ServiceLevelIndicatorMetric$ = [3, n0, _SLIM,
1131
+ 0,
1132
+ [_MDQe, _KA, _ON, _MT, _DCe, _MS, _CSC],
1133
+ [() => MetricDataQueries, 128 | 0, 0, 0, () => DependencyConfig$, () => MetricSource$, () => CompositeSliConfig$], 1
1134
+ ];
1135
+ var ServiceLevelIndicatorMetricConfig$ = [3, n0, _SLIMC,
1136
+ 0,
1137
+ [_KA, _ON, _MT, _MNe, _Stat, _PS, _MS, _MDQe, _DCe, _CSC],
1138
+ [128 | 0, 0, 0, 0, 0, 1, () => MetricSource$, () => MetricDataQueries, () => DependencyConfig$, () => CompositeSliConfig$]
1139
+ ];
1140
+ var ServiceLevelObjective$ = [3, n0, _SLO,
1141
+ 0,
1142
+ [_Ar, _N, _CTr, _LUT, _G, _D, _Sli, _RBS, _ETv, _BRCu, _MSTe, _AIE],
1143
+ [0, 0, 4, 4, () => Goal$, 0, () => ServiceLevelIndicator$, () => RequestBasedServiceLevelIndicator$, 0, () => BurnRateConfigurations, 0, 2], 5
1144
+ ];
1145
+ var ServiceLevelObjectiveBudgetReport$ = [3, n0, _SLOBR,
1146
+ 0,
1147
+ [_Ar, _N, _BS, _ETv, _At, _TBS, _BSR, _TBR, _BRR, _Sli, _RBS, _G],
1148
+ [0, 0, 0, 0, 1, 1, 1, 1, 1, () => ServiceLevelIndicator$, () => RequestBasedServiceLevelIndicator$, () => Goal$], 3
1149
+ ];
1150
+ var ServiceLevelObjectiveBudgetReportError$ = [3, n0, _SLOBRE,
1151
+ 0,
1152
+ [_N, _Ar, _EC, _EM],
1153
+ [0, 0, 0, 0], 4
1154
+ ];
1155
+ var ServiceLevelObjectiveEntity$ = [3, n0, _SLOE,
1156
+ 0,
1157
+ [_SN, _SAl],
1158
+ [0, 0]
1159
+ ];
1160
+ var ServiceLevelObjectiveSummary$ = [3, n0, _SLOS,
1161
+ 0,
1162
+ [_Ar, _N, _KA, _ON, _DCe, _CTr, _ETv, _MSTe, _MS, _CSC],
1163
+ [0, 0, 128 | 0, 0, () => DependencyConfig$, 4, 0, 0, () => MetricSource$, () => CompositeSliConfig$], 2
1164
+ ];
1165
+ var ServiceOperation$ = [3, n0, _SOe,
1166
+ 0,
1167
+ [_N, _MRet],
1168
+ [0, () => MetricReferences], 2
1169
+ ];
1170
+ var ServiceOperationEntity$ = [3, n0, _SOE,
1171
+ 0,
1172
+ [_Se, _O, _MT],
1173
+ [() => ServiceEntity$, 0, 0]
1174
+ ];
1175
+ var ServiceState$ = [3, n0, _SServ,
1176
+ 0,
1177
+ [_Se, _LCE, _AFt],
1178
+ [128 | 0, () => LatestChangeEvents, () => AttributeFilters], 2
1179
+ ];
1180
+ var ServiceSummary$ = [3, n0, _SServi,
1181
+ 0,
1182
+ [_KA, _MRet, _AM, _SG],
1183
+ [128 | 0, () => MetricReferences, [1, n0, _AM, 0, 128 | 0], () => ServiceGroups], 2
1184
+ ];
1185
+ var StartDiscoveryInput$ = [3, n0, _SDI,
1186
+ 0,
1187
+ [],
1188
+ []
1189
+ ];
1190
+ var StartDiscoveryOutput$ = [3, n0, _SDO,
1191
+ 0,
1192
+ [],
1193
+ []
1194
+ ];
1195
+ var Tag$ = [3, n0, _Tag,
1196
+ 0,
1197
+ [_K, _V],
1198
+ [0, 0], 2
1199
+ ];
1200
+ var TagResourceRequest$ = [3, n0, _TRR,
1201
+ 0,
1202
+ [_RAe, _Ta],
1203
+ [0, () => TagList], 2
1204
+ ];
1205
+ var TagResourceResponse$ = [3, n0, _TRRa,
1206
+ 0,
1207
+ [],
1208
+ []
1209
+ ];
1210
+ var UnprocessedStatusEvent$ = [3, n0, _USEn,
1211
+ 0,
1212
+ [_IT, _ST, _LH, _St, _Tim, _FR],
1213
+ [0, 0, 0, 0, 4, 0], 6
1214
+ ];
1215
+ var UntagResourceRequest$ = [3, n0, _URR,
1216
+ 0,
1217
+ [_RAe, _TK],
1218
+ [0, 64 | 0], 2
1219
+ ];
1220
+ var UntagResourceResponse$ = [3, n0, _URRn,
1221
+ 0,
1222
+ [],
1223
+ []
1224
+ ];
1225
+ var UpdateServiceLevelObjectiveInput$ = [3, n0, _USLOI,
1226
+ 0,
1227
+ [_I, _D, _SCl, _RBSC, _G, _BRCu, _AIE],
1228
+ [[0, 1], 0, () => ServiceLevelIndicatorConfig$, () => RequestBasedServiceLevelIndicatorConfig$, () => Goal$, () => BurnRateConfigurations, 2], 1
1229
+ ];
1230
+ var UpdateServiceLevelObjectiveOutput$ = [3, n0, _USLOO,
1231
+ 0,
1232
+ [_Sl],
1233
+ [() => ServiceLevelObjective$], 1
1234
+ ];
1235
+ var Window$ = [3, n0, _W,
1236
+ 0,
1237
+ [_DU, _Du],
1238
+ [0, 1], 2
1239
+ ];
1240
+ var __Unit = "unit";
1241
+ var AttributeFilters = [1, n0, _AFt,
1242
+ 0, () => AttributeFilter$
1243
+ ];
1244
+ var AuditFindings = [1, n0, _AFud,
1245
+ 0, () => AuditFinding$
1246
+ ];
1247
+ var AuditorResults = [1, n0, _AR,
1248
+ 0, () => AuditorResult$
1249
+ ];
1250
+ var AuditTargets = [1, n0, _ATu,
1251
+ 0, () => AuditTarget$
1252
+ ];
1253
+ var BatchDeleteErrorList = [1, n0, _BDEL,
1254
+ 0, () => BatchDeleteError$
1255
+ ];
1256
+ var BatchDeleteSuccessfulDeletionList = [1, n0, _BDSDL,
1257
+ 0, () => BatchDeleteSuccessfulDeletion$
1258
+ ];
1259
+ var BatchUpdateExclusionWindowsErrors = [1, n0, _BUEWEa,
1260
+ 0, () => BatchUpdateExclusionWindowsError$
1261
+ ];
1262
+ var BurnRateConfigurations = [1, n0, _BRCu,
1263
+ 0, () => BurnRateConfiguration$
1264
+ ];
1265
+ var ChangeEvents = [1, n0, _CEha,
1266
+ 0, () => ChangeEvent$
1267
+ ];
1268
+ var CompositeSliComponents = [1, n0, _CSCo,
1269
+ 0, () => CompositeSliComponent$
1270
+ ];
1271
+ var Dimensions = [1, n0, _Dim,
1272
+ 0, () => Dimension$
1273
+ ];
1274
+ var Edges = [1, n0, _Ed,
1275
+ 0, () => Edge$
1276
+ ];
1277
+ var ExclusionWindows = [1, n0, _EWx,
1278
+ 0, () => ExclusionWindow$
1279
+ ];
1280
+ var GroupingAttributeDefinitions = [1, n0, _GADr,
1281
+ 0, () => GroupingAttributeDefinition$
1282
+ ];
1283
+ var InstrumentationConfigurationStatusList = [1, n0, _ICSL,
1284
+ 0, () => InstrumentationConfigurationStatusReport$
1285
+ ];
1286
+ var InstrumentationConfigurationsWithoutServiceEnv = [1, n0, _ICWSEn,
1287
+ 0, () => InstrumentationConfigurationWithoutServiceEnv$
1288
+ ];
1289
+ var InstrumentationStatusEventList = [1, n0, _ISEL,
1290
+ 0, () => InstrumentationStatusEvent$
1291
+ ];
1292
+ var LatestChangeEvents = [1, n0, _LCE,
1293
+ 0, () => ChangeEvent$
1294
+ ];
1295
+ var MetricDataQueries = [1, n0, _MDQe,
1296
+ 0, () => MetricDataQuery$
1297
+ ];
1298
+ var MetricReferences = [1, n0, _MRet,
1299
+ 0, () => MetricReference$
1300
+ ];
1301
+ var Nodes = [1, n0, _No,
1302
+ 0, () => Node$
1303
+ ];
1304
+ var ServiceDependencies = [1, n0, _SDe,
1305
+ 0, () => ServiceDependency$
1306
+ ];
1307
+ var ServiceDependents = [1, n0, _SDer,
1308
+ 0, () => ServiceDependent$
1309
+ ];
1310
+ var ServiceGroups = [1, n0, _SG,
1311
+ 0, () => ServiceGroup$
1312
+ ];
1313
+ var ServiceLevelObjectiveBudgetReportErrors = [1, n0, _SLOBREe,
1314
+ 0, () => ServiceLevelObjectiveBudgetReportError$
1315
+ ];
1316
+ var ServiceLevelObjectiveBudgetReports = [1, n0, _SLOBRe,
1317
+ 0, () => ServiceLevelObjectiveBudgetReport$
1318
+ ];
1319
+ var ServiceLevelObjectiveSummaries = [1, n0, _SLOSe,
1320
+ 0, () => ServiceLevelObjectiveSummary$
1321
+ ];
1322
+ var ServiceOperations = [1, n0, _SO,
1323
+ 0, () => ServiceOperation$
1324
+ ];
1325
+ var ServiceStates = [1, n0, _SSer,
1326
+ 0, () => ServiceState$
1327
+ ];
1328
+ var ServiceSummaries = [1, n0, _SSe,
1329
+ 0, () => ServiceSummary$
1330
+ ];
1331
+ var TagList = [1, n0, _TL,
1332
+ 0, () => Tag$
1333
+ ];
1334
+ var UnprocessedStatusEventList = [1, n0, _USEL,
1335
+ 0, () => UnprocessedStatusEvent$
1336
+ ];
1337
+ var AuditTargetEntity$ = [4, n0, _ATE,
1338
+ 0,
1339
+ [_Se, _Sl, _SOe, _Ca],
1340
+ [() => ServiceEntity$, () => ServiceLevelObjectiveEntity$, () => ServiceOperationEntity$, () => CanaryEntity$]
1341
+ ];
1342
+ var BatchDeleteDeletionTarget$ = [4, n0, _BDDT,
1343
+ 0,
1344
+ [_Sc, _RA],
1345
+ [() => BatchDeleteScope$, () => BatchDeleteByResourceArns$]
1346
+ ];
1347
+ var CaptureConfiguration$ = [4, n0, _CC,
1348
+ 0,
1349
+ [_CCo],
1350
+ [() => CodeCaptureConfiguration$]
1351
+ ];
1352
+ var CompositeSliComponent$ = [4, n0, _CSCom,
1353
+ 0,
1354
+ [_ON],
1355
+ [0]
1356
+ ];
1357
+ var Interval$ = [4, n0, _In,
1358
+ 0,
1359
+ [_RIo, _CI],
1360
+ [() => RollingInterval$, () => CalendarInterval$]
1361
+ ];
1362
+ var Location$ = [4, n0, _Lo,
1363
+ 0,
1364
+ [_CLo],
1365
+ [() => CodeLocation$]
1366
+ ];
1367
+ var LocationIdentifier$ = [4, n0, _LI,
1368
+ 0,
1369
+ [_CLo, _LH],
1370
+ [() => CodeLocation$, 0]
1371
+ ];
1372
+ var MonitoredRequestCountMetricDataQueries$ = [4, n0, _MRCMDQ,
1373
+ 0,
1374
+ [_GCM, _BCM],
1375
+ [() => MetricDataQueries, () => MetricDataQueries]
1376
+ ];
1377
+ var BatchDeleteInstrumentationConfigurations$ = [9, n0, _BDIC,
1378
+ { [_h]: ["POST", "/batch-delete-instrumentation-configurations", 200] }, () => BatchDeleteInstrumentationConfigurationsRequest$, () => BatchDeleteInstrumentationConfigurationsResponse$
1379
+ ];
1380
+ var BatchGetServiceLevelObjectiveBudgetReport$ = [9, n0, _BGSLOBR,
1381
+ { [_h]: ["POST", "/budget-report", 200] }, () => BatchGetServiceLevelObjectiveBudgetReportInput$, () => BatchGetServiceLevelObjectiveBudgetReportOutput$
1382
+ ];
1383
+ var BatchUpdateExclusionWindows$ = [9, n0, _BUEW,
1384
+ { [_h]: ["PATCH", "/exclusion-windows", 200] }, () => BatchUpdateExclusionWindowsInput$, () => BatchUpdateExclusionWindowsOutput$
1385
+ ];
1386
+ var CreateInstrumentationConfiguration$ = [9, n0, _CIC,
1387
+ { [_h]: ["POST", "/create-instrumentation-configuration", 200] }, () => CreateInstrumentationConfigurationRequest$, () => CreateInstrumentationConfigurationResponse$
1388
+ ];
1389
+ var CreateServiceLevelObjective$ = [9, n0, _CSLO,
1390
+ { [_h]: ["POST", "/slo", 200] }, () => CreateServiceLevelObjectiveInput$, () => CreateServiceLevelObjectiveOutput$
1391
+ ];
1392
+ var DeleteGroupingConfiguration$ = [9, n0, _DGC,
1393
+ { [_h]: ["DELETE", "/grouping-configuration", 200] }, () => __Unit, () => DeleteGroupingConfigurationOutput$
1394
+ ];
1395
+ var DeleteInstrumentationConfiguration$ = [9, n0, _DIC,
1396
+ { [_h]: ["POST", "/delete-instrumentation-configuration", 200] }, () => DeleteInstrumentationConfigurationRequest$, () => DeleteInstrumentationConfigurationResponse$
1397
+ ];
1398
+ var DeleteServiceLevelObjective$ = [9, n0, _DSLO,
1399
+ { [_h]: ["DELETE", "/slo/{Id}", 200] }, () => DeleteServiceLevelObjectiveInput$, () => DeleteServiceLevelObjectiveOutput$
1400
+ ];
1401
+ var GetInstrumentationConfiguration$ = [9, n0, _GIC,
1402
+ { [_h]: ["POST", "/get-instrumentation-configuration", 200] }, () => GetInstrumentationConfigurationRequest$, () => GetInstrumentationConfigurationResponse$
1403
+ ];
1404
+ var GetInstrumentationConfigurationStatus$ = [9, n0, _GICS,
1405
+ { [_h]: ["POST", "/get-instrumentation-configuration-status", 200] }, () => GetInstrumentationConfigurationStatusRequest$, () => GetInstrumentationConfigurationStatusResponse$
1406
+ ];
1407
+ var GetService$ = [9, n0, _GSe,
1408
+ { [_h]: ["POST", "/service", 200] }, () => GetServiceInput$, () => GetServiceOutput$
1409
+ ];
1410
+ var GetServiceLevelObjective$ = [9, n0, _GSLO,
1411
+ { [_h]: ["GET", "/slo/{Id}", 200] }, () => GetServiceLevelObjectiveInput$, () => GetServiceLevelObjectiveOutput$
1412
+ ];
1413
+ var ListAuditFindings$ = [9, n0, _LAF,
1414
+ { [_h]: ["POST", "/auditFindings", 200] }, () => ListAuditFindingsInput$, () => ListAuditFindingsOutput$
1415
+ ];
1416
+ var ListEntityEvents$ = [9, n0, _LEE,
1417
+ { [_h]: ["POST", "/events", 200] }, () => ListEntityEventsInput$, () => ListEntityEventsOutput$
1418
+ ];
1419
+ var ListGroupingAttributeDefinitions$ = [9, n0, _LGAD,
1420
+ { [_h]: ["POST", "/grouping-attribute-definitions", 200] }, () => ListGroupingAttributeDefinitionsInput$, () => ListGroupingAttributeDefinitionsOutput$
1421
+ ];
1422
+ var ListInstrumentationConfigurations$ = [9, n0, _LIC,
1423
+ { [_h]: ["POST", "/list-instrumentation-configurations", 200] }, () => ListInstrumentationConfigurationsRequest$, () => InstrumentationConfigurationsPage$
1424
+ ];
1425
+ var ListServiceDependencies$ = [9, n0, _LSD,
1426
+ { [_h]: ["POST", "/service-dependencies", 200] }, () => ListServiceDependenciesInput$, () => ListServiceDependenciesOutput$
1427
+ ];
1428
+ var ListServiceDependents$ = [9, n0, _LSDi,
1429
+ { [_h]: ["POST", "/service-dependents", 200] }, () => ListServiceDependentsInput$, () => ListServiceDependentsOutput$
1430
+ ];
1431
+ var ListServiceLevelObjectiveExclusionWindows$ = [9, n0, _LSLOEW,
1432
+ { [_h]: ["GET", "/slo/{Id}/exclusion-windows", 200] }, () => ListServiceLevelObjectiveExclusionWindowsInput$, () => ListServiceLevelObjectiveExclusionWindowsOutput$
1433
+ ];
1434
+ var ListServiceLevelObjectives$ = [9, n0, _LSLO,
1435
+ { [_h]: ["POST", "/slos", 200] }, () => ListServiceLevelObjectivesInput$, () => ListServiceLevelObjectivesOutput$
1436
+ ];
1437
+ var ListServiceOperations$ = [9, n0, _LSOi,
1438
+ { [_h]: ["POST", "/service-operations", 200] }, () => ListServiceOperationsInput$, () => ListServiceOperationsOutput$
1439
+ ];
1440
+ var ListServices$ = [9, n0, _LS,
1441
+ { [_h]: ["GET", "/services", 200] }, () => ListServicesInput$, () => ListServicesOutput$
1442
+ ];
1443
+ var ListServiceStates$ = [9, n0, _LSS,
1444
+ { [_h]: ["POST", "/service/states", 200] }, () => ListServiceStatesInput$, () => ListServiceStatesOutput$
1445
+ ];
1446
+ var ListTagsForResource$ = [9, n0, _LTFR,
1447
+ { [_h]: ["GET", "/tags", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1448
+ ];
1449
+ var PutGroupingConfiguration$ = [9, n0, _PGC,
1450
+ { [_h]: ["PUT", "/grouping-configuration", 200] }, () => PutGroupingConfigurationInput$, () => PutGroupingConfigurationOutput$
1451
+ ];
1452
+ var ReportInstrumentationConfigurationStatus$ = [9, n0, _RICS,
1453
+ { [_h]: ["POST", "/report-instrumentation-configuration-status", 200] }, () => ReportInstrumentationConfigurationStatusRequest$, () => ReportInstrumentationConfigurationStatusResponse$
1454
+ ];
1455
+ var StartDiscovery$ = [9, n0, _SDt,
1456
+ { [_h]: ["POST", "/start-discovery", 200] }, () => StartDiscoveryInput$, () => StartDiscoveryOutput$
1457
+ ];
1458
+ var TagResource$ = [9, n0, _TR,
1459
+ { [_h]: ["POST", "/tag-resource", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
1460
+ ];
1461
+ var UntagResource$ = [9, n0, _UR,
1462
+ { [_h]: ["POST", "/untag-resource", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
1463
+ ];
1464
+ var UpdateServiceLevelObjective$ = [9, n0, _USLO,
1465
+ { [_h]: ["PATCH", "/slo/{Id}", 200] }, () => UpdateServiceLevelObjectiveInput$, () => UpdateServiceLevelObjectiveOutput$
1466
+ ];
1467
+
1468
+ const getRuntimeConfig$1 = (config) => {
1469
+ return {
1470
+ apiVersion: "2024-04-15",
1471
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1472
+ base64Encoder: config?.base64Encoder ?? toBase64,
1473
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1474
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1475
+ extensions: config?.extensions ?? [],
1476
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultApplicationSignalsHttpAuthSchemeProvider,
1477
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1478
+ {
1479
+ schemeId: "aws.auth#sigv4",
1480
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1481
+ signer: new AwsSdkSigV4Signer(),
1482
+ },
1483
+ ],
1484
+ logger: config?.logger ?? new NoOpLogger(),
1485
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1486
+ protocolSettings: config?.protocolSettings ?? {
1487
+ defaultNamespace: "com.amazonaws.applicationsignals",
1488
+ errorTypeRegistries,
1489
+ version: "2024-04-15",
1490
+ serviceTarget: "ApplicationSignals",
1491
+ },
1492
+ serviceId: config?.serviceId ?? "Application Signals",
1493
+ sha256: config?.sha256 ?? Sha256,
1494
+ urlParser: config?.urlParser ?? parseUrl,
1495
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1496
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1497
+ };
1498
+ };
1499
+
1500
+ const getRuntimeConfig = (config) => {
1501
+ emitWarningIfUnsupportedVersion(process.version);
1502
+ const defaultsMode = resolveDefaultsModeConfig(config);
1503
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1504
+ const clientSharedValues = getRuntimeConfig$1(config);
1505
+ emitWarningIfUnsupportedVersion$1(process.version);
1506
+ const loaderConfig = {
1507
+ profile: config?.profile,
1508
+ logger: clientSharedValues.logger,
1509
+ };
1510
+ return {
1511
+ ...clientSharedValues,
1512
+ ...config,
1513
+ runtime: "node",
1514
+ defaultsMode,
1515
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1516
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1517
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1518
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1519
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1520
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1521
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1522
+ retryMode: config?.retryMode ??
1523
+ loadConfig({
1524
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1525
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1526
+ }, config),
1527
+ streamCollector: config?.streamCollector ?? streamCollector,
1528
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1529
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1530
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1531
+ };
1532
+ };
1533
+
32
1534
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
33
1535
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
34
1536
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -664,58 +2166,234 @@ const MetricSourceType = {
664
2166
  SERVICE_OPERATION: "ServiceOperation",
665
2167
  };
666
2168
 
2169
+ exports.AccessDeniedException = AccessDeniedException;
2170
+ exports.AccessDeniedException$ = AccessDeniedException$;
667
2171
  exports.ApplicationSignals = ApplicationSignals;
668
2172
  exports.ApplicationSignalsClient = ApplicationSignalsClient;
2173
+ exports.ApplicationSignalsServiceException = ApplicationSignalsServiceException;
2174
+ exports.ApplicationSignalsServiceException$ = ApplicationSignalsServiceException$;
2175
+ exports.AttributeFilter$ = AttributeFilter$;
2176
+ exports.AuditFinding$ = AuditFinding$;
2177
+ exports.AuditTarget$ = AuditTarget$;
2178
+ exports.AuditTargetEntity$ = AuditTargetEntity$;
2179
+ exports.AuditorResult$ = AuditorResult$;
2180
+ exports.BatchDeleteByResourceArns$ = BatchDeleteByResourceArns$;
2181
+ exports.BatchDeleteDeletionTarget$ = BatchDeleteDeletionTarget$;
2182
+ exports.BatchDeleteError$ = BatchDeleteError$;
669
2183
  exports.BatchDeleteErrorCode = BatchDeleteErrorCode;
2184
+ exports.BatchDeleteInstrumentationConfigurations$ = BatchDeleteInstrumentationConfigurations$;
670
2185
  exports.BatchDeleteInstrumentationConfigurationsCommand = BatchDeleteInstrumentationConfigurationsCommand;
2186
+ exports.BatchDeleteInstrumentationConfigurationsRequest$ = BatchDeleteInstrumentationConfigurationsRequest$;
2187
+ exports.BatchDeleteInstrumentationConfigurationsResponse$ = BatchDeleteInstrumentationConfigurationsResponse$;
2188
+ exports.BatchDeleteScope$ = BatchDeleteScope$;
2189
+ exports.BatchDeleteSuccessfulDeletion$ = BatchDeleteSuccessfulDeletion$;
2190
+ exports.BatchGetServiceLevelObjectiveBudgetReport$ = BatchGetServiceLevelObjectiveBudgetReport$;
671
2191
  exports.BatchGetServiceLevelObjectiveBudgetReportCommand = BatchGetServiceLevelObjectiveBudgetReportCommand;
2192
+ exports.BatchGetServiceLevelObjectiveBudgetReportInput$ = BatchGetServiceLevelObjectiveBudgetReportInput$;
2193
+ exports.BatchGetServiceLevelObjectiveBudgetReportOutput$ = BatchGetServiceLevelObjectiveBudgetReportOutput$;
2194
+ exports.BatchUpdateExclusionWindows$ = BatchUpdateExclusionWindows$;
672
2195
  exports.BatchUpdateExclusionWindowsCommand = BatchUpdateExclusionWindowsCommand;
2196
+ exports.BatchUpdateExclusionWindowsError$ = BatchUpdateExclusionWindowsError$;
2197
+ exports.BatchUpdateExclusionWindowsInput$ = BatchUpdateExclusionWindowsInput$;
2198
+ exports.BatchUpdateExclusionWindowsOutput$ = BatchUpdateExclusionWindowsOutput$;
2199
+ exports.BurnRateConfiguration$ = BurnRateConfiguration$;
2200
+ exports.CalendarInterval$ = CalendarInterval$;
2201
+ exports.CanaryEntity$ = CanaryEntity$;
2202
+ exports.CaptureConfiguration$ = CaptureConfiguration$;
2203
+ exports.CaptureLimitsConfig$ = CaptureLimitsConfig$;
2204
+ exports.ChangeEvent$ = ChangeEvent$;
673
2205
  exports.ChangeEventType = ChangeEventType;
2206
+ exports.CodeCaptureConfiguration$ = CodeCaptureConfiguration$;
2207
+ exports.CodeLocation$ = CodeLocation$;
2208
+ exports.CompositeSliComponent$ = CompositeSliComponent$;
2209
+ exports.CompositeSliConfig$ = CompositeSliConfig$;
2210
+ exports.ConflictException = ConflictException;
2211
+ exports.ConflictException$ = ConflictException$;
674
2212
  exports.ConnectionType = ConnectionType;
2213
+ exports.CreateInstrumentationConfiguration$ = CreateInstrumentationConfiguration$;
675
2214
  exports.CreateInstrumentationConfigurationCommand = CreateInstrumentationConfigurationCommand;
2215
+ exports.CreateInstrumentationConfigurationRequest$ = CreateInstrumentationConfigurationRequest$;
2216
+ exports.CreateInstrumentationConfigurationResponse$ = CreateInstrumentationConfigurationResponse$;
2217
+ exports.CreateServiceLevelObjective$ = CreateServiceLevelObjective$;
676
2218
  exports.CreateServiceLevelObjectiveCommand = CreateServiceLevelObjectiveCommand;
2219
+ exports.CreateServiceLevelObjectiveInput$ = CreateServiceLevelObjectiveInput$;
2220
+ exports.CreateServiceLevelObjectiveOutput$ = CreateServiceLevelObjectiveOutput$;
2221
+ exports.DeleteGroupingConfiguration$ = DeleteGroupingConfiguration$;
677
2222
  exports.DeleteGroupingConfigurationCommand = DeleteGroupingConfigurationCommand;
2223
+ exports.DeleteGroupingConfigurationOutput$ = DeleteGroupingConfigurationOutput$;
2224
+ exports.DeleteInstrumentationConfiguration$ = DeleteInstrumentationConfiguration$;
678
2225
  exports.DeleteInstrumentationConfigurationCommand = DeleteInstrumentationConfigurationCommand;
2226
+ exports.DeleteInstrumentationConfigurationRequest$ = DeleteInstrumentationConfigurationRequest$;
2227
+ exports.DeleteInstrumentationConfigurationResponse$ = DeleteInstrumentationConfigurationResponse$;
2228
+ exports.DeleteServiceLevelObjective$ = DeleteServiceLevelObjective$;
679
2229
  exports.DeleteServiceLevelObjectiveCommand = DeleteServiceLevelObjectiveCommand;
2230
+ exports.DeleteServiceLevelObjectiveInput$ = DeleteServiceLevelObjectiveInput$;
2231
+ exports.DeleteServiceLevelObjectiveOutput$ = DeleteServiceLevelObjectiveOutput$;
2232
+ exports.DependencyConfig$ = DependencyConfig$;
2233
+ exports.DependencyGraph$ = DependencyGraph$;
680
2234
  exports.DetailLevel = DetailLevel;
2235
+ exports.Dimension$ = Dimension$;
681
2236
  exports.DurationUnit = DurationUnit;
682
2237
  exports.DynamicInstrumentationDeletionStatus = DynamicInstrumentationDeletionStatus;
683
2238
  exports.DynamicInstrumentationSignalType = DynamicInstrumentationSignalType;
2239
+ exports.Edge$ = Edge$;
684
2240
  exports.EvaluationType = EvaluationType;
2241
+ exports.ExclusionWindow$ = ExclusionWindow$;
2242
+ exports.GetInstrumentationConfiguration$ = GetInstrumentationConfiguration$;
685
2243
  exports.GetInstrumentationConfigurationCommand = GetInstrumentationConfigurationCommand;
2244
+ exports.GetInstrumentationConfigurationRequest$ = GetInstrumentationConfigurationRequest$;
2245
+ exports.GetInstrumentationConfigurationResponse$ = GetInstrumentationConfigurationResponse$;
2246
+ exports.GetInstrumentationConfigurationStatus$ = GetInstrumentationConfigurationStatus$;
686
2247
  exports.GetInstrumentationConfigurationStatusCommand = GetInstrumentationConfigurationStatusCommand;
2248
+ exports.GetInstrumentationConfigurationStatusRequest$ = GetInstrumentationConfigurationStatusRequest$;
2249
+ exports.GetInstrumentationConfigurationStatusResponse$ = GetInstrumentationConfigurationStatusResponse$;
2250
+ exports.GetService$ = GetService$;
687
2251
  exports.GetServiceCommand = GetServiceCommand;
2252
+ exports.GetServiceInput$ = GetServiceInput$;
2253
+ exports.GetServiceLevelObjective$ = GetServiceLevelObjective$;
688
2254
  exports.GetServiceLevelObjectiveCommand = GetServiceLevelObjectiveCommand;
2255
+ exports.GetServiceLevelObjectiveInput$ = GetServiceLevelObjectiveInput$;
2256
+ exports.GetServiceLevelObjectiveOutput$ = GetServiceLevelObjectiveOutput$;
2257
+ exports.GetServiceOutput$ = GetServiceOutput$;
2258
+ exports.Goal$ = Goal$;
2259
+ exports.GroupingAttributeDefinition$ = GroupingAttributeDefinition$;
2260
+ exports.GroupingConfiguration$ = GroupingConfiguration$;
2261
+ exports.InstrumentationConfiguration$ = InstrumentationConfiguration$;
689
2262
  exports.InstrumentationConfigurationStatus = InstrumentationConfigurationStatus;
2263
+ exports.InstrumentationConfigurationStatusReport$ = InstrumentationConfigurationStatusReport$;
2264
+ exports.InstrumentationConfigurationWithoutServiceEnv$ = InstrumentationConfigurationWithoutServiceEnv$;
2265
+ exports.InstrumentationConfigurationsPage$ = InstrumentationConfigurationsPage$;
690
2266
  exports.InstrumentationErrorCause = InstrumentationErrorCause;
2267
+ exports.InstrumentationStatusEvent$ = InstrumentationStatusEvent$;
691
2268
  exports.InstrumentationType = InstrumentationType;
2269
+ exports.Interval$ = Interval$;
2270
+ exports.ListAuditFindings$ = ListAuditFindings$;
692
2271
  exports.ListAuditFindingsCommand = ListAuditFindingsCommand;
2272
+ exports.ListAuditFindingsInput$ = ListAuditFindingsInput$;
2273
+ exports.ListAuditFindingsOutput$ = ListAuditFindingsOutput$;
2274
+ exports.ListEntityEvents$ = ListEntityEvents$;
693
2275
  exports.ListEntityEventsCommand = ListEntityEventsCommand;
2276
+ exports.ListEntityEventsInput$ = ListEntityEventsInput$;
2277
+ exports.ListEntityEventsOutput$ = ListEntityEventsOutput$;
2278
+ exports.ListGroupingAttributeDefinitions$ = ListGroupingAttributeDefinitions$;
694
2279
  exports.ListGroupingAttributeDefinitionsCommand = ListGroupingAttributeDefinitionsCommand;
2280
+ exports.ListGroupingAttributeDefinitionsInput$ = ListGroupingAttributeDefinitionsInput$;
2281
+ exports.ListGroupingAttributeDefinitionsOutput$ = ListGroupingAttributeDefinitionsOutput$;
2282
+ exports.ListInstrumentationConfigurations$ = ListInstrumentationConfigurations$;
695
2283
  exports.ListInstrumentationConfigurationsCommand = ListInstrumentationConfigurationsCommand;
2284
+ exports.ListInstrumentationConfigurationsRequest$ = ListInstrumentationConfigurationsRequest$;
2285
+ exports.ListServiceDependencies$ = ListServiceDependencies$;
696
2286
  exports.ListServiceDependenciesCommand = ListServiceDependenciesCommand;
2287
+ exports.ListServiceDependenciesInput$ = ListServiceDependenciesInput$;
2288
+ exports.ListServiceDependenciesOutput$ = ListServiceDependenciesOutput$;
2289
+ exports.ListServiceDependents$ = ListServiceDependents$;
697
2290
  exports.ListServiceDependentsCommand = ListServiceDependentsCommand;
2291
+ exports.ListServiceDependentsInput$ = ListServiceDependentsInput$;
2292
+ exports.ListServiceDependentsOutput$ = ListServiceDependentsOutput$;
2293
+ exports.ListServiceLevelObjectiveExclusionWindows$ = ListServiceLevelObjectiveExclusionWindows$;
698
2294
  exports.ListServiceLevelObjectiveExclusionWindowsCommand = ListServiceLevelObjectiveExclusionWindowsCommand;
2295
+ exports.ListServiceLevelObjectiveExclusionWindowsInput$ = ListServiceLevelObjectiveExclusionWindowsInput$;
2296
+ exports.ListServiceLevelObjectiveExclusionWindowsOutput$ = ListServiceLevelObjectiveExclusionWindowsOutput$;
2297
+ exports.ListServiceLevelObjectives$ = ListServiceLevelObjectives$;
699
2298
  exports.ListServiceLevelObjectivesCommand = ListServiceLevelObjectivesCommand;
2299
+ exports.ListServiceLevelObjectivesInput$ = ListServiceLevelObjectivesInput$;
2300
+ exports.ListServiceLevelObjectivesOutput$ = ListServiceLevelObjectivesOutput$;
2301
+ exports.ListServiceOperations$ = ListServiceOperations$;
700
2302
  exports.ListServiceOperationsCommand = ListServiceOperationsCommand;
2303
+ exports.ListServiceOperationsInput$ = ListServiceOperationsInput$;
2304
+ exports.ListServiceOperationsOutput$ = ListServiceOperationsOutput$;
2305
+ exports.ListServiceStates$ = ListServiceStates$;
701
2306
  exports.ListServiceStatesCommand = ListServiceStatesCommand;
2307
+ exports.ListServiceStatesInput$ = ListServiceStatesInput$;
2308
+ exports.ListServiceStatesOutput$ = ListServiceStatesOutput$;
2309
+ exports.ListServices$ = ListServices$;
702
2310
  exports.ListServicesCommand = ListServicesCommand;
2311
+ exports.ListServicesInput$ = ListServicesInput$;
2312
+ exports.ListServicesOutput$ = ListServicesOutput$;
2313
+ exports.ListTagsForResource$ = ListTagsForResource$;
703
2314
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2315
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2316
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2317
+ exports.Location$ = Location$;
2318
+ exports.LocationIdentifier$ = LocationIdentifier$;
2319
+ exports.Metric$ = Metric$;
2320
+ exports.MetricDataQuery$ = MetricDataQuery$;
2321
+ exports.MetricGraph$ = MetricGraph$;
2322
+ exports.MetricReference$ = MetricReference$;
2323
+ exports.MetricSource$ = MetricSource$;
704
2324
  exports.MetricSourceType = MetricSourceType;
2325
+ exports.MetricStat$ = MetricStat$;
2326
+ exports.MonitoredRequestCountMetricDataQueries$ = MonitoredRequestCountMetricDataQueries$;
2327
+ exports.Node$ = Node$;
705
2328
  exports.ProgrammingLanguage = ProgrammingLanguage;
2329
+ exports.PutGroupingConfiguration$ = PutGroupingConfiguration$;
706
2330
  exports.PutGroupingConfigurationCommand = PutGroupingConfigurationCommand;
2331
+ exports.PutGroupingConfigurationInput$ = PutGroupingConfigurationInput$;
2332
+ exports.PutGroupingConfigurationOutput$ = PutGroupingConfigurationOutput$;
2333
+ exports.RecurrenceRule$ = RecurrenceRule$;
2334
+ exports.ReportInstrumentationConfigurationStatus$ = ReportInstrumentationConfigurationStatus$;
707
2335
  exports.ReportInstrumentationConfigurationStatusCommand = ReportInstrumentationConfigurationStatusCommand;
2336
+ exports.ReportInstrumentationConfigurationStatusRequest$ = ReportInstrumentationConfigurationStatusRequest$;
2337
+ exports.ReportInstrumentationConfigurationStatusResponse$ = ReportInstrumentationConfigurationStatusResponse$;
2338
+ exports.RequestBasedServiceLevelIndicator$ = RequestBasedServiceLevelIndicator$;
2339
+ exports.RequestBasedServiceLevelIndicatorConfig$ = RequestBasedServiceLevelIndicatorConfig$;
2340
+ exports.RequestBasedServiceLevelIndicatorMetric$ = RequestBasedServiceLevelIndicatorMetric$;
2341
+ exports.RequestBasedServiceLevelIndicatorMetricConfig$ = RequestBasedServiceLevelIndicatorMetricConfig$;
2342
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2343
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2344
+ exports.RollingInterval$ = RollingInterval$;
2345
+ exports.SelectionConfig$ = SelectionConfig$;
708
2346
  exports.SelectionType = SelectionType;
2347
+ exports.Service$ = Service$;
2348
+ exports.ServiceDependency$ = ServiceDependency$;
2349
+ exports.ServiceDependent$ = ServiceDependent$;
2350
+ exports.ServiceEntity$ = ServiceEntity$;
2351
+ exports.ServiceGroup$ = ServiceGroup$;
2352
+ exports.ServiceLevelIndicator$ = ServiceLevelIndicator$;
709
2353
  exports.ServiceLevelIndicatorComparisonOperator = ServiceLevelIndicatorComparisonOperator;
2354
+ exports.ServiceLevelIndicatorConfig$ = ServiceLevelIndicatorConfig$;
2355
+ exports.ServiceLevelIndicatorMetric$ = ServiceLevelIndicatorMetric$;
2356
+ exports.ServiceLevelIndicatorMetricConfig$ = ServiceLevelIndicatorMetricConfig$;
710
2357
  exports.ServiceLevelIndicatorMetricType = ServiceLevelIndicatorMetricType;
2358
+ exports.ServiceLevelObjective$ = ServiceLevelObjective$;
2359
+ exports.ServiceLevelObjectiveBudgetReport$ = ServiceLevelObjectiveBudgetReport$;
2360
+ exports.ServiceLevelObjectiveBudgetReportError$ = ServiceLevelObjectiveBudgetReportError$;
711
2361
  exports.ServiceLevelObjectiveBudgetStatus = ServiceLevelObjectiveBudgetStatus;
2362
+ exports.ServiceLevelObjectiveEntity$ = ServiceLevelObjectiveEntity$;
2363
+ exports.ServiceLevelObjectiveSummary$ = ServiceLevelObjectiveSummary$;
2364
+ exports.ServiceOperation$ = ServiceOperation$;
2365
+ exports.ServiceOperationEntity$ = ServiceOperationEntity$;
2366
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2367
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2368
+ exports.ServiceState$ = ServiceState$;
2369
+ exports.ServiceSummary$ = ServiceSummary$;
712
2370
  exports.Severity = Severity;
713
2371
  exports.StandardUnit = StandardUnit;
2372
+ exports.StartDiscovery$ = StartDiscovery$;
714
2373
  exports.StartDiscoveryCommand = StartDiscoveryCommand;
2374
+ exports.StartDiscoveryInput$ = StartDiscoveryInput$;
2375
+ exports.StartDiscoveryOutput$ = StartDiscoveryOutput$;
2376
+ exports.Tag$ = Tag$;
2377
+ exports.TagResource$ = TagResource$;
715
2378
  exports.TagResourceCommand = TagResourceCommand;
2379
+ exports.TagResourceRequest$ = TagResourceRequest$;
2380
+ exports.TagResourceResponse$ = TagResourceResponse$;
2381
+ exports.ThrottlingException = ThrottlingException;
2382
+ exports.ThrottlingException$ = ThrottlingException$;
2383
+ exports.UnprocessedStatusEvent$ = UnprocessedStatusEvent$;
716
2384
  exports.UnprocessedStatusEventFailureReason = UnprocessedStatusEventFailureReason;
2385
+ exports.UntagResource$ = UntagResource$;
717
2386
  exports.UntagResourceCommand = UntagResourceCommand;
2387
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2388
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2389
+ exports.UpdateServiceLevelObjective$ = UpdateServiceLevelObjective$;
718
2390
  exports.UpdateServiceLevelObjectiveCommand = UpdateServiceLevelObjectiveCommand;
2391
+ exports.UpdateServiceLevelObjectiveInput$ = UpdateServiceLevelObjectiveInput$;
2392
+ exports.UpdateServiceLevelObjectiveOutput$ = UpdateServiceLevelObjectiveOutput$;
2393
+ exports.ValidationException = ValidationException;
2394
+ exports.ValidationException$ = ValidationException$;
2395
+ exports.Window$ = Window$;
2396
+ exports.errorTypeRegistries = errorTypeRegistries;
719
2397
  exports.paginateGetInstrumentationConfigurationStatus = paginateGetInstrumentationConfigurationStatus;
720
2398
  exports.paginateListEntityEvents = paginateListEntityEvents;
721
2399
  exports.paginateListInstrumentationConfigurations = paginateListInstrumentationConfigurations;