Skip to content

Commit 36fd39f

Browse files
committed
bump version
1 parent 14f6921 commit 36fd39f

File tree

20 files changed

+60
-60
lines changed

20 files changed

+60
-60
lines changed

.generation/config.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[input]
2-
backendTag = pro-nightly-2024-11-09
2+
backendTag = pro-nightly-2024-12-24
33

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

77
[python]
88
name = geoengine_openapi_client
9-
version = 0.0.17
9+
version = 0.0.18
1010

1111
[typescript]
1212
name = @geoengine/openapi-client
13-
version = 0.0.17
13+
version = 0.0.18
1414

.generation/input/openapi.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3160,7 +3160,7 @@
31603160
"tags": [
31613161
"User"
31623162
],
3163-
"summary": "Retrieves the quota used by computations",
3163+
"summary": "Retrieves the quota used by computation with the given computation id",
31643164
"operationId": "computation_quota_handler",
31653165
"parameters": [
31663166
{
@@ -3201,7 +3201,7 @@
32013201
"tags": [
32023202
"User"
32033203
],
3204-
"summary": "Retrieves the quota used on data",
3204+
"summary": "Retrieves the data usage",
32053205
"operationId": "data_usage_handler",
32063206
"parameters": [
32073207
{
@@ -3252,7 +3252,7 @@
32523252
"tags": [
32533253
"User"
32543254
],
3255-
"summary": "Retrieves the quota used by computations",
3255+
"summary": "Retrieves the data usage summary",
32563256
"operationId": "data_usage_summary_handler",
32573257
"parameters": [
32583258
{

python/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

66
- API version: 0.8.0
7-
- Package version: 0.0.17
7+
- Package version: 0.0.18
88
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
99

1010
## Requirements.
@@ -165,10 +165,10 @@ Class | Method | HTTP request | Description
165165
*UploadsApi* | [**upload_handler**](docs/UploadsApi.md#upload_handler) | **POST** /upload | Uploads files.
166166
*UserApi* | [**add_role_handler**](docs/UserApi.md#add_role_handler) | **PUT** /roles | Add a new role. Requires admin privilige.
167167
*UserApi* | [**assign_role_handler**](docs/UserApi.md#assign_role_handler) | **POST** /users/{user}/roles/{role} | Assign a role to a user. Requires admin privilige.
168-
*UserApi* | [**computation_quota_handler**](docs/UserApi.md#computation_quota_handler) | **GET** /quota/computations/{computation} | Retrieves the quota used by computations
168+
*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
169169
*UserApi* | [**computations_quota_handler**](docs/UserApi.md#computations_quota_handler) | **GET** /quota/computations | Retrieves the quota used by computations
170-
*UserApi* | [**data_usage_handler**](docs/UserApi.md#data_usage_handler) | **GET** /quota/dataUsage | Retrieves the quota used on data
171-
*UserApi* | [**data_usage_summary_handler**](docs/UserApi.md#data_usage_summary_handler) | **GET** /quota/dataUsage/summary | Retrieves the quota used by computations
170+
*UserApi* | [**data_usage_handler**](docs/UserApi.md#data_usage_handler) | **GET** /quota/dataUsage | Retrieves the data usage
171+
*UserApi* | [**data_usage_summary_handler**](docs/UserApi.md#data_usage_summary_handler) | **GET** /quota/dataUsage/summary | Retrieves the data usage summary
172172
*UserApi* | [**get_role_by_name_handler**](docs/UserApi.md#get_role_by_name_handler) | **GET** /roles/byName/{name} | Get role by name
173173
*UserApi* | [**get_role_descriptions**](docs/UserApi.md#get_role_descriptions) | **GET** /user/roles/descriptions | Query roles for the current user.
174174
*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.

python/geoengine_openapi_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
""" # noqa: E501
1616

1717

18-
__version__ = "0.0.17"
18+
__version__ = "0.0.18"
1919

2020
# import apis into sdk package
2121
from geoengine_openapi_client.api.datasets_api import DatasetsApi

python/geoengine_openapi_client/api/user_api.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ def assign_role_handler_with_http_info(self, user : Annotated[StrictStr, Field(.
342342

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

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

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

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

773773
@validate_arguments
774774
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
775-
"""Retrieves the quota used by computations # noqa: E501
775+
"""Retrieves the data usage summary # noqa: E501
776776
777777
This method makes a synchronous HTTP request by default. To make an
778778
asynchronous HTTP request, please pass async_req=True
@@ -807,7 +807,7 @@ def data_usage_summary_handler(self, granularity : UsageSummaryGranularity, offs
807807

808808
@validate_arguments
809809
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
810-
"""Retrieves the quota used by computations # noqa: E501
810+
"""Retrieves the data usage summary # noqa: E501
811811
812812
This method makes a synchronous HTTP request by default. To make an
813813
asynchronous HTTP request, please pass async_req=True

python/geoengine_openapi_client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7676
self.default_headers[header_name] = header_value
7777
self.cookie = cookie
7878
# Set default User-Agent.
79-
self.user_agent = 'geoengine/openapi-client/python/0.0.17'
79+
self.user_agent = 'geoengine/openapi-client/python/0.0.18'
8080
self.client_side_validation = configuration.client_side_validation
8181

8282
def __enter__(self):

python/geoengine_openapi_client/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ def to_debug_report(self):
378378
"OS: {env}\n"\
379379
"Python Version: {pyversion}\n"\
380380
"Version of the API: 0.8.0\n"\
381-
"SDK Package Version: 0.0.17".\
381+
"SDK Package Version: 0.0.18".\
382382
format(env=sys.platform, pyversion=sys.version)
383383

384384
def get_host_settings(self):

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "geoengine_openapi_client"
3-
version = "0.0.17"
3+
version = "0.0.18"
44
description = "Geo Engine API"
55
authors = ["Geo Engine Developers <[email protected]>"]
66
license = "Apache-2.0"

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# prerequisite: setuptools
2323
# http://pypi.python.org/pypi/setuptools
2424
NAME = "geoengine-openapi-client"
25-
VERSION = "0.0.17"
25+
VERSION = "0.0.18"
2626
PYTHON_REQUIRES = ">=3.7"
2727
REQUIRES = [
2828
"urllib3 >= 1.25.3, < 2.1.0",

python/test/test_user_api.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def test_assign_role_handler(self) -> None:
4444
def test_computation_quota_handler(self) -> None:
4545
"""Test case for computation_quota_handler
4646
47-
Retrieves the quota used by computations # noqa: E501
47+
Retrieves the quota used by computation with the given computation id # noqa: E501
4848
"""
4949
pass
5050

@@ -58,14 +58,14 @@ def test_computations_quota_handler(self) -> None:
5858
def test_data_usage_handler(self) -> None:
5959
"""Test case for data_usage_handler
6060
61-
Retrieves the quota used on data # noqa: E501
61+
Retrieves the data usage # noqa: E501
6262
"""
6363
pass
6464

6565
def test_data_usage_summary_handler(self) -> None:
6666
"""Test case for data_usage_summary_handler
6767
68-
Retrieves the quota used by computations # noqa: E501
68+
Retrieves the data usage summary # noqa: E501
6969
"""
7070
pass
7171

0 commit comments

Comments
 (0)