diff --git a/.apigentools-info b/.apigentools-info index 4c45899d..d87ff6cf 100644 --- a/.apigentools-info +++ b/.apigentools-info @@ -4,7 +4,7 @@ "spec_versions": { "v1": { "apigentools_version": "1.6.6", - "regenerated": "2023-12-30 12:32:29.313885", + "regenerated": "2024-01-03 17:20:51.668010", "spec_repo_commit": null } } diff --git a/.openapi-generator/FILES b/.openapi-generator/FILES index b47f5baa..0d3eb959 100644 --- a/.openapi-generator/FILES +++ b/.openapi-generator/FILES @@ -89,6 +89,7 @@ docs/DependencyKind.md docs/DeploymentConfig.md docs/DockerConfig.md docs/FileMeta.md +docs/FileMetaList.md docs/FileReference.md docs/FolderReference.md docs/Function.md @@ -388,6 +389,7 @@ pollination_sdk/models/dependency_kind.py pollination_sdk/models/deployment_config.py pollination_sdk/models/docker_config.py pollination_sdk/models/file_meta.py +pollination_sdk/models/file_meta_list.py pollination_sdk/models/file_reference.py pollination_sdk/models/folder_reference.py pollination_sdk/models/function.py @@ -660,6 +662,7 @@ test/test_dependency_kind.py test/test_deployment_config.py test/test_docker_config.py test/test_file_meta.py +test/test_file_meta_list.py test/test_file_reference.py test/test_folder_reference.py test/test_function.py diff --git a/README.md b/README.md index a3d39ead..056363cf 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Pollination Server OpenAPI Definition This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: 0.47.0 +- API version: 1.0.0 - Package version: 1.0.0 - Build package: org.openapitools.codegen.languages.PythonClientCodegen For more information, please visit [https://pollination.cloud](https://pollination.cloud) @@ -285,6 +285,7 @@ Class | Method | HTTP request | Description - [DeploymentConfig](https://github.com/pollination/python-sdk/blob/master/docs/DeploymentConfig.md) - [DockerConfig](https://github.com/pollination/python-sdk/blob/master/docs/DockerConfig.md) - [FileMeta](https://github.com/pollination/python-sdk/blob/master/docs/FileMeta.md) + - [FileMetaList](https://github.com/pollination/python-sdk/blob/master/docs/FileMetaList.md) - [FileReference](https://github.com/pollination/python-sdk/blob/master/docs/FileReference.md) - [FolderReference](https://github.com/pollination/python-sdk/blob/master/docs/FolderReference.md) - [Function](https://github.com/pollination/python-sdk/blob/master/docs/Function.md) diff --git a/docs/ArtifactsApi.md b/docs/ArtifactsApi.md index 4aa79601..b7a0893a 100644 --- a/docs/ArtifactsApi.md +++ b/docs/ArtifactsApi.md @@ -421,7 +421,7 @@ Name | Type | Description | Notes [[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) # **list_artifacts** -> list[FileMeta] list_artifacts(owner, name, path=path, page=page, per_page=per_page) +> FileMetaList list_artifacts(owner, name, path=path, page=page, per_page=per_page) List artifacts in a project folder @@ -541,7 +541,7 @@ Name | Type | Description | Notes ### Return type -[**list[FileMeta]**](FileMeta.md) +[**FileMetaList**](FileMetaList.md) ### Authorization diff --git a/docs/FileMetaList.md b/docs/FileMetaList.md new file mode 100644 index 00000000..d41b3e99 --- /dev/null +++ b/docs/FileMetaList.md @@ -0,0 +1,16 @@ +# FileMetaList + +A list response from a pagination request +## Properties +Name | Type | Description | Notes +------------ | ------------- | ------------- | ------------- +**next_page** | **int** | The next page, if this on is not the last | [optional] +**page** | **int** | The current page the pagination request is on | +**page_count** | **int** | The total number of pages | +**per_page** | **int** | The number of pages per pagination request | +**resources** | [**list[FileMeta]**](FileMeta.md) | | +**total_count** | **int** | The total number of resources matching the list request | + +[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) + + diff --git a/docs/JobsApi.md b/docs/JobsApi.md index fa29cbbb..ca6d5e06 100644 --- a/docs/JobsApi.md +++ b/docs/JobsApi.md @@ -998,7 +998,7 @@ Name | Type | Description | Notes [[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) # **search_job_folder** -> list[FileMeta] search_job_folder(owner, name, job_id, path=path, page=page, per_page=per_page) +> object search_job_folder(owner, name, job_id, path=path, page=page, per_page=per_page) List files/folders in a job folder @@ -1123,7 +1123,7 @@ Name | Type | Description | Notes ### Return type -[**list[FileMeta]**](FileMeta.md) +**object** ### Authorization diff --git a/docs/RunsApi.md b/docs/RunsApi.md index 929f54ac..c5a022b9 100644 --- a/docs/RunsApi.md +++ b/docs/RunsApi.md @@ -1005,7 +1005,7 @@ Name | Type | Description | Notes [[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) # **list_run_artifacts** -> list[FileMeta] list_run_artifacts(owner, name, run_id, path=path, page=page, per_page=per_page) +> object list_run_artifacts(owner, name, run_id, path=path, page=page, per_page=per_page) List artifacts in a run folder @@ -1130,7 +1130,7 @@ Name | Type | Description | Notes ### Return type -[**list[FileMeta]**](FileMeta.md) +**object** ### Authorization diff --git a/pollination_sdk/__init__.py b/pollination_sdk/__init__.py index 93539226..7c8d2af2 100644 --- a/pollination_sdk/__init__.py +++ b/pollination_sdk/__init__.py @@ -7,7 +7,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -15,7 +15,7 @@ from __future__ import absolute_import -__version__ = "0.47.0" +__version__ = "1.0.0" # import apis into sdk package from pollination_sdk.api.api_tokens_api import APITokensApi @@ -128,6 +128,7 @@ from pollination_sdk.models.deployment_config import DeploymentConfig from pollination_sdk.models.docker_config import DockerConfig from pollination_sdk.models.file_meta import FileMeta +from pollination_sdk.models.file_meta_list import FileMetaList from pollination_sdk.models.file_reference import FileReference from pollination_sdk.models.folder_reference import FolderReference from pollination_sdk.models.function import Function diff --git a/pollination_sdk/api/accounts_api.py b/pollination_sdk/api/accounts_api.py index a310a9a7..b507ab36 100644 --- a/pollination_sdk/api/accounts_api.py +++ b/pollination_sdk/api/accounts_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/api_tokens_api.py b/pollination_sdk/api/api_tokens_api.py index 546b3574..25674454 100644 --- a/pollination_sdk/api/api_tokens_api.py +++ b/pollination_sdk/api/api_tokens_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/applications_api.py b/pollination_sdk/api/applications_api.py index a12b0755..8a2991b4 100644 --- a/pollination_sdk/api/applications_api.py +++ b/pollination_sdk/api/applications_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/artifacts_api.py b/pollination_sdk/api/artifacts_api.py index 0868c544..fcfac1f8 100644 --- a/pollination_sdk/api/artifacts_api.py +++ b/pollination_sdk/api/artifacts_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -537,7 +537,7 @@ def list_artifacts(self, owner, name, **kwargs): # noqa: E501 :return: Returns the result object. If the method is called asynchronously, returns the request thread. - :rtype: list[FileMeta] + :rtype: FileMetaList """ kwargs['_return_http_data_only'] = True return self.list_artifacts_with_http_info(owner, name, **kwargs) # noqa: E501 @@ -581,7 +581,7 @@ def list_artifacts_with_http_info(self, owner, name, **kwargs): # noqa: E501 :return: Returns the result object. If the method is called asynchronously, returns the request thread. - :rtype: tuple(list[FileMeta], status_code(int), headers(HTTPHeaderDict)) + :rtype: tuple(FileMetaList, status_code(int), headers(HTTPHeaderDict)) """ local_var_params = locals() @@ -662,7 +662,7 @@ def list_artifacts_with_http_info(self, owner, name, **kwargs): # noqa: E501 body=body_params, post_params=form_params, files=local_var_files, - response_type='list[FileMeta]', # noqa: E501 + response_type='FileMetaList', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 diff --git a/pollination_sdk/api/jobs_api.py b/pollination_sdk/api/jobs_api.py index 145c192c..ba024125 100644 --- a/pollination_sdk/api/jobs_api.py +++ b/pollination_sdk/api/jobs_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -1219,7 +1219,7 @@ def search_job_folder(self, owner, name, job_id, **kwargs): # noqa: E501 :return: Returns the result object. If the method is called asynchronously, returns the request thread. - :rtype: list[FileMeta] + :rtype: object """ kwargs['_return_http_data_only'] = True return self.search_job_folder_with_http_info(owner, name, job_id, **kwargs) # noqa: E501 @@ -1266,7 +1266,7 @@ def search_job_folder_with_http_info(self, owner, name, job_id, **kwargs): # no :return: Returns the result object. If the method is called asynchronously, returns the request thread. - :rtype: tuple(list[FileMeta], status_code(int), headers(HTTPHeaderDict)) + :rtype: tuple(object, status_code(int), headers(HTTPHeaderDict)) """ local_var_params = locals() @@ -1354,7 +1354,7 @@ def search_job_folder_with_http_info(self, owner, name, job_id, **kwargs): # no body=body_params, post_params=form_params, files=local_var_files, - response_type='list[FileMeta]', # noqa: E501 + response_type='object', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 diff --git a/pollination_sdk/api/licenses_api.py b/pollination_sdk/api/licenses_api.py index 7d0d1091..f5cbbcbb 100644 --- a/pollination_sdk/api/licenses_api.py +++ b/pollination_sdk/api/licenses_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/orgs_api.py b/pollination_sdk/api/orgs_api.py index df534ca2..fd280c1e 100644 --- a/pollination_sdk/api/orgs_api.py +++ b/pollination_sdk/api/orgs_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/plugins_api.py b/pollination_sdk/api/plugins_api.py index a8ab04b1..770e0285 100644 --- a/pollination_sdk/api/plugins_api.py +++ b/pollination_sdk/api/plugins_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/projects_api.py b/pollination_sdk/api/projects_api.py index 4525067f..2358ed13 100644 --- a/pollination_sdk/api/projects_api.py +++ b/pollination_sdk/api/projects_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/recipes_api.py b/pollination_sdk/api/recipes_api.py index 2e854096..7a2d6789 100644 --- a/pollination_sdk/api/recipes_api.py +++ b/pollination_sdk/api/recipes_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/registries_api.py b/pollination_sdk/api/registries_api.py index 19bab512..110197e5 100644 --- a/pollination_sdk/api/registries_api.py +++ b/pollination_sdk/api/registries_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/runs_api.py b/pollination_sdk/api/runs_api.py index 42409d3a..09f4a1cc 100644 --- a/pollination_sdk/api/runs_api.py +++ b/pollination_sdk/api/runs_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -1219,7 +1219,7 @@ def list_run_artifacts(self, owner, name, run_id, **kwargs): # noqa: E501 :return: Returns the result object. If the method is called asynchronously, returns the request thread. - :rtype: list[FileMeta] + :rtype: object """ kwargs['_return_http_data_only'] = True return self.list_run_artifacts_with_http_info(owner, name, run_id, **kwargs) # noqa: E501 @@ -1266,7 +1266,7 @@ def list_run_artifacts_with_http_info(self, owner, name, run_id, **kwargs): # n :return: Returns the result object. If the method is called asynchronously, returns the request thread. - :rtype: tuple(list[FileMeta], status_code(int), headers(HTTPHeaderDict)) + :rtype: tuple(object, status_code(int), headers(HTTPHeaderDict)) """ local_var_params = locals() @@ -1354,7 +1354,7 @@ def list_run_artifacts_with_http_info(self, owner, name, run_id, **kwargs): # n body=body_params, post_params=form_params, files=local_var_files, - response_type='list[FileMeta]', # noqa: E501 + response_type='object', # noqa: E501 auth_settings=auth_settings, async_req=local_var_params.get('async_req'), _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501 diff --git a/pollination_sdk/api/subscription_plans_api.py b/pollination_sdk/api/subscription_plans_api.py index fc1dc4f9..e48c9d5b 100644 --- a/pollination_sdk/api/subscription_plans_api.py +++ b/pollination_sdk/api/subscription_plans_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/subscriptions_api.py b/pollination_sdk/api/subscriptions_api.py index f410048a..00cd1e16 100644 --- a/pollination_sdk/api/subscriptions_api.py +++ b/pollination_sdk/api/subscriptions_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/teams_api.py b/pollination_sdk/api/teams_api.py index 2a699197..299a1617 100644 --- a/pollination_sdk/api/teams_api.py +++ b/pollination_sdk/api/teams_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/user_api.py b/pollination_sdk/api/user_api.py index 3292bc03..182fd29a 100644 --- a/pollination_sdk/api/user_api.py +++ b/pollination_sdk/api/user_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api/users_api.py b/pollination_sdk/api/users_api.py index 85257cbb..49333e97 100644 --- a/pollination_sdk/api/users_api.py +++ b/pollination_sdk/api/users_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/api_client.py b/pollination_sdk/api_client.py index d6112054..e83c5f41 100644 --- a/pollination_sdk/api_client.py +++ b/pollination_sdk/api_client.py @@ -4,7 +4,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -79,7 +79,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None, self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'pollination/0.47.0/python' + self.user_agent = 'pollination/1.0.0/python' self.client_side_validation = configuration.client_side_validation def __enter__(self): diff --git a/pollination_sdk/configuration.py b/pollination_sdk/configuration.py index a00c9a77..81c4d51e 100644 --- a/pollination_sdk/configuration.py +++ b/pollination_sdk/configuration.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -411,7 +411,7 @@ def to_debug_report(self): return "Python SDK Debug Report:\n"\ "OS: {env}\n"\ "Python Version: {pyversion}\n"\ - "Version of the API: 0.47.0\n"\ + "Version of the API: 1.0.0\n"\ "SDK Package Version: 1.0.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/pollination_sdk/exceptions.py b/pollination_sdk/exceptions.py index 7e9fd5e3..d6ccefa2 100644 --- a/pollination_sdk/exceptions.py +++ b/pollination_sdk/exceptions.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/__init__.py b/pollination_sdk/models/__init__.py index 873ee8ff..921dfc5e 100644 --- a/pollination_sdk/models/__init__.py +++ b/pollination_sdk/models/__init__.py @@ -6,7 +6,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -97,6 +97,7 @@ from pollination_sdk.models.deployment_config import DeploymentConfig from pollination_sdk.models.docker_config import DockerConfig from pollination_sdk.models.file_meta import FileMeta +from pollination_sdk.models.file_meta_list import FileMetaList from pollination_sdk.models.file_reference import FileReference from pollination_sdk.models.folder_reference import FolderReference from pollination_sdk.models.function import Function diff --git a/pollination_sdk/models/accessor.py b/pollination_sdk/models/accessor.py index 81b6233e..3b482074 100644 --- a/pollination_sdk/models/accessor.py +++ b/pollination_sdk/models/accessor.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/account_public.py b/pollination_sdk/models/account_public.py index 6d6f1b14..1dc873a8 100644 --- a/pollination_sdk/models/account_public.py +++ b/pollination_sdk/models/account_public.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/account_type.py b/pollination_sdk/models/account_type.py index 441f06de..6ce6edea 100644 --- a/pollination_sdk/models/account_type.py +++ b/pollination_sdk/models/account_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/activation.py b/pollination_sdk/models/activation.py index 97ad7541..eed10312 100644 --- a/pollination_sdk/models/activation.py +++ b/pollination_sdk/models/activation.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/activation_list.py b/pollination_sdk/models/activation_list.py index 0b46dd51..423c1652 100644 --- a/pollination_sdk/models/activation_list.py +++ b/pollination_sdk/models/activation_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/api_token.py b/pollination_sdk/models/api_token.py index 6233ff40..7be73f6d 100644 --- a/pollination_sdk/models/api_token.py +++ b/pollination_sdk/models/api_token.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/api_token_create.py b/pollination_sdk/models/api_token_create.py index c4fa562a..21868103 100644 --- a/pollination_sdk/models/api_token_create.py +++ b/pollination_sdk/models/api_token_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/api_token_list.py b/pollination_sdk/models/api_token_list.py index 06e4e58b..fb03080f 100644 --- a/pollination_sdk/models/api_token_list.py +++ b/pollination_sdk/models/api_token_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/api_token_private.py b/pollination_sdk/models/api_token_private.py index c8c3390b..e50315f1 100644 --- a/pollination_sdk/models/api_token_private.py +++ b/pollination_sdk/models/api_token_private.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application.py b/pollination_sdk/models/application.py index 7ddb5ea9..56074add 100644 --- a/pollination_sdk/models/application.py +++ b/pollination_sdk/models/application.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application_access_policy.py b/pollination_sdk/models/application_access_policy.py index 9ca43a9a..bf1f859a 100644 --- a/pollination_sdk/models/application_access_policy.py +++ b/pollination_sdk/models/application_access_policy.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application_access_policy_list.py b/pollination_sdk/models/application_access_policy_list.py index f27b8fea..94d2d475 100644 --- a/pollination_sdk/models/application_access_policy_list.py +++ b/pollination_sdk/models/application_access_policy_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application_create.py b/pollination_sdk/models/application_create.py index 00dd3b4a..2ea06a95 100644 --- a/pollination_sdk/models/application_create.py +++ b/pollination_sdk/models/application_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application_deployment.py b/pollination_sdk/models/application_deployment.py index 7f1486dd..8bef7e51 100644 --- a/pollination_sdk/models/application_deployment.py +++ b/pollination_sdk/models/application_deployment.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application_list.py b/pollination_sdk/models/application_list.py index a0776df9..1e9141c3 100644 --- a/pollination_sdk/models/application_list.py +++ b/pollination_sdk/models/application_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application_policy_subject.py b/pollination_sdk/models/application_policy_subject.py index a2b205f6..0e684f73 100644 --- a/pollination_sdk/models/application_policy_subject.py +++ b/pollination_sdk/models/application_policy_subject.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application_sort_key.py b/pollination_sdk/models/application_sort_key.py index c9661e2b..cc7479a8 100644 --- a/pollination_sdk/models/application_sort_key.py +++ b/pollination_sdk/models/application_sort_key.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application_update.py b/pollination_sdk/models/application_update.py index d4b84f82..b8eba38b 100644 --- a/pollination_sdk/models/application_update.py +++ b/pollination_sdk/models/application_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application_version.py b/pollination_sdk/models/application_version.py index 19eccae3..98b95ad3 100644 --- a/pollination_sdk/models/application_version.py +++ b/pollination_sdk/models/application_version.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/application_version_list.py b/pollination_sdk/models/application_version_list.py index 74147d05..db6d46e2 100644 --- a/pollination_sdk/models/application_version_list.py +++ b/pollination_sdk/models/application_version_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/baked_recipe.py b/pollination_sdk/models/baked_recipe.py index efeb0dbc..41bc3ff7 100644 --- a/pollination_sdk/models/baked_recipe.py +++ b/pollination_sdk/models/baked_recipe.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/billing_info.py b/pollination_sdk/models/billing_info.py index ddf19e98..7867fec1 100644 --- a/pollination_sdk/models/billing_info.py +++ b/pollination_sdk/models/billing_info.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/billing_option.py b/pollination_sdk/models/billing_option.py index e582ff4b..8c6d4deb 100644 --- a/pollination_sdk/models/billing_option.py +++ b/pollination_sdk/models/billing_option.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/body_cython_function_or_method_owner_plugins_post.py b/pollination_sdk/models/body_cython_function_or_method_owner_plugins_post.py index a5435d10..60e9eaba 100644 --- a/pollination_sdk/models/body_cython_function_or_method_owner_plugins_post.py +++ b/pollination_sdk/models/body_cython_function_or_method_owner_plugins_post.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/body_post_recipe_owner_recipes_post.py b/pollination_sdk/models/body_post_recipe_owner_recipes_post.py index d63f8dc4..63cac4ed 100644 --- a/pollination_sdk/models/body_post_recipe_owner_recipes_post.py +++ b/pollination_sdk/models/body_post_recipe_owner_recipes_post.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/build_status.py b/pollination_sdk/models/build_status.py index 9d6706ee..5d3ad077 100644 --- a/pollination_sdk/models/build_status.py +++ b/pollination_sdk/models/build_status.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/build_status_enum.py b/pollination_sdk/models/build_status_enum.py index fdcd341a..26df94e4 100644 --- a/pollination_sdk/models/build_status_enum.py +++ b/pollination_sdk/models/build_status_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/card_type.py b/pollination_sdk/models/card_type.py index 3228f9ac..ed551b9a 100644 --- a/pollination_sdk/models/card_type.py +++ b/pollination_sdk/models/card_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/cloud_job.py b/pollination_sdk/models/cloud_job.py index 4fb28ff8..878f97aa 100644 --- a/pollination_sdk/models/cloud_job.py +++ b/pollination_sdk/models/cloud_job.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/cloud_job_list.py b/pollination_sdk/models/cloud_job_list.py index 2798db2b..95bf6e6f 100644 --- a/pollination_sdk/models/cloud_job_list.py +++ b/pollination_sdk/models/cloud_job_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/created_content.py b/pollination_sdk/models/created_content.py index 1816529d..82887861 100644 --- a/pollination_sdk/models/created_content.py +++ b/pollination_sdk/models/created_content.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag.py b/pollination_sdk/models/dag.py index cfa41c21..f8bc8f8e 100644 --- a/pollination_sdk/models/dag.py +++ b/pollination_sdk/models/dag.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_array_input.py b/pollination_sdk/models/dag_array_input.py index d922e854..ac0e1734 100644 --- a/pollination_sdk/models/dag_array_input.py +++ b/pollination_sdk/models/dag_array_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_array_input_alias.py b/pollination_sdk/models/dag_array_input_alias.py index b1e84cf7..21daf398 100644 --- a/pollination_sdk/models/dag_array_input_alias.py +++ b/pollination_sdk/models/dag_array_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_array_output.py b/pollination_sdk/models/dag_array_output.py index a678682f..35525d30 100644 --- a/pollination_sdk/models/dag_array_output.py +++ b/pollination_sdk/models/dag_array_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_array_output_alias.py b/pollination_sdk/models/dag_array_output_alias.py index d996bc85..54279731 100644 --- a/pollination_sdk/models/dag_array_output_alias.py +++ b/pollination_sdk/models/dag_array_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_boolean_input.py b/pollination_sdk/models/dag_boolean_input.py index d1e4b092..109dde0e 100644 --- a/pollination_sdk/models/dag_boolean_input.py +++ b/pollination_sdk/models/dag_boolean_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_boolean_input_alias.py b/pollination_sdk/models/dag_boolean_input_alias.py index e14986fb..55844aa9 100644 --- a/pollination_sdk/models/dag_boolean_input_alias.py +++ b/pollination_sdk/models/dag_boolean_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_boolean_output.py b/pollination_sdk/models/dag_boolean_output.py index ca309a02..1e0bab22 100644 --- a/pollination_sdk/models/dag_boolean_output.py +++ b/pollination_sdk/models/dag_boolean_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_boolean_output_alias.py b/pollination_sdk/models/dag_boolean_output_alias.py index 79f9e1f2..a1462fbf 100644 --- a/pollination_sdk/models/dag_boolean_output_alias.py +++ b/pollination_sdk/models/dag_boolean_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_file_input.py b/pollination_sdk/models/dag_file_input.py index 632f4569..62ad1a34 100644 --- a/pollination_sdk/models/dag_file_input.py +++ b/pollination_sdk/models/dag_file_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_file_input_alias.py b/pollination_sdk/models/dag_file_input_alias.py index 3870b932..868f01cc 100644 --- a/pollination_sdk/models/dag_file_input_alias.py +++ b/pollination_sdk/models/dag_file_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_file_output.py b/pollination_sdk/models/dag_file_output.py index 18085b68..a0ee6545 100644 --- a/pollination_sdk/models/dag_file_output.py +++ b/pollination_sdk/models/dag_file_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_file_output_alias.py b/pollination_sdk/models/dag_file_output_alias.py index 7d010d45..02f65ff6 100644 --- a/pollination_sdk/models/dag_file_output_alias.py +++ b/pollination_sdk/models/dag_file_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_folder_input.py b/pollination_sdk/models/dag_folder_input.py index f4cc7880..2b6bce95 100644 --- a/pollination_sdk/models/dag_folder_input.py +++ b/pollination_sdk/models/dag_folder_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_folder_input_alias.py b/pollination_sdk/models/dag_folder_input_alias.py index 340f3bf6..def8cf7a 100644 --- a/pollination_sdk/models/dag_folder_input_alias.py +++ b/pollination_sdk/models/dag_folder_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_folder_output.py b/pollination_sdk/models/dag_folder_output.py index bd8ea311..dbe25020 100644 --- a/pollination_sdk/models/dag_folder_output.py +++ b/pollination_sdk/models/dag_folder_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_folder_output_alias.py b/pollination_sdk/models/dag_folder_output_alias.py index 74f80d82..5d9eef54 100644 --- a/pollination_sdk/models/dag_folder_output_alias.py +++ b/pollination_sdk/models/dag_folder_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_generic_input.py b/pollination_sdk/models/dag_generic_input.py index 5b842ef1..fdecca11 100644 --- a/pollination_sdk/models/dag_generic_input.py +++ b/pollination_sdk/models/dag_generic_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_generic_input_alias.py b/pollination_sdk/models/dag_generic_input_alias.py index 92d71d1c..db514398 100644 --- a/pollination_sdk/models/dag_generic_input_alias.py +++ b/pollination_sdk/models/dag_generic_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_generic_output.py b/pollination_sdk/models/dag_generic_output.py index 3d7c7cd0..df4e6849 100644 --- a/pollination_sdk/models/dag_generic_output.py +++ b/pollination_sdk/models/dag_generic_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_generic_output_alias.py b/pollination_sdk/models/dag_generic_output_alias.py index 9b718966..4900a80c 100644 --- a/pollination_sdk/models/dag_generic_output_alias.py +++ b/pollination_sdk/models/dag_generic_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_integer_input.py b/pollination_sdk/models/dag_integer_input.py index 7712bce0..d6f43e49 100644 --- a/pollination_sdk/models/dag_integer_input.py +++ b/pollination_sdk/models/dag_integer_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_integer_input_alias.py b/pollination_sdk/models/dag_integer_input_alias.py index 08d69382..c42c6c77 100644 --- a/pollination_sdk/models/dag_integer_input_alias.py +++ b/pollination_sdk/models/dag_integer_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_integer_output.py b/pollination_sdk/models/dag_integer_output.py index a71e5232..1611db6c 100644 --- a/pollination_sdk/models/dag_integer_output.py +++ b/pollination_sdk/models/dag_integer_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_integer_output_alias.py b/pollination_sdk/models/dag_integer_output_alias.py index 99a146fd..d9ac88ca 100644 --- a/pollination_sdk/models/dag_integer_output_alias.py +++ b/pollination_sdk/models/dag_integer_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_linked_input_alias.py b/pollination_sdk/models/dag_linked_input_alias.py index 22304986..2d8effc1 100644 --- a/pollination_sdk/models/dag_linked_input_alias.py +++ b/pollination_sdk/models/dag_linked_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_linked_output_alias.py b/pollination_sdk/models/dag_linked_output_alias.py index bbfde3e3..502a008d 100644 --- a/pollination_sdk/models/dag_linked_output_alias.py +++ b/pollination_sdk/models/dag_linked_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_number_input.py b/pollination_sdk/models/dag_number_input.py index 4e469d99..f7fbfe8a 100644 --- a/pollination_sdk/models/dag_number_input.py +++ b/pollination_sdk/models/dag_number_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_number_input_alias.py b/pollination_sdk/models/dag_number_input_alias.py index 6e909017..87b9d240 100644 --- a/pollination_sdk/models/dag_number_input_alias.py +++ b/pollination_sdk/models/dag_number_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_number_output.py b/pollination_sdk/models/dag_number_output.py index c83c652d..c8f5a4ec 100644 --- a/pollination_sdk/models/dag_number_output.py +++ b/pollination_sdk/models/dag_number_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_number_output_alias.py b/pollination_sdk/models/dag_number_output_alias.py index de3d91c7..e2a3d5f8 100644 --- a/pollination_sdk/models/dag_number_output_alias.py +++ b/pollination_sdk/models/dag_number_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_path_input.py b/pollination_sdk/models/dag_path_input.py index 843151b6..86c531a7 100644 --- a/pollination_sdk/models/dag_path_input.py +++ b/pollination_sdk/models/dag_path_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_path_input_alias.py b/pollination_sdk/models/dag_path_input_alias.py index c27027ee..e15c3036 100644 --- a/pollination_sdk/models/dag_path_input_alias.py +++ b/pollination_sdk/models/dag_path_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_path_output.py b/pollination_sdk/models/dag_path_output.py index 82b9112a..5ac07fce 100644 --- a/pollination_sdk/models/dag_path_output.py +++ b/pollination_sdk/models/dag_path_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_path_output_alias.py b/pollination_sdk/models/dag_path_output_alias.py index 67be6c37..eeff6ce8 100644 --- a/pollination_sdk/models/dag_path_output_alias.py +++ b/pollination_sdk/models/dag_path_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_string_input.py b/pollination_sdk/models/dag_string_input.py index 37b4ce74..d6bddb68 100644 --- a/pollination_sdk/models/dag_string_input.py +++ b/pollination_sdk/models/dag_string_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_string_input_alias.py b/pollination_sdk/models/dag_string_input_alias.py index 5fa6e925..368a2577 100644 --- a/pollination_sdk/models/dag_string_input_alias.py +++ b/pollination_sdk/models/dag_string_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_string_output.py b/pollination_sdk/models/dag_string_output.py index aa14e5d1..f9982a4c 100644 --- a/pollination_sdk/models/dag_string_output.py +++ b/pollination_sdk/models/dag_string_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_string_output_alias.py b/pollination_sdk/models/dag_string_output_alias.py index 0fd08421..e07ab280 100644 --- a/pollination_sdk/models/dag_string_output_alias.py +++ b/pollination_sdk/models/dag_string_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_task.py b/pollination_sdk/models/dag_task.py index a56d4067..ee417cf8 100644 --- a/pollination_sdk/models/dag_task.py +++ b/pollination_sdk/models/dag_task.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dag_task_loop.py b/pollination_sdk/models/dag_task_loop.py index 1ca13750..a29347d8 100644 --- a/pollination_sdk/models/dag_task_loop.py +++ b/pollination_sdk/models/dag_task_loop.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dagjson_object_input.py b/pollination_sdk/models/dagjson_object_input.py index 083e36f5..e53e5232 100644 --- a/pollination_sdk/models/dagjson_object_input.py +++ b/pollination_sdk/models/dagjson_object_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dagjson_object_input_alias.py b/pollination_sdk/models/dagjson_object_input_alias.py index 3e6c0665..3a932c6c 100644 --- a/pollination_sdk/models/dagjson_object_input_alias.py +++ b/pollination_sdk/models/dagjson_object_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dagjson_object_output.py b/pollination_sdk/models/dagjson_object_output.py index 8957ecf2..4c4a0f0d 100644 --- a/pollination_sdk/models/dagjson_object_output.py +++ b/pollination_sdk/models/dagjson_object_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dagjson_object_output_alias.py b/pollination_sdk/models/dagjson_object_output_alias.py index e8bbf607..99ae418d 100644 --- a/pollination_sdk/models/dagjson_object_output_alias.py +++ b/pollination_sdk/models/dagjson_object_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/daily_usage.py b/pollination_sdk/models/daily_usage.py index 088996fc..1405a6cd 100644 --- a/pollination_sdk/models/daily_usage.py +++ b/pollination_sdk/models/daily_usage.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dependency.py b/pollination_sdk/models/dependency.py index e050796d..e8a53b2c 100644 --- a/pollination_sdk/models/dependency.py +++ b/pollination_sdk/models/dependency.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/dependency_kind.py b/pollination_sdk/models/dependency_kind.py index ded2f007..256ae024 100644 --- a/pollination_sdk/models/dependency_kind.py +++ b/pollination_sdk/models/dependency_kind.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/deployment_config.py b/pollination_sdk/models/deployment_config.py index 15410635..17e1409a 100644 --- a/pollination_sdk/models/deployment_config.py +++ b/pollination_sdk/models/deployment_config.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/docker_config.py b/pollination_sdk/models/docker_config.py index d0b6a084..3667ef01 100644 --- a/pollination_sdk/models/docker_config.py +++ b/pollination_sdk/models/docker_config.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/file_meta.py b/pollination_sdk/models/file_meta.py index 172d26b7..1f67387e 100644 --- a/pollination_sdk/models/file_meta.py +++ b/pollination_sdk/models/file_meta.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/file_meta_list.py b/pollination_sdk/models/file_meta_list.py new file mode 100644 index 00000000..3883fa78 --- /dev/null +++ b/pollination_sdk/models/file_meta_list.py @@ -0,0 +1,266 @@ +# coding: utf-8 + +""" + pollination-server + + Pollination Server OpenAPI Definition # noqa: E501 + + The version of the OpenAPI document: 1.0.0 + Contact: info@pollination.cloud + Generated by: https://openapi-generator.tech +""" + + +import pprint +import re # noqa: F401 + +import six + +from pollination_sdk.configuration import Configuration + + +class FileMetaList(object): + """NOTE: This class is auto generated by OpenAPI Generator. + Ref: https://openapi-generator.tech + + Do not edit the class manually. + """ + + """ + Attributes: + openapi_types (dict): The key is attribute name + and the value is attribute type. + attribute_map (dict): The key is attribute name + and the value is json key in definition. + """ + openapi_types = { + 'next_page': 'int', + 'page': 'int', + 'page_count': 'int', + 'per_page': 'int', + 'resources': 'list[FileMeta]', + 'total_count': 'int' + } + + attribute_map = { + 'next_page': 'next_page', + 'page': 'page', + 'page_count': 'page_count', + 'per_page': 'per_page', + 'resources': 'resources', + 'total_count': 'total_count' + } + + def __init__(self, next_page=None, page=None, page_count=None, per_page=None, resources=None, total_count=None, local_vars_configuration=None): # noqa: E501 + """FileMetaList - a model defined in OpenAPI""" # noqa: E501 + if local_vars_configuration is None: + local_vars_configuration = Configuration() + self.local_vars_configuration = local_vars_configuration + + self._next_page = None + self._page = None + self._page_count = None + self._per_page = None + self._resources = None + self._total_count = None + self.discriminator = None + + if next_page is not None: + self.next_page = next_page + self.page = page + self.page_count = page_count + self.per_page = per_page + self.resources = resources + self.total_count = total_count + + @property + def next_page(self): + """Gets the next_page of this FileMetaList. # noqa: E501 + + The next page, if this on is not the last # noqa: E501 + + :return: The next_page of this FileMetaList. # noqa: E501 + :rtype: int + """ + return self._next_page + + @next_page.setter + def next_page(self, next_page): + """Sets the next_page of this FileMetaList. + + The next page, if this on is not the last # noqa: E501 + + :param next_page: The next_page of this FileMetaList. # noqa: E501 + :type next_page: int + """ + + self._next_page = next_page + + @property + def page(self): + """Gets the page of this FileMetaList. # noqa: E501 + + The current page the pagination request is on # noqa: E501 + + :return: The page of this FileMetaList. # noqa: E501 + :rtype: int + """ + return self._page + + @page.setter + def page(self, page): + """Sets the page of this FileMetaList. + + The current page the pagination request is on # noqa: E501 + + :param page: The page of this FileMetaList. # noqa: E501 + :type page: int + """ + if self.local_vars_configuration.client_side_validation and page is None: # noqa: E501 + raise ValueError("Invalid value for `page`, must not be `None`") # noqa: E501 + + self._page = page + + @property + def page_count(self): + """Gets the page_count of this FileMetaList. # noqa: E501 + + The total number of pages # noqa: E501 + + :return: The page_count of this FileMetaList. # noqa: E501 + :rtype: int + """ + return self._page_count + + @page_count.setter + def page_count(self, page_count): + """Sets the page_count of this FileMetaList. + + The total number of pages # noqa: E501 + + :param page_count: The page_count of this FileMetaList. # noqa: E501 + :type page_count: int + """ + if self.local_vars_configuration.client_side_validation and page_count is None: # noqa: E501 + raise ValueError("Invalid value for `page_count`, must not be `None`") # noqa: E501 + + self._page_count = page_count + + @property + def per_page(self): + """Gets the per_page of this FileMetaList. # noqa: E501 + + The number of pages per pagination request # noqa: E501 + + :return: The per_page of this FileMetaList. # noqa: E501 + :rtype: int + """ + return self._per_page + + @per_page.setter + def per_page(self, per_page): + """Sets the per_page of this FileMetaList. + + The number of pages per pagination request # noqa: E501 + + :param per_page: The per_page of this FileMetaList. # noqa: E501 + :type per_page: int + """ + if self.local_vars_configuration.client_side_validation and per_page is None: # noqa: E501 + raise ValueError("Invalid value for `per_page`, must not be `None`") # noqa: E501 + + self._per_page = per_page + + @property + def resources(self): + """Gets the resources of this FileMetaList. # noqa: E501 + + + :return: The resources of this FileMetaList. # noqa: E501 + :rtype: list[FileMeta] + """ + return self._resources + + @resources.setter + def resources(self, resources): + """Sets the resources of this FileMetaList. + + + :param resources: The resources of this FileMetaList. # noqa: E501 + :type resources: list[FileMeta] + """ + if self.local_vars_configuration.client_side_validation and resources is None: # noqa: E501 + raise ValueError("Invalid value for `resources`, must not be `None`") # noqa: E501 + + self._resources = resources + + @property + def total_count(self): + """Gets the total_count of this FileMetaList. # noqa: E501 + + The total number of resources matching the list request # noqa: E501 + + :return: The total_count of this FileMetaList. # noqa: E501 + :rtype: int + """ + return self._total_count + + @total_count.setter + def total_count(self, total_count): + """Sets the total_count of this FileMetaList. + + The total number of resources matching the list request # noqa: E501 + + :param total_count: The total_count of this FileMetaList. # noqa: E501 + :type total_count: int + """ + if self.local_vars_configuration.client_side_validation and total_count is None: # noqa: E501 + raise ValueError("Invalid value for `total_count`, must not be `None`") # noqa: E501 + + self._total_count = total_count + + def to_dict(self): + """Returns the model properties as a dict""" + result = {} + + for attr, _ in six.iteritems(self.openapi_types): + value = getattr(self, attr) + if isinstance(value, list): + result[attr] = list(map( + lambda x: x.to_dict() if hasattr(x, "to_dict") else x, + value + )) + elif hasattr(value, "to_dict"): + result[attr] = value.to_dict() + elif isinstance(value, dict): + result[attr] = dict(map( + lambda item: (item[0], item[1].to_dict()) + if hasattr(item[1], "to_dict") else item, + value.items() + )) + else: + result[attr] = value + + return result + + def to_str(self): + """Returns the string representation of the model""" + return pprint.pformat(self.to_dict()) + + def __repr__(self): + """For `print` and `pprint`""" + return self.to_str() + + def __eq__(self, other): + """Returns true if both objects are equal""" + if not isinstance(other, FileMetaList): + return False + + return self.to_dict() == other.to_dict() + + def __ne__(self, other): + """Returns true if both objects are not equal""" + if not isinstance(other, FileMetaList): + return True + + return self.to_dict() != other.to_dict() diff --git a/pollination_sdk/models/file_reference.py b/pollination_sdk/models/file_reference.py index 1e6741e7..cc8256fc 100644 --- a/pollination_sdk/models/file_reference.py +++ b/pollination_sdk/models/file_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/folder_reference.py b/pollination_sdk/models/folder_reference.py index 558cf58c..3acdbed8 100644 --- a/pollination_sdk/models/folder_reference.py +++ b/pollination_sdk/models/folder_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function.py b/pollination_sdk/models/function.py index 51de9caf..10e9de88 100644 --- a/pollination_sdk/models/function.py +++ b/pollination_sdk/models/function.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_array_input.py b/pollination_sdk/models/function_array_input.py index 80293c14..499c6fd3 100644 --- a/pollination_sdk/models/function_array_input.py +++ b/pollination_sdk/models/function_array_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_array_output.py b/pollination_sdk/models/function_array_output.py index 3902b7ce..bb0ec3ef 100644 --- a/pollination_sdk/models/function_array_output.py +++ b/pollination_sdk/models/function_array_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_boolean_input.py b/pollination_sdk/models/function_boolean_input.py index d9b6e3cb..3ad7cb3f 100644 --- a/pollination_sdk/models/function_boolean_input.py +++ b/pollination_sdk/models/function_boolean_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_boolean_output.py b/pollination_sdk/models/function_boolean_output.py index 40f1e6ad..28583199 100644 --- a/pollination_sdk/models/function_boolean_output.py +++ b/pollination_sdk/models/function_boolean_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_file_input.py b/pollination_sdk/models/function_file_input.py index 9a584875..ba0c4bac 100644 --- a/pollination_sdk/models/function_file_input.py +++ b/pollination_sdk/models/function_file_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_file_output.py b/pollination_sdk/models/function_file_output.py index 2440dea9..e8d9f2d7 100644 --- a/pollination_sdk/models/function_file_output.py +++ b/pollination_sdk/models/function_file_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_folder_input.py b/pollination_sdk/models/function_folder_input.py index 297043ac..7fc44372 100644 --- a/pollination_sdk/models/function_folder_input.py +++ b/pollination_sdk/models/function_folder_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_folder_output.py b/pollination_sdk/models/function_folder_output.py index 99c409c2..d7283cd8 100644 --- a/pollination_sdk/models/function_folder_output.py +++ b/pollination_sdk/models/function_folder_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_integer_input.py b/pollination_sdk/models/function_integer_input.py index c1748d2d..8cca750e 100644 --- a/pollination_sdk/models/function_integer_input.py +++ b/pollination_sdk/models/function_integer_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_integer_output.py b/pollination_sdk/models/function_integer_output.py index 78d3a0f8..a7aa63f0 100644 --- a/pollination_sdk/models/function_integer_output.py +++ b/pollination_sdk/models/function_integer_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_json_object_input.py b/pollination_sdk/models/function_json_object_input.py index 5dcb3d2b..09409cb4 100644 --- a/pollination_sdk/models/function_json_object_input.py +++ b/pollination_sdk/models/function_json_object_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_json_object_output.py b/pollination_sdk/models/function_json_object_output.py index 92e40539..174ea123 100644 --- a/pollination_sdk/models/function_json_object_output.py +++ b/pollination_sdk/models/function_json_object_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_number_input.py b/pollination_sdk/models/function_number_input.py index b1f53685..718a87f0 100644 --- a/pollination_sdk/models/function_number_input.py +++ b/pollination_sdk/models/function_number_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_number_output.py b/pollination_sdk/models/function_number_output.py index 444b6ea2..d4d6ea97 100644 --- a/pollination_sdk/models/function_number_output.py +++ b/pollination_sdk/models/function_number_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_path_input.py b/pollination_sdk/models/function_path_input.py index 83d2812a..7484b433 100644 --- a/pollination_sdk/models/function_path_input.py +++ b/pollination_sdk/models/function_path_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_path_output.py b/pollination_sdk/models/function_path_output.py index c52602e2..83083cea 100644 --- a/pollination_sdk/models/function_path_output.py +++ b/pollination_sdk/models/function_path_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_string_input.py b/pollination_sdk/models/function_string_input.py index bf7072b7..0544af93 100644 --- a/pollination_sdk/models/function_string_input.py +++ b/pollination_sdk/models/function_string_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/function_string_output.py b/pollination_sdk/models/function_string_output.py index 8f3bae04..b275b7f8 100644 --- a/pollination_sdk/models/function_string_output.py +++ b/pollination_sdk/models/function_string_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/http.py b/pollination_sdk/models/http.py index a1f74201..e9449e89 100644 --- a/pollination_sdk/models/http.py +++ b/pollination_sdk/models/http.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/http_validation_error.py b/pollination_sdk/models/http_validation_error.py index 44a516fa..abad4a32 100644 --- a/pollination_sdk/models/http_validation_error.py +++ b/pollination_sdk/models/http_validation_error.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/input_file_reference.py b/pollination_sdk/models/input_file_reference.py index c82fb612..fe252b88 100644 --- a/pollination_sdk/models/input_file_reference.py +++ b/pollination_sdk/models/input_file_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/input_folder_reference.py b/pollination_sdk/models/input_folder_reference.py index b00eb175..99797a83 100644 --- a/pollination_sdk/models/input_folder_reference.py +++ b/pollination_sdk/models/input_folder_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/input_path_reference.py b/pollination_sdk/models/input_path_reference.py index 21f9dc1a..f6af7bd5 100644 --- a/pollination_sdk/models/input_path_reference.py +++ b/pollination_sdk/models/input_path_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/input_reference.py b/pollination_sdk/models/input_reference.py index 52f6b769..d4d65ab4 100644 --- a/pollination_sdk/models/input_reference.py +++ b/pollination_sdk/models/input_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/io_alias_handler.py b/pollination_sdk/models/io_alias_handler.py index 34c45d7b..a1b5873a 100644 --- a/pollination_sdk/models/io_alias_handler.py +++ b/pollination_sdk/models/io_alias_handler.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/item_reference.py b/pollination_sdk/models/item_reference.py index 1485cb20..fa74d4ff 100644 --- a/pollination_sdk/models/item_reference.py +++ b/pollination_sdk/models/item_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/item_type.py b/pollination_sdk/models/item_type.py index abbca297..c5428438 100644 --- a/pollination_sdk/models/item_type.py +++ b/pollination_sdk/models/item_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/job.py b/pollination_sdk/models/job.py index 74a34641..935ab38a 100644 --- a/pollination_sdk/models/job.py +++ b/pollination_sdk/models/job.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/job_argument.py b/pollination_sdk/models/job_argument.py index bc23a380..17bdfc5a 100644 --- a/pollination_sdk/models/job_argument.py +++ b/pollination_sdk/models/job_argument.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/job_path_argument.py b/pollination_sdk/models/job_path_argument.py index ae0c2e1e..26185e4d 100644 --- a/pollination_sdk/models/job_path_argument.py +++ b/pollination_sdk/models/job_path_argument.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/job_status.py b/pollination_sdk/models/job_status.py index 46a97388..7c502bdf 100644 --- a/pollination_sdk/models/job_status.py +++ b/pollination_sdk/models/job_status.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/job_status_enum.py b/pollination_sdk/models/job_status_enum.py index 96026a2e..28b7eb11 100644 --- a/pollination_sdk/models/job_status_enum.py +++ b/pollination_sdk/models/job_status_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/key_request.py b/pollination_sdk/models/key_request.py index 7560dd3c..688e377a 100644 --- a/pollination_sdk/models/key_request.py +++ b/pollination_sdk/models/key_request.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/license.py b/pollination_sdk/models/license.py index b255ba7d..65fe06a2 100644 --- a/pollination_sdk/models/license.py +++ b/pollination_sdk/models/license.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/license_pool_access_policy.py b/pollination_sdk/models/license_pool_access_policy.py index a6684faf..11eb9ab3 100644 --- a/pollination_sdk/models/license_pool_access_policy.py +++ b/pollination_sdk/models/license_pool_access_policy.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/license_pool_access_policy_list.py b/pollination_sdk/models/license_pool_access_policy_list.py index 722cfc2f..500c2cb8 100644 --- a/pollination_sdk/models/license_pool_access_policy_list.py +++ b/pollination_sdk/models/license_pool_access_policy_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/license_pool_list.py b/pollination_sdk/models/license_pool_list.py index eab0ebe3..e2a87d08 100644 --- a/pollination_sdk/models/license_pool_list.py +++ b/pollination_sdk/models/license_pool_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/license_pool_policy_subject.py b/pollination_sdk/models/license_pool_policy_subject.py index 93ab590f..7c9122ef 100644 --- a/pollination_sdk/models/license_pool_policy_subject.py +++ b/pollination_sdk/models/license_pool_policy_subject.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/license_pool_policy_subject_list.py b/pollination_sdk/models/license_pool_policy_subject_list.py index 220ff872..8c163b95 100644 --- a/pollination_sdk/models/license_pool_policy_subject_list.py +++ b/pollination_sdk/models/license_pool_policy_subject_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/license_pool_public.py b/pollination_sdk/models/license_pool_public.py index b7914326..427b39dc 100644 --- a/pollination_sdk/models/license_pool_public.py +++ b/pollination_sdk/models/license_pool_public.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/license_pool_update.py b/pollination_sdk/models/license_pool_update.py index 1efed200..1f680f99 100644 --- a/pollination_sdk/models/license_pool_update.py +++ b/pollination_sdk/models/license_pool_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/license_public.py b/pollination_sdk/models/license_public.py index 58fd68e7..feb7d0db 100644 --- a/pollination_sdk/models/license_public.py +++ b/pollination_sdk/models/license_public.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/license_type.py b/pollination_sdk/models/license_type.py index 8e7f4ffb..9db7865e 100644 --- a/pollination_sdk/models/license_type.py +++ b/pollination_sdk/models/license_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/local_config.py b/pollination_sdk/models/local_config.py index 71f91a27..f1f1f947 100644 --- a/pollination_sdk/models/local_config.py +++ b/pollination_sdk/models/local_config.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/location.py b/pollination_sdk/models/location.py index a22b547f..89583ef1 100644 --- a/pollination_sdk/models/location.py +++ b/pollination_sdk/models/location.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/maintainer.py b/pollination_sdk/models/maintainer.py index efeaabe5..f9c1b083 100644 --- a/pollination_sdk/models/maintainer.py +++ b/pollination_sdk/models/maintainer.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/meta_data.py b/pollination_sdk/models/meta_data.py index 16fbfae0..4e06e032 100644 --- a/pollination_sdk/models/meta_data.py +++ b/pollination_sdk/models/meta_data.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/metadata.py b/pollination_sdk/models/metadata.py index efff21e7..8dfcc9bf 100644 --- a/pollination_sdk/models/metadata.py +++ b/pollination_sdk/models/metadata.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/new_application_version.py b/pollination_sdk/models/new_application_version.py index 870de4d7..5c25b0fb 100644 --- a/pollination_sdk/models/new_application_version.py +++ b/pollination_sdk/models/new_application_version.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/new_plugin_package.py b/pollination_sdk/models/new_plugin_package.py index d2412286..7df50b1f 100644 --- a/pollination_sdk/models/new_plugin_package.py +++ b/pollination_sdk/models/new_plugin_package.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/new_recipe_package.py b/pollination_sdk/models/new_recipe_package.py index 54aed53f..0f19df33 100644 --- a/pollination_sdk/models/new_recipe_package.py +++ b/pollination_sdk/models/new_recipe_package.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/organization.py b/pollination_sdk/models/organization.py index 91f95eae..6c862626 100644 --- a/pollination_sdk/models/organization.py +++ b/pollination_sdk/models/organization.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/organization_create.py b/pollination_sdk/models/organization_create.py index 740a77c1..ee1fb0c0 100644 --- a/pollination_sdk/models/organization_create.py +++ b/pollination_sdk/models/organization_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/organization_list.py b/pollination_sdk/models/organization_list.py index 3a41908b..05f3171f 100644 --- a/pollination_sdk/models/organization_list.py +++ b/pollination_sdk/models/organization_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/organization_member.py b/pollination_sdk/models/organization_member.py index c4682534..dd7e0d28 100644 --- a/pollination_sdk/models/organization_member.py +++ b/pollination_sdk/models/organization_member.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/organization_member_list.py b/pollination_sdk/models/organization_member_list.py index f0d3f8e8..f01d34f8 100644 --- a/pollination_sdk/models/organization_member_list.py +++ b/pollination_sdk/models/organization_member_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/organization_role_enum.py b/pollination_sdk/models/organization_role_enum.py index 4f24e50a..a6bebe03 100644 --- a/pollination_sdk/models/organization_role_enum.py +++ b/pollination_sdk/models/organization_role_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/organization_update.py b/pollination_sdk/models/organization_update.py index b30c1eef..9865feea 100644 --- a/pollination_sdk/models/organization_update.py +++ b/pollination_sdk/models/organization_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/package_sort_key.py b/pollination_sdk/models/package_sort_key.py index d55fd581..43c35719 100644 --- a/pollination_sdk/models/package_sort_key.py +++ b/pollination_sdk/models/package_sort_key.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/package_version.py b/pollination_sdk/models/package_version.py index 7749d956..3518f712 100644 --- a/pollination_sdk/models/package_version.py +++ b/pollination_sdk/models/package_version.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/paused_reason.py b/pollination_sdk/models/paused_reason.py index f5f1b41e..4912c113 100644 --- a/pollination_sdk/models/paused_reason.py +++ b/pollination_sdk/models/paused_reason.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/pay_link.py b/pollination_sdk/models/pay_link.py index 2db28204..61660ee0 100644 --- a/pollination_sdk/models/pay_link.py +++ b/pollination_sdk/models/pay_link.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/payment.py b/pollination_sdk/models/payment.py index cdcf3fad..8207cf1d 100644 --- a/pollination_sdk/models/payment.py +++ b/pollination_sdk/models/payment.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/payment_method.py b/pollination_sdk/models/payment_method.py index a7290b68..ec1c5fdc 100644 --- a/pollination_sdk/models/payment_method.py +++ b/pollination_sdk/models/payment_method.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/payment_method_enum.py b/pollination_sdk/models/payment_method_enum.py index 5933ebbc..7ccba567 100644 --- a/pollination_sdk/models/payment_method_enum.py +++ b/pollination_sdk/models/payment_method_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/permission.py b/pollination_sdk/models/permission.py index 386112e2..c2bce6e8 100644 --- a/pollination_sdk/models/permission.py +++ b/pollination_sdk/models/permission.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/plan_type.py b/pollination_sdk/models/plan_type.py index df4b0530..29f27786 100644 --- a/pollination_sdk/models/plan_type.py +++ b/pollination_sdk/models/plan_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/plugin.py b/pollination_sdk/models/plugin.py index 59fbd39e..a407fbc5 100644 --- a/pollination_sdk/models/plugin.py +++ b/pollination_sdk/models/plugin.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/plugin_config.py b/pollination_sdk/models/plugin_config.py index 3cf346d4..091d5d78 100644 --- a/pollination_sdk/models/plugin_config.py +++ b/pollination_sdk/models/plugin_config.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/plugin_package.py b/pollination_sdk/models/plugin_package.py index 6c405780..9689964a 100644 --- a/pollination_sdk/models/plugin_package.py +++ b/pollination_sdk/models/plugin_package.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/plugin_package_list.py b/pollination_sdk/models/plugin_package_list.py index cc770c40..21c66989 100644 --- a/pollination_sdk/models/plugin_package_list.py +++ b/pollination_sdk/models/plugin_package_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/policy_subject.py b/pollination_sdk/models/policy_subject.py index 2468a8b7..1beb5c28 100644 --- a/pollination_sdk/models/policy_subject.py +++ b/pollination_sdk/models/policy_subject.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project.py b/pollination_sdk/models/project.py index 8982ce43..d034dd0b 100644 --- a/pollination_sdk/models/project.py +++ b/pollination_sdk/models/project.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project_access_policy.py b/pollination_sdk/models/project_access_policy.py index d86889f1..3ce02d2a 100644 --- a/pollination_sdk/models/project_access_policy.py +++ b/pollination_sdk/models/project_access_policy.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project_access_policy_list.py b/pollination_sdk/models/project_access_policy_list.py index b4b7f1f2..47c4166f 100644 --- a/pollination_sdk/models/project_access_policy_list.py +++ b/pollination_sdk/models/project_access_policy_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project_create.py b/pollination_sdk/models/project_create.py index 49485cea..b7fcc0b1 100644 --- a/pollination_sdk/models/project_create.py +++ b/pollination_sdk/models/project_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project_folder.py b/pollination_sdk/models/project_folder.py index 8a586d9b..a8eebc59 100644 --- a/pollination_sdk/models/project_folder.py +++ b/pollination_sdk/models/project_folder.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project_list.py b/pollination_sdk/models/project_list.py index 10fb3b3a..326f64df 100644 --- a/pollination_sdk/models/project_list.py +++ b/pollination_sdk/models/project_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project_policy_subject.py b/pollination_sdk/models/project_policy_subject.py index 132ea53c..401c02d3 100644 --- a/pollination_sdk/models/project_policy_subject.py +++ b/pollination_sdk/models/project_policy_subject.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project_recipe_filter.py b/pollination_sdk/models/project_recipe_filter.py index cd59d126..0ca9a93b 100644 --- a/pollination_sdk/models/project_recipe_filter.py +++ b/pollination_sdk/models/project_recipe_filter.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project_recipe_filter_list.py b/pollination_sdk/models/project_recipe_filter_list.py index 25857d03..a18cd06f 100644 --- a/pollination_sdk/models/project_recipe_filter_list.py +++ b/pollination_sdk/models/project_recipe_filter_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project_sort_key.py b/pollination_sdk/models/project_sort_key.py index c352a9b1..32fed6c9 100644 --- a/pollination_sdk/models/project_sort_key.py +++ b/pollination_sdk/models/project_sort_key.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/project_update.py b/pollination_sdk/models/project_update.py index a3d0d450..c532046e 100644 --- a/pollination_sdk/models/project_update.py +++ b/pollination_sdk/models/project_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/public_account_list.py b/pollination_sdk/models/public_account_list.py index 5ccb5028..edc378d2 100644 --- a/pollination_sdk/models/public_account_list.py +++ b/pollination_sdk/models/public_account_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/quota.py b/pollination_sdk/models/quota.py index 0b74e03a..a4dc349c 100644 --- a/pollination_sdk/models/quota.py +++ b/pollination_sdk/models/quota.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/quota_list.py b/pollination_sdk/models/quota_list.py index b9af807b..f44bfe5f 100644 --- a/pollination_sdk/models/quota_list.py +++ b/pollination_sdk/models/quota_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/quota_plan.py b/pollination_sdk/models/quota_plan.py index 1b66eec3..bd789d44 100644 --- a/pollination_sdk/models/quota_plan.py +++ b/pollination_sdk/models/quota_plan.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/quota_type.py b/pollination_sdk/models/quota_type.py index da4b3883..0485c9eb 100644 --- a/pollination_sdk/models/quota_type.py +++ b/pollination_sdk/models/quota_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/recipe.py b/pollination_sdk/models/recipe.py index 79a488e4..86f31ef9 100644 --- a/pollination_sdk/models/recipe.py +++ b/pollination_sdk/models/recipe.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/recipe_interface.py b/pollination_sdk/models/recipe_interface.py index 003294de..f8d67833 100644 --- a/pollination_sdk/models/recipe_interface.py +++ b/pollination_sdk/models/recipe_interface.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/recipe_interface_list.py b/pollination_sdk/models/recipe_interface_list.py index 7abacdf0..d631262b 100644 --- a/pollination_sdk/models/recipe_interface_list.py +++ b/pollination_sdk/models/recipe_interface_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/recipe_package.py b/pollination_sdk/models/recipe_package.py index 498b67d3..37baea8d 100644 --- a/pollination_sdk/models/recipe_package.py +++ b/pollination_sdk/models/recipe_package.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/recipe_package_list.py b/pollination_sdk/models/recipe_package_list.py index e60a4e7f..95668e13 100644 --- a/pollination_sdk/models/recipe_package_list.py +++ b/pollination_sdk/models/recipe_package_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository.py b/pollination_sdk/models/repository.py index 01b3bb0b..b3200725 100644 --- a/pollination_sdk/models/repository.py +++ b/pollination_sdk/models/repository.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository_access_policy.py b/pollination_sdk/models/repository_access_policy.py index 87cec998..7479a31b 100644 --- a/pollination_sdk/models/repository_access_policy.py +++ b/pollination_sdk/models/repository_access_policy.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository_access_policy_list.py b/pollination_sdk/models/repository_access_policy_list.py index 1c270344..2af01ae6 100644 --- a/pollination_sdk/models/repository_access_policy_list.py +++ b/pollination_sdk/models/repository_access_policy_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository_create.py b/pollination_sdk/models/repository_create.py index 4ac28937..8699231e 100644 --- a/pollination_sdk/models/repository_create.py +++ b/pollination_sdk/models/repository_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository_index.py b/pollination_sdk/models/repository_index.py index 4555feca..a7acd3fb 100644 --- a/pollination_sdk/models/repository_index.py +++ b/pollination_sdk/models/repository_index.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository_list.py b/pollination_sdk/models/repository_list.py index f7ac30cc..8d1c724d 100644 --- a/pollination_sdk/models/repository_list.py +++ b/pollination_sdk/models/repository_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository_metadata.py b/pollination_sdk/models/repository_metadata.py index 7b9ea262..933ef035 100644 --- a/pollination_sdk/models/repository_metadata.py +++ b/pollination_sdk/models/repository_metadata.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository_policy_subject.py b/pollination_sdk/models/repository_policy_subject.py index 555605af..f2735003 100644 --- a/pollination_sdk/models/repository_policy_subject.py +++ b/pollination_sdk/models/repository_policy_subject.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository_sort_key.py b/pollination_sdk/models/repository_sort_key.py index fecef7c4..01dfc0f1 100644 --- a/pollination_sdk/models/repository_sort_key.py +++ b/pollination_sdk/models/repository_sort_key.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository_update.py b/pollination_sdk/models/repository_update.py index 87de4229..b26eeaf7 100644 --- a/pollination_sdk/models/repository_update.py +++ b/pollination_sdk/models/repository_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/repository_user_permissions.py b/pollination_sdk/models/repository_user_permissions.py index 42f9eeba..522c8f00 100644 --- a/pollination_sdk/models/repository_user_permissions.py +++ b/pollination_sdk/models/repository_user_permissions.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/resources_duration.py b/pollination_sdk/models/resources_duration.py index a680e400..bfbfdfa0 100644 --- a/pollination_sdk/models/resources_duration.py +++ b/pollination_sdk/models/resources_duration.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/retry_config.py b/pollination_sdk/models/retry_config.py index 402ce238..6458acc3 100644 --- a/pollination_sdk/models/retry_config.py +++ b/pollination_sdk/models/retry_config.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/role_enum.py b/pollination_sdk/models/role_enum.py index 50b95cfc..0c6e2b39 100644 --- a/pollination_sdk/models/role_enum.py +++ b/pollination_sdk/models/role_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/run.py b/pollination_sdk/models/run.py index 4c318826..565a5b6c 100644 --- a/pollination_sdk/models/run.py +++ b/pollination_sdk/models/run.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/run_list.py b/pollination_sdk/models/run_list.py index f97c30a1..ae225a2a 100644 --- a/pollination_sdk/models/run_list.py +++ b/pollination_sdk/models/run_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/run_meta.py b/pollination_sdk/models/run_meta.py index 568a4132..4484347c 100644 --- a/pollination_sdk/models/run_meta.py +++ b/pollination_sdk/models/run_meta.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/run_progress.py b/pollination_sdk/models/run_progress.py index fbaca96b..2075e88d 100644 --- a/pollination_sdk/models/run_progress.py +++ b/pollination_sdk/models/run_progress.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/run_result_list.py b/pollination_sdk/models/run_result_list.py index 582ddc63..0558c08f 100644 --- a/pollination_sdk/models/run_result_list.py +++ b/pollination_sdk/models/run_result_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/run_status.py b/pollination_sdk/models/run_status.py index f6f2a513..a1dcf350 100644 --- a/pollination_sdk/models/run_status.py +++ b/pollination_sdk/models/run_status.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/run_status_enum.py b/pollination_sdk/models/run_status_enum.py index 2712ab2e..82ba7ff1 100644 --- a/pollination_sdk/models/run_status_enum.py +++ b/pollination_sdk/models/run_status_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/s3.py b/pollination_sdk/models/s3.py index a75eae58..7f394e24 100644 --- a/pollination_sdk/models/s3.py +++ b/pollination_sdk/models/s3.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/s3_upload_request.py b/pollination_sdk/models/s3_upload_request.py index 4ca47235..a2c8c09f 100644 --- a/pollination_sdk/models/s3_upload_request.py +++ b/pollination_sdk/models/s3_upload_request.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/scripting_languages.py b/pollination_sdk/models/scripting_languages.py index cca19adb..7a73e83d 100644 --- a/pollination_sdk/models/scripting_languages.py +++ b/pollination_sdk/models/scripting_languages.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/sdk_enum.py b/pollination_sdk/models/sdk_enum.py index 3f4a531c..d4b6f6cc 100644 --- a/pollination_sdk/models/sdk_enum.py +++ b/pollination_sdk/models/sdk_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/sort_enum.py b/pollination_sdk/models/sort_enum.py index ab09fec9..3b3cb78a 100644 --- a/pollination_sdk/models/sort_enum.py +++ b/pollination_sdk/models/sort_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/status_type.py b/pollination_sdk/models/status_type.py index 348a5bb9..8bcd3ecd 100644 --- a/pollination_sdk/models/status_type.py +++ b/pollination_sdk/models/status_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_array_input.py b/pollination_sdk/models/step_array_input.py index 4ca20361..65b76acd 100644 --- a/pollination_sdk/models/step_array_input.py +++ b/pollination_sdk/models/step_array_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_array_output.py b/pollination_sdk/models/step_array_output.py index 2419a7d7..065fdaf5 100644 --- a/pollination_sdk/models/step_array_output.py +++ b/pollination_sdk/models/step_array_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_boolean_input.py b/pollination_sdk/models/step_boolean_input.py index 4db7c5ef..419b1422 100644 --- a/pollination_sdk/models/step_boolean_input.py +++ b/pollination_sdk/models/step_boolean_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_boolean_output.py b/pollination_sdk/models/step_boolean_output.py index def4e715..c9b3cf9d 100644 --- a/pollination_sdk/models/step_boolean_output.py +++ b/pollination_sdk/models/step_boolean_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_file_input.py b/pollination_sdk/models/step_file_input.py index 47e26982..ad218302 100644 --- a/pollination_sdk/models/step_file_input.py +++ b/pollination_sdk/models/step_file_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_file_output.py b/pollination_sdk/models/step_file_output.py index dfbe3214..43ce3f7d 100644 --- a/pollination_sdk/models/step_file_output.py +++ b/pollination_sdk/models/step_file_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_folder_input.py b/pollination_sdk/models/step_folder_input.py index 22c41f32..35b98e2b 100644 --- a/pollination_sdk/models/step_folder_input.py +++ b/pollination_sdk/models/step_folder_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_folder_output.py b/pollination_sdk/models/step_folder_output.py index e1d00df3..6d00ace1 100644 --- a/pollination_sdk/models/step_folder_output.py +++ b/pollination_sdk/models/step_folder_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_integer_input.py b/pollination_sdk/models/step_integer_input.py index 929c2b44..11398c61 100644 --- a/pollination_sdk/models/step_integer_input.py +++ b/pollination_sdk/models/step_integer_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_integer_output.py b/pollination_sdk/models/step_integer_output.py index 9b02ff2e..4bf28131 100644 --- a/pollination_sdk/models/step_integer_output.py +++ b/pollination_sdk/models/step_integer_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_json_object_input.py b/pollination_sdk/models/step_json_object_input.py index 737836f6..18584cdc 100644 --- a/pollination_sdk/models/step_json_object_input.py +++ b/pollination_sdk/models/step_json_object_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_json_object_output.py b/pollination_sdk/models/step_json_object_output.py index da434406..d6d771b5 100644 --- a/pollination_sdk/models/step_json_object_output.py +++ b/pollination_sdk/models/step_json_object_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_list.py b/pollination_sdk/models/step_list.py index 9bcc14f9..3e05bf2f 100644 --- a/pollination_sdk/models/step_list.py +++ b/pollination_sdk/models/step_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_number_input.py b/pollination_sdk/models/step_number_input.py index db7cf747..5fa2793d 100644 --- a/pollination_sdk/models/step_number_input.py +++ b/pollination_sdk/models/step_number_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_number_output.py b/pollination_sdk/models/step_number_output.py index 2e1fc9aa..309a8071 100644 --- a/pollination_sdk/models/step_number_output.py +++ b/pollination_sdk/models/step_number_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_path_input.py b/pollination_sdk/models/step_path_input.py index 3df532bf..e3443b55 100644 --- a/pollination_sdk/models/step_path_input.py +++ b/pollination_sdk/models/step_path_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_path_output.py b/pollination_sdk/models/step_path_output.py index ae6b5f7f..612a9268 100644 --- a/pollination_sdk/models/step_path_output.py +++ b/pollination_sdk/models/step_path_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_status.py b/pollination_sdk/models/step_status.py index 2bba7a28..0849285f 100644 --- a/pollination_sdk/models/step_status.py +++ b/pollination_sdk/models/step_status.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_status_enum.py b/pollination_sdk/models/step_status_enum.py index b145b03e..4a3bddaf 100644 --- a/pollination_sdk/models/step_status_enum.py +++ b/pollination_sdk/models/step_status_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_string_input.py b/pollination_sdk/models/step_string_input.py index c499fed2..e201277e 100644 --- a/pollination_sdk/models/step_string_input.py +++ b/pollination_sdk/models/step_string_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/step_string_output.py b/pollination_sdk/models/step_string_output.py index 06a477b2..843cba4b 100644 --- a/pollination_sdk/models/step_string_output.py +++ b/pollination_sdk/models/step_string_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/subject_type.py b/pollination_sdk/models/subject_type.py index 12901b16..f4e33100 100644 --- a/pollination_sdk/models/subject_type.py +++ b/pollination_sdk/models/subject_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/subscription.py b/pollination_sdk/models/subscription.py index 567f9640..81adc3fe 100644 --- a/pollination_sdk/models/subscription.py +++ b/pollination_sdk/models/subscription.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/subscription_create.py b/pollination_sdk/models/subscription_create.py index e5caea10..11bd468d 100644 --- a/pollination_sdk/models/subscription_create.py +++ b/pollination_sdk/models/subscription_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/subscription_payment.py b/pollination_sdk/models/subscription_payment.py index 6b29ad67..461b592a 100644 --- a/pollination_sdk/models/subscription_payment.py +++ b/pollination_sdk/models/subscription_payment.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/subscription_plan.py b/pollination_sdk/models/subscription_plan.py index 51221002..244c9d5e 100644 --- a/pollination_sdk/models/subscription_plan.py +++ b/pollination_sdk/models/subscription_plan.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/subscription_update.py b/pollination_sdk/models/subscription_update.py index 12d0af5f..04df8bdb 100644 --- a/pollination_sdk/models/subscription_update.py +++ b/pollination_sdk/models/subscription_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/subscription_update_dry_run.py b/pollination_sdk/models/subscription_update_dry_run.py index b50b08a2..0823e05b 100644 --- a/pollination_sdk/models/subscription_update_dry_run.py +++ b/pollination_sdk/models/subscription_update_dry_run.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/task_argument.py b/pollination_sdk/models/task_argument.py index 92f9cdbf..3d66a4d2 100644 --- a/pollination_sdk/models/task_argument.py +++ b/pollination_sdk/models/task_argument.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/task_file_reference.py b/pollination_sdk/models/task_file_reference.py index 2e5886d7..4f0a5e6a 100644 --- a/pollination_sdk/models/task_file_reference.py +++ b/pollination_sdk/models/task_file_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/task_folder_reference.py b/pollination_sdk/models/task_folder_reference.py index 412ad467..28b7ce7c 100644 --- a/pollination_sdk/models/task_folder_reference.py +++ b/pollination_sdk/models/task_folder_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/task_path_argument.py b/pollination_sdk/models/task_path_argument.py index 73a408b5..0ca14027 100644 --- a/pollination_sdk/models/task_path_argument.py +++ b/pollination_sdk/models/task_path_argument.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/task_path_reference.py b/pollination_sdk/models/task_path_reference.py index ff07e3e8..6cffa551 100644 --- a/pollination_sdk/models/task_path_reference.py +++ b/pollination_sdk/models/task_path_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/task_path_return.py b/pollination_sdk/models/task_path_return.py index 4f1facb6..7d14282e 100644 --- a/pollination_sdk/models/task_path_return.py +++ b/pollination_sdk/models/task_path_return.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/task_reference.py b/pollination_sdk/models/task_reference.py index 6755b07a..5ff48e45 100644 --- a/pollination_sdk/models/task_reference.py +++ b/pollination_sdk/models/task_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/task_return.py b/pollination_sdk/models/task_return.py index 5b661829..1dbb3149 100644 --- a/pollination_sdk/models/task_return.py +++ b/pollination_sdk/models/task_return.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/team.py b/pollination_sdk/models/team.py index 874a4522..689053e6 100644 --- a/pollination_sdk/models/team.py +++ b/pollination_sdk/models/team.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/team_create.py b/pollination_sdk/models/team_create.py index 0b5d41c1..9b958e0a 100644 --- a/pollination_sdk/models/team_create.py +++ b/pollination_sdk/models/team_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/team_list.py b/pollination_sdk/models/team_list.py index e3db1c5a..9553b6fe 100644 --- a/pollination_sdk/models/team_list.py +++ b/pollination_sdk/models/team_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/team_member.py b/pollination_sdk/models/team_member.py index 39ae1fa5..f9780da8 100644 --- a/pollination_sdk/models/team_member.py +++ b/pollination_sdk/models/team_member.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/team_member_list.py b/pollination_sdk/models/team_member_list.py index 185d8f7c..9f566414 100644 --- a/pollination_sdk/models/team_member_list.py +++ b/pollination_sdk/models/team_member_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/team_role_enum.py b/pollination_sdk/models/team_role_enum.py index 9582811b..e6141adb 100644 --- a/pollination_sdk/models/team_role_enum.py +++ b/pollination_sdk/models/team_role_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/team_update.py b/pollination_sdk/models/team_update.py index 5db2c772..ec438335 100644 --- a/pollination_sdk/models/team_update.py +++ b/pollination_sdk/models/team_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/template_function.py b/pollination_sdk/models/template_function.py index b4f85ac9..414bed1f 100644 --- a/pollination_sdk/models/template_function.py +++ b/pollination_sdk/models/template_function.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/update_accepted.py b/pollination_sdk/models/update_accepted.py index b43c6beb..441f62a5 100644 --- a/pollination_sdk/models/update_accepted.py +++ b/pollination_sdk/models/update_accepted.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/usage.py b/pollination_sdk/models/usage.py index bb72a534..deb79788 100644 --- a/pollination_sdk/models/usage.py +++ b/pollination_sdk/models/usage.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/user_create.py b/pollination_sdk/models/user_create.py index 6a6faa8a..949afd0f 100644 --- a/pollination_sdk/models/user_create.py +++ b/pollination_sdk/models/user_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/user_permission.py b/pollination_sdk/models/user_permission.py index 72487089..8f0bdbea 100644 --- a/pollination_sdk/models/user_permission.py +++ b/pollination_sdk/models/user_permission.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/user_private.py b/pollination_sdk/models/user_private.py index 1afe8814..f5ccb041 100644 --- a/pollination_sdk/models/user_private.py +++ b/pollination_sdk/models/user_private.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/user_public.py b/pollination_sdk/models/user_public.py index 7e55430b..ad027d67 100644 --- a/pollination_sdk/models/user_public.py +++ b/pollination_sdk/models/user_public.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/user_public_list.py b/pollination_sdk/models/user_public_list.py index 3f00e7a8..d31196cf 100644 --- a/pollination_sdk/models/user_public_list.py +++ b/pollination_sdk/models/user_public_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/user_update.py b/pollination_sdk/models/user_update.py index 1d08e435..223b172b 100644 --- a/pollination_sdk/models/user_update.py +++ b/pollination_sdk/models/user_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/validation_error.py b/pollination_sdk/models/validation_error.py index 9a5ad5f1..e3a23f72 100644 --- a/pollination_sdk/models/validation_error.py +++ b/pollination_sdk/models/validation_error.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/value_file_reference.py b/pollination_sdk/models/value_file_reference.py index 217e857d..cd5c56ba 100644 --- a/pollination_sdk/models/value_file_reference.py +++ b/pollination_sdk/models/value_file_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/value_folder_reference.py b/pollination_sdk/models/value_folder_reference.py index 885788a3..86bdc659 100644 --- a/pollination_sdk/models/value_folder_reference.py +++ b/pollination_sdk/models/value_folder_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/value_list_reference.py b/pollination_sdk/models/value_list_reference.py index 74713df5..5131a325 100644 --- a/pollination_sdk/models/value_list_reference.py +++ b/pollination_sdk/models/value_list_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/models/value_reference.py b/pollination_sdk/models/value_reference.py index e1cfa626..97d9957b 100644 --- a/pollination_sdk/models/value_reference.py +++ b/pollination_sdk/models/value_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/pollination_sdk/rest.py b/pollination_sdk/rest.py index 3c22f84c..37835996 100644 --- a/pollination_sdk/rest.py +++ b/pollination_sdk/rest.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/setup.py b/setup.py index 3e0ddc84..a78d9026 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ @@ -14,7 +14,7 @@ from setuptools import setup, find_packages # noqa: H301 NAME = "pollination-sdk" -VERSION = "0.47.0" +VERSION = "1.0.0" # To install the library, run the following # # python setup.py install diff --git a/test/test_accessor.py b/test/test_accessor.py index 9b27ada3..4a94441a 100644 --- a/test/test_accessor.py +++ b/test/test_accessor.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_account_public.py b/test/test_account_public.py index 4af81617..628b3f71 100644 --- a/test/test_account_public.py +++ b/test/test_account_public.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_account_type.py b/test/test_account_type.py index b0a6416d..0be1a8d7 100644 --- a/test/test_account_type.py +++ b/test/test_account_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_accounts_api.py b/test/test_accounts_api.py index 32c4df93..5b6dcc0e 100644 --- a/test/test_accounts_api.py +++ b/test/test_accounts_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_activation.py b/test/test_activation.py index 26e8620e..97b721d8 100644 --- a/test/test_activation.py +++ b/test/test_activation.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_activation_list.py b/test/test_activation_list.py index 2a22f50b..31a349ce 100644 --- a/test/test_activation_list.py +++ b/test/test_activation_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_token.py b/test/test_api_token.py index a317dbce..72cf8064 100644 --- a/test/test_api_token.py +++ b/test/test_api_token.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_token_create.py b/test/test_api_token_create.py index 58e31f23..74bf694a 100644 --- a/test/test_api_token_create.py +++ b/test/test_api_token_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_token_list.py b/test/test_api_token_list.py index 94dccc39..9b902d8d 100644 --- a/test/test_api_token_list.py +++ b/test/test_api_token_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_token_private.py b/test/test_api_token_private.py index 7eea5a1c..a12acdb4 100644 --- a/test/test_api_token_private.py +++ b/test/test_api_token_private.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_api_tokens_api.py b/test/test_api_tokens_api.py index 27262561..c1cbadb5 100644 --- a/test/test_api_tokens_api.py +++ b/test/test_api_tokens_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_application.py b/test/test_application.py index 768972a1..b98e121e 100644 --- a/test/test_application.py +++ b/test/test_application.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_application_access_policy.py b/test/test_application_access_policy.py index 22fbc5e8..907d5b76 100644 --- a/test/test_application_access_policy.py +++ b/test/test_application_access_policy.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_application_access_policy_list.py b/test/test_application_access_policy_list.py index 77a6e776..672f255c 100644 --- a/test/test_application_access_policy_list.py +++ b/test/test_application_access_policy_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_application_create.py b/test/test_application_create.py index e79777e2..002d0bec 100644 --- a/test/test_application_create.py +++ b/test/test_application_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_application_deployment.py b/test/test_application_deployment.py index 9e332c7f..5258cfa0 100644 --- a/test/test_application_deployment.py +++ b/test/test_application_deployment.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_application_list.py b/test/test_application_list.py index 6c9d6e15..e5a84b72 100644 --- a/test/test_application_list.py +++ b/test/test_application_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_application_policy_subject.py b/test/test_application_policy_subject.py index 4493cf2b..91bab4a2 100644 --- a/test/test_application_policy_subject.py +++ b/test/test_application_policy_subject.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_application_sort_key.py b/test/test_application_sort_key.py index 987c29a7..e5c943a3 100644 --- a/test/test_application_sort_key.py +++ b/test/test_application_sort_key.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_application_update.py b/test/test_application_update.py index 46e5b5a7..1bc1ad77 100644 --- a/test/test_application_update.py +++ b/test/test_application_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_application_version.py b/test/test_application_version.py index 59d0ec78..697232ca 100644 --- a/test/test_application_version.py +++ b/test/test_application_version.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_application_version_list.py b/test/test_application_version_list.py index 06ed1ea0..be21716d 100644 --- a/test/test_application_version_list.py +++ b/test/test_application_version_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_applications_api.py b/test/test_applications_api.py index a3b77f46..53f0f17f 100644 --- a/test/test_applications_api.py +++ b/test/test_applications_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_artifacts_api.py b/test/test_artifacts_api.py index 56296cab..35c2b0c9 100644 --- a/test/test_artifacts_api.py +++ b/test/test_artifacts_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_baked_recipe.py b/test/test_baked_recipe.py index c934d44c..04db98c8 100644 --- a/test/test_baked_recipe.py +++ b/test/test_baked_recipe.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_billing_info.py b/test/test_billing_info.py index 92521987..8ca4d9ba 100644 --- a/test/test_billing_info.py +++ b/test/test_billing_info.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_billing_option.py b/test/test_billing_option.py index 9c05922c..5edb0fa8 100644 --- a/test/test_billing_option.py +++ b/test/test_billing_option.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_body_cython_function_or_method_owner_plugins_post.py b/test/test_body_cython_function_or_method_owner_plugins_post.py index 3821ff5c..50b8a45a 100644 --- a/test/test_body_cython_function_or_method_owner_plugins_post.py +++ b/test/test_body_cython_function_or_method_owner_plugins_post.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_body_post_recipe_owner_recipes_post.py b/test/test_body_post_recipe_owner_recipes_post.py index 1269c4b3..4a97e4d7 100644 --- a/test/test_body_post_recipe_owner_recipes_post.py +++ b/test/test_body_post_recipe_owner_recipes_post.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_build_status.py b/test/test_build_status.py index 2ac35fe4..3f1ce685 100644 --- a/test/test_build_status.py +++ b/test/test_build_status.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_build_status_enum.py b/test/test_build_status_enum.py index a9d265ae..c2ab44a5 100644 --- a/test/test_build_status_enum.py +++ b/test/test_build_status_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_card_type.py b/test/test_card_type.py index 516d4d86..455665f2 100644 --- a/test/test_card_type.py +++ b/test/test_card_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_cloud_job.py b/test/test_cloud_job.py index 17094d69..94f2e1cc 100644 --- a/test/test_cloud_job.py +++ b/test/test_cloud_job.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_cloud_job_list.py b/test/test_cloud_job_list.py index 82bbec34..609b91df 100644 --- a/test/test_cloud_job_list.py +++ b/test/test_cloud_job_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_created_content.py b/test/test_created_content.py index 26bddec8..2af900ae 100644 --- a/test/test_created_content.py +++ b/test/test_created_content.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag.py b/test/test_dag.py index 94ffa5d7..ba82e6f9 100644 --- a/test/test_dag.py +++ b/test/test_dag.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_array_input.py b/test/test_dag_array_input.py index 6f18d53f..0c0f2076 100644 --- a/test/test_dag_array_input.py +++ b/test/test_dag_array_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_array_input_alias.py b/test/test_dag_array_input_alias.py index 42eb55ed..6b17f052 100644 --- a/test/test_dag_array_input_alias.py +++ b/test/test_dag_array_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_array_output.py b/test/test_dag_array_output.py index ee0b73cf..6d7c0979 100644 --- a/test/test_dag_array_output.py +++ b/test/test_dag_array_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_array_output_alias.py b/test/test_dag_array_output_alias.py index ba948fd0..f9623f50 100644 --- a/test/test_dag_array_output_alias.py +++ b/test/test_dag_array_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_boolean_input.py b/test/test_dag_boolean_input.py index a48ceca9..a6a695e1 100644 --- a/test/test_dag_boolean_input.py +++ b/test/test_dag_boolean_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_boolean_input_alias.py b/test/test_dag_boolean_input_alias.py index 25cdef26..b619ed98 100644 --- a/test/test_dag_boolean_input_alias.py +++ b/test/test_dag_boolean_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_boolean_output.py b/test/test_dag_boolean_output.py index a4e34a63..8f2478c0 100644 --- a/test/test_dag_boolean_output.py +++ b/test/test_dag_boolean_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_boolean_output_alias.py b/test/test_dag_boolean_output_alias.py index 45c22e6d..ab4ed628 100644 --- a/test/test_dag_boolean_output_alias.py +++ b/test/test_dag_boolean_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_file_input.py b/test/test_dag_file_input.py index 26e99328..1b1676d6 100644 --- a/test/test_dag_file_input.py +++ b/test/test_dag_file_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_file_input_alias.py b/test/test_dag_file_input_alias.py index b62ae940..086635c3 100644 --- a/test/test_dag_file_input_alias.py +++ b/test/test_dag_file_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_file_output.py b/test/test_dag_file_output.py index 81942ca2..19bf1454 100644 --- a/test/test_dag_file_output.py +++ b/test/test_dag_file_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_file_output_alias.py b/test/test_dag_file_output_alias.py index 891fb916..89120b1b 100644 --- a/test/test_dag_file_output_alias.py +++ b/test/test_dag_file_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_folder_input.py b/test/test_dag_folder_input.py index fa4b6b8c..23a3f249 100644 --- a/test/test_dag_folder_input.py +++ b/test/test_dag_folder_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_folder_input_alias.py b/test/test_dag_folder_input_alias.py index f465d505..d94b4b12 100644 --- a/test/test_dag_folder_input_alias.py +++ b/test/test_dag_folder_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_folder_output.py b/test/test_dag_folder_output.py index e353056c..cecb1c1b 100644 --- a/test/test_dag_folder_output.py +++ b/test/test_dag_folder_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_folder_output_alias.py b/test/test_dag_folder_output_alias.py index 6b25a86a..24ade89d 100644 --- a/test/test_dag_folder_output_alias.py +++ b/test/test_dag_folder_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_generic_input.py b/test/test_dag_generic_input.py index 0356be8d..01a14b09 100644 --- a/test/test_dag_generic_input.py +++ b/test/test_dag_generic_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_generic_input_alias.py b/test/test_dag_generic_input_alias.py index 4d8b22b9..743625da 100644 --- a/test/test_dag_generic_input_alias.py +++ b/test/test_dag_generic_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_generic_output.py b/test/test_dag_generic_output.py index f4d24430..599883e7 100644 --- a/test/test_dag_generic_output.py +++ b/test/test_dag_generic_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_generic_output_alias.py b/test/test_dag_generic_output_alias.py index e3e919d3..eb8e192d 100644 --- a/test/test_dag_generic_output_alias.py +++ b/test/test_dag_generic_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_integer_input.py b/test/test_dag_integer_input.py index 8db6842f..ce7242e1 100644 --- a/test/test_dag_integer_input.py +++ b/test/test_dag_integer_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_integer_input_alias.py b/test/test_dag_integer_input_alias.py index 4ac03f3f..3460431b 100644 --- a/test/test_dag_integer_input_alias.py +++ b/test/test_dag_integer_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_integer_output.py b/test/test_dag_integer_output.py index 0aafc20d..2109968b 100644 --- a/test/test_dag_integer_output.py +++ b/test/test_dag_integer_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_integer_output_alias.py b/test/test_dag_integer_output_alias.py index 5a30c5e8..0a21832c 100644 --- a/test/test_dag_integer_output_alias.py +++ b/test/test_dag_integer_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_linked_input_alias.py b/test/test_dag_linked_input_alias.py index 482c61d1..cdc539d1 100644 --- a/test/test_dag_linked_input_alias.py +++ b/test/test_dag_linked_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_linked_output_alias.py b/test/test_dag_linked_output_alias.py index d34e2bc4..86c51833 100644 --- a/test/test_dag_linked_output_alias.py +++ b/test/test_dag_linked_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_number_input.py b/test/test_dag_number_input.py index efe59d0e..2964fc3c 100644 --- a/test/test_dag_number_input.py +++ b/test/test_dag_number_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_number_input_alias.py b/test/test_dag_number_input_alias.py index bffc2fe5..e1623529 100644 --- a/test/test_dag_number_input_alias.py +++ b/test/test_dag_number_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_number_output.py b/test/test_dag_number_output.py index be6ee8b8..15fc9ff5 100644 --- a/test/test_dag_number_output.py +++ b/test/test_dag_number_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_number_output_alias.py b/test/test_dag_number_output_alias.py index 94863f67..ef0149a9 100644 --- a/test/test_dag_number_output_alias.py +++ b/test/test_dag_number_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_path_input.py b/test/test_dag_path_input.py index 646f6e91..d9a61426 100644 --- a/test/test_dag_path_input.py +++ b/test/test_dag_path_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_path_input_alias.py b/test/test_dag_path_input_alias.py index 3fdd022f..b5e5b658 100644 --- a/test/test_dag_path_input_alias.py +++ b/test/test_dag_path_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_path_output.py b/test/test_dag_path_output.py index 0effccb5..2b3ab1ff 100644 --- a/test/test_dag_path_output.py +++ b/test/test_dag_path_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_path_output_alias.py b/test/test_dag_path_output_alias.py index 57c5adf4..f6c8924f 100644 --- a/test/test_dag_path_output_alias.py +++ b/test/test_dag_path_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_string_input.py b/test/test_dag_string_input.py index 222fe20d..bd27e943 100644 --- a/test/test_dag_string_input.py +++ b/test/test_dag_string_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_string_input_alias.py b/test/test_dag_string_input_alias.py index 3173b59e..4c758e1a 100644 --- a/test/test_dag_string_input_alias.py +++ b/test/test_dag_string_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_string_output.py b/test/test_dag_string_output.py index 8c364ce8..80ccb041 100644 --- a/test/test_dag_string_output.py +++ b/test/test_dag_string_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_string_output_alias.py b/test/test_dag_string_output_alias.py index 271f5d42..224d5635 100644 --- a/test/test_dag_string_output_alias.py +++ b/test/test_dag_string_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_task.py b/test/test_dag_task.py index 2eb08c35..5075096f 100644 --- a/test/test_dag_task.py +++ b/test/test_dag_task.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dag_task_loop.py b/test/test_dag_task_loop.py index 66a7fc02..b8ce8f85 100644 --- a/test/test_dag_task_loop.py +++ b/test/test_dag_task_loop.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dagjson_object_input.py b/test/test_dagjson_object_input.py index 867219c8..0b157395 100644 --- a/test/test_dagjson_object_input.py +++ b/test/test_dagjson_object_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dagjson_object_input_alias.py b/test/test_dagjson_object_input_alias.py index 003908a9..cba92393 100644 --- a/test/test_dagjson_object_input_alias.py +++ b/test/test_dagjson_object_input_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dagjson_object_output.py b/test/test_dagjson_object_output.py index ebe5eb1d..7ba62a11 100644 --- a/test/test_dagjson_object_output.py +++ b/test/test_dagjson_object_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dagjson_object_output_alias.py b/test/test_dagjson_object_output_alias.py index 6d85b3dc..7d413725 100644 --- a/test/test_dagjson_object_output_alias.py +++ b/test/test_dagjson_object_output_alias.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_daily_usage.py b/test/test_daily_usage.py index 9cd0c10f..84ea6ef6 100644 --- a/test/test_daily_usage.py +++ b/test/test_daily_usage.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dependency.py b/test/test_dependency.py index 315a34f1..30adf642 100644 --- a/test/test_dependency.py +++ b/test/test_dependency.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_dependency_kind.py b/test/test_dependency_kind.py index a2d843ff..98ad2f5b 100644 --- a/test/test_dependency_kind.py +++ b/test/test_dependency_kind.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_deployment_config.py b/test/test_deployment_config.py index 89c40910..40f29cda 100644 --- a/test/test_deployment_config.py +++ b/test/test_deployment_config.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_docker_config.py b/test/test_docker_config.py index 03c3b629..ab1a2a3b 100644 --- a/test/test_docker_config.py +++ b/test/test_docker_config.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_file_meta.py b/test/test_file_meta.py index 855480a5..c2341fe4 100644 --- a/test/test_file_meta.py +++ b/test/test_file_meta.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_file_meta_list.py b/test/test_file_meta_list.py new file mode 100644 index 00000000..766f695e --- /dev/null +++ b/test/test_file_meta_list.py @@ -0,0 +1,77 @@ +# coding: utf-8 + +""" + pollination-server + + Pollination Server OpenAPI Definition # noqa: E501 + + The version of the OpenAPI document: 1.0.0 + Contact: info@pollination.cloud + Generated by: https://openapi-generator.tech +""" + + +from __future__ import absolute_import + +import unittest +import datetime + +import pollination_sdk +from pollination_sdk.models.file_meta_list import FileMetaList # noqa: E501 +from pollination_sdk.rest import ApiException + +class TestFileMetaList(unittest.TestCase): + """FileMetaList unit test stubs""" + + def setUp(self): + pass + + def tearDown(self): + pass + + def make_instance(self, include_optional): + """Test FileMetaList + include_option is a boolean, when False only required + params are included, when True both required and + optional params are included """ + # model = pollination_sdk.models.file_meta_list.FileMetaList() # noqa: E501 + if include_optional : + return FileMetaList( + next_page = 56, + page = 56, + page_count = 56, + per_page = 56, + resources = [ + pollination_sdk.models.file_meta.FileMeta( + file_name = '0', + file_type = '0', + key = '0', + last_modified = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), + size = 56, ) + ], + total_count = 56 + ) + else : + return FileMetaList( + page = 56, + page_count = 56, + per_page = 56, + resources = [ + pollination_sdk.models.file_meta.FileMeta( + file_name = '0', + file_type = '0', + key = '0', + last_modified = datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'), + size = 56, ) + ], + total_count = 56, + ) + + def testFileMetaList(self): + """Test FileMetaList""" + inst_req_only = self.make_instance(include_optional=False) + inst_req_and_optional = self.make_instance(include_optional=True) + + +if __name__ == '__main__': + unittest.main() diff --git a/test/test_file_reference.py b/test/test_file_reference.py index be77f1b3..9712eae8 100644 --- a/test/test_file_reference.py +++ b/test/test_file_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_folder_reference.py b/test/test_folder_reference.py index c59735be..39ad6429 100644 --- a/test/test_folder_reference.py +++ b/test/test_folder_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function.py b/test/test_function.py index 86e04dde..d03fb1b6 100644 --- a/test/test_function.py +++ b/test/test_function.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_array_input.py b/test/test_function_array_input.py index 28b60dbe..f282e04b 100644 --- a/test/test_function_array_input.py +++ b/test/test_function_array_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_array_output.py b/test/test_function_array_output.py index 24b87a74..c9fe160d 100644 --- a/test/test_function_array_output.py +++ b/test/test_function_array_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_boolean_input.py b/test/test_function_boolean_input.py index 42d6b3c3..d336821d 100644 --- a/test/test_function_boolean_input.py +++ b/test/test_function_boolean_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_boolean_output.py b/test/test_function_boolean_output.py index b4424678..62530bc8 100644 --- a/test/test_function_boolean_output.py +++ b/test/test_function_boolean_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_file_input.py b/test/test_function_file_input.py index 02894b2e..673ed8c7 100644 --- a/test/test_function_file_input.py +++ b/test/test_function_file_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_file_output.py b/test/test_function_file_output.py index d27226e2..feeaf2d6 100644 --- a/test/test_function_file_output.py +++ b/test/test_function_file_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_folder_input.py b/test/test_function_folder_input.py index e2cec4c9..975fbe8b 100644 --- a/test/test_function_folder_input.py +++ b/test/test_function_folder_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_folder_output.py b/test/test_function_folder_output.py index 670c602f..acb17db1 100644 --- a/test/test_function_folder_output.py +++ b/test/test_function_folder_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_integer_input.py b/test/test_function_integer_input.py index 13e61977..98a7b21f 100644 --- a/test/test_function_integer_input.py +++ b/test/test_function_integer_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_integer_output.py b/test/test_function_integer_output.py index 593a5fbf..0a1da708 100644 --- a/test/test_function_integer_output.py +++ b/test/test_function_integer_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_json_object_input.py b/test/test_function_json_object_input.py index d2a02e5a..cd5f9654 100644 --- a/test/test_function_json_object_input.py +++ b/test/test_function_json_object_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_json_object_output.py b/test/test_function_json_object_output.py index 976f17a2..a1f9d44d 100644 --- a/test/test_function_json_object_output.py +++ b/test/test_function_json_object_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_number_input.py b/test/test_function_number_input.py index 7ec4e111..28707160 100644 --- a/test/test_function_number_input.py +++ b/test/test_function_number_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_number_output.py b/test/test_function_number_output.py index 4437a5b7..abccf42a 100644 --- a/test/test_function_number_output.py +++ b/test/test_function_number_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_path_input.py b/test/test_function_path_input.py index 7a79c979..8bd0c416 100644 --- a/test/test_function_path_input.py +++ b/test/test_function_path_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_path_output.py b/test/test_function_path_output.py index 289c0f1a..493bc476 100644 --- a/test/test_function_path_output.py +++ b/test/test_function_path_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_string_input.py b/test/test_function_string_input.py index fde1e6bb..55ebb70a 100644 --- a/test/test_function_string_input.py +++ b/test/test_function_string_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_function_string_output.py b/test/test_function_string_output.py index 6ebbbd9a..89c91c0c 100644 --- a/test/test_function_string_output.py +++ b/test/test_function_string_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_http.py b/test/test_http.py index 99184e64..d402c35c 100644 --- a/test/test_http.py +++ b/test/test_http.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_http_validation_error.py b/test/test_http_validation_error.py index 334ec8cc..5ebe8c57 100644 --- a/test/test_http_validation_error.py +++ b/test/test_http_validation_error.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_input_file_reference.py b/test/test_input_file_reference.py index c2b7b85c..01e3def7 100644 --- a/test/test_input_file_reference.py +++ b/test/test_input_file_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_input_folder_reference.py b/test/test_input_folder_reference.py index 0dd4f48e..a9fae2e7 100644 --- a/test/test_input_folder_reference.py +++ b/test/test_input_folder_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_input_path_reference.py b/test/test_input_path_reference.py index 48065329..20d57122 100644 --- a/test/test_input_path_reference.py +++ b/test/test_input_path_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_input_reference.py b/test/test_input_reference.py index 2141225c..960fd607 100644 --- a/test/test_input_reference.py +++ b/test/test_input_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_io_alias_handler.py b/test/test_io_alias_handler.py index 0010ddab..161fd074 100644 --- a/test/test_io_alias_handler.py +++ b/test/test_io_alias_handler.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_item_reference.py b/test/test_item_reference.py index 07eeff95..decdab54 100644 --- a/test/test_item_reference.py +++ b/test/test_item_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_item_type.py b/test/test_item_type.py index 39467e9b..d86d755c 100644 --- a/test/test_item_type.py +++ b/test/test_item_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_job.py b/test/test_job.py index aecbc662..8dc7dad9 100644 --- a/test/test_job.py +++ b/test/test_job.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_job_argument.py b/test/test_job_argument.py index b4d7b972..c4eedef5 100644 --- a/test/test_job_argument.py +++ b/test/test_job_argument.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_job_path_argument.py b/test/test_job_path_argument.py index e03c12dc..56633767 100644 --- a/test/test_job_path_argument.py +++ b/test/test_job_path_argument.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_job_status.py b/test/test_job_status.py index 340718dc..a33efa1c 100644 --- a/test/test_job_status.py +++ b/test/test_job_status.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_job_status_enum.py b/test/test_job_status_enum.py index 26886c71..597a0a45 100644 --- a/test/test_job_status_enum.py +++ b/test/test_job_status_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_jobs_api.py b/test/test_jobs_api.py index 614981bb..dc82e8e1 100644 --- a/test/test_jobs_api.py +++ b/test/test_jobs_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_key_request.py b/test/test_key_request.py index db810c14..eabd67a9 100644 --- a/test/test_key_request.py +++ b/test/test_key_request.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_license.py b/test/test_license.py index b04760cf..454ff9e1 100644 --- a/test/test_license.py +++ b/test/test_license.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_license_pool_access_policy.py b/test/test_license_pool_access_policy.py index 7a723200..2937c119 100644 --- a/test/test_license_pool_access_policy.py +++ b/test/test_license_pool_access_policy.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_license_pool_access_policy_list.py b/test/test_license_pool_access_policy_list.py index 8ee22e7d..662973f0 100644 --- a/test/test_license_pool_access_policy_list.py +++ b/test/test_license_pool_access_policy_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_license_pool_list.py b/test/test_license_pool_list.py index 681e229c..d2d93462 100644 --- a/test/test_license_pool_list.py +++ b/test/test_license_pool_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_license_pool_policy_subject.py b/test/test_license_pool_policy_subject.py index 570674cb..7c5d0664 100644 --- a/test/test_license_pool_policy_subject.py +++ b/test/test_license_pool_policy_subject.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_license_pool_policy_subject_list.py b/test/test_license_pool_policy_subject_list.py index c1fea4d8..2fcc8c5d 100644 --- a/test/test_license_pool_policy_subject_list.py +++ b/test/test_license_pool_policy_subject_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_license_pool_public.py b/test/test_license_pool_public.py index ff371c52..c8d6330e 100644 --- a/test/test_license_pool_public.py +++ b/test/test_license_pool_public.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_license_pool_update.py b/test/test_license_pool_update.py index b0b95eba..22136a8d 100644 --- a/test/test_license_pool_update.py +++ b/test/test_license_pool_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_license_public.py b/test/test_license_public.py index fbd08b76..2d2c47cc 100644 --- a/test/test_license_public.py +++ b/test/test_license_public.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_license_type.py b/test/test_license_type.py index a456d088..ae9ff817 100644 --- a/test/test_license_type.py +++ b/test/test_license_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_licenses_api.py b/test/test_licenses_api.py index b1d8d10e..7d22d90c 100644 --- a/test/test_licenses_api.py +++ b/test/test_licenses_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_local_config.py b/test/test_local_config.py index 15d91286..cadbd605 100644 --- a/test/test_local_config.py +++ b/test/test_local_config.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_location.py b/test/test_location.py index 4fd00a0d..a41047aa 100644 --- a/test/test_location.py +++ b/test/test_location.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_maintainer.py b/test/test_maintainer.py index e118cc15..d858b64c 100644 --- a/test/test_maintainer.py +++ b/test/test_maintainer.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_meta_data.py b/test/test_meta_data.py index 677937d2..002ddd60 100644 --- a/test/test_meta_data.py +++ b/test/test_meta_data.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_metadata.py b/test/test_metadata.py index 7249d081..e859bd9f 100644 --- a/test/test_metadata.py +++ b/test/test_metadata.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_new_application_version.py b/test/test_new_application_version.py index a49a4686..1558972e 100644 --- a/test/test_new_application_version.py +++ b/test/test_new_application_version.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_new_plugin_package.py b/test/test_new_plugin_package.py index 43037dab..2dbda910 100644 --- a/test/test_new_plugin_package.py +++ b/test/test_new_plugin_package.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_new_recipe_package.py b/test/test_new_recipe_package.py index 54e74c10..3b24db1a 100644 --- a/test/test_new_recipe_package.py +++ b/test/test_new_recipe_package.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_organization.py b/test/test_organization.py index cda82011..e3dbb0d2 100644 --- a/test/test_organization.py +++ b/test/test_organization.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_organization_create.py b/test/test_organization_create.py index 87f30a13..34f0d43a 100644 --- a/test/test_organization_create.py +++ b/test/test_organization_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_organization_list.py b/test/test_organization_list.py index dd58b108..ad02eb2e 100644 --- a/test/test_organization_list.py +++ b/test/test_organization_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_organization_member.py b/test/test_organization_member.py index c678505f..fc1b29df 100644 --- a/test/test_organization_member.py +++ b/test/test_organization_member.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_organization_member_list.py b/test/test_organization_member_list.py index 97dd5ff6..9f3b13a9 100644 --- a/test/test_organization_member_list.py +++ b/test/test_organization_member_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_organization_role_enum.py b/test/test_organization_role_enum.py index 2ab73f91..ed544d24 100644 --- a/test/test_organization_role_enum.py +++ b/test/test_organization_role_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_organization_update.py b/test/test_organization_update.py index 059e1567..ceefce3d 100644 --- a/test/test_organization_update.py +++ b/test/test_organization_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_orgs_api.py b/test/test_orgs_api.py index 925c23a1..7ca33ddb 100644 --- a/test/test_orgs_api.py +++ b/test/test_orgs_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_package_sort_key.py b/test/test_package_sort_key.py index 393fdb09..24593f51 100644 --- a/test/test_package_sort_key.py +++ b/test/test_package_sort_key.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_package_version.py b/test/test_package_version.py index a49cd650..9a4cbcb5 100644 --- a/test/test_package_version.py +++ b/test/test_package_version.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_paused_reason.py b/test/test_paused_reason.py index 7b40d414..c2783749 100644 --- a/test/test_paused_reason.py +++ b/test/test_paused_reason.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_pay_link.py b/test/test_pay_link.py index 25e67d1e..fd333bc0 100644 --- a/test/test_pay_link.py +++ b/test/test_pay_link.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_payment.py b/test/test_payment.py index a7d836fb..7a89746e 100644 --- a/test/test_payment.py +++ b/test/test_payment.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_payment_method.py b/test/test_payment_method.py index 4b782b4b..e5669e71 100644 --- a/test/test_payment_method.py +++ b/test/test_payment_method.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_payment_method_enum.py b/test/test_payment_method_enum.py index 33244822..6cb06aea 100644 --- a/test/test_payment_method_enum.py +++ b/test/test_payment_method_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_permission.py b/test/test_permission.py index aed1e258..38d80d1b 100644 --- a/test/test_permission.py +++ b/test/test_permission.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_plan_type.py b/test/test_plan_type.py index 954ad016..5377b958 100644 --- a/test/test_plan_type.py +++ b/test/test_plan_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_plugin.py b/test/test_plugin.py index 3e5bb62b..4239cf81 100644 --- a/test/test_plugin.py +++ b/test/test_plugin.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_plugin_config.py b/test/test_plugin_config.py index b074f724..01548416 100644 --- a/test/test_plugin_config.py +++ b/test/test_plugin_config.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_plugin_package.py b/test/test_plugin_package.py index fb892118..f68f4784 100644 --- a/test/test_plugin_package.py +++ b/test/test_plugin_package.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_plugin_package_list.py b/test/test_plugin_package_list.py index 42d5e271..6a81cc3b 100644 --- a/test/test_plugin_package_list.py +++ b/test/test_plugin_package_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_plugins_api.py b/test/test_plugins_api.py index 6023345c..37fc63a6 100644 --- a/test/test_plugins_api.py +++ b/test/test_plugins_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_policy_subject.py b/test/test_policy_subject.py index 6b00b424..62836f1a 100644 --- a/test/test_policy_subject.py +++ b/test/test_policy_subject.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project.py b/test/test_project.py index 69b37f7b..d557e3c0 100644 --- a/test/test_project.py +++ b/test/test_project.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project_access_policy.py b/test/test_project_access_policy.py index 6724ee3a..2677b6b3 100644 --- a/test/test_project_access_policy.py +++ b/test/test_project_access_policy.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project_access_policy_list.py b/test/test_project_access_policy_list.py index b70d6ad0..ba368e01 100644 --- a/test/test_project_access_policy_list.py +++ b/test/test_project_access_policy_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project_create.py b/test/test_project_create.py index d41ef3e4..0080f2ef 100644 --- a/test/test_project_create.py +++ b/test/test_project_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project_folder.py b/test/test_project_folder.py index a1f15148..0e11cf39 100644 --- a/test/test_project_folder.py +++ b/test/test_project_folder.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project_list.py b/test/test_project_list.py index a56cdab6..6294f05d 100644 --- a/test/test_project_list.py +++ b/test/test_project_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project_policy_subject.py b/test/test_project_policy_subject.py index 0d523d4e..108d044e 100644 --- a/test/test_project_policy_subject.py +++ b/test/test_project_policy_subject.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project_recipe_filter.py b/test/test_project_recipe_filter.py index 8a69a0d1..1831f309 100644 --- a/test/test_project_recipe_filter.py +++ b/test/test_project_recipe_filter.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project_recipe_filter_list.py b/test/test_project_recipe_filter_list.py index b43a5224..dee28bc1 100644 --- a/test/test_project_recipe_filter_list.py +++ b/test/test_project_recipe_filter_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project_sort_key.py b/test/test_project_sort_key.py index e6e94bf8..747ea60c 100644 --- a/test/test_project_sort_key.py +++ b/test/test_project_sort_key.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_project_update.py b/test/test_project_update.py index 5b65cff4..2420df72 100644 --- a/test/test_project_update.py +++ b/test/test_project_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_projects_api.py b/test/test_projects_api.py index e5f1b0a3..7ec20fd1 100644 --- a/test/test_projects_api.py +++ b/test/test_projects_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_public_account_list.py b/test/test_public_account_list.py index 17ca9101..7d79ba05 100644 --- a/test/test_public_account_list.py +++ b/test/test_public_account_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_quota.py b/test/test_quota.py index 78d145bb..a9fe9b6b 100644 --- a/test/test_quota.py +++ b/test/test_quota.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_quota_list.py b/test/test_quota_list.py index 5deb0fc9..04514cc6 100644 --- a/test/test_quota_list.py +++ b/test/test_quota_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_quota_plan.py b/test/test_quota_plan.py index f5c7ac8f..c754685b 100644 --- a/test/test_quota_plan.py +++ b/test/test_quota_plan.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_quota_type.py b/test/test_quota_type.py index 85431c33..96c77a57 100644 --- a/test/test_quota_type.py +++ b/test/test_quota_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_recipe.py b/test/test_recipe.py index 8d9ec1b2..3fbe6b69 100644 --- a/test/test_recipe.py +++ b/test/test_recipe.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_recipe_interface.py b/test/test_recipe_interface.py index 775e56ad..f30146c5 100644 --- a/test/test_recipe_interface.py +++ b/test/test_recipe_interface.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_recipe_interface_list.py b/test/test_recipe_interface_list.py index baef4cea..11a33b04 100644 --- a/test/test_recipe_interface_list.py +++ b/test/test_recipe_interface_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_recipe_package.py b/test/test_recipe_package.py index 610809b0..1448b182 100644 --- a/test/test_recipe_package.py +++ b/test/test_recipe_package.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_recipe_package_list.py b/test/test_recipe_package_list.py index 99594fc7..f96d4afd 100644 --- a/test/test_recipe_package_list.py +++ b/test/test_recipe_package_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_recipes_api.py b/test/test_recipes_api.py index 7d11d8d4..584d8dc0 100644 --- a/test/test_recipes_api.py +++ b/test/test_recipes_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_registries_api.py b/test/test_registries_api.py index 587eda79..478a810f 100644 --- a/test/test_registries_api.py +++ b/test/test_registries_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository.py b/test/test_repository.py index a20c9bc8..68ca69d5 100644 --- a/test/test_repository.py +++ b/test/test_repository.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository_access_policy.py b/test/test_repository_access_policy.py index d6edb432..9e8f43d1 100644 --- a/test/test_repository_access_policy.py +++ b/test/test_repository_access_policy.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository_access_policy_list.py b/test/test_repository_access_policy_list.py index 5ec957bf..a6f2da01 100644 --- a/test/test_repository_access_policy_list.py +++ b/test/test_repository_access_policy_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository_create.py b/test/test_repository_create.py index 4bb89d1d..818e7e6b 100644 --- a/test/test_repository_create.py +++ b/test/test_repository_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository_index.py b/test/test_repository_index.py index 24b0cacd..d3d6953a 100644 --- a/test/test_repository_index.py +++ b/test/test_repository_index.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository_list.py b/test/test_repository_list.py index 83b936a5..3fd529d8 100644 --- a/test/test_repository_list.py +++ b/test/test_repository_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository_metadata.py b/test/test_repository_metadata.py index d5dc66f8..4fb0b5b2 100644 --- a/test/test_repository_metadata.py +++ b/test/test_repository_metadata.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository_policy_subject.py b/test/test_repository_policy_subject.py index cf0bfdb7..5b7ab91a 100644 --- a/test/test_repository_policy_subject.py +++ b/test/test_repository_policy_subject.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository_sort_key.py b/test/test_repository_sort_key.py index 382f258a..2607d428 100644 --- a/test/test_repository_sort_key.py +++ b/test/test_repository_sort_key.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository_update.py b/test/test_repository_update.py index 2ed336d6..e9eea418 100644 --- a/test/test_repository_update.py +++ b/test/test_repository_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_repository_user_permissions.py b/test/test_repository_user_permissions.py index 2ee29cfb..3d594267 100644 --- a/test/test_repository_user_permissions.py +++ b/test/test_repository_user_permissions.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_resources_duration.py b/test/test_resources_duration.py index 3547910d..60662048 100644 --- a/test/test_resources_duration.py +++ b/test/test_resources_duration.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_retry_config.py b/test/test_retry_config.py index 075b63d7..35a4e987 100644 --- a/test/test_retry_config.py +++ b/test/test_retry_config.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_role_enum.py b/test/test_role_enum.py index 1f1424b4..644fad39 100644 --- a/test/test_role_enum.py +++ b/test/test_role_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_run.py b/test/test_run.py index 55f77b6f..ea16d848 100644 --- a/test/test_run.py +++ b/test/test_run.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_run_list.py b/test/test_run_list.py index 74466611..3cef5a35 100644 --- a/test/test_run_list.py +++ b/test/test_run_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_run_meta.py b/test/test_run_meta.py index 3ece1385..d5c03c95 100644 --- a/test/test_run_meta.py +++ b/test/test_run_meta.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_run_progress.py b/test/test_run_progress.py index 0e079549..1bd0a4c1 100644 --- a/test/test_run_progress.py +++ b/test/test_run_progress.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_run_result_list.py b/test/test_run_result_list.py index 94bd6cef..fa1af936 100644 --- a/test/test_run_result_list.py +++ b/test/test_run_result_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_run_status.py b/test/test_run_status.py index 68fb93ff..74e51c92 100644 --- a/test/test_run_status.py +++ b/test/test_run_status.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_run_status_enum.py b/test/test_run_status_enum.py index b6e40376..b9902481 100644 --- a/test/test_run_status_enum.py +++ b/test/test_run_status_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_runs_api.py b/test/test_runs_api.py index dc23be0f..170f4ce3 100644 --- a/test/test_runs_api.py +++ b/test/test_runs_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_s3.py b/test/test_s3.py index 2f3b2883..95e77982 100644 --- a/test/test_s3.py +++ b/test/test_s3.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_s3_upload_request.py b/test/test_s3_upload_request.py index 1f2d1035..406b934f 100644 --- a/test/test_s3_upload_request.py +++ b/test/test_s3_upload_request.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_scripting_languages.py b/test/test_scripting_languages.py index a23d63b4..fd484323 100644 --- a/test/test_scripting_languages.py +++ b/test/test_scripting_languages.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_sdk_enum.py b/test/test_sdk_enum.py index 31149019..112ccff6 100644 --- a/test/test_sdk_enum.py +++ b/test/test_sdk_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_sort_enum.py b/test/test_sort_enum.py index e61947a6..e135a104 100644 --- a/test/test_sort_enum.py +++ b/test/test_sort_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_status_type.py b/test/test_status_type.py index 4a75fbcd..220e0ce3 100644 --- a/test/test_status_type.py +++ b/test/test_status_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_array_input.py b/test/test_step_array_input.py index ce943c2b..248e00ff 100644 --- a/test/test_step_array_input.py +++ b/test/test_step_array_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_array_output.py b/test/test_step_array_output.py index 1bd62f17..4b926bd6 100644 --- a/test/test_step_array_output.py +++ b/test/test_step_array_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_boolean_input.py b/test/test_step_boolean_input.py index b53dab31..c0e1d8cd 100644 --- a/test/test_step_boolean_input.py +++ b/test/test_step_boolean_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_boolean_output.py b/test/test_step_boolean_output.py index ec536a4c..7649481e 100644 --- a/test/test_step_boolean_output.py +++ b/test/test_step_boolean_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_file_input.py b/test/test_step_file_input.py index 4349bbc0..9de02195 100644 --- a/test/test_step_file_input.py +++ b/test/test_step_file_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_file_output.py b/test/test_step_file_output.py index 695d2962..0f9db193 100644 --- a/test/test_step_file_output.py +++ b/test/test_step_file_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_folder_input.py b/test/test_step_folder_input.py index 21f6959e..e1de715c 100644 --- a/test/test_step_folder_input.py +++ b/test/test_step_folder_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_folder_output.py b/test/test_step_folder_output.py index 172fc503..57fed019 100644 --- a/test/test_step_folder_output.py +++ b/test/test_step_folder_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_integer_input.py b/test/test_step_integer_input.py index fdee8084..288e57b4 100644 --- a/test/test_step_integer_input.py +++ b/test/test_step_integer_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_integer_output.py b/test/test_step_integer_output.py index 7728efd5..ba323e28 100644 --- a/test/test_step_integer_output.py +++ b/test/test_step_integer_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_json_object_input.py b/test/test_step_json_object_input.py index 6bbcf4e3..d0be51b1 100644 --- a/test/test_step_json_object_input.py +++ b/test/test_step_json_object_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_json_object_output.py b/test/test_step_json_object_output.py index 00924425..03176565 100644 --- a/test/test_step_json_object_output.py +++ b/test/test_step_json_object_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_list.py b/test/test_step_list.py index c5751598..9cac72ee 100644 --- a/test/test_step_list.py +++ b/test/test_step_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_number_input.py b/test/test_step_number_input.py index b1ca7417..c4d9493c 100644 --- a/test/test_step_number_input.py +++ b/test/test_step_number_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_number_output.py b/test/test_step_number_output.py index b10ec403..52a772b7 100644 --- a/test/test_step_number_output.py +++ b/test/test_step_number_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_path_input.py b/test/test_step_path_input.py index b77b0c44..f98bf155 100644 --- a/test/test_step_path_input.py +++ b/test/test_step_path_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_path_output.py b/test/test_step_path_output.py index eaa270d1..98a278cb 100644 --- a/test/test_step_path_output.py +++ b/test/test_step_path_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_status.py b/test/test_step_status.py index ebf1b481..7f4b2835 100644 --- a/test/test_step_status.py +++ b/test/test_step_status.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_status_enum.py b/test/test_step_status_enum.py index 5cf3a40a..f6bc8484 100644 --- a/test/test_step_status_enum.py +++ b/test/test_step_status_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_string_input.py b/test/test_step_string_input.py index dc8ad25f..0f83b581 100644 --- a/test/test_step_string_input.py +++ b/test/test_step_string_input.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_step_string_output.py b/test/test_step_string_output.py index 93748247..54a38821 100644 --- a/test/test_step_string_output.py +++ b/test/test_step_string_output.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_subject_type.py b/test/test_subject_type.py index 7a3224da..5820ba5e 100644 --- a/test/test_subject_type.py +++ b/test/test_subject_type.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_subscription.py b/test/test_subscription.py index 37fa0737..6329b2ab 100644 --- a/test/test_subscription.py +++ b/test/test_subscription.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_subscription_create.py b/test/test_subscription_create.py index 1936c019..e1b3a16a 100644 --- a/test/test_subscription_create.py +++ b/test/test_subscription_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_subscription_payment.py b/test/test_subscription_payment.py index 5fa72bdb..a88e234d 100644 --- a/test/test_subscription_payment.py +++ b/test/test_subscription_payment.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_subscription_plan.py b/test/test_subscription_plan.py index 9dcf2f98..5da7aaa1 100644 --- a/test/test_subscription_plan.py +++ b/test/test_subscription_plan.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_subscription_plans_api.py b/test/test_subscription_plans_api.py index dfd7bbe8..6a580722 100644 --- a/test/test_subscription_plans_api.py +++ b/test/test_subscription_plans_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_subscription_update.py b/test/test_subscription_update.py index 345f05e7..2fb017d1 100644 --- a/test/test_subscription_update.py +++ b/test/test_subscription_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_subscription_update_dry_run.py b/test/test_subscription_update_dry_run.py index 75c50d70..fb0059b0 100644 --- a/test/test_subscription_update_dry_run.py +++ b/test/test_subscription_update_dry_run.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_subscriptions_api.py b/test/test_subscriptions_api.py index 9aa4f4b4..298b48bc 100644 --- a/test/test_subscriptions_api.py +++ b/test/test_subscriptions_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_task_argument.py b/test/test_task_argument.py index 9e08fe0c..a890c98f 100644 --- a/test/test_task_argument.py +++ b/test/test_task_argument.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_task_file_reference.py b/test/test_task_file_reference.py index 9a9cdac1..8c10f75a 100644 --- a/test/test_task_file_reference.py +++ b/test/test_task_file_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_task_folder_reference.py b/test/test_task_folder_reference.py index 8e51050d..a0c52219 100644 --- a/test/test_task_folder_reference.py +++ b/test/test_task_folder_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_task_path_argument.py b/test/test_task_path_argument.py index 8a612b7a..c9f1a29d 100644 --- a/test/test_task_path_argument.py +++ b/test/test_task_path_argument.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_task_path_reference.py b/test/test_task_path_reference.py index bf0dd257..4285a77d 100644 --- a/test/test_task_path_reference.py +++ b/test/test_task_path_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_task_path_return.py b/test/test_task_path_return.py index 5d135ca4..ac7bee4c 100644 --- a/test/test_task_path_return.py +++ b/test/test_task_path_return.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_task_reference.py b/test/test_task_reference.py index 06dd9f9b..f2c0999f 100644 --- a/test/test_task_reference.py +++ b/test/test_task_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_task_return.py b/test/test_task_return.py index c356ddd1..54f5b7e1 100644 --- a/test/test_task_return.py +++ b/test/test_task_return.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_team.py b/test/test_team.py index e11e232f..ec22a4c0 100644 --- a/test/test_team.py +++ b/test/test_team.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_team_create.py b/test/test_team_create.py index 632ade80..4e3cc352 100644 --- a/test/test_team_create.py +++ b/test/test_team_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_team_list.py b/test/test_team_list.py index b1ed4163..2b1c58b4 100644 --- a/test/test_team_list.py +++ b/test/test_team_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_team_member.py b/test/test_team_member.py index 71212b96..497fd763 100644 --- a/test/test_team_member.py +++ b/test/test_team_member.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_team_member_list.py b/test/test_team_member_list.py index 8edb499a..c27fb3c0 100644 --- a/test/test_team_member_list.py +++ b/test/test_team_member_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_team_role_enum.py b/test/test_team_role_enum.py index 6a5fb6fb..bc807ae1 100644 --- a/test/test_team_role_enum.py +++ b/test/test_team_role_enum.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_team_update.py b/test/test_team_update.py index 72b571ce..b80c5861 100644 --- a/test/test_team_update.py +++ b/test/test_team_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_teams_api.py b/test/test_teams_api.py index 4709e61c..e9fde2bc 100644 --- a/test/test_teams_api.py +++ b/test/test_teams_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_template_function.py b/test/test_template_function.py index 87db0e8f..f089e2e8 100644 --- a/test/test_template_function.py +++ b/test/test_template_function.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_update_accepted.py b/test/test_update_accepted.py index 52f26946..72ef1e78 100644 --- a/test/test_update_accepted.py +++ b/test/test_update_accepted.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_usage.py b/test/test_usage.py index d2cfb5ac..ee7687ad 100644 --- a/test/test_usage.py +++ b/test/test_usage.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_user_api.py b/test/test_user_api.py index e9e0b30d..618f02da 100644 --- a/test/test_user_api.py +++ b/test/test_user_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_user_create.py b/test/test_user_create.py index e37e1033..db86a38c 100644 --- a/test/test_user_create.py +++ b/test/test_user_create.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_user_permission.py b/test/test_user_permission.py index 73cba376..85cc561e 100644 --- a/test/test_user_permission.py +++ b/test/test_user_permission.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_user_private.py b/test/test_user_private.py index 282912cf..0c53b595 100644 --- a/test/test_user_private.py +++ b/test/test_user_private.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_user_public.py b/test/test_user_public.py index fdc329c0..194849a0 100644 --- a/test/test_user_public.py +++ b/test/test_user_public.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_user_public_list.py b/test/test_user_public_list.py index 33254476..e9c59e0d 100644 --- a/test/test_user_public_list.py +++ b/test/test_user_public_list.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_user_update.py b/test/test_user_update.py index 01513104..af4e411b 100644 --- a/test/test_user_update.py +++ b/test/test_user_update.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_users_api.py b/test/test_users_api.py index 720d768e..317d7446 100644 --- a/test/test_users_api.py +++ b/test/test_users_api.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_validation_error.py b/test/test_validation_error.py index bb6001eb..b0f263a4 100644 --- a/test/test_validation_error.py +++ b/test/test_validation_error.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_value_file_reference.py b/test/test_value_file_reference.py index 56102ec9..463c717f 100644 --- a/test/test_value_file_reference.py +++ b/test/test_value_file_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_value_folder_reference.py b/test/test_value_folder_reference.py index 47ab11d8..59625414 100644 --- a/test/test_value_folder_reference.py +++ b/test/test_value_folder_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_value_list_reference.py b/test/test_value_list_reference.py index 29e6cf81..e5a950c6 100644 --- a/test/test_value_list_reference.py +++ b/test/test_value_list_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """ diff --git a/test/test_value_reference.py b/test/test_value_reference.py index cd78d9a2..c4da9a0d 100644 --- a/test/test_value_reference.py +++ b/test/test_value_reference.py @@ -5,7 +5,7 @@ Pollination Server OpenAPI Definition # noqa: E501 - The version of the OpenAPI document: 0.47.0 + The version of the OpenAPI document: 1.0.0 Contact: info@pollination.cloud Generated by: https://openapi-generator.tech """