scc-firewall-manager-sdk 1.15.261__py3-none-any.whl → 1.15.263__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 scc-firewall-manager-sdk might be problematic. Click here for more details.
- scc_firewall_manager_sdk/__init__.py +1 -1
- scc_firewall_manager_sdk/api/connectors_api.py +17 -0
- scc_firewall_manager_sdk/api_client.py +1 -1
- scc_firewall_manager_sdk/configuration.py +1 -1
- {scc_firewall_manager_sdk-1.15.261.dist-info → scc_firewall_manager_sdk-1.15.263.dist-info}/METADATA +1 -1
- {scc_firewall_manager_sdk-1.15.261.dist-info → scc_firewall_manager_sdk-1.15.263.dist-info}/RECORD +8 -8
- {scc_firewall_manager_sdk-1.15.261.dist-info → scc_firewall_manager_sdk-1.15.263.dist-info}/WHEEL +0 -0
- {scc_firewall_manager_sdk-1.15.261.dist-info → scc_firewall_manager_sdk-1.15.263.dist-info}/top_level.txt +0 -0
|
@@ -1200,6 +1200,7 @@ class ConnectorsApi:
|
|
|
1200
1200
|
self,
|
|
1201
1201
|
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
|
|
1202
1202
|
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The offset of the results retrieved. The Security Cloud Control API uses the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.")] = None,
|
|
1203
|
+
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
1203
1204
|
_request_timeout: Union[
|
|
1204
1205
|
None,
|
|
1205
1206
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1221,6 +1222,8 @@ class ConnectorsApi:
|
|
|
1221
1222
|
:type limit: str
|
|
1222
1223
|
:param offset: The offset of the results retrieved. The Security Cloud Control API uses the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.
|
|
1223
1224
|
:type offset: str
|
|
1225
|
+
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
1226
|
+
:type q: str
|
|
1224
1227
|
:param _request_timeout: timeout setting for this request. If one
|
|
1225
1228
|
number provided, it will be total request
|
|
1226
1229
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1246,6 +1249,7 @@ class ConnectorsApi:
|
|
|
1246
1249
|
_param = self._get_search_reports_serialize(
|
|
1247
1250
|
limit=limit,
|
|
1248
1251
|
offset=offset,
|
|
1252
|
+
q=q,
|
|
1249
1253
|
_request_auth=_request_auth,
|
|
1250
1254
|
_content_type=_content_type,
|
|
1251
1255
|
_headers=_headers,
|
|
@@ -1273,6 +1277,7 @@ class ConnectorsApi:
|
|
|
1273
1277
|
self,
|
|
1274
1278
|
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
|
|
1275
1279
|
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The offset of the results retrieved. The Security Cloud Control API uses the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.")] = None,
|
|
1280
|
+
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
1276
1281
|
_request_timeout: Union[
|
|
1277
1282
|
None,
|
|
1278
1283
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1294,6 +1299,8 @@ class ConnectorsApi:
|
|
|
1294
1299
|
:type limit: str
|
|
1295
1300
|
:param offset: The offset of the results retrieved. The Security Cloud Control API uses the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.
|
|
1296
1301
|
:type offset: str
|
|
1302
|
+
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
1303
|
+
:type q: str
|
|
1297
1304
|
:param _request_timeout: timeout setting for this request. If one
|
|
1298
1305
|
number provided, it will be total request
|
|
1299
1306
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1319,6 +1326,7 @@ class ConnectorsApi:
|
|
|
1319
1326
|
_param = self._get_search_reports_serialize(
|
|
1320
1327
|
limit=limit,
|
|
1321
1328
|
offset=offset,
|
|
1329
|
+
q=q,
|
|
1322
1330
|
_request_auth=_request_auth,
|
|
1323
1331
|
_content_type=_content_type,
|
|
1324
1332
|
_headers=_headers,
|
|
@@ -1346,6 +1354,7 @@ class ConnectorsApi:
|
|
|
1346
1354
|
self,
|
|
1347
1355
|
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
|
|
1348
1356
|
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The offset of the results retrieved. The Security Cloud Control API uses the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.")] = None,
|
|
1357
|
+
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
1349
1358
|
_request_timeout: Union[
|
|
1350
1359
|
None,
|
|
1351
1360
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -1367,6 +1376,8 @@ class ConnectorsApi:
|
|
|
1367
1376
|
:type limit: str
|
|
1368
1377
|
:param offset: The offset of the results retrieved. The Security Cloud Control API uses the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.
|
|
1369
1378
|
:type offset: str
|
|
1379
|
+
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
1380
|
+
:type q: str
|
|
1370
1381
|
:param _request_timeout: timeout setting for this request. If one
|
|
1371
1382
|
number provided, it will be total request
|
|
1372
1383
|
timeout. It can also be a pair (tuple) of
|
|
@@ -1392,6 +1403,7 @@ class ConnectorsApi:
|
|
|
1392
1403
|
_param = self._get_search_reports_serialize(
|
|
1393
1404
|
limit=limit,
|
|
1394
1405
|
offset=offset,
|
|
1406
|
+
q=q,
|
|
1395
1407
|
_request_auth=_request_auth,
|
|
1396
1408
|
_content_type=_content_type,
|
|
1397
1409
|
_headers=_headers,
|
|
@@ -1414,6 +1426,7 @@ class ConnectorsApi:
|
|
|
1414
1426
|
self,
|
|
1415
1427
|
limit,
|
|
1416
1428
|
offset,
|
|
1429
|
+
q,
|
|
1417
1430
|
_request_auth,
|
|
1418
1431
|
_content_type,
|
|
1419
1432
|
_headers,
|
|
@@ -1442,6 +1455,10 @@ class ConnectorsApi:
|
|
|
1442
1455
|
|
|
1443
1456
|
_query_params.append(('offset', offset))
|
|
1444
1457
|
|
|
1458
|
+
if q is not None:
|
|
1459
|
+
|
|
1460
|
+
_query_params.append(('q', q))
|
|
1461
|
+
|
|
1445
1462
|
# process the header parameters
|
|
1446
1463
|
# process the form parameters
|
|
1447
1464
|
# process the body parameter
|
|
@@ -88,7 +88,7 @@ class ApiClient:
|
|
|
88
88
|
self.default_headers[header_name] = header_value
|
|
89
89
|
self.cookie = cookie
|
|
90
90
|
# Set default User-Agent.
|
|
91
|
-
self.user_agent = 'OpenAPI-Generator/1.15.
|
|
91
|
+
self.user_agent = 'OpenAPI-Generator/1.15.263/python'
|
|
92
92
|
self.client_side_validation = configuration.client_side_validation
|
|
93
93
|
|
|
94
94
|
def __enter__(self):
|
|
@@ -380,7 +380,7 @@ class Configuration:
|
|
|
380
380
|
"OS: {env}\n"\
|
|
381
381
|
"Python Version: {pyversion}\n"\
|
|
382
382
|
"Version of the API: 1.15.0\n"\
|
|
383
|
-
"SDK Package Version: 1.15.
|
|
383
|
+
"SDK Package Version: 1.15.263".\
|
|
384
384
|
format(env=sys.platform, pyversion=sys.version)
|
|
385
385
|
|
|
386
386
|
def get_host_settings(self):
|
{scc_firewall_manager_sdk-1.15.261.dist-info → scc_firewall_manager_sdk-1.15.263.dist-info}/RECORD
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
scc_firewall_manager_sdk/__init__.py,sha256=
|
|
2
|
-
scc_firewall_manager_sdk/api_client.py,sha256=
|
|
1
|
+
scc_firewall_manager_sdk/__init__.py,sha256=mZIHYRAONp_IEsK7asrBpIAMhPgTscpOB-nOjX3AhTE,23421
|
|
2
|
+
scc_firewall_manager_sdk/api_client.py,sha256=AJWYLU8bmjEKvwosnwV-h7SNVhQSWy1kiKg_lnkGkx8,25921
|
|
3
3
|
scc_firewall_manager_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
scc_firewall_manager_sdk/configuration.py,sha256=
|
|
4
|
+
scc_firewall_manager_sdk/configuration.py,sha256=8usvXq6BdflIeh_u7cecwF94KzZ4VJ0vpGKWBfRShN0,15993
|
|
5
5
|
scc_firewall_manager_sdk/exceptions.py,sha256=u5-7l5MRjP-aS2pNudBzqSw9OI4xVsIvUjw4WCA8LEk,6039
|
|
6
6
|
scc_firewall_manager_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
scc_firewall_manager_sdk/rest.py,sha256=cSeilvAB5y-V_10IdXcZ0kOyv5dYW8jeWVhrD6kUDa0,9309
|
|
@@ -15,7 +15,7 @@ scc_firewall_manager_sdk/api/change_requests_api.py,sha256=zCdwKO8E5Jv_4cHGp8PT3
|
|
|
15
15
|
scc_firewall_manager_sdk/api/changelogs_api.py,sha256=6C4ugk1SwLgJfCM-q-_H2gnNoWB7jYqhUhpIDSUbY-4,30875
|
|
16
16
|
scc_firewall_manager_sdk/api/command_line_interface_api.py,sha256=_sUPKdTkBkXNbk5m9iGH1t-eYJbFdzDLjLAuNMWJqYc,110872
|
|
17
17
|
scc_firewall_manager_sdk/api/commands_api.py,sha256=U1cDPCmUAgOPnCOC8KcbcQpLGSwgOBBgHUcKH6JmWK4,33891
|
|
18
|
-
scc_firewall_manager_sdk/api/connectors_api.py,sha256=
|
|
18
|
+
scc_firewall_manager_sdk/api/connectors_api.py,sha256=2Qy39kPWn3OtI3DGBVfQvnXkV0ewdp_wOHHL0JkDUrc,73268
|
|
19
19
|
scc_firewall_manager_sdk/api/device_health_aggregations_api.py,sha256=r4YyX6_HDWriUOh9dRFmjNzY08rozUatGOjpFzhkyJ4,29025
|
|
20
20
|
scc_firewall_manager_sdk/api/device_health_api.py,sha256=UoxgUo10Am1kga8U0Kxhb6DDw6d7wpXxzGopsvUJ1JI,62283
|
|
21
21
|
scc_firewall_manager_sdk/api/device_upgrades_api.py,sha256=nEtjWfCJ9eDVONZ0TLUApEcanm82CwcXTuax7kUVZxs,138514
|
|
@@ -281,7 +281,7 @@ scc_firewall_manager_sdk/models/vlan_interface_create_input.py,sha256=AKUqPJw5ku
|
|
|
281
281
|
scc_firewall_manager_sdk/models/vlan_interface_patch_input.py,sha256=srEFTyQykscNrWsbp8KGEzbmHC07_AU3DXjJ-7Be4zc,6054
|
|
282
282
|
scc_firewall_manager_sdk/models/ztp_onboarding_input.py,sha256=HAgBTdocZeHGDZP_-9NyRtzP9E7BReGtiOmn4S3J-_g,5326
|
|
283
283
|
scc_firewall_manager_sdk/models/ztp_onboarding_template_configuration.py,sha256=f9Z62yGFvz4QAQ07Z4bjfHLw2bRg46ccwoLuQ8q30TE,4808
|
|
284
|
-
scc_firewall_manager_sdk-1.15.
|
|
285
|
-
scc_firewall_manager_sdk-1.15.
|
|
286
|
-
scc_firewall_manager_sdk-1.15.
|
|
287
|
-
scc_firewall_manager_sdk-1.15.
|
|
284
|
+
scc_firewall_manager_sdk-1.15.263.dist-info/METADATA,sha256=mof1BmVAMRUB5G69VPBqKpKYkzyOMOA3IqsrbFbciB4,596
|
|
285
|
+
scc_firewall_manager_sdk-1.15.263.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
286
|
+
scc_firewall_manager_sdk-1.15.263.dist-info/top_level.txt,sha256=_g9WfFWGagKs6ULdfhEt8e7RXknpcp9_jA9ubIL4U3I,25
|
|
287
|
+
scc_firewall_manager_sdk-1.15.263.dist-info/RECORD,,
|
{scc_firewall_manager_sdk-1.15.261.dist-info → scc_firewall_manager_sdk-1.15.263.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|