@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
|
@@ -1,3 +1,43 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const InstrumentationType: {
|
|
6
|
+
/**
|
|
7
|
+
* Temporary instrumentation that expires automatically (default 24 hours)
|
|
8
|
+
*/
|
|
9
|
+
readonly BREAKPOINT: "BREAKPOINT";
|
|
10
|
+
/**
|
|
11
|
+
* Permanent instrumentation that persists until explicitly deleted
|
|
12
|
+
*/
|
|
13
|
+
readonly PROBE: "PROBE";
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
export type InstrumentationType = (typeof InstrumentationType)[keyof typeof InstrumentationType];
|
|
19
|
+
/**
|
|
20
|
+
* @public
|
|
21
|
+
* @enum
|
|
22
|
+
*/
|
|
23
|
+
export declare const BatchDeleteErrorCode: {
|
|
24
|
+
/**
|
|
25
|
+
* Insufficient permissions to delete the configuration.
|
|
26
|
+
*/
|
|
27
|
+
readonly ACCESS_DENIED: "AccessDeniedException";
|
|
28
|
+
/**
|
|
29
|
+
* Internal service error for this item.
|
|
30
|
+
*/
|
|
31
|
+
readonly INTERNAL_SERVICE_ERROR: "InternalServiceException";
|
|
32
|
+
/**
|
|
33
|
+
* Configuration already deleted or expired.
|
|
34
|
+
*/
|
|
35
|
+
readonly RESOURCE_NOT_FOUND: "ResourceNotFoundException";
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* @public
|
|
39
|
+
*/
|
|
40
|
+
export type BatchDeleteErrorCode = (typeof BatchDeleteErrorCode)[keyof typeof BatchDeleteErrorCode];
|
|
1
41
|
/**
|
|
2
42
|
* @public
|
|
3
43
|
* @enum
|
|
@@ -114,6 +154,71 @@ export declare const StandardUnit: {
|
|
|
114
154
|
* @public
|
|
115
155
|
*/
|
|
116
156
|
export type StandardUnit = (typeof StandardUnit)[keyof typeof StandardUnit];
|
|
157
|
+
/**
|
|
158
|
+
* @public
|
|
159
|
+
* @enum
|
|
160
|
+
*/
|
|
161
|
+
export declare const ProgrammingLanguage: {
|
|
162
|
+
readonly JAVA: "Java";
|
|
163
|
+
readonly JAVASCRIPT: "Javascript";
|
|
164
|
+
readonly PYTHON: "Python";
|
|
165
|
+
};
|
|
166
|
+
/**
|
|
167
|
+
* @public
|
|
168
|
+
*/
|
|
169
|
+
export type ProgrammingLanguage = (typeof ProgrammingLanguage)[keyof typeof ProgrammingLanguage];
|
|
170
|
+
/**
|
|
171
|
+
* @public
|
|
172
|
+
* @enum
|
|
173
|
+
*/
|
|
174
|
+
export declare const DynamicInstrumentationSignalType: {
|
|
175
|
+
readonly SNAPSHOT: "SNAPSHOT";
|
|
176
|
+
};
|
|
177
|
+
/**
|
|
178
|
+
* @public
|
|
179
|
+
*/
|
|
180
|
+
export type DynamicInstrumentationSignalType = (typeof DynamicInstrumentationSignalType)[keyof typeof DynamicInstrumentationSignalType];
|
|
181
|
+
/**
|
|
182
|
+
* @public
|
|
183
|
+
* @enum
|
|
184
|
+
*/
|
|
185
|
+
export declare const DynamicInstrumentationDeletionStatus: {
|
|
186
|
+
readonly DELETED: "DELETED";
|
|
187
|
+
};
|
|
188
|
+
/**
|
|
189
|
+
* @public
|
|
190
|
+
*/
|
|
191
|
+
export type DynamicInstrumentationDeletionStatus = (typeof DynamicInstrumentationDeletionStatus)[keyof typeof DynamicInstrumentationDeletionStatus];
|
|
192
|
+
/**
|
|
193
|
+
* @public
|
|
194
|
+
* @enum
|
|
195
|
+
*/
|
|
196
|
+
export declare const InstrumentationConfigurationStatus: {
|
|
197
|
+
readonly ACTIVE: "ACTIVE";
|
|
198
|
+
readonly DISABLED: "DISABLED";
|
|
199
|
+
readonly ERROR: "ERROR";
|
|
200
|
+
readonly READY: "READY";
|
|
201
|
+
};
|
|
202
|
+
/**
|
|
203
|
+
* @public
|
|
204
|
+
*/
|
|
205
|
+
export type InstrumentationConfigurationStatus = (typeof InstrumentationConfigurationStatus)[keyof typeof InstrumentationConfigurationStatus];
|
|
206
|
+
/**
|
|
207
|
+
* @public
|
|
208
|
+
* @enum
|
|
209
|
+
*/
|
|
210
|
+
export declare const InstrumentationErrorCause: {
|
|
211
|
+
readonly FILE_NOT_FOUND: "FILE_NOT_FOUND";
|
|
212
|
+
readonly LANGUAGE_MISMATCH: "LANGUAGE_MISMATCH";
|
|
213
|
+
readonly LINE_NOT_EXECUTABLE: "LINE_NOT_EXECUTABLE";
|
|
214
|
+
readonly METHOD_NOT_FOUND: "METHOD_NOT_FOUND";
|
|
215
|
+
readonly OVERLOADED_METHODS: "OVERLOADED_METHODS";
|
|
216
|
+
readonly RUNTIME_ERROR: "RUNTIME_ERROR";
|
|
217
|
+
};
|
|
218
|
+
/**
|
|
219
|
+
* @public
|
|
220
|
+
*/
|
|
221
|
+
export type InstrumentationErrorCause = (typeof InstrumentationErrorCause)[keyof typeof InstrumentationErrorCause];
|
|
117
222
|
/**
|
|
118
223
|
* @public
|
|
119
224
|
* @enum
|
|
@@ -165,6 +270,19 @@ export declare const ChangeEventType: {
|
|
|
165
270
|
* @public
|
|
166
271
|
*/
|
|
167
272
|
export type ChangeEventType = (typeof ChangeEventType)[keyof typeof ChangeEventType];
|
|
273
|
+
/**
|
|
274
|
+
* @public
|
|
275
|
+
* @enum
|
|
276
|
+
*/
|
|
277
|
+
export declare const UnprocessedStatusEventFailureReason: {
|
|
278
|
+
readonly INTERNAL_ERROR: "INTERNAL_ERROR";
|
|
279
|
+
readonly THROTTLED: "THROTTLED";
|
|
280
|
+
readonly VALIDATION_ERROR: "VALIDATION_ERROR";
|
|
281
|
+
};
|
|
282
|
+
/**
|
|
283
|
+
* @public
|
|
284
|
+
*/
|
|
285
|
+
export type UnprocessedStatusEventFailureReason = (typeof UnprocessedStatusEventFailureReason)[keyof typeof UnprocessedStatusEventFailureReason];
|
|
168
286
|
/**
|
|
169
287
|
* @public
|
|
170
288
|
* @enum
|