Metadata-Version: 2.1
Name: pollination-sdk
Version: 0.6.5
Summary: Pollination Server
Home-page: https://github.com/pollination/python-sdk
Author: Pollination Solutions
Author-email: pollination@solutions.cloud
License: UNKNOWN
Description: # pollination-sdk
        
        No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
        
        This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
        
        - API version: 0.5.25
        - Build package: org.openapitools.codegen.languages.PythonClientCodegen
        
        ## Requirements
        
        Python 2.7 and 3.4+
        
        ## Installation & Usage
        
        ### pip install
        
        The default way to install `pollination-sdk` is through PyPi as follows:
        
        ```sh
        pip install pollination-sdk
        ```
        
        If you need a specific branch you can install straight from the repository using:
        
        ```sh
        pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
        ```
        (you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
        
        Then import the package:
        ```python
        import pollination_sdk 
        ```
        
        ### Setuptools
        
        Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
        
        ```sh
        python setup.py install --user
        ```
        (or `sudo python setup.py install` to install the package for all users)
        
        Then import the package:
        ```python
        import pollination_sdk
        ```
        
        ## Getting Started
        
        Please follow the [installation procedure](#installation--usage) and then run the following:
        
        ```python
        from __future__ import print_function
        import time
        import pollination_sdk
        from pollination_sdk.rest import ApiException
        from pprint import pprint
        
        
        # Defining host is optional and default to http://localhost
        configuration.host = "http://localhost"
        # Create an instance of the API class
        api_instance = pollination_sdk.UsersApi(pollination_sdk.ApiClient(configuration))
        page = 1 # int | Page number starting from 1 (optional) (default to 1)
        per_page = 25 # int | Number of items per page (optional) (default to 25)
        name = 'name_example' # str | Name of the user to search for (optional)
        username = 'username_example' # str | Username of the user to search for (optional)
        id = [] # list[str] | A list of users to search for by their user ID (optional) (default to [])
        
        try:
            # List Users
            api_response = api_instance.list_users(page=page, per_page=per_page, name=name, username=username, id=id)
            pprint(api_response)
        except ApiException as e:
            print("Exception when calling UsersApi->list_users: %s\n" % e)
        
        ```
        
        ## Documentation for API Endpoints
        
        All URIs are relative to *http://localhost*
        
        Class | Method | HTTP request | Description
        ------------ | ------------- | ------------- | -------------
        *AccountsApi* | [**get_account**](https://github.com/pollination/python-sdk/blob/master/docs/AccountsApi.md#get_account) | **GET** /accounts/{name} | Get an account by name
        *ArtifactsApi* | [**create_artifact**](https://github.com/pollination/python-sdk/blob/master/docs/ArtifactsApi.md#create_artifact) | **POST** /projects/{owner}/{name}/artifacts | Get an Artifact upload link.
        *ArtifactsApi* | [**delete_artifact**](https://github.com/pollination/python-sdk/blob/master/docs/ArtifactsApi.md#delete_artifact) | **DELETE** /projects/{owner}/{name}/artifacts | Delete one or many artifacts by key/prefix
        *ArtifactsApi* | [**list_artifacts**](https://github.com/pollination/python-sdk/blob/master/docs/ArtifactsApi.md#list_artifacts) | **GET** /projects/{owner}/{name}/artifacts | List artifacts in a project folder
        *OperatorsApi* | [**create_operator**](https://github.com/pollination/python-sdk/blob/master/docs/OperatorsApi.md#create_operator) | **POST** /operators/{owner} | Create an Operator
        *OperatorsApi* | [**create_operator_package**](https://github.com/pollination/python-sdk/blob/master/docs/OperatorsApi.md#create_operator_package) | **POST** /operators/{owner}/{name}/tags | Create a new Operator package
        *OperatorsApi* | [**delete_operator**](https://github.com/pollination/python-sdk/blob/master/docs/OperatorsApi.md#delete_operator) | **DELETE** /operators/{owner}/{name} | Delete an Operator
        *OperatorsApi* | [**get_operator**](https://github.com/pollination/python-sdk/blob/master/docs/OperatorsApi.md#get_operator) | **GET** /operators/{owner}/{name} | Get an operator
        *OperatorsApi* | [**get_operator_tag**](https://github.com/pollination/python-sdk/blob/master/docs/OperatorsApi.md#get_operator_tag) | **GET** /operators/{owner}/{name}/tags/{tag} | Get an operator tag
        *OperatorsApi* | [**get_operator_tags**](https://github.com/pollination/python-sdk/blob/master/docs/OperatorsApi.md#get_operator_tags) | **GET** /operators/{owner}/{name}/tags | Get an operator tags
        *OperatorsApi* | [**list_operators**](https://github.com/pollination/python-sdk/blob/master/docs/OperatorsApi.md#list_operators) | **GET** /operators | List operators
        *OperatorsApi* | [**update_operator**](https://github.com/pollination/python-sdk/blob/master/docs/OperatorsApi.md#update_operator) | **PUT** /operators/{owner}/{name} | Update an Operator
        *OrgsApi* | [**create_org**](https://github.com/pollination/python-sdk/blob/master/docs/OrgsApi.md#create_org) | **POST** /orgs | Create an Org
        *OrgsApi* | [**delete_org**](https://github.com/pollination/python-sdk/blob/master/docs/OrgsApi.md#delete_org) | **DELETE** /orgs/{name} | Delete an Org
        *OrgsApi* | [**delete_org_member**](https://github.com/pollination/python-sdk/blob/master/docs/OrgsApi.md#delete_org_member) | **DELETE** /orgs/{name}/members/{username} | Remove an Org member
        *OrgsApi* | [**get_org**](https://github.com/pollination/python-sdk/blob/master/docs/OrgsApi.md#get_org) | **GET** /orgs/{name} | Get an Org
        *OrgsApi* | [**get_org_members**](https://github.com/pollination/python-sdk/blob/master/docs/OrgsApi.md#get_org_members) | **GET** /orgs/{name}/members | List an Org&#39;s members
        *OrgsApi* | [**list_orgs**](https://github.com/pollination/python-sdk/blob/master/docs/OrgsApi.md#list_orgs) | **GET** /orgs | List Orgs
        *OrgsApi* | [**update_org**](https://github.com/pollination/python-sdk/blob/master/docs/OrgsApi.md#update_org) | **PUT** /orgs/{name} | Update an Org
        *OrgsApi* | [**upsert_org_member**](https://github.com/pollination/python-sdk/blob/master/docs/OrgsApi.md#upsert_org_member) | **PATCH** /orgs/{name}/members/{username}/{role} | Add or update the role of an Org Member
        *ProjectsApi* | [**create_project**](https://github.com/pollination/python-sdk/blob/master/docs/ProjectsApi.md#create_project) | **POST** /projects/{owner} | Create a Project
        *ProjectsApi* | [**delete_project**](https://github.com/pollination/python-sdk/blob/master/docs/ProjectsApi.md#delete_project) | **DELETE** /projects/{owner}/{name} | Delete a Project
        *ProjectsApi* | [**delete_project_org_permission**](https://github.com/pollination/python-sdk/blob/master/docs/ProjectsApi.md#delete_project_org_permission) | **DELETE** /projects/{owner}/{name}/permissions | Remove a Project permissions
        *ProjectsApi* | [**get_project**](https://github.com/pollination/python-sdk/blob/master/docs/ProjectsApi.md#get_project) | **GET** /projects/{owner}/{name} | Get a project
        *ProjectsApi* | [**get_project_access_permissions**](https://github.com/pollination/python-sdk/blob/master/docs/ProjectsApi.md#get_project_access_permissions) | **GET** /projects/{owner}/{name}/permissions | Get a project&#39;s access permissions
        *ProjectsApi* | [**list_projects**](https://github.com/pollination/python-sdk/blob/master/docs/ProjectsApi.md#list_projects) | **GET** /projects | List Projects
        *ProjectsApi* | [**update**](https://github.com/pollination/python-sdk/blob/master/docs/ProjectsApi.md#update) | **PUT** /projects/{owner}/{name} | Update a Project
        *ProjectsApi* | [**upsert_project_permission**](https://github.com/pollination/python-sdk/blob/master/docs/ProjectsApi.md#upsert_project_permission) | **PATCH** /projects/{owner}/{name}/permissions | Upsert a new permission to a project
        *RecipesApi* | [**create_recipe**](https://github.com/pollination/python-sdk/blob/master/docs/RecipesApi.md#create_recipe) | **POST** /recipes/{owner} | Create a Recipe
        *RecipesApi* | [**create_recipe_package**](https://github.com/pollination/python-sdk/blob/master/docs/RecipesApi.md#create_recipe_package) | **POST** /recipes/{owner}/{name}/tags | Create a new Recipe package
        *RecipesApi* | [**delete_recipe**](https://github.com/pollination/python-sdk/blob/master/docs/RecipesApi.md#delete_recipe) | **DELETE** /recipes/{owner}/{name} | Delete a Recipe
        *RecipesApi* | [**get_recipe**](https://github.com/pollination/python-sdk/blob/master/docs/RecipesApi.md#get_recipe) | **GET** /recipes/{owner}/{name} | Get a recipe
        *RecipesApi* | [**get_recipe_tag**](https://github.com/pollination/python-sdk/blob/master/docs/RecipesApi.md#get_recipe_tag) | **GET** /recipes/{owner}/{name}/tags/{tag} | Get a recipe tag
        *RecipesApi* | [**get_recipe_tags**](https://github.com/pollination/python-sdk/blob/master/docs/RecipesApi.md#get_recipe_tags) | **GET** /recipes/{owner}/{name}/tags | Get a recipe tags
        *RecipesApi* | [**list_recipes**](https://github.com/pollination/python-sdk/blob/master/docs/RecipesApi.md#list_recipes) | **GET** /recipes | List recipes
        *RecipesApi* | [**update_recipe**](https://github.com/pollination/python-sdk/blob/master/docs/RecipesApi.md#update_recipe) | **PUT** /recipes/{owner}/{name} | Update a Recipe
        *RegistriesApi* | [**get_package**](https://github.com/pollination/python-sdk/blob/master/docs/RegistriesApi.md#get_package) | **GET** /registries/{owner}/{type}/{name}/{digest} | Get Package
        *RegistriesApi* | [**get_registry_index**](https://github.com/pollination/python-sdk/blob/master/docs/RegistriesApi.md#get_registry_index) | **GET** /registries/{owner}/index.json | Get Registry Index
        *RegistriesApi* | [**post_operator**](https://github.com/pollination/python-sdk/blob/master/docs/RegistriesApi.md#post_operator) | **POST** /registries/{owner}/operators | Push an Operator to the registry
        *RegistriesApi* | [**post_recipe**](https://github.com/pollination/python-sdk/blob/master/docs/RegistriesApi.md#post_recipe) | **POST** /registries/{owner}/recipes | Push an Recipe to the registry
        *SimulationsApi* | [**create_simulation**](https://github.com/pollination/python-sdk/blob/master/docs/SimulationsApi.md#create_simulation) | **POST** /projects/{owner}/{name}/simulations | Schedule a simulation
        *SimulationsApi* | [**get_simulation**](https://github.com/pollination/python-sdk/blob/master/docs/SimulationsApi.md#get_simulation) | **GET** /projects/{owner}/{name}/simulations/{simulation_id} | Get a Simulation
        *SimulationsApi* | [**get_simulation_inputs**](https://github.com/pollination/python-sdk/blob/master/docs/SimulationsApi.md#get_simulation_inputs) | **GET** /projects/{owner}/{name}/simulations/{simulation_id}/inputs | Get simulation inputs
        *SimulationsApi* | [**get_simulation_logs**](https://github.com/pollination/python-sdk/blob/master/docs/SimulationsApi.md#get_simulation_logs) | **GET** /projects/{owner}/{name}/simulations/{simulation_id}/logs | Get simulation logs
        *SimulationsApi* | [**get_simulation_outputs**](https://github.com/pollination/python-sdk/blob/master/docs/SimulationsApi.md#get_simulation_outputs) | **GET** /projects/{owner}/{name}/simulations/{simulation_id}/outputs | Get simulation outputs
        *SimulationsApi* | [**get_simulation_task_logs**](https://github.com/pollination/python-sdk/blob/master/docs/SimulationsApi.md#get_simulation_task_logs) | **GET** /projects/{owner}/{name}/simulations/{simulation_id}/task/{task_id}/logs | Get a simulation task&#39;s logs
        *SimulationsApi* | [**list_simulations**](https://github.com/pollination/python-sdk/blob/master/docs/SimulationsApi.md#list_simulations) | **GET** /projects/{owner}/{name}/simulations | List simulations
        *SimulationsApi* | [**resume_simulation**](https://github.com/pollination/python-sdk/blob/master/docs/SimulationsApi.md#resume_simulation) | **PUT** /projects/{owner}/{name}/simulations/{simulation_id}/resume | resume a simulation
        *SimulationsApi* | [**suspend_simulation**](https://github.com/pollination/python-sdk/blob/master/docs/SimulationsApi.md#suspend_simulation) | **PUT** /projects/{owner}/{name}/simulations/{simulation_id}/suspend | Suspend a simulation
        *TeamsApi* | [**create_team**](https://github.com/pollination/python-sdk/blob/master/docs/TeamsApi.md#create_team) | **POST** /orgs/{org_name}/teams | Create a Team
        *TeamsApi* | [**delete_org_team_member**](https://github.com/pollination/python-sdk/blob/master/docs/TeamsApi.md#delete_org_team_member) | **DELETE** /orgs/{org_name}/teams/{team_slug}/members/{username} | Remove a team member
        *TeamsApi* | [**delete_team**](https://github.com/pollination/python-sdk/blob/master/docs/TeamsApi.md#delete_team) | **DELETE** /orgs/{org_name}/teams/{team_slug} | Delete a Team
        *TeamsApi* | [**get_org_team_members**](https://github.com/pollination/python-sdk/blob/master/docs/TeamsApi.md#get_org_team_members) | **GET** /orgs/{org_name}/teams/{team_slug}/members | List a team&#39;s members
        *TeamsApi* | [**get_team**](https://github.com/pollination/python-sdk/blob/master/docs/TeamsApi.md#get_team) | **GET** /orgs/{org_name}/teams/{team_slug} | Get a Team
        *TeamsApi* | [**list_org_teams**](https://github.com/pollination/python-sdk/blob/master/docs/TeamsApi.md#list_org_teams) | **GET** /orgs/{org_name}/teams | List Teams
        *TeamsApi* | [**update_team**](https://github.com/pollination/python-sdk/blob/master/docs/TeamsApi.md#update_team) | **PUT** /orgs/{org_name}/teams/{team_slug} | Update a Team
        *TeamsApi* | [**upsert_org_team_member**](https://github.com/pollination/python-sdk/blob/master/docs/TeamsApi.md#upsert_org_team_member) | **PATCH** /orgs/{org_name}/teams/{team_slug}/members/{username}/{role} | Add or update the role of an Org Member
        *UserApi* | [**change_password**](https://github.com/pollination/python-sdk/blob/master/docs/UserApi.md#change_password) | **POST** /user/change_password | Make a password change request
        *UserApi* | [**get_me**](https://github.com/pollination/python-sdk/blob/master/docs/UserApi.md#get_me) | **GET** /user | Get authenticated user profile.
        *UserApi* | [**get_roles**](https://github.com/pollination/python-sdk/blob/master/docs/UserApi.md#get_roles) | **GET** /user/roles | Get the authenticated user roles
        *UserApi* | [**list_refresh_tokens**](https://github.com/pollination/python-sdk/blob/master/docs/UserApi.md#list_refresh_tokens) | **GET** /user/tokens | Get a list of token names
        *UserApi* | [**login**](https://github.com/pollination/python-sdk/blob/master/docs/UserApi.md#login) | **POST** /user/login | Login to the platform and get a JWT back
        *UserApi* | [**signup**](https://github.com/pollination/python-sdk/blob/master/docs/UserApi.md#signup) | **POST** /user/signup | Sign Up to the platform!
        *UserApi* | [**upsert_refresh_token**](https://github.com/pollination/python-sdk/blob/master/docs/UserApi.md#upsert_refresh_token) | **POST** /user/tokens | Get refresh token and delete previous one if it exists
        *UsersApi* | [**check_username**](https://github.com/pollination/python-sdk/blob/master/docs/UsersApi.md#check_username) | **GET** /users/check_username/{username} | Check if a username is already taken
        *UsersApi* | [**get_one_user**](https://github.com/pollination/python-sdk/blob/master/docs/UsersApi.md#get_one_user) | **GET** /users/{name} | Get a specific user profile
        *UsersApi* | [**list_users**](https://github.com/pollination/python-sdk/blob/master/docs/UsersApi.md#list_users) | **GET** /users | List Users
        
        
        ## Documentation For Models
        
         - [Accepted](https://github.com/pollination/python-sdk/blob/master/docs/Accepted.md)
         - [AccountPublic](https://github.com/pollination/python-sdk/blob/master/docs/AccountPublic.md)
         - [ArgumentArtifact](https://github.com/pollination/python-sdk/blob/master/docs/ArgumentArtifact.md)
         - [ArgumentParameter](https://github.com/pollination/python-sdk/blob/master/docs/ArgumentParameter.md)
         - [Arguments](https://github.com/pollination/python-sdk/blob/master/docs/Arguments.md)
         - [BodyPostOperatorRegistriesOwnerOperatorsPost](https://github.com/pollination/python-sdk/blob/master/docs/BodyPostOperatorRegistriesOwnerOperatorsPost.md)
         - [BodyPostRecipeRegistriesOwnerRecipesPost](https://github.com/pollination/python-sdk/blob/master/docs/BodyPostRecipeRegistriesOwnerRecipesPost.md)
         - [Config](https://github.com/pollination/python-sdk/blob/master/docs/Config.md)
         - [CreateOrgDto](https://github.com/pollination/python-sdk/blob/master/docs/CreateOrgDto.md)
         - [CreateTokenDto](https://github.com/pollination/python-sdk/blob/master/docs/CreateTokenDto.md)
         - [CreatedContent](https://github.com/pollination/python-sdk/blob/master/docs/CreatedContent.md)
         - [DAG](https://github.com/pollination/python-sdk/blob/master/docs/DAG.md)
         - [DAGInputArtifact](https://github.com/pollination/python-sdk/blob/master/docs/DAGInputArtifact.md)
         - [DAGInputParameter](https://github.com/pollination/python-sdk/blob/master/docs/DAGInputParameter.md)
         - [DAGInputs](https://github.com/pollination/python-sdk/blob/master/docs/DAGInputs.md)
         - [DAGOutputArtifact](https://github.com/pollination/python-sdk/blob/master/docs/DAGOutputArtifact.md)
         - [DAGOutputParameter](https://github.com/pollination/python-sdk/blob/master/docs/DAGOutputParameter.md)
         - [DAGOutputs](https://github.com/pollination/python-sdk/blob/master/docs/DAGOutputs.md)
         - [DAGTask](https://github.com/pollination/python-sdk/blob/master/docs/DAGTask.md)
         - [DAGTaskArgument](https://github.com/pollination/python-sdk/blob/master/docs/DAGTaskArgument.md)
         - [DAGTaskArtifactArgument](https://github.com/pollination/python-sdk/blob/master/docs/DAGTaskArtifactArgument.md)
         - [DAGTaskLoop](https://github.com/pollination/python-sdk/blob/master/docs/DAGTaskLoop.md)
         - [DAGTaskOutputArtifact](https://github.com/pollination/python-sdk/blob/master/docs/DAGTaskOutputArtifact.md)
         - [DAGTaskOutputParameter](https://github.com/pollination/python-sdk/blob/master/docs/DAGTaskOutputParameter.md)
         - [DAGTaskOutputs](https://github.com/pollination/python-sdk/blob/master/docs/DAGTaskOutputs.md)
         - [DAGTaskParameterArgument](https://github.com/pollination/python-sdk/blob/master/docs/DAGTaskParameterArgument.md)
         - [Dependency](https://github.com/pollination/python-sdk/blob/master/docs/Dependency.md)
         - [DockerConfig](https://github.com/pollination/python-sdk/blob/master/docs/DockerConfig.md)
         - [EmailRequest](https://github.com/pollination/python-sdk/blob/master/docs/EmailRequest.md)
         - [FileMeta](https://github.com/pollination/python-sdk/blob/master/docs/FileMeta.md)
         - [Function](https://github.com/pollination/python-sdk/blob/master/docs/Function.md)
         - [FunctionArtifact](https://github.com/pollination/python-sdk/blob/master/docs/FunctionArtifact.md)
         - [FunctionInputs](https://github.com/pollination/python-sdk/blob/master/docs/FunctionInputs.md)
         - [FunctionOutputs](https://github.com/pollination/python-sdk/blob/master/docs/FunctionOutputs.md)
         - [FunctionParameterIn](https://github.com/pollination/python-sdk/blob/master/docs/FunctionParameterIn.md)
         - [FunctionParameterOut](https://github.com/pollination/python-sdk/blob/master/docs/FunctionParameterOut.md)
         - [HTTPSource](https://github.com/pollination/python-sdk/blob/master/docs/HTTPSource.md)
         - [HTTPValidationError](https://github.com/pollination/python-sdk/blob/master/docs/HTTPValidationError.md)
         - [InputArtifactReference](https://github.com/pollination/python-sdk/blob/master/docs/InputArtifactReference.md)
         - [InputParameterReference](https://github.com/pollination/python-sdk/blob/master/docs/InputParameterReference.md)
         - [ItemParameterReference](https://github.com/pollination/python-sdk/blob/master/docs/ItemParameterReference.md)
         - [KeyRequest](https://github.com/pollination/python-sdk/blob/master/docs/KeyRequest.md)
         - [License](https://github.com/pollination/python-sdk/blob/master/docs/License.md)
         - [LoginDto](https://github.com/pollination/python-sdk/blob/master/docs/LoginDto.md)
         - [LoginToken](https://github.com/pollination/python-sdk/blob/master/docs/LoginToken.md)
         - [LoopControl](https://github.com/pollination/python-sdk/blob/master/docs/LoopControl.md)
         - [NewOperatorPackage](https://github.com/pollination/python-sdk/blob/master/docs/NewOperatorPackage.md)
         - [NewRecipePackage](https://github.com/pollination/python-sdk/blob/master/docs/NewRecipePackage.md)
         - [NewRepositoryDto](https://github.com/pollination/python-sdk/blob/master/docs/NewRepositoryDto.md)
         - [Operator](https://github.com/pollination/python-sdk/blob/master/docs/Operator.md)
         - [OperatorVersion](https://github.com/pollination/python-sdk/blob/master/docs/OperatorVersion.md)
         - [OrgDto](https://github.com/pollination/python-sdk/blob/master/docs/OrgDto.md)
         - [OrgMemberDto](https://github.com/pollination/python-sdk/blob/master/docs/OrgMemberDto.md)
         - [PackageAbridgedDto](https://github.com/pollination/python-sdk/blob/master/docs/PackageAbridgedDto.md)
         - [PackageDto](https://github.com/pollination/python-sdk/blob/master/docs/PackageDto.md)
         - [PackageListDto](https://github.com/pollination/python-sdk/blob/master/docs/PackageListDto.md)
         - [PatchOrgDto](https://github.com/pollination/python-sdk/blob/master/docs/PatchOrgDto.md)
         - [PatchProjectDto](https://github.com/pollination/python-sdk/blob/master/docs/PatchProjectDto.md)
         - [PatchTeamDto](https://github.com/pollination/python-sdk/blob/master/docs/PatchTeamDto.md)
         - [PrivateUserDto](https://github.com/pollination/python-sdk/blob/master/docs/PrivateUserDto.md)
         - [ProjectAccessPolicyDto](https://github.com/pollination/python-sdk/blob/master/docs/ProjectAccessPolicyDto.md)
         - [ProjectDto](https://github.com/pollination/python-sdk/blob/master/docs/ProjectDto.md)
         - [ProjectFolderSource](https://github.com/pollination/python-sdk/blob/master/docs/ProjectFolderSource.md)
         - [ProjectPermissions](https://github.com/pollination/python-sdk/blob/master/docs/ProjectPermissions.md)
         - [ProjectPolicySubjectDto](https://github.com/pollination/python-sdk/blob/master/docs/ProjectPolicySubjectDto.md)
         - [PublicUserDto](https://github.com/pollination/python-sdk/blob/master/docs/PublicUserDto.md)
         - [QueenbeeOperatorMetadataMaintainer](https://github.com/pollination/python-sdk/blob/master/docs/QueenbeeOperatorMetadataMaintainer.md)
         - [QueenbeeOperatorMetadataMetaData](https://github.com/pollination/python-sdk/blob/master/docs/QueenbeeOperatorMetadataMetaData.md)
         - [QueenbeeRecipeMetadataMaintainer](https://github.com/pollination/python-sdk/blob/master/docs/QueenbeeRecipeMetadataMaintainer.md)
         - [QueenbeeRecipeMetadataMetaData](https://github.com/pollination/python-sdk/blob/master/docs/QueenbeeRecipeMetadataMetaData.md)
         - [Recipe](https://github.com/pollination/python-sdk/blob/master/docs/Recipe.md)
         - [RecipeSelection](https://github.com/pollination/python-sdk/blob/master/docs/RecipeSelection.md)
         - [RecipeVersion](https://github.com/pollination/python-sdk/blob/master/docs/RecipeVersion.md)
         - [RefreshTokenDto](https://github.com/pollination/python-sdk/blob/master/docs/RefreshTokenDto.md)
         - [RepositoryAbridgedDto](https://github.com/pollination/python-sdk/blob/master/docs/RepositoryAbridgedDto.md)
         - [RepositoryDto](https://github.com/pollination/python-sdk/blob/master/docs/RepositoryDto.md)
         - [RepositoryIndex](https://github.com/pollination/python-sdk/blob/master/docs/RepositoryIndex.md)
         - [RepositoryListDto](https://github.com/pollination/python-sdk/blob/master/docs/RepositoryListDto.md)
         - [RepositoryPermissions](https://github.com/pollination/python-sdk/blob/master/docs/RepositoryPermissions.md)
         - [S3Source](https://github.com/pollination/python-sdk/blob/master/docs/S3Source.md)
         - [S3UploadRequest](https://github.com/pollination/python-sdk/blob/master/docs/S3UploadRequest.md)
         - [SignUpDto](https://github.com/pollination/python-sdk/blob/master/docs/SignUpDto.md)
         - [SimulationList](https://github.com/pollination/python-sdk/blob/master/docs/SimulationList.md)
         - [SimulationStatus](https://github.com/pollination/python-sdk/blob/master/docs/SimulationStatus.md)
         - [SubmitSimulationDto](https://github.com/pollination/python-sdk/blob/master/docs/SubmitSimulationDto.md)
         - [TaskArtifactReference](https://github.com/pollination/python-sdk/blob/master/docs/TaskArtifactReference.md)
         - [TaskParameterReference](https://github.com/pollination/python-sdk/blob/master/docs/TaskParameterReference.md)
         - [TaskStatus](https://github.com/pollination/python-sdk/blob/master/docs/TaskStatus.md)
         - [TeamDto](https://github.com/pollination/python-sdk/blob/master/docs/TeamDto.md)
         - [TeamMemberDto](https://github.com/pollination/python-sdk/blob/master/docs/TeamMemberDto.md)
         - [TeamOrg](https://github.com/pollination/python-sdk/blob/master/docs/TeamOrg.md)
         - [UpdateAccepted](https://github.com/pollination/python-sdk/blob/master/docs/UpdateAccepted.md)
         - [UpdateRepositoryDto](https://github.com/pollination/python-sdk/blob/master/docs/UpdateRepositoryDto.md)
         - [UserMetadata](https://github.com/pollination/python-sdk/blob/master/docs/UserMetadata.md)
         - [ValidationError](https://github.com/pollination/python-sdk/blob/master/docs/ValidationError.md)
         - [WorkflowStatus](https://github.com/pollination/python-sdk/blob/master/docs/WorkflowStatus.md)
        
        
        ## Documentation For Authorization
        
        
        ## JWT
        
        - **Type**: Bearer authentication
        
        
        ## Author
        
        
        
        
        
Keywords: OpenAPI,OpenAPI-Generator,Pollination Server
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
