@@ -18,6 +18,11 @@ import {
18
18
CreateRuleGroupsNamespaceCommandInput ,
19
19
CreateRuleGroupsNamespaceCommandOutput ,
20
20
} from "./commands/CreateRuleGroupsNamespaceCommand" ;
21
+ import {
22
+ CreateScraperCommand ,
23
+ CreateScraperCommandInput ,
24
+ CreateScraperCommandOutput ,
25
+ } from "./commands/CreateScraperCommand" ;
21
26
import {
22
27
CreateWorkspaceCommand ,
23
28
CreateWorkspaceCommandInput ,
@@ -38,6 +43,11 @@ import {
38
43
DeleteRuleGroupsNamespaceCommandInput ,
39
44
DeleteRuleGroupsNamespaceCommandOutput ,
40
45
} from "./commands/DeleteRuleGroupsNamespaceCommand" ;
46
+ import {
47
+ DeleteScraperCommand ,
48
+ DeleteScraperCommandInput ,
49
+ DeleteScraperCommandOutput ,
50
+ } from "./commands/DeleteScraperCommand" ;
41
51
import {
42
52
DeleteWorkspaceCommand ,
43
53
DeleteWorkspaceCommandInput ,
@@ -58,16 +68,31 @@ import {
58
68
DescribeRuleGroupsNamespaceCommandInput ,
59
69
DescribeRuleGroupsNamespaceCommandOutput ,
60
70
} from "./commands/DescribeRuleGroupsNamespaceCommand" ;
71
+ import {
72
+ DescribeScraperCommand ,
73
+ DescribeScraperCommandInput ,
74
+ DescribeScraperCommandOutput ,
75
+ } from "./commands/DescribeScraperCommand" ;
61
76
import {
62
77
DescribeWorkspaceCommand ,
63
78
DescribeWorkspaceCommandInput ,
64
79
DescribeWorkspaceCommandOutput ,
65
80
} from "./commands/DescribeWorkspaceCommand" ;
81
+ import {
82
+ GetDefaultScraperConfigurationCommand ,
83
+ GetDefaultScraperConfigurationCommandInput ,
84
+ GetDefaultScraperConfigurationCommandOutput ,
85
+ } from "./commands/GetDefaultScraperConfigurationCommand" ;
66
86
import {
67
87
ListRuleGroupsNamespacesCommand ,
68
88
ListRuleGroupsNamespacesCommandInput ,
69
89
ListRuleGroupsNamespacesCommandOutput ,
70
90
} from "./commands/ListRuleGroupsNamespacesCommand" ;
91
+ import {
92
+ ListScrapersCommand ,
93
+ ListScrapersCommandInput ,
94
+ ListScrapersCommandOutput ,
95
+ } from "./commands/ListScrapersCommand" ;
71
96
import {
72
97
ListTagsForResourceCommand ,
73
98
ListTagsForResourceCommandInput ,
@@ -109,16 +134,21 @@ const commands = {
109
134
CreateAlertManagerDefinitionCommand,
110
135
CreateLoggingConfigurationCommand,
111
136
CreateRuleGroupsNamespaceCommand,
137
+ CreateScraperCommand,
112
138
CreateWorkspaceCommand,
113
139
DeleteAlertManagerDefinitionCommand,
114
140
DeleteLoggingConfigurationCommand,
115
141
DeleteRuleGroupsNamespaceCommand,
142
+ DeleteScraperCommand,
116
143
DeleteWorkspaceCommand,
117
144
DescribeAlertManagerDefinitionCommand,
118
145
DescribeLoggingConfigurationCommand,
119
146
DescribeRuleGroupsNamespaceCommand,
147
+ DescribeScraperCommand,
120
148
DescribeWorkspaceCommand,
149
+ GetDefaultScraperConfigurationCommand,
121
150
ListRuleGroupsNamespacesCommand,
151
+ ListScrapersCommand,
122
152
ListTagsForResourceCommand,
123
153
ListWorkspacesCommand,
124
154
PutAlertManagerDefinitionCommand,
@@ -181,6 +211,17 @@ export interface Amp {
181
211
cb : ( err : any , data ?: CreateRuleGroupsNamespaceCommandOutput ) => void
182
212
) : void ;
183
213
214
+ /**
215
+ * @see {@link CreateScraperCommand }
216
+ */
217
+ createScraper ( args : CreateScraperCommandInput , options ?: __HttpHandlerOptions ) : Promise < CreateScraperCommandOutput > ;
218
+ createScraper ( args : CreateScraperCommandInput , cb : ( err : any , data ?: CreateScraperCommandOutput ) => void ) : void ;
219
+ createScraper (
220
+ args : CreateScraperCommandInput ,
221
+ options : __HttpHandlerOptions ,
222
+ cb : ( err : any , data ?: CreateScraperCommandOutput ) => void
223
+ ) : void ;
224
+
184
225
/**
185
226
* @see {@link CreateWorkspaceCommand }
186
227
*/
@@ -246,6 +287,17 @@ export interface Amp {
246
287
cb : ( err : any , data ?: DeleteRuleGroupsNamespaceCommandOutput ) => void
247
288
) : void ;
248
289
290
+ /**
291
+ * @see {@link DeleteScraperCommand }
292
+ */
293
+ deleteScraper ( args : DeleteScraperCommandInput , options ?: __HttpHandlerOptions ) : Promise < DeleteScraperCommandOutput > ;
294
+ deleteScraper ( args : DeleteScraperCommandInput , cb : ( err : any , data ?: DeleteScraperCommandOutput ) => void ) : void ;
295
+ deleteScraper (
296
+ args : DeleteScraperCommandInput ,
297
+ options : __HttpHandlerOptions ,
298
+ cb : ( err : any , data ?: DeleteScraperCommandOutput ) => void
299
+ ) : void ;
300
+
249
301
/**
250
302
* @see {@link DeleteWorkspaceCommand }
251
303
*/
@@ -311,6 +363,20 @@ export interface Amp {
311
363
cb : ( err : any , data ?: DescribeRuleGroupsNamespaceCommandOutput ) => void
312
364
) : void ;
313
365
366
+ /**
367
+ * @see {@link DescribeScraperCommand }
368
+ */
369
+ describeScraper (
370
+ args : DescribeScraperCommandInput ,
371
+ options ?: __HttpHandlerOptions
372
+ ) : Promise < DescribeScraperCommandOutput > ;
373
+ describeScraper ( args : DescribeScraperCommandInput , cb : ( err : any , data ?: DescribeScraperCommandOutput ) => void ) : void ;
374
+ describeScraper (
375
+ args : DescribeScraperCommandInput ,
376
+ options : __HttpHandlerOptions ,
377
+ cb : ( err : any , data ?: DescribeScraperCommandOutput ) => void
378
+ ) : void ;
379
+
314
380
/**
315
381
* @see {@link DescribeWorkspaceCommand }
316
382
*/
@@ -328,6 +394,23 @@ export interface Amp {
328
394
cb : ( err : any , data ?: DescribeWorkspaceCommandOutput ) => void
329
395
) : void ;
330
396
397
+ /**
398
+ * @see {@link GetDefaultScraperConfigurationCommand }
399
+ */
400
+ getDefaultScraperConfiguration (
401
+ args : GetDefaultScraperConfigurationCommandInput ,
402
+ options ?: __HttpHandlerOptions
403
+ ) : Promise < GetDefaultScraperConfigurationCommandOutput > ;
404
+ getDefaultScraperConfiguration (
405
+ args : GetDefaultScraperConfigurationCommandInput ,
406
+ cb : ( err : any , data ?: GetDefaultScraperConfigurationCommandOutput ) => void
407
+ ) : void ;
408
+ getDefaultScraperConfiguration (
409
+ args : GetDefaultScraperConfigurationCommandInput ,
410
+ options : __HttpHandlerOptions ,
411
+ cb : ( err : any , data ?: GetDefaultScraperConfigurationCommandOutput ) => void
412
+ ) : void ;
413
+
331
414
/**
332
415
* @see {@link ListRuleGroupsNamespacesCommand }
333
416
*/
@@ -345,6 +428,17 @@ export interface Amp {
345
428
cb : ( err : any , data ?: ListRuleGroupsNamespacesCommandOutput ) => void
346
429
) : void ;
347
430
431
+ /**
432
+ * @see {@link ListScrapersCommand }
433
+ */
434
+ listScrapers ( args : ListScrapersCommandInput , options ?: __HttpHandlerOptions ) : Promise < ListScrapersCommandOutput > ;
435
+ listScrapers ( args : ListScrapersCommandInput , cb : ( err : any , data ?: ListScrapersCommandOutput ) => void ) : void ;
436
+ listScrapers (
437
+ args : ListScrapersCommandInput ,
438
+ options : __HttpHandlerOptions ,
439
+ cb : ( err : any , data ?: ListScrapersCommandOutput ) => void
440
+ ) : void ;
441
+
348
442
/**
349
443
* @see {@link ListTagsForResourceCommand }
350
444
*/
0 commit comments