|
353 | 353 | }, |
354 | 354 | "AppStudioStatePropertyValueString": { |
355 | 355 | "type": "string", |
356 | | - "max": 1024, |
357 | | - "min": 1, |
| 356 | + "max": 10240, |
| 357 | + "min": 0, |
358 | 358 | "sensitive": true |
359 | 359 | }, |
360 | 360 | "ArtifactId": { |
|
613 | 613 | }, |
614 | 614 | "exception": true |
615 | 615 | }, |
| 616 | + "ConsoleState": { |
| 617 | + "type": "structure", |
| 618 | + "members": { |
| 619 | + "region": { "shape": "String" }, |
| 620 | + "consoleUrl": { "shape": "SensitiveString" }, |
| 621 | + "serviceId": { "shape": "String" }, |
| 622 | + "serviceConsolePage": { "shape": "String" }, |
| 623 | + "serviceSubconsolePage": { "shape": "String" }, |
| 624 | + "taskName": { "shape": "SensitiveString" } |
| 625 | + } |
| 626 | + }, |
616 | 627 | "ContentChecksumType": { |
617 | 628 | "type": "string", |
618 | 629 | "enum": ["SHA_256"] |
|
811 | 822 | "members": { |
812 | 823 | "document": { "shape": "TextDocument" }, |
813 | 824 | "cursorState": { "shape": "CursorState" }, |
814 | | - "relevantDocuments": { "shape": "RelevantDocumentList" } |
| 825 | + "relevantDocuments": { "shape": "RelevantDocumentList" }, |
| 826 | + "useRelevantDocuments": { "shape": "Boolean" } |
815 | 827 | } |
816 | 828 | }, |
817 | 829 | "EnvState": { |
|
1093 | 1105 | "max": 10, |
1094 | 1106 | "min": 0 |
1095 | 1107 | }, |
| 1108 | + "InlineChatEvent": { |
| 1109 | + "type": "structure", |
| 1110 | + "members": { |
| 1111 | + "inputLength": { "shape": "PrimitiveInteger" }, |
| 1112 | + "numSelectedLines": { "shape": "PrimitiveInteger" }, |
| 1113 | + "codeIntent": { "shape": "Boolean" }, |
| 1114 | + "userDecision": { "shape": "InlineChatUserDecision" }, |
| 1115 | + "responseStartLatency": { "shape": "Double" }, |
| 1116 | + "responseEndLatency": { "shape": "Double" } |
| 1117 | + } |
| 1118 | + }, |
| 1119 | + "InlineChatUserDecision": { |
| 1120 | + "type": "string", |
| 1121 | + "enum": ["ACCEPT", "REJECT", "DISMISS"] |
| 1122 | + }, |
1096 | 1123 | "Integer": { |
1097 | 1124 | "type": "integer", |
1098 | 1125 | "box": true |
|
1535 | 1562 | "required": ["conversationState", "workspaceState"], |
1536 | 1563 | "members": { |
1537 | 1564 | "conversationState": { "shape": "ConversationState" }, |
1538 | | - "workspaceState": { "shape": "WorkspaceState" } |
| 1565 | + "workspaceState": { "shape": "WorkspaceState" }, |
| 1566 | + "taskAssistPlan": { "shape": "TaskAssistPlan" }, |
| 1567 | + "currentCodeGenerationId": { "shape": "CodeGenerationId" } |
1539 | 1568 | } |
1540 | 1569 | }, |
1541 | 1570 | "StartTaskAssistCodeGenerationResponse": { |
|
1648 | 1677 | "type": "string", |
1649 | 1678 | "enum": ["DECLARATION", "USAGE"] |
1650 | 1679 | }, |
| 1680 | + "TaskAssistPlan": { |
| 1681 | + "type": "list", |
| 1682 | + "member": { "shape": "TaskAssistPlanStep" }, |
| 1683 | + "min": 0 |
| 1684 | + }, |
| 1685 | + "TaskAssistPlanStep": { |
| 1686 | + "type": "structure", |
| 1687 | + "required": ["filePath", "description"], |
| 1688 | + "members": { |
| 1689 | + "filePath": { "shape": "TaskAssistPlanStepFilePathString" }, |
| 1690 | + "description": { "shape": "TaskAssistPlanStepDescriptionString" }, |
| 1691 | + "startLine": { "shape": "TaskAssistPlanStepStartLineInteger" }, |
| 1692 | + "endLine": { "shape": "TaskAssistPlanStepEndLineInteger" }, |
| 1693 | + "action": { "shape": "TaskAssistPlanStepAction" } |
| 1694 | + } |
| 1695 | + }, |
| 1696 | + "TaskAssistPlanStepAction": { |
| 1697 | + "type": "string", |
| 1698 | + "enum": ["MODIFY", "CREATE", "DELETE", "UNKNOWN"] |
| 1699 | + }, |
| 1700 | + "TaskAssistPlanStepDescriptionString": { |
| 1701 | + "type": "string", |
| 1702 | + "max": 1024, |
| 1703 | + "min": 1 |
| 1704 | + }, |
| 1705 | + "TaskAssistPlanStepEndLineInteger": { |
| 1706 | + "type": "integer", |
| 1707 | + "box": true, |
| 1708 | + "min": 0 |
| 1709 | + }, |
| 1710 | + "TaskAssistPlanStepFilePathString": { |
| 1711 | + "type": "string", |
| 1712 | + "max": 1024, |
| 1713 | + "min": 1 |
| 1714 | + }, |
| 1715 | + "TaskAssistPlanStepStartLineInteger": { |
| 1716 | + "type": "integer", |
| 1717 | + "box": true, |
| 1718 | + "min": 0 |
| 1719 | + }, |
1651 | 1720 | "TaskAssistPlanningUploadContext": { |
1652 | 1721 | "type": "structure", |
1653 | 1722 | "required": ["conversationId"], |
|
1668 | 1737 | "chatInteractWithMessageEvent": { "shape": "ChatInteractWithMessageEvent" }, |
1669 | 1738 | "chatUserModificationEvent": { "shape": "ChatUserModificationEvent" }, |
1670 | 1739 | "terminalUserInteractionEvent": { "shape": "TerminalUserInteractionEvent" }, |
1671 | | - "featureDevEvent": { "shape": "FeatureDevEvent" } |
| 1740 | + "featureDevEvent": { "shape": "FeatureDevEvent" }, |
| 1741 | + "inlineChatEvent": { "shape": "InlineChatEvent" } |
1672 | 1742 | }, |
1673 | 1743 | "union": true |
1674 | 1744 | }, |
|
1777 | 1847 | }, |
1778 | 1848 | "TransformationDownloadArtifactType": { |
1779 | 1849 | "type": "string", |
1780 | | - "enum": ["ClientInstructions", "Logs"] |
| 1850 | + "enum": ["ClientInstructions", "Logs", "GeneratedCode"] |
1781 | 1851 | }, |
1782 | 1852 | "TransformationDownloadArtifacts": { |
1783 | 1853 | "type": "list", |
|
1808 | 1878 | }, |
1809 | 1879 | "TransformationLanguage": { |
1810 | 1880 | "type": "string", |
1811 | | - "enum": ["JAVA_8", "JAVA_11", "JAVA_17", "C_SHARP"] |
| 1881 | + "enum": ["JAVA_8", "JAVA_11", "JAVA_17", "C_SHARP", "COBOL", "PL_I", "JCL"] |
| 1882 | + }, |
| 1883 | + "TransformationLanguages": { |
| 1884 | + "type": "list", |
| 1885 | + "member": { "shape": "TransformationLanguage" } |
| 1886 | + }, |
| 1887 | + "TransformationMainframeRuntimeEnv": { |
| 1888 | + "type": "string", |
| 1889 | + "enum": ["MAINFRAME"] |
1812 | 1890 | }, |
1813 | 1891 | "TransformationOperatingSystemFamily": { |
1814 | 1892 | "type": "string", |
|
1841 | 1919 | }, |
1842 | 1920 | "TransformationProgressUpdateStatus": { |
1843 | 1921 | "type": "string", |
1844 | | - "enum": ["IN_PROGRESS", "COMPLETED", "FAILED", "PAUSED"] |
| 1922 | + "enum": ["IN_PROGRESS", "COMPLETED", "FAILED", "PAUSED", "AWAITING_CLIENT_ACTION"] |
| 1923 | + }, |
| 1924 | + "TransformationProjectArtifactDescriptor": { |
| 1925 | + "type": "structure", |
| 1926 | + "members": { |
| 1927 | + "sourceCodeArtifact": { "shape": "TransformationSourceCodeArtifactDescriptor" } |
| 1928 | + }, |
| 1929 | + "union": true |
1845 | 1930 | }, |
1846 | 1931 | "TransformationProjectState": { |
1847 | 1932 | "type": "structure", |
1848 | 1933 | "members": { |
1849 | 1934 | "language": { "shape": "TransformationLanguage" }, |
1850 | 1935 | "runtimeEnv": { "shape": "TransformationRuntimeEnv" }, |
1851 | | - "platformConfig": { "shape": "TransformationPlatformConfig" } |
| 1936 | + "platformConfig": { "shape": "TransformationPlatformConfig" }, |
| 1937 | + "projectArtifact": { "shape": "TransformationProjectArtifactDescriptor" } |
1852 | 1938 | } |
1853 | 1939 | }, |
1854 | 1940 | "TransformationRuntimeEnv": { |
1855 | 1941 | "type": "structure", |
1856 | 1942 | "members": { |
1857 | 1943 | "java": { "shape": "TransformationJavaRuntimeEnv" }, |
1858 | | - "dotNet": { "shape": "TransformationDotNetRuntimeEnv" } |
| 1944 | + "dotNet": { "shape": "TransformationDotNetRuntimeEnv" }, |
| 1945 | + "mainframe": { "shape": "TransformationMainframeRuntimeEnv" } |
1859 | 1946 | }, |
1860 | 1947 | "union": true |
1861 | 1948 | }, |
| 1949 | + "TransformationSourceCodeArtifactDescriptor": { |
| 1950 | + "type": "structure", |
| 1951 | + "members": { |
| 1952 | + "languages": { "shape": "TransformationLanguages" }, |
| 1953 | + "runtimeEnv": { "shape": "TransformationRuntimeEnv" } |
| 1954 | + } |
| 1955 | + }, |
1862 | 1956 | "TransformationSpec": { |
1863 | 1957 | "type": "structure", |
1864 | 1958 | "members": { |
|
1912 | 2006 | }, |
1913 | 2007 | "TransformationType": { |
1914 | 2008 | "type": "string", |
1915 | | - "enum": ["LANGUAGE_UPGRADE"] |
| 2009 | + "enum": ["LANGUAGE_UPGRADE", "DOCUMENT_GENERATION"] |
1916 | 2010 | }, |
1917 | 2011 | "TransformationUploadArtifactType": { |
1918 | 2012 | "type": "string", |
1919 | | - "enum": ["Dependencies"] |
| 2013 | + "enum": ["Dependencies", "ClientBuildResult"] |
1920 | 2014 | }, |
1921 | 2015 | "TransformationUploadContext": { |
1922 | 2016 | "type": "structure", |
|
1998 | 2092 | "gitState": { "shape": "GitState" }, |
1999 | 2093 | "envState": { "shape": "EnvState" }, |
2000 | 2094 | "appStudioContext": { "shape": "AppStudioState" }, |
2001 | | - "diagnostic": { "shape": "Diagnostic" } |
| 2095 | + "diagnostic": { "shape": "Diagnostic" }, |
| 2096 | + "consoleState": { "shape": "ConsoleState" }, |
| 2097 | + "userSettings": { "shape": "UserSettings" } |
2002 | 2098 | } |
2003 | 2099 | }, |
2004 | 2100 | "UserIntent": { |
|
2026 | 2122 | "timestamp": { "shape": "Timestamp" } |
2027 | 2123 | } |
2028 | 2124 | }, |
| 2125 | + "UserSettings": { |
| 2126 | + "type": "structure", |
| 2127 | + "members": { |
| 2128 | + "hasConsentedToCrossRegionCalls": { "shape": "Boolean" } |
| 2129 | + } |
| 2130 | + }, |
2029 | 2131 | "UserTriggerDecisionEvent": { |
2030 | 2132 | "type": "structure", |
2031 | 2133 | "required": [ |
|
0 commit comments