legit-api-client 1.1.4579__py3-none-any.whl → 1.1.4613__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 legit-api-client might be problematic. Click here for more details.
- legit_api_client/__init__.py +7 -1
- legit_api_client/api/__init__.py +1 -0
- legit_api_client/api/models_api.py +588 -0
- legit_api_client/api/sdlc_assets_api.py +21 -3
- legit_api_client/api_client.py +1 -1
- legit_api_client/configuration.py +1 -1
- legit_api_client/models/__init__.py +2 -0
- legit_api_client/models/ai_model_reputation_dto.py +102 -0
- legit_api_client/models/model_reputation.py +39 -0
- legit_api_client/models/product_connection_type.py +2 -0
- legit_api_client/models/user_role.py +1 -0
- {legit_api_client-1.1.4579.dist-info → legit_api_client-1.1.4613.dist-info}/METADATA +6 -2
- {legit_api_client-1.1.4579.dist-info → legit_api_client-1.1.4613.dist-info}/RECORD +15 -12
- {legit_api_client-1.1.4579.dist-info → legit_api_client-1.1.4613.dist-info}/WHEEL +0 -0
- {legit_api_client-1.1.4579.dist-info → legit_api_client-1.1.4613.dist-info}/top_level.txt +0 -0
legit_api_client/__init__.py
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "1.1.
|
|
17
|
+
__version__ = "1.1.4613"
|
|
18
18
|
|
|
19
19
|
# Define package exports
|
|
20
20
|
__all__ = [
|
|
@@ -30,6 +30,7 @@ __all__ = [
|
|
|
30
30
|
"IntegrationsApi",
|
|
31
31
|
"IssuesApi",
|
|
32
32
|
"IssuesV2Api",
|
|
33
|
+
"ModelsApi",
|
|
33
34
|
"PoliciesApi",
|
|
34
35
|
"ProductUnitsApi",
|
|
35
36
|
"RepositoriesApi",
|
|
@@ -48,6 +49,7 @@ __all__ = [
|
|
|
48
49
|
"ApiAttributeError",
|
|
49
50
|
"ApiException",
|
|
50
51
|
"AddIssueCommentDto",
|
|
52
|
+
"AiModelReputationDto",
|
|
51
53
|
"AiSecretValidationResult",
|
|
52
54
|
"AmazonEcrKeyIntegrationCreateDto",
|
|
53
55
|
"AmazonEcrKeyIntegrationEditDto",
|
|
@@ -169,6 +171,7 @@ __all__ = [
|
|
|
169
171
|
"LegitScoreRequirementType",
|
|
170
172
|
"ListSortDirection",
|
|
171
173
|
"ManualCheckDto",
|
|
174
|
+
"ModelReputation",
|
|
172
175
|
"OriginType",
|
|
173
176
|
"PackageSource",
|
|
174
177
|
"PackageType",
|
|
@@ -246,6 +249,7 @@ from legit_api_client.api.dependencies_v2_api import DependenciesV2Api as Depend
|
|
|
246
249
|
from legit_api_client.api.integrations_api import IntegrationsApi as IntegrationsApi
|
|
247
250
|
from legit_api_client.api.issues_api import IssuesApi as IssuesApi
|
|
248
251
|
from legit_api_client.api.issues_v2_api import IssuesV2Api as IssuesV2Api
|
|
252
|
+
from legit_api_client.api.models_api import ModelsApi as ModelsApi
|
|
249
253
|
from legit_api_client.api.policies_api import PoliciesApi as PoliciesApi
|
|
250
254
|
from legit_api_client.api.product_units_api import ProductUnitsApi as ProductUnitsApi
|
|
251
255
|
from legit_api_client.api.repositories_api import RepositoriesApi as RepositoriesApi
|
|
@@ -268,6 +272,7 @@ from legit_api_client.exceptions import ApiException as ApiException
|
|
|
268
272
|
|
|
269
273
|
# import models into sdk package
|
|
270
274
|
from legit_api_client.models.add_issue_comment_dto import AddIssueCommentDto as AddIssueCommentDto
|
|
275
|
+
from legit_api_client.models.ai_model_reputation_dto import AiModelReputationDto as AiModelReputationDto
|
|
271
276
|
from legit_api_client.models.ai_secret_validation_result import AiSecretValidationResult as AiSecretValidationResult
|
|
272
277
|
from legit_api_client.models.amazon_ecr_key_integration_create_dto import AmazonEcrKeyIntegrationCreateDto as AmazonEcrKeyIntegrationCreateDto
|
|
273
278
|
from legit_api_client.models.amazon_ecr_key_integration_edit_dto import AmazonEcrKeyIntegrationEditDto as AmazonEcrKeyIntegrationEditDto
|
|
@@ -389,6 +394,7 @@ from legit_api_client.models.legit_score_requirement_group_type import LegitScor
|
|
|
389
394
|
from legit_api_client.models.legit_score_requirement_type import LegitScoreRequirementType as LegitScoreRequirementType
|
|
390
395
|
from legit_api_client.models.list_sort_direction import ListSortDirection as ListSortDirection
|
|
391
396
|
from legit_api_client.models.manual_check_dto import ManualCheckDto as ManualCheckDto
|
|
397
|
+
from legit_api_client.models.model_reputation import ModelReputation as ModelReputation
|
|
392
398
|
from legit_api_client.models.origin_type import OriginType as OriginType
|
|
393
399
|
from legit_api_client.models.package_source import PackageSource as PackageSource
|
|
394
400
|
from legit_api_client.models.package_type import PackageType as PackageType
|
legit_api_client/api/__init__.py
CHANGED
|
@@ -13,6 +13,7 @@ from legit_api_client.api.dependencies_v2_api import DependenciesV2Api
|
|
|
13
13
|
from legit_api_client.api.integrations_api import IntegrationsApi
|
|
14
14
|
from legit_api_client.api.issues_api import IssuesApi
|
|
15
15
|
from legit_api_client.api.issues_v2_api import IssuesV2Api
|
|
16
|
+
from legit_api_client.api.models_api import ModelsApi
|
|
16
17
|
from legit_api_client.api.policies_api import PoliciesApi
|
|
17
18
|
from legit_api_client.api.product_units_api import ProductUnitsApi
|
|
18
19
|
from legit_api_client.api.repositories_api import RepositoriesApi
|
|
@@ -0,0 +1,588 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Inventory
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
import warnings
|
|
15
|
+
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
|
|
16
|
+
from typing import Any, Dict, List, Optional, Tuple, Union
|
|
17
|
+
from typing_extensions import Annotated
|
|
18
|
+
|
|
19
|
+
from pydantic import Field, StrictStr
|
|
20
|
+
from typing import List, Optional
|
|
21
|
+
from typing_extensions import Annotated
|
|
22
|
+
from legit_api_client.models.ai_model_reputation_dto import AiModelReputationDto
|
|
23
|
+
|
|
24
|
+
from legit_api_client.api_client import ApiClient, RequestSerialized
|
|
25
|
+
from legit_api_client.api_response import ApiResponse
|
|
26
|
+
from legit_api_client.rest import RESTResponseType
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
class ModelsApi:
|
|
30
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
|
31
|
+
Ref: https://openapi-generator.tech
|
|
32
|
+
|
|
33
|
+
Do not edit the class manually.
|
|
34
|
+
"""
|
|
35
|
+
|
|
36
|
+
def __init__(self, api_client=None) -> None:
|
|
37
|
+
if api_client is None:
|
|
38
|
+
api_client = ApiClient.get_default()
|
|
39
|
+
self.api_client = api_client
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
@validate_call
|
|
43
|
+
def api_v20_ai_models_by_url_get(
|
|
44
|
+
self,
|
|
45
|
+
model_url: Optional[StrictStr] = None,
|
|
46
|
+
_request_timeout: Union[
|
|
47
|
+
None,
|
|
48
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
49
|
+
Tuple[
|
|
50
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
51
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
52
|
+
]
|
|
53
|
+
] = None,
|
|
54
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
55
|
+
_content_type: Optional[StrictStr] = None,
|
|
56
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
57
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
58
|
+
) -> None:
|
|
59
|
+
"""Get model reputation by hugging face url
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
:param model_url:
|
|
63
|
+
:type model_url: str
|
|
64
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
65
|
+
number provided, it will be total request
|
|
66
|
+
timeout. It can also be a pair (tuple) of
|
|
67
|
+
(connection, read) timeouts.
|
|
68
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
69
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
70
|
+
request; this effectively ignores the
|
|
71
|
+
authentication in the spec for a single request.
|
|
72
|
+
:type _request_auth: dict, optional
|
|
73
|
+
:param _content_type: force content-type for the request.
|
|
74
|
+
:type _content_type: str, Optional
|
|
75
|
+
:param _headers: set to override the headers for a single
|
|
76
|
+
request; this effectively ignores the headers
|
|
77
|
+
in the spec for a single request.
|
|
78
|
+
:type _headers: dict, optional
|
|
79
|
+
:param _host_index: set to override the host_index for a single
|
|
80
|
+
request; this effectively ignores the host_index
|
|
81
|
+
in the spec for a single request.
|
|
82
|
+
:type _host_index: int, optional
|
|
83
|
+
:return: Returns the result object.
|
|
84
|
+
""" # noqa: E501
|
|
85
|
+
|
|
86
|
+
_param = self._api_v20_ai_models_by_url_get_serialize(
|
|
87
|
+
model_url=model_url,
|
|
88
|
+
_request_auth=_request_auth,
|
|
89
|
+
_content_type=_content_type,
|
|
90
|
+
_headers=_headers,
|
|
91
|
+
_host_index=_host_index
|
|
92
|
+
)
|
|
93
|
+
|
|
94
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
95
|
+
'200': None,
|
|
96
|
+
}
|
|
97
|
+
response_data = self.api_client.call_api(
|
|
98
|
+
*_param,
|
|
99
|
+
_request_timeout=_request_timeout
|
|
100
|
+
)
|
|
101
|
+
response_data.read()
|
|
102
|
+
return self.api_client.response_deserialize(
|
|
103
|
+
response_data=response_data,
|
|
104
|
+
response_types_map=_response_types_map,
|
|
105
|
+
).data
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
@validate_call
|
|
109
|
+
def api_v20_ai_models_by_url_get_with_http_info(
|
|
110
|
+
self,
|
|
111
|
+
model_url: Optional[StrictStr] = None,
|
|
112
|
+
_request_timeout: Union[
|
|
113
|
+
None,
|
|
114
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
115
|
+
Tuple[
|
|
116
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
117
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
118
|
+
]
|
|
119
|
+
] = None,
|
|
120
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
121
|
+
_content_type: Optional[StrictStr] = None,
|
|
122
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
123
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
124
|
+
) -> ApiResponse[None]:
|
|
125
|
+
"""Get model reputation by hugging face url
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
:param model_url:
|
|
129
|
+
:type model_url: str
|
|
130
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
131
|
+
number provided, it will be total request
|
|
132
|
+
timeout. It can also be a pair (tuple) of
|
|
133
|
+
(connection, read) timeouts.
|
|
134
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
135
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
136
|
+
request; this effectively ignores the
|
|
137
|
+
authentication in the spec for a single request.
|
|
138
|
+
:type _request_auth: dict, optional
|
|
139
|
+
:param _content_type: force content-type for the request.
|
|
140
|
+
:type _content_type: str, Optional
|
|
141
|
+
:param _headers: set to override the headers for a single
|
|
142
|
+
request; this effectively ignores the headers
|
|
143
|
+
in the spec for a single request.
|
|
144
|
+
:type _headers: dict, optional
|
|
145
|
+
:param _host_index: set to override the host_index for a single
|
|
146
|
+
request; this effectively ignores the host_index
|
|
147
|
+
in the spec for a single request.
|
|
148
|
+
:type _host_index: int, optional
|
|
149
|
+
:return: Returns the result object.
|
|
150
|
+
""" # noqa: E501
|
|
151
|
+
|
|
152
|
+
_param = self._api_v20_ai_models_by_url_get_serialize(
|
|
153
|
+
model_url=model_url,
|
|
154
|
+
_request_auth=_request_auth,
|
|
155
|
+
_content_type=_content_type,
|
|
156
|
+
_headers=_headers,
|
|
157
|
+
_host_index=_host_index
|
|
158
|
+
)
|
|
159
|
+
|
|
160
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
161
|
+
'200': None,
|
|
162
|
+
}
|
|
163
|
+
response_data = self.api_client.call_api(
|
|
164
|
+
*_param,
|
|
165
|
+
_request_timeout=_request_timeout
|
|
166
|
+
)
|
|
167
|
+
response_data.read()
|
|
168
|
+
return self.api_client.response_deserialize(
|
|
169
|
+
response_data=response_data,
|
|
170
|
+
response_types_map=_response_types_map,
|
|
171
|
+
)
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
@validate_call
|
|
175
|
+
def api_v20_ai_models_by_url_get_without_preload_content(
|
|
176
|
+
self,
|
|
177
|
+
model_url: Optional[StrictStr] = None,
|
|
178
|
+
_request_timeout: Union[
|
|
179
|
+
None,
|
|
180
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
181
|
+
Tuple[
|
|
182
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
183
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
184
|
+
]
|
|
185
|
+
] = None,
|
|
186
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
187
|
+
_content_type: Optional[StrictStr] = None,
|
|
188
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
189
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
190
|
+
) -> RESTResponseType:
|
|
191
|
+
"""Get model reputation by hugging face url
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
:param model_url:
|
|
195
|
+
:type model_url: str
|
|
196
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
197
|
+
number provided, it will be total request
|
|
198
|
+
timeout. It can also be a pair (tuple) of
|
|
199
|
+
(connection, read) timeouts.
|
|
200
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
201
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
202
|
+
request; this effectively ignores the
|
|
203
|
+
authentication in the spec for a single request.
|
|
204
|
+
:type _request_auth: dict, optional
|
|
205
|
+
:param _content_type: force content-type for the request.
|
|
206
|
+
:type _content_type: str, Optional
|
|
207
|
+
:param _headers: set to override the headers for a single
|
|
208
|
+
request; this effectively ignores the headers
|
|
209
|
+
in the spec for a single request.
|
|
210
|
+
:type _headers: dict, optional
|
|
211
|
+
:param _host_index: set to override the host_index for a single
|
|
212
|
+
request; this effectively ignores the host_index
|
|
213
|
+
in the spec for a single request.
|
|
214
|
+
:type _host_index: int, optional
|
|
215
|
+
:return: Returns the result object.
|
|
216
|
+
""" # noqa: E501
|
|
217
|
+
|
|
218
|
+
_param = self._api_v20_ai_models_by_url_get_serialize(
|
|
219
|
+
model_url=model_url,
|
|
220
|
+
_request_auth=_request_auth,
|
|
221
|
+
_content_type=_content_type,
|
|
222
|
+
_headers=_headers,
|
|
223
|
+
_host_index=_host_index
|
|
224
|
+
)
|
|
225
|
+
|
|
226
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
227
|
+
'200': None,
|
|
228
|
+
}
|
|
229
|
+
response_data = self.api_client.call_api(
|
|
230
|
+
*_param,
|
|
231
|
+
_request_timeout=_request_timeout
|
|
232
|
+
)
|
|
233
|
+
return response_data.response
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
def _api_v20_ai_models_by_url_get_serialize(
|
|
237
|
+
self,
|
|
238
|
+
model_url,
|
|
239
|
+
_request_auth,
|
|
240
|
+
_content_type,
|
|
241
|
+
_headers,
|
|
242
|
+
_host_index,
|
|
243
|
+
) -> RequestSerialized:
|
|
244
|
+
|
|
245
|
+
_host = None
|
|
246
|
+
|
|
247
|
+
_collection_formats: Dict[str, str] = {
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
_path_params: Dict[str, str] = {}
|
|
251
|
+
_query_params: List[Tuple[str, str]] = []
|
|
252
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
253
|
+
_form_params: List[Tuple[str, str]] = []
|
|
254
|
+
_files: Dict[
|
|
255
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
256
|
+
] = {}
|
|
257
|
+
_body_params: Optional[bytes] = None
|
|
258
|
+
|
|
259
|
+
# process the path parameters
|
|
260
|
+
# process the query parameters
|
|
261
|
+
if model_url is not None:
|
|
262
|
+
|
|
263
|
+
_query_params.append(('modelUrl', model_url))
|
|
264
|
+
|
|
265
|
+
# process the header parameters
|
|
266
|
+
# process the form parameters
|
|
267
|
+
# process the body parameter
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
# authentication setting
|
|
273
|
+
_auth_settings: List[str] = [
|
|
274
|
+
'BearerAuth'
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
return self.api_client.param_serialize(
|
|
278
|
+
method='GET',
|
|
279
|
+
resource_path='/api/v2.0/ai-models/by-url',
|
|
280
|
+
path_params=_path_params,
|
|
281
|
+
query_params=_query_params,
|
|
282
|
+
header_params=_header_params,
|
|
283
|
+
body=_body_params,
|
|
284
|
+
post_params=_form_params,
|
|
285
|
+
files=_files,
|
|
286
|
+
auth_settings=_auth_settings,
|
|
287
|
+
collection_formats=_collection_formats,
|
|
288
|
+
_host=_host,
|
|
289
|
+
_request_auth=_request_auth
|
|
290
|
+
)
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
@validate_call
|
|
296
|
+
def api_v20_ai_models_get(
|
|
297
|
+
self,
|
|
298
|
+
page_number: Optional[Annotated[int, Field(le=2147483647, strict=True, ge=1)]] = None,
|
|
299
|
+
page_size: Optional[Annotated[int, Field(le=100, strict=True, ge=1)]] = None,
|
|
300
|
+
search: Optional[StrictStr] = None,
|
|
301
|
+
_request_timeout: Union[
|
|
302
|
+
None,
|
|
303
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
304
|
+
Tuple[
|
|
305
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
306
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
307
|
+
]
|
|
308
|
+
] = None,
|
|
309
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
310
|
+
_content_type: Optional[StrictStr] = None,
|
|
311
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
312
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
313
|
+
) -> List[AiModelReputationDto]:
|
|
314
|
+
"""Get model reputation by name
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
:param page_number:
|
|
318
|
+
:type page_number: int
|
|
319
|
+
:param page_size:
|
|
320
|
+
:type page_size: int
|
|
321
|
+
:param search:
|
|
322
|
+
:type search: str
|
|
323
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
324
|
+
number provided, it will be total request
|
|
325
|
+
timeout. It can also be a pair (tuple) of
|
|
326
|
+
(connection, read) timeouts.
|
|
327
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
328
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
329
|
+
request; this effectively ignores the
|
|
330
|
+
authentication in the spec for a single request.
|
|
331
|
+
:type _request_auth: dict, optional
|
|
332
|
+
:param _content_type: force content-type for the request.
|
|
333
|
+
:type _content_type: str, Optional
|
|
334
|
+
:param _headers: set to override the headers for a single
|
|
335
|
+
request; this effectively ignores the headers
|
|
336
|
+
in the spec for a single request.
|
|
337
|
+
:type _headers: dict, optional
|
|
338
|
+
:param _host_index: set to override the host_index for a single
|
|
339
|
+
request; this effectively ignores the host_index
|
|
340
|
+
in the spec for a single request.
|
|
341
|
+
:type _host_index: int, optional
|
|
342
|
+
:return: Returns the result object.
|
|
343
|
+
""" # noqa: E501
|
|
344
|
+
|
|
345
|
+
_param = self._api_v20_ai_models_get_serialize(
|
|
346
|
+
page_number=page_number,
|
|
347
|
+
page_size=page_size,
|
|
348
|
+
search=search,
|
|
349
|
+
_request_auth=_request_auth,
|
|
350
|
+
_content_type=_content_type,
|
|
351
|
+
_headers=_headers,
|
|
352
|
+
_host_index=_host_index
|
|
353
|
+
)
|
|
354
|
+
|
|
355
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
356
|
+
'200': "List[AiModelReputationDto]",
|
|
357
|
+
}
|
|
358
|
+
response_data = self.api_client.call_api(
|
|
359
|
+
*_param,
|
|
360
|
+
_request_timeout=_request_timeout
|
|
361
|
+
)
|
|
362
|
+
response_data.read()
|
|
363
|
+
return self.api_client.response_deserialize(
|
|
364
|
+
response_data=response_data,
|
|
365
|
+
response_types_map=_response_types_map,
|
|
366
|
+
).data
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
@validate_call
|
|
370
|
+
def api_v20_ai_models_get_with_http_info(
|
|
371
|
+
self,
|
|
372
|
+
page_number: Optional[Annotated[int, Field(le=2147483647, strict=True, ge=1)]] = None,
|
|
373
|
+
page_size: Optional[Annotated[int, Field(le=100, strict=True, ge=1)]] = None,
|
|
374
|
+
search: Optional[StrictStr] = None,
|
|
375
|
+
_request_timeout: Union[
|
|
376
|
+
None,
|
|
377
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
378
|
+
Tuple[
|
|
379
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
380
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
381
|
+
]
|
|
382
|
+
] = None,
|
|
383
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
384
|
+
_content_type: Optional[StrictStr] = None,
|
|
385
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
386
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
387
|
+
) -> ApiResponse[List[AiModelReputationDto]]:
|
|
388
|
+
"""Get model reputation by name
|
|
389
|
+
|
|
390
|
+
|
|
391
|
+
:param page_number:
|
|
392
|
+
:type page_number: int
|
|
393
|
+
:param page_size:
|
|
394
|
+
:type page_size: int
|
|
395
|
+
:param search:
|
|
396
|
+
:type search: str
|
|
397
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
398
|
+
number provided, it will be total request
|
|
399
|
+
timeout. It can also be a pair (tuple) of
|
|
400
|
+
(connection, read) timeouts.
|
|
401
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
402
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
403
|
+
request; this effectively ignores the
|
|
404
|
+
authentication in the spec for a single request.
|
|
405
|
+
:type _request_auth: dict, optional
|
|
406
|
+
:param _content_type: force content-type for the request.
|
|
407
|
+
:type _content_type: str, Optional
|
|
408
|
+
:param _headers: set to override the headers for a single
|
|
409
|
+
request; this effectively ignores the headers
|
|
410
|
+
in the spec for a single request.
|
|
411
|
+
:type _headers: dict, optional
|
|
412
|
+
:param _host_index: set to override the host_index for a single
|
|
413
|
+
request; this effectively ignores the host_index
|
|
414
|
+
in the spec for a single request.
|
|
415
|
+
:type _host_index: int, optional
|
|
416
|
+
:return: Returns the result object.
|
|
417
|
+
""" # noqa: E501
|
|
418
|
+
|
|
419
|
+
_param = self._api_v20_ai_models_get_serialize(
|
|
420
|
+
page_number=page_number,
|
|
421
|
+
page_size=page_size,
|
|
422
|
+
search=search,
|
|
423
|
+
_request_auth=_request_auth,
|
|
424
|
+
_content_type=_content_type,
|
|
425
|
+
_headers=_headers,
|
|
426
|
+
_host_index=_host_index
|
|
427
|
+
)
|
|
428
|
+
|
|
429
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
430
|
+
'200': "List[AiModelReputationDto]",
|
|
431
|
+
}
|
|
432
|
+
response_data = self.api_client.call_api(
|
|
433
|
+
*_param,
|
|
434
|
+
_request_timeout=_request_timeout
|
|
435
|
+
)
|
|
436
|
+
response_data.read()
|
|
437
|
+
return self.api_client.response_deserialize(
|
|
438
|
+
response_data=response_data,
|
|
439
|
+
response_types_map=_response_types_map,
|
|
440
|
+
)
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
@validate_call
|
|
444
|
+
def api_v20_ai_models_get_without_preload_content(
|
|
445
|
+
self,
|
|
446
|
+
page_number: Optional[Annotated[int, Field(le=2147483647, strict=True, ge=1)]] = None,
|
|
447
|
+
page_size: Optional[Annotated[int, Field(le=100, strict=True, ge=1)]] = None,
|
|
448
|
+
search: Optional[StrictStr] = None,
|
|
449
|
+
_request_timeout: Union[
|
|
450
|
+
None,
|
|
451
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
452
|
+
Tuple[
|
|
453
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
454
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
455
|
+
]
|
|
456
|
+
] = None,
|
|
457
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
458
|
+
_content_type: Optional[StrictStr] = None,
|
|
459
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
460
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
461
|
+
) -> RESTResponseType:
|
|
462
|
+
"""Get model reputation by name
|
|
463
|
+
|
|
464
|
+
|
|
465
|
+
:param page_number:
|
|
466
|
+
:type page_number: int
|
|
467
|
+
:param page_size:
|
|
468
|
+
:type page_size: int
|
|
469
|
+
:param search:
|
|
470
|
+
:type search: str
|
|
471
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
472
|
+
number provided, it will be total request
|
|
473
|
+
timeout. It can also be a pair (tuple) of
|
|
474
|
+
(connection, read) timeouts.
|
|
475
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
476
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
477
|
+
request; this effectively ignores the
|
|
478
|
+
authentication in the spec for a single request.
|
|
479
|
+
:type _request_auth: dict, optional
|
|
480
|
+
:param _content_type: force content-type for the request.
|
|
481
|
+
:type _content_type: str, Optional
|
|
482
|
+
:param _headers: set to override the headers for a single
|
|
483
|
+
request; this effectively ignores the headers
|
|
484
|
+
in the spec for a single request.
|
|
485
|
+
:type _headers: dict, optional
|
|
486
|
+
:param _host_index: set to override the host_index for a single
|
|
487
|
+
request; this effectively ignores the host_index
|
|
488
|
+
in the spec for a single request.
|
|
489
|
+
:type _host_index: int, optional
|
|
490
|
+
:return: Returns the result object.
|
|
491
|
+
""" # noqa: E501
|
|
492
|
+
|
|
493
|
+
_param = self._api_v20_ai_models_get_serialize(
|
|
494
|
+
page_number=page_number,
|
|
495
|
+
page_size=page_size,
|
|
496
|
+
search=search,
|
|
497
|
+
_request_auth=_request_auth,
|
|
498
|
+
_content_type=_content_type,
|
|
499
|
+
_headers=_headers,
|
|
500
|
+
_host_index=_host_index
|
|
501
|
+
)
|
|
502
|
+
|
|
503
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
504
|
+
'200': "List[AiModelReputationDto]",
|
|
505
|
+
}
|
|
506
|
+
response_data = self.api_client.call_api(
|
|
507
|
+
*_param,
|
|
508
|
+
_request_timeout=_request_timeout
|
|
509
|
+
)
|
|
510
|
+
return response_data.response
|
|
511
|
+
|
|
512
|
+
|
|
513
|
+
def _api_v20_ai_models_get_serialize(
|
|
514
|
+
self,
|
|
515
|
+
page_number,
|
|
516
|
+
page_size,
|
|
517
|
+
search,
|
|
518
|
+
_request_auth,
|
|
519
|
+
_content_type,
|
|
520
|
+
_headers,
|
|
521
|
+
_host_index,
|
|
522
|
+
) -> RequestSerialized:
|
|
523
|
+
|
|
524
|
+
_host = None
|
|
525
|
+
|
|
526
|
+
_collection_formats: Dict[str, str] = {
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
_path_params: Dict[str, str] = {}
|
|
530
|
+
_query_params: List[Tuple[str, str]] = []
|
|
531
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
532
|
+
_form_params: List[Tuple[str, str]] = []
|
|
533
|
+
_files: Dict[
|
|
534
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
535
|
+
] = {}
|
|
536
|
+
_body_params: Optional[bytes] = None
|
|
537
|
+
|
|
538
|
+
# process the path parameters
|
|
539
|
+
# process the query parameters
|
|
540
|
+
if page_number is not None:
|
|
541
|
+
|
|
542
|
+
_query_params.append(('pageNumber', page_number))
|
|
543
|
+
|
|
544
|
+
if page_size is not None:
|
|
545
|
+
|
|
546
|
+
_query_params.append(('pageSize', page_size))
|
|
547
|
+
|
|
548
|
+
if search is not None:
|
|
549
|
+
|
|
550
|
+
_query_params.append(('search', search))
|
|
551
|
+
|
|
552
|
+
# process the header parameters
|
|
553
|
+
# process the form parameters
|
|
554
|
+
# process the body parameter
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
# set the HTTP header `Accept`
|
|
558
|
+
if 'Accept' not in _header_params:
|
|
559
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
560
|
+
[
|
|
561
|
+
'text/plain',
|
|
562
|
+
'application/json',
|
|
563
|
+
'text/json'
|
|
564
|
+
]
|
|
565
|
+
)
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
# authentication setting
|
|
569
|
+
_auth_settings: List[str] = [
|
|
570
|
+
'BearerAuth'
|
|
571
|
+
]
|
|
572
|
+
|
|
573
|
+
return self.api_client.param_serialize(
|
|
574
|
+
method='GET',
|
|
575
|
+
resource_path='/api/v2.0/ai-models',
|
|
576
|
+
path_params=_path_params,
|
|
577
|
+
query_params=_query_params,
|
|
578
|
+
header_params=_header_params,
|
|
579
|
+
body=_body_params,
|
|
580
|
+
post_params=_form_params,
|
|
581
|
+
files=_files,
|
|
582
|
+
auth_settings=_auth_settings,
|
|
583
|
+
collection_formats=_collection_formats,
|
|
584
|
+
_host=_host,
|
|
585
|
+
_request_auth=_request_auth
|
|
586
|
+
)
|
|
587
|
+
|
|
588
|
+
|
|
@@ -659,6 +659,7 @@ class SDLCAssetsApi:
|
|
|
659
659
|
self,
|
|
660
660
|
show_only_integrated: Optional[StrictBool] = None,
|
|
661
661
|
product_ids: Optional[List[StrictStr]] = None,
|
|
662
|
+
integration_ids: Optional[List[StrictStr]] = None,
|
|
662
663
|
_request_timeout: Union[
|
|
663
664
|
None,
|
|
664
665
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -674,12 +675,14 @@ class SDLCAssetsApi:
|
|
|
674
675
|
) -> SdlcAssetGraphDto:
|
|
675
676
|
"""Get SDLC asset graph
|
|
676
677
|
|
|
677
|
-
Each node in the graph is returned as an object in the `Assets` array. It is uniquely identified by the attributes `Id` and `Type`. The edges are represented by the `Links` array. The source of each link is `SourceId` and `SourceType`. The target of each link is `TargetId` and `TargetType`. The `IntegrationId` is not enough to identify a node, because it may apply to several nodes on the graph is some cases. For example is GitHub is used both as SCM and CI (GitHub Actions). To view the SDLC graph in the context of a Product Unit, use the `ProductIds` filter. The response will include only integrations associated with those Product Units - determined by the products’ assets (e.g., repositories, containers) - and will return the induced subgraphs for those integrations. This reveals the full SDLC graph a Product Unit is exposed to, including nodes not directly owned by its assets but connected through other assets within the same integration. The Graph returned by this endpoint is more detailed than the Discovery Graph on the Legit Platform. When viewing the graph on the Legit Platform some nodes are aggregated into a single node (for example - all Amazon ECRs are displayed as a single node on the Legit Platform).
|
|
678
|
+
Each node in the graph is returned as an object in the `Assets` array. It is uniquely identified by the attributes `Id` and `Type`. The edges are represented by the `Links` array. The source of each link is `SourceId` and `SourceType`. The target of each link is `TargetId` and `TargetType`. The `IntegrationId` is not enough to identify a node, because it may apply to several nodes on the graph is some cases. For example is GitHub is used both as SCM and CI (GitHub Actions). To view the SDLC graph in the context of a Product Unit, use the `ProductIds` filter. The response will include only integrations associated with those Product Units - determined by the products’ assets (e.g., repositories, containers) - and will return the induced subgraphs for those integrations. This reveals the full SDLC graph a Product Unit is exposed to, including nodes not directly owned by its assets but connected through other assets within the same integration. To view the SDLC graph in the context of specific integrations, use the `IntegrationIds` filter. The response will include only those specified integrations and their associated nodes and edges. The Graph returned by this endpoint is more detailed than the Discovery Graph on the Legit Platform. When viewing the graph on the Legit Platform some nodes are aggregated into a single node (for example - all Amazon ECRs are displayed as a single node on the Legit Platform).
|
|
678
679
|
|
|
679
680
|
:param show_only_integrated:
|
|
680
681
|
:type show_only_integrated: bool
|
|
681
682
|
:param product_ids:
|
|
682
683
|
:type product_ids: List[str]
|
|
684
|
+
:param integration_ids:
|
|
685
|
+
:type integration_ids: List[str]
|
|
683
686
|
:param _request_timeout: timeout setting for this request. If one
|
|
684
687
|
number provided, it will be total request
|
|
685
688
|
timeout. It can also be a pair (tuple) of
|
|
@@ -705,6 +708,7 @@ class SDLCAssetsApi:
|
|
|
705
708
|
_param = self._api_v10_sdlc_assets_graph_get_serialize(
|
|
706
709
|
show_only_integrated=show_only_integrated,
|
|
707
710
|
product_ids=product_ids,
|
|
711
|
+
integration_ids=integration_ids,
|
|
708
712
|
_request_auth=_request_auth,
|
|
709
713
|
_content_type=_content_type,
|
|
710
714
|
_headers=_headers,
|
|
@@ -731,6 +735,7 @@ class SDLCAssetsApi:
|
|
|
731
735
|
self,
|
|
732
736
|
show_only_integrated: Optional[StrictBool] = None,
|
|
733
737
|
product_ids: Optional[List[StrictStr]] = None,
|
|
738
|
+
integration_ids: Optional[List[StrictStr]] = None,
|
|
734
739
|
_request_timeout: Union[
|
|
735
740
|
None,
|
|
736
741
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -746,12 +751,14 @@ class SDLCAssetsApi:
|
|
|
746
751
|
) -> ApiResponse[SdlcAssetGraphDto]:
|
|
747
752
|
"""Get SDLC asset graph
|
|
748
753
|
|
|
749
|
-
Each node in the graph is returned as an object in the `Assets` array. It is uniquely identified by the attributes `Id` and `Type`. The edges are represented by the `Links` array. The source of each link is `SourceId` and `SourceType`. The target of each link is `TargetId` and `TargetType`. The `IntegrationId` is not enough to identify a node, because it may apply to several nodes on the graph is some cases. For example is GitHub is used both as SCM and CI (GitHub Actions). To view the SDLC graph in the context of a Product Unit, use the `ProductIds` filter. The response will include only integrations associated with those Product Units - determined by the products’ assets (e.g., repositories, containers) - and will return the induced subgraphs for those integrations. This reveals the full SDLC graph a Product Unit is exposed to, including nodes not directly owned by its assets but connected through other assets within the same integration. The Graph returned by this endpoint is more detailed than the Discovery Graph on the Legit Platform. When viewing the graph on the Legit Platform some nodes are aggregated into a single node (for example - all Amazon ECRs are displayed as a single node on the Legit Platform).
|
|
754
|
+
Each node in the graph is returned as an object in the `Assets` array. It is uniquely identified by the attributes `Id` and `Type`. The edges are represented by the `Links` array. The source of each link is `SourceId` and `SourceType`. The target of each link is `TargetId` and `TargetType`. The `IntegrationId` is not enough to identify a node, because it may apply to several nodes on the graph is some cases. For example is GitHub is used both as SCM and CI (GitHub Actions). To view the SDLC graph in the context of a Product Unit, use the `ProductIds` filter. The response will include only integrations associated with those Product Units - determined by the products’ assets (e.g., repositories, containers) - and will return the induced subgraphs for those integrations. This reveals the full SDLC graph a Product Unit is exposed to, including nodes not directly owned by its assets but connected through other assets within the same integration. To view the SDLC graph in the context of specific integrations, use the `IntegrationIds` filter. The response will include only those specified integrations and their associated nodes and edges. The Graph returned by this endpoint is more detailed than the Discovery Graph on the Legit Platform. When viewing the graph on the Legit Platform some nodes are aggregated into a single node (for example - all Amazon ECRs are displayed as a single node on the Legit Platform).
|
|
750
755
|
|
|
751
756
|
:param show_only_integrated:
|
|
752
757
|
:type show_only_integrated: bool
|
|
753
758
|
:param product_ids:
|
|
754
759
|
:type product_ids: List[str]
|
|
760
|
+
:param integration_ids:
|
|
761
|
+
:type integration_ids: List[str]
|
|
755
762
|
:param _request_timeout: timeout setting for this request. If one
|
|
756
763
|
number provided, it will be total request
|
|
757
764
|
timeout. It can also be a pair (tuple) of
|
|
@@ -777,6 +784,7 @@ class SDLCAssetsApi:
|
|
|
777
784
|
_param = self._api_v10_sdlc_assets_graph_get_serialize(
|
|
778
785
|
show_only_integrated=show_only_integrated,
|
|
779
786
|
product_ids=product_ids,
|
|
787
|
+
integration_ids=integration_ids,
|
|
780
788
|
_request_auth=_request_auth,
|
|
781
789
|
_content_type=_content_type,
|
|
782
790
|
_headers=_headers,
|
|
@@ -803,6 +811,7 @@ class SDLCAssetsApi:
|
|
|
803
811
|
self,
|
|
804
812
|
show_only_integrated: Optional[StrictBool] = None,
|
|
805
813
|
product_ids: Optional[List[StrictStr]] = None,
|
|
814
|
+
integration_ids: Optional[List[StrictStr]] = None,
|
|
806
815
|
_request_timeout: Union[
|
|
807
816
|
None,
|
|
808
817
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -818,12 +827,14 @@ class SDLCAssetsApi:
|
|
|
818
827
|
) -> RESTResponseType:
|
|
819
828
|
"""Get SDLC asset graph
|
|
820
829
|
|
|
821
|
-
Each node in the graph is returned as an object in the `Assets` array. It is uniquely identified by the attributes `Id` and `Type`. The edges are represented by the `Links` array. The source of each link is `SourceId` and `SourceType`. The target of each link is `TargetId` and `TargetType`. The `IntegrationId` is not enough to identify a node, because it may apply to several nodes on the graph is some cases. For example is GitHub is used both as SCM and CI (GitHub Actions). To view the SDLC graph in the context of a Product Unit, use the `ProductIds` filter. The response will include only integrations associated with those Product Units - determined by the products’ assets (e.g., repositories, containers) - and will return the induced subgraphs for those integrations. This reveals the full SDLC graph a Product Unit is exposed to, including nodes not directly owned by its assets but connected through other assets within the same integration. The Graph returned by this endpoint is more detailed than the Discovery Graph on the Legit Platform. When viewing the graph on the Legit Platform some nodes are aggregated into a single node (for example - all Amazon ECRs are displayed as a single node on the Legit Platform).
|
|
830
|
+
Each node in the graph is returned as an object in the `Assets` array. It is uniquely identified by the attributes `Id` and `Type`. The edges are represented by the `Links` array. The source of each link is `SourceId` and `SourceType`. The target of each link is `TargetId` and `TargetType`. The `IntegrationId` is not enough to identify a node, because it may apply to several nodes on the graph is some cases. For example is GitHub is used both as SCM and CI (GitHub Actions). To view the SDLC graph in the context of a Product Unit, use the `ProductIds` filter. The response will include only integrations associated with those Product Units - determined by the products’ assets (e.g., repositories, containers) - and will return the induced subgraphs for those integrations. This reveals the full SDLC graph a Product Unit is exposed to, including nodes not directly owned by its assets but connected through other assets within the same integration. To view the SDLC graph in the context of specific integrations, use the `IntegrationIds` filter. The response will include only those specified integrations and their associated nodes and edges. The Graph returned by this endpoint is more detailed than the Discovery Graph on the Legit Platform. When viewing the graph on the Legit Platform some nodes are aggregated into a single node (for example - all Amazon ECRs are displayed as a single node on the Legit Platform).
|
|
822
831
|
|
|
823
832
|
:param show_only_integrated:
|
|
824
833
|
:type show_only_integrated: bool
|
|
825
834
|
:param product_ids:
|
|
826
835
|
:type product_ids: List[str]
|
|
836
|
+
:param integration_ids:
|
|
837
|
+
:type integration_ids: List[str]
|
|
827
838
|
:param _request_timeout: timeout setting for this request. If one
|
|
828
839
|
number provided, it will be total request
|
|
829
840
|
timeout. It can also be a pair (tuple) of
|
|
@@ -849,6 +860,7 @@ class SDLCAssetsApi:
|
|
|
849
860
|
_param = self._api_v10_sdlc_assets_graph_get_serialize(
|
|
850
861
|
show_only_integrated=show_only_integrated,
|
|
851
862
|
product_ids=product_ids,
|
|
863
|
+
integration_ids=integration_ids,
|
|
852
864
|
_request_auth=_request_auth,
|
|
853
865
|
_content_type=_content_type,
|
|
854
866
|
_headers=_headers,
|
|
@@ -870,6 +882,7 @@ class SDLCAssetsApi:
|
|
|
870
882
|
self,
|
|
871
883
|
show_only_integrated,
|
|
872
884
|
product_ids,
|
|
885
|
+
integration_ids,
|
|
873
886
|
_request_auth,
|
|
874
887
|
_content_type,
|
|
875
888
|
_headers,
|
|
@@ -880,6 +893,7 @@ class SDLCAssetsApi:
|
|
|
880
893
|
|
|
881
894
|
_collection_formats: Dict[str, str] = {
|
|
882
895
|
'productIds': 'multi',
|
|
896
|
+
'integrationIds': 'multi',
|
|
883
897
|
}
|
|
884
898
|
|
|
885
899
|
_path_params: Dict[str, str] = {}
|
|
@@ -901,6 +915,10 @@ class SDLCAssetsApi:
|
|
|
901
915
|
|
|
902
916
|
_query_params.append(('productIds', product_ids))
|
|
903
917
|
|
|
918
|
+
if integration_ids is not None:
|
|
919
|
+
|
|
920
|
+
_query_params.append(('integrationIds', integration_ids))
|
|
921
|
+
|
|
904
922
|
# process the header parameters
|
|
905
923
|
# process the form parameters
|
|
906
924
|
# process the body parameter
|
legit_api_client/api_client.py
CHANGED
|
@@ -91,7 +91,7 @@ class ApiClient:
|
|
|
91
91
|
self.default_headers[header_name] = header_value
|
|
92
92
|
self.cookie = cookie
|
|
93
93
|
# Set default User-Agent.
|
|
94
|
-
self.user_agent = 'OpenAPI-Generator/1.1.
|
|
94
|
+
self.user_agent = 'OpenAPI-Generator/1.1.4613/python'
|
|
95
95
|
self.client_side_validation = configuration.client_side_validation
|
|
96
96
|
|
|
97
97
|
def __enter__(self):
|
|
@@ -516,7 +516,7 @@ class Configuration:
|
|
|
516
516
|
"OS: {env}\n"\
|
|
517
517
|
"Python Version: {pyversion}\n"\
|
|
518
518
|
"Version of the API: 1.0\n"\
|
|
519
|
-
"SDK Package Version: 1.1.
|
|
519
|
+
"SDK Package Version: 1.1.4613".\
|
|
520
520
|
format(env=sys.platform, pyversion=sys.version)
|
|
521
521
|
|
|
522
522
|
def get_host_settings(self) -> List[HostSetting]:
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
|
|
15
15
|
# import models into model package
|
|
16
16
|
from legit_api_client.models.add_issue_comment_dto import AddIssueCommentDto
|
|
17
|
+
from legit_api_client.models.ai_model_reputation_dto import AiModelReputationDto
|
|
17
18
|
from legit_api_client.models.ai_secret_validation_result import AiSecretValidationResult
|
|
18
19
|
from legit_api_client.models.amazon_ecr_key_integration_create_dto import AmazonEcrKeyIntegrationCreateDto
|
|
19
20
|
from legit_api_client.models.amazon_ecr_key_integration_edit_dto import AmazonEcrKeyIntegrationEditDto
|
|
@@ -135,6 +136,7 @@ from legit_api_client.models.legit_score_requirement_group_type import LegitScor
|
|
|
135
136
|
from legit_api_client.models.legit_score_requirement_type import LegitScoreRequirementType
|
|
136
137
|
from legit_api_client.models.list_sort_direction import ListSortDirection
|
|
137
138
|
from legit_api_client.models.manual_check_dto import ManualCheckDto
|
|
139
|
+
from legit_api_client.models.model_reputation import ModelReputation
|
|
138
140
|
from legit_api_client.models.origin_type import OriginType
|
|
139
141
|
from legit_api_client.models.package_source import PackageSource
|
|
140
142
|
from legit_api_client.models.package_type import PackageType
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Inventory
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 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
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
21
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
22
|
+
from legit_api_client.models.model_reputation import ModelReputation
|
|
23
|
+
from typing import Optional, Set
|
|
24
|
+
from typing_extensions import Self
|
|
25
|
+
|
|
26
|
+
class AiModelReputationDto(BaseModel):
|
|
27
|
+
"""
|
|
28
|
+
AiModelReputationDto
|
|
29
|
+
""" # noqa: E501
|
|
30
|
+
model_reputation: Optional[ModelReputation] = Field(default=None, alias="modelReputation")
|
|
31
|
+
reputation_breakdown: Optional[StrictStr] = Field(default=None, alias="reputationBreakdown")
|
|
32
|
+
name: Optional[StrictStr] = None
|
|
33
|
+
__properties: ClassVar[List[str]] = ["modelReputation", "reputationBreakdown", "name"]
|
|
34
|
+
|
|
35
|
+
model_config = ConfigDict(
|
|
36
|
+
populate_by_name=True,
|
|
37
|
+
validate_assignment=True,
|
|
38
|
+
protected_namespaces=(),
|
|
39
|
+
)
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
def to_str(self) -> str:
|
|
43
|
+
"""Returns the string representation of the model using alias"""
|
|
44
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
45
|
+
|
|
46
|
+
def to_json(self) -> str:
|
|
47
|
+
"""Returns the JSON representation of the model using alias"""
|
|
48
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
49
|
+
return json.dumps(self.to_dict())
|
|
50
|
+
|
|
51
|
+
@classmethod
|
|
52
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
53
|
+
"""Create an instance of AiModelReputationDto from a JSON string"""
|
|
54
|
+
return cls.from_dict(json.loads(json_str))
|
|
55
|
+
|
|
56
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
57
|
+
"""Return the dictionary representation of the model using alias.
|
|
58
|
+
|
|
59
|
+
This has the following differences from calling pydantic's
|
|
60
|
+
`self.model_dump(by_alias=True)`:
|
|
61
|
+
|
|
62
|
+
* `None` is only added to the output dict for nullable fields that
|
|
63
|
+
were set at model initialization. Other fields with value `None`
|
|
64
|
+
are ignored.
|
|
65
|
+
"""
|
|
66
|
+
excluded_fields: Set[str] = set([
|
|
67
|
+
])
|
|
68
|
+
|
|
69
|
+
_dict = self.model_dump(
|
|
70
|
+
by_alias=True,
|
|
71
|
+
exclude=excluded_fields,
|
|
72
|
+
exclude_none=True,
|
|
73
|
+
)
|
|
74
|
+
# set to None if reputation_breakdown (nullable) is None
|
|
75
|
+
# and model_fields_set contains the field
|
|
76
|
+
if self.reputation_breakdown is None and "reputation_breakdown" in self.model_fields_set:
|
|
77
|
+
_dict['reputationBreakdown'] = None
|
|
78
|
+
|
|
79
|
+
# set to None if name (nullable) is None
|
|
80
|
+
# and model_fields_set contains the field
|
|
81
|
+
if self.name is None and "name" in self.model_fields_set:
|
|
82
|
+
_dict['name'] = None
|
|
83
|
+
|
|
84
|
+
return _dict
|
|
85
|
+
|
|
86
|
+
@classmethod
|
|
87
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
88
|
+
"""Create an instance of AiModelReputationDto from a dict"""
|
|
89
|
+
if obj is None:
|
|
90
|
+
return None
|
|
91
|
+
|
|
92
|
+
if not isinstance(obj, dict):
|
|
93
|
+
return cls.model_validate(obj)
|
|
94
|
+
|
|
95
|
+
_obj = cls.model_validate({
|
|
96
|
+
"modelReputation": obj.get("modelReputation"),
|
|
97
|
+
"reputationBreakdown": obj.get("reputationBreakdown"),
|
|
98
|
+
"name": obj.get("name")
|
|
99
|
+
})
|
|
100
|
+
return _obj
|
|
101
|
+
|
|
102
|
+
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Inventory
|
|
5
|
+
|
|
6
|
+
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 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 json
|
|
17
|
+
from enum import Enum
|
|
18
|
+
from typing_extensions import Self
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
class ModelReputation(str, Enum):
|
|
22
|
+
"""
|
|
23
|
+
ModelReputation
|
|
24
|
+
"""
|
|
25
|
+
|
|
26
|
+
"""
|
|
27
|
+
allowed enum values
|
|
28
|
+
"""
|
|
29
|
+
NONE = 'None'
|
|
30
|
+
LOW = 'Low'
|
|
31
|
+
MEDIUM = 'Medium'
|
|
32
|
+
HIGH = 'High'
|
|
33
|
+
|
|
34
|
+
@classmethod
|
|
35
|
+
def from_json(cls, json_str: str) -> Self:
|
|
36
|
+
"""Create an instance of ModelReputation from a JSON string"""
|
|
37
|
+
return cls(json.loads(json_str))
|
|
38
|
+
|
|
39
|
+
|
|
@@ -48,6 +48,8 @@ class ProductConnectionType(str, Enum):
|
|
|
48
48
|
CLOUDCOMPUTERESOURCE = 'CloudComputeResource'
|
|
49
49
|
CIWORKFLOWS = 'CiWorkflows'
|
|
50
50
|
CIWORKFLOWSQUERY = 'CiWorkflowsQuery'
|
|
51
|
+
CONTAINERIMAGE = 'ContainerImage'
|
|
52
|
+
HOST = 'Host'
|
|
51
53
|
NESTEDPRODUCTREPOSITORY = 'NestedProductRepository'
|
|
52
54
|
|
|
53
55
|
@classmethod
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: legit_api_client
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.4613
|
|
4
4
|
Summary: Inventory
|
|
5
5
|
Home-page:
|
|
6
6
|
Author: OpenAPI Generator community
|
|
@@ -22,7 +22,7 @@ No description provided (generated by Openapi Generator https://github.com/opena
|
|
|
22
22
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
23
23
|
|
|
24
24
|
- API version: 1.0
|
|
25
|
-
- Package version: 1.1.
|
|
25
|
+
- Package version: 1.1.4613
|
|
26
26
|
- Generator version: 7.18.0
|
|
27
27
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
28
28
|
|
|
@@ -175,6 +175,8 @@ Class | Method | HTTP request | Description
|
|
|
175
175
|
*IssuesV2Api* | [**get_issues_count**](docs/IssuesV2Api.md#get_issues_count) | **GET** /api/v2.0/issues/count | Get the issues count
|
|
176
176
|
*IssuesV2Api* | [**get_issues_v2**](docs/IssuesV2Api.md#get_issues_v2) | **GET** /api/v2.0/issues | Get issues
|
|
177
177
|
*IssuesV2Api* | [**get_issues_vulnerabilities**](docs/IssuesV2Api.md#get_issues_vulnerabilities) | **GET** /api/v2.0/issues/vulnerabilities | Get the vulnerabilities of the given issues
|
|
178
|
+
*ModelsApi* | [**api_v20_ai_models_by_url_get**](docs/ModelsApi.md#api_v20_ai_models_by_url_get) | **GET** /api/v2.0/ai-models/by-url | Get model reputation by hugging face url
|
|
179
|
+
*ModelsApi* | [**api_v20_ai_models_get**](docs/ModelsApi.md#api_v20_ai_models_get) | **GET** /api/v2.0/ai-models | Get model reputation by name
|
|
178
180
|
*PoliciesApi* | [**api_v10_policies_get**](docs/PoliciesApi.md#api_v10_policies_get) | **GET** /api/v1.0/policies | Get Policies
|
|
179
181
|
*PoliciesApi* | [**get_policy_by_id**](docs/PoliciesApi.md#get_policy_by_id) | **GET** /api/v1.0/policies/{id} | Get Policy by id
|
|
180
182
|
*PoliciesApi* | [**get_policy_by_name**](docs/PoliciesApi.md#get_policy_by_name) | **GET** /api/v1.0/policies/by-name/{name} | Get by Policy name
|
|
@@ -218,6 +220,7 @@ Class | Method | HTTP request | Description
|
|
|
218
220
|
## Documentation For Models
|
|
219
221
|
|
|
220
222
|
- [AddIssueCommentDto](docs/AddIssueCommentDto.md)
|
|
223
|
+
- [AiModelReputationDto](docs/AiModelReputationDto.md)
|
|
221
224
|
- [AiSecretValidationResult](docs/AiSecretValidationResult.md)
|
|
222
225
|
- [AmazonEcrKeyIntegrationCreateDto](docs/AmazonEcrKeyIntegrationCreateDto.md)
|
|
223
226
|
- [AmazonEcrKeyIntegrationEditDto](docs/AmazonEcrKeyIntegrationEditDto.md)
|
|
@@ -339,6 +342,7 @@ Class | Method | HTTP request | Description
|
|
|
339
342
|
- [LegitScoreRequirementType](docs/LegitScoreRequirementType.md)
|
|
340
343
|
- [ListSortDirection](docs/ListSortDirection.md)
|
|
341
344
|
- [ManualCheckDto](docs/ManualCheckDto.md)
|
|
345
|
+
- [ModelReputation](docs/ModelReputation.md)
|
|
342
346
|
- [OriginType](docs/OriginType.md)
|
|
343
347
|
- [PackageSource](docs/PackageSource.md)
|
|
344
348
|
- [PackageType](docs/PackageType.md)
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
legit_api_client/__init__.py,sha256=
|
|
2
|
-
legit_api_client/api_client.py,sha256=
|
|
1
|
+
legit_api_client/__init__.py,sha256=Xl8QnCuEkZ2mob_tLwaHk5_4C42Vg2eeTSNQFY9GySM,29409
|
|
2
|
+
legit_api_client/api_client.py,sha256=KMfqpSwv7hn4UkAE0q9IpAglmjf_-0l-Hh6OHY5X9TQ,27804
|
|
3
3
|
legit_api_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
legit_api_client/configuration.py,sha256=
|
|
4
|
+
legit_api_client/configuration.py,sha256=FrhQ6BSUyhFo96FB5VEhCHIJoUprQb9_uW2O_WrMzHg,18537
|
|
5
5
|
legit_api_client/exceptions.py,sha256=FQhdQym8Gv0T7Q5dppOeb-yBbB_jgov4wNAmRaz1EM0,6538
|
|
6
6
|
legit_api_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
legit_api_client/rest.py,sha256=4g4Zi4xX1187Af75nEgTesIYeIJmdpV0pWws4VM2iD0,9657
|
|
8
|
-
legit_api_client/api/__init__.py,sha256=
|
|
8
|
+
legit_api_client/api/__init__.py,sha256=9toQGpkG-SNVQhXEOPTYYlZYvEZt4Up7qbg8jVe5jcg,1441
|
|
9
9
|
legit_api_client/api/amazon_ecr_key_integration_api.py,sha256=MiQ4bzBxPHeaHv-YWHFXNemQK5Q19NBPR_YrhST8bqU,10476
|
|
10
10
|
legit_api_client/api/amazon_ecr_role_integration_api.py,sha256=M4I_SpnGVUHXu-6i47mxbR0Dye62uM7nVOXnpc0opxk,10488
|
|
11
11
|
legit_api_client/api/brokers_api.py,sha256=VcU8AmomvtMO3A0evv6MwwOJAkGLcYitvYSz1KV5V2U,12302
|
|
@@ -18,16 +18,18 @@ legit_api_client/api/dependencies_v2_api.py,sha256=r0Bfunn2AVH214xsW6zddBBf4rvqy
|
|
|
18
18
|
legit_api_client/api/integrations_api.py,sha256=IhQaqexoT_0RBNXKz-_Mw-tDzJeuY2PPRE5IoscWZO8,191902
|
|
19
19
|
legit_api_client/api/issues_api.py,sha256=c9SHDtdM3NEY5bKYlX9_bU2_S4-iUTEttuimiEd3zUM,171765
|
|
20
20
|
legit_api_client/api/issues_v2_api.py,sha256=pSWx4yhGO_zP0z9OOTuFJv7NIz70eVkdR8Aro-17uZU,244070
|
|
21
|
+
legit_api_client/api/models_api.py,sha256=70GFC7t1DiXpz0miUsirrcmB6G-08EE2D1dQemJC5Do,21996
|
|
21
22
|
legit_api_client/api/policies_api.py,sha256=2oJ4T8IUpKD8YXxiPg1FqIaJ699nBc9XvqavUTuyEwE,39158
|
|
22
23
|
legit_api_client/api/product_units_api.py,sha256=FYY4ZS_SysiJ_fHqoPNQV9OEyKjcoWeMHcQ2SiwDbFE,106296
|
|
23
24
|
legit_api_client/api/repositories_api.py,sha256=txLundrKkEVhb54o3E6LfGJswZXHquMHHd6kPMViqB4,109468
|
|
24
25
|
legit_api_client/api/repository_groups_api.py,sha256=3rb8CALc8uHTsC9umG--kC2UazGNMADmFBQ4MAuqA9o,23725
|
|
25
26
|
legit_api_client/api/saved_queries_api.py,sha256=fSrPQjxbno6q8nDInlugohVoBE9BedRGTa3DwjZXXCQ,12718
|
|
26
|
-
legit_api_client/api/sdlc_assets_api.py,sha256=
|
|
27
|
+
legit_api_client/api/sdlc_assets_api.py,sha256=Sewl5OWGuAjFbubg7DYzYtGz-B85ynJqFdzTeAIVilQ,41092
|
|
27
28
|
legit_api_client/api/tags_api.py,sha256=Rs5-RyIDxQKrDgAFl-RazKhbgbv_q0Q-3wBYeXhSUjE,32570
|
|
28
29
|
legit_api_client/api/workspaces_api.py,sha256=Eb_BTJkE-zt5fnGEY6wnHH6OHp_nboh9TEsOGyxI-eg,85370
|
|
29
|
-
legit_api_client/models/__init__.py,sha256=
|
|
30
|
+
legit_api_client/models/__init__.py,sha256=X-2KNPF1HQS22OGfrVZDTLPN8QHK-CDtGdoHo9nkvyU,15958
|
|
30
31
|
legit_api_client/models/add_issue_comment_dto.py,sha256=yXcBOfZzi0UcojpCcFqpO_umOpZZp53qCX3GY4x2DaQ,2575
|
|
32
|
+
legit_api_client/models/ai_model_reputation_dto.py,sha256=uKH-Gf8zx8F6dsku0IQR6YlC5bQyHx9ro9lknwey6jU,3420
|
|
31
33
|
legit_api_client/models/ai_secret_validation_result.py,sha256=Qniyaz_12c-6iexAtQFVaHfJ_MFCImjckv4e_xxFToc,877
|
|
32
34
|
legit_api_client/models/amazon_ecr_key_integration_create_dto.py,sha256=Inj8_WcHKM26G26o730PYiuPsD2wMP0RLOnjnf-Pw2E,4616
|
|
33
35
|
legit_api_client/models/amazon_ecr_key_integration_edit_dto.py,sha256=y-G8TXc3AkUieV9SKtp6OB5R5fSmnbjmAeD5jfFeqzs,4608
|
|
@@ -149,6 +151,7 @@ legit_api_client/models/legit_score_requirement_group_type.py,sha256=Lny3a8XYF27
|
|
|
149
151
|
legit_api_client/models/legit_score_requirement_type.py,sha256=waaqlFv6-7DCLJ4R7-W18M2lM_qp5vyBG3nISty6HSg,2384
|
|
150
152
|
legit_api_client/models/list_sort_direction.py,sha256=36agl-rizKtrDMjHf47wzSMiyVeVsWHyjwhpKR90280,778
|
|
151
153
|
legit_api_client/models/manual_check_dto.py,sha256=5zsSJ2lPOAYIcnLvHJPV4HtcQKI-sRC1j0vdLvN4CyM,2963
|
|
154
|
+
legit_api_client/models/model_reputation.py,sha256=Xli2-J8w2mQVGFLRQluSgFiDLb4BrYHyrBliQS4uq0I,788
|
|
152
155
|
legit_api_client/models/origin_type.py,sha256=LliudkvdHkuJyUwg4qpeDCkrM-QwfahL0ekAc6cF1PE,1371
|
|
153
156
|
legit_api_client/models/package_source.py,sha256=IOhl-jV3PgQXrDv2vMDcjutyjEVJMVi7CTyZ9G7n3_w,758
|
|
154
157
|
legit_api_client/models/package_type.py,sha256=9fg2RmWbgWhLCvforzmnU2e-9G7BOLpn6kJxh-Oddl0,1170
|
|
@@ -165,7 +168,7 @@ legit_api_client/models/patch_security_champion_id_dto.py,sha256=Lr65QeEat1Jzv5O
|
|
|
165
168
|
legit_api_client/models/permission_meta_type.py,sha256=64PoK7YbaLAU7hJZF7qGGjwMBcxklC1ZUEvmZ2MyWiM,805
|
|
166
169
|
legit_api_client/models/policy_dto.py,sha256=-MhBgOyTHyVJMXabtebh_wh1XErIlweA4gRwEkgIv9g,7064
|
|
167
170
|
legit_api_client/models/problem_details.py,sha256=i3GtidBVbXMCpVAUcn1SYWZTVzi0utXCLqMkwrLtROg,4500
|
|
168
|
-
legit_api_client/models/product_connection_type.py,sha256=
|
|
171
|
+
legit_api_client/models/product_connection_type.py,sha256=GSx-BPVyEiQmZPicOA5ddNEuVsHDT5YQo7jhApcDAoM,1790
|
|
169
172
|
legit_api_client/models/product_tree_node_dto.py,sha256=dp5Kq22iVXYjZfX7SFwbOZtUBaIAmEkTeHkcgSJmnuI,3986
|
|
170
173
|
legit_api_client/models/product_unit_asset_dto.py,sha256=n7yjcpUwH7fG-0dHA6hfpeH4NfygHH_AfXL0k-6cemI,3734
|
|
171
174
|
legit_api_client/models/product_unit_dto.py,sha256=8iIN_f9LcF69L7Ohc7UPO-qRZ-fdng2Fun96obqRBmY,9445
|
|
@@ -202,7 +205,7 @@ legit_api_client/models/tag_dto.py,sha256=kO8NnKidM70CYpXo-RfXfB897_M-zQy1asYGF_
|
|
|
202
205
|
legit_api_client/models/tag_source.py,sha256=F0dCMjnGf6L5hjA3eDrh205HAnekN1MDmRaHMna7dF0,892
|
|
203
206
|
legit_api_client/models/user_dto.py,sha256=enWoDluaap-pjbRuZosGLXhxw_XqmRApVRf4Cqt0sLI,3972
|
|
204
207
|
legit_api_client/models/user_permission.py,sha256=RZgHByS_Qsa8SJT995yEynCCdQEv8yp214KoxjtxlRw,2892
|
|
205
|
-
legit_api_client/models/user_role.py,sha256=
|
|
208
|
+
legit_api_client/models/user_role.py,sha256=r1ziX3aSsUcJn2fxiMJu5DNtaf058pExuounGajq2aY,867
|
|
206
209
|
legit_api_client/models/vulnerability_type.py,sha256=RvRt7cmbis9Q15PycRUg8l_D-Z77nB4N1yLLvvJgCvM,736
|
|
207
210
|
legit_api_client/models/workspace_created_dto.py,sha256=2o09n7ntVPBH051xWRRaoxP7EqwyQ6FDVUnLPOb6PfI,2702
|
|
208
211
|
legit_api_client/models/workspace_dto.py,sha256=jDyuwX6BKew2_D161uOtSBWM89R8khJwfQ50zbBlO50,2955
|
|
@@ -211,7 +214,7 @@ legit_api_client/models/workspace_group_tree_node_dto.py,sha256=zV5vmSc0bjqkH7hS
|
|
|
211
214
|
legit_api_client/models/workspace_hierarchy_dto.py,sha256=qU9eTOHNh3d-XeOM6CbrkTLEwSX0cdjJkbVb03GHS_Y,4522
|
|
212
215
|
legit_api_client/models/workspace_tree_node_dto.py,sha256=TlM1PPVbuGDQKlgl3Ht_EEj8lJLMqTdVE3_k8QFJldE,3527
|
|
213
216
|
legit_api_client/models/workspace_type.py,sha256=d-Dy1JkWLAZgZgTHMTaF01QT2Cv1Eexg6HqcKqPEOjs,756
|
|
214
|
-
legit_api_client-1.1.
|
|
215
|
-
legit_api_client-1.1.
|
|
216
|
-
legit_api_client-1.1.
|
|
217
|
-
legit_api_client-1.1.
|
|
217
|
+
legit_api_client-1.1.4613.dist-info/METADATA,sha256=qTLHU9LtLmozVc-UUnfdR2-aGUmVjAwSaMBRE0Ybhpc,33391
|
|
218
|
+
legit_api_client-1.1.4613.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
219
|
+
legit_api_client-1.1.4613.dist-info/top_level.txt,sha256=3k94tIhdKXTBXkGPCBDQSOnARVo5IwVYlyIfQ18xaDM,17
|
|
220
|
+
legit_api_client-1.1.4613.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|