hiddenlayer-sdk 0.1.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.
- hiddenlayer/__init__.py +109 -0
- hiddenlayer/sdk/__init__.py +0 -0
- hiddenlayer/sdk/constants.py +14 -0
- hiddenlayer/sdk/enterprise/__init__.py +0 -0
- hiddenlayer/sdk/enterprise/enterprise_model_scan_api.py +55 -0
- hiddenlayer/sdk/exceptions.py +12 -0
- hiddenlayer/sdk/models.py +22 -0
- hiddenlayer/sdk/rest/__init__.py +49 -0
- hiddenlayer/sdk/rest/api/__init__.py +7 -0
- hiddenlayer/sdk/rest/api/aidr_predictive_api.py +308 -0
- hiddenlayer/sdk/rest/api/model_scan_api.py +591 -0
- hiddenlayer/sdk/rest/api/sensor_api.py +1966 -0
- hiddenlayer/sdk/rest/api_client.py +770 -0
- hiddenlayer/sdk/rest/api_response.py +21 -0
- hiddenlayer/sdk/rest/configuration.py +445 -0
- hiddenlayer/sdk/rest/exceptions.py +199 -0
- hiddenlayer/sdk/rest/models/__init__.py +30 -0
- hiddenlayer/sdk/rest/models/create_sensor_request.py +95 -0
- hiddenlayer/sdk/rest/models/file_info.py +110 -0
- hiddenlayer/sdk/rest/models/get_multipart_upload_response.py +97 -0
- hiddenlayer/sdk/rest/models/model.py +100 -0
- hiddenlayer/sdk/rest/models/model_query_response.py +101 -0
- hiddenlayer/sdk/rest/models/multipart_upload_part.py +93 -0
- hiddenlayer/sdk/rest/models/scan_model_request.py +87 -0
- hiddenlayer/sdk/rest/models/scan_results_v2.py +108 -0
- hiddenlayer/sdk/rest/models/sensor_sor_query_filter.py +108 -0
- hiddenlayer/sdk/rest/models/sensor_sor_query_request.py +109 -0
- hiddenlayer/sdk/rest/models/submission_response.py +95 -0
- hiddenlayer/sdk/rest/models/submission_v2.py +109 -0
- hiddenlayer/sdk/rest/models/validation_error_model.py +99 -0
- hiddenlayer/sdk/rest/models/validation_error_model_loc_inner.py +138 -0
- hiddenlayer/sdk/rest/rest.py +257 -0
- hiddenlayer/sdk/services/__init__.py +0 -0
- hiddenlayer/sdk/services/aidr_predictive.py +76 -0
- hiddenlayer/sdk/services/model.py +101 -0
- hiddenlayer/sdk/services/model_scan.py +414 -0
- hiddenlayer/sdk/utils.py +92 -0
- hiddenlayer/sdk/version.py +1 -0
- hiddenlayer_sdk-0.1.0.dist-info/LICENSE +201 -0
- hiddenlayer_sdk-0.1.0.dist-info/METADATA +320 -0
- hiddenlayer_sdk-0.1.0.dist-info/RECORD +43 -0
- hiddenlayer_sdk-0.1.0.dist-info/WHEEL +5 -0
- hiddenlayer_sdk-0.1.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,591 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
"""
|
4
|
+
HiddenLayer ModelScan
|
5
|
+
|
6
|
+
HiddenLayer ModelScan API for scanning of models
|
7
|
+
|
8
|
+
The version of the OpenAPI document: 1
|
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 Optional
|
21
|
+
from typing_extensions import Annotated
|
22
|
+
from hiddenlayer.sdk.rest.models.scan_model_request import ScanModelRequest
|
23
|
+
from hiddenlayer.sdk.rest.models.scan_results_v2 import ScanResultsV2
|
24
|
+
|
25
|
+
from hiddenlayer.sdk.rest.api_client import ApiClient, RequestSerialized
|
26
|
+
from hiddenlayer.sdk.rest.api_response import ApiResponse
|
27
|
+
from hiddenlayer.sdk.rest.rest import RESTResponseType
|
28
|
+
|
29
|
+
|
30
|
+
class ModelScanApi:
|
31
|
+
"""NOTE: This class is auto generated by OpenAPI Generator
|
32
|
+
Ref: https://openapi-generator.tech
|
33
|
+
|
34
|
+
Do not edit the class manually.
|
35
|
+
"""
|
36
|
+
|
37
|
+
def __init__(self, api_client=None) -> None:
|
38
|
+
if api_client is None:
|
39
|
+
api_client = ApiClient.get_default()
|
40
|
+
self.api_client = api_client
|
41
|
+
|
42
|
+
|
43
|
+
@validate_call
|
44
|
+
def scan_model(
|
45
|
+
self,
|
46
|
+
sensor_id: StrictStr,
|
47
|
+
scan_model_request: Annotated[Optional[ScanModelRequest], Field(description="Request body for create")] = None,
|
48
|
+
_request_timeout: Union[
|
49
|
+
None,
|
50
|
+
Annotated[StrictFloat, Field(gt=0)],
|
51
|
+
Tuple[
|
52
|
+
Annotated[StrictFloat, Field(gt=0)],
|
53
|
+
Annotated[StrictFloat, Field(gt=0)]
|
54
|
+
]
|
55
|
+
] = None,
|
56
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
57
|
+
_content_type: Optional[StrictStr] = None,
|
58
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
59
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
60
|
+
) -> None:
|
61
|
+
"""Scan a model
|
62
|
+
|
63
|
+
|
64
|
+
:param sensor_id: (required)
|
65
|
+
:type sensor_id: str
|
66
|
+
:param scan_model_request: Request body for create
|
67
|
+
:type scan_model_request: ScanModelRequest
|
68
|
+
:param _request_timeout: timeout setting for this request. If one
|
69
|
+
number provided, it will be total request
|
70
|
+
timeout. It can also be a pair (tuple) of
|
71
|
+
(connection, read) timeouts.
|
72
|
+
:type _request_timeout: int, tuple(int, int), optional
|
73
|
+
:param _request_auth: set to override the auth_settings for an a single
|
74
|
+
request; this effectively ignores the
|
75
|
+
authentication in the spec for a single request.
|
76
|
+
:type _request_auth: dict, optional
|
77
|
+
:param _content_type: force content-type for the request.
|
78
|
+
:type _content_type: str, Optional
|
79
|
+
:param _headers: set to override the headers for a single
|
80
|
+
request; this effectively ignores the headers
|
81
|
+
in the spec for a single request.
|
82
|
+
:type _headers: dict, optional
|
83
|
+
:param _host_index: set to override the host_index for a single
|
84
|
+
request; this effectively ignores the host_index
|
85
|
+
in the spec for a single request.
|
86
|
+
:type _host_index: int, optional
|
87
|
+
:return: Returns the result object.
|
88
|
+
""" # noqa: E501
|
89
|
+
|
90
|
+
_param = self._scan_model_serialize(
|
91
|
+
sensor_id=sensor_id,
|
92
|
+
scan_model_request=scan_model_request,
|
93
|
+
_request_auth=_request_auth,
|
94
|
+
_content_type=_content_type,
|
95
|
+
_headers=_headers,
|
96
|
+
_host_index=_host_index
|
97
|
+
)
|
98
|
+
|
99
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
100
|
+
'201': None,
|
101
|
+
'400': None,
|
102
|
+
'422': "ValidationErrorModel",
|
103
|
+
}
|
104
|
+
response_data = self.api_client.call_api(
|
105
|
+
*_param,
|
106
|
+
_request_timeout=_request_timeout
|
107
|
+
)
|
108
|
+
response_data.read()
|
109
|
+
return self.api_client.response_deserialize(
|
110
|
+
response_data=response_data,
|
111
|
+
response_types_map=_response_types_map,
|
112
|
+
).data
|
113
|
+
|
114
|
+
|
115
|
+
@validate_call
|
116
|
+
def scan_model_with_http_info(
|
117
|
+
self,
|
118
|
+
sensor_id: StrictStr,
|
119
|
+
scan_model_request: Annotated[Optional[ScanModelRequest], Field(description="Request body for create")] = None,
|
120
|
+
_request_timeout: Union[
|
121
|
+
None,
|
122
|
+
Annotated[StrictFloat, Field(gt=0)],
|
123
|
+
Tuple[
|
124
|
+
Annotated[StrictFloat, Field(gt=0)],
|
125
|
+
Annotated[StrictFloat, Field(gt=0)]
|
126
|
+
]
|
127
|
+
] = None,
|
128
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
129
|
+
_content_type: Optional[StrictStr] = None,
|
130
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
131
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
132
|
+
) -> ApiResponse[None]:
|
133
|
+
"""Scan a model
|
134
|
+
|
135
|
+
|
136
|
+
:param sensor_id: (required)
|
137
|
+
:type sensor_id: str
|
138
|
+
:param scan_model_request: Request body for create
|
139
|
+
:type scan_model_request: ScanModelRequest
|
140
|
+
:param _request_timeout: timeout setting for this request. If one
|
141
|
+
number provided, it will be total request
|
142
|
+
timeout. It can also be a pair (tuple) of
|
143
|
+
(connection, read) timeouts.
|
144
|
+
:type _request_timeout: int, tuple(int, int), optional
|
145
|
+
:param _request_auth: set to override the auth_settings for an a single
|
146
|
+
request; this effectively ignores the
|
147
|
+
authentication in the spec for a single request.
|
148
|
+
:type _request_auth: dict, optional
|
149
|
+
:param _content_type: force content-type for the request.
|
150
|
+
:type _content_type: str, Optional
|
151
|
+
:param _headers: set to override the headers for a single
|
152
|
+
request; this effectively ignores the headers
|
153
|
+
in the spec for a single request.
|
154
|
+
:type _headers: dict, optional
|
155
|
+
:param _host_index: set to override the host_index for a single
|
156
|
+
request; this effectively ignores the host_index
|
157
|
+
in the spec for a single request.
|
158
|
+
:type _host_index: int, optional
|
159
|
+
:return: Returns the result object.
|
160
|
+
""" # noqa: E501
|
161
|
+
|
162
|
+
_param = self._scan_model_serialize(
|
163
|
+
sensor_id=sensor_id,
|
164
|
+
scan_model_request=scan_model_request,
|
165
|
+
_request_auth=_request_auth,
|
166
|
+
_content_type=_content_type,
|
167
|
+
_headers=_headers,
|
168
|
+
_host_index=_host_index
|
169
|
+
)
|
170
|
+
|
171
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
172
|
+
'201': None,
|
173
|
+
'400': None,
|
174
|
+
'422': "ValidationErrorModel",
|
175
|
+
}
|
176
|
+
response_data = self.api_client.call_api(
|
177
|
+
*_param,
|
178
|
+
_request_timeout=_request_timeout
|
179
|
+
)
|
180
|
+
response_data.read()
|
181
|
+
return self.api_client.response_deserialize(
|
182
|
+
response_data=response_data,
|
183
|
+
response_types_map=_response_types_map,
|
184
|
+
)
|
185
|
+
|
186
|
+
|
187
|
+
@validate_call
|
188
|
+
def scan_model_without_preload_content(
|
189
|
+
self,
|
190
|
+
sensor_id: StrictStr,
|
191
|
+
scan_model_request: Annotated[Optional[ScanModelRequest], Field(description="Request body for create")] = None,
|
192
|
+
_request_timeout: Union[
|
193
|
+
None,
|
194
|
+
Annotated[StrictFloat, Field(gt=0)],
|
195
|
+
Tuple[
|
196
|
+
Annotated[StrictFloat, Field(gt=0)],
|
197
|
+
Annotated[StrictFloat, Field(gt=0)]
|
198
|
+
]
|
199
|
+
] = None,
|
200
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
201
|
+
_content_type: Optional[StrictStr] = None,
|
202
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
203
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
204
|
+
) -> RESTResponseType:
|
205
|
+
"""Scan a model
|
206
|
+
|
207
|
+
|
208
|
+
:param sensor_id: (required)
|
209
|
+
:type sensor_id: str
|
210
|
+
:param scan_model_request: Request body for create
|
211
|
+
:type scan_model_request: ScanModelRequest
|
212
|
+
:param _request_timeout: timeout setting for this request. If one
|
213
|
+
number provided, it will be total request
|
214
|
+
timeout. It can also be a pair (tuple) of
|
215
|
+
(connection, read) timeouts.
|
216
|
+
:type _request_timeout: int, tuple(int, int), optional
|
217
|
+
:param _request_auth: set to override the auth_settings for an a single
|
218
|
+
request; this effectively ignores the
|
219
|
+
authentication in the spec for a single request.
|
220
|
+
:type _request_auth: dict, optional
|
221
|
+
:param _content_type: force content-type for the request.
|
222
|
+
:type _content_type: str, Optional
|
223
|
+
:param _headers: set to override the headers for a single
|
224
|
+
request; this effectively ignores the headers
|
225
|
+
in the spec for a single request.
|
226
|
+
:type _headers: dict, optional
|
227
|
+
:param _host_index: set to override the host_index for a single
|
228
|
+
request; this effectively ignores the host_index
|
229
|
+
in the spec for a single request.
|
230
|
+
:type _host_index: int, optional
|
231
|
+
:return: Returns the result object.
|
232
|
+
""" # noqa: E501
|
233
|
+
|
234
|
+
_param = self._scan_model_serialize(
|
235
|
+
sensor_id=sensor_id,
|
236
|
+
scan_model_request=scan_model_request,
|
237
|
+
_request_auth=_request_auth,
|
238
|
+
_content_type=_content_type,
|
239
|
+
_headers=_headers,
|
240
|
+
_host_index=_host_index
|
241
|
+
)
|
242
|
+
|
243
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
244
|
+
'201': None,
|
245
|
+
'400': None,
|
246
|
+
'422': "ValidationErrorModel",
|
247
|
+
}
|
248
|
+
response_data = self.api_client.call_api(
|
249
|
+
*_param,
|
250
|
+
_request_timeout=_request_timeout
|
251
|
+
)
|
252
|
+
return response_data.response
|
253
|
+
|
254
|
+
|
255
|
+
def _scan_model_serialize(
|
256
|
+
self,
|
257
|
+
sensor_id,
|
258
|
+
scan_model_request,
|
259
|
+
_request_auth,
|
260
|
+
_content_type,
|
261
|
+
_headers,
|
262
|
+
_host_index,
|
263
|
+
) -> RequestSerialized:
|
264
|
+
|
265
|
+
_host = None
|
266
|
+
|
267
|
+
_collection_formats: Dict[str, str] = {
|
268
|
+
}
|
269
|
+
|
270
|
+
_path_params: Dict[str, str] = {}
|
271
|
+
_query_params: List[Tuple[str, str]] = []
|
272
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
273
|
+
_form_params: List[Tuple[str, str]] = []
|
274
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
275
|
+
_body_params: Optional[bytes] = None
|
276
|
+
|
277
|
+
# process the path parameters
|
278
|
+
if sensor_id is not None:
|
279
|
+
_path_params['sensor_id'] = sensor_id
|
280
|
+
# process the query parameters
|
281
|
+
# process the header parameters
|
282
|
+
# process the form parameters
|
283
|
+
# process the body parameter
|
284
|
+
if scan_model_request is not None:
|
285
|
+
_body_params = scan_model_request
|
286
|
+
|
287
|
+
|
288
|
+
# set the HTTP header `Accept`
|
289
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
290
|
+
[
|
291
|
+
'application/json'
|
292
|
+
]
|
293
|
+
)
|
294
|
+
|
295
|
+
# set the HTTP header `Content-Type`
|
296
|
+
if _content_type:
|
297
|
+
_header_params['Content-Type'] = _content_type
|
298
|
+
else:
|
299
|
+
_default_content_type = (
|
300
|
+
self.api_client.select_header_content_type(
|
301
|
+
[
|
302
|
+
'application/json',
|
303
|
+
'application/octet-stream'
|
304
|
+
]
|
305
|
+
)
|
306
|
+
)
|
307
|
+
if _default_content_type is not None:
|
308
|
+
_header_params['Content-Type'] = _default_content_type
|
309
|
+
|
310
|
+
# authentication setting
|
311
|
+
_auth_settings: List[str] = [
|
312
|
+
'BearerAuth'
|
313
|
+
]
|
314
|
+
|
315
|
+
return self.api_client.param_serialize(
|
316
|
+
method='POST',
|
317
|
+
resource_path='/api/v2/submit/sensors/{sensor_id}/scan',
|
318
|
+
path_params=_path_params,
|
319
|
+
query_params=_query_params,
|
320
|
+
header_params=_header_params,
|
321
|
+
body=_body_params,
|
322
|
+
post_params=_form_params,
|
323
|
+
files=_files,
|
324
|
+
auth_settings=_auth_settings,
|
325
|
+
collection_formats=_collection_formats,
|
326
|
+
_host=_host,
|
327
|
+
_request_auth=_request_auth
|
328
|
+
)
|
329
|
+
|
330
|
+
|
331
|
+
|
332
|
+
|
333
|
+
@validate_call
|
334
|
+
def scan_status(
|
335
|
+
self,
|
336
|
+
sensor_id: StrictStr,
|
337
|
+
_request_timeout: Union[
|
338
|
+
None,
|
339
|
+
Annotated[StrictFloat, Field(gt=0)],
|
340
|
+
Tuple[
|
341
|
+
Annotated[StrictFloat, Field(gt=0)],
|
342
|
+
Annotated[StrictFloat, Field(gt=0)]
|
343
|
+
]
|
344
|
+
] = None,
|
345
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
346
|
+
_content_type: Optional[StrictStr] = None,
|
347
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
348
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
349
|
+
) -> ScanResultsV2:
|
350
|
+
"""Get Status or Result of a Scan
|
351
|
+
|
352
|
+
|
353
|
+
:param sensor_id: (required)
|
354
|
+
:type sensor_id: str
|
355
|
+
:param _request_timeout: timeout setting for this request. If one
|
356
|
+
number provided, it will be total request
|
357
|
+
timeout. It can also be a pair (tuple) of
|
358
|
+
(connection, read) timeouts.
|
359
|
+
:type _request_timeout: int, tuple(int, int), optional
|
360
|
+
:param _request_auth: set to override the auth_settings for an a single
|
361
|
+
request; this effectively ignores the
|
362
|
+
authentication in the spec for a single request.
|
363
|
+
:type _request_auth: dict, optional
|
364
|
+
:param _content_type: force content-type for the request.
|
365
|
+
:type _content_type: str, Optional
|
366
|
+
:param _headers: set to override the headers for a single
|
367
|
+
request; this effectively ignores the headers
|
368
|
+
in the spec for a single request.
|
369
|
+
:type _headers: dict, optional
|
370
|
+
:param _host_index: set to override the host_index for a single
|
371
|
+
request; this effectively ignores the host_index
|
372
|
+
in the spec for a single request.
|
373
|
+
:type _host_index: int, optional
|
374
|
+
:return: Returns the result object.
|
375
|
+
""" # noqa: E501
|
376
|
+
|
377
|
+
_param = self._scan_status_serialize(
|
378
|
+
sensor_id=sensor_id,
|
379
|
+
_request_auth=_request_auth,
|
380
|
+
_content_type=_content_type,
|
381
|
+
_headers=_headers,
|
382
|
+
_host_index=_host_index
|
383
|
+
)
|
384
|
+
|
385
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
386
|
+
'200': "ScanResultsV2",
|
387
|
+
'400': None,
|
388
|
+
'404': None,
|
389
|
+
}
|
390
|
+
response_data = self.api_client.call_api(
|
391
|
+
*_param,
|
392
|
+
_request_timeout=_request_timeout
|
393
|
+
)
|
394
|
+
response_data.read()
|
395
|
+
return self.api_client.response_deserialize(
|
396
|
+
response_data=response_data,
|
397
|
+
response_types_map=_response_types_map,
|
398
|
+
).data
|
399
|
+
|
400
|
+
|
401
|
+
@validate_call
|
402
|
+
def scan_status_with_http_info(
|
403
|
+
self,
|
404
|
+
sensor_id: StrictStr,
|
405
|
+
_request_timeout: Union[
|
406
|
+
None,
|
407
|
+
Annotated[StrictFloat, Field(gt=0)],
|
408
|
+
Tuple[
|
409
|
+
Annotated[StrictFloat, Field(gt=0)],
|
410
|
+
Annotated[StrictFloat, Field(gt=0)]
|
411
|
+
]
|
412
|
+
] = None,
|
413
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
414
|
+
_content_type: Optional[StrictStr] = None,
|
415
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
416
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
417
|
+
) -> ApiResponse[ScanResultsV2]:
|
418
|
+
"""Get Status or Result of a Scan
|
419
|
+
|
420
|
+
|
421
|
+
:param sensor_id: (required)
|
422
|
+
:type sensor_id: str
|
423
|
+
:param _request_timeout: timeout setting for this request. If one
|
424
|
+
number provided, it will be total request
|
425
|
+
timeout. It can also be a pair (tuple) of
|
426
|
+
(connection, read) timeouts.
|
427
|
+
:type _request_timeout: int, tuple(int, int), optional
|
428
|
+
:param _request_auth: set to override the auth_settings for an a single
|
429
|
+
request; this effectively ignores the
|
430
|
+
authentication in the spec for a single request.
|
431
|
+
:type _request_auth: dict, optional
|
432
|
+
:param _content_type: force content-type for the request.
|
433
|
+
:type _content_type: str, Optional
|
434
|
+
:param _headers: set to override the headers for a single
|
435
|
+
request; this effectively ignores the headers
|
436
|
+
in the spec for a single request.
|
437
|
+
:type _headers: dict, optional
|
438
|
+
:param _host_index: set to override the host_index for a single
|
439
|
+
request; this effectively ignores the host_index
|
440
|
+
in the spec for a single request.
|
441
|
+
:type _host_index: int, optional
|
442
|
+
:return: Returns the result object.
|
443
|
+
""" # noqa: E501
|
444
|
+
|
445
|
+
_param = self._scan_status_serialize(
|
446
|
+
sensor_id=sensor_id,
|
447
|
+
_request_auth=_request_auth,
|
448
|
+
_content_type=_content_type,
|
449
|
+
_headers=_headers,
|
450
|
+
_host_index=_host_index
|
451
|
+
)
|
452
|
+
|
453
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
454
|
+
'200': "ScanResultsV2",
|
455
|
+
'400': None,
|
456
|
+
'404': None,
|
457
|
+
}
|
458
|
+
response_data = self.api_client.call_api(
|
459
|
+
*_param,
|
460
|
+
_request_timeout=_request_timeout
|
461
|
+
)
|
462
|
+
response_data.read()
|
463
|
+
return self.api_client.response_deserialize(
|
464
|
+
response_data=response_data,
|
465
|
+
response_types_map=_response_types_map,
|
466
|
+
)
|
467
|
+
|
468
|
+
|
469
|
+
@validate_call
|
470
|
+
def scan_status_without_preload_content(
|
471
|
+
self,
|
472
|
+
sensor_id: StrictStr,
|
473
|
+
_request_timeout: Union[
|
474
|
+
None,
|
475
|
+
Annotated[StrictFloat, Field(gt=0)],
|
476
|
+
Tuple[
|
477
|
+
Annotated[StrictFloat, Field(gt=0)],
|
478
|
+
Annotated[StrictFloat, Field(gt=0)]
|
479
|
+
]
|
480
|
+
] = None,
|
481
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
482
|
+
_content_type: Optional[StrictStr] = None,
|
483
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
484
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
485
|
+
) -> RESTResponseType:
|
486
|
+
"""Get Status or Result of a Scan
|
487
|
+
|
488
|
+
|
489
|
+
:param sensor_id: (required)
|
490
|
+
:type sensor_id: str
|
491
|
+
:param _request_timeout: timeout setting for this request. If one
|
492
|
+
number provided, it will be total request
|
493
|
+
timeout. It can also be a pair (tuple) of
|
494
|
+
(connection, read) timeouts.
|
495
|
+
:type _request_timeout: int, tuple(int, int), optional
|
496
|
+
:param _request_auth: set to override the auth_settings for an a single
|
497
|
+
request; this effectively ignores the
|
498
|
+
authentication in the spec for a single request.
|
499
|
+
:type _request_auth: dict, optional
|
500
|
+
:param _content_type: force content-type for the request.
|
501
|
+
:type _content_type: str, Optional
|
502
|
+
:param _headers: set to override the headers for a single
|
503
|
+
request; this effectively ignores the headers
|
504
|
+
in the spec for a single request.
|
505
|
+
:type _headers: dict, optional
|
506
|
+
:param _host_index: set to override the host_index for a single
|
507
|
+
request; this effectively ignores the host_index
|
508
|
+
in the spec for a single request.
|
509
|
+
:type _host_index: int, optional
|
510
|
+
:return: Returns the result object.
|
511
|
+
""" # noqa: E501
|
512
|
+
|
513
|
+
_param = self._scan_status_serialize(
|
514
|
+
sensor_id=sensor_id,
|
515
|
+
_request_auth=_request_auth,
|
516
|
+
_content_type=_content_type,
|
517
|
+
_headers=_headers,
|
518
|
+
_host_index=_host_index
|
519
|
+
)
|
520
|
+
|
521
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
522
|
+
'200': "ScanResultsV2",
|
523
|
+
'400': None,
|
524
|
+
'404': None,
|
525
|
+
}
|
526
|
+
response_data = self.api_client.call_api(
|
527
|
+
*_param,
|
528
|
+
_request_timeout=_request_timeout
|
529
|
+
)
|
530
|
+
return response_data.response
|
531
|
+
|
532
|
+
|
533
|
+
def _scan_status_serialize(
|
534
|
+
self,
|
535
|
+
sensor_id,
|
536
|
+
_request_auth,
|
537
|
+
_content_type,
|
538
|
+
_headers,
|
539
|
+
_host_index,
|
540
|
+
) -> RequestSerialized:
|
541
|
+
|
542
|
+
_host = None
|
543
|
+
|
544
|
+
_collection_formats: Dict[str, str] = {
|
545
|
+
}
|
546
|
+
|
547
|
+
_path_params: Dict[str, str] = {}
|
548
|
+
_query_params: List[Tuple[str, str]] = []
|
549
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
550
|
+
_form_params: List[Tuple[str, str]] = []
|
551
|
+
_files: Dict[str, Union[str, bytes]] = {}
|
552
|
+
_body_params: Optional[bytes] = None
|
553
|
+
|
554
|
+
# process the path parameters
|
555
|
+
if sensor_id is not None:
|
556
|
+
_path_params['sensor_id'] = sensor_id
|
557
|
+
# process the query parameters
|
558
|
+
# process the header parameters
|
559
|
+
# process the form parameters
|
560
|
+
# process the body parameter
|
561
|
+
|
562
|
+
|
563
|
+
# set the HTTP header `Accept`
|
564
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
565
|
+
[
|
566
|
+
'application/json'
|
567
|
+
]
|
568
|
+
)
|
569
|
+
|
570
|
+
|
571
|
+
# authentication setting
|
572
|
+
_auth_settings: List[str] = [
|
573
|
+
'BearerAuth'
|
574
|
+
]
|
575
|
+
|
576
|
+
return self.api_client.param_serialize(
|
577
|
+
method='GET',
|
578
|
+
resource_path='/api/v2/scan/status/{sensor_id}',
|
579
|
+
path_params=_path_params,
|
580
|
+
query_params=_query_params,
|
581
|
+
header_params=_header_params,
|
582
|
+
body=_body_params,
|
583
|
+
post_params=_form_params,
|
584
|
+
files=_files,
|
585
|
+
auth_settings=_auth_settings,
|
586
|
+
collection_formats=_collection_formats,
|
587
|
+
_host=_host,
|
588
|
+
_request_auth=_request_auth
|
589
|
+
)
|
590
|
+
|
591
|
+
|