@aws-sdk/client-application-signals 3.1073.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
|
@@ -1,17 +1,78 @@
|
|
|
1
1
|
import {
|
|
2
|
+
BatchDeleteErrorCode,
|
|
2
3
|
ChangeEventType,
|
|
3
4
|
ConnectionType,
|
|
4
5
|
DetailLevel,
|
|
5
6
|
DurationUnit,
|
|
7
|
+
DynamicInstrumentationDeletionStatus,
|
|
8
|
+
DynamicInstrumentationSignalType,
|
|
6
9
|
EvaluationType,
|
|
10
|
+
InstrumentationConfigurationStatus,
|
|
11
|
+
InstrumentationErrorCause,
|
|
12
|
+
InstrumentationType,
|
|
7
13
|
MetricSourceType,
|
|
14
|
+
ProgrammingLanguage,
|
|
8
15
|
SelectionType,
|
|
9
16
|
ServiceLevelIndicatorComparisonOperator,
|
|
10
17
|
ServiceLevelIndicatorMetricType,
|
|
11
18
|
ServiceLevelObjectiveBudgetStatus,
|
|
12
19
|
Severity,
|
|
13
20
|
StandardUnit,
|
|
21
|
+
UnprocessedStatusEventFailureReason,
|
|
14
22
|
} from "./enums";
|
|
23
|
+
export interface BatchDeleteByResourceArns {
|
|
24
|
+
ResourceArns: string[] | undefined;
|
|
25
|
+
InstrumentationType: InstrumentationType | undefined;
|
|
26
|
+
}
|
|
27
|
+
export interface BatchDeleteScope {
|
|
28
|
+
Service: string | undefined;
|
|
29
|
+
Environment: string | undefined;
|
|
30
|
+
InstrumentationType: InstrumentationType | undefined;
|
|
31
|
+
}
|
|
32
|
+
export type BatchDeleteDeletionTarget =
|
|
33
|
+
| BatchDeleteDeletionTarget.ResourceArnsMember
|
|
34
|
+
| BatchDeleteDeletionTarget.ScopeMember
|
|
35
|
+
| BatchDeleteDeletionTarget.$UnknownMember;
|
|
36
|
+
export declare namespace BatchDeleteDeletionTarget {
|
|
37
|
+
interface ScopeMember {
|
|
38
|
+
Scope: BatchDeleteScope;
|
|
39
|
+
ResourceArns?: never;
|
|
40
|
+
$unknown?: never;
|
|
41
|
+
}
|
|
42
|
+
interface ResourceArnsMember {
|
|
43
|
+
Scope?: never;
|
|
44
|
+
ResourceArns: BatchDeleteByResourceArns;
|
|
45
|
+
$unknown?: never;
|
|
46
|
+
}
|
|
47
|
+
interface $UnknownMember {
|
|
48
|
+
Scope?: never;
|
|
49
|
+
ResourceArns?: never;
|
|
50
|
+
$unknown: [string, any];
|
|
51
|
+
}
|
|
52
|
+
interface Visitor<T> {
|
|
53
|
+
Scope: (value: BatchDeleteScope) => T;
|
|
54
|
+
ResourceArns: (value: BatchDeleteByResourceArns) => T;
|
|
55
|
+
_: (name: string, value: any) => T;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
export interface BatchDeleteInstrumentationConfigurationsRequest {
|
|
59
|
+
DeletionTarget: BatchDeleteDeletionTarget | undefined;
|
|
60
|
+
}
|
|
61
|
+
export interface BatchDeleteError {
|
|
62
|
+
ResourceArn: string | undefined;
|
|
63
|
+
Code: BatchDeleteErrorCode | undefined;
|
|
64
|
+
Message: string | undefined;
|
|
65
|
+
}
|
|
66
|
+
export interface BatchDeleteSuccessfulDeletion {
|
|
67
|
+
ResourceArn?: string | undefined;
|
|
68
|
+
SignalType?: string | undefined;
|
|
69
|
+
LocationHash?: string | undefined;
|
|
70
|
+
}
|
|
71
|
+
export interface BatchDeleteInstrumentationConfigurationsResponse {
|
|
72
|
+
DeletedCount: number | undefined;
|
|
73
|
+
SuccessfulDeletions: BatchDeleteSuccessfulDeletion[] | undefined;
|
|
74
|
+
Errors: BatchDeleteError[] | undefined;
|
|
75
|
+
}
|
|
15
76
|
export interface BatchGetServiceLevelObjectiveBudgetReportInput {
|
|
16
77
|
Timestamp: Date | undefined;
|
|
17
78
|
SloIds: string[] | undefined;
|
|
@@ -222,7 +283,179 @@ export interface BatchUpdateExclusionWindowsOutput {
|
|
|
222
283
|
SloIds: string[] | undefined;
|
|
223
284
|
Errors: BatchUpdateExclusionWindowsError[] | undefined;
|
|
224
285
|
}
|
|
286
|
+
export interface CaptureLimitsConfig {
|
|
287
|
+
MaxHits?: number | undefined;
|
|
288
|
+
MaxStringLength?: number | undefined;
|
|
289
|
+
MaxCollectionWidth?: number | undefined;
|
|
290
|
+
MaxCollectionDepth?: number | undefined;
|
|
291
|
+
MaxStackFrames?: number | undefined;
|
|
292
|
+
MaxStackTraceSize?: number | undefined;
|
|
293
|
+
MaxObjectDepth?: number | undefined;
|
|
294
|
+
MaxFieldsPerObject?: number | undefined;
|
|
295
|
+
}
|
|
296
|
+
export interface CodeCaptureConfiguration {
|
|
297
|
+
CaptureArguments?: string[] | undefined;
|
|
298
|
+
CaptureReturn?: boolean | undefined;
|
|
299
|
+
CaptureStackTrace?: boolean | undefined;
|
|
300
|
+
CaptureLocals?: string[] | undefined;
|
|
301
|
+
CaptureLimits: CaptureLimitsConfig | undefined;
|
|
302
|
+
}
|
|
303
|
+
export type CaptureConfiguration =
|
|
304
|
+
| CaptureConfiguration.CodeCaptureMember
|
|
305
|
+
| CaptureConfiguration.$UnknownMember;
|
|
306
|
+
export declare namespace CaptureConfiguration {
|
|
307
|
+
interface CodeCaptureMember {
|
|
308
|
+
CodeCapture: CodeCaptureConfiguration;
|
|
309
|
+
$unknown?: never;
|
|
310
|
+
}
|
|
311
|
+
interface $UnknownMember {
|
|
312
|
+
CodeCapture?: never;
|
|
313
|
+
$unknown: [string, any];
|
|
314
|
+
}
|
|
315
|
+
interface Visitor<T> {
|
|
316
|
+
CodeCapture: (value: CodeCaptureConfiguration) => T;
|
|
317
|
+
_: (name: string, value: any) => T;
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
export interface CodeLocation {
|
|
321
|
+
Language: ProgrammingLanguage | undefined;
|
|
322
|
+
CodeUnit?: string | undefined;
|
|
323
|
+
ClassName?: string | undefined;
|
|
324
|
+
MethodName?: string | undefined;
|
|
325
|
+
FilePath: string | undefined;
|
|
326
|
+
LineNumber?: number | undefined;
|
|
327
|
+
}
|
|
328
|
+
export type Location = Location.CodeLocationMember | Location.$UnknownMember;
|
|
329
|
+
export declare namespace Location {
|
|
330
|
+
interface CodeLocationMember {
|
|
331
|
+
CodeLocation: CodeLocation;
|
|
332
|
+
$unknown?: never;
|
|
333
|
+
}
|
|
334
|
+
interface $UnknownMember {
|
|
335
|
+
CodeLocation?: never;
|
|
336
|
+
$unknown: [string, any];
|
|
337
|
+
}
|
|
338
|
+
interface Visitor<T> {
|
|
339
|
+
CodeLocation: (value: CodeLocation) => T;
|
|
340
|
+
_: (name: string, value: any) => T;
|
|
341
|
+
}
|
|
342
|
+
}
|
|
343
|
+
export interface Tag {
|
|
344
|
+
Key: string | undefined;
|
|
345
|
+
Value: string | undefined;
|
|
346
|
+
}
|
|
347
|
+
export interface CreateInstrumentationConfigurationRequest {
|
|
348
|
+
InstrumentationType: InstrumentationType | undefined;
|
|
349
|
+
Service: string | undefined;
|
|
350
|
+
Environment: string | undefined;
|
|
351
|
+
SignalType: DynamicInstrumentationSignalType | undefined;
|
|
352
|
+
Location: Location | undefined;
|
|
353
|
+
Description?: string | undefined;
|
|
354
|
+
ExpiresAt?: Date | undefined;
|
|
355
|
+
AttributeFilters?: Record<string, string>[] | undefined;
|
|
356
|
+
CaptureConfiguration: CaptureConfiguration | undefined;
|
|
357
|
+
Tags?: Tag[] | undefined;
|
|
358
|
+
}
|
|
359
|
+
export interface CreateInstrumentationConfigurationResponse {
|
|
360
|
+
InstrumentationType: InstrumentationType | undefined;
|
|
361
|
+
Service: string | undefined;
|
|
362
|
+
Environment: string | undefined;
|
|
363
|
+
SignalType: DynamicInstrumentationSignalType | undefined;
|
|
364
|
+
Location: Location | undefined;
|
|
365
|
+
LocationHash: string | undefined;
|
|
366
|
+
Description?: string | undefined;
|
|
367
|
+
ExpiresAt?: Date | undefined;
|
|
368
|
+
AttributeFilters?: Record<string, string>[] | undefined;
|
|
369
|
+
CaptureConfiguration: CaptureConfiguration | undefined;
|
|
370
|
+
CreatedAt: Date | undefined;
|
|
371
|
+
ARN: string | undefined;
|
|
372
|
+
}
|
|
225
373
|
export interface DeleteGroupingConfigurationOutput {}
|
|
374
|
+
export type LocationIdentifier =
|
|
375
|
+
| LocationIdentifier.CodeLocationMember
|
|
376
|
+
| LocationIdentifier.LocationHashMember
|
|
377
|
+
| LocationIdentifier.$UnknownMember;
|
|
378
|
+
export declare namespace LocationIdentifier {
|
|
379
|
+
interface CodeLocationMember {
|
|
380
|
+
CodeLocation: CodeLocation;
|
|
381
|
+
LocationHash?: never;
|
|
382
|
+
$unknown?: never;
|
|
383
|
+
}
|
|
384
|
+
interface LocationHashMember {
|
|
385
|
+
CodeLocation?: never;
|
|
386
|
+
LocationHash: string;
|
|
387
|
+
$unknown?: never;
|
|
388
|
+
}
|
|
389
|
+
interface $UnknownMember {
|
|
390
|
+
CodeLocation?: never;
|
|
391
|
+
LocationHash?: never;
|
|
392
|
+
$unknown: [string, any];
|
|
393
|
+
}
|
|
394
|
+
interface Visitor<T> {
|
|
395
|
+
CodeLocation: (value: CodeLocation) => T;
|
|
396
|
+
LocationHash: (value: string) => T;
|
|
397
|
+
_: (name: string, value: any) => T;
|
|
398
|
+
}
|
|
399
|
+
}
|
|
400
|
+
export interface DeleteInstrumentationConfigurationRequest {
|
|
401
|
+
InstrumentationType: InstrumentationType | undefined;
|
|
402
|
+
Service: string | undefined;
|
|
403
|
+
Environment: string | undefined;
|
|
404
|
+
SignalType: DynamicInstrumentationSignalType | undefined;
|
|
405
|
+
LocationIdentifier: LocationIdentifier | undefined;
|
|
406
|
+
}
|
|
407
|
+
export interface DeleteInstrumentationConfigurationResponse {
|
|
408
|
+
DeletionStatus: DynamicInstrumentationDeletionStatus | undefined;
|
|
409
|
+
}
|
|
410
|
+
export interface GetInstrumentationConfigurationRequest {
|
|
411
|
+
InstrumentationType: InstrumentationType | undefined;
|
|
412
|
+
Service: string | undefined;
|
|
413
|
+
Environment: string | undefined;
|
|
414
|
+
SignalType: DynamicInstrumentationSignalType | undefined;
|
|
415
|
+
LocationIdentifier: LocationIdentifier | undefined;
|
|
416
|
+
}
|
|
417
|
+
export interface InstrumentationConfiguration {
|
|
418
|
+
InstrumentationType: InstrumentationType | undefined;
|
|
419
|
+
Service: string | undefined;
|
|
420
|
+
Environment: string | undefined;
|
|
421
|
+
SignalType: DynamicInstrumentationSignalType | undefined;
|
|
422
|
+
Location: Location | undefined;
|
|
423
|
+
LocationHash: string | undefined;
|
|
424
|
+
Description?: string | undefined;
|
|
425
|
+
ExpiresAt?: Date | undefined;
|
|
426
|
+
AttributeFilters?: Record<string, string>[] | undefined;
|
|
427
|
+
CaptureConfiguration: CaptureConfiguration | undefined;
|
|
428
|
+
CreatedAt: Date | undefined;
|
|
429
|
+
ARN: string | undefined;
|
|
430
|
+
}
|
|
431
|
+
export interface GetInstrumentationConfigurationResponse {
|
|
432
|
+
Configuration: InstrumentationConfiguration | undefined;
|
|
433
|
+
}
|
|
434
|
+
export interface GetInstrumentationConfigurationStatusRequest {
|
|
435
|
+
InstrumentationType: InstrumentationType | undefined;
|
|
436
|
+
Service: string | undefined;
|
|
437
|
+
Environment: string | undefined;
|
|
438
|
+
SignalType: DynamicInstrumentationSignalType | undefined;
|
|
439
|
+
LocationIdentifier: LocationIdentifier | undefined;
|
|
440
|
+
Status?: InstrumentationConfigurationStatus | undefined;
|
|
441
|
+
StartTime?: Date | undefined;
|
|
442
|
+
EndTime?: Date | undefined;
|
|
443
|
+
MaxResults?: number | undefined;
|
|
444
|
+
NextToken?: string | undefined;
|
|
445
|
+
}
|
|
446
|
+
export interface InstrumentationStatusEvent {
|
|
447
|
+
Time: Date | undefined;
|
|
448
|
+
ErrorCause?: InstrumentationErrorCause | undefined;
|
|
449
|
+
}
|
|
450
|
+
export interface GetInstrumentationConfigurationStatusResponse {
|
|
451
|
+
Service: string | undefined;
|
|
452
|
+
Environment: string | undefined;
|
|
453
|
+
SignalType: DynamicInstrumentationSignalType | undefined;
|
|
454
|
+
Location: Location | undefined;
|
|
455
|
+
Status: InstrumentationConfigurationStatus | undefined;
|
|
456
|
+
Events: InstrumentationStatusEvent[] | undefined;
|
|
457
|
+
NextToken?: string | undefined;
|
|
458
|
+
}
|
|
226
459
|
export interface GetServiceInput {
|
|
227
460
|
StartTime: Date | undefined;
|
|
228
461
|
EndTime: Date | undefined;
|
|
@@ -417,6 +650,37 @@ export interface ListGroupingAttributeDefinitionsOutput {
|
|
|
417
650
|
UpdatedAt?: Date | undefined;
|
|
418
651
|
NextToken?: string | undefined;
|
|
419
652
|
}
|
|
653
|
+
export interface InstrumentationConfigurationWithoutServiceEnv {
|
|
654
|
+
InstrumentationType: InstrumentationType | undefined;
|
|
655
|
+
SignalType: DynamicInstrumentationSignalType | undefined;
|
|
656
|
+
Location: Location | undefined;
|
|
657
|
+
LocationHash: string | undefined;
|
|
658
|
+
Description?: string | undefined;
|
|
659
|
+
ExpiresAt?: Date | undefined;
|
|
660
|
+
AttributeFilters?: Record<string, string>[] | undefined;
|
|
661
|
+
CaptureConfiguration: CaptureConfiguration | undefined;
|
|
662
|
+
CreatedAt: Date | undefined;
|
|
663
|
+
ARN: string | undefined;
|
|
664
|
+
}
|
|
665
|
+
export interface InstrumentationConfigurationsPage {
|
|
666
|
+
Service: string | undefined;
|
|
667
|
+
Environment: string | undefined;
|
|
668
|
+
Changed: boolean | undefined;
|
|
669
|
+
LatestConfigurations?:
|
|
670
|
+
| InstrumentationConfigurationWithoutServiceEnv[]
|
|
671
|
+
| undefined;
|
|
672
|
+
SyncedAt: Date | undefined;
|
|
673
|
+
SyncInterval: number | undefined;
|
|
674
|
+
NextToken?: string | undefined;
|
|
675
|
+
}
|
|
676
|
+
export interface ListInstrumentationConfigurationsRequest {
|
|
677
|
+
Service: string | undefined;
|
|
678
|
+
Environment: string | undefined;
|
|
679
|
+
InstrumentationType: InstrumentationType | undefined;
|
|
680
|
+
SyncedAt?: Date | undefined;
|
|
681
|
+
MaxResults?: number | undefined;
|
|
682
|
+
NextToken?: string | undefined;
|
|
683
|
+
}
|
|
420
684
|
export interface ListServiceDependenciesInput {
|
|
421
685
|
StartTime: Date | undefined;
|
|
422
686
|
EndTime: Date | undefined;
|
|
@@ -528,10 +792,6 @@ export interface ListServiceStatesOutput {
|
|
|
528
792
|
export interface ListTagsForResourceRequest {
|
|
529
793
|
ResourceArn: string | undefined;
|
|
530
794
|
}
|
|
531
|
-
export interface Tag {
|
|
532
|
-
Key: string | undefined;
|
|
533
|
-
Value: string | undefined;
|
|
534
|
-
}
|
|
535
795
|
export interface ListTagsForResourceResponse {
|
|
536
796
|
Tags?: Tag[] | undefined;
|
|
537
797
|
}
|
|
@@ -545,6 +805,32 @@ export interface GroupingConfiguration {
|
|
|
545
805
|
export interface PutGroupingConfigurationOutput {
|
|
546
806
|
GroupingConfiguration: GroupingConfiguration | undefined;
|
|
547
807
|
}
|
|
808
|
+
export interface InstrumentationConfigurationStatusReport {
|
|
809
|
+
InstrumentationType: InstrumentationType | undefined;
|
|
810
|
+
SignalType: DynamicInstrumentationSignalType | undefined;
|
|
811
|
+
LocationHash: string | undefined;
|
|
812
|
+
Status: InstrumentationConfigurationStatus | undefined;
|
|
813
|
+
Time: Date | undefined;
|
|
814
|
+
ErrorCause?: InstrumentationErrorCause | undefined;
|
|
815
|
+
}
|
|
816
|
+
export interface ReportInstrumentationConfigurationStatusRequest {
|
|
817
|
+
Service: string | undefined;
|
|
818
|
+
Environment: string | undefined;
|
|
819
|
+
Configurations: InstrumentationConfigurationStatusReport[] | undefined;
|
|
820
|
+
}
|
|
821
|
+
export interface UnprocessedStatusEvent {
|
|
822
|
+
InstrumentationType: InstrumentationType | undefined;
|
|
823
|
+
SignalType: DynamicInstrumentationSignalType | undefined;
|
|
824
|
+
LocationHash: string | undefined;
|
|
825
|
+
Status: InstrumentationConfigurationStatus | undefined;
|
|
826
|
+
Time: Date | undefined;
|
|
827
|
+
FailedReason: UnprocessedStatusEventFailureReason | undefined;
|
|
828
|
+
}
|
|
829
|
+
export interface ReportInstrumentationConfigurationStatusResponse {
|
|
830
|
+
Service: string | undefined;
|
|
831
|
+
Environment: string | undefined;
|
|
832
|
+
UnprocessedStatusEvents: UnprocessedStatusEvent[] | undefined;
|
|
833
|
+
}
|
|
548
834
|
export interface BurnRateConfiguration {
|
|
549
835
|
LookBackWindowMinutes: number | undefined;
|
|
550
836
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
GetInstrumentationConfigurationStatusCommandInput,
|
|
4
|
+
GetInstrumentationConfigurationStatusCommandOutput,
|
|
5
|
+
} from "../commands/GetInstrumentationConfigurationStatusCommand";
|
|
6
|
+
import { ApplicationSignalsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateGetInstrumentationConfigurationStatus: (
|
|
8
|
+
config: ApplicationSignalsPaginationConfiguration,
|
|
9
|
+
input: GetInstrumentationConfigurationStatusCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<GetInstrumentationConfigurationStatusCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListInstrumentationConfigurationsCommandInput,
|
|
4
|
+
ListInstrumentationConfigurationsCommandOutput,
|
|
5
|
+
} from "../commands/ListInstrumentationConfigurationsCommand";
|
|
6
|
+
import { ApplicationSignalsPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListInstrumentationConfigurations: (
|
|
8
|
+
config: ApplicationSignalsPaginationConfiguration,
|
|
9
|
+
input: ListInstrumentationConfigurationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListInstrumentationConfigurationsCommandOutput>;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
|
+
export * from "./GetInstrumentationConfigurationStatusPaginator";
|
|
2
3
|
export * from "./ListEntityEventsPaginator";
|
|
4
|
+
export * from "./ListInstrumentationConfigurationsPaginator";
|
|
3
5
|
export * from "./ListServiceDependenciesPaginator";
|
|
4
6
|
export * from "./ListServiceDependentsPaginator";
|
|
5
7
|
export * from "./ListServiceLevelObjectiveExclusionWindowsPaginator";
|
|
@@ -17,6 +17,12 @@ export declare var AttributeFilter$: StaticStructureSchema;
|
|
|
17
17
|
export declare var AuditFinding$: StaticStructureSchema;
|
|
18
18
|
export declare var AuditorResult$: StaticStructureSchema;
|
|
19
19
|
export declare var AuditTarget$: StaticStructureSchema;
|
|
20
|
+
export declare var BatchDeleteByResourceArns$: StaticStructureSchema;
|
|
21
|
+
export declare var BatchDeleteError$: StaticStructureSchema;
|
|
22
|
+
export declare var BatchDeleteInstrumentationConfigurationsRequest$: StaticStructureSchema;
|
|
23
|
+
export declare var BatchDeleteInstrumentationConfigurationsResponse$: StaticStructureSchema;
|
|
24
|
+
export declare var BatchDeleteScope$: StaticStructureSchema;
|
|
25
|
+
export declare var BatchDeleteSuccessfulDeletion$: StaticStructureSchema;
|
|
20
26
|
export declare var BatchGetServiceLevelObjectiveBudgetReportInput$: StaticStructureSchema;
|
|
21
27
|
export declare var BatchGetServiceLevelObjectiveBudgetReportOutput$: StaticStructureSchema;
|
|
22
28
|
export declare var BatchUpdateExclusionWindowsError$: StaticStructureSchema;
|
|
@@ -25,11 +31,18 @@ export declare var BatchUpdateExclusionWindowsOutput$: StaticStructureSchema;
|
|
|
25
31
|
export declare var BurnRateConfiguration$: StaticStructureSchema;
|
|
26
32
|
export declare var CalendarInterval$: StaticStructureSchema;
|
|
27
33
|
export declare var CanaryEntity$: StaticStructureSchema;
|
|
34
|
+
export declare var CaptureLimitsConfig$: StaticStructureSchema;
|
|
28
35
|
export declare var ChangeEvent$: StaticStructureSchema;
|
|
36
|
+
export declare var CodeCaptureConfiguration$: StaticStructureSchema;
|
|
37
|
+
export declare var CodeLocation$: StaticStructureSchema;
|
|
29
38
|
export declare var CompositeSliConfig$: StaticStructureSchema;
|
|
39
|
+
export declare var CreateInstrumentationConfigurationRequest$: StaticStructureSchema;
|
|
40
|
+
export declare var CreateInstrumentationConfigurationResponse$: StaticStructureSchema;
|
|
30
41
|
export declare var CreateServiceLevelObjectiveInput$: StaticStructureSchema;
|
|
31
42
|
export declare var CreateServiceLevelObjectiveOutput$: StaticStructureSchema;
|
|
32
43
|
export declare var DeleteGroupingConfigurationOutput$: StaticStructureSchema;
|
|
44
|
+
export declare var DeleteInstrumentationConfigurationRequest$: StaticStructureSchema;
|
|
45
|
+
export declare var DeleteInstrumentationConfigurationResponse$: StaticStructureSchema;
|
|
33
46
|
export declare var DeleteServiceLevelObjectiveInput$: StaticStructureSchema;
|
|
34
47
|
export declare var DeleteServiceLevelObjectiveOutput$: StaticStructureSchema;
|
|
35
48
|
export declare var DependencyConfig$: StaticStructureSchema;
|
|
@@ -37,6 +50,10 @@ export declare var DependencyGraph$: StaticStructureSchema;
|
|
|
37
50
|
export declare var Dimension$: StaticStructureSchema;
|
|
38
51
|
export declare var Edge$: StaticStructureSchema;
|
|
39
52
|
export declare var ExclusionWindow$: StaticStructureSchema;
|
|
53
|
+
export declare var GetInstrumentationConfigurationRequest$: StaticStructureSchema;
|
|
54
|
+
export declare var GetInstrumentationConfigurationResponse$: StaticStructureSchema;
|
|
55
|
+
export declare var GetInstrumentationConfigurationStatusRequest$: StaticStructureSchema;
|
|
56
|
+
export declare var GetInstrumentationConfigurationStatusResponse$: StaticStructureSchema;
|
|
40
57
|
export declare var GetServiceInput$: StaticStructureSchema;
|
|
41
58
|
export declare var GetServiceLevelObjectiveInput$: StaticStructureSchema;
|
|
42
59
|
export declare var GetServiceLevelObjectiveOutput$: StaticStructureSchema;
|
|
@@ -44,12 +61,18 @@ export declare var GetServiceOutput$: StaticStructureSchema;
|
|
|
44
61
|
export declare var Goal$: StaticStructureSchema;
|
|
45
62
|
export declare var GroupingAttributeDefinition$: StaticStructureSchema;
|
|
46
63
|
export declare var GroupingConfiguration$: StaticStructureSchema;
|
|
64
|
+
export declare var InstrumentationConfiguration$: StaticStructureSchema;
|
|
65
|
+
export declare var InstrumentationConfigurationsPage$: StaticStructureSchema;
|
|
66
|
+
export declare var InstrumentationConfigurationStatusReport$: StaticStructureSchema;
|
|
67
|
+
export declare var InstrumentationConfigurationWithoutServiceEnv$: StaticStructureSchema;
|
|
68
|
+
export declare var InstrumentationStatusEvent$: StaticStructureSchema;
|
|
47
69
|
export declare var ListAuditFindingsInput$: StaticStructureSchema;
|
|
48
70
|
export declare var ListAuditFindingsOutput$: StaticStructureSchema;
|
|
49
71
|
export declare var ListEntityEventsInput$: StaticStructureSchema;
|
|
50
72
|
export declare var ListEntityEventsOutput$: StaticStructureSchema;
|
|
51
73
|
export declare var ListGroupingAttributeDefinitionsInput$: StaticStructureSchema;
|
|
52
74
|
export declare var ListGroupingAttributeDefinitionsOutput$: StaticStructureSchema;
|
|
75
|
+
export declare var ListInstrumentationConfigurationsRequest$: StaticStructureSchema;
|
|
53
76
|
export declare var ListServiceDependenciesInput$: StaticStructureSchema;
|
|
54
77
|
export declare var ListServiceDependenciesOutput$: StaticStructureSchema;
|
|
55
78
|
export declare var ListServiceDependentsInput$: StaticStructureSchema;
|
|
@@ -76,6 +99,8 @@ export declare var Node$: StaticStructureSchema;
|
|
|
76
99
|
export declare var PutGroupingConfigurationInput$: StaticStructureSchema;
|
|
77
100
|
export declare var PutGroupingConfigurationOutput$: StaticStructureSchema;
|
|
78
101
|
export declare var RecurrenceRule$: StaticStructureSchema;
|
|
102
|
+
export declare var ReportInstrumentationConfigurationStatusRequest$: StaticStructureSchema;
|
|
103
|
+
export declare var ReportInstrumentationConfigurationStatusResponse$: StaticStructureSchema;
|
|
79
104
|
export declare var RequestBasedServiceLevelIndicator$: StaticStructureSchema;
|
|
80
105
|
export declare var RequestBasedServiceLevelIndicatorConfig$: StaticStructureSchema;
|
|
81
106
|
export declare var RequestBasedServiceLevelIndicatorMetric$: StaticStructureSchema;
|
|
@@ -105,25 +130,36 @@ export declare var StartDiscoveryOutput$: StaticStructureSchema;
|
|
|
105
130
|
export declare var Tag$: StaticStructureSchema;
|
|
106
131
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
107
132
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
133
|
+
export declare var UnprocessedStatusEvent$: StaticStructureSchema;
|
|
108
134
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
109
135
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
110
136
|
export declare var UpdateServiceLevelObjectiveInput$: StaticStructureSchema;
|
|
111
137
|
export declare var UpdateServiceLevelObjectiveOutput$: StaticStructureSchema;
|
|
112
138
|
export declare var Window$: StaticStructureSchema;
|
|
113
139
|
export declare var AuditTargetEntity$: StaticUnionSchema;
|
|
140
|
+
export declare var BatchDeleteDeletionTarget$: StaticUnionSchema;
|
|
141
|
+
export declare var CaptureConfiguration$: StaticUnionSchema;
|
|
114
142
|
export declare var CompositeSliComponent$: StaticUnionSchema;
|
|
115
143
|
export declare var Interval$: StaticUnionSchema;
|
|
144
|
+
export declare var Location$: StaticUnionSchema;
|
|
145
|
+
export declare var LocationIdentifier$: StaticUnionSchema;
|
|
116
146
|
export declare var MonitoredRequestCountMetricDataQueries$: StaticUnionSchema;
|
|
147
|
+
export declare var BatchDeleteInstrumentationConfigurations$: StaticOperationSchema;
|
|
117
148
|
export declare var BatchGetServiceLevelObjectiveBudgetReport$: StaticOperationSchema;
|
|
118
149
|
export declare var BatchUpdateExclusionWindows$: StaticOperationSchema;
|
|
150
|
+
export declare var CreateInstrumentationConfiguration$: StaticOperationSchema;
|
|
119
151
|
export declare var CreateServiceLevelObjective$: StaticOperationSchema;
|
|
120
152
|
export declare var DeleteGroupingConfiguration$: StaticOperationSchema;
|
|
153
|
+
export declare var DeleteInstrumentationConfiguration$: StaticOperationSchema;
|
|
121
154
|
export declare var DeleteServiceLevelObjective$: StaticOperationSchema;
|
|
155
|
+
export declare var GetInstrumentationConfiguration$: StaticOperationSchema;
|
|
156
|
+
export declare var GetInstrumentationConfigurationStatus$: StaticOperationSchema;
|
|
122
157
|
export declare var GetService$: StaticOperationSchema;
|
|
123
158
|
export declare var GetServiceLevelObjective$: StaticOperationSchema;
|
|
124
159
|
export declare var ListAuditFindings$: StaticOperationSchema;
|
|
125
160
|
export declare var ListEntityEvents$: StaticOperationSchema;
|
|
126
161
|
export declare var ListGroupingAttributeDefinitions$: StaticOperationSchema;
|
|
162
|
+
export declare var ListInstrumentationConfigurations$: StaticOperationSchema;
|
|
127
163
|
export declare var ListServiceDependencies$: StaticOperationSchema;
|
|
128
164
|
export declare var ListServiceDependents$: StaticOperationSchema;
|
|
129
165
|
export declare var ListServiceLevelObjectiveExclusionWindows$: StaticOperationSchema;
|
|
@@ -133,6 +169,7 @@ export declare var ListServices$: StaticOperationSchema;
|
|
|
133
169
|
export declare var ListServiceStates$: StaticOperationSchema;
|
|
134
170
|
export declare var ListTagsForResource$: StaticOperationSchema;
|
|
135
171
|
export declare var PutGroupingConfiguration$: StaticOperationSchema;
|
|
172
|
+
export declare var ReportInstrumentationConfigurationStatus$: StaticOperationSchema;
|
|
136
173
|
export declare var StartDiscovery$: StaticOperationSchema;
|
|
137
174
|
export declare var TagResource$: StaticOperationSchema;
|
|
138
175
|
export declare var UntagResource$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-application-signals",
|
|
3
3
|
"description": "AWS SDK for JavaScript Application Signals Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1074.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.974.23",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.58",
|
|
26
26
|
"@aws-sdk/types": "^3.973.13",
|
|
27
27
|
"@smithy/core": "^3.24.6",
|
|
28
28
|
"@smithy/fetch-http-handler": "^5.4.6",
|