qi-compute-api-client 0.31.0__py3-none-any.whl → 0.33.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of qi-compute-api-client might be problematic. Click here for more details.

Files changed (132) hide show
  1. compute_api_client/__init__.py +19 -1
  2. compute_api_client/api/algorithms_api.py +76 -75
  3. compute_api_client/api/backend_api.py +78 -75
  4. compute_api_client/api/backend_types_api.py +78 -75
  5. compute_api_client/api/batch_jobs_api.py +77 -74
  6. compute_api_client/api/commits_api.py +78 -75
  7. compute_api_client/api/files_api.py +78 -75
  8. compute_api_client/api/final_results_api.py +1 -1
  9. compute_api_client/api/jobs_api.py +78 -75
  10. compute_api_client/api/languages_api.py +76 -73
  11. compute_api_client/api/members_api.py +78 -75
  12. compute_api_client/api/metadata_api.py +79 -8
  13. compute_api_client/api/permissions_api.py +146 -142
  14. compute_api_client/api/projects_api.py +76 -75
  15. compute_api_client/api/reservations_api.py +78 -75
  16. compute_api_client/api/results_api.py +151 -97
  17. compute_api_client/api/teams_api.py +78 -75
  18. compute_api_client/api/transactions_api.py +78 -75
  19. compute_api_client/api/users_api.py +78 -75
  20. compute_api_client/api_client.py +1 -1
  21. compute_api_client/configuration.py +1 -1
  22. compute_api_client/docs/AlgorithmsApi.md +12 -12
  23. compute_api_client/docs/BackendApi.md +12 -12
  24. compute_api_client/docs/BackendTypesApi.md +12 -12
  25. compute_api_client/docs/BatchJobsApi.md +12 -12
  26. compute_api_client/docs/CommitsApi.md +12 -12
  27. compute_api_client/docs/FilesApi.md +12 -12
  28. compute_api_client/docs/JobsApi.md +12 -12
  29. compute_api_client/docs/LanguagesApi.md +12 -12
  30. compute_api_client/docs/MembersApi.md +12 -12
  31. compute_api_client/docs/MetadataApi.md +12 -4
  32. compute_api_client/docs/PageAlgorithm.md +32 -0
  33. compute_api_client/docs/PageBackend.md +32 -0
  34. compute_api_client/docs/PageBackendType.md +32 -0
  35. compute_api_client/docs/PageBatchJob.md +32 -0
  36. compute_api_client/docs/PageCommit.md +32 -0
  37. compute_api_client/docs/PageFile.md +32 -0
  38. compute_api_client/docs/PageJob.md +32 -0
  39. compute_api_client/docs/PageLanguage.md +32 -0
  40. compute_api_client/docs/PageMember.md +32 -0
  41. compute_api_client/docs/PageMetadata.md +32 -0
  42. compute_api_client/docs/PagePermission.md +32 -0
  43. compute_api_client/docs/PagePermissionGroup.md +32 -0
  44. compute_api_client/docs/PageProject.md +32 -0
  45. compute_api_client/docs/PageReservation.md +32 -0
  46. compute_api_client/docs/PageResult.md +32 -0
  47. compute_api_client/docs/PageTeam.md +32 -0
  48. compute_api_client/docs/PageTransaction.md +32 -0
  49. compute_api_client/docs/PageUser.md +32 -0
  50. compute_api_client/docs/PermissionsApi.md +24 -24
  51. compute_api_client/docs/ProjectsApi.md +12 -12
  52. compute_api_client/docs/ReservationsApi.md +12 -12
  53. compute_api_client/docs/Result.md +0 -1
  54. compute_api_client/docs/ResultIn.md +0 -1
  55. compute_api_client/docs/ResultsApi.md +24 -18
  56. compute_api_client/docs/TeamsApi.md +12 -12
  57. compute_api_client/docs/TransactionsApi.md +12 -12
  58. compute_api_client/docs/UsersApi.md +12 -12
  59. compute_api_client/exceptions.py +1 -1
  60. compute_api_client/models/__init__.py +19 -1
  61. compute_api_client/models/algorithm.py +1 -1
  62. compute_api_client/models/algorithm_in.py +1 -1
  63. compute_api_client/models/algorithm_type.py +1 -1
  64. compute_api_client/models/backend.py +1 -1
  65. compute_api_client/models/backend_in.py +1 -1
  66. compute_api_client/models/backend_patch.py +1 -1
  67. compute_api_client/models/backend_status.py +1 -1
  68. compute_api_client/models/backend_type.py +1 -1
  69. compute_api_client/models/backend_with_authentication.py +1 -1
  70. compute_api_client/models/batch_job.py +1 -1
  71. compute_api_client/models/batch_job_in.py +1 -1
  72. compute_api_client/models/batch_job_status.py +1 -1
  73. compute_api_client/models/commit.py +1 -1
  74. compute_api_client/models/commit_in.py +1 -1
  75. compute_api_client/models/compile_stage.py +1 -1
  76. compute_api_client/models/domain.py +1 -1
  77. compute_api_client/models/file.py +1 -1
  78. compute_api_client/models/file_in.py +1 -1
  79. compute_api_client/models/final_result.py +1 -1
  80. compute_api_client/models/final_result_in.py +1 -1
  81. compute_api_client/models/http_not_found_error.py +1 -1
  82. compute_api_client/models/http_validation_error.py +1 -1
  83. compute_api_client/models/job.py +1 -1
  84. compute_api_client/models/job_in.py +1 -1
  85. compute_api_client/models/job_patch.py +1 -1
  86. compute_api_client/models/job_status.py +1 -1
  87. compute_api_client/models/language.py +1 -1
  88. compute_api_client/models/location_inner.py +1 -1
  89. compute_api_client/models/member.py +1 -1
  90. compute_api_client/models/member_in.py +1 -1
  91. compute_api_client/models/metadata.py +1 -1
  92. compute_api_client/models/metadata_in.py +1 -1
  93. compute_api_client/models/page_algorithm.py +125 -0
  94. compute_api_client/models/page_backend.py +125 -0
  95. compute_api_client/models/page_backend_type.py +125 -0
  96. compute_api_client/models/page_batch_job.py +125 -0
  97. compute_api_client/models/page_commit.py +125 -0
  98. compute_api_client/models/page_file.py +125 -0
  99. compute_api_client/models/page_job.py +125 -0
  100. compute_api_client/models/page_language.py +125 -0
  101. compute_api_client/models/page_member.py +125 -0
  102. compute_api_client/models/page_metadata.py +125 -0
  103. compute_api_client/models/page_permission.py +125 -0
  104. compute_api_client/models/page_permission_group.py +125 -0
  105. compute_api_client/models/page_project.py +125 -0
  106. compute_api_client/models/page_reservation.py +125 -0
  107. compute_api_client/models/page_result.py +125 -0
  108. compute_api_client/models/page_team.py +125 -0
  109. compute_api_client/models/page_transaction.py +125 -0
  110. compute_api_client/models/page_user.py +125 -0
  111. compute_api_client/models/permission.py +1 -1
  112. compute_api_client/models/permission_group.py +1 -1
  113. compute_api_client/models/project.py +1 -1
  114. compute_api_client/models/project_in.py +1 -1
  115. compute_api_client/models/project_patch.py +1 -1
  116. compute_api_client/models/reservation.py +1 -1
  117. compute_api_client/models/reservation_in.py +1 -1
  118. compute_api_client/models/result.py +2 -6
  119. compute_api_client/models/result_in.py +2 -6
  120. compute_api_client/models/role.py +1 -1
  121. compute_api_client/models/share_type.py +1 -1
  122. compute_api_client/models/team.py +1 -1
  123. compute_api_client/models/transaction.py +1 -1
  124. compute_api_client/models/user.py +1 -1
  125. compute_api_client/models/user_in.py +1 -1
  126. compute_api_client/models/validation_error.py +1 -1
  127. compute_api_client/rest.py +1 -1
  128. {qi_compute_api_client-0.31.0.dist-info → qi_compute_api_client-0.33.0.dist-info}/METADATA +20 -2
  129. qi_compute_api_client-0.33.0.dist-info/RECORD +180 -0
  130. {qi_compute_api_client-0.31.0.dist-info → qi_compute_api_client-0.33.0.dist-info}/WHEEL +1 -1
  131. qi_compute_api_client-0.31.0.dist-info/RECORD +0 -144
  132. {qi_compute_api_client-0.31.0.dist-info → qi_compute_api_client-0.33.0.dist-info}/LICENSE.md +0 -0
@@ -3,7 +3,7 @@
3
3
  """
4
4
  Quantum Inspire 2
5
5
 
6
- **Sorting and Pagination of list endpoints** The api provides sorting and pagination for list endpoints. The following parameters can be passed as query parameters to get sorted and paginated list. - `latest` - **Type**: Boolean. - **Description**: Get the most recently created object. Defaults to False. - `sort_by` - **Type**: String: - **Description**: The field / column name to sort on. To reverse sort provide the field with a \"-\" sign. E.g. \"created_on\" for ascending order while \"-created_on\" in descending order. Defaults to \"id\". - `page_number` - **Type**: Positive Integer - **Description**: The page number for pagination. Defaults to 1. - `items_per_page` - **Type**: Positive Integer. - **Description**: The number of items per page for pagination. Defaults to 50.
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
 
8
8
  The version of the OpenAPI document: 0.1.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
@@ -3,7 +3,7 @@
3
3
  """
4
4
  Quantum Inspire 2
5
5
 
6
- **Sorting and Pagination of list endpoints** The api provides sorting and pagination for list endpoints. The following parameters can be passed as query parameters to get sorted and paginated list. - `latest` - **Type**: Boolean. - **Description**: Get the most recently created object. Defaults to False. - `sort_by` - **Type**: String: - **Description**: The field / column name to sort on. To reverse sort provide the field with a \"-\" sign. E.g. \"created_on\" for ascending order while \"-created_on\" in descending order. Defaults to \"id\". - `page_number` - **Type**: Positive Integer - **Description**: The page number for pagination. Defaults to 1. - `items_per_page` - **Type**: Positive Integer. - **Description**: The number of items per page for pagination. Defaults to 50.
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
 
8
8
  The version of the OpenAPI document: 0.1.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
@@ -3,7 +3,7 @@
3
3
  """
4
4
  Quantum Inspire 2
5
5
 
6
- **Sorting and Pagination of list endpoints** The api provides sorting and pagination for list endpoints. The following parameters can be passed as query parameters to get sorted and paginated list. - `latest` - **Type**: Boolean. - **Description**: Get the most recently created object. Defaults to False. - `sort_by` - **Type**: String: - **Description**: The field / column name to sort on. To reverse sort provide the field with a \"-\" sign. E.g. \"created_on\" for ascending order while \"-created_on\" in descending order. Defaults to \"id\". - `page_number` - **Type**: Positive Integer - **Description**: The page number for pagination. Defaults to 1. - `items_per_page` - **Type**: Positive Integer. - **Description**: The number of items per page for pagination. Defaults to 50.
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
 
8
8
  The version of the OpenAPI document: 0.1.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
@@ -3,7 +3,7 @@
3
3
  """
4
4
  Quantum Inspire 2
5
5
 
6
- **Sorting and Pagination of list endpoints** The api provides sorting and pagination for list endpoints. The following parameters can be passed as query parameters to get sorted and paginated list. - `latest` - **Type**: Boolean. - **Description**: Get the most recently created object. Defaults to False. - `sort_by` - **Type**: String: - **Description**: The field / column name to sort on. To reverse sort provide the field with a \"-\" sign. E.g. \"created_on\" for ascending order while \"-created_on\" in descending order. Defaults to \"id\". - `page_number` - **Type**: Positive Integer - **Description**: The page number for pagination. Defaults to 1. - `items_per_page` - **Type**: Positive Integer. - **Description**: The number of items per page for pagination. Defaults to 50.
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
 
8
8
  The version of the OpenAPI document: 0.1.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
@@ -3,7 +3,7 @@
3
3
  """
4
4
  Quantum Inspire 2
5
5
 
6
- **Sorting and Pagination of list endpoints** The api provides sorting and pagination for list endpoints. The following parameters can be passed as query parameters to get sorted and paginated list. - `latest` - **Type**: Boolean. - **Description**: Get the most recently created object. Defaults to False. - `sort_by` - **Type**: String: - **Description**: The field / column name to sort on. To reverse sort provide the field with a \"-\" sign. E.g. \"created_on\" for ascending order while \"-created_on\" in descending order. Defaults to \"id\". - `page_number` - **Type**: Positive Integer - **Description**: The page number for pagination. Defaults to 1. - `items_per_page` - **Type**: Positive Integer. - **Description**: The number of items per page for pagination. Defaults to 50.
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
 
8
8
  The version of the OpenAPI document: 0.1.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
@@ -3,7 +3,7 @@
3
3
  """
4
4
  Quantum Inspire 2
5
5
 
6
- **Sorting and Pagination of list endpoints** The api provides sorting and pagination for list endpoints. The following parameters can be passed as query parameters to get sorted and paginated list. - `latest` - **Type**: Boolean. - **Description**: Get the most recently created object. Defaults to False. - `sort_by` - **Type**: String: - **Description**: The field / column name to sort on. To reverse sort provide the field with a \"-\" sign. E.g. \"created_on\" for ascending order while \"-created_on\" in descending order. Defaults to \"id\". - `page_number` - **Type**: Positive Integer - **Description**: The page number for pagination. Defaults to 1. - `items_per_page` - **Type**: Positive Integer. - **Description**: The number of items per page for pagination. Defaults to 50.
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
 
8
8
  The version of the OpenAPI document: 0.1.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
@@ -3,7 +3,7 @@
3
3
  """
4
4
  Quantum Inspire 2
5
5
 
6
- **Sorting and Pagination of list endpoints** The api provides sorting and pagination for list endpoints. The following parameters can be passed as query parameters to get sorted and paginated list. - `latest` - **Type**: Boolean. - **Description**: Get the most recently created object. Defaults to False. - `sort_by` - **Type**: String: - **Description**: The field / column name to sort on. To reverse sort provide the field with a \"-\" sign. E.g. \"created_on\" for ascending order while \"-created_on\" in descending order. Defaults to \"id\". - `page_number` - **Type**: Positive Integer - **Description**: The page number for pagination. Defaults to 1. - `items_per_page` - **Type**: Positive Integer. - **Description**: The number of items per page for pagination. Defaults to 50.
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
 
8
8
  The version of the OpenAPI document: 0.1.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
@@ -3,7 +3,7 @@
3
3
  """
4
4
  Quantum Inspire 2
5
5
 
6
- **Sorting and Pagination of list endpoints** The api provides sorting and pagination for list endpoints. The following parameters can be passed as query parameters to get sorted and paginated list. - `latest` - **Type**: Boolean. - **Description**: Get the most recently created object. Defaults to False. - `sort_by` - **Type**: String: - **Description**: The field / column name to sort on. To reverse sort provide the field with a \"-\" sign. E.g. \"created_on\" for ascending order while \"-created_on\" in descending order. Defaults to \"id\". - `page_number` - **Type**: Positive Integer - **Description**: The page number for pagination. Defaults to 1. - `items_per_page` - **Type**: Positive Integer. - **Description**: The number of items per page for pagination. Defaults to 50.
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
7
 
8
8
  The version of the OpenAPI document: 0.1.0
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qi-compute-api-client
3
- Version: 0.31.0
3
+ Version: 0.33.0
4
4
  Summary: An API client for the Compute Job Manager of Quantum Inspire.
5
5
  Home-page: https://github.com/QuTech-Delft/compute-api-client
6
6
  License: Apache-2.0
@@ -22,7 +22,7 @@ Project-URL: Repository, https://github.com/QuTech-Delft/compute-api-client
22
22
  Description-Content-Type: text/markdown
23
23
 
24
24
  # compute-api-client
25
- **Sorting and Pagination of list endpoints** The api provides sorting and pagination for list endpoints. The following parameters can be passed as query parameters to get sorted and paginated list. - `latest` - **Type**: Boolean. - **Description**: Get the most recently created object. Defaults to False. - `sort_by` - **Type**: String: - **Description**: The field / column name to sort on. To reverse sort provide the field with a \"-\" sign. E.g. \"created_on\" for ascending order while \"-created_on\" in descending order. Defaults to \"id\". - `page_number` - **Type**: Positive Integer - **Description**: The page number for pagination. Defaults to 1. - `items_per_page` - **Type**: Positive Integer. - **Description**: The number of items per page for pagination. Defaults to 50.
25
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
26
26
 
27
27
  The `compute_api_client` package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
28
28
 
@@ -200,6 +200,24 @@ Class | Method | HTTP request | Description
200
200
  - [MemberIn](compute_api_client/docs/MemberIn.md)
201
201
  - [Metadata](compute_api_client/docs/Metadata.md)
202
202
  - [MetadataIn](compute_api_client/docs/MetadataIn.md)
203
+ - [PageAlgorithm](compute_api_client/docs/PageAlgorithm.md)
204
+ - [PageBackend](compute_api_client/docs/PageBackend.md)
205
+ - [PageBackendType](compute_api_client/docs/PageBackendType.md)
206
+ - [PageBatchJob](compute_api_client/docs/PageBatchJob.md)
207
+ - [PageCommit](compute_api_client/docs/PageCommit.md)
208
+ - [PageFile](compute_api_client/docs/PageFile.md)
209
+ - [PageJob](compute_api_client/docs/PageJob.md)
210
+ - [PageLanguage](compute_api_client/docs/PageLanguage.md)
211
+ - [PageMember](compute_api_client/docs/PageMember.md)
212
+ - [PageMetadata](compute_api_client/docs/PageMetadata.md)
213
+ - [PagePermission](compute_api_client/docs/PagePermission.md)
214
+ - [PagePermissionGroup](compute_api_client/docs/PagePermissionGroup.md)
215
+ - [PageProject](compute_api_client/docs/PageProject.md)
216
+ - [PageReservation](compute_api_client/docs/PageReservation.md)
217
+ - [PageResult](compute_api_client/docs/PageResult.md)
218
+ - [PageTeam](compute_api_client/docs/PageTeam.md)
219
+ - [PageTransaction](compute_api_client/docs/PageTransaction.md)
220
+ - [PageUser](compute_api_client/docs/PageUser.md)
203
221
  - [Permission](compute_api_client/docs/Permission.md)
204
222
  - [PermissionGroup](compute_api_client/docs/PermissionGroup.md)
205
223
  - [Project](compute_api_client/docs/Project.md)
@@ -0,0 +1,180 @@
1
+ compute_api_client/__init__.py,sha256=ThlS5yrociQmFYrfcuPp9Dr4tyGam1tYZjjCQm0YTaA,6104
2
+ compute_api_client/api/__init__.py,sha256=t8rYBWV5wDVdZPLmo97F78Dfb_J6R5AxEIlnaX8MWA0,1143
3
+ compute_api_client/api/algorithms_api.py,sha256=Iq3X7347R8ZsF3hDoIlEA8girl0ww_k1orMPMc6ygDE,59489
4
+ compute_api_client/api/backend_api.py,sha256=zNX_CYAm-6IrCuR7hlgHOCTwOkR1YQXn-3Ck9VUsCK8,57958
5
+ compute_api_client/api/backend_types_api.py,sha256=OwOdWArkZ9jRbIrytlCPK7GMVFqlqcrRlYSx-TSSQLM,29549
6
+ compute_api_client/api/batch_jobs_api.py,sha256=OB9EsaNpLvr80Tq3CUkNoJlwrO4CnDnVBeHne3FVJa8,83892
7
+ compute_api_client/api/commits_api.py,sha256=5V_qvBwjVK9ALOQ3sEgdBw0uKtypUBkhha9dQO4tGVY,46742
8
+ compute_api_client/api/files_api.py,sha256=N4xCc9gK17IJi-wZt9t9RCraJB6DCkHm-wAj1ZUYXlM,46808
9
+ compute_api_client/api/final_results_api.py,sha256=zfr4Yn44Q5KhNSHAk2aC_ZfLa1yASHHq3D3_MJ3ToNg,31894
10
+ compute_api_client/api/jobs_api.py,sha256=Pr-nutBW3a7eeymnoPUJRLWrFFb_lVyRi50_k4aZv4M,62808
11
+ compute_api_client/api/languages_api.py,sha256=J9XI0q_60UaBfaemtV4XdgelkEDUqjx6WUTLjb-XJ4k,25756
12
+ compute_api_client/api/members_api.py,sha256=tCywXFQoJPF0BnJ_Da4lEyM4XD9BPLTCjYkjWkpfNAw,45684
13
+ compute_api_client/api/metadata_api.py,sha256=eLy_tlOhIUxoPDHMI779eALslCr3AxynUysIW_yaGuY,35288
14
+ compute_api_client/api/permissions_api.py,sha256=-8Y7YJa4lpaCVHckoVwYa-cJYiWD-98_IL0su1ArsEI,49598
15
+ compute_api_client/api/projects_api.py,sha256=URa3DDiCqiHdR7NWfWR-Y7-9RuQ7UOAWQKxEVyWMDf8,71112
16
+ compute_api_client/api/reservations_api.py,sha256=28sDPr3slUvdtEzBDeNOHvjzX5A_oxPSgPEkgagChlw,50193
17
+ compute_api_client/api/results_api.py,sha256=VOvtVlcEbHGHCKD58Gj_ef431K-5p6oRAH27428IHbo,65279
18
+ compute_api_client/api/teams_api.py,sha256=daGp9YTZF7I5NCAgm2_2xW4sOTh30oqpMZE0ppQs-fw,25747
19
+ compute_api_client/api/transactions_api.py,sha256=vQz7UvzTA1BGKUz08A1-8gz3975QnqLG87V9dsvsTs4,29950
20
+ compute_api_client/api/users_api.py,sha256=veol1D2YXX3NWs9Y_uljjdjG2PsEz8y1hSF-5jHmtt0,47705
21
+ compute_api_client/api_client.py,sha256=Fie1rugPyLJlXtZDfP7TC8ec9_JipjKxV0EB-RP9CFQ,25065
22
+ compute_api_client/api_response.py,sha256=A7O_XgliD6y7jEv82fgIaxR3T8KiwaOqHR6djpZyh_o,674
23
+ compute_api_client/configuration.py,sha256=pwBK6aXET054Y6XCLshR8mEWBPMfpekC3bAts4kSCKQ,15231
24
+ compute_api_client/docs/Algorithm.md,sha256=LThexsNa9FuuIyP9Hs2yjP2L-04VszC7AdfOJgJRj3s,992
25
+ compute_api_client/docs/AlgorithmIn.md,sha256=ikR6b3TyLjXyWxqlUDcS25ZCwyion5VCQ5D6RNWpuz4,1013
26
+ compute_api_client/docs/AlgorithmType.md,sha256=056KK2zjtdGqqTXkDsxg8mCzxr2sM8C37YmrR3txGVA,292
27
+ compute_api_client/docs/AlgorithmsApi.md,sha256=86LvDgo-LpfLBI8E8hgEn3BMymEmIqNpfk_Q5v2U3hw,14474
28
+ compute_api_client/docs/Backend.md,sha256=7xbvLaCTqqFzwcA2QONhY-QXa_Ts1fWiuBQBJegW50g,968
29
+ compute_api_client/docs/BackendApi.md,sha256=KWld3mvfxlP_ZiYNSHxNNCkMSwuSnbKy9aFsrFvuHMg,13986
30
+ compute_api_client/docs/BackendIn.md,sha256=7_drRygOUPHFWjrvAJGo7WwmcyK6EeRnlSnA6WtTCu0,978
31
+ compute_api_client/docs/BackendPatch.md,sha256=xET1pnI8JStGhtHm7qT-1zv7RCuKl2CUIKtYueWq72U,927
32
+ compute_api_client/docs/BackendStatus.md,sha256=ofnS843IHCIxoywjJJ01GP90Gn1XedAm5xR8TONmUbk,292
33
+ compute_api_client/docs/BackendType.md,sha256=X6Fi-eoTNo-Xldg_YEwC_-zyPqlMNXFYoiKin6mQ_8M,1255
34
+ compute_api_client/docs/BackendTypesApi.md,sha256=8tjmz-0HsIIIauB1tfQ9PpW83FejgD6UC14LRZNoy04,7196
35
+ compute_api_client/docs/BackendWithAuthentication.md,sha256=u9lZh4FusMtOuV53yc0QXHdnTas-4HNC06NyDh8E1Go,1256
36
+ compute_api_client/docs/BatchJob.md,sha256=IozaJI2zAL1zo_zmuI-RIKvLGK68KkyW53AH4jbIaIs,1210
37
+ compute_api_client/docs/BatchJobIn.md,sha256=9-nP1Xgnzd5tfvo8WmandUWR8IY-2pMeZyW0HveKZEU,847
38
+ compute_api_client/docs/BatchJobStatus.md,sha256=UQift_l9A3L0azzYjQtr7UnmYk6X36Ug3U7S-VTpx7A,293
39
+ compute_api_client/docs/BatchJobsApi.md,sha256=h7MhwjOcDwfSuDOK44XrwYw30oUN4vOw4LrM12L2JtI,20832
40
+ compute_api_client/docs/Commit.md,sha256=WI3TcSFBdLWRjvJ9OBKiAKSN5AX7gXHs7EZm-Zs77FE,894
41
+ compute_api_client/docs/CommitIn.md,sha256=tnd4OQ1brIRnNGAGkH3x_HRIQIg68CZTuAEJ2JDKK9w,843
42
+ compute_api_client/docs/CommitsApi.md,sha256=URc0Hg8YCHaqieHbRFEdd33kcM29xmPKvh9yG_ZpUTU,10974
43
+ compute_api_client/docs/CompileStage.md,sha256=-U9wb4fyD8b_cjV1-GBIBJfbquFulRlHFm3C0GFnGik,291
44
+ compute_api_client/docs/Domain.md,sha256=HONTAt17CX2vFhnkHOFqMpJEIJjPM8GTBBQriWA71UY,285
45
+ compute_api_client/docs/File.md,sha256=Sv44g-54NNYcZL-sJeruJhohCHVNmCaue0u-xfsAHLw,967
46
+ compute_api_client/docs/FileIn.md,sha256=yRMAH_chHNZo4YskPGdw_nx14-sPn6S_OPdfm4-ej_U,1006
47
+ compute_api_client/docs/FilesApi.md,sha256=PB9Lw50m0-qJTRPvAuQgTfJjo6ASbA89_bMGBffmExA,10955
48
+ compute_api_client/docs/FinalResult.md,sha256=sRCvqIH3TXruJvgaHp4s6zyfCEkuBReVoaqr2iHVkJU,939
49
+ compute_api_client/docs/FinalResultIn.md,sha256=9RSstFSQ08-we_4TtoEAP1_KIq6FBdftRyc-DDkAGLQ,913
50
+ compute_api_client/docs/FinalResultsApi.md,sha256=V7X34yAWXZMlUBhPgC7EKhW_TXenIlhYR84PiH3kG9A,8167
51
+ compute_api_client/docs/HTTPNotFoundError.md,sha256=1GluS5OAVTk1qNrQwBOb29eQiNMJnCXyJk-0oKf-Rlc,936
52
+ compute_api_client/docs/HTTPValidationError.md,sha256=MRdybtO0HOeFCN3Zk221Q6XH6fw1Qyg8J9KLPn38tI4,1006
53
+ compute_api_client/docs/Job.md,sha256=gXYcbGXDIqOTNuf9kHJJqmK7d9IrWIdsqLznizkrBNk,1048
54
+ compute_api_client/docs/JobIn.md,sha256=zN8pXLT1iGJg0o--iOfTZCm8Qj3UWApejFaASJ5AM8s,847
55
+ compute_api_client/docs/JobPatch.md,sha256=YadPzV_CU2oygKaaw8FJuikEo4M6QqO5uR628w1bKf4,827
56
+ compute_api_client/docs/JobStatus.md,sha256=BFKP4etVPMe37IOCI77TTxry-KfOcwhj_H5oNSfPkPA,288
57
+ compute_api_client/docs/JobsApi.md,sha256=4vV63UuUTQ9J2pYHkYz7J6Ng2WdK3jQ6AIHtRZBxxiA,15127
58
+ compute_api_client/docs/Language.md,sha256=eHCpr4xEVei2MTA9zKu4DxBZamoSrSE3JOD36I7iDwU,847
59
+ compute_api_client/docs/LanguagesApi.md,sha256=JcUYSDa-Sc7he7vUPWxWK0HH1RWfx_tJWG4bA7P3sqY,5977
60
+ compute_api_client/docs/LocationInner.md,sha256=Z1Z8_cF7hlrfoOGVKoWz-ZhSQ457HKDdE_nXzZ9TPCA,843
61
+ compute_api_client/docs/Member.md,sha256=Y1w2DLahBH71KkFN_pLZ_jK7OeuzZjEvKm9_uypkxis,892
62
+ compute_api_client/docs/MemberIn.md,sha256=9Qy8ZNV5_f04glvxGQ-Y8HGPS_pYsftCnZBt1635-hU,931
63
+ compute_api_client/docs/MembersApi.md,sha256=TDxBG-PCQ7YSvysFHajKlEiEJ-s7hdtY6oOQPUK0jyA,10524
64
+ compute_api_client/docs/Metadata.md,sha256=R5XBSvfG31CHzOEV8HtwaWDmrOOihS5Ky18woUfUlwE,889
65
+ compute_api_client/docs/MetadataApi.md,sha256=E7LYrmQSE5H_nplhbaXf6N56ZTVYkd_G54sgvWFSWbY,8617
66
+ compute_api_client/docs/MetadataIn.md,sha256=PBzLjFfYDlZdF3xSFjoQ1uP_EayjI1EmgvmBxPdJ8uI,874
67
+ compute_api_client/docs/PageAlgorithm.md,sha256=Fm9S7b9PdITbl1pVvcwUH_P66mK_D1A4Rkf9T_ZmM7E,1010
68
+ compute_api_client/docs/PageBackend.md,sha256=KZ61OnUKPq7vbI7_YTv7dp4ZhrZaD9wCOaQ7kANdUYo,980
69
+ compute_api_client/docs/PageBackendType.md,sha256=qMch61xCP2UuafMyy_wTd8ON-hqHyxMmqWOuDv7VDMc,1047
70
+ compute_api_client/docs/PageBatchJob.md,sha256=pF7_0XlnVeW2VpsCPdnWF5YR_T1CogChaI1O0386SxU,1002
71
+ compute_api_client/docs/PageCommit.md,sha256=GrMMmeIvl_KbnMwaWEegTrmRjtvo-5ovWkWVUs320r8,965
72
+ compute_api_client/docs/PageFile.md,sha256=s8dIFFIR-AIsag98X9cZpEaB_AqGRI6PslTTIZZx-RY,935
73
+ compute_api_client/docs/PageJob.md,sha256=hDIcvplf9zvK5Yb1xwS2PLykjhIEQ1CWmYa1DNgi0kM,920
74
+ compute_api_client/docs/PageLanguage.md,sha256=3roxlOLj7rbmi6_Z0J59EOi3h51whXjzC0htofm-pnM,995
75
+ compute_api_client/docs/PageMember.md,sha256=P7QYwHoUxo3R5ZlbxYyJpXxlg6N_m67WTMqrA5uQDwU,965
76
+ compute_api_client/docs/PageMetadata.md,sha256=CPL3LTSh-_U_TaGwYZF6IGfdN4iYdDTsXrSjolHo9p8,995
77
+ compute_api_client/docs/PagePermission.md,sha256=RlNS6KwJx0a0MS4HLdLOtEr61CIyptk6wmq9qcdZ2IM,1025
78
+ compute_api_client/docs/PagePermissionGroup.md,sha256=w334z91EzOUysRqptP5yuAKxJDg0GOQo-M0WETbtsdw,1107
79
+ compute_api_client/docs/PageProject.md,sha256=gh8PXcoR2IpQGRM4zkulb8tQtdzEib_Qw9XrcvkhxpM,980
80
+ compute_api_client/docs/PageReservation.md,sha256=6AYXBg2UDAOOumiLSnvvIUmmygEGU5xb64emxHe73rU,1040
81
+ compute_api_client/docs/PageResult.md,sha256=HOYKRkvnlFGA5ab3IPcvlwx_vrDKePxpcY1d3N2ufyw,965
82
+ compute_api_client/docs/PageTeam.md,sha256=guYOzVxw7oCh3ZmjiDNt6ieZQ2uuyTGfXQUmHapytVQ,935
83
+ compute_api_client/docs/PageTransaction.md,sha256=Z4XNWZNWJZs5Axce2Grwfx4pu3kvfR2YfPCrlouo2QQ,1040
84
+ compute_api_client/docs/PageUser.md,sha256=zOT6PMJ_1x7uj5ykWG4V5Iyu-Ic8ut_m-pB1ijw5ZVQ,935
85
+ compute_api_client/docs/Permission.md,sha256=gSRBHoPMcJEgGKRAHxSWLG921o6cnJQgeMyJgJHXieA,876
86
+ compute_api_client/docs/PermissionGroup.md,sha256=4gHLWGB9XHA7EoEk1M8ChffeNcF5v8zeBn3nklRkJJo,917
87
+ compute_api_client/docs/PermissionsApi.md,sha256=nbwcCQxM-iraXcpnJ2LMZU4RprW4w324Tq5QDSBRWGs,12035
88
+ compute_api_client/docs/Project.md,sha256=fC2w63y-I3Nfwf93Br6B0pbX2Sd7IH3MUpkLUSifdRY,932
89
+ compute_api_client/docs/ProjectIn.md,sha256=37DDbutsLHAURQzQaTL-O0nagNUO2AnS3aTqSf1vkEA,935
90
+ compute_api_client/docs/ProjectPatch.md,sha256=lSuCnJWbim0XPrmdXl5_h0WWGh3-Tr3R0G1RDXjAleQ,989
91
+ compute_api_client/docs/ProjectsApi.md,sha256=q2Mhql2tzNei9rvA48iw0dMBMWd0RIuAHEnIHlvtmSE,16665
92
+ compute_api_client/docs/Reservation.md,sha256=SX9xFwujAOl2yJBLO66CFM6JkxFquSNJQOBwkJAah5E,1035
93
+ compute_api_client/docs/ReservationIn.md,sha256=veTcJp5zNuApDCm76I6FawcWVjyLcvxGOubmmfvPJiw,979
94
+ compute_api_client/docs/ReservationsApi.md,sha256=ru49lUSCPKg6uyDcSWuxtGgqOwBMkWKpS7YKJZqj0Ok,12069
95
+ compute_api_client/docs/Result.md,sha256=dCqJTUZpwJQyoQh4-m45RhqlJQowbta06mBTyTH961U,1009
96
+ compute_api_client/docs/ResultIn.md,sha256=HFOPIzX-tVPrIUMYYdgyGoq9I_1KFNLDnGIJal0hdag,1027
97
+ compute_api_client/docs/ResultsApi.md,sha256=FA2dUSrch2a6udi3BrWenAbDS_gzQSvQ4CwB3JDZClg,15706
98
+ compute_api_client/docs/Role.md,sha256=WKRdBmGL1vHDgSxeIhUItEJnZJ-lMedQJoBEleQQou4,283
99
+ compute_api_client/docs/ShareType.md,sha256=AxfoQcU9wr9iU9r4unG1_miL8XT75FdAziZJzLDvQL0,288
100
+ compute_api_client/docs/Team.md,sha256=cGhzeDoJHyFX-offM414nz1lp1G9BslQUBGJejJMGWo,829
101
+ compute_api_client/docs/TeamsApi.md,sha256=UL4Ritv-Xerdc0_bixutd_cG4mYtmWooFYN8znwwwik,5811
102
+ compute_api_client/docs/Transaction.md,sha256=l2RsE4I6YC2FXUFKKhPIz5ZcpVH0AMdZKoxDNU8AUbs,1020
103
+ compute_api_client/docs/TransactionsApi.md,sha256=GXTa3op0allgaAlxoFOHMvfXCBbd01szOKutpjx2UWI,7081
104
+ compute_api_client/docs/User.md,sha256=oTsbbVs-VN8fFWiZCuu5OJmv97lQkZ2AAfdhLu2HsQY,956
105
+ compute_api_client/docs/UserIn.md,sha256=xAPeVO5WTaNcbI151w0j_g6BEM-xYquMV5Nx6srJA4Q,1082
106
+ compute_api_client/docs/UsersApi.md,sha256=_i1dIB7AW349xb8JcFtGohvK4l6iovAEYUYKaY5DZYc,10802
107
+ compute_api_client/docs/ValidationError.md,sha256=NZSCUyM9u2fx4CFZfPF9cl_e6zDxQ9siBX-WtNHJyeA,978
108
+ compute_api_client/exceptions.py,sha256=SxnwGBUmd989OJ9knsPWbZ3v59nn3_kipRYzOQZztXE,5451
109
+ compute_api_client/models/__init__.py,sha256=4N5O3a7EzozD5Zv4YpRJRb6m-osqgY2rFHE9-yYno5w,4429
110
+ compute_api_client/models/algorithm.py,sha256=eA77q4e5gi8VStOJplR0UF-E9gBr6VFkxsqt8Ohx1Yo,3190
111
+ compute_api_client/models/algorithm_in.py,sha256=-U2CoNZZSpAGBe6O7KFMJ9yIJAaOGEbPBdCTMIB3s2g,3148
112
+ compute_api_client/models/algorithm_type.py,sha256=yKefgGvi-f_O6OReG1Tu8Me_u2YZrvx5CFOSlTk8-6M,862
113
+ compute_api_client/models/backend.py,sha256=cZ_q1zzW6t9hDF-Llu2Zm8bgVQLvef0qFWLIENmp1Bg,3006
114
+ compute_api_client/models/backend_in.py,sha256=9XK17112GvDxH2jAJpedX7z4kQ4oNr14EsCQ5dmGsEk,2957
115
+ compute_api_client/models/backend_patch.py,sha256=QMKRJkxMIRiIc4dFQscqIJFe5zgCU11cm_6d_rnKOaE,2556
116
+ compute_api_client/models/backend_status.py,sha256=kLo5B4ZGtYuzRRADnxAdxeurPJYD_0TzJq69rYAnWGA,918
117
+ compute_api_client/models/backend_type.py,sha256=xqkVhjBSrJCXrbh0bByFaWitWmkCRNJ75Igan3R-qnE,3753
118
+ compute_api_client/models/backend_with_authentication.py,sha256=Zc62u-GsghnQnWu8KYAqNcF9WA60uPYxqMnGtYeJkdc,3243
119
+ compute_api_client/models/batch_job.py,sha256=OWedWfSa23U5qDT9SELxtHdrQEuSlDbdhcMCC9bIa58,4388
120
+ compute_api_client/models/batch_job_in.py,sha256=K2HVli0JZyLf_sVQbP6J7b5PyQUAwM6TbFpPTEbEdmY,2391
121
+ compute_api_client/models/batch_job_status.py,sha256=5RUAIBC_ZKrkno2pM3KXSyLA5BB91PMUBL9tIA2W50w,941
122
+ compute_api_client/models/commit.py,sha256=n7E2FeCSYGoxR2GA-Iaynon5WgCbyme5_eXqngV5GVE,2813
123
+ compute_api_client/models/commit_in.py,sha256=ABzzJRUP9FEc2y6AxRmWUFRxT_KJSH7X_TIfLpLdfLk,2475
124
+ compute_api_client/models/compile_stage.py,sha256=tjYzMVSAAtFemNiAchhZs-SOO7sKv5aCkfZWp0UgSwE,919
125
+ compute_api_client/models/domain.py,sha256=74HU4E_VPU84i7035NxJArBJW87yo-MS-YSoT1J7-Ac,875
126
+ compute_api_client/models/file.py,sha256=VShw2-IDR7byr4BwzITD7ge-EwwwNJc9kCZTDyOeofg,2982
127
+ compute_api_client/models/file_in.py,sha256=f-hMvyY0y6puLicSf1ngbIZ5QkHBxDyksWd4nVIIxp8,3008
128
+ compute_api_client/models/final_result.py,sha256=nikP4R6CF4otZ3kPmw1_VlrS51-y-2c1UdDhiVFmi28,2643
129
+ compute_api_client/models/final_result_in.py,sha256=0a3BDpM21XdfMp-kdr7DQ3peU4IDa_Pe-2z6v_D1s_8,2477
130
+ compute_api_client/models/http_not_found_error.py,sha256=ZxTsaEc2MX_Sb6pyoqt-sEhnQ6uwzpd8uRTEklcfaSY,2383
131
+ compute_api_client/models/http_validation_error.py,sha256=x7kRxeYeaVlQ-ckHPfkeFlsWsxZPDMKcvfOCR7jOlao,2882
132
+ compute_api_client/models/job.py,sha256=WoyezOgmQTZgA4DJAF19RJWXs2WcTXoYhErP1fE5024,3924
133
+ compute_api_client/models/job_in.py,sha256=dhlvkgXns3IxcMuscJwGBoue4oMuEzcwbnwBswCYal4,2815
134
+ compute_api_client/models/job_patch.py,sha256=eV3HzR59MOyuutLwhXDJTYbyT7rPVpabTde4BSBAGlI,2395
135
+ compute_api_client/models/job_status.py,sha256=axKdggJ8edmJGFMVVarPd_rZIae6B1Sn7yTKOgtq8cc,930
136
+ compute_api_client/models/language.py,sha256=rwSwzzxvpapfipAZYKpJ1bcgRzsvTVSnGCtPIs6X5Qs,2620
137
+ compute_api_client/models/location_inner.py,sha256=h2NaeDVOxZszCCG3rilEBBlPsFLckpZxCxrnvP0s_pw,4866
138
+ compute_api_client/models/member.py,sha256=axy5_qArwLJ0EWxXVRZLrJodHrx3CnWqZegp4nVC6b8,2683
139
+ compute_api_client/models/member_in.py,sha256=JTASd1YdPfZY7Fe5OSafnDLP_ZSQEeYpH4twvNj4Dhs,2709
140
+ compute_api_client/models/metadata.py,sha256=igNeLm7Wlaclp5hRsOKWRUtgf21y02sLTJ8xrs9hOPY,2615
141
+ compute_api_client/models/metadata_in.py,sha256=LxBqiLnepqHj5t4nnx8gT55UeNjdV90WhwHuZEcP3vo,2699
142
+ compute_api_client/models/page_algorithm.py,sha256=UuNIAbWpujOiiGThg4uEJxnhALGFi-OAYlp8dEXCoeM,4117
143
+ compute_api_client/models/page_backend.py,sha256=U_zCCPL6xfSRJDp_upWBAwxIu-0EK-46OkXieijVa8g,4101
144
+ compute_api_client/models/page_backend_type.py,sha256=u2ReGSj60ZlmQlaMke8GTYex2sQ1u20Pkc9NV4-jQbU,4134
145
+ compute_api_client/models/page_batch_job.py,sha256=PcjpgEpLVPJWYGIvr6XRdX5cPfqah1ZHdvcoxt99LqM,4110
146
+ compute_api_client/models/page_commit.py,sha256=2a0FlLpEbajFxuDBb85zqubuoFhzTSQh9yLvF1cQKEI,4093
147
+ compute_api_client/models/page_file.py,sha256=q85ipOUuPB0NJVzBaEBTKx6MISm2GMZ9pHqmuXmyNrg,4077
148
+ compute_api_client/models/page_job.py,sha256=hQwjdRfePlWWuK1imSlmI6A0K3Ua90rTtjh-VlN7CdM,4069
149
+ compute_api_client/models/page_language.py,sha256=Iz0bAuRBVsP32H6nrxpSHWmxgmrUhAJAxJpRccvX_Jk,4109
150
+ compute_api_client/models/page_member.py,sha256=oBjWpNtTjfaXvXVGy9z3uggEgGHozMT-GlVzB2zK5Fk,4093
151
+ compute_api_client/models/page_metadata.py,sha256=d6ns0CKPHe-pwzYRIgLAdsDUSUyM2CLK5NAzFe1-V-s,4109
152
+ compute_api_client/models/page_permission.py,sha256=Ga4cAffHSLb16SsnkP5GwYJ8w0KdfV9w8vx9NHS9PRk,4125
153
+ compute_api_client/models/page_permission_group.py,sha256=6mo-iJIP0uqRElh_fmFU3GCei3nD1Ei18HxjTkoJaIE,4166
154
+ compute_api_client/models/page_project.py,sha256=X_tpr3CZwHCXVhqmCQm0OC86i5dTOZqQObmo_HfV76c,4101
155
+ compute_api_client/models/page_reservation.py,sha256=ynq4hVAs45dBlluiXEmlfL0LsONXIWyF-J8wuBwFRnA,4133
156
+ compute_api_client/models/page_result.py,sha256=avpSRvjDKi4kTfeFOVs0EUziOjCUtgSPV_jQsNnoYT0,4093
157
+ compute_api_client/models/page_team.py,sha256=nO44xG1m61ocd9_L91-ol49V4JxZV1jOrWamRG9mnVY,4077
158
+ compute_api_client/models/page_transaction.py,sha256=USPMpgIizZzTUtinvkI0foK0s2Wxkf6PAlSeblxkKUU,4133
159
+ compute_api_client/models/page_user.py,sha256=05eOtyDSZ8w4YF8UwnTNjxvNef0BKDPYgBssmCtuASw,4077
160
+ compute_api_client/models/permission.py,sha256=6sSGykW6ESMHERfsDJ8NGpk1IyrSAH3zYgMs2IBdDY0,2640
161
+ compute_api_client/models/permission_group.py,sha256=G5p9UQ7J4su3K4wG7T1RZUp18e3zdGBAF7jmELK9VfE,2531
162
+ compute_api_client/models/project.py,sha256=10fqFYKta9J8fhDojvSCC9BEx9G89XOLFkOrppz5a4w,2892
163
+ compute_api_client/models/project_in.py,sha256=3tu8QPZNkMRpHAUlKjpO5uXALMozXyJHpcmVgy2cxJo,2799
164
+ compute_api_client/models/project_patch.py,sha256=y-mTY6rulTO3oiS_4uTcqt4C48Q39zFEGymQdMFYJ_U,3668
165
+ compute_api_client/models/reservation.py,sha256=-UR-pDG8anrYJdj_58FTm2zyh_OE5iLOSj2JD4HwfOA,3180
166
+ compute_api_client/models/reservation_in.py,sha256=UyZx8ho1BUME6CveESoqv_LRT5fiqS__tLmIl5EDVkE,2685
167
+ compute_api_client/models/result.py,sha256=dDg4GyKqgAFuobcHSHrsTfDUrUE6TP15hTIXpfoN0aU,3793
168
+ compute_api_client/models/result_in.py,sha256=TKmPl2xr5cyN9rUmpD7GYBakqkrziu1TEEtBtJsP7-0,3892
169
+ compute_api_client/models/role.py,sha256=KIqsUUw6TrmknOiI0fy5dsJyRUyBfhlcldvW63qDaBQ,831
170
+ compute_api_client/models/share_type.py,sha256=Lg00TV5Ychd_VkDg4dY-4wDW8TcXBiU9Usxe5EFDI8A,874
171
+ compute_api_client/models/team.py,sha256=QR5x-hNadhdPh1N9F85wW6X0jUUnoxvdTnypUu_GHxw,2714
172
+ compute_api_client/models/transaction.py,sha256=BbO0gPlKFvvG94GI-SvuPszyB5Lx048wlxBgHTJfmW8,3638
173
+ compute_api_client/models/user.py,sha256=WD1QyiqRlyObnK61QRE2NUCyY5Oc9ejeNcOGopm6Nmg,3115
174
+ compute_api_client/models/user_in.py,sha256=gMWrBylb3ihoc-bm-K7AG9w3iWGn_ROV14wZnGlJU30,3330
175
+ compute_api_client/models/validation_error.py,sha256=HWliEU5aNn3CkND3c0MxJf0D8bUJmE3HKncfUCKDk5o,2941
176
+ compute_api_client/rest.py,sha256=-N7fantOYHH5Ot97NOHm2ouAUuw4kdqbnOvCtf25H7g,5836
177
+ qi_compute_api_client-0.33.0.dist-info/LICENSE.md,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
178
+ qi_compute_api_client-0.33.0.dist-info/METADATA,sha256=_zfBEIVFdVVI-4FYV0Ix966UeIK0Nr6UaIxS4GL9MLs,19806
179
+ qi_compute_api_client-0.33.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
180
+ qi_compute_api_client-0.33.0.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.6.1
2
+ Generator: poetry-core 1.9.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,144 +0,0 @@
1
- compute_api_client/__init__.py,sha256=KeEto58bau7Qh76zID_LwLD_mwwf6xnavcej5VT1X2w,5661
2
- compute_api_client/api/__init__.py,sha256=t8rYBWV5wDVdZPLmo97F78Dfb_J6R5AxEIlnaX8MWA0,1143
3
- compute_api_client/api/algorithms_api.py,sha256=HMwBaIGRw5Dmp-KYGi6i1AZE5C_opiPhbZrQ5PbZDso,58943
4
- compute_api_client/api/backend_api.py,sha256=K1x_xaQJ72zqaIgdrn1N6gaVwQ7owu7frgXIckvIW4Y,57349
5
- compute_api_client/api/backend_types_api.py,sha256=0LzeWPDpDryvUUNu7z9NupGIJ0ojRLPX_9CBF1FAHdM,28931
6
- compute_api_client/api/batch_jobs_api.py,sha256=GznK1dtEJPZ7-TOW6P6XkXwHQcfKOMxUqSpS2XDQlzw,83274
7
- compute_api_client/api/commits_api.py,sha256=Lqe8e-kucdlnFZ0JPn0jIFbTT1pXjZwh8bYU25OBxa4,46135
8
- compute_api_client/api/files_api.py,sha256=uGTskZP1ZhgmjdcxET_eXE4q0BV2Y2YxB_YkIfCi2FM,46205
9
- compute_api_client/api/final_results_api.py,sha256=2sWvxnNfafGyr3SEvS_NEiIvr9SKV78sIL3DLgHQLhY,32612
10
- compute_api_client/api/jobs_api.py,sha256=BlleoNZXYwoallscEb3_jpvHAmxyrEEDgA2LGOqyiRs,62207
11
- compute_api_client/api/languages_api.py,sha256=Aug7o48keBaFMnT-q_DVRSb2w7AUqu7t4_dAKPebrpo,25145
12
- compute_api_client/api/members_api.py,sha256=XLWmzzfZE4DnA1Lc26r-bwaQYQ31z5b5IQPklrg07xE,45077
13
- compute_api_client/api/metadata_api.py,sha256=vVORo-YUNw1To26c8vV81HIL3bkP3tIFeDgbuVJybO8,32428
14
- compute_api_client/api/permissions_api.py,sha256=fOLzVeYszexV_XBEohHT8RkOkGOZAwOhQ4tEZ-HbDZE,47700
15
- compute_api_client/api/projects_api.py,sha256=rpKogzzWUForVxrF9vggkVIbUiOGqfzEKcjOwss4lL4,70570
16
- compute_api_client/api/reservations_api.py,sha256=tdJaQguDChsFME1XPuCnr6TZyf079OolrNT4YmMFS94,49576
17
- compute_api_client/api/results_api.py,sha256=Vyzf9WuPLb1U1sQG5wNcTQ4BdeEDcA2UOu_3owHSL-Y,62925
18
- compute_api_client/api/teams_api.py,sha256=a87PRILGLi3YmIdPiFzYJu3EVQ8-6JNoJlMINU-1DKM,25144
19
- compute_api_client/api/transactions_api.py,sha256=9Fam_XurJUuWv2LKf41AEmWEtHFCeWMFzg7JvCqnAIM,29333
20
- compute_api_client/api/users_api.py,sha256=ZcNvipqzaIwjh0rPoURiJQQJ42pqh0gGxjCgKn6YOks,47102
21
- compute_api_client/api_client.py,sha256=IiF79W0SMRSJhyDnCLHioOlpTDFnCdlBpwls5RDDQnU,25783
22
- compute_api_client/api_response.py,sha256=A7O_XgliD6y7jEv82fgIaxR3T8KiwaOqHR6djpZyh_o,674
23
- compute_api_client/configuration.py,sha256=RY1mpn-TOGpXiO8r0EmbrgbbktTqjogoE5pTZlI8IQE,15949
24
- compute_api_client/docs/Algorithm.md,sha256=LThexsNa9FuuIyP9Hs2yjP2L-04VszC7AdfOJgJRj3s,992
25
- compute_api_client/docs/AlgorithmIn.md,sha256=ikR6b3TyLjXyWxqlUDcS25ZCwyion5VCQ5D6RNWpuz4,1013
26
- compute_api_client/docs/AlgorithmType.md,sha256=056KK2zjtdGqqTXkDsxg8mCzxr2sM8C37YmrR3txGVA,292
27
- compute_api_client/docs/AlgorithmsApi.md,sha256=B3el7VmysN7XjMSLl21VmCegk4OeI89YWM92BIk7QVA,14190
28
- compute_api_client/docs/Backend.md,sha256=7xbvLaCTqqFzwcA2QONhY-QXa_Ts1fWiuBQBJegW50g,968
29
- compute_api_client/docs/BackendApi.md,sha256=fj9MqrPtmj4IRB3zVyMKlr0y15_tSdiRzEE7EA6kTzg,13702
30
- compute_api_client/docs/BackendIn.md,sha256=7_drRygOUPHFWjrvAJGo7WwmcyK6EeRnlSnA6WtTCu0,978
31
- compute_api_client/docs/BackendPatch.md,sha256=xET1pnI8JStGhtHm7qT-1zv7RCuKl2CUIKtYueWq72U,927
32
- compute_api_client/docs/BackendStatus.md,sha256=ofnS843IHCIxoywjJJ01GP90Gn1XedAm5xR8TONmUbk,292
33
- compute_api_client/docs/BackendType.md,sha256=X6Fi-eoTNo-Xldg_YEwC_-zyPqlMNXFYoiKin6mQ_8M,1255
34
- compute_api_client/docs/BackendTypesApi.md,sha256=Eo-Xk79KSYsjCJrNwbHib5CjH8NJnPNHp7cpvxlGk_c,6912
35
- compute_api_client/docs/BackendWithAuthentication.md,sha256=u9lZh4FusMtOuV53yc0QXHdnTas-4HNC06NyDh8E1Go,1256
36
- compute_api_client/docs/BatchJob.md,sha256=IozaJI2zAL1zo_zmuI-RIKvLGK68KkyW53AH4jbIaIs,1210
37
- compute_api_client/docs/BatchJobIn.md,sha256=9-nP1Xgnzd5tfvo8WmandUWR8IY-2pMeZyW0HveKZEU,847
38
- compute_api_client/docs/BatchJobStatus.md,sha256=UQift_l9A3L0azzYjQtr7UnmYk6X36Ug3U7S-VTpx7A,293
39
- compute_api_client/docs/BatchJobsApi.md,sha256=LYhzJamv44TsA8iKMu3J91M01eDcUC_Dq1alFdM2B58,20548
40
- compute_api_client/docs/Commit.md,sha256=WI3TcSFBdLWRjvJ9OBKiAKSN5AX7gXHs7EZm-Zs77FE,894
41
- compute_api_client/docs/CommitIn.md,sha256=tnd4OQ1brIRnNGAGkH3x_HRIQIg68CZTuAEJ2JDKK9w,843
42
- compute_api_client/docs/CommitsApi.md,sha256=TuDsAkJpGgPf2WeT_STl-XZ3PojVrsNkDSfkguUINjU,10690
43
- compute_api_client/docs/CompileStage.md,sha256=-U9wb4fyD8b_cjV1-GBIBJfbquFulRlHFm3C0GFnGik,291
44
- compute_api_client/docs/Domain.md,sha256=HONTAt17CX2vFhnkHOFqMpJEIJjPM8GTBBQriWA71UY,285
45
- compute_api_client/docs/File.md,sha256=Sv44g-54NNYcZL-sJeruJhohCHVNmCaue0u-xfsAHLw,967
46
- compute_api_client/docs/FileIn.md,sha256=yRMAH_chHNZo4YskPGdw_nx14-sPn6S_OPdfm4-ej_U,1006
47
- compute_api_client/docs/FilesApi.md,sha256=f2P5WQVBniTN45vL-5ITlF-3SVXfzt4bvuddwcYBhgo,10671
48
- compute_api_client/docs/FinalResult.md,sha256=sRCvqIH3TXruJvgaHp4s6zyfCEkuBReVoaqr2iHVkJU,939
49
- compute_api_client/docs/FinalResultIn.md,sha256=9RSstFSQ08-we_4TtoEAP1_KIq6FBdftRyc-DDkAGLQ,913
50
- compute_api_client/docs/FinalResultsApi.md,sha256=V7X34yAWXZMlUBhPgC7EKhW_TXenIlhYR84PiH3kG9A,8167
51
- compute_api_client/docs/HTTPNotFoundError.md,sha256=1GluS5OAVTk1qNrQwBOb29eQiNMJnCXyJk-0oKf-Rlc,936
52
- compute_api_client/docs/HTTPValidationError.md,sha256=MRdybtO0HOeFCN3Zk221Q6XH6fw1Qyg8J9KLPn38tI4,1006
53
- compute_api_client/docs/Job.md,sha256=gXYcbGXDIqOTNuf9kHJJqmK7d9IrWIdsqLznizkrBNk,1048
54
- compute_api_client/docs/JobIn.md,sha256=zN8pXLT1iGJg0o--iOfTZCm8Qj3UWApejFaASJ5AM8s,847
55
- compute_api_client/docs/JobPatch.md,sha256=YadPzV_CU2oygKaaw8FJuikEo4M6QqO5uR628w1bKf4,827
56
- compute_api_client/docs/JobStatus.md,sha256=BFKP4etVPMe37IOCI77TTxry-KfOcwhj_H5oNSfPkPA,288
57
- compute_api_client/docs/JobsApi.md,sha256=oP8vyvQMmfYq39dyWDxceo6nX3uEeHrvXNhq-cLIcgA,14843
58
- compute_api_client/docs/Language.md,sha256=eHCpr4xEVei2MTA9zKu4DxBZamoSrSE3JOD36I7iDwU,847
59
- compute_api_client/docs/LanguagesApi.md,sha256=LBoEWcViaz1JkKtNYy9P_5RurXg-__hFg_VUGSy9EoE,5693
60
- compute_api_client/docs/LocationInner.md,sha256=Z1Z8_cF7hlrfoOGVKoWz-ZhSQ457HKDdE_nXzZ9TPCA,843
61
- compute_api_client/docs/Member.md,sha256=Y1w2DLahBH71KkFN_pLZ_jK7OeuzZjEvKm9_uypkxis,892
62
- compute_api_client/docs/MemberIn.md,sha256=9Qy8ZNV5_f04glvxGQ-Y8HGPS_pYsftCnZBt1635-hU,931
63
- compute_api_client/docs/MembersApi.md,sha256=4fA0WB-yw92MJjvPHjTz3o-2Ds5_7Ae0PvLPeJjqtN0,10240
64
- compute_api_client/docs/Metadata.md,sha256=R5XBSvfG31CHzOEV8HtwaWDmrOOihS5Ky18woUfUlwE,889
65
- compute_api_client/docs/MetadataApi.md,sha256=iqdZGGeF0M2uvnrC_vgnqXLf9yGft8CYrquOZ7fN-2c,7814
66
- compute_api_client/docs/MetadataIn.md,sha256=PBzLjFfYDlZdF3xSFjoQ1uP_EayjI1EmgvmBxPdJ8uI,874
67
- compute_api_client/docs/Permission.md,sha256=gSRBHoPMcJEgGKRAHxSWLG921o6cnJQgeMyJgJHXieA,876
68
- compute_api_client/docs/PermissionGroup.md,sha256=4gHLWGB9XHA7EoEk1M8ChffeNcF5v8zeBn3nklRkJJo,917
69
- compute_api_client/docs/PermissionsApi.md,sha256=BOr0sHyiGbSOHEQ24AovDfEpyzpbxi0igM1XWDpdEo4,11467
70
- compute_api_client/docs/Project.md,sha256=fC2w63y-I3Nfwf93Br6B0pbX2Sd7IH3MUpkLUSifdRY,932
71
- compute_api_client/docs/ProjectIn.md,sha256=37DDbutsLHAURQzQaTL-O0nagNUO2AnS3aTqSf1vkEA,935
72
- compute_api_client/docs/ProjectPatch.md,sha256=lSuCnJWbim0XPrmdXl5_h0WWGh3-Tr3R0G1RDXjAleQ,989
73
- compute_api_client/docs/ProjectsApi.md,sha256=7MmPgVg-7D9vFzzjXqa9f23MZ8zd2SEmkY9uYGocrsY,16381
74
- compute_api_client/docs/Reservation.md,sha256=SX9xFwujAOl2yJBLO66CFM6JkxFquSNJQOBwkJAah5E,1035
75
- compute_api_client/docs/ReservationIn.md,sha256=veTcJp5zNuApDCm76I6FawcWVjyLcvxGOubmmfvPJiw,979
76
- compute_api_client/docs/ReservationsApi.md,sha256=GiACPXgQtD9kD0nGGBtwYbPA5XYEcYzAe9tovrZ3ys4,11785
77
- compute_api_client/docs/Result.md,sha256=X1vLj2mxJtC2cF8RnhoMvANiPFlVqxxysjwqOrGMsOM,1046
78
- compute_api_client/docs/ResultIn.md,sha256=uvFB1Hwltwzf9oLlhcrE0pyaOigxYRkLaZc48nWlf2Q,1064
79
- compute_api_client/docs/ResultsApi.md,sha256=Wa2MJLZR-eEc6ZDqwdBHXdjUXP7uJSQbSfpOTswYWbg,15061
80
- compute_api_client/docs/Role.md,sha256=WKRdBmGL1vHDgSxeIhUItEJnZJ-lMedQJoBEleQQou4,283
81
- compute_api_client/docs/ShareType.md,sha256=AxfoQcU9wr9iU9r4unG1_miL8XT75FdAziZJzLDvQL0,288
82
- compute_api_client/docs/Team.md,sha256=cGhzeDoJHyFX-offM414nz1lp1G9BslQUBGJejJMGWo,829
83
- compute_api_client/docs/TeamsApi.md,sha256=0zQ286FtnVGASYJ15j9lCrS6AuVkzKjIE6_HKUSR7pM,5527
84
- compute_api_client/docs/Transaction.md,sha256=l2RsE4I6YC2FXUFKKhPIz5ZcpVH0AMdZKoxDNU8AUbs,1020
85
- compute_api_client/docs/TransactionsApi.md,sha256=2YRh_uIKfA0onCTrohWIDaXcPBScbfFCVLTEqAci1fQ,6797
86
- compute_api_client/docs/User.md,sha256=oTsbbVs-VN8fFWiZCuu5OJmv97lQkZ2AAfdhLu2HsQY,956
87
- compute_api_client/docs/UserIn.md,sha256=xAPeVO5WTaNcbI151w0j_g6BEM-xYquMV5Nx6srJA4Q,1082
88
- compute_api_client/docs/UsersApi.md,sha256=g9orQC9iNWghaNKF-BUIWIDGRCqButtfiPcPbuivfMw,10518
89
- compute_api_client/docs/ValidationError.md,sha256=NZSCUyM9u2fx4CFZfPF9cl_e6zDxQ9siBX-WtNHJyeA,978
90
- compute_api_client/exceptions.py,sha256=r_WbctDc5iMdSJj6wE5giPMTIEGxPNyIpC4OyGG0pKo,6169
91
- compute_api_client/models/__init__.py,sha256=ge92V1cpzZGDgxHM1BWIkp5R6ouoZ9YLHAN7puqohKs,3986
92
- compute_api_client/models/algorithm.py,sha256=Uuf0zj27anMTGPogaElONcyKKu7LCnO5AItrFzaPW-o,3908
93
- compute_api_client/models/algorithm_in.py,sha256=nda7jC3y7iV5jJACIeYxVlCEP_LldkrW_xFc4FfOqMU,3866
94
- compute_api_client/models/algorithm_type.py,sha256=R7solTw587cOLgDSo7yYMKUha3-nOihnfAMP62k5pbE,1580
95
- compute_api_client/models/backend.py,sha256=BILyAnLUqz1e3M45WUSb6Jhtg40OmA1ECnbOcamgsZ0,3724
96
- compute_api_client/models/backend_in.py,sha256=vFK0gjdq3EC1NVpGc33keOg7R4BX8jQgAZNHq2JJe1c,3675
97
- compute_api_client/models/backend_patch.py,sha256=XeWXiC9ANMW8ud3jq-jSFLR07NeRdsowoFhoHnPtlyI,3274
98
- compute_api_client/models/backend_status.py,sha256=fS7ftKFUHFq3ZoHrc9RcwOVIZ9qx0AKZ_gynrVb71Fc,1636
99
- compute_api_client/models/backend_type.py,sha256=XSQBYyT-na0xLOv-QeZICfySi05h-w6mxPiOT_Xut40,4471
100
- compute_api_client/models/backend_with_authentication.py,sha256=pirY3SSC2QmHtCYRGXHw7vvQ2wo_TN2sf5Iu6i78cVU,3961
101
- compute_api_client/models/batch_job.py,sha256=d8h9yc-3uNDjA4OZVKGINwvqJBCVt0KnYqjrZ0Vp7-s,5106
102
- compute_api_client/models/batch_job_in.py,sha256=9MNquEio7amBpfHw5RNTer9hM34BpERCKj_7DPWbPOE,3109
103
- compute_api_client/models/batch_job_status.py,sha256=_PLRvOApWIVvGGS8cebWsFlF4qZ7lcIcFjwrdG_qHQU,1659
104
- compute_api_client/models/commit.py,sha256=GVycft5ST8xYPhvcz-4RkLUu5oYuko0oOWQP2JlTzMM,3531
105
- compute_api_client/models/commit_in.py,sha256=VN_9IIgLjJbnPdk41s0NqzqUdzIXi07MJHsdPAmRAao,3193
106
- compute_api_client/models/compile_stage.py,sha256=Al0dyDiYK1Iq2JQLIQ2LK7GjdCI-8cXzhMWo8RTfpys,1637
107
- compute_api_client/models/domain.py,sha256=P7wmlbRI6SMDYMpbl3aa6xLvz_emVfmUGrAwBC3J944,1593
108
- compute_api_client/models/file.py,sha256=qWmGk2NONiOmzVuWVJDNT5MkHcfDcW6CCE0hMi4Ya8M,3700
109
- compute_api_client/models/file_in.py,sha256=uVB_N3PxsEUcMK8YAg5bITTkuZTrRdoDDY3QDMJDmCE,3726
110
- compute_api_client/models/final_result.py,sha256=pgJk_iZiiJjQZct-kBmVzBb3fWpnqHeQUMNzWvcOd5s,3361
111
- compute_api_client/models/final_result_in.py,sha256=-gOrEVMY25wjK8W6Xe9-uSoCExl6JyoxnCTkgKqnwdY,3195
112
- compute_api_client/models/http_not_found_error.py,sha256=311hmZBqvPjEdPqcsmWEtTRZ6pS_-xt5dvSCNNfgYao,3101
113
- compute_api_client/models/http_validation_error.py,sha256=4Q0nrlpV6VKjY1SWXRF7xHPa2u3H3803pbFLpESbc2o,3600
114
- compute_api_client/models/job.py,sha256=6ZPkFoMJx2JulYjsfEtkiETgZ1DByOg58hIgdaV26m8,4642
115
- compute_api_client/models/job_in.py,sha256=KvGfUz7D9hOM8bM9Oin1MsNhZfPRBCjaqXeQ9hCCl9o,3533
116
- compute_api_client/models/job_patch.py,sha256=84334GgkF6D6QfsPZ7AasgkLqvBEp4qXUD89uChM860,3113
117
- compute_api_client/models/job_status.py,sha256=Wl45SIMUceSzOF5hW5SGYHPX_sMAy03o6VeRfMmB9tA,1648
118
- compute_api_client/models/language.py,sha256=KTuUe2zBTCRw5EWzbGmKoNUy4AwkSDo3xSCed4o-AWk,3338
119
- compute_api_client/models/location_inner.py,sha256=9Pm1Jcppt-S65l0jmGfJgpqsRfIy95CvxRGP4C_Doz4,5584
120
- compute_api_client/models/member.py,sha256=QFLnZ2YMncLrliH3xvZRm6W9LPoR5aHjDGbCz66AwXE,3401
121
- compute_api_client/models/member_in.py,sha256=uasVYXHWZI4uTM5KM7MNjpyfAkjeryVhXMVoUjAUPVg,3427
122
- compute_api_client/models/metadata.py,sha256=gXKP4Df3pzL0HRo4kjk1q2lS9M3qEOnUaCnzOsp3E1U,3333
123
- compute_api_client/models/metadata_in.py,sha256=8g7jaY9434L6ztCxHF4FDKu5vOmJMvut1Bs5buqbKM8,3417
124
- compute_api_client/models/permission.py,sha256=BWE0i9insn-bVCwEESV6nsna0jxcMVWpigYFQE3nJ0g,3358
125
- compute_api_client/models/permission_group.py,sha256=IwUYTaF2I_ScbSLG5bC9Vp2-c3apfG_ERErZFzkniJk,3249
126
- compute_api_client/models/project.py,sha256=6-hB0jW9D1ox81DJZHcmHvVbPkNMUyaeJfIf-zyZrZE,3610
127
- compute_api_client/models/project_in.py,sha256=9vmJRoyA5QoBqWn3poU5G-HdQfyaQkbifA2W0L9vIrY,3517
128
- compute_api_client/models/project_patch.py,sha256=EgHSveG6xmvd5P774GFMvyKdRr6BCj-tHRKI-9CfJIY,4386
129
- compute_api_client/models/reservation.py,sha256=WRF24J3U-niu5FX1__wNw57f-GCym8chTnJw4lbU1FM,3898
130
- compute_api_client/models/reservation_in.py,sha256=YBeZFJy3EVo7puAx1s2UGqHQwLMkvYYFSkE0u0-H4z0,3403
131
- compute_api_client/models/result.py,sha256=2f-IsEaCQY4F6IjJt7nPbrndV51iasdccGygk2X_mAk,4727
132
- compute_api_client/models/result_in.py,sha256=pPrZyUyXrDzzCLUlT3UXQ-7PC7WQ8eb272YpbcbbzbY,4826
133
- compute_api_client/models/role.py,sha256=N7VjEqPzp3VvuyseBxOT06XmylYELThbcmPe_RuS5wg,1549
134
- compute_api_client/models/share_type.py,sha256=LaGOBjqNLEeAsZwB9DxAwm1YQyE3bCyl7bCJH4Il7iE,1592
135
- compute_api_client/models/team.py,sha256=_n_6Jt7fICh8gkp9bBm5W25gSiHHcgYnzJqFlbu0Kls,3432
136
- compute_api_client/models/transaction.py,sha256=SYqtM2h2v5k_SE-wYW3xcStP5MO_MJ0EWtkytCGlLsQ,4356
137
- compute_api_client/models/user.py,sha256=TW-7kR_yB3VxDifuO6b0GZX-4sCoths_2rpm-uBigyY,3833
138
- compute_api_client/models/user_in.py,sha256=EMgqmk1um288FsBQreY7oxenBIYMlAHtu_ETue8ucRY,4048
139
- compute_api_client/models/validation_error.py,sha256=4FM61MT9_hFJCW8pRCcMT9f4vv57tLFwJ74dYmbwWa0,3659
140
- compute_api_client/rest.py,sha256=wWoyNm8J7qvpgn5-VjXJPBSpDVPV_5aN6zbQW19mQZU,6554
141
- qi_compute_api_client-0.31.0.dist-info/LICENSE.md,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
142
- qi_compute_api_client-0.31.0.dist-info/METADATA,sha256=bvXmVXEXqeDBWnmeYUf4s4cqLoUxpY7xjvqJglMKbvE,19474
143
- qi_compute_api_client-0.31.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
144
- qi_compute_api_client-0.31.0.dist-info/RECORD,,