@aws-sdk/client-rum 3.131.0 → 3.137.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/CHANGELOG.md +11 -0
- package/dist-cjs/commands/CreateAppMonitorCommand.js +2 -2
- package/dist-cjs/commands/DeleteAppMonitorCommand.js +2 -2
- package/dist-cjs/commands/GetAppMonitorCommand.js +2 -2
- package/dist-cjs/commands/GetAppMonitorDataCommand.js +2 -2
- package/dist-cjs/commands/ListAppMonitorsCommand.js +2 -2
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-cjs/commands/PutRumEventsCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateAppMonitorCommand.js +2 -2
- package/dist-cjs/models/models_0.js +121 -181
- package/dist-es/commands/CreateAppMonitorCommand.js +3 -3
- package/dist-es/commands/DeleteAppMonitorCommand.js +3 -3
- package/dist-es/commands/GetAppMonitorCommand.js +3 -3
- package/dist-es/commands/GetAppMonitorDataCommand.js +3 -3
- package/dist-es/commands/ListAppMonitorsCommand.js +3 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
- package/dist-es/commands/PutRumEventsCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateAppMonitorCommand.js +3 -3
- package/dist-es/models/models_0.js +30 -120
- package/dist-types/models/models_0.d.ts +120 -180
- package/dist-types/ts3.4/models/models_0.d.ts +60 -120
- package/package.json +6 -6
|
@@ -36,10 +36,6 @@ export interface AppMonitorConfiguration {
|
|
|
36
36
|
|
|
37
37
|
EnableXRay?: boolean;
|
|
38
38
|
}
|
|
39
|
-
export declare namespace AppMonitorConfiguration {
|
|
40
|
-
|
|
41
|
-
const filterSensitiveLog: (obj: AppMonitorConfiguration) => any;
|
|
42
|
-
}
|
|
43
39
|
|
|
44
40
|
export interface CwLog {
|
|
45
41
|
|
|
@@ -47,19 +43,11 @@ export interface CwLog {
|
|
|
47
43
|
|
|
48
44
|
CwLogGroup?: string;
|
|
49
45
|
}
|
|
50
|
-
export declare namespace CwLog {
|
|
51
|
-
|
|
52
|
-
const filterSensitiveLog: (obj: CwLog) => any;
|
|
53
|
-
}
|
|
54
46
|
|
|
55
47
|
export interface DataStorage {
|
|
56
48
|
|
|
57
49
|
CwLog?: CwLog;
|
|
58
50
|
}
|
|
59
|
-
export declare namespace DataStorage {
|
|
60
|
-
|
|
61
|
-
const filterSensitiveLog: (obj: DataStorage) => any;
|
|
62
|
-
}
|
|
63
51
|
export declare enum StateEnum {
|
|
64
52
|
ACTIVE = "ACTIVE",
|
|
65
53
|
CREATED = "CREATED",
|
|
@@ -86,10 +74,6 @@ export interface AppMonitor {
|
|
|
86
74
|
|
|
87
75
|
DataStorage?: DataStorage;
|
|
88
76
|
}
|
|
89
|
-
export declare namespace AppMonitor {
|
|
90
|
-
|
|
91
|
-
const filterSensitiveLog: (obj: AppMonitor) => any;
|
|
92
|
-
}
|
|
93
77
|
|
|
94
78
|
export interface AppMonitorDetails {
|
|
95
79
|
|
|
@@ -99,10 +83,6 @@ export interface AppMonitorDetails {
|
|
|
99
83
|
|
|
100
84
|
version?: string;
|
|
101
85
|
}
|
|
102
|
-
export declare namespace AppMonitorDetails {
|
|
103
|
-
|
|
104
|
-
const filterSensitiveLog: (obj: AppMonitorDetails) => any;
|
|
105
|
-
}
|
|
106
86
|
|
|
107
87
|
export declare class ConflictException extends __BaseException {
|
|
108
88
|
readonly name: "ConflictException";
|
|
@@ -126,18 +106,10 @@ export interface CreateAppMonitorRequest {
|
|
|
126
106
|
|
|
127
107
|
CwLogEnabled?: boolean;
|
|
128
108
|
}
|
|
129
|
-
export declare namespace CreateAppMonitorRequest {
|
|
130
|
-
|
|
131
|
-
const filterSensitiveLog: (obj: CreateAppMonitorRequest) => any;
|
|
132
|
-
}
|
|
133
109
|
export interface CreateAppMonitorResponse {
|
|
134
110
|
|
|
135
111
|
Id?: string;
|
|
136
112
|
}
|
|
137
|
-
export declare namespace CreateAppMonitorResponse {
|
|
138
|
-
|
|
139
|
-
const filterSensitiveLog: (obj: CreateAppMonitorResponse) => any;
|
|
140
|
-
}
|
|
141
113
|
|
|
142
114
|
export declare class InternalServerException extends __BaseException {
|
|
143
115
|
readonly name: "InternalServerException";
|
|
@@ -182,16 +154,8 @@ export interface DeleteAppMonitorRequest {
|
|
|
182
154
|
|
|
183
155
|
Name: string | undefined;
|
|
184
156
|
}
|
|
185
|
-
export declare namespace DeleteAppMonitorRequest {
|
|
186
|
-
|
|
187
|
-
const filterSensitiveLog: (obj: DeleteAppMonitorRequest) => any;
|
|
188
|
-
}
|
|
189
157
|
export interface DeleteAppMonitorResponse {
|
|
190
158
|
}
|
|
191
|
-
export declare namespace DeleteAppMonitorResponse {
|
|
192
|
-
|
|
193
|
-
const filterSensitiveLog: (obj: DeleteAppMonitorResponse) => any;
|
|
194
|
-
}
|
|
195
159
|
|
|
196
160
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
197
161
|
readonly name: "ResourceNotFoundException";
|
|
@@ -207,18 +171,10 @@ export interface GetAppMonitorRequest {
|
|
|
207
171
|
|
|
208
172
|
Name: string | undefined;
|
|
209
173
|
}
|
|
210
|
-
export declare namespace GetAppMonitorRequest {
|
|
211
|
-
|
|
212
|
-
const filterSensitiveLog: (obj: GetAppMonitorRequest) => any;
|
|
213
|
-
}
|
|
214
174
|
export interface GetAppMonitorResponse {
|
|
215
175
|
|
|
216
176
|
AppMonitor?: AppMonitor;
|
|
217
177
|
}
|
|
218
|
-
export declare namespace GetAppMonitorResponse {
|
|
219
|
-
|
|
220
|
-
const filterSensitiveLog: (obj: GetAppMonitorResponse) => any;
|
|
221
|
-
}
|
|
222
178
|
|
|
223
179
|
export interface QueryFilter {
|
|
224
180
|
|
|
@@ -226,10 +182,6 @@ export interface QueryFilter {
|
|
|
226
182
|
|
|
227
183
|
Values?: string[];
|
|
228
184
|
}
|
|
229
|
-
export declare namespace QueryFilter {
|
|
230
|
-
|
|
231
|
-
const filterSensitiveLog: (obj: QueryFilter) => any;
|
|
232
|
-
}
|
|
233
185
|
|
|
234
186
|
export interface TimeRange {
|
|
235
187
|
|
|
@@ -237,10 +189,6 @@ export interface TimeRange {
|
|
|
237
189
|
|
|
238
190
|
Before?: number;
|
|
239
191
|
}
|
|
240
|
-
export declare namespace TimeRange {
|
|
241
|
-
|
|
242
|
-
const filterSensitiveLog: (obj: TimeRange) => any;
|
|
243
|
-
}
|
|
244
192
|
export interface GetAppMonitorDataRequest {
|
|
245
193
|
|
|
246
194
|
Name: string | undefined;
|
|
@@ -253,30 +201,18 @@ export interface GetAppMonitorDataRequest {
|
|
|
253
201
|
|
|
254
202
|
NextToken?: string;
|
|
255
203
|
}
|
|
256
|
-
export declare namespace GetAppMonitorDataRequest {
|
|
257
|
-
|
|
258
|
-
const filterSensitiveLog: (obj: GetAppMonitorDataRequest) => any;
|
|
259
|
-
}
|
|
260
204
|
export interface GetAppMonitorDataResponse {
|
|
261
205
|
|
|
262
206
|
Events?: string[];
|
|
263
207
|
|
|
264
208
|
NextToken?: string;
|
|
265
209
|
}
|
|
266
|
-
export declare namespace GetAppMonitorDataResponse {
|
|
267
|
-
|
|
268
|
-
const filterSensitiveLog: (obj: GetAppMonitorDataResponse) => any;
|
|
269
|
-
}
|
|
270
210
|
export interface ListAppMonitorsRequest {
|
|
271
211
|
|
|
272
212
|
MaxResults?: number;
|
|
273
213
|
|
|
274
214
|
NextToken?: string;
|
|
275
215
|
}
|
|
276
|
-
export declare namespace ListAppMonitorsRequest {
|
|
277
|
-
|
|
278
|
-
const filterSensitiveLog: (obj: ListAppMonitorsRequest) => any;
|
|
279
|
-
}
|
|
280
216
|
|
|
281
217
|
export interface AppMonitorSummary {
|
|
282
218
|
|
|
@@ -290,20 +226,12 @@ export interface AppMonitorSummary {
|
|
|
290
226
|
|
|
291
227
|
State?: StateEnum | string;
|
|
292
228
|
}
|
|
293
|
-
export declare namespace AppMonitorSummary {
|
|
294
|
-
|
|
295
|
-
const filterSensitiveLog: (obj: AppMonitorSummary) => any;
|
|
296
|
-
}
|
|
297
229
|
export interface ListAppMonitorsResponse {
|
|
298
230
|
|
|
299
231
|
NextToken?: string;
|
|
300
232
|
|
|
301
233
|
AppMonitorSummaries?: AppMonitorSummary[];
|
|
302
234
|
}
|
|
303
|
-
export declare namespace ListAppMonitorsResponse {
|
|
304
|
-
|
|
305
|
-
const filterSensitiveLog: (obj: ListAppMonitorsResponse) => any;
|
|
306
|
-
}
|
|
307
235
|
export interface UpdateAppMonitorRequest {
|
|
308
236
|
|
|
309
237
|
Name: string | undefined;
|
|
@@ -314,34 +242,18 @@ export interface UpdateAppMonitorRequest {
|
|
|
314
242
|
|
|
315
243
|
CwLogEnabled?: boolean;
|
|
316
244
|
}
|
|
317
|
-
export declare namespace UpdateAppMonitorRequest {
|
|
318
|
-
|
|
319
|
-
const filterSensitiveLog: (obj: UpdateAppMonitorRequest) => any;
|
|
320
|
-
}
|
|
321
245
|
export interface UpdateAppMonitorResponse {
|
|
322
246
|
}
|
|
323
|
-
export declare namespace UpdateAppMonitorResponse {
|
|
324
|
-
|
|
325
|
-
const filterSensitiveLog: (obj: UpdateAppMonitorResponse) => any;
|
|
326
|
-
}
|
|
327
247
|
export interface ListTagsForResourceRequest {
|
|
328
248
|
|
|
329
249
|
ResourceArn: string | undefined;
|
|
330
250
|
}
|
|
331
|
-
export declare namespace ListTagsForResourceRequest {
|
|
332
|
-
|
|
333
|
-
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
334
|
-
}
|
|
335
251
|
export interface ListTagsForResourceResponse {
|
|
336
252
|
|
|
337
253
|
ResourceArn: string | undefined;
|
|
338
254
|
|
|
339
255
|
Tags: Record<string, string> | undefined;
|
|
340
256
|
}
|
|
341
|
-
export declare namespace ListTagsForResourceResponse {
|
|
342
|
-
|
|
343
|
-
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
344
|
-
}
|
|
345
257
|
|
|
346
258
|
export interface RumEvent {
|
|
347
259
|
|
|
@@ -355,10 +267,6 @@ export interface RumEvent {
|
|
|
355
267
|
|
|
356
268
|
details: __LazyJsonString | string | undefined;
|
|
357
269
|
}
|
|
358
|
-
export declare namespace RumEvent {
|
|
359
|
-
|
|
360
|
-
const filterSensitiveLog: (obj: RumEvent) => any;
|
|
361
|
-
}
|
|
362
270
|
|
|
363
271
|
export interface UserDetails {
|
|
364
272
|
|
|
@@ -366,10 +274,6 @@ export interface UserDetails {
|
|
|
366
274
|
|
|
367
275
|
sessionId?: string;
|
|
368
276
|
}
|
|
369
|
-
export declare namespace UserDetails {
|
|
370
|
-
|
|
371
|
-
const filterSensitiveLog: (obj: UserDetails) => any;
|
|
372
|
-
}
|
|
373
277
|
export interface PutRumEventsRequest {
|
|
374
278
|
|
|
375
279
|
Id: string | undefined;
|
|
@@ -382,45 +286,81 @@ export interface PutRumEventsRequest {
|
|
|
382
286
|
|
|
383
287
|
RumEvents: RumEvent[] | undefined;
|
|
384
288
|
}
|
|
385
|
-
export declare namespace PutRumEventsRequest {
|
|
386
|
-
|
|
387
|
-
const filterSensitiveLog: (obj: PutRumEventsRequest) => any;
|
|
388
|
-
}
|
|
389
289
|
export interface PutRumEventsResponse {
|
|
390
290
|
}
|
|
391
|
-
export declare namespace PutRumEventsResponse {
|
|
392
|
-
|
|
393
|
-
const filterSensitiveLog: (obj: PutRumEventsResponse) => any;
|
|
394
|
-
}
|
|
395
291
|
export interface TagResourceRequest {
|
|
396
292
|
|
|
397
293
|
ResourceArn: string | undefined;
|
|
398
294
|
|
|
399
295
|
Tags: Record<string, string> | undefined;
|
|
400
296
|
}
|
|
401
|
-
export declare namespace TagResourceRequest {
|
|
402
|
-
|
|
403
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
404
|
-
}
|
|
405
297
|
export interface TagResourceResponse {
|
|
406
298
|
}
|
|
407
|
-
export declare namespace TagResourceResponse {
|
|
408
|
-
|
|
409
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
410
|
-
}
|
|
411
299
|
export interface UntagResourceRequest {
|
|
412
300
|
|
|
413
301
|
ResourceArn: string | undefined;
|
|
414
302
|
|
|
415
303
|
TagKeys: string[] | undefined;
|
|
416
304
|
}
|
|
417
|
-
export declare namespace UntagResourceRequest {
|
|
418
|
-
|
|
419
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
420
|
-
}
|
|
421
305
|
export interface UntagResourceResponse {
|
|
422
306
|
}
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
307
|
+
|
|
308
|
+
export declare const AppMonitorConfigurationFilterSensitiveLog: (obj: AppMonitorConfiguration) => any;
|
|
309
|
+
|
|
310
|
+
export declare const CwLogFilterSensitiveLog: (obj: CwLog) => any;
|
|
311
|
+
|
|
312
|
+
export declare const DataStorageFilterSensitiveLog: (obj: DataStorage) => any;
|
|
313
|
+
|
|
314
|
+
export declare const AppMonitorFilterSensitiveLog: (obj: AppMonitor) => any;
|
|
315
|
+
|
|
316
|
+
export declare const AppMonitorDetailsFilterSensitiveLog: (obj: AppMonitorDetails) => any;
|
|
317
|
+
|
|
318
|
+
export declare const CreateAppMonitorRequestFilterSensitiveLog: (obj: CreateAppMonitorRequest) => any;
|
|
319
|
+
|
|
320
|
+
export declare const CreateAppMonitorResponseFilterSensitiveLog: (obj: CreateAppMonitorResponse) => any;
|
|
321
|
+
|
|
322
|
+
export declare const DeleteAppMonitorRequestFilterSensitiveLog: (obj: DeleteAppMonitorRequest) => any;
|
|
323
|
+
|
|
324
|
+
export declare const DeleteAppMonitorResponseFilterSensitiveLog: (obj: DeleteAppMonitorResponse) => any;
|
|
325
|
+
|
|
326
|
+
export declare const GetAppMonitorRequestFilterSensitiveLog: (obj: GetAppMonitorRequest) => any;
|
|
327
|
+
|
|
328
|
+
export declare const GetAppMonitorResponseFilterSensitiveLog: (obj: GetAppMonitorResponse) => any;
|
|
329
|
+
|
|
330
|
+
export declare const QueryFilterFilterSensitiveLog: (obj: QueryFilter) => any;
|
|
331
|
+
|
|
332
|
+
export declare const TimeRangeFilterSensitiveLog: (obj: TimeRange) => any;
|
|
333
|
+
|
|
334
|
+
export declare const GetAppMonitorDataRequestFilterSensitiveLog: (obj: GetAppMonitorDataRequest) => any;
|
|
335
|
+
|
|
336
|
+
export declare const GetAppMonitorDataResponseFilterSensitiveLog: (obj: GetAppMonitorDataResponse) => any;
|
|
337
|
+
|
|
338
|
+
export declare const ListAppMonitorsRequestFilterSensitiveLog: (obj: ListAppMonitorsRequest) => any;
|
|
339
|
+
|
|
340
|
+
export declare const AppMonitorSummaryFilterSensitiveLog: (obj: AppMonitorSummary) => any;
|
|
341
|
+
|
|
342
|
+
export declare const ListAppMonitorsResponseFilterSensitiveLog: (obj: ListAppMonitorsResponse) => any;
|
|
343
|
+
|
|
344
|
+
export declare const UpdateAppMonitorRequestFilterSensitiveLog: (obj: UpdateAppMonitorRequest) => any;
|
|
345
|
+
|
|
346
|
+
export declare const UpdateAppMonitorResponseFilterSensitiveLog: (obj: UpdateAppMonitorResponse) => any;
|
|
347
|
+
|
|
348
|
+
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
349
|
+
|
|
350
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
351
|
+
|
|
352
|
+
export declare const RumEventFilterSensitiveLog: (obj: RumEvent) => any;
|
|
353
|
+
|
|
354
|
+
export declare const UserDetailsFilterSensitiveLog: (obj: UserDetails) => any;
|
|
355
|
+
|
|
356
|
+
export declare const PutRumEventsRequestFilterSensitiveLog: (obj: PutRumEventsRequest) => any;
|
|
357
|
+
|
|
358
|
+
export declare const PutRumEventsResponseFilterSensitiveLog: (obj: PutRumEventsResponse) => any;
|
|
359
|
+
|
|
360
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
361
|
+
|
|
362
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
363
|
+
|
|
364
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
365
|
+
|
|
366
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rum",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rum Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.137.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.137.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.137.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.137.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.137.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.137.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|