qi-compute-api-client 0.32.0__py3-none-any.whl → 0.35.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 (134) hide show
  1. compute_api_client/__init__.py +20 -1
  2. compute_api_client/api/__init__.py +1 -0
  3. compute_api_client/api/algorithms_api.py +76 -75
  4. compute_api_client/api/backend_api.py +78 -75
  5. compute_api_client/api/backend_types_api.py +95 -75
  6. compute_api_client/api/batch_jobs_api.py +77 -74
  7. compute_api_client/api/commits_api.py +78 -75
  8. compute_api_client/api/files_api.py +78 -75
  9. compute_api_client/api/final_results_api.py +1 -1
  10. compute_api_client/api/health_api.py +290 -0
  11. compute_api_client/api/jobs_api.py +78 -75
  12. compute_api_client/api/languages_api.py +76 -73
  13. compute_api_client/api/members_api.py +78 -75
  14. compute_api_client/api/metadata_api.py +79 -8
  15. compute_api_client/api/permissions_api.py +146 -142
  16. compute_api_client/api/projects_api.py +76 -75
  17. compute_api_client/api/reservations_api.py +78 -75
  18. compute_api_client/api/results_api.py +151 -80
  19. compute_api_client/api/teams_api.py +78 -75
  20. compute_api_client/api/transactions_api.py +78 -75
  21. compute_api_client/api/users_api.py +78 -75
  22. compute_api_client/api_client.py +1 -1
  23. compute_api_client/configuration.py +1 -1
  24. compute_api_client/docs/AlgorithmsApi.md +12 -12
  25. compute_api_client/docs/BackendApi.md +12 -12
  26. compute_api_client/docs/BackendType.md +3 -1
  27. compute_api_client/docs/BackendTypesApi.md +14 -12
  28. compute_api_client/docs/BatchJobsApi.md +12 -12
  29. compute_api_client/docs/CommitsApi.md +12 -12
  30. compute_api_client/docs/FilesApi.md +12 -12
  31. compute_api_client/docs/HealthApi.md +71 -0
  32. compute_api_client/docs/JobsApi.md +12 -12
  33. compute_api_client/docs/LanguagesApi.md +12 -12
  34. compute_api_client/docs/MembersApi.md +12 -12
  35. compute_api_client/docs/MetadataApi.md +12 -4
  36. compute_api_client/docs/PageAlgorithm.md +32 -0
  37. compute_api_client/docs/PageBackend.md +32 -0
  38. compute_api_client/docs/PageBackendType.md +32 -0
  39. compute_api_client/docs/PageBatchJob.md +32 -0
  40. compute_api_client/docs/PageCommit.md +32 -0
  41. compute_api_client/docs/PageFile.md +32 -0
  42. compute_api_client/docs/PageJob.md +32 -0
  43. compute_api_client/docs/PageLanguage.md +32 -0
  44. compute_api_client/docs/PageMember.md +32 -0
  45. compute_api_client/docs/PageMetadata.md +32 -0
  46. compute_api_client/docs/PagePermission.md +32 -0
  47. compute_api_client/docs/PagePermissionGroup.md +32 -0
  48. compute_api_client/docs/PageProject.md +32 -0
  49. compute_api_client/docs/PageReservation.md +32 -0
  50. compute_api_client/docs/PageResult.md +32 -0
  51. compute_api_client/docs/PageTeam.md +32 -0
  52. compute_api_client/docs/PageTransaction.md +32 -0
  53. compute_api_client/docs/PageUser.md +32 -0
  54. compute_api_client/docs/PermissionsApi.md +24 -24
  55. compute_api_client/docs/ProjectsApi.md +12 -12
  56. compute_api_client/docs/ReservationsApi.md +12 -12
  57. compute_api_client/docs/ResultsApi.md +24 -16
  58. compute_api_client/docs/TeamsApi.md +12 -12
  59. compute_api_client/docs/TransactionsApi.md +12 -12
  60. compute_api_client/docs/UsersApi.md +12 -12
  61. compute_api_client/exceptions.py +1 -1
  62. compute_api_client/models/__init__.py +19 -1
  63. compute_api_client/models/algorithm.py +1 -1
  64. compute_api_client/models/algorithm_in.py +1 -1
  65. compute_api_client/models/algorithm_type.py +1 -1
  66. compute_api_client/models/backend.py +1 -1
  67. compute_api_client/models/backend_in.py +1 -1
  68. compute_api_client/models/backend_patch.py +1 -1
  69. compute_api_client/models/backend_status.py +1 -1
  70. compute_api_client/models/backend_type.py +8 -4
  71. compute_api_client/models/backend_with_authentication.py +1 -1
  72. compute_api_client/models/batch_job.py +1 -1
  73. compute_api_client/models/batch_job_in.py +1 -1
  74. compute_api_client/models/batch_job_status.py +1 -1
  75. compute_api_client/models/commit.py +1 -1
  76. compute_api_client/models/commit_in.py +1 -1
  77. compute_api_client/models/compile_stage.py +1 -1
  78. compute_api_client/models/domain.py +1 -1
  79. compute_api_client/models/file.py +1 -1
  80. compute_api_client/models/file_in.py +1 -1
  81. compute_api_client/models/final_result.py +1 -1
  82. compute_api_client/models/final_result_in.py +1 -1
  83. compute_api_client/models/http_not_found_error.py +1 -1
  84. compute_api_client/models/http_validation_error.py +1 -1
  85. compute_api_client/models/job.py +1 -1
  86. compute_api_client/models/job_in.py +1 -1
  87. compute_api_client/models/job_patch.py +1 -1
  88. compute_api_client/models/job_status.py +1 -1
  89. compute_api_client/models/language.py +1 -1
  90. compute_api_client/models/location_inner.py +1 -1
  91. compute_api_client/models/member.py +1 -1
  92. compute_api_client/models/member_in.py +1 -1
  93. compute_api_client/models/metadata.py +1 -1
  94. compute_api_client/models/metadata_in.py +1 -1
  95. compute_api_client/models/page_algorithm.py +125 -0
  96. compute_api_client/models/page_backend.py +125 -0
  97. compute_api_client/models/page_backend_type.py +125 -0
  98. compute_api_client/models/page_batch_job.py +125 -0
  99. compute_api_client/models/page_commit.py +125 -0
  100. compute_api_client/models/page_file.py +125 -0
  101. compute_api_client/models/page_job.py +125 -0
  102. compute_api_client/models/page_language.py +125 -0
  103. compute_api_client/models/page_member.py +125 -0
  104. compute_api_client/models/page_metadata.py +125 -0
  105. compute_api_client/models/page_permission.py +125 -0
  106. compute_api_client/models/page_permission_group.py +125 -0
  107. compute_api_client/models/page_project.py +125 -0
  108. compute_api_client/models/page_reservation.py +125 -0
  109. compute_api_client/models/page_result.py +125 -0
  110. compute_api_client/models/page_team.py +125 -0
  111. compute_api_client/models/page_transaction.py +125 -0
  112. compute_api_client/models/page_user.py +125 -0
  113. compute_api_client/models/permission.py +1 -1
  114. compute_api_client/models/permission_group.py +1 -1
  115. compute_api_client/models/project.py +1 -1
  116. compute_api_client/models/project_in.py +1 -1
  117. compute_api_client/models/project_patch.py +1 -1
  118. compute_api_client/models/reservation.py +1 -1
  119. compute_api_client/models/reservation_in.py +1 -1
  120. compute_api_client/models/result.py +1 -1
  121. compute_api_client/models/result_in.py +1 -1
  122. compute_api_client/models/role.py +1 -1
  123. compute_api_client/models/share_type.py +1 -1
  124. compute_api_client/models/team.py +1 -1
  125. compute_api_client/models/transaction.py +1 -1
  126. compute_api_client/models/user.py +1 -1
  127. compute_api_client/models/user_in.py +1 -1
  128. compute_api_client/models/validation_error.py +1 -1
  129. compute_api_client/rest.py +1 -1
  130. {qi_compute_api_client-0.32.0.dist-info → qi_compute_api_client-0.35.0.dist-info}/METADATA +22 -3
  131. qi_compute_api_client-0.35.0.dist-info/RECORD +182 -0
  132. qi_compute_api_client-0.32.0.dist-info/RECORD +0 -144
  133. {qi_compute_api_client-0.32.0.dist-info → qi_compute_api_client-0.35.0.dist-info}/LICENSE.md +0 -0
  134. {qi_compute_api_client-0.32.0.dist-info → qi_compute_api_client-0.35.0.dist-info}/WHEEL +0 -0
@@ -0,0 +1,125 @@
1
+ # coding: utf-8
2
+
3
+ """
4
+ Quantum Inspire 2
5
+
6
+ No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
7
+
8
+ The version of the OpenAPI document: 0.1.0
9
+ Generated by OpenAPI Generator (https://openapi-generator.tech)
10
+
11
+ Do not edit the class manually.
12
+ """ # noqa: E501
13
+
14
+
15
+ from __future__ import annotations
16
+ import pprint
17
+ import re # noqa: F401
18
+ import json
19
+
20
+
21
+ from typing import Any, ClassVar, Dict, List, Optional
22
+ from pydantic import BaseModel
23
+ from pydantic import Field
24
+ from typing_extensions import Annotated
25
+ from compute_api_client.models.user import User
26
+ try:
27
+ from typing import Self
28
+ except ImportError:
29
+ from typing_extensions import Self
30
+
31
+ class PageUser(BaseModel):
32
+ """
33
+ PageUser
34
+ """ # noqa: E501
35
+ items: List[User]
36
+ total: Optional[Annotated[int, Field(strict=True, ge=0)]]
37
+ page: Optional[Annotated[int, Field(strict=True, ge=1)]]
38
+ size: Optional[Annotated[int, Field(strict=True, ge=1)]]
39
+ pages: Optional[Annotated[int, Field(strict=True, ge=0)]] = None
40
+ __properties: ClassVar[List[str]] = ["items", "total", "page", "size", "pages"]
41
+
42
+ model_config = {
43
+ "populate_by_name": True,
44
+ "validate_assignment": True
45
+ }
46
+
47
+
48
+ def to_str(self) -> str:
49
+ """Returns the string representation of the model using alias"""
50
+ return pprint.pformat(self.model_dump(by_alias=True))
51
+
52
+ def to_json(self) -> str:
53
+ """Returns the JSON representation of the model using alias"""
54
+ # TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
55
+ return json.dumps(self.to_dict())
56
+
57
+ @classmethod
58
+ def from_json(cls, json_str: str) -> Self:
59
+ """Create an instance of PageUser from a JSON string"""
60
+ return cls.from_dict(json.loads(json_str))
61
+
62
+ def to_dict(self) -> Dict[str, Any]:
63
+ """Return the dictionary representation of the model using alias.
64
+
65
+ This has the following differences from calling pydantic's
66
+ `self.model_dump(by_alias=True)`:
67
+
68
+ * `None` is only added to the output dict for nullable fields that
69
+ were set at model initialization. Other fields with value `None`
70
+ are ignored.
71
+ """
72
+ _dict = self.model_dump(
73
+ by_alias=True,
74
+ exclude={
75
+ },
76
+ exclude_none=True,
77
+ )
78
+ # override the default output from pydantic by calling `to_dict()` of each item in items (list)
79
+ _items = []
80
+ if self.items:
81
+ for _item in self.items:
82
+ if _item:
83
+ _items.append(_item.to_dict())
84
+ _dict['items'] = _items
85
+ # set to None if total (nullable) is None
86
+ # and model_fields_set contains the field
87
+ if self.total is None and "total" in self.model_fields_set:
88
+ _dict['total'] = None
89
+
90
+ # set to None if page (nullable) is None
91
+ # and model_fields_set contains the field
92
+ if self.page is None and "page" in self.model_fields_set:
93
+ _dict['page'] = None
94
+
95
+ # set to None if size (nullable) is None
96
+ # and model_fields_set contains the field
97
+ if self.size is None and "size" in self.model_fields_set:
98
+ _dict['size'] = None
99
+
100
+ # set to None if pages (nullable) is None
101
+ # and model_fields_set contains the field
102
+ if self.pages is None and "pages" in self.model_fields_set:
103
+ _dict['pages'] = None
104
+
105
+ return _dict
106
+
107
+ @classmethod
108
+ def from_dict(cls, obj: Dict) -> Self:
109
+ """Create an instance of PageUser from a dict"""
110
+ if obj is None:
111
+ return None
112
+
113
+ if not isinstance(obj, dict):
114
+ return cls.model_validate(obj)
115
+
116
+ _obj = cls.model_validate({
117
+ "items": [User.from_dict(_item) for _item in obj.get("items")] if obj.get("items") is not None else None,
118
+ "total": obj.get("total"),
119
+ "page": obj.get("page"),
120
+ "size": obj.get("size"),
121
+ "pages": obj.get("pages")
122
+ })
123
+ return _obj
124
+
125
+
@@ -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)
@@ -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)
@@ -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.32.0
3
+ Version: 0.35.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
@@ -15,14 +15,14 @@ Classifier: Programming Language :: Python :: 3.9
15
15
  Classifier: Programming Language :: Python :: 3.10
16
16
  Classifier: Programming Language :: Python :: 3.11
17
17
  Classifier: Programming Language :: Python :: 3.12
18
- Requires-Dist: aiohttp (>=3.8.1,<4.0.0)
18
+ Requires-Dist: aiohttp (>=3.10.5,<4.0.0)
19
19
  Requires-Dist: python-dateutil (>=2.8.2,<3.0.0)
20
20
  Requires-Dist: urllib3 (>=1.25.3,<2.0.0)
21
21
  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
 
@@ -123,6 +123,7 @@ Class | Method | HTTP request | Description
123
123
  *FinalResultsApi* | [**create_final_result_final_results_post**](compute_api_client/docs/FinalResultsApi.md#create_final_result_final_results_post) | **POST** /final_results | Create final result
124
124
  *FinalResultsApi* | [**read_final_result_by_job_id_final_results_job_job_id_get**](compute_api_client/docs/FinalResultsApi.md#read_final_result_by_job_id_final_results_job_job_id_get) | **GET** /final_results/job/{job_id} | Retrieve final result by job ID
125
125
  *FinalResultsApi* | [**read_final_result_final_results_id_get**](compute_api_client/docs/FinalResultsApi.md#read_final_result_final_results_id_get) | **GET** /final_results/{id} | Retrieve final result
126
+ *HealthApi* | [**healthz_healthz_get**](compute_api_client/docs/HealthApi.md#healthz_healthz_get) | **GET** /healthz | Report health
126
127
  *JobsApi* | [**create_job_jobs_post**](compute_api_client/docs/JobsApi.md#create_job_jobs_post) | **POST** /jobs | Create job
127
128
  *JobsApi* | [**delete_job_jobs_id_delete**](compute_api_client/docs/JobsApi.md#delete_job_jobs_id_delete) | **DELETE** /jobs/{id} | Destroy job
128
129
  *JobsApi* | [**read_job_jobs_id_get**](compute_api_client/docs/JobsApi.md#read_job_jobs_id_get) | **GET** /jobs/{id} | Retrieve job
@@ -200,6 +201,24 @@ Class | Method | HTTP request | Description
200
201
  - [MemberIn](compute_api_client/docs/MemberIn.md)
201
202
  - [Metadata](compute_api_client/docs/Metadata.md)
202
203
  - [MetadataIn](compute_api_client/docs/MetadataIn.md)
204
+ - [PageAlgorithm](compute_api_client/docs/PageAlgorithm.md)
205
+ - [PageBackend](compute_api_client/docs/PageBackend.md)
206
+ - [PageBackendType](compute_api_client/docs/PageBackendType.md)
207
+ - [PageBatchJob](compute_api_client/docs/PageBatchJob.md)
208
+ - [PageCommit](compute_api_client/docs/PageCommit.md)
209
+ - [PageFile](compute_api_client/docs/PageFile.md)
210
+ - [PageJob](compute_api_client/docs/PageJob.md)
211
+ - [PageLanguage](compute_api_client/docs/PageLanguage.md)
212
+ - [PageMember](compute_api_client/docs/PageMember.md)
213
+ - [PageMetadata](compute_api_client/docs/PageMetadata.md)
214
+ - [PagePermission](compute_api_client/docs/PagePermission.md)
215
+ - [PagePermissionGroup](compute_api_client/docs/PagePermissionGroup.md)
216
+ - [PageProject](compute_api_client/docs/PageProject.md)
217
+ - [PageReservation](compute_api_client/docs/PageReservation.md)
218
+ - [PageResult](compute_api_client/docs/PageResult.md)
219
+ - [PageTeam](compute_api_client/docs/PageTeam.md)
220
+ - [PageTransaction](compute_api_client/docs/PageTransaction.md)
221
+ - [PageUser](compute_api_client/docs/PageUser.md)
203
222
  - [Permission](compute_api_client/docs/Permission.md)
204
223
  - [PermissionGroup](compute_api_client/docs/PermissionGroup.md)
205
224
  - [Project](compute_api_client/docs/Project.md)
@@ -0,0 +1,182 @@
1
+ compute_api_client/__init__.py,sha256=PPvcbRzgr9QBIFU8dThwoJSJ-3Wvvwi61xCPYGxZ2vs,6160
2
+ compute_api_client/api/__init__.py,sha256=r1XAqXSWdvgMGLPSoqbjUEHsf6p2tYHMg7Aejad7u24,1199
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=RV57i8F30r4aMVYpRNaBLKtmIb0TcUikn6d82rSBuhM,30054
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/health_api.py,sha256=7oW14fRdmsHaQjlTUXMCksFb7wfmKybQhL6zqiFa2bg,10223
11
+ compute_api_client/api/jobs_api.py,sha256=Pr-nutBW3a7eeymnoPUJRLWrFFb_lVyRi50_k4aZv4M,62808
12
+ compute_api_client/api/languages_api.py,sha256=J9XI0q_60UaBfaemtV4XdgelkEDUqjx6WUTLjb-XJ4k,25756
13
+ compute_api_client/api/members_api.py,sha256=tCywXFQoJPF0BnJ_Da4lEyM4XD9BPLTCjYkjWkpfNAw,45684
14
+ compute_api_client/api/metadata_api.py,sha256=eLy_tlOhIUxoPDHMI779eALslCr3AxynUysIW_yaGuY,35288
15
+ compute_api_client/api/permissions_api.py,sha256=-8Y7YJa4lpaCVHckoVwYa-cJYiWD-98_IL0su1ArsEI,49598
16
+ compute_api_client/api/projects_api.py,sha256=URa3DDiCqiHdR7NWfWR-Y7-9RuQ7UOAWQKxEVyWMDf8,71112
17
+ compute_api_client/api/reservations_api.py,sha256=28sDPr3slUvdtEzBDeNOHvjzX5A_oxPSgPEkgagChlw,50193
18
+ compute_api_client/api/results_api.py,sha256=VOvtVlcEbHGHCKD58Gj_ef431K-5p6oRAH27428IHbo,65279
19
+ compute_api_client/api/teams_api.py,sha256=daGp9YTZF7I5NCAgm2_2xW4sOTh30oqpMZE0ppQs-fw,25747
20
+ compute_api_client/api/transactions_api.py,sha256=vQz7UvzTA1BGKUz08A1-8gz3975QnqLG87V9dsvsTs4,29950
21
+ compute_api_client/api/users_api.py,sha256=veol1D2YXX3NWs9Y_uljjdjG2PsEz8y1hSF-5jHmtt0,47705
22
+ compute_api_client/api_client.py,sha256=Fie1rugPyLJlXtZDfP7TC8ec9_JipjKxV0EB-RP9CFQ,25065
23
+ compute_api_client/api_response.py,sha256=A7O_XgliD6y7jEv82fgIaxR3T8KiwaOqHR6djpZyh_o,674
24
+ compute_api_client/configuration.py,sha256=pwBK6aXET054Y6XCLshR8mEWBPMfpekC3bAts4kSCKQ,15231
25
+ compute_api_client/docs/Algorithm.md,sha256=LThexsNa9FuuIyP9Hs2yjP2L-04VszC7AdfOJgJRj3s,992
26
+ compute_api_client/docs/AlgorithmIn.md,sha256=ikR6b3TyLjXyWxqlUDcS25ZCwyion5VCQ5D6RNWpuz4,1013
27
+ compute_api_client/docs/AlgorithmType.md,sha256=056KK2zjtdGqqTXkDsxg8mCzxr2sM8C37YmrR3txGVA,292
28
+ compute_api_client/docs/AlgorithmsApi.md,sha256=86LvDgo-LpfLBI8E8hgEn3BMymEmIqNpfk_Q5v2U3hw,14474
29
+ compute_api_client/docs/Backend.md,sha256=7xbvLaCTqqFzwcA2QONhY-QXa_Ts1fWiuBQBJegW50g,968
30
+ compute_api_client/docs/BackendApi.md,sha256=KWld3mvfxlP_ZiYNSHxNNCkMSwuSnbKy9aFsrFvuHMg,13986
31
+ compute_api_client/docs/BackendIn.md,sha256=7_drRygOUPHFWjrvAJGo7WwmcyK6EeRnlSnA6WtTCu0,978
32
+ compute_api_client/docs/BackendPatch.md,sha256=xET1pnI8JStGhtHm7qT-1zv7RCuKl2CUIKtYueWq72U,927
33
+ compute_api_client/docs/BackendStatus.md,sha256=ofnS843IHCIxoywjJJ01GP90Gn1XedAm5xR8TONmUbk,292
34
+ compute_api_client/docs/BackendType.md,sha256=mHhQKSZ7a-8g02F5vOsfosavoTaYcsVvw3J4ZAlNaR4,1320
35
+ compute_api_client/docs/BackendTypesApi.md,sha256=hfKaNCifgyNLw2p1f68ggQNmBOSsmO8TePhNkRnnJxA,7306
36
+ compute_api_client/docs/BackendWithAuthentication.md,sha256=u9lZh4FusMtOuV53yc0QXHdnTas-4HNC06NyDh8E1Go,1256
37
+ compute_api_client/docs/BatchJob.md,sha256=IozaJI2zAL1zo_zmuI-RIKvLGK68KkyW53AH4jbIaIs,1210
38
+ compute_api_client/docs/BatchJobIn.md,sha256=9-nP1Xgnzd5tfvo8WmandUWR8IY-2pMeZyW0HveKZEU,847
39
+ compute_api_client/docs/BatchJobStatus.md,sha256=UQift_l9A3L0azzYjQtr7UnmYk6X36Ug3U7S-VTpx7A,293
40
+ compute_api_client/docs/BatchJobsApi.md,sha256=h7MhwjOcDwfSuDOK44XrwYw30oUN4vOw4LrM12L2JtI,20832
41
+ compute_api_client/docs/Commit.md,sha256=WI3TcSFBdLWRjvJ9OBKiAKSN5AX7gXHs7EZm-Zs77FE,894
42
+ compute_api_client/docs/CommitIn.md,sha256=tnd4OQ1brIRnNGAGkH3x_HRIQIg68CZTuAEJ2JDKK9w,843
43
+ compute_api_client/docs/CommitsApi.md,sha256=URc0Hg8YCHaqieHbRFEdd33kcM29xmPKvh9yG_ZpUTU,10974
44
+ compute_api_client/docs/CompileStage.md,sha256=-U9wb4fyD8b_cjV1-GBIBJfbquFulRlHFm3C0GFnGik,291
45
+ compute_api_client/docs/Domain.md,sha256=HONTAt17CX2vFhnkHOFqMpJEIJjPM8GTBBQriWA71UY,285
46
+ compute_api_client/docs/File.md,sha256=Sv44g-54NNYcZL-sJeruJhohCHVNmCaue0u-xfsAHLw,967
47
+ compute_api_client/docs/FileIn.md,sha256=yRMAH_chHNZo4YskPGdw_nx14-sPn6S_OPdfm4-ej_U,1006
48
+ compute_api_client/docs/FilesApi.md,sha256=PB9Lw50m0-qJTRPvAuQgTfJjo6ASbA89_bMGBffmExA,10955
49
+ compute_api_client/docs/FinalResult.md,sha256=sRCvqIH3TXruJvgaHp4s6zyfCEkuBReVoaqr2iHVkJU,939
50
+ compute_api_client/docs/FinalResultIn.md,sha256=9RSstFSQ08-we_4TtoEAP1_KIq6FBdftRyc-DDkAGLQ,913
51
+ compute_api_client/docs/FinalResultsApi.md,sha256=V7X34yAWXZMlUBhPgC7EKhW_TXenIlhYR84PiH3kG9A,8167
52
+ compute_api_client/docs/HTTPNotFoundError.md,sha256=1GluS5OAVTk1qNrQwBOb29eQiNMJnCXyJk-0oKf-Rlc,936
53
+ compute_api_client/docs/HTTPValidationError.md,sha256=MRdybtO0HOeFCN3Zk221Q6XH6fw1Qyg8J9KLPn38tI4,1006
54
+ compute_api_client/docs/HealthApi.md,sha256=K1eWpfCF0AIbMsi0mAvFnIW-xjnnJvoQoyDQf7vyKEE,1825
55
+ compute_api_client/docs/Job.md,sha256=gXYcbGXDIqOTNuf9kHJJqmK7d9IrWIdsqLznizkrBNk,1048
56
+ compute_api_client/docs/JobIn.md,sha256=zN8pXLT1iGJg0o--iOfTZCm8Qj3UWApejFaASJ5AM8s,847
57
+ compute_api_client/docs/JobPatch.md,sha256=YadPzV_CU2oygKaaw8FJuikEo4M6QqO5uR628w1bKf4,827
58
+ compute_api_client/docs/JobStatus.md,sha256=BFKP4etVPMe37IOCI77TTxry-KfOcwhj_H5oNSfPkPA,288
59
+ compute_api_client/docs/JobsApi.md,sha256=4vV63UuUTQ9J2pYHkYz7J6Ng2WdK3jQ6AIHtRZBxxiA,15127
60
+ compute_api_client/docs/Language.md,sha256=eHCpr4xEVei2MTA9zKu4DxBZamoSrSE3JOD36I7iDwU,847
61
+ compute_api_client/docs/LanguagesApi.md,sha256=JcUYSDa-Sc7he7vUPWxWK0HH1RWfx_tJWG4bA7P3sqY,5977
62
+ compute_api_client/docs/LocationInner.md,sha256=Z1Z8_cF7hlrfoOGVKoWz-ZhSQ457HKDdE_nXzZ9TPCA,843
63
+ compute_api_client/docs/Member.md,sha256=Y1w2DLahBH71KkFN_pLZ_jK7OeuzZjEvKm9_uypkxis,892
64
+ compute_api_client/docs/MemberIn.md,sha256=9Qy8ZNV5_f04glvxGQ-Y8HGPS_pYsftCnZBt1635-hU,931
65
+ compute_api_client/docs/MembersApi.md,sha256=TDxBG-PCQ7YSvysFHajKlEiEJ-s7hdtY6oOQPUK0jyA,10524
66
+ compute_api_client/docs/Metadata.md,sha256=R5XBSvfG31CHzOEV8HtwaWDmrOOihS5Ky18woUfUlwE,889
67
+ compute_api_client/docs/MetadataApi.md,sha256=E7LYrmQSE5H_nplhbaXf6N56ZTVYkd_G54sgvWFSWbY,8617
68
+ compute_api_client/docs/MetadataIn.md,sha256=PBzLjFfYDlZdF3xSFjoQ1uP_EayjI1EmgvmBxPdJ8uI,874
69
+ compute_api_client/docs/PageAlgorithm.md,sha256=Fm9S7b9PdITbl1pVvcwUH_P66mK_D1A4Rkf9T_ZmM7E,1010
70
+ compute_api_client/docs/PageBackend.md,sha256=KZ61OnUKPq7vbI7_YTv7dp4ZhrZaD9wCOaQ7kANdUYo,980
71
+ compute_api_client/docs/PageBackendType.md,sha256=qMch61xCP2UuafMyy_wTd8ON-hqHyxMmqWOuDv7VDMc,1047
72
+ compute_api_client/docs/PageBatchJob.md,sha256=pF7_0XlnVeW2VpsCPdnWF5YR_T1CogChaI1O0386SxU,1002
73
+ compute_api_client/docs/PageCommit.md,sha256=GrMMmeIvl_KbnMwaWEegTrmRjtvo-5ovWkWVUs320r8,965
74
+ compute_api_client/docs/PageFile.md,sha256=s8dIFFIR-AIsag98X9cZpEaB_AqGRI6PslTTIZZx-RY,935
75
+ compute_api_client/docs/PageJob.md,sha256=hDIcvplf9zvK5Yb1xwS2PLykjhIEQ1CWmYa1DNgi0kM,920
76
+ compute_api_client/docs/PageLanguage.md,sha256=3roxlOLj7rbmi6_Z0J59EOi3h51whXjzC0htofm-pnM,995
77
+ compute_api_client/docs/PageMember.md,sha256=P7QYwHoUxo3R5ZlbxYyJpXxlg6N_m67WTMqrA5uQDwU,965
78
+ compute_api_client/docs/PageMetadata.md,sha256=CPL3LTSh-_U_TaGwYZF6IGfdN4iYdDTsXrSjolHo9p8,995
79
+ compute_api_client/docs/PagePermission.md,sha256=RlNS6KwJx0a0MS4HLdLOtEr61CIyptk6wmq9qcdZ2IM,1025
80
+ compute_api_client/docs/PagePermissionGroup.md,sha256=w334z91EzOUysRqptP5yuAKxJDg0GOQo-M0WETbtsdw,1107
81
+ compute_api_client/docs/PageProject.md,sha256=gh8PXcoR2IpQGRM4zkulb8tQtdzEib_Qw9XrcvkhxpM,980
82
+ compute_api_client/docs/PageReservation.md,sha256=6AYXBg2UDAOOumiLSnvvIUmmygEGU5xb64emxHe73rU,1040
83
+ compute_api_client/docs/PageResult.md,sha256=HOYKRkvnlFGA5ab3IPcvlwx_vrDKePxpcY1d3N2ufyw,965
84
+ compute_api_client/docs/PageTeam.md,sha256=guYOzVxw7oCh3ZmjiDNt6ieZQ2uuyTGfXQUmHapytVQ,935
85
+ compute_api_client/docs/PageTransaction.md,sha256=Z4XNWZNWJZs5Axce2Grwfx4pu3kvfR2YfPCrlouo2QQ,1040
86
+ compute_api_client/docs/PageUser.md,sha256=zOT6PMJ_1x7uj5ykWG4V5Iyu-Ic8ut_m-pB1ijw5ZVQ,935
87
+ compute_api_client/docs/Permission.md,sha256=gSRBHoPMcJEgGKRAHxSWLG921o6cnJQgeMyJgJHXieA,876
88
+ compute_api_client/docs/PermissionGroup.md,sha256=4gHLWGB9XHA7EoEk1M8ChffeNcF5v8zeBn3nklRkJJo,917
89
+ compute_api_client/docs/PermissionsApi.md,sha256=nbwcCQxM-iraXcpnJ2LMZU4RprW4w324Tq5QDSBRWGs,12035
90
+ compute_api_client/docs/Project.md,sha256=fC2w63y-I3Nfwf93Br6B0pbX2Sd7IH3MUpkLUSifdRY,932
91
+ compute_api_client/docs/ProjectIn.md,sha256=37DDbutsLHAURQzQaTL-O0nagNUO2AnS3aTqSf1vkEA,935
92
+ compute_api_client/docs/ProjectPatch.md,sha256=lSuCnJWbim0XPrmdXl5_h0WWGh3-Tr3R0G1RDXjAleQ,989
93
+ compute_api_client/docs/ProjectsApi.md,sha256=q2Mhql2tzNei9rvA48iw0dMBMWd0RIuAHEnIHlvtmSE,16665
94
+ compute_api_client/docs/Reservation.md,sha256=SX9xFwujAOl2yJBLO66CFM6JkxFquSNJQOBwkJAah5E,1035
95
+ compute_api_client/docs/ReservationIn.md,sha256=veTcJp5zNuApDCm76I6FawcWVjyLcvxGOubmmfvPJiw,979
96
+ compute_api_client/docs/ReservationsApi.md,sha256=ru49lUSCPKg6uyDcSWuxtGgqOwBMkWKpS7YKJZqj0Ok,12069
97
+ compute_api_client/docs/Result.md,sha256=dCqJTUZpwJQyoQh4-m45RhqlJQowbta06mBTyTH961U,1009
98
+ compute_api_client/docs/ResultIn.md,sha256=HFOPIzX-tVPrIUMYYdgyGoq9I_1KFNLDnGIJal0hdag,1027
99
+ compute_api_client/docs/ResultsApi.md,sha256=FA2dUSrch2a6udi3BrWenAbDS_gzQSvQ4CwB3JDZClg,15706
100
+ compute_api_client/docs/Role.md,sha256=WKRdBmGL1vHDgSxeIhUItEJnZJ-lMedQJoBEleQQou4,283
101
+ compute_api_client/docs/ShareType.md,sha256=AxfoQcU9wr9iU9r4unG1_miL8XT75FdAziZJzLDvQL0,288
102
+ compute_api_client/docs/Team.md,sha256=cGhzeDoJHyFX-offM414nz1lp1G9BslQUBGJejJMGWo,829
103
+ compute_api_client/docs/TeamsApi.md,sha256=UL4Ritv-Xerdc0_bixutd_cG4mYtmWooFYN8znwwwik,5811
104
+ compute_api_client/docs/Transaction.md,sha256=l2RsE4I6YC2FXUFKKhPIz5ZcpVH0AMdZKoxDNU8AUbs,1020
105
+ compute_api_client/docs/TransactionsApi.md,sha256=GXTa3op0allgaAlxoFOHMvfXCBbd01szOKutpjx2UWI,7081
106
+ compute_api_client/docs/User.md,sha256=oTsbbVs-VN8fFWiZCuu5OJmv97lQkZ2AAfdhLu2HsQY,956
107
+ compute_api_client/docs/UserIn.md,sha256=xAPeVO5WTaNcbI151w0j_g6BEM-xYquMV5Nx6srJA4Q,1082
108
+ compute_api_client/docs/UsersApi.md,sha256=_i1dIB7AW349xb8JcFtGohvK4l6iovAEYUYKaY5DZYc,10802
109
+ compute_api_client/docs/ValidationError.md,sha256=NZSCUyM9u2fx4CFZfPF9cl_e6zDxQ9siBX-WtNHJyeA,978
110
+ compute_api_client/exceptions.py,sha256=SxnwGBUmd989OJ9knsPWbZ3v59nn3_kipRYzOQZztXE,5451
111
+ compute_api_client/models/__init__.py,sha256=4N5O3a7EzozD5Zv4YpRJRb6m-osqgY2rFHE9-yYno5w,4429
112
+ compute_api_client/models/algorithm.py,sha256=eA77q4e5gi8VStOJplR0UF-E9gBr6VFkxsqt8Ohx1Yo,3190
113
+ compute_api_client/models/algorithm_in.py,sha256=-U2CoNZZSpAGBe6O7KFMJ9yIJAaOGEbPBdCTMIB3s2g,3148
114
+ compute_api_client/models/algorithm_type.py,sha256=yKefgGvi-f_O6OReG1Tu8Me_u2YZrvx5CFOSlTk8-6M,862
115
+ compute_api_client/models/backend.py,sha256=cZ_q1zzW6t9hDF-Llu2Zm8bgVQLvef0qFWLIENmp1Bg,3006
116
+ compute_api_client/models/backend_in.py,sha256=9XK17112GvDxH2jAJpedX7z4kQ4oNr14EsCQ5dmGsEk,2957
117
+ compute_api_client/models/backend_patch.py,sha256=QMKRJkxMIRiIc4dFQscqIJFe5zgCU11cm_6d_rnKOaE,2556
118
+ compute_api_client/models/backend_status.py,sha256=kLo5B4ZGtYuzRRADnxAdxeurPJYD_0TzJq69rYAnWGA,918
119
+ compute_api_client/models/backend_type.py,sha256=pmWZ5eB04Ol_dLlA9BMoPfo9pq8QYIxj9_ruvIkkfzs,3895
120
+ compute_api_client/models/backend_with_authentication.py,sha256=Zc62u-GsghnQnWu8KYAqNcF9WA60uPYxqMnGtYeJkdc,3243
121
+ compute_api_client/models/batch_job.py,sha256=OWedWfSa23U5qDT9SELxtHdrQEuSlDbdhcMCC9bIa58,4388
122
+ compute_api_client/models/batch_job_in.py,sha256=K2HVli0JZyLf_sVQbP6J7b5PyQUAwM6TbFpPTEbEdmY,2391
123
+ compute_api_client/models/batch_job_status.py,sha256=5RUAIBC_ZKrkno2pM3KXSyLA5BB91PMUBL9tIA2W50w,941
124
+ compute_api_client/models/commit.py,sha256=n7E2FeCSYGoxR2GA-Iaynon5WgCbyme5_eXqngV5GVE,2813
125
+ compute_api_client/models/commit_in.py,sha256=ABzzJRUP9FEc2y6AxRmWUFRxT_KJSH7X_TIfLpLdfLk,2475
126
+ compute_api_client/models/compile_stage.py,sha256=tjYzMVSAAtFemNiAchhZs-SOO7sKv5aCkfZWp0UgSwE,919
127
+ compute_api_client/models/domain.py,sha256=74HU4E_VPU84i7035NxJArBJW87yo-MS-YSoT1J7-Ac,875
128
+ compute_api_client/models/file.py,sha256=VShw2-IDR7byr4BwzITD7ge-EwwwNJc9kCZTDyOeofg,2982
129
+ compute_api_client/models/file_in.py,sha256=f-hMvyY0y6puLicSf1ngbIZ5QkHBxDyksWd4nVIIxp8,3008
130
+ compute_api_client/models/final_result.py,sha256=nikP4R6CF4otZ3kPmw1_VlrS51-y-2c1UdDhiVFmi28,2643
131
+ compute_api_client/models/final_result_in.py,sha256=0a3BDpM21XdfMp-kdr7DQ3peU4IDa_Pe-2z6v_D1s_8,2477
132
+ compute_api_client/models/http_not_found_error.py,sha256=ZxTsaEc2MX_Sb6pyoqt-sEhnQ6uwzpd8uRTEklcfaSY,2383
133
+ compute_api_client/models/http_validation_error.py,sha256=x7kRxeYeaVlQ-ckHPfkeFlsWsxZPDMKcvfOCR7jOlao,2882
134
+ compute_api_client/models/job.py,sha256=WoyezOgmQTZgA4DJAF19RJWXs2WcTXoYhErP1fE5024,3924
135
+ compute_api_client/models/job_in.py,sha256=dhlvkgXns3IxcMuscJwGBoue4oMuEzcwbnwBswCYal4,2815
136
+ compute_api_client/models/job_patch.py,sha256=eV3HzR59MOyuutLwhXDJTYbyT7rPVpabTde4BSBAGlI,2395
137
+ compute_api_client/models/job_status.py,sha256=axKdggJ8edmJGFMVVarPd_rZIae6B1Sn7yTKOgtq8cc,930
138
+ compute_api_client/models/language.py,sha256=rwSwzzxvpapfipAZYKpJ1bcgRzsvTVSnGCtPIs6X5Qs,2620
139
+ compute_api_client/models/location_inner.py,sha256=h2NaeDVOxZszCCG3rilEBBlPsFLckpZxCxrnvP0s_pw,4866
140
+ compute_api_client/models/member.py,sha256=axy5_qArwLJ0EWxXVRZLrJodHrx3CnWqZegp4nVC6b8,2683
141
+ compute_api_client/models/member_in.py,sha256=JTASd1YdPfZY7Fe5OSafnDLP_ZSQEeYpH4twvNj4Dhs,2709
142
+ compute_api_client/models/metadata.py,sha256=igNeLm7Wlaclp5hRsOKWRUtgf21y02sLTJ8xrs9hOPY,2615
143
+ compute_api_client/models/metadata_in.py,sha256=LxBqiLnepqHj5t4nnx8gT55UeNjdV90WhwHuZEcP3vo,2699
144
+ compute_api_client/models/page_algorithm.py,sha256=UuNIAbWpujOiiGThg4uEJxnhALGFi-OAYlp8dEXCoeM,4117
145
+ compute_api_client/models/page_backend.py,sha256=U_zCCPL6xfSRJDp_upWBAwxIu-0EK-46OkXieijVa8g,4101
146
+ compute_api_client/models/page_backend_type.py,sha256=u2ReGSj60ZlmQlaMke8GTYex2sQ1u20Pkc9NV4-jQbU,4134
147
+ compute_api_client/models/page_batch_job.py,sha256=PcjpgEpLVPJWYGIvr6XRdX5cPfqah1ZHdvcoxt99LqM,4110
148
+ compute_api_client/models/page_commit.py,sha256=2a0FlLpEbajFxuDBb85zqubuoFhzTSQh9yLvF1cQKEI,4093
149
+ compute_api_client/models/page_file.py,sha256=q85ipOUuPB0NJVzBaEBTKx6MISm2GMZ9pHqmuXmyNrg,4077
150
+ compute_api_client/models/page_job.py,sha256=hQwjdRfePlWWuK1imSlmI6A0K3Ua90rTtjh-VlN7CdM,4069
151
+ compute_api_client/models/page_language.py,sha256=Iz0bAuRBVsP32H6nrxpSHWmxgmrUhAJAxJpRccvX_Jk,4109
152
+ compute_api_client/models/page_member.py,sha256=oBjWpNtTjfaXvXVGy9z3uggEgGHozMT-GlVzB2zK5Fk,4093
153
+ compute_api_client/models/page_metadata.py,sha256=d6ns0CKPHe-pwzYRIgLAdsDUSUyM2CLK5NAzFe1-V-s,4109
154
+ compute_api_client/models/page_permission.py,sha256=Ga4cAffHSLb16SsnkP5GwYJ8w0KdfV9w8vx9NHS9PRk,4125
155
+ compute_api_client/models/page_permission_group.py,sha256=6mo-iJIP0uqRElh_fmFU3GCei3nD1Ei18HxjTkoJaIE,4166
156
+ compute_api_client/models/page_project.py,sha256=X_tpr3CZwHCXVhqmCQm0OC86i5dTOZqQObmo_HfV76c,4101
157
+ compute_api_client/models/page_reservation.py,sha256=ynq4hVAs45dBlluiXEmlfL0LsONXIWyF-J8wuBwFRnA,4133
158
+ compute_api_client/models/page_result.py,sha256=avpSRvjDKi4kTfeFOVs0EUziOjCUtgSPV_jQsNnoYT0,4093
159
+ compute_api_client/models/page_team.py,sha256=nO44xG1m61ocd9_L91-ol49V4JxZV1jOrWamRG9mnVY,4077
160
+ compute_api_client/models/page_transaction.py,sha256=USPMpgIizZzTUtinvkI0foK0s2Wxkf6PAlSeblxkKUU,4133
161
+ compute_api_client/models/page_user.py,sha256=05eOtyDSZ8w4YF8UwnTNjxvNef0BKDPYgBssmCtuASw,4077
162
+ compute_api_client/models/permission.py,sha256=6sSGykW6ESMHERfsDJ8NGpk1IyrSAH3zYgMs2IBdDY0,2640
163
+ compute_api_client/models/permission_group.py,sha256=G5p9UQ7J4su3K4wG7T1RZUp18e3zdGBAF7jmELK9VfE,2531
164
+ compute_api_client/models/project.py,sha256=10fqFYKta9J8fhDojvSCC9BEx9G89XOLFkOrppz5a4w,2892
165
+ compute_api_client/models/project_in.py,sha256=3tu8QPZNkMRpHAUlKjpO5uXALMozXyJHpcmVgy2cxJo,2799
166
+ compute_api_client/models/project_patch.py,sha256=y-mTY6rulTO3oiS_4uTcqt4C48Q39zFEGymQdMFYJ_U,3668
167
+ compute_api_client/models/reservation.py,sha256=-UR-pDG8anrYJdj_58FTm2zyh_OE5iLOSj2JD4HwfOA,3180
168
+ compute_api_client/models/reservation_in.py,sha256=UyZx8ho1BUME6CveESoqv_LRT5fiqS__tLmIl5EDVkE,2685
169
+ compute_api_client/models/result.py,sha256=dDg4GyKqgAFuobcHSHrsTfDUrUE6TP15hTIXpfoN0aU,3793
170
+ compute_api_client/models/result_in.py,sha256=TKmPl2xr5cyN9rUmpD7GYBakqkrziu1TEEtBtJsP7-0,3892
171
+ compute_api_client/models/role.py,sha256=KIqsUUw6TrmknOiI0fy5dsJyRUyBfhlcldvW63qDaBQ,831
172
+ compute_api_client/models/share_type.py,sha256=Lg00TV5Ychd_VkDg4dY-4wDW8TcXBiU9Usxe5EFDI8A,874
173
+ compute_api_client/models/team.py,sha256=QR5x-hNadhdPh1N9F85wW6X0jUUnoxvdTnypUu_GHxw,2714
174
+ compute_api_client/models/transaction.py,sha256=BbO0gPlKFvvG94GI-SvuPszyB5Lx048wlxBgHTJfmW8,3638
175
+ compute_api_client/models/user.py,sha256=WD1QyiqRlyObnK61QRE2NUCyY5Oc9ejeNcOGopm6Nmg,3115
176
+ compute_api_client/models/user_in.py,sha256=gMWrBylb3ihoc-bm-K7AG9w3iWGn_ROV14wZnGlJU30,3330
177
+ compute_api_client/models/validation_error.py,sha256=HWliEU5aNn3CkND3c0MxJf0D8bUJmE3HKncfUCKDk5o,2941
178
+ compute_api_client/rest.py,sha256=-N7fantOYHH5Ot97NOHm2ouAUuw4kdqbnOvCtf25H7g,5836
179
+ qi_compute_api_client-0.35.0.dist-info/LICENSE.md,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
180
+ qi_compute_api_client-0.35.0.dist-info/METADATA,sha256=5wmg_Z6ssa8h71E--c_nmn71B382FG-rSmMFp-CcCrw,19940
181
+ qi_compute_api_client-0.35.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
182
+ qi_compute_api_client-0.35.0.dist-info/RECORD,,