workato-platform-cli 1.0.0rc5.dev5__py3-none-any.whl

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.
Files changed (306) hide show
  1. workato_platform_cli/__init__.py +135 -0
  2. workato_platform_cli/_version.py +34 -0
  3. workato_platform_cli/cli/__init__.py +126 -0
  4. workato_platform_cli/cli/commands/__init__.py +0 -0
  5. workato_platform_cli/cli/commands/api_clients.py +627 -0
  6. workato_platform_cli/cli/commands/api_collections.py +497 -0
  7. workato_platform_cli/cli/commands/assets.py +82 -0
  8. workato_platform_cli/cli/commands/connections.py +1205 -0
  9. workato_platform_cli/cli/commands/connectors/__init__.py +0 -0
  10. workato_platform_cli/cli/commands/connectors/command.py +178 -0
  11. workato_platform_cli/cli/commands/connectors/connector_manager.py +351 -0
  12. workato_platform_cli/cli/commands/data_tables.py +345 -0
  13. workato_platform_cli/cli/commands/guide.py +315 -0
  14. workato_platform_cli/cli/commands/init.py +229 -0
  15. workato_platform_cli/cli/commands/profiles.py +364 -0
  16. workato_platform_cli/cli/commands/projects/__init__.py +0 -0
  17. workato_platform_cli/cli/commands/projects/command.py +513 -0
  18. workato_platform_cli/cli/commands/projects/project_manager.py +338 -0
  19. workato_platform_cli/cli/commands/properties.py +174 -0
  20. workato_platform_cli/cli/commands/pull.py +327 -0
  21. workato_platform_cli/cli/commands/push/__init__.py +0 -0
  22. workato_platform_cli/cli/commands/push/command.py +320 -0
  23. workato_platform_cli/cli/commands/recipes/__init__.py +0 -0
  24. workato_platform_cli/cli/commands/recipes/command.py +847 -0
  25. workato_platform_cli/cli/commands/recipes/validator.py +1740 -0
  26. workato_platform_cli/cli/commands/workspace.py +73 -0
  27. workato_platform_cli/cli/containers.py +80 -0
  28. workato_platform_cli/cli/resources/data/connection-data.json +7364 -0
  29. workato_platform_cli/cli/resources/data/picklist-data.json +3706 -0
  30. workato_platform_cli/cli/resources/docs/README.md +178 -0
  31. workato_platform_cli/cli/resources/docs/actions.md +452 -0
  32. workato_platform_cli/cli/resources/docs/block-structure.md +424 -0
  33. workato_platform_cli/cli/resources/docs/connections-parameters.md +11946 -0
  34. workato_platform_cli/cli/resources/docs/data-mapping.md +779 -0
  35. workato_platform_cli/cli/resources/docs/formulas/array-list-formulas.md +1276 -0
  36. workato_platform_cli/cli/resources/docs/formulas/conditions.md +102 -0
  37. workato_platform_cli/cli/resources/docs/formulas/date-formulas.md +798 -0
  38. workato_platform_cli/cli/resources/docs/formulas/number-formulas.md +507 -0
  39. workato_platform_cli/cli/resources/docs/formulas/other-formulas.md +419 -0
  40. workato_platform_cli/cli/resources/docs/formulas/string-formulas.md +1353 -0
  41. workato_platform_cli/cli/resources/docs/formulas.md +214 -0
  42. workato_platform_cli/cli/resources/docs/naming-conventions.md +163 -0
  43. workato_platform_cli/cli/resources/docs/recipe-deployment-workflow.md +352 -0
  44. workato_platform_cli/cli/resources/docs/recipe-fundamentals.md +179 -0
  45. workato_platform_cli/cli/resources/docs/triggers.md +360 -0
  46. workato_platform_cli/cli/utils/__init__.py +10 -0
  47. workato_platform_cli/cli/utils/config/__init__.py +33 -0
  48. workato_platform_cli/cli/utils/config/manager.py +1001 -0
  49. workato_platform_cli/cli/utils/config/models.py +89 -0
  50. workato_platform_cli/cli/utils/config/profiles.py +491 -0
  51. workato_platform_cli/cli/utils/config/workspace.py +113 -0
  52. workato_platform_cli/cli/utils/exception_handler.py +531 -0
  53. workato_platform_cli/cli/utils/gitignore.py +32 -0
  54. workato_platform_cli/cli/utils/ignore_patterns.py +44 -0
  55. workato_platform_cli/cli/utils/spinner.py +63 -0
  56. workato_platform_cli/cli/utils/version_checker.py +237 -0
  57. workato_platform_cli/client/__init__.py +0 -0
  58. workato_platform_cli/client/workato_api/__init__.py +202 -0
  59. workato_platform_cli/client/workato_api/api/__init__.py +15 -0
  60. workato_platform_cli/client/workato_api/api/api_platform_api.py +2875 -0
  61. workato_platform_cli/client/workato_api/api/connections_api.py +1807 -0
  62. workato_platform_cli/client/workato_api/api/connectors_api.py +840 -0
  63. workato_platform_cli/client/workato_api/api/data_tables_api.py +604 -0
  64. workato_platform_cli/client/workato_api/api/export_api.py +621 -0
  65. workato_platform_cli/client/workato_api/api/folders_api.py +621 -0
  66. workato_platform_cli/client/workato_api/api/packages_api.py +1197 -0
  67. workato_platform_cli/client/workato_api/api/projects_api.py +590 -0
  68. workato_platform_cli/client/workato_api/api/properties_api.py +620 -0
  69. workato_platform_cli/client/workato_api/api/recipes_api.py +1379 -0
  70. workato_platform_cli/client/workato_api/api/users_api.py +285 -0
  71. workato_platform_cli/client/workato_api/api_client.py +807 -0
  72. workato_platform_cli/client/workato_api/api_response.py +21 -0
  73. workato_platform_cli/client/workato_api/configuration.py +601 -0
  74. workato_platform_cli/client/workato_api/docs/APIPlatformApi.md +844 -0
  75. workato_platform_cli/client/workato_api/docs/ApiClient.md +46 -0
  76. workato_platform_cli/client/workato_api/docs/ApiClientApiCollectionsInner.md +30 -0
  77. workato_platform_cli/client/workato_api/docs/ApiClientApiPoliciesInner.md +30 -0
  78. workato_platform_cli/client/workato_api/docs/ApiClientCreateRequest.md +46 -0
  79. workato_platform_cli/client/workato_api/docs/ApiClientListResponse.md +32 -0
  80. workato_platform_cli/client/workato_api/docs/ApiClientResponse.md +29 -0
  81. workato_platform_cli/client/workato_api/docs/ApiCollection.md +38 -0
  82. workato_platform_cli/client/workato_api/docs/ApiCollectionCreateRequest.md +32 -0
  83. workato_platform_cli/client/workato_api/docs/ApiEndpoint.md +41 -0
  84. workato_platform_cli/client/workato_api/docs/ApiKey.md +36 -0
  85. workato_platform_cli/client/workato_api/docs/ApiKeyCreateRequest.md +32 -0
  86. workato_platform_cli/client/workato_api/docs/ApiKeyListResponse.md +32 -0
  87. workato_platform_cli/client/workato_api/docs/ApiKeyResponse.md +29 -0
  88. workato_platform_cli/client/workato_api/docs/Asset.md +39 -0
  89. workato_platform_cli/client/workato_api/docs/AssetReference.md +37 -0
  90. workato_platform_cli/client/workato_api/docs/Connection.md +44 -0
  91. workato_platform_cli/client/workato_api/docs/ConnectionCreateRequest.md +35 -0
  92. workato_platform_cli/client/workato_api/docs/ConnectionUpdateRequest.md +34 -0
  93. workato_platform_cli/client/workato_api/docs/ConnectionsApi.md +526 -0
  94. workato_platform_cli/client/workato_api/docs/ConnectorAction.md +33 -0
  95. workato_platform_cli/client/workato_api/docs/ConnectorVersion.md +32 -0
  96. workato_platform_cli/client/workato_api/docs/ConnectorsApi.md +249 -0
  97. workato_platform_cli/client/workato_api/docs/CreateExportManifestRequest.md +29 -0
  98. workato_platform_cli/client/workato_api/docs/CreateFolderRequest.md +30 -0
  99. workato_platform_cli/client/workato_api/docs/CustomConnector.md +35 -0
  100. workato_platform_cli/client/workato_api/docs/CustomConnectorCodeResponse.md +29 -0
  101. workato_platform_cli/client/workato_api/docs/CustomConnectorCodeResponseData.md +29 -0
  102. workato_platform_cli/client/workato_api/docs/CustomConnectorListResponse.md +29 -0
  103. workato_platform_cli/client/workato_api/docs/DataTable.md +34 -0
  104. workato_platform_cli/client/workato_api/docs/DataTableColumn.md +37 -0
  105. workato_platform_cli/client/workato_api/docs/DataTableColumnRequest.md +37 -0
  106. workato_platform_cli/client/workato_api/docs/DataTableCreateRequest.md +31 -0
  107. workato_platform_cli/client/workato_api/docs/DataTableCreateResponse.md +29 -0
  108. workato_platform_cli/client/workato_api/docs/DataTableListResponse.md +29 -0
  109. workato_platform_cli/client/workato_api/docs/DataTableRelation.md +30 -0
  110. workato_platform_cli/client/workato_api/docs/DataTablesApi.md +172 -0
  111. workato_platform_cli/client/workato_api/docs/DeleteProject403Response.md +29 -0
  112. workato_platform_cli/client/workato_api/docs/Error.md +29 -0
  113. workato_platform_cli/client/workato_api/docs/ExportApi.md +175 -0
  114. workato_platform_cli/client/workato_api/docs/ExportManifestRequest.md +35 -0
  115. workato_platform_cli/client/workato_api/docs/ExportManifestResponse.md +29 -0
  116. workato_platform_cli/client/workato_api/docs/ExportManifestResponseResult.md +36 -0
  117. workato_platform_cli/client/workato_api/docs/Folder.md +35 -0
  118. workato_platform_cli/client/workato_api/docs/FolderAssetsResponse.md +29 -0
  119. workato_platform_cli/client/workato_api/docs/FolderAssetsResponseResult.md +29 -0
  120. workato_platform_cli/client/workato_api/docs/FolderCreationResponse.md +35 -0
  121. workato_platform_cli/client/workato_api/docs/FoldersApi.md +176 -0
  122. workato_platform_cli/client/workato_api/docs/ImportResults.md +32 -0
  123. workato_platform_cli/client/workato_api/docs/OAuthUrlResponse.md +29 -0
  124. workato_platform_cli/client/workato_api/docs/OAuthUrlResponseData.md +29 -0
  125. workato_platform_cli/client/workato_api/docs/OpenApiSpec.md +30 -0
  126. workato_platform_cli/client/workato_api/docs/PackageDetailsResponse.md +35 -0
  127. workato_platform_cli/client/workato_api/docs/PackageDetailsResponseRecipeStatusInner.md +30 -0
  128. workato_platform_cli/client/workato_api/docs/PackageResponse.md +33 -0
  129. workato_platform_cli/client/workato_api/docs/PackagesApi.md +364 -0
  130. workato_platform_cli/client/workato_api/docs/PicklistRequest.md +30 -0
  131. workato_platform_cli/client/workato_api/docs/PicklistResponse.md +29 -0
  132. workato_platform_cli/client/workato_api/docs/PlatformConnector.md +36 -0
  133. workato_platform_cli/client/workato_api/docs/PlatformConnectorListResponse.md +32 -0
  134. workato_platform_cli/client/workato_api/docs/Project.md +32 -0
  135. workato_platform_cli/client/workato_api/docs/ProjectsApi.md +173 -0
  136. workato_platform_cli/client/workato_api/docs/PropertiesApi.md +186 -0
  137. workato_platform_cli/client/workato_api/docs/Recipe.md +58 -0
  138. workato_platform_cli/client/workato_api/docs/RecipeConfigInner.md +33 -0
  139. workato_platform_cli/client/workato_api/docs/RecipeConnectionUpdateRequest.md +30 -0
  140. workato_platform_cli/client/workato_api/docs/RecipeListResponse.md +29 -0
  141. workato_platform_cli/client/workato_api/docs/RecipeStartResponse.md +31 -0
  142. workato_platform_cli/client/workato_api/docs/RecipesApi.md +367 -0
  143. workato_platform_cli/client/workato_api/docs/RuntimeUserConnectionCreateRequest.md +34 -0
  144. workato_platform_cli/client/workato_api/docs/RuntimeUserConnectionResponse.md +29 -0
  145. workato_platform_cli/client/workato_api/docs/RuntimeUserConnectionResponseData.md +30 -0
  146. workato_platform_cli/client/workato_api/docs/SuccessResponse.md +29 -0
  147. workato_platform_cli/client/workato_api/docs/UpsertProjectPropertiesRequest.md +29 -0
  148. workato_platform_cli/client/workato_api/docs/User.md +48 -0
  149. workato_platform_cli/client/workato_api/docs/UsersApi.md +84 -0
  150. workato_platform_cli/client/workato_api/docs/ValidationError.md +30 -0
  151. workato_platform_cli/client/workato_api/docs/ValidationErrorErrorsValue.md +28 -0
  152. workato_platform_cli/client/workato_api/exceptions.py +216 -0
  153. workato_platform_cli/client/workato_api/models/__init__.py +83 -0
  154. workato_platform_cli/client/workato_api/models/api_client.py +185 -0
  155. workato_platform_cli/client/workato_api/models/api_client_api_collections_inner.py +89 -0
  156. workato_platform_cli/client/workato_api/models/api_client_api_policies_inner.py +89 -0
  157. workato_platform_cli/client/workato_api/models/api_client_create_request.py +138 -0
  158. workato_platform_cli/client/workato_api/models/api_client_list_response.py +101 -0
  159. workato_platform_cli/client/workato_api/models/api_client_response.py +91 -0
  160. workato_platform_cli/client/workato_api/models/api_collection.py +110 -0
  161. workato_platform_cli/client/workato_api/models/api_collection_create_request.py +97 -0
  162. workato_platform_cli/client/workato_api/models/api_endpoint.py +117 -0
  163. workato_platform_cli/client/workato_api/models/api_key.py +102 -0
  164. workato_platform_cli/client/workato_api/models/api_key_create_request.py +93 -0
  165. workato_platform_cli/client/workato_api/models/api_key_list_response.py +101 -0
  166. workato_platform_cli/client/workato_api/models/api_key_response.py +91 -0
  167. workato_platform_cli/client/workato_api/models/asset.py +124 -0
  168. workato_platform_cli/client/workato_api/models/asset_reference.py +110 -0
  169. workato_platform_cli/client/workato_api/models/connection.py +173 -0
  170. workato_platform_cli/client/workato_api/models/connection_create_request.py +99 -0
  171. workato_platform_cli/client/workato_api/models/connection_update_request.py +97 -0
  172. workato_platform_cli/client/workato_api/models/connector_action.py +100 -0
  173. workato_platform_cli/client/workato_api/models/connector_version.py +99 -0
  174. workato_platform_cli/client/workato_api/models/create_export_manifest_request.py +91 -0
  175. workato_platform_cli/client/workato_api/models/create_folder_request.py +89 -0
  176. workato_platform_cli/client/workato_api/models/custom_connector.py +117 -0
  177. workato_platform_cli/client/workato_api/models/custom_connector_code_response.py +91 -0
  178. workato_platform_cli/client/workato_api/models/custom_connector_code_response_data.py +87 -0
  179. workato_platform_cli/client/workato_api/models/custom_connector_list_response.py +95 -0
  180. workato_platform_cli/client/workato_api/models/data_table.py +107 -0
  181. workato_platform_cli/client/workato_api/models/data_table_column.py +125 -0
  182. workato_platform_cli/client/workato_api/models/data_table_column_request.py +130 -0
  183. workato_platform_cli/client/workato_api/models/data_table_create_request.py +99 -0
  184. workato_platform_cli/client/workato_api/models/data_table_create_response.py +91 -0
  185. workato_platform_cli/client/workato_api/models/data_table_list_response.py +95 -0
  186. workato_platform_cli/client/workato_api/models/data_table_relation.py +90 -0
  187. workato_platform_cli/client/workato_api/models/delete_project403_response.py +87 -0
  188. workato_platform_cli/client/workato_api/models/error.py +87 -0
  189. workato_platform_cli/client/workato_api/models/export_manifest_request.py +107 -0
  190. workato_platform_cli/client/workato_api/models/export_manifest_response.py +91 -0
  191. workato_platform_cli/client/workato_api/models/export_manifest_response_result.py +112 -0
  192. workato_platform_cli/client/workato_api/models/folder.py +110 -0
  193. workato_platform_cli/client/workato_api/models/folder_assets_response.py +91 -0
  194. workato_platform_cli/client/workato_api/models/folder_assets_response_result.py +95 -0
  195. workato_platform_cli/client/workato_api/models/folder_creation_response.py +110 -0
  196. workato_platform_cli/client/workato_api/models/import_results.py +93 -0
  197. workato_platform_cli/client/workato_api/models/o_auth_url_response.py +91 -0
  198. workato_platform_cli/client/workato_api/models/o_auth_url_response_data.py +87 -0
  199. workato_platform_cli/client/workato_api/models/open_api_spec.py +96 -0
  200. workato_platform_cli/client/workato_api/models/package_details_response.py +126 -0
  201. workato_platform_cli/client/workato_api/models/package_details_response_recipe_status_inner.py +99 -0
  202. workato_platform_cli/client/workato_api/models/package_response.py +109 -0
  203. workato_platform_cli/client/workato_api/models/picklist_request.py +89 -0
  204. workato_platform_cli/client/workato_api/models/picklist_response.py +88 -0
  205. workato_platform_cli/client/workato_api/models/platform_connector.py +116 -0
  206. workato_platform_cli/client/workato_api/models/platform_connector_list_response.py +101 -0
  207. workato_platform_cli/client/workato_api/models/project.py +93 -0
  208. workato_platform_cli/client/workato_api/models/recipe.py +174 -0
  209. workato_platform_cli/client/workato_api/models/recipe_config_inner.py +100 -0
  210. workato_platform_cli/client/workato_api/models/recipe_connection_update_request.py +89 -0
  211. workato_platform_cli/client/workato_api/models/recipe_list_response.py +95 -0
  212. workato_platform_cli/client/workato_api/models/recipe_start_response.py +91 -0
  213. workato_platform_cli/client/workato_api/models/runtime_user_connection_create_request.py +97 -0
  214. workato_platform_cli/client/workato_api/models/runtime_user_connection_response.py +91 -0
  215. workato_platform_cli/client/workato_api/models/runtime_user_connection_response_data.py +89 -0
  216. workato_platform_cli/client/workato_api/models/success_response.py +87 -0
  217. workato_platform_cli/client/workato_api/models/upsert_project_properties_request.py +88 -0
  218. workato_platform_cli/client/workato_api/models/user.py +151 -0
  219. workato_platform_cli/client/workato_api/models/validation_error.py +102 -0
  220. workato_platform_cli/client/workato_api/models/validation_error_errors_value.py +143 -0
  221. workato_platform_cli/client/workato_api/rest.py +213 -0
  222. workato_platform_cli/client/workato_api/test/__init__.py +0 -0
  223. workato_platform_cli/client/workato_api/test/test_api_client.py +94 -0
  224. workato_platform_cli/client/workato_api/test/test_api_client_api_collections_inner.py +52 -0
  225. workato_platform_cli/client/workato_api/test/test_api_client_api_policies_inner.py +52 -0
  226. workato_platform_cli/client/workato_api/test/test_api_client_create_request.py +75 -0
  227. workato_platform_cli/client/workato_api/test/test_api_client_list_response.py +114 -0
  228. workato_platform_cli/client/workato_api/test/test_api_client_response.py +104 -0
  229. workato_platform_cli/client/workato_api/test/test_api_collection.py +72 -0
  230. workato_platform_cli/client/workato_api/test/test_api_collection_create_request.py +57 -0
  231. workato_platform_cli/client/workato_api/test/test_api_endpoint.py +75 -0
  232. workato_platform_cli/client/workato_api/test/test_api_key.py +64 -0
  233. workato_platform_cli/client/workato_api/test/test_api_key_create_request.py +56 -0
  234. workato_platform_cli/client/workato_api/test/test_api_key_list_response.py +78 -0
  235. workato_platform_cli/client/workato_api/test/test_api_key_response.py +68 -0
  236. workato_platform_cli/client/workato_api/test/test_api_platform_api.py +101 -0
  237. workato_platform_cli/client/workato_api/test/test_asset.py +67 -0
  238. workato_platform_cli/client/workato_api/test/test_asset_reference.py +62 -0
  239. workato_platform_cli/client/workato_api/test/test_connection.py +81 -0
  240. workato_platform_cli/client/workato_api/test/test_connection_create_request.py +59 -0
  241. workato_platform_cli/client/workato_api/test/test_connection_update_request.py +56 -0
  242. workato_platform_cli/client/workato_api/test/test_connections_api.py +73 -0
  243. workato_platform_cli/client/workato_api/test/test_connector_action.py +59 -0
  244. workato_platform_cli/client/workato_api/test/test_connector_version.py +58 -0
  245. workato_platform_cli/client/workato_api/test/test_connectors_api.py +52 -0
  246. workato_platform_cli/client/workato_api/test/test_create_export_manifest_request.py +88 -0
  247. workato_platform_cli/client/workato_api/test/test_create_folder_request.py +53 -0
  248. workato_platform_cli/client/workato_api/test/test_custom_connector.py +76 -0
  249. workato_platform_cli/client/workato_api/test/test_custom_connector_code_response.py +54 -0
  250. workato_platform_cli/client/workato_api/test/test_custom_connector_code_response_data.py +52 -0
  251. workato_platform_cli/client/workato_api/test/test_custom_connector_list_response.py +82 -0
  252. workato_platform_cli/client/workato_api/test/test_data_table.py +88 -0
  253. workato_platform_cli/client/workato_api/test/test_data_table_column.py +72 -0
  254. workato_platform_cli/client/workato_api/test/test_data_table_column_request.py +64 -0
  255. workato_platform_cli/client/workato_api/test/test_data_table_create_request.py +82 -0
  256. workato_platform_cli/client/workato_api/test/test_data_table_create_response.py +90 -0
  257. workato_platform_cli/client/workato_api/test/test_data_table_list_response.py +94 -0
  258. workato_platform_cli/client/workato_api/test/test_data_table_relation.py +54 -0
  259. workato_platform_cli/client/workato_api/test/test_data_tables_api.py +45 -0
  260. workato_platform_cli/client/workato_api/test/test_delete_project403_response.py +51 -0
  261. workato_platform_cli/client/workato_api/test/test_error.py +52 -0
  262. workato_platform_cli/client/workato_api/test/test_export_api.py +45 -0
  263. workato_platform_cli/client/workato_api/test/test_export_manifest_request.py +69 -0
  264. workato_platform_cli/client/workato_api/test/test_export_manifest_response.py +68 -0
  265. workato_platform_cli/client/workato_api/test/test_export_manifest_response_result.py +66 -0
  266. workato_platform_cli/client/workato_api/test/test_folder.py +64 -0
  267. workato_platform_cli/client/workato_api/test/test_folder_assets_response.py +80 -0
  268. workato_platform_cli/client/workato_api/test/test_folder_assets_response_result.py +78 -0
  269. workato_platform_cli/client/workato_api/test/test_folder_creation_response.py +64 -0
  270. workato_platform_cli/client/workato_api/test/test_folders_api.py +45 -0
  271. workato_platform_cli/client/workato_api/test/test_import_results.py +58 -0
  272. workato_platform_cli/client/workato_api/test/test_o_auth_url_response.py +54 -0
  273. workato_platform_cli/client/workato_api/test/test_o_auth_url_response_data.py +52 -0
  274. workato_platform_cli/client/workato_api/test/test_open_api_spec.py +54 -0
  275. workato_platform_cli/client/workato_api/test/test_package_details_response.py +64 -0
  276. workato_platform_cli/client/workato_api/test/test_package_details_response_recipe_status_inner.py +52 -0
  277. workato_platform_cli/client/workato_api/test/test_package_response.py +58 -0
  278. workato_platform_cli/client/workato_api/test/test_packages_api.py +59 -0
  279. workato_platform_cli/client/workato_api/test/test_picklist_request.py +53 -0
  280. workato_platform_cli/client/workato_api/test/test_picklist_response.py +52 -0
  281. workato_platform_cli/client/workato_api/test/test_platform_connector.py +94 -0
  282. workato_platform_cli/client/workato_api/test/test_platform_connector_list_response.py +106 -0
  283. workato_platform_cli/client/workato_api/test/test_project.py +57 -0
  284. workato_platform_cli/client/workato_api/test/test_projects_api.py +45 -0
  285. workato_platform_cli/client/workato_api/test/test_properties_api.py +45 -0
  286. workato_platform_cli/client/workato_api/test/test_recipe.py +124 -0
  287. workato_platform_cli/client/workato_api/test/test_recipe_config_inner.py +55 -0
  288. workato_platform_cli/client/workato_api/test/test_recipe_connection_update_request.py +54 -0
  289. workato_platform_cli/client/workato_api/test/test_recipe_list_response.py +134 -0
  290. workato_platform_cli/client/workato_api/test/test_recipe_start_response.py +54 -0
  291. workato_platform_cli/client/workato_api/test/test_recipes_api.py +59 -0
  292. workato_platform_cli/client/workato_api/test/test_runtime_user_connection_create_request.py +59 -0
  293. workato_platform_cli/client/workato_api/test/test_runtime_user_connection_response.py +56 -0
  294. workato_platform_cli/client/workato_api/test/test_runtime_user_connection_response_data.py +54 -0
  295. workato_platform_cli/client/workato_api/test/test_success_response.py +52 -0
  296. workato_platform_cli/client/workato_api/test/test_upsert_project_properties_request.py +52 -0
  297. workato_platform_cli/client/workato_api/test/test_user.py +85 -0
  298. workato_platform_cli/client/workato_api/test/test_users_api.py +38 -0
  299. workato_platform_cli/client/workato_api/test/test_validation_error.py +52 -0
  300. workato_platform_cli/client/workato_api/test/test_validation_error_errors_value.py +50 -0
  301. workato_platform_cli/client/workato_api_README.md +205 -0
  302. workato_platform_cli-1.0.0rc5.dev5.dist-info/METADATA +185 -0
  303. workato_platform_cli-1.0.0rc5.dev5.dist-info/RECORD +306 -0
  304. workato_platform_cli-1.0.0rc5.dev5.dist-info/WHEEL +4 -0
  305. workato_platform_cli-1.0.0rc5.dev5.dist-info/entry_points.txt +2 -0
  306. workato_platform_cli-1.0.0rc5.dev5.dist-info/licenses/LICENSE +7 -0
@@ -0,0 +1,249 @@
1
+ # workato_platform_cli.client.workato_api.ConnectorsApi
2
+
3
+ All URIs are relative to *https://www.workato.com*
4
+
5
+ Method | HTTP request | Description
6
+ ------------- | ------------- | -------------
7
+ [**get_custom_connector_code**](ConnectorsApi.md#get_custom_connector_code) | **GET** /api/custom_connectors/{id}/code | Get custom connector code
8
+ [**list_custom_connectors**](ConnectorsApi.md#list_custom_connectors) | **GET** /api/custom_connectors | List custom connectors
9
+ [**list_platform_connectors**](ConnectorsApi.md#list_platform_connectors) | **GET** /api/integrations/all | List platform connectors
10
+
11
+
12
+ # **get_custom_connector_code**
13
+ > CustomConnectorCodeResponse get_custom_connector_code(id)
14
+
15
+ Get custom connector code
16
+
17
+ Fetch the code for a specific custom connector
18
+
19
+ ### Example
20
+
21
+ * Bearer Authentication (BearerAuth):
22
+
23
+ ```python
24
+ import workato_platform_cli.client.workato_api
25
+ from workato_platform_cli.client.workato_api.models.custom_connector_code_response import CustomConnectorCodeResponse
26
+ from workato_platform_cli.client.workato_api.rest import ApiException
27
+ from pprint import pprint
28
+
29
+ # Defining the host is optional and defaults to https://www.workato.com
30
+ # See configuration.py for a list of all supported configuration parameters.
31
+ configuration = workato_platform_cli.client.workato_api.Configuration(
32
+ host = "https://www.workato.com"
33
+ )
34
+
35
+ # The client must configure the authentication and authorization parameters
36
+ # in accordance with the API server security policy.
37
+ # Examples for each auth method are provided below, use the example that
38
+ # satisfies your auth use case.
39
+
40
+ # Configure Bearer authorization: BearerAuth
41
+ configuration = workato_platform_cli.client.workato_api.Configuration(
42
+ access_token = os.environ["BEARER_TOKEN"]
43
+ )
44
+
45
+ # Enter a context with an instance of the API client
46
+ async with workato_platform_cli.client.workato_api.ApiClient(configuration) as api_client:
47
+ # Create an instance of the API class
48
+ api_instance = workato_platform_cli.client.workato_api.ConnectorsApi(api_client)
49
+ id = 56 # int | The ID of the custom connector
50
+
51
+ try:
52
+ # Get custom connector code
53
+ api_response = await api_instance.get_custom_connector_code(id)
54
+ print("The response of ConnectorsApi->get_custom_connector_code:\n")
55
+ pprint(api_response)
56
+ except Exception as e:
57
+ print("Exception when calling ConnectorsApi->get_custom_connector_code: %s\n" % e)
58
+ ```
59
+
60
+
61
+
62
+ ### Parameters
63
+
64
+
65
+ Name | Type | Description | Notes
66
+ ------------- | ------------- | ------------- | -------------
67
+ **id** | **int**| The ID of the custom connector |
68
+
69
+ ### Return type
70
+
71
+ [**CustomConnectorCodeResponse**](CustomConnectorCodeResponse.md)
72
+
73
+ ### Authorization
74
+
75
+ [BearerAuth](../README.md#BearerAuth)
76
+
77
+ ### HTTP request headers
78
+
79
+ - **Content-Type**: Not defined
80
+ - **Accept**: application/json
81
+
82
+ ### HTTP response details
83
+
84
+ | Status code | Description | Response headers |
85
+ |-------------|-------------|------------------|
86
+ **200** | Custom connector code retrieved successfully | - |
87
+ **401** | Authentication required | - |
88
+ **404** | Custom connector not found | - |
89
+
90
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
91
+
92
+ # **list_custom_connectors**
93
+ > CustomConnectorListResponse list_custom_connectors()
94
+
95
+ List custom connectors
96
+
97
+ Returns a list of all custom connectors
98
+
99
+ ### Example
100
+
101
+ * Bearer Authentication (BearerAuth):
102
+
103
+ ```python
104
+ import workato_platform_cli.client.workato_api
105
+ from workato_platform_cli.client.workato_api.models.custom_connector_list_response import CustomConnectorListResponse
106
+ from workato_platform_cli.client.workato_api.rest import ApiException
107
+ from pprint import pprint
108
+
109
+ # Defining the host is optional and defaults to https://www.workato.com
110
+ # See configuration.py for a list of all supported configuration parameters.
111
+ configuration = workato_platform_cli.client.workato_api.Configuration(
112
+ host = "https://www.workato.com"
113
+ )
114
+
115
+ # The client must configure the authentication and authorization parameters
116
+ # in accordance with the API server security policy.
117
+ # Examples for each auth method are provided below, use the example that
118
+ # satisfies your auth use case.
119
+
120
+ # Configure Bearer authorization: BearerAuth
121
+ configuration = workato_platform_cli.client.workato_api.Configuration(
122
+ access_token = os.environ["BEARER_TOKEN"]
123
+ )
124
+
125
+ # Enter a context with an instance of the API client
126
+ async with workato_platform_cli.client.workato_api.ApiClient(configuration) as api_client:
127
+ # Create an instance of the API class
128
+ api_instance = workato_platform_cli.client.workato_api.ConnectorsApi(api_client)
129
+
130
+ try:
131
+ # List custom connectors
132
+ api_response = await api_instance.list_custom_connectors()
133
+ print("The response of ConnectorsApi->list_custom_connectors:\n")
134
+ pprint(api_response)
135
+ except Exception as e:
136
+ print("Exception when calling ConnectorsApi->list_custom_connectors: %s\n" % e)
137
+ ```
138
+
139
+
140
+
141
+ ### Parameters
142
+
143
+ This endpoint does not need any parameter.
144
+
145
+ ### Return type
146
+
147
+ [**CustomConnectorListResponse**](CustomConnectorListResponse.md)
148
+
149
+ ### Authorization
150
+
151
+ [BearerAuth](../README.md#BearerAuth)
152
+
153
+ ### HTTP request headers
154
+
155
+ - **Content-Type**: Not defined
156
+ - **Accept**: application/json
157
+
158
+ ### HTTP response details
159
+
160
+ | Status code | Description | Response headers |
161
+ |-------------|-------------|------------------|
162
+ **200** | Custom connectors retrieved successfully | - |
163
+ **401** | Authentication required | - |
164
+
165
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
166
+
167
+ # **list_platform_connectors**
168
+ > PlatformConnectorListResponse list_platform_connectors(page=page, per_page=per_page)
169
+
170
+ List platform connectors
171
+
172
+ Returns a paginated list of all connectors and associated metadata including
173
+ triggers and actions. This includes both standard and platform connectors.
174
+
175
+
176
+ ### Example
177
+
178
+ * Bearer Authentication (BearerAuth):
179
+
180
+ ```python
181
+ import workato_platform_cli.client.workato_api
182
+ from workato_platform_cli.client.workato_api.models.platform_connector_list_response import PlatformConnectorListResponse
183
+ from workato_platform_cli.client.workato_api.rest import ApiException
184
+ from pprint import pprint
185
+
186
+ # Defining the host is optional and defaults to https://www.workato.com
187
+ # See configuration.py for a list of all supported configuration parameters.
188
+ configuration = workato_platform_cli.client.workato_api.Configuration(
189
+ host = "https://www.workato.com"
190
+ )
191
+
192
+ # The client must configure the authentication and authorization parameters
193
+ # in accordance with the API server security policy.
194
+ # Examples for each auth method are provided below, use the example that
195
+ # satisfies your auth use case.
196
+
197
+ # Configure Bearer authorization: BearerAuth
198
+ configuration = workato_platform_cli.client.workato_api.Configuration(
199
+ access_token = os.environ["BEARER_TOKEN"]
200
+ )
201
+
202
+ # Enter a context with an instance of the API client
203
+ async with workato_platform_cli.client.workato_api.ApiClient(configuration) as api_client:
204
+ # Create an instance of the API class
205
+ api_instance = workato_platform_cli.client.workato_api.ConnectorsApi(api_client)
206
+ page = 1 # int | Page number (optional) (default to 1)
207
+ per_page = 1 # int | Number of records per page (max 100) (optional) (default to 1)
208
+
209
+ try:
210
+ # List platform connectors
211
+ api_response = await api_instance.list_platform_connectors(page=page, per_page=per_page)
212
+ print("The response of ConnectorsApi->list_platform_connectors:\n")
213
+ pprint(api_response)
214
+ except Exception as e:
215
+ print("Exception when calling ConnectorsApi->list_platform_connectors: %s\n" % e)
216
+ ```
217
+
218
+
219
+
220
+ ### Parameters
221
+
222
+
223
+ Name | Type | Description | Notes
224
+ ------------- | ------------- | ------------- | -------------
225
+ **page** | **int**| Page number | [optional] [default to 1]
226
+ **per_page** | **int**| Number of records per page (max 100) | [optional] [default to 1]
227
+
228
+ ### Return type
229
+
230
+ [**PlatformConnectorListResponse**](PlatformConnectorListResponse.md)
231
+
232
+ ### Authorization
233
+
234
+ [BearerAuth](../README.md#BearerAuth)
235
+
236
+ ### HTTP request headers
237
+
238
+ - **Content-Type**: Not defined
239
+ - **Accept**: application/json
240
+
241
+ ### HTTP response details
242
+
243
+ | Status code | Description | Response headers |
244
+ |-------------|-------------|------------------|
245
+ **200** | Platform connectors retrieved successfully | - |
246
+ **401** | Authentication required | - |
247
+
248
+ [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
249
+
@@ -0,0 +1,29 @@
1
+ # CreateExportManifestRequest
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **export_manifest** | [**ExportManifestRequest**](ExportManifestRequest.md) | |
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from workato_platform_cli.client.workato_api.models.create_export_manifest_request import CreateExportManifestRequest
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of CreateExportManifestRequest from a JSON string
18
+ create_export_manifest_request_instance = CreateExportManifestRequest.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(CreateExportManifestRequest.to_json())
21
+
22
+ # convert the object into a dict
23
+ create_export_manifest_request_dict = create_export_manifest_request_instance.to_dict()
24
+ # create an instance of CreateExportManifestRequest from a dict
25
+ create_export_manifest_request_from_dict = CreateExportManifestRequest.from_dict(create_export_manifest_request_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,30 @@
1
+ # CreateFolderRequest
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **name** | **str** | Name of the folder |
9
+ **parent_id** | **str** | Parent folder ID. Defaults to Home folder if not specified | [optional]
10
+
11
+ ## Example
12
+
13
+ ```python
14
+ from workato_platform_cli.client.workato_api.models.create_folder_request import CreateFolderRequest
15
+
16
+ # TODO update the JSON string below
17
+ json = "{}"
18
+ # create an instance of CreateFolderRequest from a JSON string
19
+ create_folder_request_instance = CreateFolderRequest.from_json(json)
20
+ # print the JSON string representation of the object
21
+ print(CreateFolderRequest.to_json())
22
+
23
+ # convert the object into a dict
24
+ create_folder_request_dict = create_folder_request_instance.to_dict()
25
+ # create an instance of CreateFolderRequest from a dict
26
+ create_folder_request_from_dict = CreateFolderRequest.from_dict(create_folder_request_dict)
27
+ ```
28
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
29
+
30
+
@@ -0,0 +1,35 @@
1
+ # CustomConnector
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **int** | |
9
+ **name** | **str** | |
10
+ **title** | **str** | |
11
+ **latest_released_version** | **int** | |
12
+ **latest_released_version_note** | **str** | |
13
+ **released_versions** | [**List[ConnectorVersion]**](ConnectorVersion.md) | |
14
+ **static_webhook_url** | **str** | |
15
+
16
+ ## Example
17
+
18
+ ```python
19
+ from workato_platform_cli.client.workato_api.models.custom_connector import CustomConnector
20
+
21
+ # TODO update the JSON string below
22
+ json = "{}"
23
+ # create an instance of CustomConnector from a JSON string
24
+ custom_connector_instance = CustomConnector.from_json(json)
25
+ # print the JSON string representation of the object
26
+ print(CustomConnector.to_json())
27
+
28
+ # convert the object into a dict
29
+ custom_connector_dict = custom_connector_instance.to_dict()
30
+ # create an instance of CustomConnector from a dict
31
+ custom_connector_from_dict = CustomConnector.from_dict(custom_connector_dict)
32
+ ```
33
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
34
+
35
+
@@ -0,0 +1,29 @@
1
+ # CustomConnectorCodeResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **data** | [**CustomConnectorCodeResponseData**](CustomConnectorCodeResponseData.md) | |
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from workato_platform_cli.client.workato_api.models.custom_connector_code_response import CustomConnectorCodeResponse
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of CustomConnectorCodeResponse from a JSON string
18
+ custom_connector_code_response_instance = CustomConnectorCodeResponse.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(CustomConnectorCodeResponse.to_json())
21
+
22
+ # convert the object into a dict
23
+ custom_connector_code_response_dict = custom_connector_code_response_instance.to_dict()
24
+ # create an instance of CustomConnectorCodeResponse from a dict
25
+ custom_connector_code_response_from_dict = CustomConnectorCodeResponse.from_dict(custom_connector_code_response_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,29 @@
1
+ # CustomConnectorCodeResponseData
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **code** | **str** | The connector code as a stringified value |
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from workato_platform_cli.client.workato_api.models.custom_connector_code_response_data import CustomConnectorCodeResponseData
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of CustomConnectorCodeResponseData from a JSON string
18
+ custom_connector_code_response_data_instance = CustomConnectorCodeResponseData.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(CustomConnectorCodeResponseData.to_json())
21
+
22
+ # convert the object into a dict
23
+ custom_connector_code_response_data_dict = custom_connector_code_response_data_instance.to_dict()
24
+ # create an instance of CustomConnectorCodeResponseData from a dict
25
+ custom_connector_code_response_data_from_dict = CustomConnectorCodeResponseData.from_dict(custom_connector_code_response_data_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,29 @@
1
+ # CustomConnectorListResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **result** | [**List[CustomConnector]**](CustomConnector.md) | |
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from workato_platform_cli.client.workato_api.models.custom_connector_list_response import CustomConnectorListResponse
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of CustomConnectorListResponse from a JSON string
18
+ custom_connector_list_response_instance = CustomConnectorListResponse.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(CustomConnectorListResponse.to_json())
21
+
22
+ # convert the object into a dict
23
+ custom_connector_list_response_dict = custom_connector_list_response_instance.to_dict()
24
+ # create an instance of CustomConnectorListResponse from a dict
25
+ custom_connector_list_response_from_dict = CustomConnectorListResponse.from_dict(custom_connector_list_response_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,34 @@
1
+ # DataTable
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **id** | **str** | |
9
+ **name** | **str** | |
10
+ **var_schema** | [**List[DataTableColumn]**](DataTableColumn.md) | |
11
+ **folder_id** | **int** | |
12
+ **created_at** | **datetime** | |
13
+ **updated_at** | **datetime** | |
14
+
15
+ ## Example
16
+
17
+ ```python
18
+ from workato_platform_cli.client.workato_api.models.data_table import DataTable
19
+
20
+ # TODO update the JSON string below
21
+ json = "{}"
22
+ # create an instance of DataTable from a JSON string
23
+ data_table_instance = DataTable.from_json(json)
24
+ # print the JSON string representation of the object
25
+ print(DataTable.to_json())
26
+
27
+ # convert the object into a dict
28
+ data_table_dict = data_table_instance.to_dict()
29
+ # create an instance of DataTable from a dict
30
+ data_table_from_dict = DataTable.from_dict(data_table_dict)
31
+ ```
32
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
33
+
34
+
@@ -0,0 +1,37 @@
1
+ # DataTableColumn
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **type** | **str** | |
9
+ **name** | **str** | |
10
+ **optional** | **bool** | |
11
+ **field_id** | **str** | |
12
+ **hint** | **str** | |
13
+ **default_value** | **object** | Default value matching the column type |
14
+ **metadata** | **Dict[str, object]** | |
15
+ **multivalue** | **bool** | |
16
+ **relation** | [**DataTableRelation**](DataTableRelation.md) | |
17
+
18
+ ## Example
19
+
20
+ ```python
21
+ from workato_platform_cli.client.workato_api.models.data_table_column import DataTableColumn
22
+
23
+ # TODO update the JSON string below
24
+ json = "{}"
25
+ # create an instance of DataTableColumn from a JSON string
26
+ data_table_column_instance = DataTableColumn.from_json(json)
27
+ # print the JSON string representation of the object
28
+ print(DataTableColumn.to_json())
29
+
30
+ # convert the object into a dict
31
+ data_table_column_dict = data_table_column_instance.to_dict()
32
+ # create an instance of DataTableColumn from a dict
33
+ data_table_column_from_dict = DataTableColumn.from_dict(data_table_column_dict)
34
+ ```
35
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
36
+
37
+
@@ -0,0 +1,37 @@
1
+ # DataTableColumnRequest
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **type** | **str** | The data type of the column |
9
+ **name** | **str** | The name of the column |
10
+ **optional** | **bool** | Whether the column is optional |
11
+ **field_id** | **str** | Unique UUID of the column | [optional]
12
+ **hint** | **str** | Tooltip hint for users | [optional]
13
+ **default_value** | **object** | Default value matching the column type | [optional]
14
+ **metadata** | **Dict[str, object]** | Additional metadata | [optional]
15
+ **multivalue** | **bool** | Whether the column accepts multi-value input | [optional]
16
+ **relation** | [**DataTableRelation**](DataTableRelation.md) | | [optional]
17
+
18
+ ## Example
19
+
20
+ ```python
21
+ from workato_platform_cli.client.workato_api.models.data_table_column_request import DataTableColumnRequest
22
+
23
+ # TODO update the JSON string below
24
+ json = "{}"
25
+ # create an instance of DataTableColumnRequest from a JSON string
26
+ data_table_column_request_instance = DataTableColumnRequest.from_json(json)
27
+ # print the JSON string representation of the object
28
+ print(DataTableColumnRequest.to_json())
29
+
30
+ # convert the object into a dict
31
+ data_table_column_request_dict = data_table_column_request_instance.to_dict()
32
+ # create an instance of DataTableColumnRequest from a dict
33
+ data_table_column_request_from_dict = DataTableColumnRequest.from_dict(data_table_column_request_dict)
34
+ ```
35
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
36
+
37
+
@@ -0,0 +1,31 @@
1
+ # DataTableCreateRequest
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **name** | **str** | The name of the data table to create |
9
+ **folder_id** | **int** | ID of the folder where to create the data table |
10
+ **var_schema** | [**List[DataTableColumnRequest]**](DataTableColumnRequest.md) | Array of column definitions |
11
+
12
+ ## Example
13
+
14
+ ```python
15
+ from workato_platform_cli.client.workato_api.models.data_table_create_request import DataTableCreateRequest
16
+
17
+ # TODO update the JSON string below
18
+ json = "{}"
19
+ # create an instance of DataTableCreateRequest from a JSON string
20
+ data_table_create_request_instance = DataTableCreateRequest.from_json(json)
21
+ # print the JSON string representation of the object
22
+ print(DataTableCreateRequest.to_json())
23
+
24
+ # convert the object into a dict
25
+ data_table_create_request_dict = data_table_create_request_instance.to_dict()
26
+ # create an instance of DataTableCreateRequest from a dict
27
+ data_table_create_request_from_dict = DataTableCreateRequest.from_dict(data_table_create_request_dict)
28
+ ```
29
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
30
+
31
+
@@ -0,0 +1,29 @@
1
+ # DataTableCreateResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **data** | [**DataTable**](DataTable.md) | |
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from workato_platform_cli.client.workato_api.models.data_table_create_response import DataTableCreateResponse
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of DataTableCreateResponse from a JSON string
18
+ data_table_create_response_instance = DataTableCreateResponse.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(DataTableCreateResponse.to_json())
21
+
22
+ # convert the object into a dict
23
+ data_table_create_response_dict = data_table_create_response_instance.to_dict()
24
+ # create an instance of DataTableCreateResponse from a dict
25
+ data_table_create_response_from_dict = DataTableCreateResponse.from_dict(data_table_create_response_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,29 @@
1
+ # DataTableListResponse
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **data** | [**List[DataTable]**](DataTable.md) | |
9
+
10
+ ## Example
11
+
12
+ ```python
13
+ from workato_platform_cli.client.workato_api.models.data_table_list_response import DataTableListResponse
14
+
15
+ # TODO update the JSON string below
16
+ json = "{}"
17
+ # create an instance of DataTableListResponse from a JSON string
18
+ data_table_list_response_instance = DataTableListResponse.from_json(json)
19
+ # print the JSON string representation of the object
20
+ print(DataTableListResponse.to_json())
21
+
22
+ # convert the object into a dict
23
+ data_table_list_response_dict = data_table_list_response_instance.to_dict()
24
+ # create an instance of DataTableListResponse from a dict
25
+ data_table_list_response_from_dict = DataTableListResponse.from_dict(data_table_list_response_dict)
26
+ ```
27
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28
+
29
+
@@ -0,0 +1,30 @@
1
+ # DataTableRelation
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **table_id** | **str** | |
9
+ **field_id** | **str** | |
10
+
11
+ ## Example
12
+
13
+ ```python
14
+ from workato_platform_cli.client.workato_api.models.data_table_relation import DataTableRelation
15
+
16
+ # TODO update the JSON string below
17
+ json = "{}"
18
+ # create an instance of DataTableRelation from a JSON string
19
+ data_table_relation_instance = DataTableRelation.from_json(json)
20
+ # print the JSON string representation of the object
21
+ print(DataTableRelation.to_json())
22
+
23
+ # convert the object into a dict
24
+ data_table_relation_dict = data_table_relation_instance.to_dict()
25
+ # create an instance of DataTableRelation from a dict
26
+ data_table_relation_from_dict = DataTableRelation.from_dict(data_table_relation_dict)
27
+ ```
28
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
29
+
30
+