|
133 | 133 | },
|
134 | 134 | "idempotent": true
|
135 | 135 | },
|
| 136 | + "CreateScraper": { |
| 137 | + "http": { |
| 138 | + "requestUri": "/scrapers", |
| 139 | + "responseCode": 202 |
| 140 | + }, |
| 141 | + "input": { |
| 142 | + "type": "structure", |
| 143 | + "required": [ |
| 144 | + "scrapeConfiguration", |
| 145 | + "source", |
| 146 | + "destination" |
| 147 | + ], |
| 148 | + "members": { |
| 149 | + "alias": {}, |
| 150 | + "scrapeConfiguration": { |
| 151 | + "shape": "Sq" |
| 152 | + }, |
| 153 | + "source": { |
| 154 | + "shape": "Ss" |
| 155 | + }, |
| 156 | + "destination": { |
| 157 | + "shape": "Sz" |
| 158 | + }, |
| 159 | + "clientToken": { |
| 160 | + "idempotencyToken": true |
| 161 | + }, |
| 162 | + "tags": { |
| 163 | + "shape": "Sh" |
| 164 | + } |
| 165 | + } |
| 166 | + }, |
| 167 | + "output": { |
| 168 | + "type": "structure", |
| 169 | + "required": [ |
| 170 | + "scraperId", |
| 171 | + "arn", |
| 172 | + "status" |
| 173 | + ], |
| 174 | + "members": { |
| 175 | + "scraperId": {}, |
| 176 | + "arn": {}, |
| 177 | + "status": { |
| 178 | + "shape": "S15" |
| 179 | + }, |
| 180 | + "tags": { |
| 181 | + "shape": "Sh" |
| 182 | + } |
| 183 | + } |
| 184 | + }, |
| 185 | + "idempotent": true |
| 186 | + }, |
136 | 187 | "CreateWorkspace": {
|
137 | 188 | "http": {
|
138 | 189 | "requestUri": "/workspaces",
|
|
161 | 212 | "workspaceId": {},
|
162 | 213 | "arn": {},
|
163 | 214 | "status": {
|
164 |
| - "shape": "Ss" |
| 215 | + "shape": "S1a" |
165 | 216 | },
|
166 | 217 | "tags": {
|
167 | 218 | "shape": "Sh"
|
|
250 | 301 | },
|
251 | 302 | "idempotent": true
|
252 | 303 | },
|
| 304 | + "DeleteScraper": { |
| 305 | + "http": { |
| 306 | + "method": "DELETE", |
| 307 | + "requestUri": "/scrapers/{scraperId}", |
| 308 | + "responseCode": 202 |
| 309 | + }, |
| 310 | + "input": { |
| 311 | + "type": "structure", |
| 312 | + "required": [ |
| 313 | + "scraperId" |
| 314 | + ], |
| 315 | + "members": { |
| 316 | + "scraperId": { |
| 317 | + "location": "uri", |
| 318 | + "locationName": "scraperId" |
| 319 | + }, |
| 320 | + "clientToken": { |
| 321 | + "idempotencyToken": true, |
| 322 | + "location": "querystring", |
| 323 | + "locationName": "clientToken" |
| 324 | + } |
| 325 | + } |
| 326 | + }, |
| 327 | + "output": { |
| 328 | + "type": "structure", |
| 329 | + "required": [ |
| 330 | + "scraperId", |
| 331 | + "status" |
| 332 | + ], |
| 333 | + "members": { |
| 334 | + "scraperId": {}, |
| 335 | + "status": { |
| 336 | + "shape": "S15" |
| 337 | + } |
| 338 | + } |
| 339 | + }, |
| 340 | + "idempotent": true |
| 341 | + }, |
253 | 342 | "DeleteWorkspace": {
|
254 | 343 | "http": {
|
255 | 344 | "method": "DELETE",
|
|
437 | 526 | }
|
438 | 527 | }
|
439 | 528 | },
|
| 529 | + "DescribeScraper": { |
| 530 | + "http": { |
| 531 | + "method": "GET", |
| 532 | + "requestUri": "/scrapers/{scraperId}", |
| 533 | + "responseCode": 200 |
| 534 | + }, |
| 535 | + "input": { |
| 536 | + "type": "structure", |
| 537 | + "required": [ |
| 538 | + "scraperId" |
| 539 | + ], |
| 540 | + "members": { |
| 541 | + "scraperId": { |
| 542 | + "location": "uri", |
| 543 | + "locationName": "scraperId" |
| 544 | + } |
| 545 | + } |
| 546 | + }, |
| 547 | + "output": { |
| 548 | + "type": "structure", |
| 549 | + "required": [ |
| 550 | + "scraper" |
| 551 | + ], |
| 552 | + "members": { |
| 553 | + "scraper": { |
| 554 | + "type": "structure", |
| 555 | + "required": [ |
| 556 | + "scraperId", |
| 557 | + "arn", |
| 558 | + "roleArn", |
| 559 | + "status", |
| 560 | + "createdAt", |
| 561 | + "lastModifiedAt", |
| 562 | + "scrapeConfiguration", |
| 563 | + "source", |
| 564 | + "destination" |
| 565 | + ], |
| 566 | + "members": { |
| 567 | + "alias": {}, |
| 568 | + "scraperId": {}, |
| 569 | + "arn": {}, |
| 570 | + "roleArn": {}, |
| 571 | + "status": { |
| 572 | + "shape": "S15" |
| 573 | + }, |
| 574 | + "createdAt": { |
| 575 | + "type": "timestamp" |
| 576 | + }, |
| 577 | + "lastModifiedAt": { |
| 578 | + "type": "timestamp" |
| 579 | + }, |
| 580 | + "tags": { |
| 581 | + "shape": "Sh" |
| 582 | + }, |
| 583 | + "statusReason": {}, |
| 584 | + "scrapeConfiguration": { |
| 585 | + "shape": "Sq" |
| 586 | + }, |
| 587 | + "source": { |
| 588 | + "shape": "Ss" |
| 589 | + }, |
| 590 | + "destination": { |
| 591 | + "shape": "Sz" |
| 592 | + } |
| 593 | + } |
| 594 | + } |
| 595 | + } |
| 596 | + } |
| 597 | + }, |
440 | 598 | "DescribeWorkspace": {
|
441 | 599 | "http": {
|
442 | 600 | "method": "GET",
|
|
474 | 632 | "alias": {},
|
475 | 633 | "arn": {},
|
476 | 634 | "status": {
|
477 |
| - "shape": "Ss" |
| 635 | + "shape": "S1a" |
478 | 636 | },
|
479 | 637 | "prometheusEndpoint": {},
|
480 | 638 | "createdAt": {
|
|
488 | 646 | }
|
489 | 647 | }
|
490 | 648 | },
|
| 649 | + "GetDefaultScraperConfiguration": { |
| 650 | + "http": { |
| 651 | + "method": "GET", |
| 652 | + "requestUri": "/scraperconfiguration", |
| 653 | + "responseCode": 200 |
| 654 | + }, |
| 655 | + "input": { |
| 656 | + "type": "structure", |
| 657 | + "members": {} |
| 658 | + }, |
| 659 | + "output": { |
| 660 | + "type": "structure", |
| 661 | + "required": [ |
| 662 | + "configuration" |
| 663 | + ], |
| 664 | + "members": { |
| 665 | + "configuration": { |
| 666 | + "type": "blob" |
| 667 | + } |
| 668 | + } |
| 669 | + } |
| 670 | + }, |
491 | 671 | "ListRuleGroupsNamespaces": {
|
492 | 672 | "http": {
|
493 | 673 | "method": "GET",
|
|
558 | 738 | }
|
559 | 739 | }
|
560 | 740 | },
|
| 741 | + "ListScrapers": { |
| 742 | + "http": { |
| 743 | + "method": "GET", |
| 744 | + "requestUri": "/scrapers", |
| 745 | + "responseCode": 200 |
| 746 | + }, |
| 747 | + "input": { |
| 748 | + "type": "structure", |
| 749 | + "members": { |
| 750 | + "filters": { |
| 751 | + "location": "querystring", |
| 752 | + "type": "map", |
| 753 | + "key": {}, |
| 754 | + "value": { |
| 755 | + "type": "list", |
| 756 | + "member": {} |
| 757 | + } |
| 758 | + }, |
| 759 | + "nextToken": { |
| 760 | + "location": "querystring", |
| 761 | + "locationName": "nextToken" |
| 762 | + }, |
| 763 | + "maxResults": { |
| 764 | + "location": "querystring", |
| 765 | + "locationName": "maxResults", |
| 766 | + "type": "integer" |
| 767 | + } |
| 768 | + } |
| 769 | + }, |
| 770 | + "output": { |
| 771 | + "type": "structure", |
| 772 | + "required": [ |
| 773 | + "scrapers" |
| 774 | + ], |
| 775 | + "members": { |
| 776 | + "scrapers": { |
| 777 | + "type": "list", |
| 778 | + "member": { |
| 779 | + "type": "structure", |
| 780 | + "required": [ |
| 781 | + "scraperId", |
| 782 | + "arn", |
| 783 | + "roleArn", |
| 784 | + "status", |
| 785 | + "createdAt", |
| 786 | + "lastModifiedAt", |
| 787 | + "source", |
| 788 | + "destination" |
| 789 | + ], |
| 790 | + "members": { |
| 791 | + "alias": {}, |
| 792 | + "scraperId": {}, |
| 793 | + "arn": {}, |
| 794 | + "roleArn": {}, |
| 795 | + "status": { |
| 796 | + "shape": "S15" |
| 797 | + }, |
| 798 | + "createdAt": { |
| 799 | + "type": "timestamp" |
| 800 | + }, |
| 801 | + "lastModifiedAt": { |
| 802 | + "type": "timestamp" |
| 803 | + }, |
| 804 | + "tags": { |
| 805 | + "shape": "Sh" |
| 806 | + }, |
| 807 | + "statusReason": {}, |
| 808 | + "source": { |
| 809 | + "shape": "Ss" |
| 810 | + }, |
| 811 | + "destination": { |
| 812 | + "shape": "Sz" |
| 813 | + } |
| 814 | + } |
| 815 | + } |
| 816 | + }, |
| 817 | + "nextToken": {} |
| 818 | + } |
| 819 | + } |
| 820 | + }, |
561 | 821 | "ListTagsForResource": {
|
562 | 822 | "http": {
|
563 | 823 | "method": "GET",
|
|
630 | 890 | "alias": {},
|
631 | 891 | "arn": {},
|
632 | 892 | "status": {
|
633 |
| - "shape": "Ss" |
| 893 | + "shape": "S1a" |
634 | 894 | },
|
635 | 895 | "createdAt": {
|
636 | 896 | "type": "timestamp"
|
|
886 | 1146 | "statusReason": {}
|
887 | 1147 | }
|
888 | 1148 | },
|
| 1149 | + "Sq": { |
| 1150 | + "type": "structure", |
| 1151 | + "members": { |
| 1152 | + "configurationBlob": { |
| 1153 | + "type": "blob" |
| 1154 | + } |
| 1155 | + }, |
| 1156 | + "union": true |
| 1157 | + }, |
889 | 1158 | "Ss": {
|
| 1159 | + "type": "structure", |
| 1160 | + "members": { |
| 1161 | + "eksConfiguration": { |
| 1162 | + "type": "structure", |
| 1163 | + "required": [ |
| 1164 | + "clusterArn", |
| 1165 | + "subnetIds" |
| 1166 | + ], |
| 1167 | + "members": { |
| 1168 | + "clusterArn": {}, |
| 1169 | + "securityGroupIds": { |
| 1170 | + "type": "list", |
| 1171 | + "member": {} |
| 1172 | + }, |
| 1173 | + "subnetIds": { |
| 1174 | + "type": "list", |
| 1175 | + "member": {} |
| 1176 | + } |
| 1177 | + } |
| 1178 | + } |
| 1179 | + }, |
| 1180 | + "union": true |
| 1181 | + }, |
| 1182 | + "Sz": { |
| 1183 | + "type": "structure", |
| 1184 | + "members": { |
| 1185 | + "ampConfiguration": { |
| 1186 | + "type": "structure", |
| 1187 | + "required": [ |
| 1188 | + "workspaceArn" |
| 1189 | + ], |
| 1190 | + "members": { |
| 1191 | + "workspaceArn": {} |
| 1192 | + } |
| 1193 | + } |
| 1194 | + }, |
| 1195 | + "union": true |
| 1196 | + }, |
| 1197 | + "S15": { |
| 1198 | + "type": "structure", |
| 1199 | + "required": [ |
| 1200 | + "statusCode" |
| 1201 | + ], |
| 1202 | + "members": { |
| 1203 | + "statusCode": {} |
| 1204 | + } |
| 1205 | + }, |
| 1206 | + "S1a": { |
890 | 1207 | "type": "structure",
|
891 | 1208 | "required": [
|
892 | 1209 | "statusCode"
|
|
0 commit comments