Metadata-Version: 2.4
Name: geoengine_openapi_client
Version: 0.0.30
Summary: Geo Engine API
Home-page: https://github.com/geo-engine/openapi-client
Author: Geo Engine Developers
Author-email: Geo Engine Developers <dev@geoengine.de>
License: Apache-2.0
Project-URL: Repository, https://github.com/GIT_USER_ID/GIT_REPO_ID
Keywords: OpenAPI,OpenAPI-Generator,Geo Engine API
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: urllib3<3.0.0,>=2.1.0
Requires-Dist: python-dateutil>=2.8.2
Requires-Dist: pydantic>=2
Requires-Dist: typing-extensions>=4.7.1
Dynamic: author
Dynamic: home-page

# geoengine-openapi-client
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.8.0
- Package version: 0.0.30
- Generator version: 7.18.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.

Python 3.9+

## Installation & Usage
### pip install

If the python package is hosted on a repository, you can install directly 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 geoengine_openapi_client
```

### 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 geoengine_openapi_client
```

### Tests

Execute `pytest` to run the tests.

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```python

import geoengine_openapi_client
from geoengine_openapi_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://geoengine.io/api
# See configuration.py for a list of all supported configuration parameters.
configuration = geoengine_openapi_client.Configuration(
    host = "https://geoengine.io/api"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure Bearer authorization (UUID): session_token
configuration = geoengine_openapi_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)


# Enter a context with an instance of the API client
with geoengine_openapi_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = geoengine_openapi_client.DatasetsApi(api_client)
    auto_create_dataset = geoengine_openapi_client.AutoCreateDataset() # AutoCreateDataset | 

    try:
        # Creates a new dataset using previously uploaded files. The format of the files will be automatically detected when possible.
        api_response = api_instance.auto_create_dataset_handler(auto_create_dataset)
        print("The response of DatasetsApi->auto_create_dataset_handler:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling DatasetsApi->auto_create_dataset_handler: %s\n" % e)

```

## Documentation for API Endpoints

All URIs are relative to *https://geoengine.io/api*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*DatasetsApi* | [**auto_create_dataset_handler**](docs/DatasetsApi.md#auto_create_dataset_handler) | **POST** /dataset/auto | Creates a new dataset using previously uploaded files. The format of the files will be automatically detected when possible.
*DatasetsApi* | [**create_dataset_handler**](docs/DatasetsApi.md#create_dataset_handler) | **POST** /dataset | Creates a new dataset referencing files. Users can reference previously uploaded files. Admins can reference files from a volume.
*DatasetsApi* | [**delete_dataset_handler**](docs/DatasetsApi.md#delete_dataset_handler) | **DELETE** /dataset/{dataset} | Delete a dataset
*DatasetsApi* | [**get_dataset_handler**](docs/DatasetsApi.md#get_dataset_handler) | **GET** /dataset/{dataset} | Retrieves details about a dataset using the internal name.
*DatasetsApi* | [**get_loading_info_handler**](docs/DatasetsApi.md#get_loading_info_handler) | **GET** /dataset/{dataset}/loadingInfo | Retrieves the loading information of a dataset
*DatasetsApi* | [**list_datasets_handler**](docs/DatasetsApi.md#list_datasets_handler) | **GET** /datasets | Lists available datasets.
*DatasetsApi* | [**list_volume_file_layers_handler**](docs/DatasetsApi.md#list_volume_file_layers_handler) | **GET** /dataset/volumes/{volume_name}/files/{file_name}/layers | List the layers of a file in a volume.
*DatasetsApi* | [**list_volumes_handler**](docs/DatasetsApi.md#list_volumes_handler) | **GET** /dataset/volumes | Lists available volumes.
*DatasetsApi* | [**suggest_meta_data_handler**](docs/DatasetsApi.md#suggest_meta_data_handler) | **POST** /dataset/suggest | Inspects an upload and suggests metadata that can be used when creating a new dataset based on it. Tries to automatically detect the main file and layer name if not specified.
*DatasetsApi* | [**update_dataset_handler**](docs/DatasetsApi.md#update_dataset_handler) | **POST** /dataset/{dataset} | Update details about a dataset using the internal name.
*DatasetsApi* | [**update_dataset_provenance_handler**](docs/DatasetsApi.md#update_dataset_provenance_handler) | **PUT** /dataset/{dataset}/provenance | 
*DatasetsApi* | [**update_dataset_symbology_handler**](docs/DatasetsApi.md#update_dataset_symbology_handler) | **PUT** /dataset/{dataset}/symbology | Updates the dataset&#39;s symbology
*DatasetsApi* | [**update_loading_info_handler**](docs/DatasetsApi.md#update_loading_info_handler) | **PUT** /dataset/{dataset}/loadingInfo | Updates the dataset&#39;s loading info
*GeneralApi* | [**available_handler**](docs/GeneralApi.md#available_handler) | **GET** /available | Server availablity check.
*GeneralApi* | [**server_info_handler**](docs/GeneralApi.md#server_info_handler) | **GET** /info | Shows information about the server software version.
*LayersApi* | [**add_collection**](docs/LayersApi.md#add_collection) | **POST** /layerDb/collections/{collection}/collections | Add a new collection to an existing collection
*LayersApi* | [**add_existing_collection_to_collection**](docs/LayersApi.md#add_existing_collection_to_collection) | **POST** /layerDb/collections/{parent}/collections/{collection} | Add an existing collection to a collection
*LayersApi* | [**add_existing_layer_to_collection**](docs/LayersApi.md#add_existing_layer_to_collection) | **POST** /layerDb/collections/{collection}/layers/{layer} | Add an existing layer to a collection
*LayersApi* | [**add_layer**](docs/LayersApi.md#add_layer) | **POST** /layerDb/collections/{collection}/layers | Add a new layer to a collection
*LayersApi* | [**add_provider**](docs/LayersApi.md#add_provider) | **POST** /layerDb/providers | Add a new provider
*LayersApi* | [**autocomplete_handler**](docs/LayersApi.md#autocomplete_handler) | **GET** /layers/collections/search/autocomplete/{provider}/{collection} | Autocompletes the search on the contents of the collection of the given provider
*LayersApi* | [**delete_provider**](docs/LayersApi.md#delete_provider) | **DELETE** /layerDb/providers/{provider} | Delete an existing provider
*LayersApi* | [**get_provider_definition**](docs/LayersApi.md#get_provider_definition) | **GET** /layerDb/providers/{provider} | Get an existing provider&#39;s definition
*LayersApi* | [**layer_handler**](docs/LayersApi.md#layer_handler) | **GET** /layers/{provider}/{layer} | Retrieves the layer of the given provider
*LayersApi* | [**layer_to_dataset**](docs/LayersApi.md#layer_to_dataset) | **POST** /layers/{provider}/{layer}/dataset | Persist a raster layer from a provider as a dataset.
*LayersApi* | [**layer_to_workflow_id_handler**](docs/LayersApi.md#layer_to_workflow_id_handler) | **POST** /layers/{provider}/{layer}/workflowId | Registers a layer from a provider as a workflow and returns the workflow id
*LayersApi* | [**list_collection_handler**](docs/LayersApi.md#list_collection_handler) | **GET** /layers/collections/{provider}/{collection} | List the contents of the collection of the given provider
*LayersApi* | [**list_providers**](docs/LayersApi.md#list_providers) | **GET** /layerDb/providers | List all providers
*LayersApi* | [**list_root_collections_handler**](docs/LayersApi.md#list_root_collections_handler) | **GET** /layers/collections | List all layer collections
*LayersApi* | [**provider_capabilities_handler**](docs/LayersApi.md#provider_capabilities_handler) | **GET** /layers/{provider}/capabilities | 
*LayersApi* | [**remove_collection**](docs/LayersApi.md#remove_collection) | **DELETE** /layerDb/collections/{collection} | Remove a collection
*LayersApi* | [**remove_collection_from_collection**](docs/LayersApi.md#remove_collection_from_collection) | **DELETE** /layerDb/collections/{parent}/collections/{collection} | Delete a collection from a collection
*LayersApi* | [**remove_layer**](docs/LayersApi.md#remove_layer) | **DELETE** /layerDb/layers/{layer} | Remove a collection
*LayersApi* | [**remove_layer_from_collection**](docs/LayersApi.md#remove_layer_from_collection) | **DELETE** /layerDb/collections/{collection}/layers/{layer} | Remove a layer from a collection
*LayersApi* | [**search_handler**](docs/LayersApi.md#search_handler) | **GET** /layers/collections/search/{provider}/{collection} | Searches the contents of the collection of the given provider
*LayersApi* | [**update_collection**](docs/LayersApi.md#update_collection) | **PUT** /layerDb/collections/{collection} | Update a collection
*LayersApi* | [**update_layer**](docs/LayersApi.md#update_layer) | **PUT** /layerDb/layers/{layer} | Update a layer
*LayersApi* | [**update_provider_definition**](docs/LayersApi.md#update_provider_definition) | **PUT** /layerDb/providers/{provider} | Update an existing provider&#39;s definition
*MLApi* | [**add_ml_model**](docs/MLApi.md#add_ml_model) | **POST** /ml/models | Create a new ml model.
*MLApi* | [**get_ml_model**](docs/MLApi.md#get_ml_model) | **GET** /ml/models/{model_name} | Get ml model by name.
*MLApi* | [**list_ml_models**](docs/MLApi.md#list_ml_models) | **GET** /ml/models | List ml models.
*OGCWCSApi* | [**wcs_capabilities_handler**](docs/OGCWCSApi.md#wcs_capabilities_handler) | **GET** /wcs/{workflow}?request&#x3D;GetCapabilities | Get WCS Capabilities
*OGCWCSApi* | [**wcs_describe_coverage_handler**](docs/OGCWCSApi.md#wcs_describe_coverage_handler) | **GET** /wcs/{workflow}?request&#x3D;DescribeCoverage | Get WCS Coverage Description
*OGCWCSApi* | [**wcs_get_coverage_handler**](docs/OGCWCSApi.md#wcs_get_coverage_handler) | **GET** /wcs/{workflow}?request&#x3D;GetCoverage | Get WCS Coverage
*OGCWFSApi* | [**wfs_capabilities_handler**](docs/OGCWFSApi.md#wfs_capabilities_handler) | **GET** /wfs/{workflow}?request&#x3D;GetCapabilities | Get WFS Capabilities
*OGCWFSApi* | [**wfs_feature_handler**](docs/OGCWFSApi.md#wfs_feature_handler) | **GET** /wfs/{workflow}?request&#x3D;GetFeature | Get WCS Features
*OGCWMSApi* | [**wms_capabilities_handler**](docs/OGCWMSApi.md#wms_capabilities_handler) | **GET** /wms/{workflow}?request&#x3D;GetCapabilities | Get WMS Capabilities
*OGCWMSApi* | [**wms_legend_graphic_handler**](docs/OGCWMSApi.md#wms_legend_graphic_handler) | **GET** /wms/{workflow}?request&#x3D;GetLegendGraphic | Get WMS Legend Graphic
*OGCWMSApi* | [**wms_map_handler**](docs/OGCWMSApi.md#wms_map_handler) | **GET** /wms/{workflow}?request&#x3D;GetMap | Get WMS Map
*PermissionsApi* | [**add_permission_handler**](docs/PermissionsApi.md#add_permission_handler) | **PUT** /permissions | Adds a new permission.
*PermissionsApi* | [**get_resource_permissions_handler**](docs/PermissionsApi.md#get_resource_permissions_handler) | **GET** /permissions/resources/{resource_type}/{resource_id} | Lists permission for a given resource.
*PermissionsApi* | [**remove_permission_handler**](docs/PermissionsApi.md#remove_permission_handler) | **DELETE** /permissions | Removes an existing permission.
*PlotsApi* | [**get_plot_handler**](docs/PlotsApi.md#get_plot_handler) | **GET** /plot/{id} | Generates a plot.
*ProjectsApi* | [**create_project_handler**](docs/ProjectsApi.md#create_project_handler) | **POST** /project | Create a new project for the user.
*ProjectsApi* | [**delete_project_handler**](docs/ProjectsApi.md#delete_project_handler) | **DELETE** /project/{project} | Deletes a project.
*ProjectsApi* | [**list_projects_handler**](docs/ProjectsApi.md#list_projects_handler) | **GET** /projects | List all projects accessible to the user that match the selected criteria.
*ProjectsApi* | [**load_project_latest_handler**](docs/ProjectsApi.md#load_project_latest_handler) | **GET** /project/{project} | Retrieves details about the latest version of a project.
*ProjectsApi* | [**load_project_version_handler**](docs/ProjectsApi.md#load_project_version_handler) | **GET** /project/{project}/{version} | Retrieves details about the given version of a project.
*ProjectsApi* | [**project_versions_handler**](docs/ProjectsApi.md#project_versions_handler) | **GET** /project/{project}/versions | Lists all available versions of a project.
*ProjectsApi* | [**update_project_handler**](docs/ProjectsApi.md#update_project_handler) | **PATCH** /project/{project} | Updates a project. This will create a new version.
*SessionApi* | [**anonymous_handler**](docs/SessionApi.md#anonymous_handler) | **POST** /anonymous | Creates session for anonymous user. The session&#39;s id serves as a Bearer token for requests.
*SessionApi* | [**login_handler**](docs/SessionApi.md#login_handler) | **POST** /login | Creates a session by providing user credentials. The session&#39;s id serves as a Bearer token for requests.
*SessionApi* | [**logout_handler**](docs/SessionApi.md#logout_handler) | **POST** /logout | Ends a session.
*SessionApi* | [**oidc_init**](docs/SessionApi.md#oidc_init) | **POST** /oidcInit | Initializes the Open Id Connect login procedure by requesting a parametrized url to the configured Id Provider.
*SessionApi* | [**oidc_login**](docs/SessionApi.md#oidc_login) | **POST** /oidcLogin | Creates a session for a user via a login with Open Id Connect. This call must be preceded by a call to oidcInit and match the parameters of that call.
*SessionApi* | [**register_user_handler**](docs/SessionApi.md#register_user_handler) | **POST** /user | Registers a user.
*SessionApi* | [**session_handler**](docs/SessionApi.md#session_handler) | **GET** /session | Retrieves details about the current session.
*SessionApi* | [**session_project_handler**](docs/SessionApi.md#session_project_handler) | **POST** /session/project/{project} | Sets the active project of the session.
*SessionApi* | [**session_view_handler**](docs/SessionApi.md#session_view_handler) | **POST** /session/view | 
*SpatialReferencesApi* | [**get_spatial_reference_specification_handler**](docs/SpatialReferencesApi.md#get_spatial_reference_specification_handler) | **GET** /spatialReferenceSpecification/{srsString} | 
*TasksApi* | [**abort_handler**](docs/TasksApi.md#abort_handler) | **DELETE** /tasks/{id} | Abort a running task.
*TasksApi* | [**list_handler**](docs/TasksApi.md#list_handler) | **GET** /tasks/list | Retrieve the status of all tasks.
*TasksApi* | [**status_handler**](docs/TasksApi.md#status_handler) | **GET** /tasks/{id}/status | Retrieve the status of a task.
*UploadsApi* | [**list_upload_file_layers_handler**](docs/UploadsApi.md#list_upload_file_layers_handler) | **GET** /uploads/{upload_id}/files/{file_name}/layers | List the layers of on uploaded file.
*UploadsApi* | [**list_upload_files_handler**](docs/UploadsApi.md#list_upload_files_handler) | **GET** /uploads/{upload_id}/files | List the files of on upload.
*UploadsApi* | [**upload_handler**](docs/UploadsApi.md#upload_handler) | **POST** /upload | Uploads files.
*UserApi* | [**add_role_handler**](docs/UserApi.md#add_role_handler) | **PUT** /roles | Add a new role. Requires admin privilige.
*UserApi* | [**assign_role_handler**](docs/UserApi.md#assign_role_handler) | **POST** /users/{user}/roles/{role} | Assign a role to a user. Requires admin privilige.
*UserApi* | [**computation_quota_handler**](docs/UserApi.md#computation_quota_handler) | **GET** /quota/computations/{computation} | Retrieves the quota used by computation with the given computation id
*UserApi* | [**computations_quota_handler**](docs/UserApi.md#computations_quota_handler) | **GET** /quota/computations | Retrieves the quota used by computations
*UserApi* | [**data_usage_handler**](docs/UserApi.md#data_usage_handler) | **GET** /quota/dataUsage | Retrieves the data usage
*UserApi* | [**data_usage_summary_handler**](docs/UserApi.md#data_usage_summary_handler) | **GET** /quota/dataUsage/summary | Retrieves the data usage summary
*UserApi* | [**get_role_by_name_handler**](docs/UserApi.md#get_role_by_name_handler) | **GET** /roles/byName/{name} | Get role by name
*UserApi* | [**get_role_descriptions**](docs/UserApi.md#get_role_descriptions) | **GET** /user/roles/descriptions | Query roles for the current user.
*UserApi* | [**get_user_quota_handler**](docs/UserApi.md#get_user_quota_handler) | **GET** /quotas/{user} | Retrieves the available and used quota of a specific user.
*UserApi* | [**quota_handler**](docs/UserApi.md#quota_handler) | **GET** /quota | Retrieves the available and used quota of the current user.
*UserApi* | [**remove_role_handler**](docs/UserApi.md#remove_role_handler) | **DELETE** /roles/{role} | Remove a role. Requires admin privilige.
*UserApi* | [**revoke_role_handler**](docs/UserApi.md#revoke_role_handler) | **DELETE** /users/{user}/roles/{role} | Revoke a role from a user. Requires admin privilige.
*UserApi* | [**update_user_quota_handler**](docs/UserApi.md#update_user_quota_handler) | **POST** /quotas/{user} | Update the available quota of a specific user.
*WorkflowsApi* | [**dataset_from_workflow_handler**](docs/WorkflowsApi.md#dataset_from_workflow_handler) | **POST** /datasetFromWorkflow/{id} | Create a task for creating a new dataset from the result of the workflow given by its &#x60;id&#x60; and the dataset parameters in the request body. Returns the id of the created task
*WorkflowsApi* | [**get_workflow_all_metadata_zip_handler**](docs/WorkflowsApi.md#get_workflow_all_metadata_zip_handler) | **GET** /workflow/{id}/allMetadata/zip | Gets a ZIP archive of the worklow, its provenance and the output metadata.
*WorkflowsApi* | [**get_workflow_metadata_handler**](docs/WorkflowsApi.md#get_workflow_metadata_handler) | **GET** /workflow/{id}/metadata | Gets the metadata of a workflow
*WorkflowsApi* | [**get_workflow_provenance_handler**](docs/WorkflowsApi.md#get_workflow_provenance_handler) | **GET** /workflow/{id}/provenance | Gets the provenance of all datasets used in a workflow.
*WorkflowsApi* | [**load_workflow_handler**](docs/WorkflowsApi.md#load_workflow_handler) | **GET** /workflow/{id} | Retrieves an existing Workflow.
*WorkflowsApi* | [**raster_stream_websocket**](docs/WorkflowsApi.md#raster_stream_websocket) | **GET** /workflow/{id}/rasterStream | Query a workflow raster result as a stream of tiles via a websocket connection.
*WorkflowsApi* | [**register_workflow_handler**](docs/WorkflowsApi.md#register_workflow_handler) | **POST** /workflow | Registers a new Workflow.


## Documentation For Models

 - [AddDataset](docs/AddDataset.md)
 - [AddLayer](docs/AddLayer.md)
 - [AddLayerCollection](docs/AddLayerCollection.md)
 - [AddRole](docs/AddRole.md)
 - [ArunaDataProviderDefinition](docs/ArunaDataProviderDefinition.md)
 - [AuthCodeRequestURL](docs/AuthCodeRequestURL.md)
 - [AuthCodeResponse](docs/AuthCodeResponse.md)
 - [AutoCreateDataset](docs/AutoCreateDataset.md)
 - [AxisOrder](docs/AxisOrder.md)
 - [BoundingBox2D](docs/BoundingBox2D.md)
 - [Breakpoint](docs/Breakpoint.md)
 - [ClassificationMeasurement](docs/ClassificationMeasurement.md)
 - [CollectionItem](docs/CollectionItem.md)
 - [CollectionType](docs/CollectionType.md)
 - [ColorParam](docs/ColorParam.md)
 - [Colorizer](docs/Colorizer.md)
 - [ComputationQuota](docs/ComputationQuota.md)
 - [ContinuousMeasurement](docs/ContinuousMeasurement.md)
 - [Coordinate2D](docs/Coordinate2D.md)
 - [CopernicusDataspaceDataProviderDefinition](docs/CopernicusDataspaceDataProviderDefinition.md)
 - [CreateDataset](docs/CreateDataset.md)
 - [CreateProject](docs/CreateProject.md)
 - [CsvHeader](docs/CsvHeader.md)
 - [DataId](docs/DataId.md)
 - [DataPath](docs/DataPath.md)
 - [DataPathOneOf](docs/DataPathOneOf.md)
 - [DataPathOneOf1](docs/DataPathOneOf1.md)
 - [DataProviderResource](docs/DataProviderResource.md)
 - [DataUsage](docs/DataUsage.md)
 - [DataUsageSummary](docs/DataUsageSummary.md)
 - [DatabaseConnectionConfig](docs/DatabaseConnectionConfig.md)
 - [Dataset](docs/Dataset.md)
 - [DatasetDefinition](docs/DatasetDefinition.md)
 - [DatasetLayerListingCollection](docs/DatasetLayerListingCollection.md)
 - [DatasetLayerListingProviderDefinition](docs/DatasetLayerListingProviderDefinition.md)
 - [DatasetListing](docs/DatasetListing.md)
 - [DatasetNameResponse](docs/DatasetNameResponse.md)
 - [DatasetResource](docs/DatasetResource.md)
 - [DerivedColor](docs/DerivedColor.md)
 - [DerivedNumber](docs/DerivedNumber.md)
 - [DescribeCoverageRequest](docs/DescribeCoverageRequest.md)
 - [EbvPortalDataProviderDefinition](docs/EbvPortalDataProviderDefinition.md)
 - [EdrDataProviderDefinition](docs/EdrDataProviderDefinition.md)
 - [EdrVectorSpec](docs/EdrVectorSpec.md)
 - [ErrorResponse](docs/ErrorResponse.md)
 - [ExternalDataId](docs/ExternalDataId.md)
 - [FeatureDataType](docs/FeatureDataType.md)
 - [FileNotFoundHandling](docs/FileNotFoundHandling.md)
 - [FormatSpecifics](docs/FormatSpecifics.md)
 - [FormatSpecificsCsv](docs/FormatSpecificsCsv.md)
 - [GbifDataProviderDefinition](docs/GbifDataProviderDefinition.md)
 - [GdalDatasetGeoTransform](docs/GdalDatasetGeoTransform.md)
 - [GdalDatasetParameters](docs/GdalDatasetParameters.md)
 - [GdalLoadingInfoTemporalSlice](docs/GdalLoadingInfoTemporalSlice.md)
 - [GdalMetaDataList](docs/GdalMetaDataList.md)
 - [GdalMetaDataRegular](docs/GdalMetaDataRegular.md)
 - [GdalMetaDataStatic](docs/GdalMetaDataStatic.md)
 - [GdalMetadataMapping](docs/GdalMetadataMapping.md)
 - [GdalMetadataNetCdfCf](docs/GdalMetadataNetCdfCf.md)
 - [GdalSourceTimePlaceholder](docs/GdalSourceTimePlaceholder.md)
 - [GeoJson](docs/GeoJson.md)
 - [GetCapabilitiesFormat](docs/GetCapabilitiesFormat.md)
 - [GetCapabilitiesRequest](docs/GetCapabilitiesRequest.md)
 - [GetCoverageFormat](docs/GetCoverageFormat.md)
 - [GetCoverageRequest](docs/GetCoverageRequest.md)
 - [GetFeatureRequest](docs/GetFeatureRequest.md)
 - [GetLegendGraphicRequest](docs/GetLegendGraphicRequest.md)
 - [GetMapExceptionFormat](docs/GetMapExceptionFormat.md)
 - [GetMapFormat](docs/GetMapFormat.md)
 - [GetMapRequest](docs/GetMapRequest.md)
 - [GfbioAbcdDataProviderDefinition](docs/GfbioAbcdDataProviderDefinition.md)
 - [GfbioCollectionsDataProviderDefinition](docs/GfbioCollectionsDataProviderDefinition.md)
 - [IdResponse](docs/IdResponse.md)
 - [InternalDataId](docs/InternalDataId.md)
 - [Layer](docs/Layer.md)
 - [LayerCollection](docs/LayerCollection.md)
 - [LayerCollectionListing](docs/LayerCollectionListing.md)
 - [LayerCollectionResource](docs/LayerCollectionResource.md)
 - [LayerListing](docs/LayerListing.md)
 - [LayerProviderListing](docs/LayerProviderListing.md)
 - [LayerResource](docs/LayerResource.md)
 - [LayerVisibility](docs/LayerVisibility.md)
 - [LineSymbology](docs/LineSymbology.md)
 - [LinearGradient](docs/LinearGradient.md)
 - [LogarithmicGradient](docs/LogarithmicGradient.md)
 - [Measurement](docs/Measurement.md)
 - [MetaDataDefinition](docs/MetaDataDefinition.md)
 - [MetaDataSuggestion](docs/MetaDataSuggestion.md)
 - [MlModel](docs/MlModel.md)
 - [MlModelInputNoDataHandling](docs/MlModelInputNoDataHandling.md)
 - [MlModelInputNoDataHandlingVariant](docs/MlModelInputNoDataHandlingVariant.md)
 - [MlModelMetadata](docs/MlModelMetadata.md)
 - [MlModelNameResponse](docs/MlModelNameResponse.md)
 - [MlModelOutputNoDataHandling](docs/MlModelOutputNoDataHandling.md)
 - [MlModelOutputNoDataHandlingVariant](docs/MlModelOutputNoDataHandlingVariant.md)
 - [MlModelResource](docs/MlModelResource.md)
 - [MlTensorShape3D](docs/MlTensorShape3D.md)
 - [MockDatasetDataSourceLoadingInfo](docs/MockDatasetDataSourceLoadingInfo.md)
 - [MockMetaData](docs/MockMetaData.md)
 - [MultiBandRasterColorizer](docs/MultiBandRasterColorizer.md)
 - [MultiLineString](docs/MultiLineString.md)
 - [MultiPoint](docs/MultiPoint.md)
 - [MultiPolygon](docs/MultiPolygon.md)
 - [NetCdfCfDataProviderDefinition](docs/NetCdfCfDataProviderDefinition.md)
 - [NumberParam](docs/NumberParam.md)
 - [OgrMetaData](docs/OgrMetaData.md)
 - [OgrSourceColumnSpec](docs/OgrSourceColumnSpec.md)
 - [OgrSourceDataset](docs/OgrSourceDataset.md)
 - [OgrSourceDatasetTimeType](docs/OgrSourceDatasetTimeType.md)
 - [OgrSourceDatasetTimeTypeNone](docs/OgrSourceDatasetTimeTypeNone.md)
 - [OgrSourceDatasetTimeTypeStart](docs/OgrSourceDatasetTimeTypeStart.md)
 - [OgrSourceDatasetTimeTypeStartDuration](docs/OgrSourceDatasetTimeTypeStartDuration.md)
 - [OgrSourceDatasetTimeTypeStartEnd](docs/OgrSourceDatasetTimeTypeStartEnd.md)
 - [OgrSourceDurationSpec](docs/OgrSourceDurationSpec.md)
 - [OgrSourceDurationSpecInfinite](docs/OgrSourceDurationSpecInfinite.md)
 - [OgrSourceDurationSpecValue](docs/OgrSourceDurationSpecValue.md)
 - [OgrSourceDurationSpecZero](docs/OgrSourceDurationSpecZero.md)
 - [OgrSourceErrorSpec](docs/OgrSourceErrorSpec.md)
 - [OgrSourceTimeFormat](docs/OgrSourceTimeFormat.md)
 - [OgrSourceTimeFormatAuto](docs/OgrSourceTimeFormatAuto.md)
 - [OgrSourceTimeFormatCustom](docs/OgrSourceTimeFormatCustom.md)
 - [OgrSourceTimeFormatUnixTimeStamp](docs/OgrSourceTimeFormatUnixTimeStamp.md)
 - [OperatorQuota](docs/OperatorQuota.md)
 - [OrderBy](docs/OrderBy.md)
 - [PaletteColorizer](docs/PaletteColorizer.md)
 - [PangaeaDataProviderDefinition](docs/PangaeaDataProviderDefinition.md)
 - [Permission](docs/Permission.md)
 - [PermissionListOptions](docs/PermissionListOptions.md)
 - [PermissionListing](docs/PermissionListing.md)
 - [PermissionRequest](docs/PermissionRequest.md)
 - [Plot](docs/Plot.md)
 - [PlotOutputFormat](docs/PlotOutputFormat.md)
 - [PlotQueryRectangle](docs/PlotQueryRectangle.md)
 - [PlotResultDescriptor](docs/PlotResultDescriptor.md)
 - [PointSymbology](docs/PointSymbology.md)
 - [PolygonSymbology](docs/PolygonSymbology.md)
 - [Project](docs/Project.md)
 - [ProjectLayer](docs/ProjectLayer.md)
 - [ProjectListing](docs/ProjectListing.md)
 - [ProjectResource](docs/ProjectResource.md)
 - [ProjectUpdateToken](docs/ProjectUpdateToken.md)
 - [ProjectVersion](docs/ProjectVersion.md)
 - [Provenance](docs/Provenance.md)
 - [ProvenanceEntry](docs/ProvenanceEntry.md)
 - [ProvenanceOutput](docs/ProvenanceOutput.md)
 - [Provenances](docs/Provenances.md)
 - [ProviderCapabilities](docs/ProviderCapabilities.md)
 - [ProviderLayerCollectionId](docs/ProviderLayerCollectionId.md)
 - [ProviderLayerId](docs/ProviderLayerId.md)
 - [Quota](docs/Quota.md)
 - [RasterBandDescriptor](docs/RasterBandDescriptor.md)
 - [RasterColorizer](docs/RasterColorizer.md)
 - [RasterDataType](docs/RasterDataType.md)
 - [RasterDatasetFromWorkflow](docs/RasterDatasetFromWorkflow.md)
 - [RasterDatasetFromWorkflowResult](docs/RasterDatasetFromWorkflowResult.md)
 - [RasterPropertiesEntryType](docs/RasterPropertiesEntryType.md)
 - [RasterPropertiesKey](docs/RasterPropertiesKey.md)
 - [RasterQueryRectangle](docs/RasterQueryRectangle.md)
 - [RasterResultDescriptor](docs/RasterResultDescriptor.md)
 - [RasterStreamWebsocketResultType](docs/RasterStreamWebsocketResultType.md)
 - [RasterSymbology](docs/RasterSymbology.md)
 - [Resource](docs/Resource.md)
 - [Role](docs/Role.md)
 - [RoleDescription](docs/RoleDescription.md)
 - [STRectangle](docs/STRectangle.md)
 - [SearchCapabilities](docs/SearchCapabilities.md)
 - [SearchType](docs/SearchType.md)
 - [SearchTypes](docs/SearchTypes.md)
 - [SentinelS2L2ACogsProviderDefinition](docs/SentinelS2L2ACogsProviderDefinition.md)
 - [ServerInfo](docs/ServerInfo.md)
 - [SingleBandRasterColorizer](docs/SingleBandRasterColorizer.md)
 - [SpatialPartition2D](docs/SpatialPartition2D.md)
 - [SpatialReferenceAuthority](docs/SpatialReferenceAuthority.md)
 - [SpatialReferenceSpecification](docs/SpatialReferenceSpecification.md)
 - [SpatialResolution](docs/SpatialResolution.md)
 - [StacApiRetries](docs/StacApiRetries.md)
 - [StacBand](docs/StacBand.md)
 - [StacQueryBuffer](docs/StacQueryBuffer.md)
 - [StacZone](docs/StacZone.md)
 - [StaticColor](docs/StaticColor.md)
 - [StaticNumber](docs/StaticNumber.md)
 - [StrokeParam](docs/StrokeParam.md)
 - [SuggestMetaData](docs/SuggestMetaData.md)
 - [Symbology](docs/Symbology.md)
 - [TaskAbortOptions](docs/TaskAbortOptions.md)
 - [TaskFilter](docs/TaskFilter.md)
 - [TaskListOptions](docs/TaskListOptions.md)
 - [TaskResponse](docs/TaskResponse.md)
 - [TaskStatus](docs/TaskStatus.md)
 - [TaskStatusAborted](docs/TaskStatusAborted.md)
 - [TaskStatusCompleted](docs/TaskStatusCompleted.md)
 - [TaskStatusFailed](docs/TaskStatusFailed.md)
 - [TaskStatusRunning](docs/TaskStatusRunning.md)
 - [TaskStatusWithId](docs/TaskStatusWithId.md)
 - [TextSymbology](docs/TextSymbology.md)
 - [TimeGranularity](docs/TimeGranularity.md)
 - [TimeInterval](docs/TimeInterval.md)
 - [TimeReference](docs/TimeReference.md)
 - [TimeStep](docs/TimeStep.md)
 - [TypedDataProviderDefinition](docs/TypedDataProviderDefinition.md)
 - [TypedGeometry](docs/TypedGeometry.md)
 - [TypedGeometryOneOf](docs/TypedGeometryOneOf.md)
 - [TypedGeometryOneOf1](docs/TypedGeometryOneOf1.md)
 - [TypedGeometryOneOf2](docs/TypedGeometryOneOf2.md)
 - [TypedGeometryOneOf3](docs/TypedGeometryOneOf3.md)
 - [TypedOperator](docs/TypedOperator.md)
 - [TypedOperatorOperator](docs/TypedOperatorOperator.md)
 - [TypedPlotResultDescriptor](docs/TypedPlotResultDescriptor.md)
 - [TypedRasterResultDescriptor](docs/TypedRasterResultDescriptor.md)
 - [TypedResultDescriptor](docs/TypedResultDescriptor.md)
 - [TypedVectorResultDescriptor](docs/TypedVectorResultDescriptor.md)
 - [UnitlessMeasurement](docs/UnitlessMeasurement.md)
 - [UnixTimeStampType](docs/UnixTimeStampType.md)
 - [UpdateDataset](docs/UpdateDataset.md)
 - [UpdateLayer](docs/UpdateLayer.md)
 - [UpdateLayerCollection](docs/UpdateLayerCollection.md)
 - [UpdateProject](docs/UpdateProject.md)
 - [UpdateQuota](docs/UpdateQuota.md)
 - [UploadFileLayersResponse](docs/UploadFileLayersResponse.md)
 - [UploadFilesResponse](docs/UploadFilesResponse.md)
 - [UsageSummaryGranularity](docs/UsageSummaryGranularity.md)
 - [UserCredentials](docs/UserCredentials.md)
 - [UserInfo](docs/UserInfo.md)
 - [UserRegistration](docs/UserRegistration.md)
 - [UserSession](docs/UserSession.md)
 - [VecUpdate](docs/VecUpdate.md)
 - [VectorColumnInfo](docs/VectorColumnInfo.md)
 - [VectorDataType](docs/VectorDataType.md)
 - [VectorQueryRectangle](docs/VectorQueryRectangle.md)
 - [VectorResultDescriptor](docs/VectorResultDescriptor.md)
 - [Volume](docs/Volume.md)
 - [VolumeFileLayersResponse](docs/VolumeFileLayersResponse.md)
 - [WcsBoundingbox](docs/WcsBoundingbox.md)
 - [WcsService](docs/WcsService.md)
 - [WcsVersion](docs/WcsVersion.md)
 - [WfsService](docs/WfsService.md)
 - [WfsVersion](docs/WfsVersion.md)
 - [WildliveDataConnectorDefinition](docs/WildliveDataConnectorDefinition.md)
 - [WmsService](docs/WmsService.md)
 - [WmsVersion](docs/WmsVersion.md)
 - [Workflow](docs/Workflow.md)
 - [WrappedPlotOutput](docs/WrappedPlotOutput.md)


<a id="documentation-for-authorization"></a>
## Documentation For Authorization


Authentication schemes defined for the API:
<a id="session_token"></a>
### session_token

- **Type**: Bearer authentication (UUID)


## Author

dev@geoengine.de


