@aws-sdk/client-rum 3.1086.0 → 3.1088.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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/RUM.d.ts +65 -68
- package/dist-types/ts3.4/RUMClient.d.ts +14 -24
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +10 -13
- package/dist-types/ts3.4/commandBuilder.d.ts +8 -18
- package/dist-types/ts3.4/commands/BatchCreateRumMetricDefinitionsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchDeleteRumMetricDefinitionsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/BatchGetRumMetricDefinitionsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/CreateAppMonitorCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteAppMonitorCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteResourcePolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteRumMetricsDestinationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/GetAppMonitorCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetAppMonitorDataCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetResourcePolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListAppMonitorsCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListRumMetricsDestinationsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutResourcePolicyCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutRumEventsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/PutRumMetricsDestinationCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateAppMonitorCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateRumMetricDefinitionCommand.d.ts +4 -6
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +4 -8
- package/dist-types/ts3.4/models/errors.d.ts +10 -39
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +39 -39
package/dist-cjs/index.js
CHANGED
|
@@ -67,10 +67,7 @@ import {
|
|
|
67
67
|
PutRumMetricsDestinationCommandInput,
|
|
68
68
|
PutRumMetricsDestinationCommandOutput,
|
|
69
69
|
} from "./commands/PutRumMetricsDestinationCommand";
|
|
70
|
-
import {
|
|
71
|
-
TagResourceCommandInput,
|
|
72
|
-
TagResourceCommandOutput,
|
|
73
|
-
} from "./commands/TagResourceCommand";
|
|
70
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
74
71
|
import {
|
|
75
72
|
UntagResourceCommandInput,
|
|
76
73
|
UntagResourceCommandOutput,
|
|
@@ -87,292 +84,292 @@ import { RUMClient } from "./RUMClient";
|
|
|
87
84
|
export interface RUM {
|
|
88
85
|
batchCreateRumMetricDefinitions(
|
|
89
86
|
args: BatchCreateRumMetricDefinitionsCommandInput,
|
|
90
|
-
options?: __HttpHandlerOptions
|
|
87
|
+
options?: __HttpHandlerOptions,
|
|
91
88
|
): Promise<BatchCreateRumMetricDefinitionsCommandOutput>;
|
|
92
89
|
batchCreateRumMetricDefinitions(
|
|
93
90
|
args: BatchCreateRumMetricDefinitionsCommandInput,
|
|
94
|
-
cb: (err: any, data?: BatchCreateRumMetricDefinitionsCommandOutput) => void
|
|
91
|
+
cb: (err: any, data?: BatchCreateRumMetricDefinitionsCommandOutput) => void,
|
|
95
92
|
): void;
|
|
96
93
|
batchCreateRumMetricDefinitions(
|
|
97
94
|
args: BatchCreateRumMetricDefinitionsCommandInput,
|
|
98
95
|
options: __HttpHandlerOptions,
|
|
99
|
-
cb: (err: any, data?: BatchCreateRumMetricDefinitionsCommandOutput) => void
|
|
96
|
+
cb: (err: any, data?: BatchCreateRumMetricDefinitionsCommandOutput) => void,
|
|
100
97
|
): void;
|
|
101
98
|
batchDeleteRumMetricDefinitions(
|
|
102
99
|
args: BatchDeleteRumMetricDefinitionsCommandInput,
|
|
103
|
-
options?: __HttpHandlerOptions
|
|
100
|
+
options?: __HttpHandlerOptions,
|
|
104
101
|
): Promise<BatchDeleteRumMetricDefinitionsCommandOutput>;
|
|
105
102
|
batchDeleteRumMetricDefinitions(
|
|
106
103
|
args: BatchDeleteRumMetricDefinitionsCommandInput,
|
|
107
|
-
cb: (err: any, data?: BatchDeleteRumMetricDefinitionsCommandOutput) => void
|
|
104
|
+
cb: (err: any, data?: BatchDeleteRumMetricDefinitionsCommandOutput) => void,
|
|
108
105
|
): void;
|
|
109
106
|
batchDeleteRumMetricDefinitions(
|
|
110
107
|
args: BatchDeleteRumMetricDefinitionsCommandInput,
|
|
111
108
|
options: __HttpHandlerOptions,
|
|
112
|
-
cb: (err: any, data?: BatchDeleteRumMetricDefinitionsCommandOutput) => void
|
|
109
|
+
cb: (err: any, data?: BatchDeleteRumMetricDefinitionsCommandOutput) => void,
|
|
113
110
|
): void;
|
|
114
111
|
batchGetRumMetricDefinitions(
|
|
115
112
|
args: BatchGetRumMetricDefinitionsCommandInput,
|
|
116
|
-
options?: __HttpHandlerOptions
|
|
113
|
+
options?: __HttpHandlerOptions,
|
|
117
114
|
): Promise<BatchGetRumMetricDefinitionsCommandOutput>;
|
|
118
115
|
batchGetRumMetricDefinitions(
|
|
119
116
|
args: BatchGetRumMetricDefinitionsCommandInput,
|
|
120
|
-
cb: (err: any, data?: BatchGetRumMetricDefinitionsCommandOutput) => void
|
|
117
|
+
cb: (err: any, data?: BatchGetRumMetricDefinitionsCommandOutput) => void,
|
|
121
118
|
): void;
|
|
122
119
|
batchGetRumMetricDefinitions(
|
|
123
120
|
args: BatchGetRumMetricDefinitionsCommandInput,
|
|
124
121
|
options: __HttpHandlerOptions,
|
|
125
|
-
cb: (err: any, data?: BatchGetRumMetricDefinitionsCommandOutput) => void
|
|
122
|
+
cb: (err: any, data?: BatchGetRumMetricDefinitionsCommandOutput) => void,
|
|
126
123
|
): void;
|
|
127
124
|
createAppMonitor(
|
|
128
125
|
args: CreateAppMonitorCommandInput,
|
|
129
|
-
options?: __HttpHandlerOptions
|
|
126
|
+
options?: __HttpHandlerOptions,
|
|
130
127
|
): Promise<CreateAppMonitorCommandOutput>;
|
|
131
128
|
createAppMonitor(
|
|
132
129
|
args: CreateAppMonitorCommandInput,
|
|
133
|
-
cb: (err: any, data?: CreateAppMonitorCommandOutput) => void
|
|
130
|
+
cb: (err: any, data?: CreateAppMonitorCommandOutput) => void,
|
|
134
131
|
): void;
|
|
135
132
|
createAppMonitor(
|
|
136
133
|
args: CreateAppMonitorCommandInput,
|
|
137
134
|
options: __HttpHandlerOptions,
|
|
138
|
-
cb: (err: any, data?: CreateAppMonitorCommandOutput) => void
|
|
135
|
+
cb: (err: any, data?: CreateAppMonitorCommandOutput) => void,
|
|
139
136
|
): void;
|
|
140
137
|
deleteAppMonitor(
|
|
141
138
|
args: DeleteAppMonitorCommandInput,
|
|
142
|
-
options?: __HttpHandlerOptions
|
|
139
|
+
options?: __HttpHandlerOptions,
|
|
143
140
|
): Promise<DeleteAppMonitorCommandOutput>;
|
|
144
141
|
deleteAppMonitor(
|
|
145
142
|
args: DeleteAppMonitorCommandInput,
|
|
146
|
-
cb: (err: any, data?: DeleteAppMonitorCommandOutput) => void
|
|
143
|
+
cb: (err: any, data?: DeleteAppMonitorCommandOutput) => void,
|
|
147
144
|
): void;
|
|
148
145
|
deleteAppMonitor(
|
|
149
146
|
args: DeleteAppMonitorCommandInput,
|
|
150
147
|
options: __HttpHandlerOptions,
|
|
151
|
-
cb: (err: any, data?: DeleteAppMonitorCommandOutput) => void
|
|
148
|
+
cb: (err: any, data?: DeleteAppMonitorCommandOutput) => void,
|
|
152
149
|
): void;
|
|
153
150
|
deleteResourcePolicy(
|
|
154
151
|
args: DeleteResourcePolicyCommandInput,
|
|
155
|
-
options?: __HttpHandlerOptions
|
|
152
|
+
options?: __HttpHandlerOptions,
|
|
156
153
|
): Promise<DeleteResourcePolicyCommandOutput>;
|
|
157
154
|
deleteResourcePolicy(
|
|
158
155
|
args: DeleteResourcePolicyCommandInput,
|
|
159
|
-
cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void
|
|
156
|
+
cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void,
|
|
160
157
|
): void;
|
|
161
158
|
deleteResourcePolicy(
|
|
162
159
|
args: DeleteResourcePolicyCommandInput,
|
|
163
160
|
options: __HttpHandlerOptions,
|
|
164
|
-
cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void
|
|
161
|
+
cb: (err: any, data?: DeleteResourcePolicyCommandOutput) => void,
|
|
165
162
|
): void;
|
|
166
163
|
deleteRumMetricsDestination(
|
|
167
164
|
args: DeleteRumMetricsDestinationCommandInput,
|
|
168
|
-
options?: __HttpHandlerOptions
|
|
165
|
+
options?: __HttpHandlerOptions,
|
|
169
166
|
): Promise<DeleteRumMetricsDestinationCommandOutput>;
|
|
170
167
|
deleteRumMetricsDestination(
|
|
171
168
|
args: DeleteRumMetricsDestinationCommandInput,
|
|
172
|
-
cb: (err: any, data?: DeleteRumMetricsDestinationCommandOutput) => void
|
|
169
|
+
cb: (err: any, data?: DeleteRumMetricsDestinationCommandOutput) => void,
|
|
173
170
|
): void;
|
|
174
171
|
deleteRumMetricsDestination(
|
|
175
172
|
args: DeleteRumMetricsDestinationCommandInput,
|
|
176
173
|
options: __HttpHandlerOptions,
|
|
177
|
-
cb: (err: any, data?: DeleteRumMetricsDestinationCommandOutput) => void
|
|
174
|
+
cb: (err: any, data?: DeleteRumMetricsDestinationCommandOutput) => void,
|
|
178
175
|
): void;
|
|
179
176
|
getAppMonitor(
|
|
180
177
|
args: GetAppMonitorCommandInput,
|
|
181
|
-
options?: __HttpHandlerOptions
|
|
178
|
+
options?: __HttpHandlerOptions,
|
|
182
179
|
): Promise<GetAppMonitorCommandOutput>;
|
|
183
180
|
getAppMonitor(
|
|
184
181
|
args: GetAppMonitorCommandInput,
|
|
185
|
-
cb: (err: any, data?: GetAppMonitorCommandOutput) => void
|
|
182
|
+
cb: (err: any, data?: GetAppMonitorCommandOutput) => void,
|
|
186
183
|
): void;
|
|
187
184
|
getAppMonitor(
|
|
188
185
|
args: GetAppMonitorCommandInput,
|
|
189
186
|
options: __HttpHandlerOptions,
|
|
190
|
-
cb: (err: any, data?: GetAppMonitorCommandOutput) => void
|
|
187
|
+
cb: (err: any, data?: GetAppMonitorCommandOutput) => void,
|
|
191
188
|
): void;
|
|
192
189
|
getAppMonitorData(
|
|
193
190
|
args: GetAppMonitorDataCommandInput,
|
|
194
|
-
options?: __HttpHandlerOptions
|
|
191
|
+
options?: __HttpHandlerOptions,
|
|
195
192
|
): Promise<GetAppMonitorDataCommandOutput>;
|
|
196
193
|
getAppMonitorData(
|
|
197
194
|
args: GetAppMonitorDataCommandInput,
|
|
198
|
-
cb: (err: any, data?: GetAppMonitorDataCommandOutput) => void
|
|
195
|
+
cb: (err: any, data?: GetAppMonitorDataCommandOutput) => void,
|
|
199
196
|
): void;
|
|
200
197
|
getAppMonitorData(
|
|
201
198
|
args: GetAppMonitorDataCommandInput,
|
|
202
199
|
options: __HttpHandlerOptions,
|
|
203
|
-
cb: (err: any, data?: GetAppMonitorDataCommandOutput) => void
|
|
200
|
+
cb: (err: any, data?: GetAppMonitorDataCommandOutput) => void,
|
|
204
201
|
): void;
|
|
205
202
|
getResourcePolicy(
|
|
206
203
|
args: GetResourcePolicyCommandInput,
|
|
207
|
-
options?: __HttpHandlerOptions
|
|
204
|
+
options?: __HttpHandlerOptions,
|
|
208
205
|
): Promise<GetResourcePolicyCommandOutput>;
|
|
209
206
|
getResourcePolicy(
|
|
210
207
|
args: GetResourcePolicyCommandInput,
|
|
211
|
-
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
|
|
208
|
+
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void,
|
|
212
209
|
): void;
|
|
213
210
|
getResourcePolicy(
|
|
214
211
|
args: GetResourcePolicyCommandInput,
|
|
215
212
|
options: __HttpHandlerOptions,
|
|
216
|
-
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void
|
|
213
|
+
cb: (err: any, data?: GetResourcePolicyCommandOutput) => void,
|
|
217
214
|
): void;
|
|
218
215
|
listAppMonitors(): Promise<ListAppMonitorsCommandOutput>;
|
|
219
216
|
listAppMonitors(
|
|
220
217
|
args: ListAppMonitorsCommandInput,
|
|
221
|
-
options?: __HttpHandlerOptions
|
|
218
|
+
options?: __HttpHandlerOptions,
|
|
222
219
|
): Promise<ListAppMonitorsCommandOutput>;
|
|
223
220
|
listAppMonitors(
|
|
224
221
|
args: ListAppMonitorsCommandInput,
|
|
225
|
-
cb: (err: any, data?: ListAppMonitorsCommandOutput) => void
|
|
222
|
+
cb: (err: any, data?: ListAppMonitorsCommandOutput) => void,
|
|
226
223
|
): void;
|
|
227
224
|
listAppMonitors(
|
|
228
225
|
args: ListAppMonitorsCommandInput,
|
|
229
226
|
options: __HttpHandlerOptions,
|
|
230
|
-
cb: (err: any, data?: ListAppMonitorsCommandOutput) => void
|
|
227
|
+
cb: (err: any, data?: ListAppMonitorsCommandOutput) => void,
|
|
231
228
|
): void;
|
|
232
229
|
listRumMetricsDestinations(
|
|
233
230
|
args: ListRumMetricsDestinationsCommandInput,
|
|
234
|
-
options?: __HttpHandlerOptions
|
|
231
|
+
options?: __HttpHandlerOptions,
|
|
235
232
|
): Promise<ListRumMetricsDestinationsCommandOutput>;
|
|
236
233
|
listRumMetricsDestinations(
|
|
237
234
|
args: ListRumMetricsDestinationsCommandInput,
|
|
238
|
-
cb: (err: any, data?: ListRumMetricsDestinationsCommandOutput) => void
|
|
235
|
+
cb: (err: any, data?: ListRumMetricsDestinationsCommandOutput) => void,
|
|
239
236
|
): void;
|
|
240
237
|
listRumMetricsDestinations(
|
|
241
238
|
args: ListRumMetricsDestinationsCommandInput,
|
|
242
239
|
options: __HttpHandlerOptions,
|
|
243
|
-
cb: (err: any, data?: ListRumMetricsDestinationsCommandOutput) => void
|
|
240
|
+
cb: (err: any, data?: ListRumMetricsDestinationsCommandOutput) => void,
|
|
244
241
|
): void;
|
|
245
242
|
listTagsForResource(
|
|
246
243
|
args: ListTagsForResourceCommandInput,
|
|
247
|
-
options?: __HttpHandlerOptions
|
|
244
|
+
options?: __HttpHandlerOptions,
|
|
248
245
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
249
246
|
listTagsForResource(
|
|
250
247
|
args: ListTagsForResourceCommandInput,
|
|
251
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
248
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
252
249
|
): void;
|
|
253
250
|
listTagsForResource(
|
|
254
251
|
args: ListTagsForResourceCommandInput,
|
|
255
252
|
options: __HttpHandlerOptions,
|
|
256
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
253
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
257
254
|
): void;
|
|
258
255
|
putResourcePolicy(
|
|
259
256
|
args: PutResourcePolicyCommandInput,
|
|
260
|
-
options?: __HttpHandlerOptions
|
|
257
|
+
options?: __HttpHandlerOptions,
|
|
261
258
|
): Promise<PutResourcePolicyCommandOutput>;
|
|
262
259
|
putResourcePolicy(
|
|
263
260
|
args: PutResourcePolicyCommandInput,
|
|
264
|
-
cb: (err: any, data?: PutResourcePolicyCommandOutput) => void
|
|
261
|
+
cb: (err: any, data?: PutResourcePolicyCommandOutput) => void,
|
|
265
262
|
): void;
|
|
266
263
|
putResourcePolicy(
|
|
267
264
|
args: PutResourcePolicyCommandInput,
|
|
268
265
|
options: __HttpHandlerOptions,
|
|
269
|
-
cb: (err: any, data?: PutResourcePolicyCommandOutput) => void
|
|
266
|
+
cb: (err: any, data?: PutResourcePolicyCommandOutput) => void,
|
|
270
267
|
): void;
|
|
271
268
|
putRumEvents(
|
|
272
269
|
args: PutRumEventsCommandInput,
|
|
273
|
-
options?: __HttpHandlerOptions
|
|
270
|
+
options?: __HttpHandlerOptions,
|
|
274
271
|
): Promise<PutRumEventsCommandOutput>;
|
|
275
272
|
putRumEvents(
|
|
276
273
|
args: PutRumEventsCommandInput,
|
|
277
|
-
cb: (err: any, data?: PutRumEventsCommandOutput) => void
|
|
274
|
+
cb: (err: any, data?: PutRumEventsCommandOutput) => void,
|
|
278
275
|
): void;
|
|
279
276
|
putRumEvents(
|
|
280
277
|
args: PutRumEventsCommandInput,
|
|
281
278
|
options: __HttpHandlerOptions,
|
|
282
|
-
cb: (err: any, data?: PutRumEventsCommandOutput) => void
|
|
279
|
+
cb: (err: any, data?: PutRumEventsCommandOutput) => void,
|
|
283
280
|
): void;
|
|
284
281
|
putRumMetricsDestination(
|
|
285
282
|
args: PutRumMetricsDestinationCommandInput,
|
|
286
|
-
options?: __HttpHandlerOptions
|
|
283
|
+
options?: __HttpHandlerOptions,
|
|
287
284
|
): Promise<PutRumMetricsDestinationCommandOutput>;
|
|
288
285
|
putRumMetricsDestination(
|
|
289
286
|
args: PutRumMetricsDestinationCommandInput,
|
|
290
|
-
cb: (err: any, data?: PutRumMetricsDestinationCommandOutput) => void
|
|
287
|
+
cb: (err: any, data?: PutRumMetricsDestinationCommandOutput) => void,
|
|
291
288
|
): void;
|
|
292
289
|
putRumMetricsDestination(
|
|
293
290
|
args: PutRumMetricsDestinationCommandInput,
|
|
294
291
|
options: __HttpHandlerOptions,
|
|
295
|
-
cb: (err: any, data?: PutRumMetricsDestinationCommandOutput) => void
|
|
292
|
+
cb: (err: any, data?: PutRumMetricsDestinationCommandOutput) => void,
|
|
296
293
|
): void;
|
|
297
294
|
tagResource(
|
|
298
295
|
args: TagResourceCommandInput,
|
|
299
|
-
options?: __HttpHandlerOptions
|
|
296
|
+
options?: __HttpHandlerOptions,
|
|
300
297
|
): Promise<TagResourceCommandOutput>;
|
|
301
298
|
tagResource(
|
|
302
299
|
args: TagResourceCommandInput,
|
|
303
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
300
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
304
301
|
): void;
|
|
305
302
|
tagResource(
|
|
306
303
|
args: TagResourceCommandInput,
|
|
307
304
|
options: __HttpHandlerOptions,
|
|
308
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
305
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
309
306
|
): void;
|
|
310
307
|
untagResource(
|
|
311
308
|
args: UntagResourceCommandInput,
|
|
312
|
-
options?: __HttpHandlerOptions
|
|
309
|
+
options?: __HttpHandlerOptions,
|
|
313
310
|
): Promise<UntagResourceCommandOutput>;
|
|
314
311
|
untagResource(
|
|
315
312
|
args: UntagResourceCommandInput,
|
|
316
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
313
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
317
314
|
): void;
|
|
318
315
|
untagResource(
|
|
319
316
|
args: UntagResourceCommandInput,
|
|
320
317
|
options: __HttpHandlerOptions,
|
|
321
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
318
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
322
319
|
): void;
|
|
323
320
|
updateAppMonitor(
|
|
324
321
|
args: UpdateAppMonitorCommandInput,
|
|
325
|
-
options?: __HttpHandlerOptions
|
|
322
|
+
options?: __HttpHandlerOptions,
|
|
326
323
|
): Promise<UpdateAppMonitorCommandOutput>;
|
|
327
324
|
updateAppMonitor(
|
|
328
325
|
args: UpdateAppMonitorCommandInput,
|
|
329
|
-
cb: (err: any, data?: UpdateAppMonitorCommandOutput) => void
|
|
326
|
+
cb: (err: any, data?: UpdateAppMonitorCommandOutput) => void,
|
|
330
327
|
): void;
|
|
331
328
|
updateAppMonitor(
|
|
332
329
|
args: UpdateAppMonitorCommandInput,
|
|
333
330
|
options: __HttpHandlerOptions,
|
|
334
|
-
cb: (err: any, data?: UpdateAppMonitorCommandOutput) => void
|
|
331
|
+
cb: (err: any, data?: UpdateAppMonitorCommandOutput) => void,
|
|
335
332
|
): void;
|
|
336
333
|
updateRumMetricDefinition(
|
|
337
334
|
args: UpdateRumMetricDefinitionCommandInput,
|
|
338
|
-
options?: __HttpHandlerOptions
|
|
335
|
+
options?: __HttpHandlerOptions,
|
|
339
336
|
): Promise<UpdateRumMetricDefinitionCommandOutput>;
|
|
340
337
|
updateRumMetricDefinition(
|
|
341
338
|
args: UpdateRumMetricDefinitionCommandInput,
|
|
342
|
-
cb: (err: any, data?: UpdateRumMetricDefinitionCommandOutput) => void
|
|
339
|
+
cb: (err: any, data?: UpdateRumMetricDefinitionCommandOutput) => void,
|
|
343
340
|
): void;
|
|
344
341
|
updateRumMetricDefinition(
|
|
345
342
|
args: UpdateRumMetricDefinitionCommandInput,
|
|
346
343
|
options: __HttpHandlerOptions,
|
|
347
|
-
cb: (err: any, data?: UpdateRumMetricDefinitionCommandOutput) => void
|
|
344
|
+
cb: (err: any, data?: UpdateRumMetricDefinitionCommandOutput) => void,
|
|
348
345
|
): void;
|
|
349
346
|
paginateBatchGetRumMetricDefinitions(
|
|
350
347
|
args: BatchGetRumMetricDefinitionsCommandInput,
|
|
351
348
|
paginationConfig?: Pick<
|
|
352
349
|
PaginationConfiguration,
|
|
353
350
|
Exclude<keyof PaginationConfiguration, "client">
|
|
354
|
-
|
|
351
|
+
>,
|
|
355
352
|
): Paginator<BatchGetRumMetricDefinitionsCommandOutput>;
|
|
356
353
|
paginateGetAppMonitorData(
|
|
357
354
|
args: GetAppMonitorDataCommandInput,
|
|
358
355
|
paginationConfig?: Pick<
|
|
359
356
|
PaginationConfiguration,
|
|
360
357
|
Exclude<keyof PaginationConfiguration, "client">
|
|
361
|
-
|
|
358
|
+
>,
|
|
362
359
|
): Paginator<GetAppMonitorDataCommandOutput>;
|
|
363
360
|
paginateListAppMonitors(
|
|
364
361
|
args?: ListAppMonitorsCommandInput,
|
|
365
362
|
paginationConfig?: Pick<
|
|
366
363
|
PaginationConfiguration,
|
|
367
364
|
Exclude<keyof PaginationConfiguration, "client">
|
|
368
|
-
|
|
365
|
+
>,
|
|
369
366
|
): Paginator<ListAppMonitorsCommandOutput>;
|
|
370
367
|
paginateListRumMetricsDestinations(
|
|
371
368
|
args: ListRumMetricsDestinationsCommandInput,
|
|
372
369
|
paginationConfig?: Pick<
|
|
373
370
|
PaginationConfiguration,
|
|
374
371
|
Exclude<keyof PaginationConfiguration, "client">
|
|
375
|
-
|
|
372
|
+
>,
|
|
376
373
|
): Paginator<ListRumMetricsDestinationsCommandOutput>;
|
|
377
374
|
}
|
|
378
375
|
export declare class RUM extends RUMClient implements RUM {}
|
|
@@ -11,10 +11,7 @@ import {
|
|
|
11
11
|
Client as __Client,
|
|
12
12
|
} from "@smithy/core/client";
|
|
13
13
|
import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config";
|
|
14
|
-
import {
|
|
15
|
-
EndpointInputConfig,
|
|
16
|
-
EndpointResolvedConfig,
|
|
17
|
-
} from "@smithy/core/endpoints";
|
|
14
|
+
import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints";
|
|
18
15
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols";
|
|
19
16
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry";
|
|
20
17
|
import {
|
|
@@ -100,10 +97,7 @@ import {
|
|
|
100
97
|
PutRumMetricsDestinationCommandInput,
|
|
101
98
|
PutRumMetricsDestinationCommandOutput,
|
|
102
99
|
} from "./commands/PutRumMetricsDestinationCommand";
|
|
103
|
-
import {
|
|
104
|
-
TagResourceCommandInput,
|
|
105
|
-
TagResourceCommandOutput,
|
|
106
|
-
} from "./commands/TagResourceCommand";
|
|
100
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
107
101
|
import {
|
|
108
102
|
UntagResourceCommandInput,
|
|
109
103
|
UntagResourceCommandOutput,
|
|
@@ -165,8 +159,7 @@ export type ServiceOutputTypes =
|
|
|
165
159
|
| UntagResourceCommandOutput
|
|
166
160
|
| UpdateAppMonitorCommandOutput
|
|
167
161
|
| UpdateRumMetricDefinitionCommandOutput;
|
|
168
|
-
export interface ClientDefaults
|
|
169
|
-
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
162
|
+
export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
170
163
|
requestHandler?: __HttpHandlerUserInput;
|
|
171
164
|
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
172
165
|
urlParser?: __UrlParser;
|
|
@@ -191,9 +184,7 @@ export interface ClientDefaults
|
|
|
191
184
|
extensions?: RuntimeExtension[];
|
|
192
185
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
193
186
|
}
|
|
194
|
-
export type RUMClientConfigType = Partial<
|
|
195
|
-
__SmithyConfiguration<__HttpHandlerOptions>
|
|
196
|
-
> &
|
|
187
|
+
export type RUMClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> &
|
|
197
188
|
ClientDefaults &
|
|
198
189
|
UserAgentInputConfig &
|
|
199
190
|
RetryInputConfig &
|
|
@@ -203,17 +194,16 @@ export type RUMClientConfigType = Partial<
|
|
|
203
194
|
HttpAuthSchemeInputConfig &
|
|
204
195
|
ClientInputEndpointParameters;
|
|
205
196
|
export interface RUMClientConfig extends RUMClientConfigType {}
|
|
206
|
-
export type RUMClientResolvedConfigType =
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
ClientResolvedEndpointParameters;
|
|
197
|
+
export type RUMClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
198
|
+
Required<ClientDefaults> &
|
|
199
|
+
RuntimeExtensionsConfig &
|
|
200
|
+
UserAgentResolvedConfig &
|
|
201
|
+
RetryResolvedConfig &
|
|
202
|
+
RegionResolvedConfig &
|
|
203
|
+
HostHeaderResolvedConfig &
|
|
204
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
205
|
+
HttpAuthSchemeResolvedConfig &
|
|
206
|
+
ClientResolvedEndpointParameters;
|
|
217
207
|
export interface RUMClientResolvedConfig extends RUMClientResolvedConfigType {}
|
|
218
208
|
export declare class RUMClient extends __Client<
|
|
219
209
|
__HttpHandlerOptions,
|
|
@@ -7,17 +7,10 @@ import { RUMHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
8
8
|
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
9
|
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
-
setHttpAuthSchemeProvider(
|
|
11
|
-
httpAuthSchemeProvider: RUMHttpAuthSchemeProvider
|
|
12
|
-
): void;
|
|
10
|
+
setHttpAuthSchemeProvider(httpAuthSchemeProvider: RUMHttpAuthSchemeProvider): void;
|
|
13
11
|
httpAuthSchemeProvider(): RUMHttpAuthSchemeProvider;
|
|
14
|
-
setCredentials(
|
|
15
|
-
|
|
16
|
-
): void;
|
|
17
|
-
credentials():
|
|
18
|
-
| AwsCredentialIdentity
|
|
19
|
-
| AwsCredentialIdentityProvider
|
|
20
|
-
| undefined;
|
|
12
|
+
setCredentials(credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider): void;
|
|
13
|
+
credentials(): AwsCredentialIdentity | AwsCredentialIdentityProvider | undefined;
|
|
21
14
|
}
|
|
22
15
|
export type HttpAuthRuntimeConfig = Partial<{
|
|
23
16
|
httpAuthSchemes: HttpAuthScheme[];
|
|
@@ -25,8 +18,8 @@ export type HttpAuthRuntimeConfig = Partial<{
|
|
|
25
18
|
credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
|
|
26
19
|
}>;
|
|
27
20
|
export declare const getHttpAuthExtensionConfiguration: (
|
|
28
|
-
runtimeConfig: HttpAuthRuntimeConfig
|
|
21
|
+
runtimeConfig: HttpAuthRuntimeConfig,
|
|
29
22
|
) => HttpAuthExtensionConfiguration;
|
|
30
23
|
export declare const resolveHttpAuthRuntimeConfig: (
|
|
31
|
-
config: HttpAuthExtensionConfiguration
|
|
24
|
+
config: HttpAuthExtensionConfiguration,
|
|
32
25
|
) => HttpAuthRuntimeConfig;
|
|
@@ -15,32 +15,29 @@ import { RUMClientResolvedConfig } from "../RUMClient";
|
|
|
15
15
|
export interface RUMHttpAuthSchemeParameters extends HttpAuthSchemeParameters {
|
|
16
16
|
region?: string;
|
|
17
17
|
}
|
|
18
|
-
export interface RUMHttpAuthSchemeParametersProvider
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
> {}
|
|
18
|
+
export interface RUMHttpAuthSchemeParametersProvider extends HttpAuthSchemeParametersProvider<
|
|
19
|
+
RUMClientResolvedConfig,
|
|
20
|
+
HandlerExecutionContext,
|
|
21
|
+
RUMHttpAuthSchemeParameters,
|
|
22
|
+
object
|
|
23
|
+
> {}
|
|
25
24
|
export declare const defaultRUMHttpAuthSchemeParametersProvider: (
|
|
26
25
|
config: RUMClientResolvedConfig,
|
|
27
26
|
context: HandlerExecutionContext,
|
|
28
|
-
input: object
|
|
27
|
+
input: object,
|
|
29
28
|
) => Promise<RUMHttpAuthSchemeParameters>;
|
|
30
|
-
export interface RUMHttpAuthSchemeProvider
|
|
31
|
-
extends HttpAuthSchemeProvider<RUMHttpAuthSchemeParameters> {}
|
|
29
|
+
export interface RUMHttpAuthSchemeProvider extends HttpAuthSchemeProvider<RUMHttpAuthSchemeParameters> {}
|
|
32
30
|
export declare const defaultRUMHttpAuthSchemeProvider: RUMHttpAuthSchemeProvider;
|
|
33
31
|
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
34
32
|
authSchemePreference?: string[] | Provider<string[]>;
|
|
35
33
|
httpAuthSchemes?: HttpAuthScheme[];
|
|
36
34
|
httpAuthSchemeProvider?: RUMHttpAuthSchemeProvider;
|
|
37
35
|
}
|
|
38
|
-
export interface HttpAuthSchemeResolvedConfig
|
|
39
|
-
extends AwsSdkSigV4AuthResolvedConfig {
|
|
36
|
+
export interface HttpAuthSchemeResolvedConfig extends AwsSdkSigV4AuthResolvedConfig {
|
|
40
37
|
readonly authSchemePreference: Provider<string[]>;
|
|
41
38
|
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
42
39
|
readonly httpAuthSchemeProvider: RUMHttpAuthSchemeProvider;
|
|
43
40
|
}
|
|
44
41
|
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
45
|
-
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
42
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved,
|
|
46
43
|
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -1,25 +1,20 @@
|
|
|
1
1
|
import { EndpointParameterInstructions } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
ServiceInputTypes,
|
|
5
|
-
ServiceOutputTypes,
|
|
6
|
-
} from "./RUMClient";
|
|
7
|
-
export declare const command: <
|
|
8
|
-
I extends ServiceInputTypes,
|
|
9
|
-
O extends ServiceOutputTypes
|
|
10
|
-
>(
|
|
2
|
+
import { RUMClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./RUMClient";
|
|
3
|
+
export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(
|
|
11
4
|
added: EndpointParameterInstructions,
|
|
12
5
|
plugins: (
|
|
13
6
|
CommandCtor: any,
|
|
14
7
|
clientStack: any,
|
|
15
8
|
config: any,
|
|
16
|
-
options: any
|
|
9
|
+
options: any,
|
|
17
10
|
) => import("@smithy/types").Pluggable<any, any>[],
|
|
18
11
|
op: string,
|
|
19
12
|
$: import("@smithy/types").StaticOperationSchema,
|
|
20
|
-
smithyContext?: Record<string, unknown
|
|
13
|
+
smithyContext?: Record<string, unknown>,
|
|
21
14
|
) => {
|
|
22
|
-
new (
|
|
15
|
+
new (
|
|
16
|
+
input: I,
|
|
17
|
+
): import("@smithy/core/client").CommandImpl<
|
|
23
18
|
I,
|
|
24
19
|
O,
|
|
25
20
|
RUMClientResolvedConfig,
|
|
@@ -38,9 +33,4 @@ export declare const command: <
|
|
|
38
33
|
getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
39
34
|
};
|
|
40
35
|
export declare const _ep0: EndpointParameterInstructions;
|
|
41
|
-
export declare const _mw0: (
|
|
42
|
-
Command: any,
|
|
43
|
-
cs: any,
|
|
44
|
-
config: any,
|
|
45
|
-
o: any
|
|
46
|
-
) => never[];
|
|
36
|
+
export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
BatchCreateRumMetricDefinitionsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface BatchCreateRumMetricDefinitionsCommandInput
|
|
8
|
-
extends BatchCreateRumMetricDefinitionsRequest {}
|
|
7
|
+
export interface BatchCreateRumMetricDefinitionsCommandInput extends BatchCreateRumMetricDefinitionsRequest {}
|
|
9
8
|
export interface BatchCreateRumMetricDefinitionsCommandOutput
|
|
10
|
-
extends BatchCreateRumMetricDefinitionsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends BatchCreateRumMetricDefinitionsResponse, __MetadataBearer {}
|
|
12
10
|
declare const BatchCreateRumMetricDefinitionsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: BatchCreateRumMetricDefinitionsCommandInput
|
|
12
|
+
input: BatchCreateRumMetricDefinitionsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
BatchCreateRumMetricDefinitionsCommandInput,
|
|
17
15
|
BatchCreateRumMetricDefinitionsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const BatchCreateRumMetricDefinitionsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: BatchCreateRumMetricDefinitionsCommandInput
|
|
21
|
+
input: BatchCreateRumMetricDefinitionsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
BatchCreateRumMetricDefinitionsCommandInput,
|
|
26
24
|
BatchCreateRumMetricDefinitionsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
BatchDeleteRumMetricDefinitionsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface BatchDeleteRumMetricDefinitionsCommandInput
|
|
8
|
-
extends BatchDeleteRumMetricDefinitionsRequest {}
|
|
7
|
+
export interface BatchDeleteRumMetricDefinitionsCommandInput extends BatchDeleteRumMetricDefinitionsRequest {}
|
|
9
8
|
export interface BatchDeleteRumMetricDefinitionsCommandOutput
|
|
10
|
-
extends BatchDeleteRumMetricDefinitionsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends BatchDeleteRumMetricDefinitionsResponse, __MetadataBearer {}
|
|
12
10
|
declare const BatchDeleteRumMetricDefinitionsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: BatchDeleteRumMetricDefinitionsCommandInput
|
|
12
|
+
input: BatchDeleteRumMetricDefinitionsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
BatchDeleteRumMetricDefinitionsCommandInput,
|
|
17
15
|
BatchDeleteRumMetricDefinitionsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const BatchDeleteRumMetricDefinitionsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: BatchDeleteRumMetricDefinitionsCommandInput
|
|
21
|
+
input: BatchDeleteRumMetricDefinitionsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
BatchDeleteRumMetricDefinitionsCommandInput,
|
|
26
24
|
BatchDeleteRumMetricDefinitionsCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
BatchGetRumMetricDefinitionsResponse,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface BatchGetRumMetricDefinitionsCommandInput
|
|
8
|
-
extends BatchGetRumMetricDefinitionsRequest {}
|
|
7
|
+
export interface BatchGetRumMetricDefinitionsCommandInput extends BatchGetRumMetricDefinitionsRequest {}
|
|
9
8
|
export interface BatchGetRumMetricDefinitionsCommandOutput
|
|
10
|
-
extends BatchGetRumMetricDefinitionsResponse,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends BatchGetRumMetricDefinitionsResponse, __MetadataBearer {}
|
|
12
10
|
declare const BatchGetRumMetricDefinitionsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: BatchGetRumMetricDefinitionsCommandInput
|
|
12
|
+
input: BatchGetRumMetricDefinitionsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
BatchGetRumMetricDefinitionsCommandInput,
|
|
17
15
|
BatchGetRumMetricDefinitionsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const BatchGetRumMetricDefinitionsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: BatchGetRumMetricDefinitionsCommandInput
|
|
21
|
+
input: BatchGetRumMetricDefinitionsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
BatchGetRumMetricDefinitionsCommandInput,
|
|
26
24
|
BatchGetRumMetricDefinitionsCommandOutput,
|