Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmattig committed Dec 23, 2024
1 parent 14f6921 commit 36fd39f
Show file tree
Hide file tree
Showing 20 changed files with 60 additions and 60 deletions.
6 changes: 3 additions & 3 deletions .generation/config.ini
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[input]
backendTag = pro-nightly-2024-11-09
backendTag = pro-nightly-2024-12-24

[general]
githubUrl = https://github.com/geo-engine/openapi-client

[python]
name = geoengine_openapi_client
version = 0.0.17
version = 0.0.18

[typescript]
name = @geoengine/openapi-client
version = 0.0.17
version = 0.0.18

6 changes: 3 additions & 3 deletions .generation/input/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -3160,7 +3160,7 @@
"tags": [
"User"
],
"summary": "Retrieves the quota used by computations",
"summary": "Retrieves the quota used by computation with the given computation id",
"operationId": "computation_quota_handler",
"parameters": [
{
Expand Down Expand Up @@ -3201,7 +3201,7 @@
"tags": [
"User"
],
"summary": "Retrieves the quota used on data",
"summary": "Retrieves the data usage",
"operationId": "data_usage_handler",
"parameters": [
{
Expand Down Expand Up @@ -3252,7 +3252,7 @@
"tags": [
"User"
],
"summary": "Retrieves the quota used by computations",
"summary": "Retrieves the data usage summary",
"operationId": "data_usage_summary_handler",
"parameters": [
{
Expand Down
8 changes: 4 additions & 4 deletions python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 0.8.0
- Package version: 0.0.17
- Package version: 0.0.18
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.
Expand Down Expand Up @@ -165,10 +165,10 @@ Class | Method | HTTP request | Description
*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 computations
*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 quota used on data
*UserApi* | [**data_usage_summary_handler**](docs/UserApi.md#data_usage_summary_handler) | **GET** /quota/dataUsage/summary | 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.
Expand Down
2 changes: 1 addition & 1 deletion python/geoengine_openapi_client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
""" # noqa: E501


__version__ = "0.0.17"
__version__ = "0.0.18"

# import apis into sdk package
from geoengine_openapi_client.api.datasets_api import DatasetsApi
Expand Down
12 changes: 6 additions & 6 deletions python/geoengine_openapi_client/api/user_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ def assign_role_handler_with_http_info(self, user : Annotated[StrictStr, Field(.

@validate_arguments
def computation_quota_handler(self, computation : Annotated[StrictStr, Field(..., description="Computation id")], **kwargs) -> List[OperatorQuota]: # noqa: E501
"""Retrieves the quota used by computations # noqa: E501
"""Retrieves the quota used by computation with the given computation id # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
Expand Down Expand Up @@ -371,7 +371,7 @@ def computation_quota_handler(self, computation : Annotated[StrictStr, Field(...

@validate_arguments
def computation_quota_handler_with_http_info(self, computation : Annotated[StrictStr, Field(..., description="Computation id")], **kwargs) -> ApiResponse: # noqa: E501
"""Retrieves the quota used by computations # noqa: E501
"""Retrieves the quota used by computation with the given computation id # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
Expand Down Expand Up @@ -626,7 +626,7 @@ def computations_quota_handler_with_http_info(self, offset : conint(strict=True,

@validate_arguments
def data_usage_handler(self, offset : conint(strict=True, ge=0), limit : conint(strict=True, ge=0), **kwargs) -> List[DataUsage]: # noqa: E501
"""Retrieves the quota used on data # noqa: E501
"""Retrieves the data usage # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
Expand Down Expand Up @@ -657,7 +657,7 @@ def data_usage_handler(self, offset : conint(strict=True, ge=0), limit : conint(

@validate_arguments
def data_usage_handler_with_http_info(self, offset : conint(strict=True, ge=0), limit : conint(strict=True, ge=0), **kwargs) -> ApiResponse: # noqa: E501
"""Retrieves the quota used on data # noqa: E501
"""Retrieves the data usage # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
Expand Down Expand Up @@ -772,7 +772,7 @@ def data_usage_handler_with_http_info(self, offset : conint(strict=True, ge=0),

@validate_arguments
def data_usage_summary_handler(self, granularity : UsageSummaryGranularity, offset : conint(strict=True, ge=0), limit : conint(strict=True, ge=0), dataset : Optional[StrictStr] = None, **kwargs) -> List[DataUsageSummary]: # noqa: E501
"""Retrieves the quota used by computations # noqa: E501
"""Retrieves the data usage summary # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
Expand Down Expand Up @@ -807,7 +807,7 @@ def data_usage_summary_handler(self, granularity : UsageSummaryGranularity, offs

@validate_arguments
def data_usage_summary_handler_with_http_info(self, granularity : UsageSummaryGranularity, offset : conint(strict=True, ge=0), limit : conint(strict=True, ge=0), dataset : Optional[StrictStr] = None, **kwargs) -> ApiResponse: # noqa: E501
"""Retrieves the quota used by computations # noqa: E501
"""Retrieves the data usage summary # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
Expand Down
2 changes: 1 addition & 1 deletion python/geoengine_openapi_client/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,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 = 'geoengine/openapi-client/python/0.0.17'
self.user_agent = 'geoengine/openapi-client/python/0.0.18'
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
2 changes: 1 addition & 1 deletion python/geoengine_openapi_client/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ def to_debug_report(self):
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 0.8.0\n"\
"SDK Package Version: 0.0.17".\
"SDK Package Version: 0.0.18".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "geoengine_openapi_client"
version = "0.0.17"
version = "0.0.18"
description = "Geo Engine API"
authors = ["Geo Engine Developers <[email protected]>"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
NAME = "geoengine-openapi-client"
VERSION = "0.0.17"
VERSION = "0.0.18"
PYTHON_REQUIRES = ">=3.7"
REQUIRES = [
"urllib3 >= 1.25.3, < 2.1.0",
Expand Down
6 changes: 3 additions & 3 deletions python/test/test_user_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def test_assign_role_handler(self) -> None:
def test_computation_quota_handler(self) -> None:
"""Test case for computation_quota_handler
Retrieves the quota used by computations # noqa: E501
Retrieves the quota used by computation with the given computation id # noqa: E501
"""
pass

Expand All @@ -58,14 +58,14 @@ def test_computations_quota_handler(self) -> None:
def test_data_usage_handler(self) -> None:
"""Test case for data_usage_handler
Retrieves the quota used on data # noqa: E501
Retrieves the data usage # noqa: E501
"""
pass

def test_data_usage_summary_handler(self) -> None:
"""Test case for data_usage_summary_handler
Retrieves the quota used by computations # noqa: E501
Retrieves the data usage summary # noqa: E501
"""
pass

Expand Down
4 changes: 2 additions & 2 deletions typescript/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## @geoengine/openapi-client@0.0.17
## @geoengine/openapi-client@0.0.18

This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:

Expand Down Expand Up @@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
_published:_

```
npm install @geoengine/[email protected].17 --save
npm install @geoengine/[email protected].18 --save
```

_unPublished (not recommended):_
Expand Down
12 changes: 6 additions & 6 deletions typescript/dist/apis/UserApi.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ export declare class UserApi extends runtime.BaseAPI {
*/
assignRoleHandler(requestParameters: AssignRoleHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
/**
* Retrieves the quota used by computations
* Retrieves the quota used by computation with the given computation id
*/
computationQuotaHandlerRaw(requestParameters: ComputationQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<OperatorQuota>>>;
/**
* Retrieves the quota used by computations
* Retrieves the quota used by computation with the given computation id
*/
computationQuotaHandler(requestParameters: ComputationQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<OperatorQuota>>;
/**
Expand All @@ -89,19 +89,19 @@ export declare class UserApi extends runtime.BaseAPI {
*/
computationsQuotaHandler(requestParameters: ComputationsQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<ComputationQuota>>;
/**
* Retrieves the quota used on data
* Retrieves the data usage
*/
dataUsageHandlerRaw(requestParameters: DataUsageHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<DataUsage>>>;
/**
* Retrieves the quota used on data
* Retrieves the data usage
*/
dataUsageHandler(requestParameters: DataUsageHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<DataUsage>>;
/**
* Retrieves the quota used by computations
* Retrieves the data usage summary
*/
dataUsageSummaryHandlerRaw(requestParameters: DataUsageSummaryHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<DataUsageSummary>>>;
/**
* Retrieves the quota used by computations
* Retrieves the data usage summary
*/
dataUsageSummaryHandler(requestParameters: DataUsageSummaryHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<DataUsageSummary>>;
/**
Expand Down
12 changes: 6 additions & 6 deletions typescript/dist/apis/UserApi.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class UserApi extends runtime.BaseAPI {
});
}
/**
* Retrieves the quota used by computations
* Retrieves the quota used by computation with the given computation id
*/
computationQuotaHandlerRaw(requestParameters, initOverrides) {
return __awaiter(this, void 0, void 0, function* () {
Expand All @@ -135,7 +135,7 @@ class UserApi extends runtime.BaseAPI {
});
}
/**
* Retrieves the quota used by computations
* Retrieves the quota used by computation with the given computation id
*/
computationQuotaHandler(requestParameters, initOverrides) {
return __awaiter(this, void 0, void 0, function* () {
Expand Down Expand Up @@ -188,7 +188,7 @@ class UserApi extends runtime.BaseAPI {
});
}
/**
* Retrieves the quota used on data
* Retrieves the data usage
*/
dataUsageHandlerRaw(requestParameters, initOverrides) {
return __awaiter(this, void 0, void 0, function* () {
Expand Down Expand Up @@ -223,7 +223,7 @@ class UserApi extends runtime.BaseAPI {
});
}
/**
* Retrieves the quota used on data
* Retrieves the data usage
*/
dataUsageHandler(requestParameters, initOverrides) {
return __awaiter(this, void 0, void 0, function* () {
Expand All @@ -232,7 +232,7 @@ class UserApi extends runtime.BaseAPI {
});
}
/**
* Retrieves the quota used by computations
* Retrieves the data usage summary
*/
dataUsageSummaryHandlerRaw(requestParameters, initOverrides) {
return __awaiter(this, void 0, void 0, function* () {
Expand Down Expand Up @@ -276,7 +276,7 @@ class UserApi extends runtime.BaseAPI {
});
}
/**
* Retrieves the quota used by computations
* Retrieves the data usage summary
*/
dataUsageSummaryHandler(requestParameters, initOverrides) {
return __awaiter(this, void 0, void 0, function* () {
Expand Down
12 changes: 6 additions & 6 deletions typescript/dist/esm/apis/UserApi.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ export declare class UserApi extends runtime.BaseAPI {
*/
assignRoleHandler(requestParameters: AssignRoleHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
/**
* Retrieves the quota used by computations
* Retrieves the quota used by computation with the given computation id
*/
computationQuotaHandlerRaw(requestParameters: ComputationQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<OperatorQuota>>>;
/**
* Retrieves the quota used by computations
* Retrieves the quota used by computation with the given computation id
*/
computationQuotaHandler(requestParameters: ComputationQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<OperatorQuota>>;
/**
Expand All @@ -89,19 +89,19 @@ export declare class UserApi extends runtime.BaseAPI {
*/
computationsQuotaHandler(requestParameters: ComputationsQuotaHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<ComputationQuota>>;
/**
* Retrieves the quota used on data
* Retrieves the data usage
*/
dataUsageHandlerRaw(requestParameters: DataUsageHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<DataUsage>>>;
/**
* Retrieves the quota used on data
* Retrieves the data usage
*/
dataUsageHandler(requestParameters: DataUsageHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<DataUsage>>;
/**
* Retrieves the quota used by computations
* Retrieves the data usage summary
*/
dataUsageSummaryHandlerRaw(requestParameters: DataUsageSummaryHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Array<DataUsageSummary>>>;
/**
* Retrieves the quota used by computations
* Retrieves the data usage summary
*/
dataUsageSummaryHandler(requestParameters: DataUsageSummaryHandlerRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Array<DataUsageSummary>>;
/**
Expand Down
12 changes: 6 additions & 6 deletions typescript/dist/esm/apis/UserApi.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export class UserApi extends runtime.BaseAPI {
});
}
/**
* Retrieves the quota used by computations
* Retrieves the quota used by computation with the given computation id
*/
computationQuotaHandlerRaw(requestParameters, initOverrides) {
return __awaiter(this, void 0, void 0, function* () {
Expand All @@ -132,7 +132,7 @@ export class UserApi extends runtime.BaseAPI {
});
}
/**
* Retrieves the quota used by computations
* Retrieves the quota used by computation with the given computation id
*/
computationQuotaHandler(requestParameters, initOverrides) {
return __awaiter(this, void 0, void 0, function* () {
Expand Down Expand Up @@ -185,7 +185,7 @@ export class UserApi extends runtime.BaseAPI {
});
}
/**
* Retrieves the quota used on data
* Retrieves the data usage
*/
dataUsageHandlerRaw(requestParameters, initOverrides) {
return __awaiter(this, void 0, void 0, function* () {
Expand Down Expand Up @@ -220,7 +220,7 @@ export class UserApi extends runtime.BaseAPI {
});
}
/**
* Retrieves the quota used on data
* Retrieves the data usage
*/
dataUsageHandler(requestParameters, initOverrides) {
return __awaiter(this, void 0, void 0, function* () {
Expand All @@ -229,7 +229,7 @@ export class UserApi extends runtime.BaseAPI {
});
}
/**
* Retrieves the quota used by computations
* Retrieves the data usage summary
*/
dataUsageSummaryHandlerRaw(requestParameters, initOverrides) {
return __awaiter(this, void 0, void 0, function* () {
Expand Down Expand Up @@ -273,7 +273,7 @@ export class UserApi extends runtime.BaseAPI {
});
}
/**
* Retrieves the quota used by computations
* Retrieves the data usage summary
*/
dataUsageSummaryHandler(requestParameters, initOverrides) {
return __awaiter(this, void 0, void 0, function* () {
Expand Down
2 changes: 1 addition & 1 deletion typescript/dist/esm/runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export class Configuration {
}
export const DefaultConfig = new Configuration({
headers: {
'User-Agent': 'geoengine/openapi-client/typescript/0.0.17'
'User-Agent': 'geoengine/openapi-client/typescript/0.0.18'
}
});
/**
Expand Down
Loading

0 comments on commit 36fd39f

Please sign in to comment.