Skip to content

Commit d508862

Browse files
committed
PATCH: get cloud size operation id in openapi
1 parent 7519d93 commit d508862

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ Class | Method | HTTP request | Description
221221
*CollaborationApi* | [**get_classifications**](docs/CollaborationApi.md#get_classifications) | **GET** /cloud/{cloud_pk}/project/{project_pk}/classification | Retrieve all classifications
222222
*CollaborationApi* | [**get_cloud**](docs/CollaborationApi.md#get_cloud) | **GET** /cloud/{id} | Retrieve one cloud
223223
*CollaborationApi* | [**get_cloud_invitations**](docs/CollaborationApi.md#get_cloud_invitations) | **GET** /cloud/{cloud_pk}/invitation | Retrieve all pending invitations in the cloud
224-
*CollaborationApi* | [**get_cloud_size**](docs/CollaborationApi.md#get_cloud_size) | **GET** /cloud/{id}/size | Returns the sizes of the cloud in Bytes.
224+
*CollaborationApi* | [**get_cloud_size**](docs/CollaborationApi.md#get_cloud_size) | **GET** /cloud/{id}/size | summary
225225
*CollaborationApi* | [**get_cloud_user**](docs/CollaborationApi.md#get_cloud_user) | **GET** /cloud/{cloud_pk}/user/{id} | Retrieve a user in a cloud
226226
*CollaborationApi* | [**get_cloud_users**](docs/CollaborationApi.md#get_cloud_users) | **GET** /cloud/{cloud_pk}/user | Retrieve all users in a cloud, or a list with a filter by email
227227
*CollaborationApi* | [**get_clouds**](docs/CollaborationApi.md#get_clouds) | **GET** /cloud | Retrieve all clouds
@@ -529,7 +529,7 @@ Class | Method | HTTP request | Description
529529

530530
- **Type**: OAuth
531531
- **Flow**: implicit
532-
- **Authorization URL**: http://localhost:8080/auth/realms/bimdata/protocol/openid-connect/auth
532+
- **Authorization URL**: http://IAM_URL/realms/bimdata/protocol/openid-connect/auth
533533
- **Scopes**: N/A
534534

535535

bimdata_api_client/api/collaboration_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4988,7 +4988,7 @@ def get_cloud_invitations_with_http_info(self, cloud_pk, **kwargs): # noqa: E50
49884988
collection_formats=collection_formats)
49894989

49904990
def get_cloud_size(self, id, **kwargs): # noqa: E501
4991-
"""Returns the sizes of the cloud in Bytes. # noqa: E501
4991+
"""summary # noqa: E501
49924992

49934993
Returns the sizes of the cloud in Bytes. The response fields depends on the role of the user. If the user is an admin, all field will be returned. If the user is a standard user, only `remaining_total_size` and `remaining_smart_data_size` will be set. If the call is made from an API access, role admin (100) will be returned and all fields will be set. The fields `managed by` indicate if the subscription for this cloud is an API subscription or a BIMData Platform subscription. If the cloud is managed by an API plan, the remaining sizes will take others organizations's clouds size into account # noqa: E501
49944994
This method makes a synchronous HTTP request by default. To make an
@@ -5013,7 +5013,7 @@ def get_cloud_size(self, id, **kwargs): # noqa: E501
50135013
return self.get_cloud_size_with_http_info(id, **kwargs) # noqa: E501
50145014

50155015
def get_cloud_size_with_http_info(self, id, **kwargs): # noqa: E501
5016-
"""Returns the sizes of the cloud in Bytes. # noqa: E501
5016+
"""summary # noqa: E501
50175017

50185018
Returns the sizes of the cloud in Bytes. The response fields depends on the role of the user. If the user is an admin, all field will be returned. If the user is a standard user, only `remaining_total_size` and `remaining_smart_data_size` will be set. If the call is made from an API access, role admin (100) will be returned and all fields will be set. The fields `managed by` indicate if the subscription for this cloud is an API subscription or a BIMData Platform subscription. If the cloud is managed by an API plan, the remaining sizes will take others organizations's clouds size into account # noqa: E501
50195019
This method makes a synchronous HTTP request by default. To make an

docs/CollaborationApi.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Method | HTTP request | Description
4141
[**get_classifications**](CollaborationApi.md#get_classifications) | **GET** /cloud/{cloud_pk}/project/{project_pk}/classification | Retrieve all classifications
4242
[**get_cloud**](CollaborationApi.md#get_cloud) | **GET** /cloud/{id} | Retrieve one cloud
4343
[**get_cloud_invitations**](CollaborationApi.md#get_cloud_invitations) | **GET** /cloud/{cloud_pk}/invitation | Retrieve all pending invitations in the cloud
44-
[**get_cloud_size**](CollaborationApi.md#get_cloud_size) | **GET** /cloud/{id}/size | Returns the sizes of the cloud in Bytes.
44+
[**get_cloud_size**](CollaborationApi.md#get_cloud_size) | **GET** /cloud/{id}/size | summary
4545
[**get_cloud_user**](CollaborationApi.md#get_cloud_user) | **GET** /cloud/{cloud_pk}/user/{id} | Retrieve a user in a cloud
4646
[**get_cloud_users**](CollaborationApi.md#get_cloud_users) | **GET** /cloud/{cloud_pk}/user | Retrieve all users in a cloud, or a list with a filter by email
4747
[**get_clouds**](CollaborationApi.md#get_clouds) | **GET** /cloud | Retrieve all clouds
@@ -7842,7 +7842,7 @@ Name | Type | Description | Notes
78427842
# **get_cloud_size**
78437843
> Size get_cloud_size(id)
78447844

7845-
Returns the sizes of the cloud in Bytes.
7845+
summary
78467846

78477847
Returns the sizes of the cloud in Bytes. The response fields depends on the role of the user. If the user is an admin, all field will be returned. If the user is a standard user, only `remaining_total_size` and `remaining_smart_data_size` will be set. If the call is made from an API access, role admin (100) will be returned and all fields will be set. The fields `managed by` indicate if the subscription for this cloud is an API subscription or a BIMData Platform subscription. If the cloud is managed by an API plan, the remaining sizes will take others organizations's clouds size into account
78487848

@@ -7895,7 +7895,7 @@ with bimdata_api_client.ApiClient(configuration) as api_client:
78957895
id = 56 # int | A unique integer value identifying this cloud.
78967896

78977897
try:
7898-
# Returns the sizes of the cloud in Bytes.
7898+
# summary
78997899
api_response = api_instance.get_cloud_size(id)
79007900
pprint(api_response)
79017901
except ApiException as e:
@@ -7949,7 +7949,7 @@ with bimdata_api_client.ApiClient(configuration) as api_client:
79497949
id = 56 # int | A unique integer value identifying this cloud.
79507950

79517951
try:
7952-
# Returns the sizes of the cloud in Bytes.
7952+
# summary
79537953
api_response = api_instance.get_cloud_size(id)
79547954
pprint(api_response)
79557955
except ApiException as e:
@@ -8003,7 +8003,7 @@ with bimdata_api_client.ApiClient(configuration) as api_client:
80038003
id = 56 # int | A unique integer value identifying this cloud.
80048004

80058005
try:
8006-
# Returns the sizes of the cloud in Bytes.
8006+
# summary
80078007
api_response = api_instance.get_cloud_size(id)
80088008
pprint(api_response)
80098009
except ApiException as e:

test/test_collaboration_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ def test_get_cloud_invitations(self):
291291
def test_get_cloud_size(self):
292292
"""Test case for get_cloud_size
293293

294-
Returns the sizes of the cloud in Bytes. # noqa: E501
294+
summary # noqa: E501
295295
"""
296296
pass
297297

0 commit comments

Comments
 (0)