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.
- workato_platform_cli/__init__.py +135 -0
- workato_platform_cli/_version.py +34 -0
- workato_platform_cli/cli/__init__.py +126 -0
- workato_platform_cli/cli/commands/__init__.py +0 -0
- workato_platform_cli/cli/commands/api_clients.py +627 -0
- workato_platform_cli/cli/commands/api_collections.py +497 -0
- workato_platform_cli/cli/commands/assets.py +82 -0
- workato_platform_cli/cli/commands/connections.py +1205 -0
- workato_platform_cli/cli/commands/connectors/__init__.py +0 -0
- workato_platform_cli/cli/commands/connectors/command.py +178 -0
- workato_platform_cli/cli/commands/connectors/connector_manager.py +351 -0
- workato_platform_cli/cli/commands/data_tables.py +345 -0
- workato_platform_cli/cli/commands/guide.py +315 -0
- workato_platform_cli/cli/commands/init.py +229 -0
- workato_platform_cli/cli/commands/profiles.py +364 -0
- workato_platform_cli/cli/commands/projects/__init__.py +0 -0
- workato_platform_cli/cli/commands/projects/command.py +513 -0
- workato_platform_cli/cli/commands/projects/project_manager.py +338 -0
- workato_platform_cli/cli/commands/properties.py +174 -0
- workato_platform_cli/cli/commands/pull.py +327 -0
- workato_platform_cli/cli/commands/push/__init__.py +0 -0
- workato_platform_cli/cli/commands/push/command.py +320 -0
- workato_platform_cli/cli/commands/recipes/__init__.py +0 -0
- workato_platform_cli/cli/commands/recipes/command.py +847 -0
- workato_platform_cli/cli/commands/recipes/validator.py +1740 -0
- workato_platform_cli/cli/commands/workspace.py +73 -0
- workato_platform_cli/cli/containers.py +80 -0
- workato_platform_cli/cli/resources/data/connection-data.json +7364 -0
- workato_platform_cli/cli/resources/data/picklist-data.json +3706 -0
- workato_platform_cli/cli/resources/docs/README.md +178 -0
- workato_platform_cli/cli/resources/docs/actions.md +452 -0
- workato_platform_cli/cli/resources/docs/block-structure.md +424 -0
- workato_platform_cli/cli/resources/docs/connections-parameters.md +11946 -0
- workato_platform_cli/cli/resources/docs/data-mapping.md +779 -0
- workato_platform_cli/cli/resources/docs/formulas/array-list-formulas.md +1276 -0
- workato_platform_cli/cli/resources/docs/formulas/conditions.md +102 -0
- workato_platform_cli/cli/resources/docs/formulas/date-formulas.md +798 -0
- workato_platform_cli/cli/resources/docs/formulas/number-formulas.md +507 -0
- workato_platform_cli/cli/resources/docs/formulas/other-formulas.md +419 -0
- workato_platform_cli/cli/resources/docs/formulas/string-formulas.md +1353 -0
- workato_platform_cli/cli/resources/docs/formulas.md +214 -0
- workato_platform_cli/cli/resources/docs/naming-conventions.md +163 -0
- workato_platform_cli/cli/resources/docs/recipe-deployment-workflow.md +352 -0
- workato_platform_cli/cli/resources/docs/recipe-fundamentals.md +179 -0
- workato_platform_cli/cli/resources/docs/triggers.md +360 -0
- workato_platform_cli/cli/utils/__init__.py +10 -0
- workato_platform_cli/cli/utils/config/__init__.py +33 -0
- workato_platform_cli/cli/utils/config/manager.py +1001 -0
- workato_platform_cli/cli/utils/config/models.py +89 -0
- workato_platform_cli/cli/utils/config/profiles.py +491 -0
- workato_platform_cli/cli/utils/config/workspace.py +113 -0
- workato_platform_cli/cli/utils/exception_handler.py +531 -0
- workato_platform_cli/cli/utils/gitignore.py +32 -0
- workato_platform_cli/cli/utils/ignore_patterns.py +44 -0
- workato_platform_cli/cli/utils/spinner.py +63 -0
- workato_platform_cli/cli/utils/version_checker.py +237 -0
- workato_platform_cli/client/__init__.py +0 -0
- workato_platform_cli/client/workato_api/__init__.py +202 -0
- workato_platform_cli/client/workato_api/api/__init__.py +15 -0
- workato_platform_cli/client/workato_api/api/api_platform_api.py +2875 -0
- workato_platform_cli/client/workato_api/api/connections_api.py +1807 -0
- workato_platform_cli/client/workato_api/api/connectors_api.py +840 -0
- workato_platform_cli/client/workato_api/api/data_tables_api.py +604 -0
- workato_platform_cli/client/workato_api/api/export_api.py +621 -0
- workato_platform_cli/client/workato_api/api/folders_api.py +621 -0
- workato_platform_cli/client/workato_api/api/packages_api.py +1197 -0
- workato_platform_cli/client/workato_api/api/projects_api.py +590 -0
- workato_platform_cli/client/workato_api/api/properties_api.py +620 -0
- workato_platform_cli/client/workato_api/api/recipes_api.py +1379 -0
- workato_platform_cli/client/workato_api/api/users_api.py +285 -0
- workato_platform_cli/client/workato_api/api_client.py +807 -0
- workato_platform_cli/client/workato_api/api_response.py +21 -0
- workato_platform_cli/client/workato_api/configuration.py +601 -0
- workato_platform_cli/client/workato_api/docs/APIPlatformApi.md +844 -0
- workato_platform_cli/client/workato_api/docs/ApiClient.md +46 -0
- workato_platform_cli/client/workato_api/docs/ApiClientApiCollectionsInner.md +30 -0
- workato_platform_cli/client/workato_api/docs/ApiClientApiPoliciesInner.md +30 -0
- workato_platform_cli/client/workato_api/docs/ApiClientCreateRequest.md +46 -0
- workato_platform_cli/client/workato_api/docs/ApiClientListResponse.md +32 -0
- workato_platform_cli/client/workato_api/docs/ApiClientResponse.md +29 -0
- workato_platform_cli/client/workato_api/docs/ApiCollection.md +38 -0
- workato_platform_cli/client/workato_api/docs/ApiCollectionCreateRequest.md +32 -0
- workato_platform_cli/client/workato_api/docs/ApiEndpoint.md +41 -0
- workato_platform_cli/client/workato_api/docs/ApiKey.md +36 -0
- workato_platform_cli/client/workato_api/docs/ApiKeyCreateRequest.md +32 -0
- workato_platform_cli/client/workato_api/docs/ApiKeyListResponse.md +32 -0
- workato_platform_cli/client/workato_api/docs/ApiKeyResponse.md +29 -0
- workato_platform_cli/client/workato_api/docs/Asset.md +39 -0
- workato_platform_cli/client/workato_api/docs/AssetReference.md +37 -0
- workato_platform_cli/client/workato_api/docs/Connection.md +44 -0
- workato_platform_cli/client/workato_api/docs/ConnectionCreateRequest.md +35 -0
- workato_platform_cli/client/workato_api/docs/ConnectionUpdateRequest.md +34 -0
- workato_platform_cli/client/workato_api/docs/ConnectionsApi.md +526 -0
- workato_platform_cli/client/workato_api/docs/ConnectorAction.md +33 -0
- workato_platform_cli/client/workato_api/docs/ConnectorVersion.md +32 -0
- workato_platform_cli/client/workato_api/docs/ConnectorsApi.md +249 -0
- workato_platform_cli/client/workato_api/docs/CreateExportManifestRequest.md +29 -0
- workato_platform_cli/client/workato_api/docs/CreateFolderRequest.md +30 -0
- workato_platform_cli/client/workato_api/docs/CustomConnector.md +35 -0
- workato_platform_cli/client/workato_api/docs/CustomConnectorCodeResponse.md +29 -0
- workato_platform_cli/client/workato_api/docs/CustomConnectorCodeResponseData.md +29 -0
- workato_platform_cli/client/workato_api/docs/CustomConnectorListResponse.md +29 -0
- workato_platform_cli/client/workato_api/docs/DataTable.md +34 -0
- workato_platform_cli/client/workato_api/docs/DataTableColumn.md +37 -0
- workato_platform_cli/client/workato_api/docs/DataTableColumnRequest.md +37 -0
- workato_platform_cli/client/workato_api/docs/DataTableCreateRequest.md +31 -0
- workato_platform_cli/client/workato_api/docs/DataTableCreateResponse.md +29 -0
- workato_platform_cli/client/workato_api/docs/DataTableListResponse.md +29 -0
- workato_platform_cli/client/workato_api/docs/DataTableRelation.md +30 -0
- workato_platform_cli/client/workato_api/docs/DataTablesApi.md +172 -0
- workato_platform_cli/client/workato_api/docs/DeleteProject403Response.md +29 -0
- workato_platform_cli/client/workato_api/docs/Error.md +29 -0
- workato_platform_cli/client/workato_api/docs/ExportApi.md +175 -0
- workato_platform_cli/client/workato_api/docs/ExportManifestRequest.md +35 -0
- workato_platform_cli/client/workato_api/docs/ExportManifestResponse.md +29 -0
- workato_platform_cli/client/workato_api/docs/ExportManifestResponseResult.md +36 -0
- workato_platform_cli/client/workato_api/docs/Folder.md +35 -0
- workato_platform_cli/client/workato_api/docs/FolderAssetsResponse.md +29 -0
- workato_platform_cli/client/workato_api/docs/FolderAssetsResponseResult.md +29 -0
- workato_platform_cli/client/workato_api/docs/FolderCreationResponse.md +35 -0
- workato_platform_cli/client/workato_api/docs/FoldersApi.md +176 -0
- workato_platform_cli/client/workato_api/docs/ImportResults.md +32 -0
- workato_platform_cli/client/workato_api/docs/OAuthUrlResponse.md +29 -0
- workato_platform_cli/client/workato_api/docs/OAuthUrlResponseData.md +29 -0
- workato_platform_cli/client/workato_api/docs/OpenApiSpec.md +30 -0
- workato_platform_cli/client/workato_api/docs/PackageDetailsResponse.md +35 -0
- workato_platform_cli/client/workato_api/docs/PackageDetailsResponseRecipeStatusInner.md +30 -0
- workato_platform_cli/client/workato_api/docs/PackageResponse.md +33 -0
- workato_platform_cli/client/workato_api/docs/PackagesApi.md +364 -0
- workato_platform_cli/client/workato_api/docs/PicklistRequest.md +30 -0
- workato_platform_cli/client/workato_api/docs/PicklistResponse.md +29 -0
- workato_platform_cli/client/workato_api/docs/PlatformConnector.md +36 -0
- workato_platform_cli/client/workato_api/docs/PlatformConnectorListResponse.md +32 -0
- workato_platform_cli/client/workato_api/docs/Project.md +32 -0
- workato_platform_cli/client/workato_api/docs/ProjectsApi.md +173 -0
- workato_platform_cli/client/workato_api/docs/PropertiesApi.md +186 -0
- workato_platform_cli/client/workato_api/docs/Recipe.md +58 -0
- workato_platform_cli/client/workato_api/docs/RecipeConfigInner.md +33 -0
- workato_platform_cli/client/workato_api/docs/RecipeConnectionUpdateRequest.md +30 -0
- workato_platform_cli/client/workato_api/docs/RecipeListResponse.md +29 -0
- workato_platform_cli/client/workato_api/docs/RecipeStartResponse.md +31 -0
- workato_platform_cli/client/workato_api/docs/RecipesApi.md +367 -0
- workato_platform_cli/client/workato_api/docs/RuntimeUserConnectionCreateRequest.md +34 -0
- workato_platform_cli/client/workato_api/docs/RuntimeUserConnectionResponse.md +29 -0
- workato_platform_cli/client/workato_api/docs/RuntimeUserConnectionResponseData.md +30 -0
- workato_platform_cli/client/workato_api/docs/SuccessResponse.md +29 -0
- workato_platform_cli/client/workato_api/docs/UpsertProjectPropertiesRequest.md +29 -0
- workato_platform_cli/client/workato_api/docs/User.md +48 -0
- workato_platform_cli/client/workato_api/docs/UsersApi.md +84 -0
- workato_platform_cli/client/workato_api/docs/ValidationError.md +30 -0
- workato_platform_cli/client/workato_api/docs/ValidationErrorErrorsValue.md +28 -0
- workato_platform_cli/client/workato_api/exceptions.py +216 -0
- workato_platform_cli/client/workato_api/models/__init__.py +83 -0
- workato_platform_cli/client/workato_api/models/api_client.py +185 -0
- workato_platform_cli/client/workato_api/models/api_client_api_collections_inner.py +89 -0
- workato_platform_cli/client/workato_api/models/api_client_api_policies_inner.py +89 -0
- workato_platform_cli/client/workato_api/models/api_client_create_request.py +138 -0
- workato_platform_cli/client/workato_api/models/api_client_list_response.py +101 -0
- workato_platform_cli/client/workato_api/models/api_client_response.py +91 -0
- workato_platform_cli/client/workato_api/models/api_collection.py +110 -0
- workato_platform_cli/client/workato_api/models/api_collection_create_request.py +97 -0
- workato_platform_cli/client/workato_api/models/api_endpoint.py +117 -0
- workato_platform_cli/client/workato_api/models/api_key.py +102 -0
- workato_platform_cli/client/workato_api/models/api_key_create_request.py +93 -0
- workato_platform_cli/client/workato_api/models/api_key_list_response.py +101 -0
- workato_platform_cli/client/workato_api/models/api_key_response.py +91 -0
- workato_platform_cli/client/workato_api/models/asset.py +124 -0
- workato_platform_cli/client/workato_api/models/asset_reference.py +110 -0
- workato_platform_cli/client/workato_api/models/connection.py +173 -0
- workato_platform_cli/client/workato_api/models/connection_create_request.py +99 -0
- workato_platform_cli/client/workato_api/models/connection_update_request.py +97 -0
- workato_platform_cli/client/workato_api/models/connector_action.py +100 -0
- workato_platform_cli/client/workato_api/models/connector_version.py +99 -0
- workato_platform_cli/client/workato_api/models/create_export_manifest_request.py +91 -0
- workato_platform_cli/client/workato_api/models/create_folder_request.py +89 -0
- workato_platform_cli/client/workato_api/models/custom_connector.py +117 -0
- workato_platform_cli/client/workato_api/models/custom_connector_code_response.py +91 -0
- workato_platform_cli/client/workato_api/models/custom_connector_code_response_data.py +87 -0
- workato_platform_cli/client/workato_api/models/custom_connector_list_response.py +95 -0
- workato_platform_cli/client/workato_api/models/data_table.py +107 -0
- workato_platform_cli/client/workato_api/models/data_table_column.py +125 -0
- workato_platform_cli/client/workato_api/models/data_table_column_request.py +130 -0
- workato_platform_cli/client/workato_api/models/data_table_create_request.py +99 -0
- workato_platform_cli/client/workato_api/models/data_table_create_response.py +91 -0
- workato_platform_cli/client/workato_api/models/data_table_list_response.py +95 -0
- workato_platform_cli/client/workato_api/models/data_table_relation.py +90 -0
- workato_platform_cli/client/workato_api/models/delete_project403_response.py +87 -0
- workato_platform_cli/client/workato_api/models/error.py +87 -0
- workato_platform_cli/client/workato_api/models/export_manifest_request.py +107 -0
- workato_platform_cli/client/workato_api/models/export_manifest_response.py +91 -0
- workato_platform_cli/client/workato_api/models/export_manifest_response_result.py +112 -0
- workato_platform_cli/client/workato_api/models/folder.py +110 -0
- workato_platform_cli/client/workato_api/models/folder_assets_response.py +91 -0
- workato_platform_cli/client/workato_api/models/folder_assets_response_result.py +95 -0
- workato_platform_cli/client/workato_api/models/folder_creation_response.py +110 -0
- workato_platform_cli/client/workato_api/models/import_results.py +93 -0
- workato_platform_cli/client/workato_api/models/o_auth_url_response.py +91 -0
- workato_platform_cli/client/workato_api/models/o_auth_url_response_data.py +87 -0
- workato_platform_cli/client/workato_api/models/open_api_spec.py +96 -0
- workato_platform_cli/client/workato_api/models/package_details_response.py +126 -0
- workato_platform_cli/client/workato_api/models/package_details_response_recipe_status_inner.py +99 -0
- workato_platform_cli/client/workato_api/models/package_response.py +109 -0
- workato_platform_cli/client/workato_api/models/picklist_request.py +89 -0
- workato_platform_cli/client/workato_api/models/picklist_response.py +88 -0
- workato_platform_cli/client/workato_api/models/platform_connector.py +116 -0
- workato_platform_cli/client/workato_api/models/platform_connector_list_response.py +101 -0
- workato_platform_cli/client/workato_api/models/project.py +93 -0
- workato_platform_cli/client/workato_api/models/recipe.py +174 -0
- workato_platform_cli/client/workato_api/models/recipe_config_inner.py +100 -0
- workato_platform_cli/client/workato_api/models/recipe_connection_update_request.py +89 -0
- workato_platform_cli/client/workato_api/models/recipe_list_response.py +95 -0
- workato_platform_cli/client/workato_api/models/recipe_start_response.py +91 -0
- workato_platform_cli/client/workato_api/models/runtime_user_connection_create_request.py +97 -0
- workato_platform_cli/client/workato_api/models/runtime_user_connection_response.py +91 -0
- workato_platform_cli/client/workato_api/models/runtime_user_connection_response_data.py +89 -0
- workato_platform_cli/client/workato_api/models/success_response.py +87 -0
- workato_platform_cli/client/workato_api/models/upsert_project_properties_request.py +88 -0
- workato_platform_cli/client/workato_api/models/user.py +151 -0
- workato_platform_cli/client/workato_api/models/validation_error.py +102 -0
- workato_platform_cli/client/workato_api/models/validation_error_errors_value.py +143 -0
- workato_platform_cli/client/workato_api/rest.py +213 -0
- workato_platform_cli/client/workato_api/test/__init__.py +0 -0
- workato_platform_cli/client/workato_api/test/test_api_client.py +94 -0
- workato_platform_cli/client/workato_api/test/test_api_client_api_collections_inner.py +52 -0
- workato_platform_cli/client/workato_api/test/test_api_client_api_policies_inner.py +52 -0
- workato_platform_cli/client/workato_api/test/test_api_client_create_request.py +75 -0
- workato_platform_cli/client/workato_api/test/test_api_client_list_response.py +114 -0
- workato_platform_cli/client/workato_api/test/test_api_client_response.py +104 -0
- workato_platform_cli/client/workato_api/test/test_api_collection.py +72 -0
- workato_platform_cli/client/workato_api/test/test_api_collection_create_request.py +57 -0
- workato_platform_cli/client/workato_api/test/test_api_endpoint.py +75 -0
- workato_platform_cli/client/workato_api/test/test_api_key.py +64 -0
- workato_platform_cli/client/workato_api/test/test_api_key_create_request.py +56 -0
- workato_platform_cli/client/workato_api/test/test_api_key_list_response.py +78 -0
- workato_platform_cli/client/workato_api/test/test_api_key_response.py +68 -0
- workato_platform_cli/client/workato_api/test/test_api_platform_api.py +101 -0
- workato_platform_cli/client/workato_api/test/test_asset.py +67 -0
- workato_platform_cli/client/workato_api/test/test_asset_reference.py +62 -0
- workato_platform_cli/client/workato_api/test/test_connection.py +81 -0
- workato_platform_cli/client/workato_api/test/test_connection_create_request.py +59 -0
- workato_platform_cli/client/workato_api/test/test_connection_update_request.py +56 -0
- workato_platform_cli/client/workato_api/test/test_connections_api.py +73 -0
- workato_platform_cli/client/workato_api/test/test_connector_action.py +59 -0
- workato_platform_cli/client/workato_api/test/test_connector_version.py +58 -0
- workato_platform_cli/client/workato_api/test/test_connectors_api.py +52 -0
- workato_platform_cli/client/workato_api/test/test_create_export_manifest_request.py +88 -0
- workato_platform_cli/client/workato_api/test/test_create_folder_request.py +53 -0
- workato_platform_cli/client/workato_api/test/test_custom_connector.py +76 -0
- workato_platform_cli/client/workato_api/test/test_custom_connector_code_response.py +54 -0
- workato_platform_cli/client/workato_api/test/test_custom_connector_code_response_data.py +52 -0
- workato_platform_cli/client/workato_api/test/test_custom_connector_list_response.py +82 -0
- workato_platform_cli/client/workato_api/test/test_data_table.py +88 -0
- workato_platform_cli/client/workato_api/test/test_data_table_column.py +72 -0
- workato_platform_cli/client/workato_api/test/test_data_table_column_request.py +64 -0
- workato_platform_cli/client/workato_api/test/test_data_table_create_request.py +82 -0
- workato_platform_cli/client/workato_api/test/test_data_table_create_response.py +90 -0
- workato_platform_cli/client/workato_api/test/test_data_table_list_response.py +94 -0
- workato_platform_cli/client/workato_api/test/test_data_table_relation.py +54 -0
- workato_platform_cli/client/workato_api/test/test_data_tables_api.py +45 -0
- workato_platform_cli/client/workato_api/test/test_delete_project403_response.py +51 -0
- workato_platform_cli/client/workato_api/test/test_error.py +52 -0
- workato_platform_cli/client/workato_api/test/test_export_api.py +45 -0
- workato_platform_cli/client/workato_api/test/test_export_manifest_request.py +69 -0
- workato_platform_cli/client/workato_api/test/test_export_manifest_response.py +68 -0
- workato_platform_cli/client/workato_api/test/test_export_manifest_response_result.py +66 -0
- workato_platform_cli/client/workato_api/test/test_folder.py +64 -0
- workato_platform_cli/client/workato_api/test/test_folder_assets_response.py +80 -0
- workato_platform_cli/client/workato_api/test/test_folder_assets_response_result.py +78 -0
- workato_platform_cli/client/workato_api/test/test_folder_creation_response.py +64 -0
- workato_platform_cli/client/workato_api/test/test_folders_api.py +45 -0
- workato_platform_cli/client/workato_api/test/test_import_results.py +58 -0
- workato_platform_cli/client/workato_api/test/test_o_auth_url_response.py +54 -0
- workato_platform_cli/client/workato_api/test/test_o_auth_url_response_data.py +52 -0
- workato_platform_cli/client/workato_api/test/test_open_api_spec.py +54 -0
- workato_platform_cli/client/workato_api/test/test_package_details_response.py +64 -0
- workato_platform_cli/client/workato_api/test/test_package_details_response_recipe_status_inner.py +52 -0
- workato_platform_cli/client/workato_api/test/test_package_response.py +58 -0
- workato_platform_cli/client/workato_api/test/test_packages_api.py +59 -0
- workato_platform_cli/client/workato_api/test/test_picklist_request.py +53 -0
- workato_platform_cli/client/workato_api/test/test_picklist_response.py +52 -0
- workato_platform_cli/client/workato_api/test/test_platform_connector.py +94 -0
- workato_platform_cli/client/workato_api/test/test_platform_connector_list_response.py +106 -0
- workato_platform_cli/client/workato_api/test/test_project.py +57 -0
- workato_platform_cli/client/workato_api/test/test_projects_api.py +45 -0
- workato_platform_cli/client/workato_api/test/test_properties_api.py +45 -0
- workato_platform_cli/client/workato_api/test/test_recipe.py +124 -0
- workato_platform_cli/client/workato_api/test/test_recipe_config_inner.py +55 -0
- workato_platform_cli/client/workato_api/test/test_recipe_connection_update_request.py +54 -0
- workato_platform_cli/client/workato_api/test/test_recipe_list_response.py +134 -0
- workato_platform_cli/client/workato_api/test/test_recipe_start_response.py +54 -0
- workato_platform_cli/client/workato_api/test/test_recipes_api.py +59 -0
- workato_platform_cli/client/workato_api/test/test_runtime_user_connection_create_request.py +59 -0
- workato_platform_cli/client/workato_api/test/test_runtime_user_connection_response.py +56 -0
- workato_platform_cli/client/workato_api/test/test_runtime_user_connection_response_data.py +54 -0
- workato_platform_cli/client/workato_api/test/test_success_response.py +52 -0
- workato_platform_cli/client/workato_api/test/test_upsert_project_properties_request.py +52 -0
- workato_platform_cli/client/workato_api/test/test_user.py +85 -0
- workato_platform_cli/client/workato_api/test/test_users_api.py +38 -0
- workato_platform_cli/client/workato_api/test/test_validation_error.py +52 -0
- workato_platform_cli/client/workato_api/test/test_validation_error_errors_value.py +50 -0
- workato_platform_cli/client/workato_api_README.md +205 -0
- workato_platform_cli-1.0.0rc5.dev5.dist-info/METADATA +185 -0
- workato_platform_cli-1.0.0rc5.dev5.dist-info/RECORD +306 -0
- workato_platform_cli-1.0.0rc5.dev5.dist-info/WHEEL +4 -0
- workato_platform_cli-1.0.0rc5.dev5.dist-info/entry_points.txt +2 -0
- workato_platform_cli-1.0.0rc5.dev5.dist-info/licenses/LICENSE +7 -0
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
# workato_platform_cli.client.workato_api.DataTablesApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *https://www.workato.com*
|
|
4
|
+
|
|
5
|
+
Method | HTTP request | Description
|
|
6
|
+
------------- | ------------- | -------------
|
|
7
|
+
[**create_data_table**](DataTablesApi.md#create_data_table) | **POST** /api/data_tables | Create data table
|
|
8
|
+
[**list_data_tables**](DataTablesApi.md#list_data_tables) | **GET** /api/data_tables | List data tables
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
# **create_data_table**
|
|
12
|
+
> DataTableCreateResponse create_data_table(data_table_create_request)
|
|
13
|
+
|
|
14
|
+
Create data table
|
|
15
|
+
|
|
16
|
+
Creates a data table in a folder you specify
|
|
17
|
+
|
|
18
|
+
### Example
|
|
19
|
+
|
|
20
|
+
* Bearer Authentication (BearerAuth):
|
|
21
|
+
|
|
22
|
+
```python
|
|
23
|
+
import workato_platform_cli.client.workato_api
|
|
24
|
+
from workato_platform_cli.client.workato_api.models.data_table_create_request import DataTableCreateRequest
|
|
25
|
+
from workato_platform_cli.client.workato_api.models.data_table_create_response import DataTableCreateResponse
|
|
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.DataTablesApi(api_client)
|
|
49
|
+
data_table_create_request = workato_platform_cli.client.workato_api.DataTableCreateRequest() # DataTableCreateRequest |
|
|
50
|
+
|
|
51
|
+
try:
|
|
52
|
+
# Create data table
|
|
53
|
+
api_response = await api_instance.create_data_table(data_table_create_request)
|
|
54
|
+
print("The response of DataTablesApi->create_data_table:\n")
|
|
55
|
+
pprint(api_response)
|
|
56
|
+
except Exception as e:
|
|
57
|
+
print("Exception when calling DataTablesApi->create_data_table: %s\n" % e)
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
### Parameters
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
Name | Type | Description | Notes
|
|
66
|
+
------------- | ------------- | ------------- | -------------
|
|
67
|
+
**data_table_create_request** | [**DataTableCreateRequest**](DataTableCreateRequest.md)| |
|
|
68
|
+
|
|
69
|
+
### Return type
|
|
70
|
+
|
|
71
|
+
[**DataTableCreateResponse**](DataTableCreateResponse.md)
|
|
72
|
+
|
|
73
|
+
### Authorization
|
|
74
|
+
|
|
75
|
+
[BearerAuth](../README.md#BearerAuth)
|
|
76
|
+
|
|
77
|
+
### HTTP request headers
|
|
78
|
+
|
|
79
|
+
- **Content-Type**: application/json
|
|
80
|
+
- **Accept**: application/json
|
|
81
|
+
|
|
82
|
+
### HTTP response details
|
|
83
|
+
|
|
84
|
+
| Status code | Description | Response headers |
|
|
85
|
+
|-------------|-------------|------------------|
|
|
86
|
+
**200** | Data table created successfully | - |
|
|
87
|
+
**400** | Bad request | - |
|
|
88
|
+
**401** | Authentication required | - |
|
|
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_data_tables**
|
|
93
|
+
> DataTableListResponse list_data_tables(page=page, per_page=per_page)
|
|
94
|
+
|
|
95
|
+
List data tables
|
|
96
|
+
|
|
97
|
+
Returns a list of all data tables in your workspace
|
|
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.data_table_list_response import DataTableListResponse
|
|
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.DataTablesApi(api_client)
|
|
129
|
+
page = 1 # int | Page number of the data tables to fetch (optional) (default to 1)
|
|
130
|
+
per_page = 100 # int | Page size (max 100) (optional) (default to 100)
|
|
131
|
+
|
|
132
|
+
try:
|
|
133
|
+
# List data tables
|
|
134
|
+
api_response = await api_instance.list_data_tables(page=page, per_page=per_page)
|
|
135
|
+
print("The response of DataTablesApi->list_data_tables:\n")
|
|
136
|
+
pprint(api_response)
|
|
137
|
+
except Exception as e:
|
|
138
|
+
print("Exception when calling DataTablesApi->list_data_tables: %s\n" % e)
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
### Parameters
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
Name | Type | Description | Notes
|
|
147
|
+
------------- | ------------- | ------------- | -------------
|
|
148
|
+
**page** | **int**| Page number of the data tables to fetch | [optional] [default to 1]
|
|
149
|
+
**per_page** | **int**| Page size (max 100) | [optional] [default to 100]
|
|
150
|
+
|
|
151
|
+
### Return type
|
|
152
|
+
|
|
153
|
+
[**DataTableListResponse**](DataTableListResponse.md)
|
|
154
|
+
|
|
155
|
+
### Authorization
|
|
156
|
+
|
|
157
|
+
[BearerAuth](../README.md#BearerAuth)
|
|
158
|
+
|
|
159
|
+
### HTTP request headers
|
|
160
|
+
|
|
161
|
+
- **Content-Type**: Not defined
|
|
162
|
+
- **Accept**: application/json
|
|
163
|
+
|
|
164
|
+
### HTTP response details
|
|
165
|
+
|
|
166
|
+
| Status code | Description | Response headers |
|
|
167
|
+
|-------------|-------------|------------------|
|
|
168
|
+
**200** | Data tables retrieved successfully | - |
|
|
169
|
+
**401** | Authentication required | - |
|
|
170
|
+
|
|
171
|
+
[[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)
|
|
172
|
+
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# DeleteProject403Response
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**message** | **str** | | [optional]
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```python
|
|
13
|
+
from workato_platform_cli.client.workato_api.models.delete_project403_response import DeleteProject403Response
|
|
14
|
+
|
|
15
|
+
# TODO update the JSON string below
|
|
16
|
+
json = "{}"
|
|
17
|
+
# create an instance of DeleteProject403Response from a JSON string
|
|
18
|
+
delete_project403_response_instance = DeleteProject403Response.from_json(json)
|
|
19
|
+
# print the JSON string representation of the object
|
|
20
|
+
print(DeleteProject403Response.to_json())
|
|
21
|
+
|
|
22
|
+
# convert the object into a dict
|
|
23
|
+
delete_project403_response_dict = delete_project403_response_instance.to_dict()
|
|
24
|
+
# create an instance of DeleteProject403Response from a dict
|
|
25
|
+
delete_project403_response_from_dict = DeleteProject403Response.from_dict(delete_project403_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
|
+
# Error
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**message** | **str** | |
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```python
|
|
13
|
+
from workato_platform_cli.client.workato_api.models.error import Error
|
|
14
|
+
|
|
15
|
+
# TODO update the JSON string below
|
|
16
|
+
json = "{}"
|
|
17
|
+
# create an instance of Error from a JSON string
|
|
18
|
+
error_instance = Error.from_json(json)
|
|
19
|
+
# print the JSON string representation of the object
|
|
20
|
+
print(Error.to_json())
|
|
21
|
+
|
|
22
|
+
# convert the object into a dict
|
|
23
|
+
error_dict = error_instance.to_dict()
|
|
24
|
+
# create an instance of Error from a dict
|
|
25
|
+
error_from_dict = Error.from_dict(error_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,175 @@
|
|
|
1
|
+
# workato_platform_cli.client.workato_api.ExportApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *https://www.workato.com*
|
|
4
|
+
|
|
5
|
+
Method | HTTP request | Description
|
|
6
|
+
------------- | ------------- | -------------
|
|
7
|
+
[**create_export_manifest**](ExportApi.md#create_export_manifest) | **POST** /api/export_manifests | Create an export manifest
|
|
8
|
+
[**list_assets_in_folder**](ExportApi.md#list_assets_in_folder) | **GET** /api/export_manifests/folder_assets | View assets in a folder
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
# **create_export_manifest**
|
|
12
|
+
> ExportManifestResponse create_export_manifest(create_export_manifest_request)
|
|
13
|
+
|
|
14
|
+
Create an export manifest
|
|
15
|
+
|
|
16
|
+
Create an export manifest for exporting assets
|
|
17
|
+
|
|
18
|
+
### Example
|
|
19
|
+
|
|
20
|
+
* Bearer Authentication (BearerAuth):
|
|
21
|
+
|
|
22
|
+
```python
|
|
23
|
+
import workato_platform_cli.client.workato_api
|
|
24
|
+
from workato_platform_cli.client.workato_api.models.create_export_manifest_request import CreateExportManifestRequest
|
|
25
|
+
from workato_platform_cli.client.workato_api.models.export_manifest_response import ExportManifestResponse
|
|
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.ExportApi(api_client)
|
|
49
|
+
create_export_manifest_request = workato_platform_cli.client.workato_api.CreateExportManifestRequest() # CreateExportManifestRequest |
|
|
50
|
+
|
|
51
|
+
try:
|
|
52
|
+
# Create an export manifest
|
|
53
|
+
api_response = await api_instance.create_export_manifest(create_export_manifest_request)
|
|
54
|
+
print("The response of ExportApi->create_export_manifest:\n")
|
|
55
|
+
pprint(api_response)
|
|
56
|
+
except Exception as e:
|
|
57
|
+
print("Exception when calling ExportApi->create_export_manifest: %s\n" % e)
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
### Parameters
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
Name | Type | Description | Notes
|
|
66
|
+
------------- | ------------- | ------------- | -------------
|
|
67
|
+
**create_export_manifest_request** | [**CreateExportManifestRequest**](CreateExportManifestRequest.md)| |
|
|
68
|
+
|
|
69
|
+
### Return type
|
|
70
|
+
|
|
71
|
+
[**ExportManifestResponse**](ExportManifestResponse.md)
|
|
72
|
+
|
|
73
|
+
### Authorization
|
|
74
|
+
|
|
75
|
+
[BearerAuth](../README.md#BearerAuth)
|
|
76
|
+
|
|
77
|
+
### HTTP request headers
|
|
78
|
+
|
|
79
|
+
- **Content-Type**: application/json
|
|
80
|
+
- **Accept**: application/json
|
|
81
|
+
|
|
82
|
+
### HTTP response details
|
|
83
|
+
|
|
84
|
+
| Status code | Description | Response headers |
|
|
85
|
+
|-------------|-------------|------------------|
|
|
86
|
+
**201** | Export manifest created successfully | - |
|
|
87
|
+
**400** | Bad request | - |
|
|
88
|
+
**401** | Authentication required | - |
|
|
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_assets_in_folder**
|
|
93
|
+
> FolderAssetsResponse list_assets_in_folder(folder_id=folder_id, include_test_cases=include_test_cases, include_data=include_data)
|
|
94
|
+
|
|
95
|
+
View assets in a folder
|
|
96
|
+
|
|
97
|
+
View assets in a folder. Useful for creating or updating export manifests.
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
### Example
|
|
101
|
+
|
|
102
|
+
* Bearer Authentication (BearerAuth):
|
|
103
|
+
|
|
104
|
+
```python
|
|
105
|
+
import workato_platform_cli.client.workato_api
|
|
106
|
+
from workato_platform_cli.client.workato_api.models.folder_assets_response import FolderAssetsResponse
|
|
107
|
+
from workato_platform_cli.client.workato_api.rest import ApiException
|
|
108
|
+
from pprint import pprint
|
|
109
|
+
|
|
110
|
+
# Defining the host is optional and defaults to https://www.workato.com
|
|
111
|
+
# See configuration.py for a list of all supported configuration parameters.
|
|
112
|
+
configuration = workato_platform_cli.client.workato_api.Configuration(
|
|
113
|
+
host = "https://www.workato.com"
|
|
114
|
+
)
|
|
115
|
+
|
|
116
|
+
# The client must configure the authentication and authorization parameters
|
|
117
|
+
# in accordance with the API server security policy.
|
|
118
|
+
# Examples for each auth method are provided below, use the example that
|
|
119
|
+
# satisfies your auth use case.
|
|
120
|
+
|
|
121
|
+
# Configure Bearer authorization: BearerAuth
|
|
122
|
+
configuration = workato_platform_cli.client.workato_api.Configuration(
|
|
123
|
+
access_token = os.environ["BEARER_TOKEN"]
|
|
124
|
+
)
|
|
125
|
+
|
|
126
|
+
# Enter a context with an instance of the API client
|
|
127
|
+
async with workato_platform_cli.client.workato_api.ApiClient(configuration) as api_client:
|
|
128
|
+
# Create an instance of the API class
|
|
129
|
+
api_instance = workato_platform_cli.client.workato_api.ExportApi(api_client)
|
|
130
|
+
folder_id = 56 # int | The ID of the folder containing the assets (optional)
|
|
131
|
+
include_test_cases = False # bool | Include test cases (currently not supported) (optional) (default to False)
|
|
132
|
+
include_data = False # bool | Include data from the list of assets (optional) (default to False)
|
|
133
|
+
|
|
134
|
+
try:
|
|
135
|
+
# View assets in a folder
|
|
136
|
+
api_response = await api_instance.list_assets_in_folder(folder_id=folder_id, include_test_cases=include_test_cases, include_data=include_data)
|
|
137
|
+
print("The response of ExportApi->list_assets_in_folder:\n")
|
|
138
|
+
pprint(api_response)
|
|
139
|
+
except Exception as e:
|
|
140
|
+
print("Exception when calling ExportApi->list_assets_in_folder: %s\n" % e)
|
|
141
|
+
```
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
### Parameters
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
Name | Type | Description | Notes
|
|
149
|
+
------------- | ------------- | ------------- | -------------
|
|
150
|
+
**folder_id** | **int**| The ID of the folder containing the assets | [optional]
|
|
151
|
+
**include_test_cases** | **bool**| Include test cases (currently not supported) | [optional] [default to False]
|
|
152
|
+
**include_data** | **bool**| Include data from the list of assets | [optional] [default to False]
|
|
153
|
+
|
|
154
|
+
### Return type
|
|
155
|
+
|
|
156
|
+
[**FolderAssetsResponse**](FolderAssetsResponse.md)
|
|
157
|
+
|
|
158
|
+
### Authorization
|
|
159
|
+
|
|
160
|
+
[BearerAuth](../README.md#BearerAuth)
|
|
161
|
+
|
|
162
|
+
### HTTP request headers
|
|
163
|
+
|
|
164
|
+
- **Content-Type**: Not defined
|
|
165
|
+
- **Accept**: application/json
|
|
166
|
+
|
|
167
|
+
### HTTP response details
|
|
168
|
+
|
|
169
|
+
| Status code | Description | Response headers |
|
|
170
|
+
|-------------|-------------|------------------|
|
|
171
|
+
**200** | Folder assets retrieved successfully | - |
|
|
172
|
+
**401** | Authentication required | - |
|
|
173
|
+
|
|
174
|
+
[[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)
|
|
175
|
+
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# ExportManifestRequest
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**name** | **str** | Name of the new manifest |
|
|
9
|
+
**assets** | [**List[AssetReference]**](AssetReference.md) | Dependent assets to include in the manifest | [optional]
|
|
10
|
+
**folder_id** | **int** | The ID of the folder containing the assets | [optional]
|
|
11
|
+
**include_test_cases** | **bool** | Whether the manifest includes test cases | [optional] [default to False]
|
|
12
|
+
**auto_generate_assets** | **bool** | Auto-generates assets from a folder | [optional] [default to False]
|
|
13
|
+
**include_data** | **bool** | Include data from automatic asset generation | [optional] [default to False]
|
|
14
|
+
**include_tags** | **bool** | Include tags assigned to assets in the export manifest | [optional] [default to False]
|
|
15
|
+
|
|
16
|
+
## Example
|
|
17
|
+
|
|
18
|
+
```python
|
|
19
|
+
from workato_platform_cli.client.workato_api.models.export_manifest_request import ExportManifestRequest
|
|
20
|
+
|
|
21
|
+
# TODO update the JSON string below
|
|
22
|
+
json = "{}"
|
|
23
|
+
# create an instance of ExportManifestRequest from a JSON string
|
|
24
|
+
export_manifest_request_instance = ExportManifestRequest.from_json(json)
|
|
25
|
+
# print the JSON string representation of the object
|
|
26
|
+
print(ExportManifestRequest.to_json())
|
|
27
|
+
|
|
28
|
+
# convert the object into a dict
|
|
29
|
+
export_manifest_request_dict = export_manifest_request_instance.to_dict()
|
|
30
|
+
# create an instance of ExportManifestRequest from a dict
|
|
31
|
+
export_manifest_request_from_dict = ExportManifestRequest.from_dict(export_manifest_request_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
|
+
# ExportManifestResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**result** | [**ExportManifestResponseResult**](ExportManifestResponseResult.md) | |
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```python
|
|
13
|
+
from workato_platform_cli.client.workato_api.models.export_manifest_response import ExportManifestResponse
|
|
14
|
+
|
|
15
|
+
# TODO update the JSON string below
|
|
16
|
+
json = "{}"
|
|
17
|
+
# create an instance of ExportManifestResponse from a JSON string
|
|
18
|
+
export_manifest_response_instance = ExportManifestResponse.from_json(json)
|
|
19
|
+
# print the JSON string representation of the object
|
|
20
|
+
print(ExportManifestResponse.to_json())
|
|
21
|
+
|
|
22
|
+
# convert the object into a dict
|
|
23
|
+
export_manifest_response_dict = export_manifest_response_instance.to_dict()
|
|
24
|
+
# create an instance of ExportManifestResponse from a dict
|
|
25
|
+
export_manifest_response_from_dict = ExportManifestResponse.from_dict(export_manifest_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,36 @@
|
|
|
1
|
+
# ExportManifestResponseResult
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **int** | |
|
|
9
|
+
**name** | **str** | |
|
|
10
|
+
**last_exported_at** | **datetime** | |
|
|
11
|
+
**created_at** | **datetime** | |
|
|
12
|
+
**updated_at** | **datetime** | |
|
|
13
|
+
**deleted_at** | **datetime** | |
|
|
14
|
+
**project_path** | **str** | |
|
|
15
|
+
**status** | **str** | |
|
|
16
|
+
|
|
17
|
+
## Example
|
|
18
|
+
|
|
19
|
+
```python
|
|
20
|
+
from workato_platform_cli.client.workato_api.models.export_manifest_response_result import ExportManifestResponseResult
|
|
21
|
+
|
|
22
|
+
# TODO update the JSON string below
|
|
23
|
+
json = "{}"
|
|
24
|
+
# create an instance of ExportManifestResponseResult from a JSON string
|
|
25
|
+
export_manifest_response_result_instance = ExportManifestResponseResult.from_json(json)
|
|
26
|
+
# print the JSON string representation of the object
|
|
27
|
+
print(ExportManifestResponseResult.to_json())
|
|
28
|
+
|
|
29
|
+
# convert the object into a dict
|
|
30
|
+
export_manifest_response_result_dict = export_manifest_response_result_instance.to_dict()
|
|
31
|
+
# create an instance of ExportManifestResponseResult from a dict
|
|
32
|
+
export_manifest_response_result_from_dict = ExportManifestResponseResult.from_dict(export_manifest_response_result_dict)
|
|
33
|
+
```
|
|
34
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
35
|
+
|
|
36
|
+
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Folder
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **int** | |
|
|
9
|
+
**name** | **str** | |
|
|
10
|
+
**parent_id** | **int** | |
|
|
11
|
+
**is_project** | **bool** | |
|
|
12
|
+
**project_id** | **int** | |
|
|
13
|
+
**created_at** | **datetime** | |
|
|
14
|
+
**updated_at** | **datetime** | |
|
|
15
|
+
|
|
16
|
+
## Example
|
|
17
|
+
|
|
18
|
+
```python
|
|
19
|
+
from workato_platform_cli.client.workato_api.models.folder import Folder
|
|
20
|
+
|
|
21
|
+
# TODO update the JSON string below
|
|
22
|
+
json = "{}"
|
|
23
|
+
# create an instance of Folder from a JSON string
|
|
24
|
+
folder_instance = Folder.from_json(json)
|
|
25
|
+
# print the JSON string representation of the object
|
|
26
|
+
print(Folder.to_json())
|
|
27
|
+
|
|
28
|
+
# convert the object into a dict
|
|
29
|
+
folder_dict = folder_instance.to_dict()
|
|
30
|
+
# create an instance of Folder from a dict
|
|
31
|
+
folder_from_dict = Folder.from_dict(folder_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
|
+
# FolderAssetsResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**result** | [**FolderAssetsResponseResult**](FolderAssetsResponseResult.md) | |
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```python
|
|
13
|
+
from workato_platform_cli.client.workato_api.models.folder_assets_response import FolderAssetsResponse
|
|
14
|
+
|
|
15
|
+
# TODO update the JSON string below
|
|
16
|
+
json = "{}"
|
|
17
|
+
# create an instance of FolderAssetsResponse from a JSON string
|
|
18
|
+
folder_assets_response_instance = FolderAssetsResponse.from_json(json)
|
|
19
|
+
# print the JSON string representation of the object
|
|
20
|
+
print(FolderAssetsResponse.to_json())
|
|
21
|
+
|
|
22
|
+
# convert the object into a dict
|
|
23
|
+
folder_assets_response_dict = folder_assets_response_instance.to_dict()
|
|
24
|
+
# create an instance of FolderAssetsResponse from a dict
|
|
25
|
+
folder_assets_response_from_dict = FolderAssetsResponse.from_dict(folder_assets_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
|
+
# FolderAssetsResponseResult
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**assets** | [**List[Asset]**](Asset.md) | |
|
|
9
|
+
|
|
10
|
+
## Example
|
|
11
|
+
|
|
12
|
+
```python
|
|
13
|
+
from workato_platform_cli.client.workato_api.models.folder_assets_response_result import FolderAssetsResponseResult
|
|
14
|
+
|
|
15
|
+
# TODO update the JSON string below
|
|
16
|
+
json = "{}"
|
|
17
|
+
# create an instance of FolderAssetsResponseResult from a JSON string
|
|
18
|
+
folder_assets_response_result_instance = FolderAssetsResponseResult.from_json(json)
|
|
19
|
+
# print the JSON string representation of the object
|
|
20
|
+
print(FolderAssetsResponseResult.to_json())
|
|
21
|
+
|
|
22
|
+
# convert the object into a dict
|
|
23
|
+
folder_assets_response_result_dict = folder_assets_response_result_instance.to_dict()
|
|
24
|
+
# create an instance of FolderAssetsResponseResult from a dict
|
|
25
|
+
folder_assets_response_result_from_dict = FolderAssetsResponseResult.from_dict(folder_assets_response_result_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,35 @@
|
|
|
1
|
+
# FolderCreationResponse
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **int** | |
|
|
9
|
+
**name** | **str** | |
|
|
10
|
+
**parent_id** | **int** | |
|
|
11
|
+
**created_at** | **datetime** | |
|
|
12
|
+
**updated_at** | **datetime** | |
|
|
13
|
+
**project_id** | **int** | |
|
|
14
|
+
**is_project** | **bool** | |
|
|
15
|
+
|
|
16
|
+
## Example
|
|
17
|
+
|
|
18
|
+
```python
|
|
19
|
+
from workato_platform_cli.client.workato_api.models.folder_creation_response import FolderCreationResponse
|
|
20
|
+
|
|
21
|
+
# TODO update the JSON string below
|
|
22
|
+
json = "{}"
|
|
23
|
+
# create an instance of FolderCreationResponse from a JSON string
|
|
24
|
+
folder_creation_response_instance = FolderCreationResponse.from_json(json)
|
|
25
|
+
# print the JSON string representation of the object
|
|
26
|
+
print(FolderCreationResponse.to_json())
|
|
27
|
+
|
|
28
|
+
# convert the object into a dict
|
|
29
|
+
folder_creation_response_dict = folder_creation_response_instance.to_dict()
|
|
30
|
+
# create an instance of FolderCreationResponse from a dict
|
|
31
|
+
folder_creation_response_from_dict = FolderCreationResponse.from_dict(folder_creation_response_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
|
+
|