scc-firewall-manager-sdk 1.15.292__py3-none-any.whl → 1.15.294__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.

@@ -15,7 +15,7 @@
15
15
  """ # noqa: E501
16
16
 
17
17
 
18
- __version__ = "1.15.292"
18
+ __version__ = "1.15.294"
19
19
 
20
20
  # import apis into sdk package
21
21
  from scc_firewall_manager_sdk.api.ai_assistant_api import AIAssistantApi
@@ -1201,6 +1201,7 @@ class ConnectorsApi:
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
1203
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
1204
+ sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
1204
1205
  _request_timeout: Union[
1205
1206
  None,
1206
1207
  Annotated[StrictFloat, Field(gt=0)],
@@ -1224,6 +1225,8 @@ class ConnectorsApi:
1224
1225
  :type offset: str
1225
1226
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
1226
1227
  :type q: str
1228
+ :param sort: The fields to sort results by.
1229
+ :type sort: List[str]
1227
1230
  :param _request_timeout: timeout setting for this request. If one
1228
1231
  number provided, it will be total request
1229
1232
  timeout. It can also be a pair (tuple) of
@@ -1250,6 +1253,7 @@ class ConnectorsApi:
1250
1253
  limit=limit,
1251
1254
  offset=offset,
1252
1255
  q=q,
1256
+ sort=sort,
1253
1257
  _request_auth=_request_auth,
1254
1258
  _content_type=_content_type,
1255
1259
  _headers=_headers,
@@ -1278,6 +1282,7 @@ class ConnectorsApi:
1278
1282
  limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
1279
1283
  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
1284
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
1285
+ sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
1281
1286
  _request_timeout: Union[
1282
1287
  None,
1283
1288
  Annotated[StrictFloat, Field(gt=0)],
@@ -1301,6 +1306,8 @@ class ConnectorsApi:
1301
1306
  :type offset: str
1302
1307
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
1303
1308
  :type q: str
1309
+ :param sort: The fields to sort results by.
1310
+ :type sort: List[str]
1304
1311
  :param _request_timeout: timeout setting for this request. If one
1305
1312
  number provided, it will be total request
1306
1313
  timeout. It can also be a pair (tuple) of
@@ -1327,6 +1334,7 @@ class ConnectorsApi:
1327
1334
  limit=limit,
1328
1335
  offset=offset,
1329
1336
  q=q,
1337
+ sort=sort,
1330
1338
  _request_auth=_request_auth,
1331
1339
  _content_type=_content_type,
1332
1340
  _headers=_headers,
@@ -1355,6 +1363,7 @@ class ConnectorsApi:
1355
1363
  limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
1356
1364
  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
1365
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
1366
+ sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
1358
1367
  _request_timeout: Union[
1359
1368
  None,
1360
1369
  Annotated[StrictFloat, Field(gt=0)],
@@ -1378,6 +1387,8 @@ class ConnectorsApi:
1378
1387
  :type offset: str
1379
1388
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
1380
1389
  :type q: str
1390
+ :param sort: The fields to sort results by.
1391
+ :type sort: List[str]
1381
1392
  :param _request_timeout: timeout setting for this request. If one
1382
1393
  number provided, it will be total request
1383
1394
  timeout. It can also be a pair (tuple) of
@@ -1404,6 +1415,7 @@ class ConnectorsApi:
1404
1415
  limit=limit,
1405
1416
  offset=offset,
1406
1417
  q=q,
1418
+ sort=sort,
1407
1419
  _request_auth=_request_auth,
1408
1420
  _content_type=_content_type,
1409
1421
  _headers=_headers,
@@ -1427,6 +1439,7 @@ class ConnectorsApi:
1427
1439
  limit,
1428
1440
  offset,
1429
1441
  q,
1442
+ sort,
1430
1443
  _request_auth,
1431
1444
  _content_type,
1432
1445
  _headers,
@@ -1436,6 +1449,7 @@ class ConnectorsApi:
1436
1449
  _host = None
1437
1450
 
1438
1451
  _collection_formats: Dict[str, str] = {
1452
+ 'sort': 'multi',
1439
1453
  }
1440
1454
 
1441
1455
  _path_params: Dict[str, str] = {}
@@ -1459,6 +1473,10 @@ class ConnectorsApi:
1459
1473
 
1460
1474
  _query_params.append(('q', q))
1461
1475
 
1476
+ if sort is not None:
1477
+
1478
+ _query_params.append(('sort', sort))
1479
+
1462
1480
  # process the header parameters
1463
1481
  # process the form parameters
1464
1482
  # 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.292/python'
91
+ self.user_agent = 'OpenAPI-Generator/1.15.294/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.292".\
383
+ "SDK Package Version: 1.15.294".\
384
384
  format(env=sys.platform, pyversion=sys.version)
385
385
 
386
386
  def get_host_settings(self):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: scc-firewall-manager-sdk
3
- Version: 1.15.292
3
+ Version: 1.15.294
4
4
  Summary: Cisco Security Cloud Control Firewall Manager API
5
5
  Home-page:
6
6
  Author: Cisco Security Cloud Control TAC
@@ -1,7 +1,7 @@
1
- scc_firewall_manager_sdk/__init__.py,sha256=0w0z8MT95tO-Bb3ly7wql0uMqLTAz3TTL8Q31E2JOQc,23529
2
- scc_firewall_manager_sdk/api_client.py,sha256=jEkPdO273jnMrLN9sicngpbhyvIAtn6SdvenPyyXzOw,25921
1
+ scc_firewall_manager_sdk/__init__.py,sha256=LRU0dx9T-jBOoMzGEKbTfx6OpeDKk2_WpzcHZ-fuq3Q,23529
2
+ scc_firewall_manager_sdk/api_client.py,sha256=Y_Vj-Vqc5nEhdheuMuefGUULOTkS-COsdEEBMiIqh6c,25921
3
3
  scc_firewall_manager_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- scc_firewall_manager_sdk/configuration.py,sha256=vOza74RWK1yW-NSTGBSJQAgnPPmXiP-9NtnTKy9UF2U,15993
4
+ scc_firewall_manager_sdk/configuration.py,sha256=ZcwfnBoRjqFO2HyWj0AaSmLlutaVy3qBFX0mrJrSwsw,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=2Qy39kPWn3OtI3DGBVfQvnXkV0ewdp_wOHHL0JkDUrc,73268
18
+ scc_firewall_manager_sdk/api/connectors_api.py,sha256=iw3uk0iMybwoR4DggTmqD-XukiXVeWfYSEmcTdwsfzU,74066
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
@@ -282,7 +282,7 @@ scc_firewall_manager_sdk/models/vlan_interface_create_input.py,sha256=AKUqPJw5ku
282
282
  scc_firewall_manager_sdk/models/vlan_interface_patch_input.py,sha256=srEFTyQykscNrWsbp8KGEzbmHC07_AU3DXjJ-7Be4zc,6054
283
283
  scc_firewall_manager_sdk/models/ztp_onboarding_input.py,sha256=HAgBTdocZeHGDZP_-9NyRtzP9E7BReGtiOmn4S3J-_g,5326
284
284
  scc_firewall_manager_sdk/models/ztp_onboarding_template_configuration.py,sha256=f9Z62yGFvz4QAQ07Z4bjfHLw2bRg46ccwoLuQ8q30TE,4808
285
- scc_firewall_manager_sdk-1.15.292.dist-info/METADATA,sha256=BlapIjFA9lzNxI79Ms-ed0OX230U9cckxUX8fh6pMlU,596
286
- scc_firewall_manager_sdk-1.15.292.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
287
- scc_firewall_manager_sdk-1.15.292.dist-info/top_level.txt,sha256=_g9WfFWGagKs6ULdfhEt8e7RXknpcp9_jA9ubIL4U3I,25
288
- scc_firewall_manager_sdk-1.15.292.dist-info/RECORD,,
285
+ scc_firewall_manager_sdk-1.15.294.dist-info/METADATA,sha256=4fTO1kBiyXoHAjcUBPk_j9nCHHVjauuSCDmPyh-wq9c,596
286
+ scc_firewall_manager_sdk-1.15.294.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
287
+ scc_firewall_manager_sdk-1.15.294.dist-info/top_level.txt,sha256=_g9WfFWGagKs6ULdfhEt8e7RXknpcp9_jA9ubIL4U3I,25
288
+ scc_firewall_manager_sdk-1.15.294.dist-info/RECORD,,