@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
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ApplicationSignalsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ApplicationSignalsClient";
|
|
8
|
+
import {
|
|
9
|
+
DeleteInstrumentationConfigurationRequest,
|
|
10
|
+
DeleteInstrumentationConfigurationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteInstrumentationConfigurationCommandInput
|
|
15
|
+
extends DeleteInstrumentationConfigurationRequest {}
|
|
16
|
+
export interface DeleteInstrumentationConfigurationCommandOutput
|
|
17
|
+
extends DeleteInstrumentationConfigurationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DeleteInstrumentationConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DeleteInstrumentationConfigurationCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
DeleteInstrumentationConfigurationCommandInput,
|
|
24
|
+
DeleteInstrumentationConfigurationCommandOutput,
|
|
25
|
+
ApplicationSignalsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DeleteInstrumentationConfigurationCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
DeleteInstrumentationConfigurationCommandInput,
|
|
33
|
+
DeleteInstrumentationConfigurationCommandOutput,
|
|
34
|
+
ApplicationSignalsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class DeleteInstrumentationConfigurationCommand extends DeleteInstrumentationConfigurationCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: DeleteInstrumentationConfigurationRequest;
|
|
46
|
+
output: DeleteInstrumentationConfigurationResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: DeleteInstrumentationConfigurationCommandInput;
|
|
50
|
+
output: DeleteInstrumentationConfigurationCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ApplicationSignalsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ApplicationSignalsClient";
|
|
8
|
+
import {
|
|
9
|
+
GetInstrumentationConfigurationRequest,
|
|
10
|
+
GetInstrumentationConfigurationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetInstrumentationConfigurationCommandInput
|
|
15
|
+
extends GetInstrumentationConfigurationRequest {}
|
|
16
|
+
export interface GetInstrumentationConfigurationCommandOutput
|
|
17
|
+
extends GetInstrumentationConfigurationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetInstrumentationConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetInstrumentationConfigurationCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
GetInstrumentationConfigurationCommandInput,
|
|
24
|
+
GetInstrumentationConfigurationCommandOutput,
|
|
25
|
+
ApplicationSignalsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetInstrumentationConfigurationCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
GetInstrumentationConfigurationCommandInput,
|
|
33
|
+
GetInstrumentationConfigurationCommandOutput,
|
|
34
|
+
ApplicationSignalsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class GetInstrumentationConfigurationCommand extends GetInstrumentationConfigurationCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: GetInstrumentationConfigurationRequest;
|
|
46
|
+
output: GetInstrumentationConfigurationResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: GetInstrumentationConfigurationCommandInput;
|
|
50
|
+
output: GetInstrumentationConfigurationCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ApplicationSignalsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ApplicationSignalsClient";
|
|
8
|
+
import {
|
|
9
|
+
GetInstrumentationConfigurationStatusRequest,
|
|
10
|
+
GetInstrumentationConfigurationStatusResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetInstrumentationConfigurationStatusCommandInput
|
|
15
|
+
extends GetInstrumentationConfigurationStatusRequest {}
|
|
16
|
+
export interface GetInstrumentationConfigurationStatusCommandOutput
|
|
17
|
+
extends GetInstrumentationConfigurationStatusResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetInstrumentationConfigurationStatusCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetInstrumentationConfigurationStatusCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
GetInstrumentationConfigurationStatusCommandInput,
|
|
24
|
+
GetInstrumentationConfigurationStatusCommandOutput,
|
|
25
|
+
ApplicationSignalsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetInstrumentationConfigurationStatusCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
GetInstrumentationConfigurationStatusCommandInput,
|
|
33
|
+
GetInstrumentationConfigurationStatusCommandOutput,
|
|
34
|
+
ApplicationSignalsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class GetInstrumentationConfigurationStatusCommand extends GetInstrumentationConfigurationStatusCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: GetInstrumentationConfigurationStatusRequest;
|
|
46
|
+
output: GetInstrumentationConfigurationStatusResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: GetInstrumentationConfigurationStatusCommandInput;
|
|
50
|
+
output: GetInstrumentationConfigurationStatusCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ApplicationSignalsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ApplicationSignalsClient";
|
|
8
|
+
import {
|
|
9
|
+
InstrumentationConfigurationsPage,
|
|
10
|
+
ListInstrumentationConfigurationsRequest,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListInstrumentationConfigurationsCommandInput
|
|
15
|
+
extends ListInstrumentationConfigurationsRequest {}
|
|
16
|
+
export interface ListInstrumentationConfigurationsCommandOutput
|
|
17
|
+
extends InstrumentationConfigurationsPage,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListInstrumentationConfigurationsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListInstrumentationConfigurationsCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ListInstrumentationConfigurationsCommandInput,
|
|
24
|
+
ListInstrumentationConfigurationsCommandOutput,
|
|
25
|
+
ApplicationSignalsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ListInstrumentationConfigurationsCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
ListInstrumentationConfigurationsCommandInput,
|
|
33
|
+
ListInstrumentationConfigurationsCommandOutput,
|
|
34
|
+
ApplicationSignalsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class ListInstrumentationConfigurationsCommand extends ListInstrumentationConfigurationsCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: ListInstrumentationConfigurationsRequest;
|
|
46
|
+
output: InstrumentationConfigurationsPage;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: ListInstrumentationConfigurationsCommandInput;
|
|
50
|
+
output: ListInstrumentationConfigurationsCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ApplicationSignalsClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../ApplicationSignalsClient";
|
|
8
|
+
import {
|
|
9
|
+
ReportInstrumentationConfigurationStatusRequest,
|
|
10
|
+
ReportInstrumentationConfigurationStatusResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ReportInstrumentationConfigurationStatusCommandInput
|
|
15
|
+
extends ReportInstrumentationConfigurationStatusRequest {}
|
|
16
|
+
export interface ReportInstrumentationConfigurationStatusCommandOutput
|
|
17
|
+
extends ReportInstrumentationConfigurationStatusResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ReportInstrumentationConfigurationStatusCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ReportInstrumentationConfigurationStatusCommandInput
|
|
22
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
|
+
ReportInstrumentationConfigurationStatusCommandInput,
|
|
24
|
+
ReportInstrumentationConfigurationStatusCommandOutput,
|
|
25
|
+
ApplicationSignalsClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: ReportInstrumentationConfigurationStatusCommandInput
|
|
31
|
+
): import("@smithy/core/client").CommandImpl<
|
|
32
|
+
ReportInstrumentationConfigurationStatusCommandInput,
|
|
33
|
+
ReportInstrumentationConfigurationStatusCommandOutput,
|
|
34
|
+
ApplicationSignalsClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): {
|
|
39
|
+
[x: string]: unknown;
|
|
40
|
+
};
|
|
41
|
+
};
|
|
42
|
+
export declare class ReportInstrumentationConfigurationStatusCommand extends ReportInstrumentationConfigurationStatusCommand_base {
|
|
43
|
+
protected static __types: {
|
|
44
|
+
api: {
|
|
45
|
+
input: ReportInstrumentationConfigurationStatusRequest;
|
|
46
|
+
output: ReportInstrumentationConfigurationStatusResponse;
|
|
47
|
+
};
|
|
48
|
+
sdk: {
|
|
49
|
+
input: ReportInstrumentationConfigurationStatusCommandInput;
|
|
50
|
+
output: ReportInstrumentationConfigurationStatusCommandOutput;
|
|
51
|
+
};
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -1,13 +1,19 @@
|
|
|
1
|
+
export * from "./BatchDeleteInstrumentationConfigurationsCommand";
|
|
1
2
|
export * from "./BatchGetServiceLevelObjectiveBudgetReportCommand";
|
|
2
3
|
export * from "./BatchUpdateExclusionWindowsCommand";
|
|
4
|
+
export * from "./CreateInstrumentationConfigurationCommand";
|
|
3
5
|
export * from "./CreateServiceLevelObjectiveCommand";
|
|
4
6
|
export * from "./DeleteGroupingConfigurationCommand";
|
|
7
|
+
export * from "./DeleteInstrumentationConfigurationCommand";
|
|
5
8
|
export * from "./DeleteServiceLevelObjectiveCommand";
|
|
9
|
+
export * from "./GetInstrumentationConfigurationCommand";
|
|
10
|
+
export * from "./GetInstrumentationConfigurationStatusCommand";
|
|
6
11
|
export * from "./GetServiceCommand";
|
|
7
12
|
export * from "./GetServiceLevelObjectiveCommand";
|
|
8
13
|
export * from "./ListAuditFindingsCommand";
|
|
9
14
|
export * from "./ListEntityEventsCommand";
|
|
10
15
|
export * from "./ListGroupingAttributeDefinitionsCommand";
|
|
16
|
+
export * from "./ListInstrumentationConfigurationsCommand";
|
|
11
17
|
export * from "./ListServiceDependenciesCommand";
|
|
12
18
|
export * from "./ListServiceDependentsCommand";
|
|
13
19
|
export * from "./ListServiceLevelObjectiveExclusionWindowsCommand";
|
|
@@ -17,6 +23,7 @@ export * from "./ListServiceStatesCommand";
|
|
|
17
23
|
export * from "./ListServicesCommand";
|
|
18
24
|
export * from "./ListTagsForResourceCommand";
|
|
19
25
|
export * from "./PutGroupingConfigurationCommand";
|
|
26
|
+
export * from "./ReportInstrumentationConfigurationStatusCommand";
|
|
20
27
|
export * from "./StartDiscoveryCommand";
|
|
21
28
|
export * from "./TagResourceCommand";
|
|
22
29
|
export * from "./UntagResourceCommand";
|
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
export declare const InstrumentationType: {
|
|
2
|
+
readonly BREAKPOINT: "BREAKPOINT";
|
|
3
|
+
readonly PROBE: "PROBE";
|
|
4
|
+
};
|
|
5
|
+
export type InstrumentationType =
|
|
6
|
+
(typeof InstrumentationType)[keyof typeof InstrumentationType];
|
|
7
|
+
export declare const BatchDeleteErrorCode: {
|
|
8
|
+
readonly ACCESS_DENIED: "AccessDeniedException";
|
|
9
|
+
readonly INTERNAL_SERVICE_ERROR: "InternalServiceException";
|
|
10
|
+
readonly RESOURCE_NOT_FOUND: "ResourceNotFoundException";
|
|
11
|
+
};
|
|
12
|
+
export type BatchDeleteErrorCode =
|
|
13
|
+
(typeof BatchDeleteErrorCode)[keyof typeof BatchDeleteErrorCode];
|
|
1
14
|
export declare const ServiceLevelObjectiveBudgetStatus: {
|
|
2
15
|
readonly BREACHED: "BREACHED";
|
|
3
16
|
readonly INSUFFICIENT_DATA: "INSUFFICIENT_DATA";
|
|
@@ -69,6 +82,41 @@ export declare const StandardUnit: {
|
|
|
69
82
|
readonly TERABYTES_SECOND: "Terabytes/Second";
|
|
70
83
|
};
|
|
71
84
|
export type StandardUnit = (typeof StandardUnit)[keyof typeof StandardUnit];
|
|
85
|
+
export declare const ProgrammingLanguage: {
|
|
86
|
+
readonly JAVA: "Java";
|
|
87
|
+
readonly JAVASCRIPT: "Javascript";
|
|
88
|
+
readonly PYTHON: "Python";
|
|
89
|
+
};
|
|
90
|
+
export type ProgrammingLanguage =
|
|
91
|
+
(typeof ProgrammingLanguage)[keyof typeof ProgrammingLanguage];
|
|
92
|
+
export declare const DynamicInstrumentationSignalType: {
|
|
93
|
+
readonly SNAPSHOT: "SNAPSHOT";
|
|
94
|
+
};
|
|
95
|
+
export type DynamicInstrumentationSignalType =
|
|
96
|
+
(typeof DynamicInstrumentationSignalType)[keyof typeof DynamicInstrumentationSignalType];
|
|
97
|
+
export declare const DynamicInstrumentationDeletionStatus: {
|
|
98
|
+
readonly DELETED: "DELETED";
|
|
99
|
+
};
|
|
100
|
+
export type DynamicInstrumentationDeletionStatus =
|
|
101
|
+
(typeof DynamicInstrumentationDeletionStatus)[keyof typeof DynamicInstrumentationDeletionStatus];
|
|
102
|
+
export declare const InstrumentationConfigurationStatus: {
|
|
103
|
+
readonly ACTIVE: "ACTIVE";
|
|
104
|
+
readonly DISABLED: "DISABLED";
|
|
105
|
+
readonly ERROR: "ERROR";
|
|
106
|
+
readonly READY: "READY";
|
|
107
|
+
};
|
|
108
|
+
export type InstrumentationConfigurationStatus =
|
|
109
|
+
(typeof InstrumentationConfigurationStatus)[keyof typeof InstrumentationConfigurationStatus];
|
|
110
|
+
export declare const InstrumentationErrorCause: {
|
|
111
|
+
readonly FILE_NOT_FOUND: "FILE_NOT_FOUND";
|
|
112
|
+
readonly LANGUAGE_MISMATCH: "LANGUAGE_MISMATCH";
|
|
113
|
+
readonly LINE_NOT_EXECUTABLE: "LINE_NOT_EXECUTABLE";
|
|
114
|
+
readonly METHOD_NOT_FOUND: "METHOD_NOT_FOUND";
|
|
115
|
+
readonly OVERLOADED_METHODS: "OVERLOADED_METHODS";
|
|
116
|
+
readonly RUNTIME_ERROR: "RUNTIME_ERROR";
|
|
117
|
+
};
|
|
118
|
+
export type InstrumentationErrorCause =
|
|
119
|
+
(typeof InstrumentationErrorCause)[keyof typeof InstrumentationErrorCause];
|
|
72
120
|
export declare const DetailLevel: {
|
|
73
121
|
readonly BRIEF: "BRIEF";
|
|
74
122
|
readonly DETAILED: "DETAILED";
|
|
@@ -94,6 +142,13 @@ export declare const ChangeEventType: {
|
|
|
94
142
|
};
|
|
95
143
|
export type ChangeEventType =
|
|
96
144
|
(typeof ChangeEventType)[keyof typeof ChangeEventType];
|
|
145
|
+
export declare const UnprocessedStatusEventFailureReason: {
|
|
146
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
147
|
+
readonly THROTTLED: "THROTTLED";
|
|
148
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
149
|
+
};
|
|
150
|
+
export type UnprocessedStatusEventFailureReason =
|
|
151
|
+
(typeof UnprocessedStatusEventFailureReason)[keyof typeof UnprocessedStatusEventFailureReason];
|
|
97
152
|
export declare const MetricSourceType: {
|
|
98
153
|
readonly APPMONITOR: "AppMonitor";
|
|
99
154
|
readonly CANARY: "Canary";
|