|
280 | 280 | ],
|
281 | 281 | "documentation": "<p>Lists the findings from a particular code analysis job.</p>"
|
282 | 282 | },
|
| 283 | + "ListEvents": { |
| 284 | + "name": "ListEvents", |
| 285 | + "http": { |
| 286 | + "method": "POST", |
| 287 | + "requestUri": "/" |
| 288 | + }, |
| 289 | + "input": { "shape": "ListEventsRequest" }, |
| 290 | + "output": { "shape": "ListEventsResponse" }, |
| 291 | + "errors": [ |
| 292 | + { "shape": "ThrottlingException" }, |
| 293 | + { "shape": "InternalServerException" }, |
| 294 | + { "shape": "ValidationException" }, |
| 295 | + { "shape": "AccessDeniedException" } |
| 296 | + ], |
| 297 | + "documentation": "<p>List events for agent activity</p>" |
| 298 | + }, |
283 | 299 | "ListFeatureEvaluations": {
|
284 | 300 | "name": "ListFeatureEvaluations",
|
285 | 301 | "http": {
|
|
689 | 705 | "acceptedLineCount": { "shape": "Integer" },
|
690 | 706 | "acceptedSnippetHasReference": { "shape": "Boolean" },
|
691 | 707 | "hasProjectLevelContext": { "shape": "Boolean" },
|
692 |
| - "userIntent": { "shape": "UserIntent" } |
| 708 | + "userIntent": { "shape": "UserIntent" }, |
| 709 | + "addedIdeDiagnostics": { "shape": "IdeDiagnosticList" }, |
| 710 | + "removedIdeDiagnostics": { "shape": "IdeDiagnosticList" } |
693 | 711 | }
|
694 | 712 | },
|
695 | 713 | "ChatInteractWithMessageEventInteractionTargetString": {
|
|
1079 | 1097 | "CreateWorkspaceRequestWorkspaceRootString": {
|
1080 | 1098 | "type": "string",
|
1081 | 1099 | "max": 1024,
|
1082 |
| - "min": 1 |
| 1100 | + "min": 1, |
| 1101 | + "sensitive": true |
1083 | 1102 | },
|
1084 | 1103 | "CreateWorkspaceResponse": {
|
1085 | 1104 | "type": "structure",
|
|
1394 | 1413 | "useRelevantDocuments": {
|
1395 | 1414 | "shape": "Boolean",
|
1396 | 1415 | "documentation": "<p>Whether service should use relevant document in prompt</p>"
|
| 1416 | + }, |
| 1417 | + "workspaceFolders": { |
| 1418 | + "shape": "WorkspaceFolderList", |
| 1419 | + "documentation": "<p>Represents IDE provided list of workspace folders</p>" |
1397 | 1420 | }
|
1398 | 1421 | },
|
1399 | 1422 | "documentation": "<p>Represents the state of an Editor</p>"
|
|
1476 | 1499 | "max": 2048,
|
1477 | 1500 | "min": 0
|
1478 | 1501 | },
|
| 1502 | + "Event": { |
| 1503 | + "type": "structure", |
| 1504 | + "required": ["eventId", "generationId", "eventTimestamp", "eventType", "eventBlob"], |
| 1505 | + "members": { |
| 1506 | + "eventId": { "shape": "UUID" }, |
| 1507 | + "generationId": { "shape": "UUID" }, |
| 1508 | + "eventTimestamp": { "shape": "SyntheticTimestamp_date_time" }, |
| 1509 | + "eventType": { "shape": "EventType" }, |
| 1510 | + "eventBlob": { "shape": "EventBlob" } |
| 1511 | + } |
| 1512 | + }, |
| 1513 | + "EventBlob": { |
| 1514 | + "type": "blob", |
| 1515 | + "max": 400000, |
| 1516 | + "min": 1, |
| 1517 | + "sensitive": true |
| 1518 | + }, |
| 1519 | + "EventList": { |
| 1520 | + "type": "list", |
| 1521 | + "member": { "shape": "Event" }, |
| 1522 | + "max": 10, |
| 1523 | + "min": 1 |
| 1524 | + }, |
| 1525 | + "EventType": { |
| 1526 | + "type": "string", |
| 1527 | + "max": 100, |
| 1528 | + "min": 1 |
| 1529 | + }, |
1479 | 1530 | "ExternalIdentityDetails": {
|
1480 | 1531 | "type": "structure",
|
1481 | 1532 | "members": {
|
|
1629 | 1680 | "TASK_ASSIST",
|
1630 | 1681 | "TRANSFORMATIONS",
|
1631 | 1682 | "CHAT_CUSTOMIZATION",
|
1632 |
| - "TRANSFORMATIONS_WEBAPP" |
| 1683 | + "TRANSFORMATIONS_WEBAPP", |
| 1684 | + "FEATURE_DEVELOPMENT" |
1633 | 1685 | ],
|
1634 | 1686 | "max": 64,
|
1635 | 1687 | "min": 1
|
|
1807 | 1859 | "max": 64,
|
1808 | 1860 | "min": 1
|
1809 | 1861 | },
|
| 1862 | + "IdeDiagnostic": { |
| 1863 | + "type": "structure", |
| 1864 | + "required": ["ideDiagnosticType"], |
| 1865 | + "members": { |
| 1866 | + "range": { |
| 1867 | + "shape": "Range", |
| 1868 | + "documentation": "<p>The range at which the message applies.</p>" |
| 1869 | + }, |
| 1870 | + "source": { |
| 1871 | + "shape": "IdeDiagnosticSourceString", |
| 1872 | + "documentation": "<p>A human-readable string describing the source of the diagnostic</p>" |
| 1873 | + }, |
| 1874 | + "severity": { |
| 1875 | + "shape": "DiagnosticSeverity", |
| 1876 | + "documentation": "<p>Diagnostic Error type</p>" |
| 1877 | + }, |
| 1878 | + "ideDiagnosticType": { |
| 1879 | + "shape": "IdeDiagnosticType", |
| 1880 | + "documentation": "<p>Type of the diagnostic</p>" |
| 1881 | + } |
| 1882 | + }, |
| 1883 | + "documentation": "<p>Structure to represent metadata about a Diagnostic from user local IDE</p>" |
| 1884 | + }, |
| 1885 | + "IdeDiagnosticList": { |
| 1886 | + "type": "list", |
| 1887 | + "member": { "shape": "IdeDiagnostic" }, |
| 1888 | + "documentation": "<p>List of IDE Diagnostics</p>", |
| 1889 | + "max": 1024, |
| 1890 | + "min": 0 |
| 1891 | + }, |
| 1892 | + "IdeDiagnosticSourceString": { |
| 1893 | + "type": "string", |
| 1894 | + "max": 1024, |
| 1895 | + "min": 0, |
| 1896 | + "sensitive": true |
| 1897 | + }, |
| 1898 | + "IdeDiagnosticType": { |
| 1899 | + "type": "string", |
| 1900 | + "enum": ["SYNTAX_ERROR", "TYPE_ERROR", "REFERENCE_ERROR", "BEST_PRACTICE", "SECURITY", "OTHER"] |
| 1901 | + }, |
1810 | 1902 | "IdempotencyToken": {
|
1811 | 1903 | "type": "string",
|
1812 | 1904 | "max": 256,
|
|
1995 | 2087 | "codeAnalysisFindings": { "shape": "SensitiveString" }
|
1996 | 2088 | }
|
1997 | 2089 | },
|
| 2090 | + "ListEventsRequest": { |
| 2091 | + "type": "structure", |
| 2092 | + "required": ["conversationId"], |
| 2093 | + "members": { |
| 2094 | + "conversationId": { "shape": "UUID" }, |
| 2095 | + "maxResults": { "shape": "ListEventsRequestMaxResultsInteger" }, |
| 2096 | + "nextToken": { "shape": "NextToken" } |
| 2097 | + } |
| 2098 | + }, |
| 2099 | + "ListEventsRequestMaxResultsInteger": { |
| 2100 | + "type": "integer", |
| 2101 | + "box": true, |
| 2102 | + "max": 50, |
| 2103 | + "min": 1 |
| 2104 | + }, |
| 2105 | + "ListEventsResponse": { |
| 2106 | + "type": "structure", |
| 2107 | + "required": ["conversationId", "events"], |
| 2108 | + "members": { |
| 2109 | + "conversationId": { "shape": "UUID" }, |
| 2110 | + "events": { "shape": "EventList" }, |
| 2111 | + "nextToken": { "shape": "NextToken" } |
| 2112 | + } |
| 2113 | + }, |
1998 | 2114 | "ListFeatureEvaluationsRequest": {
|
1999 | 2115 | "type": "structure",
|
2000 | 2116 | "required": ["userContext"],
|
|
2023 | 2139 | "ListWorkspaceMetadataRequestWorkspaceRootString": {
|
2024 | 2140 | "type": "string",
|
2025 | 2141 | "max": 1024,
|
2026 |
| - "min": 1 |
| 2142 | + "min": 1, |
| 2143 | + "sensitive": true |
2027 | 2144 | },
|
2028 | 2145 | "ListWorkspaceMetadataResponse": {
|
2029 | 2146 | "type": "structure",
|
|
2066 | 2183 | "min": 1,
|
2067 | 2184 | "pattern": "[-a-zA-Z0-9._]*"
|
2068 | 2185 | },
|
| 2186 | + "NextToken": { |
| 2187 | + "type": "string", |
| 2188 | + "max": 1000, |
| 2189 | + "min": 0 |
| 2190 | + }, |
2069 | 2191 | "Notifications": {
|
2070 | 2192 | "type": "list",
|
2071 | 2193 | "member": { "shape": "NotificationsFeature" },
|
|
2893 | 3015 | "type": "string",
|
2894 | 3016 | "enum": ["DECLARATION", "USAGE"]
|
2895 | 3017 | },
|
| 3018 | + "SyntheticTimestamp_date_time": { |
| 3019 | + "type": "timestamp", |
| 3020 | + "timestampFormat": "iso8601" |
| 3021 | + }, |
2896 | 3022 | "TargetCode": {
|
2897 | 3023 | "type": "structure",
|
2898 | 3024 | "required": ["relativeTargetPath"],
|
|
3752 | 3878 | "generatedLine": { "shape": "PrimitiveInteger" },
|
3753 | 3879 | "numberOfRecommendations": { "shape": "PrimitiveInteger" },
|
3754 | 3880 | "perceivedLatencyMilliseconds": { "shape": "Double" },
|
3755 |
| - "acceptedCharacterCount": { "shape": "PrimitiveInteger" } |
| 3881 | + "acceptedCharacterCount": { "shape": "PrimitiveInteger" }, |
| 3882 | + "addedIdeDiagnostics": { "shape": "IdeDiagnosticList" }, |
| 3883 | + "removedIdeDiagnostics": { "shape": "IdeDiagnosticList" } |
3756 | 3884 | }
|
3757 | 3885 | },
|
3758 | 3886 | "ValidationException": {
|
|
3786 | 3914 | "programmingLanguage": { "shape": "ProgrammingLanguage" }
|
3787 | 3915 | }
|
3788 | 3916 | },
|
| 3917 | + "WorkspaceFolderList": { |
| 3918 | + "type": "list", |
| 3919 | + "member": { "shape": "WorkspaceFolderListMemberString" }, |
| 3920 | + "max": 100, |
| 3921 | + "min": 0 |
| 3922 | + }, |
| 3923 | + "WorkspaceFolderListMemberString": { |
| 3924 | + "type": "string", |
| 3925 | + "max": 4096, |
| 3926 | + "min": 1, |
| 3927 | + "sensitive": true |
| 3928 | + }, |
3789 | 3929 | "WorkspaceList": {
|
3790 | 3930 | "type": "list",
|
3791 | 3931 | "member": { "shape": "WorkspaceMetadata" }
|
|
0 commit comments