-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ladybugbot
committed
Jan 3, 2024
1 parent
839a45a
commit 74bee6c
Showing
574 changed files
with
951 additions
and
586 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,15 +7,15 @@ | |
Pollination Server OpenAPI Definition # noqa: E501 | ||
The version of the OpenAPI document: 0.47.0 | ||
The version of the OpenAPI document: 1.0.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
""" | ||
|
||
|
||
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
Pollination Server OpenAPI Definition # noqa: E501 | ||
The version of the OpenAPI document: 0.47.0 | ||
The version of the OpenAPI document: 1.0.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
Pollination Server OpenAPI Definition # noqa: E501 | ||
The version of the OpenAPI document: 0.47.0 | ||
The version of the OpenAPI document: 1.0.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
Pollination Server OpenAPI Definition # noqa: E501 | ||
The version of the OpenAPI document: 0.47.0 | ||
The version of the OpenAPI document: 1.0.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
Pollination Server OpenAPI Definition # noqa: E501 | ||
The version of the OpenAPI document: 0.47.0 | ||
The version of the OpenAPI document: 1.0.0 | ||
Contact: [email protected] | ||
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
Pollination Server OpenAPI Definition # noqa: E501 | ||
The version of the OpenAPI document: 0.47.0 | ||
The version of the OpenAPI document: 1.0.0 | ||
Contact: [email protected] | ||
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
Pollination Server OpenAPI Definition # noqa: E501 | ||
The version of the OpenAPI document: 0.47.0 | ||
The version of the OpenAPI document: 1.0.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
Pollination Server OpenAPI Definition # noqa: E501 | ||
The version of the OpenAPI document: 0.47.0 | ||
The version of the OpenAPI document: 1.0.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
Pollination Server OpenAPI Definition # noqa: E501 | ||
The version of the OpenAPI document: 0.47.0 | ||
The version of the OpenAPI document: 1.0.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
Pollination Server OpenAPI Definition # noqa: E501 | ||
The version of the OpenAPI document: 0.47.0 | ||
The version of the OpenAPI document: 1.0.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
Pollination Server OpenAPI Definition # noqa: E501 | ||
The version of the OpenAPI document: 0.47.0 | ||
The version of the OpenAPI document: 1.0.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
Pollination Server OpenAPI Definition # noqa: E501 | ||
The version of the OpenAPI document: 0.47.0 | ||
The version of the OpenAPI document: 1.0.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
Pollination Server OpenAPI Definition # noqa: E501 | ||
The version of the OpenAPI document: 0.47.0 | ||
The version of the OpenAPI document: 1.0.0 | ||
Contact: [email protected] | ||
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
Pollination Server OpenAPI Definition # noqa: E501 | ||
The version of the OpenAPI document: 0.47.0 | ||
The version of the OpenAPI document: 1.0.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
Pollination Server OpenAPI Definition # noqa: E501 | ||
The version of the OpenAPI document: 0.47.0 | ||
The version of the OpenAPI document: 1.0.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
Pollination Server OpenAPI Definition # noqa: E501 | ||
The version of the OpenAPI document: 0.47.0 | ||
The version of the OpenAPI document: 1.0.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
Pollination Server OpenAPI Definition # noqa: E501 | ||
The version of the OpenAPI document: 0.47.0 | ||
The version of the OpenAPI document: 1.0.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
Pollination Server OpenAPI Definition # noqa: E501 | ||
The version of the OpenAPI document: 0.47.0 | ||
The version of the OpenAPI document: 1.0.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: [email protected] | ||
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): | ||
|
Oops, something went wrong.