qi-compute-api-client 0.4.0__py3-none-any.whl → 0.17.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.
- compute_api_client/__init__.py +23 -20
- compute_api_client/api/__init__.py +5 -6
- compute_api_client/api/algorithms_api.py +1334 -554
- compute_api_client/api/backend_api.py +1501 -0
- compute_api_client/api/backend_types_api.py +684 -0
- compute_api_client/api/batch_jobs_api.py +1937 -0
- compute_api_client/api/commits_api.py +1069 -436
- compute_api_client/api/files_api.py +1076 -436
- compute_api_client/api/final_results_api.py +737 -339
- compute_api_client/api/jobs_api.py +1653 -0
- compute_api_client/api/languages_api.py +557 -218
- compute_api_client/api/members_api.py +1058 -436
- compute_api_client/api/metadata_api.py +737 -338
- compute_api_client/api/permissions_api.py +1056 -422
- compute_api_client/api/projects_api.py +1605 -677
- compute_api_client/api/reservations_api.py +1125 -428
- compute_api_client/api/results_api.py +739 -338
- compute_api_client/api/teams_api.py +568 -221
- compute_api_client/api/transactions_api.py +680 -219
- compute_api_client/api/users_api.py +1091 -436
- compute_api_client/api_client.py +347 -305
- compute_api_client/api_response.py +21 -0
- compute_api_client/configuration.py +55 -68
- compute_api_client/docs/Algorithm.md +20 -3
- compute_api_client/docs/AlgorithmIn.md +20 -3
- compute_api_client/docs/AlgorithmType.md +0 -1
- compute_api_client/docs/AlgorithmsApi.md +78 -77
- compute_api_client/docs/Backend.md +33 -0
- compute_api_client/docs/BackendApi.md +419 -0
- compute_api_client/docs/BackendPatch.md +29 -0
- compute_api_client/docs/{RunStatus.md → BackendStatus.md} +1 -2
- compute_api_client/docs/BackendType.md +36 -0
- compute_api_client/docs/{RuntimeTypesApi.md → BackendTypesApi.md} +58 -31
- compute_api_client/docs/BackendWithAuthentication.md +34 -0
- compute_api_client/docs/BatchJob.md +38 -0
- compute_api_client/docs/BatchJobIn.md +29 -0
- compute_api_client/docs/{RuntimeStatus.md → BatchJobStatus.md} +1 -2
- compute_api_client/docs/BatchJobsApi.md +524 -0
- compute_api_client/docs/Commit.md +18 -1
- compute_api_client/docs/CommitIn.md +17 -0
- compute_api_client/docs/CommitsApi.md +62 -71
- compute_api_client/docs/CompileStage.md +0 -1
- compute_api_client/docs/Domain.md +0 -1
- compute_api_client/docs/File.md +21 -4
- compute_api_client/docs/FileIn.md +21 -4
- compute_api_client/docs/FilesApi.md +65 -71
- compute_api_client/docs/FinalResult.md +20 -3
- compute_api_client/docs/FinalResultIn.md +19 -2
- compute_api_client/docs/FinalResultsApi.md +44 -71
- compute_api_client/docs/HTTPNotFoundError.md +17 -0
- compute_api_client/docs/HTTPValidationError.md +18 -1
- compute_api_client/docs/Job.md +36 -0
- compute_api_client/docs/JobIn.md +31 -0
- compute_api_client/docs/JobPatch.md +28 -0
- compute_api_client/docs/{BatchRunStatus.md → JobStatus.md} +1 -2
- compute_api_client/docs/{RunsApi.md → JobsApi.md} +137 -122
- compute_api_client/docs/Language.md +17 -0
- compute_api_client/docs/LanguagesApi.md +30 -12
- compute_api_client/docs/LocationInner.md +17 -0
- compute_api_client/docs/Member.md +19 -2
- compute_api_client/docs/MemberIn.md +19 -2
- compute_api_client/docs/MembersApi.md +59 -24
- compute_api_client/docs/Metadata.md +20 -3
- compute_api_client/docs/MetadataApi.md +49 -33
- compute_api_client/docs/MetadataIn.md +19 -2
- compute_api_client/docs/Permission.md +17 -0
- compute_api_client/docs/PermissionGroup.md +17 -0
- compute_api_client/docs/PermissionsApi.md +68 -28
- compute_api_client/docs/Project.md +20 -3
- compute_api_client/docs/ProjectIn.md +18 -1
- compute_api_client/docs/ProjectPatch.md +19 -2
- compute_api_client/docs/ProjectsApi.md +84 -36
- compute_api_client/docs/Reservation.md +21 -4
- compute_api_client/docs/ReservationIn.md +19 -2
- compute_api_client/docs/ReservationsApi.md +66 -24
- compute_api_client/docs/Result.md +23 -6
- compute_api_client/docs/ResultIn.md +19 -2
- compute_api_client/docs/ResultsApi.md +40 -74
- compute_api_client/docs/Role.md +0 -1
- compute_api_client/docs/ShareType.md +0 -1
- compute_api_client/docs/Team.md +18 -1
- compute_api_client/docs/TeamsApi.md +37 -14
- compute_api_client/docs/Transaction.md +21 -4
- compute_api_client/docs/TransactionsApi.md +50 -14
- compute_api_client/docs/User.md +21 -4
- compute_api_client/docs/UserIn.md +17 -0
- compute_api_client/docs/UsersApi.md +62 -24
- compute_api_client/docs/ValidationError.md +18 -1
- compute_api_client/exceptions.py +20 -17
- compute_api_client/models/__init__.py +17 -15
- compute_api_client/models/algorithm.py +79 -238
- compute_api_client/models/algorithm_in.py +77 -205
- compute_api_client/models/algorithm_type.py +22 -88
- compute_api_client/models/backend.py +100 -0
- compute_api_client/models/backend_patch.py +90 -0
- compute_api_client/models/backend_status.py +47 -0
- compute_api_client/models/backend_type.py +105 -0
- compute_api_client/models/backend_with_authentication.py +102 -0
- compute_api_client/models/batch_job.py +129 -0
- compute_api_client/models/batch_job_in.py +89 -0
- compute_api_client/models/batch_job_status.py +48 -0
- compute_api_client/models/commit.py +73 -231
- compute_api_client/models/commit_in.py +68 -170
- compute_api_client/models/compile_stage.py +24 -90
- compute_api_client/models/domain.py +23 -89
- compute_api_client/models/file.py +75 -289
- compute_api_client/models/file_in.py +73 -255
- compute_api_client/models/final_result.py +69 -199
- compute_api_client/models/final_result_in.py +64 -138
- compute_api_client/models/http_not_found_error.py +61 -106
- compute_api_client/models/http_validation_error.py +70 -106
- compute_api_client/models/job.py +120 -0
- compute_api_client/models/job_in.py +99 -0
- compute_api_client/models/job_patch.py +88 -0
- compute_api_client/models/job_status.py +48 -0
- compute_api_client/models/language.py +68 -173
- compute_api_client/models/location_inner.py +126 -85
- compute_api_client/models/member.py +71 -237
- compute_api_client/models/member_in.py +69 -204
- compute_api_client/models/metadata.py +69 -199
- compute_api_client/models/metadata_in.py +69 -138
- compute_api_client/models/permission.py +68 -173
- compute_api_client/models/permission_group.py +66 -143
- compute_api_client/models/project.py +75 -257
- compute_api_client/models/project_in.py +70 -196
- compute_api_client/models/project_patch.py +90 -193
- compute_api_client/models/reservation.py +80 -291
- compute_api_client/models/reservation_in.py +69 -201
- compute_api_client/models/result.py +102 -360
- compute_api_client/models/result_in.py +96 -293
- compute_api_client/models/role.py +22 -88
- compute_api_client/models/share_type.py +23 -89
- compute_api_client/models/team.py +70 -199
- compute_api_client/models/transaction.py +94 -300
- compute_api_client/models/user.py +76 -277
- compute_api_client/models/user_in.py +74 -244
- compute_api_client/models/validation_error.py +74 -161
- compute_api_client/rest.py +56 -115
- {qi_compute_api_client-0.4.0.dist-info → qi_compute_api_client-0.17.0.dist-info}/METADATA +47 -40
- qi_compute_api_client-0.17.0.dist-info/RECORD +142 -0
- compute_api_client/api/batch_runs_api.py +0 -862
- compute_api_client/api/runs_api.py +0 -723
- compute_api_client/api/runtime_api.py +0 -449
- compute_api_client/api/runtime_types_api.py +0 -303
- compute_api_client/docs/BatchRun.md +0 -21
- compute_api_client/docs/BatchRunIn.md +0 -12
- compute_api_client/docs/BatchRunsApi.md +0 -600
- compute_api_client/docs/Run.md +0 -18
- compute_api_client/docs/RunIn.md +0 -13
- compute_api_client/docs/Runtime.md +0 -16
- compute_api_client/docs/RuntimeApi.md +0 -229
- compute_api_client/docs/RuntimeType.md +0 -19
- compute_api_client/docs/RuntimeWithAuthentication.md +0 -17
- compute_api_client/models/batch_run.py +0 -423
- compute_api_client/models/batch_run_in.py +0 -171
- compute_api_client/models/batch_run_status.py +0 -114
- compute_api_client/models/run.py +0 -345
- compute_api_client/models/run_in.py +0 -202
- compute_api_client/models/run_status.py +0 -114
- compute_api_client/models/runtime.py +0 -290
- compute_api_client/models/runtime_status.py +0 -113
- compute_api_client/models/runtime_type.py +0 -357
- compute_api_client/models/runtime_with_authentication.py +0 -320
- qi_compute_api_client-0.4.0.dist-info/RECORD +0 -137
- {qi_compute_api_client-0.4.0.dist-info → qi_compute_api_client-0.17.0.dist-info}/LICENSE.md +0 -0
- {qi_compute_api_client-0.4.0.dist-info → qi_compute_api_client-0.17.0.dist-info}/WHEEL +0 -0
|
@@ -1,320 +0,0 @@
|
|
|
1
|
-
# coding: utf-8
|
|
2
|
-
|
|
3
|
-
"""
|
|
4
|
-
Compute Job Manager
|
|
5
|
-
|
|
6
|
-
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
|
|
7
|
-
|
|
8
|
-
The version of the OpenAPI document: 0.1.0
|
|
9
|
-
Generated by: https://openapi-generator.tech
|
|
10
|
-
"""
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
try:
|
|
14
|
-
from inspect import getfullargspec
|
|
15
|
-
except ImportError:
|
|
16
|
-
from inspect import getargspec as getfullargspec
|
|
17
|
-
import pprint
|
|
18
|
-
import re # noqa: F401
|
|
19
|
-
import six
|
|
20
|
-
|
|
21
|
-
from compute_api_client.configuration import Configuration
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
class RuntimeWithAuthentication(object):
|
|
25
|
-
"""NOTE: This class is auto generated by OpenAPI Generator.
|
|
26
|
-
Ref: https://openapi-generator.tech
|
|
27
|
-
|
|
28
|
-
Do not edit the class manually.
|
|
29
|
-
"""
|
|
30
|
-
|
|
31
|
-
"""
|
|
32
|
-
Attributes:
|
|
33
|
-
openapi_types (dict): The key is attribute name
|
|
34
|
-
and the value is attribute type.
|
|
35
|
-
attribute_map (dict): The key is attribute name
|
|
36
|
-
and the value is json key in definition.
|
|
37
|
-
"""
|
|
38
|
-
openapi_types = {
|
|
39
|
-
'id': 'int',
|
|
40
|
-
'name': 'str',
|
|
41
|
-
'location': 'str',
|
|
42
|
-
'status': 'RuntimeStatus',
|
|
43
|
-
'last_heartbeat': 'datetime',
|
|
44
|
-
'authentication_hash': 'str',
|
|
45
|
-
'runtime_type_id': 'int'
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
attribute_map = {
|
|
49
|
-
'id': 'id',
|
|
50
|
-
'name': 'name',
|
|
51
|
-
'location': 'location',
|
|
52
|
-
'status': 'status',
|
|
53
|
-
'last_heartbeat': 'last_heartbeat',
|
|
54
|
-
'authentication_hash': 'authentication_hash',
|
|
55
|
-
'runtime_type_id': 'runtime_type_id'
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
def __init__(self, id=None, name=None, location=None, status=None, last_heartbeat=None, authentication_hash=None, runtime_type_id=None, local_vars_configuration=None): # noqa: E501
|
|
59
|
-
"""RuntimeWithAuthentication - a model defined in OpenAPI""" # noqa: E501
|
|
60
|
-
if local_vars_configuration is None:
|
|
61
|
-
local_vars_configuration = Configuration.get_default_copy()
|
|
62
|
-
self.local_vars_configuration = local_vars_configuration
|
|
63
|
-
|
|
64
|
-
self._id = None
|
|
65
|
-
self._name = None
|
|
66
|
-
self._location = None
|
|
67
|
-
self._status = None
|
|
68
|
-
self._last_heartbeat = None
|
|
69
|
-
self._authentication_hash = None
|
|
70
|
-
self._runtime_type_id = None
|
|
71
|
-
self.discriminator = None
|
|
72
|
-
|
|
73
|
-
self.id = id
|
|
74
|
-
self.name = name
|
|
75
|
-
self.location = location
|
|
76
|
-
self.status = status
|
|
77
|
-
self.last_heartbeat = last_heartbeat
|
|
78
|
-
self.authentication_hash = authentication_hash
|
|
79
|
-
self.runtime_type_id = runtime_type_id
|
|
80
|
-
|
|
81
|
-
@property
|
|
82
|
-
def id(self):
|
|
83
|
-
"""Gets the id of this RuntimeWithAuthentication. # noqa: E501
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
:return: The id of this RuntimeWithAuthentication. # noqa: E501
|
|
87
|
-
:rtype: int
|
|
88
|
-
"""
|
|
89
|
-
return self._id
|
|
90
|
-
|
|
91
|
-
@id.setter
|
|
92
|
-
def id(self, id):
|
|
93
|
-
"""Sets the id of this RuntimeWithAuthentication.
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
:param id: The id of this RuntimeWithAuthentication. # noqa: E501
|
|
97
|
-
:type id: int
|
|
98
|
-
"""
|
|
99
|
-
if self.local_vars_configuration.client_side_validation and id is None: # noqa: E501
|
|
100
|
-
raise ValueError("Invalid value for `id`, must not be `None`") # noqa: E501
|
|
101
|
-
if (self.local_vars_configuration.client_side_validation and
|
|
102
|
-
id is not None and id > 2147483647): # noqa: E501
|
|
103
|
-
raise ValueError("Invalid value for `id`, must be a value less than or equal to `2147483647`") # noqa: E501
|
|
104
|
-
if (self.local_vars_configuration.client_side_validation and
|
|
105
|
-
id is not None and id < 1): # noqa: E501
|
|
106
|
-
raise ValueError("Invalid value for `id`, must be a value greater than or equal to `1`") # noqa: E501
|
|
107
|
-
|
|
108
|
-
self._id = id
|
|
109
|
-
|
|
110
|
-
@property
|
|
111
|
-
def name(self):
|
|
112
|
-
"""Gets the name of this RuntimeWithAuthentication. # noqa: E501
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
:return: The name of this RuntimeWithAuthentication. # noqa: E501
|
|
116
|
-
:rtype: str
|
|
117
|
-
"""
|
|
118
|
-
return self._name
|
|
119
|
-
|
|
120
|
-
@name.setter
|
|
121
|
-
def name(self, name):
|
|
122
|
-
"""Sets the name of this RuntimeWithAuthentication.
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
:param name: The name of this RuntimeWithAuthentication. # noqa: E501
|
|
126
|
-
:type name: str
|
|
127
|
-
"""
|
|
128
|
-
if self.local_vars_configuration.client_side_validation and name is None: # noqa: E501
|
|
129
|
-
raise ValueError("Invalid value for `name`, must not be `None`") # noqa: E501
|
|
130
|
-
if (self.local_vars_configuration.client_side_validation and
|
|
131
|
-
name is not None and len(name) > 32):
|
|
132
|
-
raise ValueError("Invalid value for `name`, length must be less than or equal to `32`") # noqa: E501
|
|
133
|
-
|
|
134
|
-
self._name = name
|
|
135
|
-
|
|
136
|
-
@property
|
|
137
|
-
def location(self):
|
|
138
|
-
"""Gets the location of this RuntimeWithAuthentication. # noqa: E501
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
:return: The location of this RuntimeWithAuthentication. # noqa: E501
|
|
142
|
-
:rtype: str
|
|
143
|
-
"""
|
|
144
|
-
return self._location
|
|
145
|
-
|
|
146
|
-
@location.setter
|
|
147
|
-
def location(self, location):
|
|
148
|
-
"""Sets the location of this RuntimeWithAuthentication.
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
:param location: The location of this RuntimeWithAuthentication. # noqa: E501
|
|
152
|
-
:type location: str
|
|
153
|
-
"""
|
|
154
|
-
if self.local_vars_configuration.client_side_validation and location is None: # noqa: E501
|
|
155
|
-
raise ValueError("Invalid value for `location`, must not be `None`") # noqa: E501
|
|
156
|
-
if (self.local_vars_configuration.client_side_validation and
|
|
157
|
-
location is not None and len(location) > 32):
|
|
158
|
-
raise ValueError("Invalid value for `location`, length must be less than or equal to `32`") # noqa: E501
|
|
159
|
-
|
|
160
|
-
self._location = location
|
|
161
|
-
|
|
162
|
-
@property
|
|
163
|
-
def status(self):
|
|
164
|
-
"""Gets the status of this RuntimeWithAuthentication. # noqa: E501
|
|
165
|
-
|
|
166
|
-
OFFLINE: offline<br/>IDLE: idle<br/>EXECUTING: executing<br/>CALIBRATING: calibrating # noqa: E501
|
|
167
|
-
|
|
168
|
-
:return: The status of this RuntimeWithAuthentication. # noqa: E501
|
|
169
|
-
:rtype: RuntimeStatus
|
|
170
|
-
"""
|
|
171
|
-
return self._status
|
|
172
|
-
|
|
173
|
-
@status.setter
|
|
174
|
-
def status(self, status):
|
|
175
|
-
"""Sets the status of this RuntimeWithAuthentication.
|
|
176
|
-
|
|
177
|
-
OFFLINE: offline<br/>IDLE: idle<br/>EXECUTING: executing<br/>CALIBRATING: calibrating # noqa: E501
|
|
178
|
-
|
|
179
|
-
:param status: The status of this RuntimeWithAuthentication. # noqa: E501
|
|
180
|
-
:type status: RuntimeStatus
|
|
181
|
-
"""
|
|
182
|
-
if self.local_vars_configuration.client_side_validation and status is None: # noqa: E501
|
|
183
|
-
raise ValueError("Invalid value for `status`, must not be `None`") # noqa: E501
|
|
184
|
-
if (self.local_vars_configuration.client_side_validation and
|
|
185
|
-
status is not None and len(status) > 11):
|
|
186
|
-
raise ValueError("Invalid value for `status`, length must be less than or equal to `11`") # noqa: E501
|
|
187
|
-
|
|
188
|
-
self._status = status
|
|
189
|
-
|
|
190
|
-
@property
|
|
191
|
-
def last_heartbeat(self):
|
|
192
|
-
"""Gets the last_heartbeat of this RuntimeWithAuthentication. # noqa: E501
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
:return: The last_heartbeat of this RuntimeWithAuthentication. # noqa: E501
|
|
196
|
-
:rtype: datetime
|
|
197
|
-
"""
|
|
198
|
-
return self._last_heartbeat
|
|
199
|
-
|
|
200
|
-
@last_heartbeat.setter
|
|
201
|
-
def last_heartbeat(self, last_heartbeat):
|
|
202
|
-
"""Sets the last_heartbeat of this RuntimeWithAuthentication.
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
:param last_heartbeat: The last_heartbeat of this RuntimeWithAuthentication. # noqa: E501
|
|
206
|
-
:type last_heartbeat: datetime
|
|
207
|
-
"""
|
|
208
|
-
if self.local_vars_configuration.client_side_validation and last_heartbeat is None: # noqa: E501
|
|
209
|
-
raise ValueError("Invalid value for `last_heartbeat`, must not be `None`") # noqa: E501
|
|
210
|
-
|
|
211
|
-
self._last_heartbeat = last_heartbeat
|
|
212
|
-
|
|
213
|
-
@property
|
|
214
|
-
def authentication_hash(self):
|
|
215
|
-
"""Gets the authentication_hash of this RuntimeWithAuthentication. # noqa: E501
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
:return: The authentication_hash of this RuntimeWithAuthentication. # noqa: E501
|
|
219
|
-
:rtype: str
|
|
220
|
-
"""
|
|
221
|
-
return self._authentication_hash
|
|
222
|
-
|
|
223
|
-
@authentication_hash.setter
|
|
224
|
-
def authentication_hash(self, authentication_hash):
|
|
225
|
-
"""Sets the authentication_hash of this RuntimeWithAuthentication.
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
:param authentication_hash: The authentication_hash of this RuntimeWithAuthentication. # noqa: E501
|
|
229
|
-
:type authentication_hash: str
|
|
230
|
-
"""
|
|
231
|
-
if self.local_vars_configuration.client_side_validation and authentication_hash is None: # noqa: E501
|
|
232
|
-
raise ValueError("Invalid value for `authentication_hash`, must not be `None`") # noqa: E501
|
|
233
|
-
if (self.local_vars_configuration.client_side_validation and
|
|
234
|
-
authentication_hash is not None and len(authentication_hash) > 32):
|
|
235
|
-
raise ValueError("Invalid value for `authentication_hash`, length must be less than or equal to `32`") # noqa: E501
|
|
236
|
-
|
|
237
|
-
self._authentication_hash = authentication_hash
|
|
238
|
-
|
|
239
|
-
@property
|
|
240
|
-
def runtime_type_id(self):
|
|
241
|
-
"""Gets the runtime_type_id of this RuntimeWithAuthentication. # noqa: E501
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
:return: The runtime_type_id of this RuntimeWithAuthentication. # noqa: E501
|
|
245
|
-
:rtype: int
|
|
246
|
-
"""
|
|
247
|
-
return self._runtime_type_id
|
|
248
|
-
|
|
249
|
-
@runtime_type_id.setter
|
|
250
|
-
def runtime_type_id(self, runtime_type_id):
|
|
251
|
-
"""Sets the runtime_type_id of this RuntimeWithAuthentication.
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
:param runtime_type_id: The runtime_type_id of this RuntimeWithAuthentication. # noqa: E501
|
|
255
|
-
:type runtime_type_id: int
|
|
256
|
-
"""
|
|
257
|
-
if self.local_vars_configuration.client_side_validation and runtime_type_id is None: # noqa: E501
|
|
258
|
-
raise ValueError("Invalid value for `runtime_type_id`, must not be `None`") # noqa: E501
|
|
259
|
-
if (self.local_vars_configuration.client_side_validation and
|
|
260
|
-
runtime_type_id is not None and runtime_type_id > 2147483647): # noqa: E501
|
|
261
|
-
raise ValueError("Invalid value for `runtime_type_id`, must be a value less than or equal to `2147483647`") # noqa: E501
|
|
262
|
-
if (self.local_vars_configuration.client_side_validation and
|
|
263
|
-
runtime_type_id is not None and runtime_type_id < 1): # noqa: E501
|
|
264
|
-
raise ValueError("Invalid value for `runtime_type_id`, must be a value greater than or equal to `1`") # noqa: E501
|
|
265
|
-
|
|
266
|
-
self._runtime_type_id = runtime_type_id
|
|
267
|
-
|
|
268
|
-
def to_dict(self, serialize=False):
|
|
269
|
-
"""Returns the model properties as a dict"""
|
|
270
|
-
result = {}
|
|
271
|
-
|
|
272
|
-
def convert(x):
|
|
273
|
-
if hasattr(x, "to_dict"):
|
|
274
|
-
args = getfullargspec(x.to_dict).args
|
|
275
|
-
if len(args) == 1:
|
|
276
|
-
return x.to_dict()
|
|
277
|
-
else:
|
|
278
|
-
return x.to_dict(serialize)
|
|
279
|
-
else:
|
|
280
|
-
return x
|
|
281
|
-
|
|
282
|
-
for attr, _ in six.iteritems(self.openapi_types):
|
|
283
|
-
value = getattr(self, attr)
|
|
284
|
-
attr = self.attribute_map.get(attr, attr) if serialize else attr
|
|
285
|
-
if isinstance(value, list):
|
|
286
|
-
result[attr] = list(map(
|
|
287
|
-
lambda x: convert(x),
|
|
288
|
-
value
|
|
289
|
-
))
|
|
290
|
-
elif isinstance(value, dict):
|
|
291
|
-
result[attr] = dict(map(
|
|
292
|
-
lambda item: (item[0], convert(item[1])),
|
|
293
|
-
value.items()
|
|
294
|
-
))
|
|
295
|
-
else:
|
|
296
|
-
result[attr] = convert(value)
|
|
297
|
-
|
|
298
|
-
return result
|
|
299
|
-
|
|
300
|
-
def to_str(self):
|
|
301
|
-
"""Returns the string representation of the model"""
|
|
302
|
-
return pprint.pformat(self.to_dict())
|
|
303
|
-
|
|
304
|
-
def __repr__(self):
|
|
305
|
-
"""For `print` and `pprint`"""
|
|
306
|
-
return self.to_str()
|
|
307
|
-
|
|
308
|
-
def __eq__(self, other):
|
|
309
|
-
"""Returns true if both objects are equal"""
|
|
310
|
-
if not isinstance(other, RuntimeWithAuthentication):
|
|
311
|
-
return False
|
|
312
|
-
|
|
313
|
-
return self.to_dict() == other.to_dict()
|
|
314
|
-
|
|
315
|
-
def __ne__(self, other):
|
|
316
|
-
"""Returns true if both objects are not equal"""
|
|
317
|
-
if not isinstance(other, RuntimeWithAuthentication):
|
|
318
|
-
return True
|
|
319
|
-
|
|
320
|
-
return self.to_dict() != other.to_dict()
|
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
compute_api_client/__init__.py,sha256=H6ahwbYPhKXxJGH3o__9PyTDCDxoZ91oQbTs9XNKeUw,4692
|
|
2
|
-
compute_api_client/api/__init__.py,sha256=anXlTIB7QO1LjdnHOpfcXsuB_yi0k12vdxNNxSVNFu4,1182
|
|
3
|
-
compute_api_client/api/algorithms_api.py,sha256=8uU8I1m87KekV_dEI5Jfa722_7H84-pBsigLZ0AZwfU,31278
|
|
4
|
-
compute_api_client/api/batch_runs_api.py,sha256=iSEgnGYFhJ2xZBDCAua9DpWqWilsRoWq7FhDk4bTsWk,36523
|
|
5
|
-
compute_api_client/api/commits_api.py,sha256=xw8QEPlR5XliTmvtsTsAxlYgkzDktyADDk7WJs5r_E4,23998
|
|
6
|
-
compute_api_client/api/files_api.py,sha256=rI3Pla4zSXS_zCnOEDE9Im_pYpOmoSP1s8wi-g2AHuQ,23794
|
|
7
|
-
compute_api_client/api/final_results_api.py,sha256=TYfTWNMfFzkMEd59fI-Zj9S7epRCDGmZxqAEGX24lIU,19563
|
|
8
|
-
compute_api_client/api/languages_api.py,sha256=M0CNyJIOpZwyHr9leYYqbFBzhniRxUDTll8spcLJ3NI,12343
|
|
9
|
-
compute_api_client/api/members_api.py,sha256=XQDfdHuqCEQJbNVc2jipNdFTuPihwHcy9fBnieDzYXc,23985
|
|
10
|
-
compute_api_client/api/metadata_api.py,sha256=DeaiDwt_jfNWeRP1DJ27bxIBz-w5XAB9o9fjpJ92eq0,19387
|
|
11
|
-
compute_api_client/api/permissions_api.py,sha256=VUx3gn31Si1BgNPKazoJnKRiIeVLEF8tF1aRFQM4two,23692
|
|
12
|
-
compute_api_client/api/projects_api.py,sha256=YPHgJZGG0p2FtgFSUTjbCx5xND26aSOIsxVuaSVWbo4,38047
|
|
13
|
-
compute_api_client/api/reservations_api.py,sha256=xv1pcQXLAe04mkc0gEnuCooOmnw1Md5mMBhya-jrXtc,24784
|
|
14
|
-
compute_api_client/api/results_api.py,sha256=IJdNnCwK6wILWX8wHw8pe74p67kU9ox4eOtCvKt4UzQ,19106
|
|
15
|
-
compute_api_client/api/runs_api.py,sha256=c2NJxB556oiumUlf30krgT_1voQYWgPSEsK5ksLCazg,29556
|
|
16
|
-
compute_api_client/api/runtime_api.py,sha256=eg4qFg1qKd12hvY6KGw1zPlKqXgb1n0xC6wdCOVS_Ig,18337
|
|
17
|
-
compute_api_client/api/runtime_types_api.py,sha256=RFJ_hNgBxncv1vY1vyrmrIleSSO37y-b_rKfTB8rvbw,12235
|
|
18
|
-
compute_api_client/api/teams_api.py,sha256=s_9jYtO-IbvahXkEU8NVwShrh21L8hsE75F7GoRmPiY,11900
|
|
19
|
-
compute_api_client/api/transactions_api.py,sha256=42XzAnmR8lQRSdG4rMrH3NQmkLiv3tKvmUX7tlQFGpo,12201
|
|
20
|
-
compute_api_client/api/users_api.py,sha256=nazt2rkyCEb5NCIMLhktSGREXKFnCThpm187leZKDKo,23783
|
|
21
|
-
compute_api_client/api_client.py,sha256=L9er1UVky-aG1m4Jngst1b9Czed-rt26ahOKyRmjUsI,27902
|
|
22
|
-
compute_api_client/configuration.py,sha256=3xTdXn-FEjR7mXsoaqwCA8PNgyRrMVLiMIKPENCeyjE,17035
|
|
23
|
-
compute_api_client/docs/Algorithm.md,sha256=Gi7y8BoB-5zrVx8plREY1vX89AfXHjfSfCuqH3ehxn8,591
|
|
24
|
-
compute_api_client/docs/AlgorithmIn.md,sha256=529itfD1yQ3EysbjGeSuLtGkgTI0ttOeA7D-WLLOLB8,570
|
|
25
|
-
compute_api_client/docs/AlgorithmType.md,sha256=dcVOCS_ZxNh5p2OLsD1_mjAp76P9Ff18mcnkmc70N_M,308
|
|
26
|
-
compute_api_client/docs/AlgorithmsApi.md,sha256=dXeKIt-ZWrpjbO2UjUOd5Rpe7t89y51oDPh1sn5ECw0,14024
|
|
27
|
-
compute_api_client/docs/BatchRun.md,sha256=kFVQEd9DXjbCwO0JvtWoKONLY8ay2c0QjRqxjxyNeiA,900
|
|
28
|
-
compute_api_client/docs/BatchRunIn.md,sha256=BC_YByEhTH7q4adifPZTuZoxX-G5xivp40t0-P_wCN0,353
|
|
29
|
-
compute_api_client/docs/BatchRunStatus.md,sha256=u-dOisux70FW5elVob4IvSrsOYQ--S006qoYu0iISNo,309
|
|
30
|
-
compute_api_client/docs/BatchRunsApi.md,sha256=p5gyBHo8kX_eXUgiXnKHqcP1EJXVZWQPgGnq6aVKuhw,20148
|
|
31
|
-
compute_api_client/docs/Commit.md,sha256=gzAdtQ7gyEoWxMQ5DOH1kmeP0AWp9GeJGNl0mUuDEFE,445
|
|
32
|
-
compute_api_client/docs/CommitIn.md,sha256=0tgc87XtqaKRGfLDRZhLfgUf0ibMa4hBuv3-qTF72ro,377
|
|
33
|
-
compute_api_client/docs/CommitsApi.md,sha256=LQEij26Emn5_nUtJI2DVoP7FJ8gLVJe9HscWEdAh8q8,11154
|
|
34
|
-
compute_api_client/docs/CompileStage.md,sha256=Ec3vg7VjyDL8JFPXAXQ-qaUbdWnNHKCQuiUuhf1lSmE,307
|
|
35
|
-
compute_api_client/docs/Domain.md,sha256=oBmSoKQWFDYszZwjxv5m44RTx9n_PEbMFWcQOTKfVwc,301
|
|
36
|
-
compute_api_client/docs/File.md,sha256=5j2JK3H9oefpQiNtTIoLS4b0oE_QhtPUNlJORv5GZLs,678
|
|
37
|
-
compute_api_client/docs/FileIn.md,sha256=QnlQEgDrC1R9NcdGpzLeh_oF62Eb7NrJTEhUaV_xhgA,668
|
|
38
|
-
compute_api_client/docs/FilesApi.md,sha256=wRNGE9UzuL2KOHzotq5hnc9TYAYMKDcbRvWLLAiD-CY,10940
|
|
39
|
-
compute_api_client/docs/FinalResult.md,sha256=-3h22zABop8k-TK0Dbwg3jBZ0OV9ganyXMlfTxGgXC8,434
|
|
40
|
-
compute_api_client/docs/FinalResultIn.md,sha256=xYRFIm8_5vJ9wSY8ZPvGeS7QqPtIbfzZOvDj2HA66mU,366
|
|
41
|
-
compute_api_client/docs/FinalResultsApi.md,sha256=ai_mrI8NaCwinzkQ6R5fOCvbB3Vr_eGtFq5pU2emQcU,9712
|
|
42
|
-
compute_api_client/docs/HTTPNotFoundError.md,sha256=qmJRMe7PL7GOYMSkNQv3bouefPS5HzHH7L5dqbVQGHE,323
|
|
43
|
-
compute_api_client/docs/HTTPValidationError.md,sha256=lqW5zHykv8KETGhdY7wtA_sz1WiN6maG-rZkeVKDiQo,376
|
|
44
|
-
compute_api_client/docs/Language.md,sha256=KC2SHpageSm-fbmHntreSgmj3Yr510OmCAXTbTJ2Oiw,363
|
|
45
|
-
compute_api_client/docs/LanguagesApi.md,sha256=uX7Z7RP-3Fj6slLmKptJbKXdUdhyndwIuWlmnsTXDsc,4893
|
|
46
|
-
compute_api_client/docs/LocationInner.md,sha256=A4p5I0_Xb8xA0g9GBDnYhQ2ORdQIVS9jLl8xfkbCdE0,292
|
|
47
|
-
compute_api_client/docs/Member.md,sha256=5C8t_mf7YXfs1rzF-yEcLqnlEsZkGbKi78YZTyWTQbM,498
|
|
48
|
-
compute_api_client/docs/MemberIn.md,sha256=yLjDlzCZwlD6RBTzstEzyu9EvXHmdodQlBlJ-KI4CiA,477
|
|
49
|
-
compute_api_client/docs/MembersApi.md,sha256=0Q0NwOXXLEt5DayMlXgI7UUq3gpKLwOh8Hbgc4m5uBg,9315
|
|
50
|
-
compute_api_client/docs/Metadata.md,sha256=_K33LVxB0weOA2x4aIwg-WwTGaf44OMLWzhDmEeRjaQ,427
|
|
51
|
-
compute_api_client/docs/MetadataApi.md,sha256=PjsE3TPoBYFQNbjN6VAxOw4WJW_9IGJDL-_hyoIzNJ8,7574
|
|
52
|
-
compute_api_client/docs/MetadataIn.md,sha256=tU7PzLzJ0RsVXdTzxSCamAh4q-ROdpIjAMQmBaAR4kY,359
|
|
53
|
-
compute_api_client/docs/Permission.md,sha256=cp3tss3tvOwtQM77aLkNvIS6TI5C2ywIVlOc6Nd_JgQ,368
|
|
54
|
-
compute_api_client/docs/PermissionGroup.md,sha256=m8eYQvOJJva37U4H3Ppblk90xAXBvKYCLyrvXEGvnpI,342
|
|
55
|
-
compute_api_client/docs/PermissionsApi.md,sha256=y0tCoiwzPUzf9ftAcqxAiMUoOvuXrA1npr4BTuFDmIY,9721
|
|
56
|
-
compute_api_client/docs/Project.md,sha256=sRSQR2VtQMeXlV0-3P5aWdOWKk6saw80l-_Jnns2c0Y,500
|
|
57
|
-
compute_api_client/docs/ProjectIn.md,sha256=udr-Myho9DBqNQZZwcJ-5OyKJFEY0ssTgmXXz509dcg,432
|
|
58
|
-
compute_api_client/docs/ProjectPatch.md,sha256=eOG9pjAPgzqKY5vXC3JYsw1d3jdpg4dW2YnUfuKzJr8,468
|
|
59
|
-
compute_api_client/docs/ProjectsApi.md,sha256=8oGjvAQfM5NsNdvEcANCMAT7k81KBX748VnfL5BXCY4,14529
|
|
60
|
-
compute_api_client/docs/Reservation.md,sha256=pSxxhBVw16NaV7X48jx_FPaf0fTuHAHFn9EFwyfXshc,555
|
|
61
|
-
compute_api_client/docs/ReservationIn.md,sha256=NQUMwlqmAHRWPhHLhv2YERmA_TJ2LleWnBsVNaSw1l4,428
|
|
62
|
-
compute_api_client/docs/ReservationsApi.md,sha256=YhNFdeoDQtocyp3aFpGBpXSyLYIuFmv81Hxki_mIoV0,9962
|
|
63
|
-
compute_api_client/docs/Result.md,sha256=eKr9vJ5ZuEDorSskUky23PcNlNnIwcQLIivUjcK7YLk,630
|
|
64
|
-
compute_api_client/docs/ResultIn.md,sha256=5enRfgHA8NCUc0EBBaD0eCeu-Let_xs25-ozAWHnQIc,562
|
|
65
|
-
compute_api_client/docs/ResultsApi.md,sha256=IU74lJTOrwnNk5ohRfwwTS-nQR-4M2-eHzy4RMa8a6s,9217
|
|
66
|
-
compute_api_client/docs/Role.md,sha256=S5qz94RDsUuW0Fo7P0bpAo3OrNNdFTK9rxCOZ6tbwaM,299
|
|
67
|
-
compute_api_client/docs/Run.md,sha256=PyBiRnmqGTI_RX18b_JXKVlFBAr6pb95driEi7wmkpQ,792
|
|
68
|
-
compute_api_client/docs/RunIn.md,sha256=-WJQLCNjqb6mM5K1onGbGnX1SqHiswoM_94qZs7_DSM,535
|
|
69
|
-
compute_api_client/docs/RunStatus.md,sha256=jm_-5dEcvxOaCVb3Sc0kis--rehMqRSOvJXvN9cq4iM,304
|
|
70
|
-
compute_api_client/docs/RunsApi.md,sha256=4W8zfYbhW_z6MzdLf88lZ-Ztx7bBzHJ5GvkEE4JmdHA,13158
|
|
71
|
-
compute_api_client/docs/Runtime.md,sha256=jusiKuW9gOVpQPy2j9rPH1PZK0o8ZnraMV5B26GRWr8,599
|
|
72
|
-
compute_api_client/docs/RuntimeApi.md,sha256=yWhB_H1ILo70UYS5M32jmDen6p_DSFA7xBzmRpfsCbg,7110
|
|
73
|
-
compute_api_client/docs/RuntimeStatus.md,sha256=KzEXUREJ2Y7lZDNnnK54HLlrQ7mll7ZEuZ2L1Vx-iqw,308
|
|
74
|
-
compute_api_client/docs/RuntimeType.md,sha256=bjUZHa3nGkZRxPjTMhrxDJIYFu7isW11rgVBwHHrXpU,617
|
|
75
|
-
compute_api_client/docs/RuntimeTypesApi.md,sha256=mGB_2h5g_b1XExn7CsxxOBge0Tkhh12kt_5lwIvJFeU,4904
|
|
76
|
-
compute_api_client/docs/RuntimeWithAuthentication.md,sha256=N8GTeek7hieUPZBhvdKMcm4DMAkecAwaEpx-wYkUJFI,657
|
|
77
|
-
compute_api_client/docs/ShareType.md,sha256=NYx7Eogne8sPw8pukay3Ln-3ViFPl_3H9KFhSkTnLr8,304
|
|
78
|
-
compute_api_client/docs/Team.md,sha256=U5xi5iR_SCaE9g7KyYJXMK84kVZALIOj2mnCvaWXG54,422
|
|
79
|
-
compute_api_client/docs/TeamsApi.md,sha256=HmT3OcBV6gW1EI4zMg0LHqqNbzaA8d-xjK0_U-hgoQ8,4544
|
|
80
|
-
compute_api_client/docs/Transaction.md,sha256=2mRS60TMLh3IrWIN7niDDtlEJAGMA9ZLR6ZixVlddbc,609
|
|
81
|
-
compute_api_client/docs/TransactionsApi.md,sha256=btqY9EfT8g9G6fdL24maVd7AGzdpsS-p523qAOE55WE,4873
|
|
82
|
-
compute_api_client/docs/User.md,sha256=5QtqbKBcyR66IAxCycKFnvUk2kNmbg6-Wra-nSnht98,607
|
|
83
|
-
compute_api_client/docs/UserIn.md,sha256=Vr3QupMID6hvvmpL-khSPPnM1g9nPD0b9QeJ9YBO1eI,586
|
|
84
|
-
compute_api_client/docs/UsersApi.md,sha256=ur0IkjEc0nQ072_sQhatUs0GwNB4nQXdXE0h9rbpHZ0,9119
|
|
85
|
-
compute_api_client/docs/ValidationError.md,sha256=kZfrucj2SBmUEdTHFXNVOel0nOlUyi6DBDjMNkcp3K0,403
|
|
86
|
-
compute_api_client/exceptions.py,sha256=wYiay7RhaYZuuMg2fI5Vq2cqgszFrgZr-lsycDwFXk4,5143
|
|
87
|
-
compute_api_client/models/__init__.py,sha256=rmU2wqxUvPn_e6NzTXQp69wGZ4_x3lS3l_ZqKzsF_48,3073
|
|
88
|
-
compute_api_client/models/algorithm.py,sha256=uBEo-GrObTGtOsyZPWmC97WUMEOCoMjAAVoskHNzcYw,8684
|
|
89
|
-
compute_api_client/models/algorithm_in.py,sha256=IFiBn0V1oj5t1R3sNotYcednXikMcUcLFPvVlfPyHBQ,7545
|
|
90
|
-
compute_api_client/models/algorithm_type.py,sha256=Q3D9bg1tcXeO_jYi9oVYJzskhu-zpFw-m5miB7P66cE,3195
|
|
91
|
-
compute_api_client/models/batch_run.py,sha256=gX76UP2o-kH9BZQwDlhzlBC-BwYdonMARHAwSqenN_c,14456
|
|
92
|
-
compute_api_client/models/batch_run_in.py,sha256=uoz5CdGqWQ5FWE0m1454wJeuDtjfrguHfD4ApVlN3Kg,5910
|
|
93
|
-
compute_api_client/models/batch_run_status.py,sha256=vNXYFQ93LdT1d4RtdVHiLrQSz5wJox9tIzjxTqIlhR4,3304
|
|
94
|
-
compute_api_client/models/commit.py,sha256=M_rTEs0U8_tgdW-lPZslgTXAI-xkyTpQmYnvVIu2vps,8312
|
|
95
|
-
compute_api_client/models/commit_in.py,sha256=Vm5CqUNVzLoP-fCDgUdpsr035k3L480aGjIMMn-1wgI,6318
|
|
96
|
-
compute_api_client/models/compile_stage.py,sha256=VX_cQq9U4wzN6WixGZyeumR5KVlc2PS3ipSqMlR4zK0,3275
|
|
97
|
-
compute_api_client/models/domain.py,sha256=InWOKBRR3eVVMnGpi7QDT2JVTkHlqv0ggoUYOnohocs,3215
|
|
98
|
-
compute_api_client/models/file.py,sha256=6nmkf_5Vcckv7gBXELMH7RxJtf35Kh8KqwrYwA4uvJA,10593
|
|
99
|
-
compute_api_client/models/file_in.py,sha256=AImOnwkp7xx4ocgXKBkzeifEbbDK_YUDV9MHJ924dXA,9327
|
|
100
|
-
compute_api_client/models/final_result.py,sha256=jdNSgeJQ8y6UqjVOGl1m0g-Rh_X26Y_lT93jKJRfIpg,7123
|
|
101
|
-
compute_api_client/models/final_result_in.py,sha256=sKFWaLwJYSzKm0Hp0XUwYAgJZU1lT33RNopJFq9gm_M,5081
|
|
102
|
-
compute_api_client/models/http_not_found_error.py,sha256=IjMYAQY0dL1CEIwJQ8HsjjkQooHHGK1hRxB4n0wGtQk,3868
|
|
103
|
-
compute_api_client/models/http_validation_error.py,sha256=Zxdqul5XlWL0GwjqSULrg8MTLSTSgmEGJLMWq3ER_kw,3782
|
|
104
|
-
compute_api_client/models/language.py,sha256=BlirP3jPP9QqIzybFsvGx6_y4bnLvJCM5lPgYRmRepM,6196
|
|
105
|
-
compute_api_client/models/location_inner.py,sha256=_EglU8FSi8-sJDbVp4NLlTR2ikdk4QV4dJB7c29kNT8,3052
|
|
106
|
-
compute_api_client/models/member.py,sha256=4Zmr1k0rT3ZQPsXjw2iXWoZq0XEIAX6IFT8aTGuJNiQ,8530
|
|
107
|
-
compute_api_client/models/member_in.py,sha256=n2oFRf_eO_nPrefCjOhJY0OvZrETmRo2WcxtliLWGL8,7403
|
|
108
|
-
compute_api_client/models/metadata.py,sha256=o0hyzmY4UgX8IL3l5TQQKIzHpTwX9CZX-RMQtwDrF-k,7015
|
|
109
|
-
compute_api_client/models/metadata_in.py,sha256=9oax4DrrUYOvKYu75GSVrBnsw3LP-OwwPooPelsVrik,4997
|
|
110
|
-
compute_api_client/models/permission.py,sha256=rxlQMSSQOz5ud29qml0HS-b-iPN-xQ3xdP1gkOWcMV8,6303
|
|
111
|
-
compute_api_client/models/permission_group.py,sha256=tNg0Vd5Izb0GI3guEKiL7pA-7tMffvrr9bC4GdZah1k,5248
|
|
112
|
-
compute_api_client/models/project.py,sha256=7--lysFp9qiUpaZrLLZ9-Pre_E82iZDK7HLkBiOxIXE,8855
|
|
113
|
-
compute_api_client/models/project_in.py,sha256=1QqFzy-wf3fKWH0os_ujF_FnUWnZpzuv_kNMuTwnYSA,6861
|
|
114
|
-
compute_api_client/models/project_patch.py,sha256=M5gTYdsR7l6Kz--jfjaDc6BK8HWRBTd7eMp21ZxKlw4,6448
|
|
115
|
-
compute_api_client/models/reservation.py,sha256=k24GOy29UA9kRWeVIrZwCOT9mVelg73Gw-toVtmfj-s,10862
|
|
116
|
-
compute_api_client/models/reservation_in.py,sha256=6Q2hgOjejzf5uhRkvlof7uxbZCjaTp0ncE7JDDIcalw,7732
|
|
117
|
-
compute_api_client/models/result.py,sha256=noWn9zvMbRwV55GjIowPdiU8ETkhtw0rbyL7nRSKx9U,13635
|
|
118
|
-
compute_api_client/models/result_in.py,sha256=2vRAynMnb02ZPPgJXwMr5qRciGKuGx2m01YBbWB8f2M,11673
|
|
119
|
-
compute_api_client/models/role.py,sha256=ZrhUzFF4Csd6MB5KjuZ9pF902HwpmIFYKIVCvJVArQ0,3153
|
|
120
|
-
compute_api_client/models/run.py,sha256=zXlQEmcFa4lisO2RWfymVuWKqur7ud8KEefdsN-fEEk,11632
|
|
121
|
-
compute_api_client/models/run_in.py,sha256=DUv_aQ8lJoXGwlfawdfRYH1QwFeWO0aZRgHgNRJhV74,6879
|
|
122
|
-
compute_api_client/models/run_status.py,sha256=wLYFQGCQGBDOwOY6FSeyVHXBNQ9Nus3sJiBWD722oXE,3290
|
|
123
|
-
compute_api_client/models/runtime.py,sha256=j1RsLiwhulplb-SzZh16x_B_WhuhNvFh8WydTkJ5gDE,9940
|
|
124
|
-
compute_api_client/models/runtime_status.py,sha256=TCKnQ9TtbFw2TZf9i1kDdmxspAEMjKOpcYoLzx3NcEM,3273
|
|
125
|
-
compute_api_client/models/runtime_type.py,sha256=6-vZSMByU0CIF51Gb2fKYrU2WA2-Pp6DolG9QPT-hXM,11585
|
|
126
|
-
compute_api_client/models/runtime_with_authentication.py,sha256=HwtOSZInzIw9GoWLGwM713E8wunlF6cSEflS5hH6Ge8,11844
|
|
127
|
-
compute_api_client/models/share_type.py,sha256=0CQswgaCyQRJgXfw6AO07ux1jtbpfOyzEqZq_UuW--c,3212
|
|
128
|
-
compute_api_client/models/team.py,sha256=CXnOsSvD6ACvu6H1mCb3mAwGffx18KeTeGpaYnYcnCg,6842
|
|
129
|
-
compute_api_client/models/transaction.py,sha256=GluBGyZ9kbWSYtUTxUnmRfIsA9Cogsq-heZshoTzLQA,10913
|
|
130
|
-
compute_api_client/models/user.py,sha256=QAWA3mwpj-Zl4uavE0ZPgvTIoe7VkL2J1sPdHVrxiFQ,8950
|
|
131
|
-
compute_api_client/models/user_in.py,sha256=6PP2oHPYxE3hcJjniQfuuQklN_8UlErfNVjmPUypnGA,7847
|
|
132
|
-
compute_api_client/models/validation_error.py,sha256=zFjRDEaWS478RnuqifLqvlt9JtZtIPAcFJy0h6e8Y-k,5308
|
|
133
|
-
compute_api_client/rest.py,sha256=BbTobnlzC1SQQm7ZsCZ2VzyAZk56MXwmOwCO8_MMAMI,9931
|
|
134
|
-
qi_compute_api_client-0.4.0.dist-info/LICENSE.md,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
135
|
-
qi_compute_api_client-0.4.0.dist-info/METADATA,sha256=Xd1M1rTJPJ22jxjjQtqQ7GFuG5QdSxLxI4RV3FJy704,17438
|
|
136
|
-
qi_compute_api_client-0.4.0.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
|
137
|
-
qi_compute_api_client-0.4.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|