@aws-sdk/client-application-signals 3.1072.0 → 3.1074.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/README.md +49 -0
- package/dist-cjs/index.js +154 -1
- package/dist-cjs/schemas/schemas_0.js +377 -64
- package/dist-es/ApplicationSignals.js +18 -0
- package/dist-es/commands/BatchDeleteInstrumentationConfigurationsCommand.js +16 -0
- package/dist-es/commands/CreateInstrumentationConfigurationCommand.js +16 -0
- package/dist-es/commands/DeleteInstrumentationConfigurationCommand.js +16 -0
- package/dist-es/commands/GetInstrumentationConfigurationCommand.js +16 -0
- package/dist-es/commands/GetInstrumentationConfigurationStatusCommand.js +16 -0
- package/dist-es/commands/ListInstrumentationConfigurationsCommand.js +16 -0
- package/dist-es/commands/ReportInstrumentationConfigurationStatusCommand.js +16 -0
- package/dist-es/commands/index.js +7 -0
- package/dist-es/models/enums.js +39 -0
- package/dist-es/pagination/GetInstrumentationConfigurationStatusPaginator.js +4 -0
- package/dist-es/pagination/ListInstrumentationConfigurationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/schemas/schemas_0.js +347 -64
- package/dist-types/ApplicationSignals.d.ts +63 -0
- package/dist-types/ApplicationSignalsClient.d.ts +9 -2
- package/dist-types/commands/BatchDeleteInstrumentationConfigurationsCommand.d.ts +111 -0
- package/dist-types/commands/CreateInstrumentationConfigurationCommand.d.ts +181 -0
- package/dist-types/commands/DeleteInstrumentationConfigurationCommand.d.ts +99 -0
- package/dist-types/commands/GetInstrumentationConfigurationCommand.d.ts +146 -0
- package/dist-types/commands/GetInstrumentationConfigurationStatusCommand.d.ts +124 -0
- package/dist-types/commands/ListInstrumentationConfigurationsCommand.d.ts +143 -0
- package/dist-types/commands/ReportInstrumentationConfigurationStatusCommand.d.ts +104 -0
- package/dist-types/commands/index.d.ts +7 -0
- package/dist-types/models/enums.d.ts +118 -0
- package/dist-types/models/models_0.d.ts +1087 -78
- package/dist-types/pagination/GetInstrumentationConfigurationStatusPaginator.d.ts +7 -0
- package/dist-types/pagination/ListInstrumentationConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/schemas/schemas_0.d.ts +37 -0
- package/dist-types/ts3.4/ApplicationSignals.d.ts +169 -0
- package/dist-types/ts3.4/ApplicationSignalsClient.d.ts +42 -0
- package/dist-types/ts3.4/commands/BatchDeleteInstrumentationConfigurationsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/CreateInstrumentationConfigurationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/DeleteInstrumentationConfigurationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetInstrumentationConfigurationCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/GetInstrumentationConfigurationStatusCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListInstrumentationConfigurationsCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ReportInstrumentationConfigurationStatusCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/index.d.ts +7 -0
- package/dist-types/ts3.4/models/enums.d.ts +55 -0
- package/dist-types/ts3.4/models/models_0.d.ts +290 -4
- package/dist-types/ts3.4/pagination/GetInstrumentationConfigurationStatusPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListInstrumentationConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +37 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -179,6 +179,13 @@ see LICENSE for more information.
|
|
|
179
179
|
|
|
180
180
|
## Client Commands (Operations List)
|
|
181
181
|
|
|
182
|
+
<details>
|
|
183
|
+
<summary>
|
|
184
|
+
BatchDeleteInstrumentationConfigurations
|
|
185
|
+
</summary>
|
|
186
|
+
|
|
187
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/application-signals/command/BatchDeleteInstrumentationConfigurationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-application-signals/Interface/BatchDeleteInstrumentationConfigurationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-application-signals/Interface/BatchDeleteInstrumentationConfigurationsCommandOutput/)
|
|
188
|
+
</details>
|
|
182
189
|
<details>
|
|
183
190
|
<summary>
|
|
184
191
|
BatchGetServiceLevelObjectiveBudgetReport
|
|
@@ -195,6 +202,13 @@ BatchUpdateExclusionWindows
|
|
|
195
202
|
</details>
|
|
196
203
|
<details>
|
|
197
204
|
<summary>
|
|
205
|
+
CreateInstrumentationConfiguration
|
|
206
|
+
</summary>
|
|
207
|
+
|
|
208
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/application-signals/command/CreateInstrumentationConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-application-signals/Interface/CreateInstrumentationConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-application-signals/Interface/CreateInstrumentationConfigurationCommandOutput/)
|
|
209
|
+
</details>
|
|
210
|
+
<details>
|
|
211
|
+
<summary>
|
|
198
212
|
CreateServiceLevelObjective
|
|
199
213
|
</summary>
|
|
200
214
|
|
|
@@ -209,6 +223,13 @@ DeleteGroupingConfiguration
|
|
|
209
223
|
</details>
|
|
210
224
|
<details>
|
|
211
225
|
<summary>
|
|
226
|
+
DeleteInstrumentationConfiguration
|
|
227
|
+
</summary>
|
|
228
|
+
|
|
229
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/application-signals/command/DeleteInstrumentationConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-application-signals/Interface/DeleteInstrumentationConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-application-signals/Interface/DeleteInstrumentationConfigurationCommandOutput/)
|
|
230
|
+
</details>
|
|
231
|
+
<details>
|
|
232
|
+
<summary>
|
|
212
233
|
DeleteServiceLevelObjective
|
|
213
234
|
</summary>
|
|
214
235
|
|
|
@@ -216,6 +237,20 @@ DeleteServiceLevelObjective
|
|
|
216
237
|
</details>
|
|
217
238
|
<details>
|
|
218
239
|
<summary>
|
|
240
|
+
GetInstrumentationConfiguration
|
|
241
|
+
</summary>
|
|
242
|
+
|
|
243
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/application-signals/command/GetInstrumentationConfigurationCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-application-signals/Interface/GetInstrumentationConfigurationCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-application-signals/Interface/GetInstrumentationConfigurationCommandOutput/)
|
|
244
|
+
</details>
|
|
245
|
+
<details>
|
|
246
|
+
<summary>
|
|
247
|
+
GetInstrumentationConfigurationStatus
|
|
248
|
+
</summary>
|
|
249
|
+
|
|
250
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/application-signals/command/GetInstrumentationConfigurationStatusCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-application-signals/Interface/GetInstrumentationConfigurationStatusCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-application-signals/Interface/GetInstrumentationConfigurationStatusCommandOutput/)
|
|
251
|
+
</details>
|
|
252
|
+
<details>
|
|
253
|
+
<summary>
|
|
219
254
|
GetService
|
|
220
255
|
</summary>
|
|
221
256
|
|
|
@@ -251,6 +286,13 @@ ListGroupingAttributeDefinitions
|
|
|
251
286
|
</details>
|
|
252
287
|
<details>
|
|
253
288
|
<summary>
|
|
289
|
+
ListInstrumentationConfigurations
|
|
290
|
+
</summary>
|
|
291
|
+
|
|
292
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/application-signals/command/ListInstrumentationConfigurationsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-application-signals/Interface/ListInstrumentationConfigurationsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-application-signals/Interface/ListInstrumentationConfigurationsCommandOutput/)
|
|
293
|
+
</details>
|
|
294
|
+
<details>
|
|
295
|
+
<summary>
|
|
254
296
|
ListServiceDependencies
|
|
255
297
|
</summary>
|
|
256
298
|
|
|
@@ -314,6 +356,13 @@ PutGroupingConfiguration
|
|
|
314
356
|
</details>
|
|
315
357
|
<details>
|
|
316
358
|
<summary>
|
|
359
|
+
ReportInstrumentationConfigurationStatus
|
|
360
|
+
</summary>
|
|
361
|
+
|
|
362
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/application-signals/command/ReportInstrumentationConfigurationStatusCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-application-signals/Interface/ReportInstrumentationConfigurationStatusCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-application-signals/Interface/ReportInstrumentationConfigurationStatusCommandOutput/)
|
|
363
|
+
</details>
|
|
364
|
+
<details>
|
|
365
|
+
<summary>
|
|
317
366
|
StartDiscovery
|
|
318
367
|
</summary>
|
|
319
368
|
|
package/dist-cjs/index.js
CHANGED
|
@@ -11,7 +11,7 @@ const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
|
11
11
|
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
12
|
const { resolveHttpAuthSchemeConfig, defaultApplicationSignalsHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
13
13
|
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
14
|
-
const { BatchGetServiceLevelObjectiveBudgetReport$, BatchUpdateExclusionWindows$, CreateServiceLevelObjective$, DeleteGroupingConfiguration$, DeleteServiceLevelObjective$, GetService$, GetServiceLevelObjective$, ListAuditFindings$, ListEntityEvents$, ListGroupingAttributeDefinitions$, ListServiceDependencies$, ListServiceDependents$, ListServiceLevelObjectiveExclusionWindows$, ListServiceLevelObjectives$, ListServiceOperations$, ListServices$, ListServiceStates$, ListTagsForResource$, PutGroupingConfiguration$, StartDiscovery$, TagResource$, UntagResource$, UpdateServiceLevelObjective$ } = require("./schemas/schemas_0");
|
|
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
15
|
__exportStar(require("./schemas/schemas_0"), exports);
|
|
16
16
|
__exportStar(require("./models/errors"), exports);
|
|
17
17
|
const { ApplicationSignalsServiceException } = require("./models/ApplicationSignalsServiceException");
|
|
@@ -109,6 +109,18 @@ class ApplicationSignalsClient extends Client {
|
|
|
109
109
|
}
|
|
110
110
|
}
|
|
111
111
|
|
|
112
|
+
class BatchDeleteInstrumentationConfigurationsCommand extends Command
|
|
113
|
+
.classBuilder()
|
|
114
|
+
.ep(commonParams)
|
|
115
|
+
.m(function (Command, cs, config, o) {
|
|
116
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
117
|
+
})
|
|
118
|
+
.s("ApplicationSignals", "BatchDeleteInstrumentationConfigurations", {})
|
|
119
|
+
.n("ApplicationSignalsClient", "BatchDeleteInstrumentationConfigurationsCommand")
|
|
120
|
+
.sc(BatchDeleteInstrumentationConfigurations$)
|
|
121
|
+
.build() {
|
|
122
|
+
}
|
|
123
|
+
|
|
112
124
|
class BatchGetServiceLevelObjectiveBudgetReportCommand extends Command
|
|
113
125
|
.classBuilder()
|
|
114
126
|
.ep(commonParams)
|
|
@@ -133,6 +145,18 @@ class BatchUpdateExclusionWindowsCommand extends Command
|
|
|
133
145
|
.build() {
|
|
134
146
|
}
|
|
135
147
|
|
|
148
|
+
class CreateInstrumentationConfigurationCommand extends Command
|
|
149
|
+
.classBuilder()
|
|
150
|
+
.ep(commonParams)
|
|
151
|
+
.m(function (Command, cs, config, o) {
|
|
152
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
153
|
+
})
|
|
154
|
+
.s("ApplicationSignals", "CreateInstrumentationConfiguration", {})
|
|
155
|
+
.n("ApplicationSignalsClient", "CreateInstrumentationConfigurationCommand")
|
|
156
|
+
.sc(CreateInstrumentationConfiguration$)
|
|
157
|
+
.build() {
|
|
158
|
+
}
|
|
159
|
+
|
|
136
160
|
class CreateServiceLevelObjectiveCommand extends Command
|
|
137
161
|
.classBuilder()
|
|
138
162
|
.ep(commonParams)
|
|
@@ -157,6 +181,18 @@ class DeleteGroupingConfigurationCommand extends Command
|
|
|
157
181
|
.build() {
|
|
158
182
|
}
|
|
159
183
|
|
|
184
|
+
class DeleteInstrumentationConfigurationCommand extends Command
|
|
185
|
+
.classBuilder()
|
|
186
|
+
.ep(commonParams)
|
|
187
|
+
.m(function (Command, cs, config, o) {
|
|
188
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
189
|
+
})
|
|
190
|
+
.s("ApplicationSignals", "DeleteInstrumentationConfiguration", {})
|
|
191
|
+
.n("ApplicationSignalsClient", "DeleteInstrumentationConfigurationCommand")
|
|
192
|
+
.sc(DeleteInstrumentationConfiguration$)
|
|
193
|
+
.build() {
|
|
194
|
+
}
|
|
195
|
+
|
|
160
196
|
class DeleteServiceLevelObjectiveCommand extends Command
|
|
161
197
|
.classBuilder()
|
|
162
198
|
.ep(commonParams)
|
|
@@ -169,6 +205,30 @@ class DeleteServiceLevelObjectiveCommand extends Command
|
|
|
169
205
|
.build() {
|
|
170
206
|
}
|
|
171
207
|
|
|
208
|
+
class GetInstrumentationConfigurationCommand extends Command
|
|
209
|
+
.classBuilder()
|
|
210
|
+
.ep(commonParams)
|
|
211
|
+
.m(function (Command, cs, config, o) {
|
|
212
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
213
|
+
})
|
|
214
|
+
.s("ApplicationSignals", "GetInstrumentationConfiguration", {})
|
|
215
|
+
.n("ApplicationSignalsClient", "GetInstrumentationConfigurationCommand")
|
|
216
|
+
.sc(GetInstrumentationConfiguration$)
|
|
217
|
+
.build() {
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
class GetInstrumentationConfigurationStatusCommand extends Command
|
|
221
|
+
.classBuilder()
|
|
222
|
+
.ep(commonParams)
|
|
223
|
+
.m(function (Command, cs, config, o) {
|
|
224
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
225
|
+
})
|
|
226
|
+
.s("ApplicationSignals", "GetInstrumentationConfigurationStatus", {})
|
|
227
|
+
.n("ApplicationSignalsClient", "GetInstrumentationConfigurationStatusCommand")
|
|
228
|
+
.sc(GetInstrumentationConfigurationStatus$)
|
|
229
|
+
.build() {
|
|
230
|
+
}
|
|
231
|
+
|
|
172
232
|
class GetServiceCommand extends Command
|
|
173
233
|
.classBuilder()
|
|
174
234
|
.ep(commonParams)
|
|
@@ -229,6 +289,18 @@ class ListGroupingAttributeDefinitionsCommand extends Command
|
|
|
229
289
|
.build() {
|
|
230
290
|
}
|
|
231
291
|
|
|
292
|
+
class ListInstrumentationConfigurationsCommand extends Command
|
|
293
|
+
.classBuilder()
|
|
294
|
+
.ep(commonParams)
|
|
295
|
+
.m(function (Command, cs, config, o) {
|
|
296
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
297
|
+
})
|
|
298
|
+
.s("ApplicationSignals", "ListInstrumentationConfigurations", {})
|
|
299
|
+
.n("ApplicationSignalsClient", "ListInstrumentationConfigurationsCommand")
|
|
300
|
+
.sc(ListInstrumentationConfigurations$)
|
|
301
|
+
.build() {
|
|
302
|
+
}
|
|
303
|
+
|
|
232
304
|
class ListServiceDependenciesCommand extends Command
|
|
233
305
|
.classBuilder()
|
|
234
306
|
.ep(commonParams)
|
|
@@ -337,6 +409,18 @@ class PutGroupingConfigurationCommand extends Command
|
|
|
337
409
|
.build() {
|
|
338
410
|
}
|
|
339
411
|
|
|
412
|
+
class ReportInstrumentationConfigurationStatusCommand extends Command
|
|
413
|
+
.classBuilder()
|
|
414
|
+
.ep(commonParams)
|
|
415
|
+
.m(function (Command, cs, config, o) {
|
|
416
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
417
|
+
})
|
|
418
|
+
.s("ApplicationSignals", "ReportInstrumentationConfigurationStatus", {})
|
|
419
|
+
.n("ApplicationSignalsClient", "ReportInstrumentationConfigurationStatusCommand")
|
|
420
|
+
.sc(ReportInstrumentationConfigurationStatus$)
|
|
421
|
+
.build() {
|
|
422
|
+
}
|
|
423
|
+
|
|
340
424
|
class StartDiscoveryCommand extends Command
|
|
341
425
|
.classBuilder()
|
|
342
426
|
.ep(commonParams)
|
|
@@ -385,8 +469,12 @@ class UpdateServiceLevelObjectiveCommand extends Command
|
|
|
385
469
|
.build() {
|
|
386
470
|
}
|
|
387
471
|
|
|
472
|
+
const paginateGetInstrumentationConfigurationStatus = createPaginator(ApplicationSignalsClient, GetInstrumentationConfigurationStatusCommand, "NextToken", "NextToken", "MaxResults");
|
|
473
|
+
|
|
388
474
|
const paginateListEntityEvents = createPaginator(ApplicationSignalsClient, ListEntityEventsCommand, "NextToken", "NextToken", "MaxResults");
|
|
389
475
|
|
|
476
|
+
const paginateListInstrumentationConfigurations = createPaginator(ApplicationSignalsClient, ListInstrumentationConfigurationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
477
|
+
|
|
390
478
|
const paginateListServiceDependencies = createPaginator(ApplicationSignalsClient, ListServiceDependenciesCommand, "NextToken", "NextToken", "MaxResults");
|
|
391
479
|
|
|
392
480
|
const paginateListServiceDependents = createPaginator(ApplicationSignalsClient, ListServiceDependentsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -402,16 +490,22 @@ const paginateListServices = createPaginator(ApplicationSignalsClient, ListServi
|
|
|
402
490
|
const paginateListServiceStates = createPaginator(ApplicationSignalsClient, ListServiceStatesCommand, "NextToken", "NextToken", "MaxResults");
|
|
403
491
|
|
|
404
492
|
const commands = {
|
|
493
|
+
BatchDeleteInstrumentationConfigurationsCommand,
|
|
405
494
|
BatchGetServiceLevelObjectiveBudgetReportCommand,
|
|
406
495
|
BatchUpdateExclusionWindowsCommand,
|
|
496
|
+
CreateInstrumentationConfigurationCommand,
|
|
407
497
|
CreateServiceLevelObjectiveCommand,
|
|
408
498
|
DeleteGroupingConfigurationCommand,
|
|
499
|
+
DeleteInstrumentationConfigurationCommand,
|
|
409
500
|
DeleteServiceLevelObjectiveCommand,
|
|
501
|
+
GetInstrumentationConfigurationCommand,
|
|
502
|
+
GetInstrumentationConfigurationStatusCommand,
|
|
410
503
|
GetServiceCommand,
|
|
411
504
|
GetServiceLevelObjectiveCommand,
|
|
412
505
|
ListAuditFindingsCommand,
|
|
413
506
|
ListEntityEventsCommand,
|
|
414
507
|
ListGroupingAttributeDefinitionsCommand,
|
|
508
|
+
ListInstrumentationConfigurationsCommand,
|
|
415
509
|
ListServiceDependenciesCommand,
|
|
416
510
|
ListServiceDependentsCommand,
|
|
417
511
|
ListServiceLevelObjectiveExclusionWindowsCommand,
|
|
@@ -421,13 +515,16 @@ const commands = {
|
|
|
421
515
|
ListServiceStatesCommand,
|
|
422
516
|
ListTagsForResourceCommand,
|
|
423
517
|
PutGroupingConfigurationCommand,
|
|
518
|
+
ReportInstrumentationConfigurationStatusCommand,
|
|
424
519
|
StartDiscoveryCommand,
|
|
425
520
|
TagResourceCommand,
|
|
426
521
|
UntagResourceCommand,
|
|
427
522
|
UpdateServiceLevelObjectiveCommand,
|
|
428
523
|
};
|
|
429
524
|
const paginators = {
|
|
525
|
+
paginateGetInstrumentationConfigurationStatus,
|
|
430
526
|
paginateListEntityEvents,
|
|
527
|
+
paginateListInstrumentationConfigurations,
|
|
431
528
|
paginateListServiceDependencies,
|
|
432
529
|
paginateListServiceDependents,
|
|
433
530
|
paginateListServiceLevelObjectiveExclusionWindows,
|
|
@@ -440,6 +537,15 @@ class ApplicationSignals extends ApplicationSignalsClient {
|
|
|
440
537
|
}
|
|
441
538
|
createAggregatedClient(commands, ApplicationSignals, { paginators });
|
|
442
539
|
|
|
540
|
+
const InstrumentationType = {
|
|
541
|
+
BREAKPOINT: "BREAKPOINT",
|
|
542
|
+
PROBE: "PROBE",
|
|
543
|
+
};
|
|
544
|
+
const BatchDeleteErrorCode = {
|
|
545
|
+
ACCESS_DENIED: "AccessDeniedException",
|
|
546
|
+
INTERNAL_SERVICE_ERROR: "InternalServiceException",
|
|
547
|
+
RESOURCE_NOT_FOUND: "ResourceNotFoundException",
|
|
548
|
+
};
|
|
443
549
|
const ServiceLevelObjectiveBudgetStatus = {
|
|
444
550
|
BREACHED: "BREACHED",
|
|
445
551
|
INSUFFICIENT_DATA: "INSUFFICIENT_DATA",
|
|
@@ -500,6 +606,31 @@ const StandardUnit = {
|
|
|
500
606
|
TERABYTES: "Terabytes",
|
|
501
607
|
TERABYTES_SECOND: "Terabytes/Second",
|
|
502
608
|
};
|
|
609
|
+
const ProgrammingLanguage = {
|
|
610
|
+
JAVA: "Java",
|
|
611
|
+
JAVASCRIPT: "Javascript",
|
|
612
|
+
PYTHON: "Python",
|
|
613
|
+
};
|
|
614
|
+
const DynamicInstrumentationSignalType = {
|
|
615
|
+
SNAPSHOT: "SNAPSHOT",
|
|
616
|
+
};
|
|
617
|
+
const DynamicInstrumentationDeletionStatus = {
|
|
618
|
+
DELETED: "DELETED",
|
|
619
|
+
};
|
|
620
|
+
const InstrumentationConfigurationStatus = {
|
|
621
|
+
ACTIVE: "ACTIVE",
|
|
622
|
+
DISABLED: "DISABLED",
|
|
623
|
+
ERROR: "ERROR",
|
|
624
|
+
READY: "READY",
|
|
625
|
+
};
|
|
626
|
+
const InstrumentationErrorCause = {
|
|
627
|
+
FILE_NOT_FOUND: "FILE_NOT_FOUND",
|
|
628
|
+
LANGUAGE_MISMATCH: "LANGUAGE_MISMATCH",
|
|
629
|
+
LINE_NOT_EXECUTABLE: "LINE_NOT_EXECUTABLE",
|
|
630
|
+
METHOD_NOT_FOUND: "METHOD_NOT_FOUND",
|
|
631
|
+
OVERLOADED_METHODS: "OVERLOADED_METHODS",
|
|
632
|
+
RUNTIME_ERROR: "RUNTIME_ERROR",
|
|
633
|
+
};
|
|
503
634
|
const DetailLevel = {
|
|
504
635
|
BRIEF: "BRIEF",
|
|
505
636
|
DETAILED: "DETAILED",
|
|
@@ -519,6 +650,11 @@ const ChangeEventType = {
|
|
|
519
650
|
CONFIGURATION: "CONFIGURATION",
|
|
520
651
|
DEPLOYMENT: "DEPLOYMENT",
|
|
521
652
|
};
|
|
653
|
+
const UnprocessedStatusEventFailureReason = {
|
|
654
|
+
INTERNAL_ERROR: "INTERNAL_ERROR",
|
|
655
|
+
THROTTLED: "THROTTLED",
|
|
656
|
+
VALIDATION_ERROR: "VALIDATION_ERROR",
|
|
657
|
+
};
|
|
522
658
|
const MetricSourceType = {
|
|
523
659
|
APPMONITOR: "AppMonitor",
|
|
524
660
|
CANARY: "Canary",
|
|
@@ -530,21 +666,33 @@ const MetricSourceType = {
|
|
|
530
666
|
|
|
531
667
|
exports.ApplicationSignals = ApplicationSignals;
|
|
532
668
|
exports.ApplicationSignalsClient = ApplicationSignalsClient;
|
|
669
|
+
exports.BatchDeleteErrorCode = BatchDeleteErrorCode;
|
|
670
|
+
exports.BatchDeleteInstrumentationConfigurationsCommand = BatchDeleteInstrumentationConfigurationsCommand;
|
|
533
671
|
exports.BatchGetServiceLevelObjectiveBudgetReportCommand = BatchGetServiceLevelObjectiveBudgetReportCommand;
|
|
534
672
|
exports.BatchUpdateExclusionWindowsCommand = BatchUpdateExclusionWindowsCommand;
|
|
535
673
|
exports.ChangeEventType = ChangeEventType;
|
|
536
674
|
exports.ConnectionType = ConnectionType;
|
|
675
|
+
exports.CreateInstrumentationConfigurationCommand = CreateInstrumentationConfigurationCommand;
|
|
537
676
|
exports.CreateServiceLevelObjectiveCommand = CreateServiceLevelObjectiveCommand;
|
|
538
677
|
exports.DeleteGroupingConfigurationCommand = DeleteGroupingConfigurationCommand;
|
|
678
|
+
exports.DeleteInstrumentationConfigurationCommand = DeleteInstrumentationConfigurationCommand;
|
|
539
679
|
exports.DeleteServiceLevelObjectiveCommand = DeleteServiceLevelObjectiveCommand;
|
|
540
680
|
exports.DetailLevel = DetailLevel;
|
|
541
681
|
exports.DurationUnit = DurationUnit;
|
|
682
|
+
exports.DynamicInstrumentationDeletionStatus = DynamicInstrumentationDeletionStatus;
|
|
683
|
+
exports.DynamicInstrumentationSignalType = DynamicInstrumentationSignalType;
|
|
542
684
|
exports.EvaluationType = EvaluationType;
|
|
685
|
+
exports.GetInstrumentationConfigurationCommand = GetInstrumentationConfigurationCommand;
|
|
686
|
+
exports.GetInstrumentationConfigurationStatusCommand = GetInstrumentationConfigurationStatusCommand;
|
|
543
687
|
exports.GetServiceCommand = GetServiceCommand;
|
|
544
688
|
exports.GetServiceLevelObjectiveCommand = GetServiceLevelObjectiveCommand;
|
|
689
|
+
exports.InstrumentationConfigurationStatus = InstrumentationConfigurationStatus;
|
|
690
|
+
exports.InstrumentationErrorCause = InstrumentationErrorCause;
|
|
691
|
+
exports.InstrumentationType = InstrumentationType;
|
|
545
692
|
exports.ListAuditFindingsCommand = ListAuditFindingsCommand;
|
|
546
693
|
exports.ListEntityEventsCommand = ListEntityEventsCommand;
|
|
547
694
|
exports.ListGroupingAttributeDefinitionsCommand = ListGroupingAttributeDefinitionsCommand;
|
|
695
|
+
exports.ListInstrumentationConfigurationsCommand = ListInstrumentationConfigurationsCommand;
|
|
548
696
|
exports.ListServiceDependenciesCommand = ListServiceDependenciesCommand;
|
|
549
697
|
exports.ListServiceDependentsCommand = ListServiceDependentsCommand;
|
|
550
698
|
exports.ListServiceLevelObjectiveExclusionWindowsCommand = ListServiceLevelObjectiveExclusionWindowsCommand;
|
|
@@ -554,7 +702,9 @@ exports.ListServiceStatesCommand = ListServiceStatesCommand;
|
|
|
554
702
|
exports.ListServicesCommand = ListServicesCommand;
|
|
555
703
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
556
704
|
exports.MetricSourceType = MetricSourceType;
|
|
705
|
+
exports.ProgrammingLanguage = ProgrammingLanguage;
|
|
557
706
|
exports.PutGroupingConfigurationCommand = PutGroupingConfigurationCommand;
|
|
707
|
+
exports.ReportInstrumentationConfigurationStatusCommand = ReportInstrumentationConfigurationStatusCommand;
|
|
558
708
|
exports.SelectionType = SelectionType;
|
|
559
709
|
exports.ServiceLevelIndicatorComparisonOperator = ServiceLevelIndicatorComparisonOperator;
|
|
560
710
|
exports.ServiceLevelIndicatorMetricType = ServiceLevelIndicatorMetricType;
|
|
@@ -563,9 +713,12 @@ exports.Severity = Severity;
|
|
|
563
713
|
exports.StandardUnit = StandardUnit;
|
|
564
714
|
exports.StartDiscoveryCommand = StartDiscoveryCommand;
|
|
565
715
|
exports.TagResourceCommand = TagResourceCommand;
|
|
716
|
+
exports.UnprocessedStatusEventFailureReason = UnprocessedStatusEventFailureReason;
|
|
566
717
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
567
718
|
exports.UpdateServiceLevelObjectiveCommand = UpdateServiceLevelObjectiveCommand;
|
|
719
|
+
exports.paginateGetInstrumentationConfigurationStatus = paginateGetInstrumentationConfigurationStatus;
|
|
568
720
|
exports.paginateListEntityEvents = paginateListEntityEvents;
|
|
721
|
+
exports.paginateListInstrumentationConfigurations = paginateListInstrumentationConfigurations;
|
|
569
722
|
exports.paginateListServiceDependencies = paginateListServiceDependencies;
|
|
570
723
|
exports.paginateListServiceDependents = paginateListServiceDependents;
|
|
571
724
|
exports.paginateListServiceLevelObjectiveExclusionWindows = paginateListServiceLevelObjectiveExclusionWindows;
|