scc-firewall-manager-sdk 1.15.287__py3-none-any.whl → 1.15.563__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.
Files changed (50) hide show
  1. scc_firewall_manager_sdk/__init__.py +9 -1
  2. scc_firewall_manager_sdk/api/__init__.py +2 -0
  3. scc_firewall_manager_sdk/api/ai_assistant_api.py +12 -12
  4. scc_firewall_manager_sdk/api/asa_access_groups_api.py +12 -12
  5. scc_firewall_manager_sdk/api/asa_access_rules_api.py +12 -12
  6. scc_firewall_manager_sdk/api/asa_interfaces_api.py +72 -72
  7. scc_firewall_manager_sdk/api/audit_logs_api.py +12 -12
  8. scc_firewall_manager_sdk/api/change_requests_api.py +12 -12
  9. scc_firewall_manager_sdk/api/changelogs_api.py +12 -12
  10. scc_firewall_manager_sdk/api/command_line_interface_api.py +24 -24
  11. scc_firewall_manager_sdk/api/connectors_api.py +12 -313
  12. scc_firewall_manager_sdk/api/device_health_aggregations_api.py +6 -6
  13. scc_firewall_manager_sdk/api/device_upgrades_api.py +15 -15
  14. scc_firewall_manager_sdk/api/events_api.py +358 -0
  15. scc_firewall_manager_sdk/api/interface_health_aggregations_api.py +6 -6
  16. scc_firewall_manager_sdk/api/inventory_api.py +48 -48
  17. scc_firewall_manager_sdk/api/licensing_api.py +626 -0
  18. scc_firewall_manager_sdk/api/msp_device_upgrades_api.py +53 -24
  19. scc_firewall_manager_sdk/api/msp_inventory_api.py +48 -48
  20. scc_firewall_manager_sdk/api/msp_tenant_management_api.py +41 -12
  21. scc_firewall_manager_sdk/api/msp_user_management_api.py +24 -24
  22. scc_firewall_manager_sdk/api/remote_access_monitoring_api.py +24 -24
  23. scc_firewall_manager_sdk/api/tenant_management_api.py +21 -18
  24. scc_firewall_manager_sdk/api/users_api.py +30 -30
  25. scc_firewall_manager_sdk/api_client.py +1 -1
  26. scc_firewall_manager_sdk/configuration.py +1 -1
  27. scc_firewall_manager_sdk/models/__init__.py +6 -0
  28. scc_firewall_manager_sdk/models/access_group.py +1 -1
  29. scc_firewall_manager_sdk/models/cdo_transaction.py +12 -12
  30. scc_firewall_manager_sdk/models/common_api_error.py +3 -3
  31. scc_firewall_manager_sdk/models/completion_status_dto.py +104 -0
  32. scc_firewall_manager_sdk/models/device_license_dto.py +133 -0
  33. scc_firewall_manager_sdk/models/device_license_page.py +102 -0
  34. scc_firewall_manager_sdk/models/device_upgrade_status_dto.py +13 -7
  35. scc_firewall_manager_sdk/models/enable_cd_fmc_for_tenant_request.py +88 -0
  36. scc_firewall_manager_sdk/models/log_settings.py +1 -1
  37. scc_firewall_manager_sdk/models/msp_calculate_compatible_upgrade_versions_input.py +1 -1
  38. scc_firewall_manager_sdk/models/msp_managed_device.py +7 -1
  39. scc_firewall_manager_sdk/models/msp_managed_device_distinct_attribute_values.py +5 -1
  40. scc_firewall_manager_sdk/models/msp_upgrade_ftd_devices_input.py +97 -0
  41. scc_firewall_manager_sdk/models/msp_upgrade_run_dto.py +9 -9
  42. scc_firewall_manager_sdk/models/msp_upgrade_runs_attribute_values.py +18 -3
  43. scc_firewall_manager_sdk/models/smart_account.py +90 -0
  44. scc_firewall_manager_sdk/models/tenant_settings.py +3 -1
  45. scc_firewall_manager_sdk/models/upgrade_run_dto.py +1 -1
  46. scc_firewall_manager_sdk/models/upgrade_run_metadata_dto.py +1 -1
  47. {scc_firewall_manager_sdk-1.15.287.dist-info → scc_firewall_manager_sdk-1.15.563.dist-info}/METADATA +1 -1
  48. {scc_firewall_manager_sdk-1.15.287.dist-info → scc_firewall_manager_sdk-1.15.563.dist-info}/RECORD +50 -42
  49. {scc_firewall_manager_sdk-1.15.287.dist-info → scc_firewall_manager_sdk-1.15.563.dist-info}/WHEEL +0 -0
  50. {scc_firewall_manager_sdk-1.15.287.dist-info → scc_firewall_manager_sdk-1.15.563.dist-info}/top_level.txt +0 -0
@@ -22,6 +22,7 @@ from typing import List, Optional
22
22
  from typing_extensions import Annotated
23
23
  from scc_firewall_manager_sdk.models.cdo_transaction import CdoTransaction
24
24
  from scc_firewall_manager_sdk.models.msp_calculate_compatible_upgrade_versions_input import MspCalculateCompatibleUpgradeVersionsInput
25
+ from scc_firewall_manager_sdk.models.msp_upgrade_ftd_devices_input import MspUpgradeFtdDevicesInput
25
26
  from scc_firewall_manager_sdk.models.msp_upgrade_run_dto import MspUpgradeRunDto
26
27
  from scc_firewall_manager_sdk.models.msp_upgrade_run_dto_page import MspUpgradeRunDtoPage
27
28
  from scc_firewall_manager_sdk.models.msp_upgrade_runs_attribute_values import MspUpgradeRunsAttributeValues
@@ -64,7 +65,7 @@ class MSPDeviceUpgradesApi:
64
65
  ) -> CdoTransaction:
65
66
  """Calculate compatible FTD upgrade versions
66
67
 
67
- This is an asynchronous operation to calculate a list of compatible upgrade versions for a list of CdFMC-managed FTD devices across multiple managed tenants.
68
+ An asynchronous operation to calculate a list of compatible upgrade versions for a list of CdFMC-managed FTD devices across multiple managed tenants.
68
69
 
69
70
  :param msp_calculate_compatible_upgrade_versions_input: (required)
70
71
  :type msp_calculate_compatible_upgrade_versions_input: MspCalculateCompatibleUpgradeVersionsInput
@@ -137,7 +138,7 @@ class MSPDeviceUpgradesApi:
137
138
  ) -> ApiResponse[CdoTransaction]:
138
139
  """Calculate compatible FTD upgrade versions
139
140
 
140
- This is an asynchronous operation to calculate a list of compatible upgrade versions for a list of CdFMC-managed FTD devices across multiple managed tenants.
141
+ An asynchronous operation to calculate a list of compatible upgrade versions for a list of CdFMC-managed FTD devices across multiple managed tenants.
141
142
 
142
143
  :param msp_calculate_compatible_upgrade_versions_input: (required)
143
144
  :type msp_calculate_compatible_upgrade_versions_input: MspCalculateCompatibleUpgradeVersionsInput
@@ -210,7 +211,7 @@ class MSPDeviceUpgradesApi:
210
211
  ) -> RESTResponseType:
211
212
  """Calculate compatible FTD upgrade versions
212
213
 
213
- This is an asynchronous operation to calculate a list of compatible upgrade versions for a list of CdFMC-managed FTD devices across multiple managed tenants.
214
+ An asynchronous operation to calculate a list of compatible upgrade versions for a list of CdFMC-managed FTD devices across multiple managed tenants.
214
215
 
215
216
  :param msp_calculate_compatible_upgrade_versions_input: (required)
216
217
  :type msp_calculate_compatible_upgrade_versions_input: MspCalculateCompatibleUpgradeVersionsInput
@@ -353,7 +354,7 @@ class MSPDeviceUpgradesApi:
353
354
  ) -> None:
354
355
  """Delete MSP Device Upgrade Run
355
356
 
356
- Delete a MSP Device Upgrade Run by UID in the SCC Firewall Manager Tenant. Warning: if you delete an upgrade run currently in progress, you may end up allowing multiple upgrades to be triggered on devices.
357
+ Delete a MSP Device Upgrade Run, by UID, in the SCC Firewall Manager tenant. Caution: If you delete an upgrade run currently in progress, you may end up allowing multiple upgrades to be triggered on devices.
357
358
 
358
359
  :param uid: The unique identifier, represented as a UUID, of the FTD Device Upgrade Run in SCC Firewall Manager. (required)
359
360
  :type uid: str
@@ -421,7 +422,7 @@ class MSPDeviceUpgradesApi:
421
422
  ) -> ApiResponse[None]:
422
423
  """Delete MSP Device Upgrade Run
423
424
 
424
- Delete a MSP Device Upgrade Run by UID in the SCC Firewall Manager Tenant. Warning: if you delete an upgrade run currently in progress, you may end up allowing multiple upgrades to be triggered on devices.
425
+ Delete a MSP Device Upgrade Run, by UID, in the SCC Firewall Manager tenant. Caution: If you delete an upgrade run currently in progress, you may end up allowing multiple upgrades to be triggered on devices.
425
426
 
426
427
  :param uid: The unique identifier, represented as a UUID, of the FTD Device Upgrade Run in SCC Firewall Manager. (required)
427
428
  :type uid: str
@@ -489,7 +490,7 @@ class MSPDeviceUpgradesApi:
489
490
  ) -> RESTResponseType:
490
491
  """Delete MSP Device Upgrade Run
491
492
 
492
- Delete a MSP Device Upgrade Run by UID in the SCC Firewall Manager Tenant. Warning: if you delete an upgrade run currently in progress, you may end up allowing multiple upgrades to be triggered on devices.
493
+ Delete a MSP Device Upgrade Run, by UID, in the SCC Firewall Manager tenant. Caution: If you delete an upgrade run currently in progress, you may end up allowing multiple upgrades to be triggered on devices.
493
494
 
494
495
  :param uid: The unique identifier, represented as a UUID, of the FTD Device Upgrade Run in SCC Firewall Manager. (required)
495
496
  :type uid: str
@@ -862,8 +863,8 @@ class MSPDeviceUpgradesApi:
862
863
  @validate_call
863
864
  def get_msp_device_upgrade_runs(
864
865
  self,
865
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
866
- 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,
866
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
867
+ offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.")] = None,
867
868
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
868
869
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
869
870
  _request_timeout: Union[
@@ -883,9 +884,9 @@ class MSPDeviceUpgradesApi:
883
884
 
884
885
  Get a list of MSP device upgrade runs in the SCC Firewall Manager Tenant. Each upgrade run represents a group of devices across multiple managed tenants being upgraded, or staged for upgrades, together.
885
886
 
886
- :param limit: The number of results to retrieve.
887
+ :param limit: Number of results to retrieve.
887
888
  :type limit: str
888
- :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.
889
+ :param offset: Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.
889
890
  :type offset: str
890
891
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
891
892
  :type q: str
@@ -942,8 +943,8 @@ class MSPDeviceUpgradesApi:
942
943
  @validate_call
943
944
  def get_msp_device_upgrade_runs_with_http_info(
944
945
  self,
945
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
946
- 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,
946
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
947
+ offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.")] = None,
947
948
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
948
949
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
949
950
  _request_timeout: Union[
@@ -963,9 +964,9 @@ class MSPDeviceUpgradesApi:
963
964
 
964
965
  Get a list of MSP device upgrade runs in the SCC Firewall Manager Tenant. Each upgrade run represents a group of devices across multiple managed tenants being upgraded, or staged for upgrades, together.
965
966
 
966
- :param limit: The number of results to retrieve.
967
+ :param limit: Number of results to retrieve.
967
968
  :type limit: str
968
- :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.
969
+ :param offset: Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.
969
970
  :type offset: str
970
971
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
971
972
  :type q: str
@@ -1022,8 +1023,8 @@ class MSPDeviceUpgradesApi:
1022
1023
  @validate_call
1023
1024
  def get_msp_device_upgrade_runs_without_preload_content(
1024
1025
  self,
1025
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
1026
- 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,
1026
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
1027
+ offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.")] = None,
1027
1028
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
1028
1029
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
1029
1030
  _request_timeout: Union[
@@ -1043,9 +1044,9 @@ class MSPDeviceUpgradesApi:
1043
1044
 
1044
1045
  Get a list of MSP device upgrade runs in the SCC Firewall Manager Tenant. Each upgrade run represents a group of devices across multiple managed tenants being upgraded, or staged for upgrades, together.
1045
1046
 
1046
- :param limit: The number of results to retrieve.
1047
+ :param limit: Number of results to retrieve.
1047
1048
  :type limit: str
1048
- :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.
1049
+ :param offset: Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.
1049
1050
  :type offset: str
1050
1051
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
1051
1052
  :type q: str
@@ -1177,7 +1178,7 @@ class MSPDeviceUpgradesApi:
1177
1178
  @validate_call
1178
1179
  def get_msp_ftd_compatible_upgrade_versions(
1179
1180
  self,
1180
- upgrade_version_uid: Annotated[StrictStr, Field(description="The unique identifier, represented as a UUID, of the Device Upgrade Version object in SCC Firewall Manager.")],
1181
+ upgrade_version_uid: Annotated[StrictStr, Field(description="Unique identifier, represented as a UUID, of the Device Upgrade Version object in SCC Firewall Manager.")],
1181
1182
  _request_timeout: Union[
1182
1183
  None,
1183
1184
  Annotated[StrictFloat, Field(gt=0)],
@@ -1195,7 +1196,7 @@ class MSPDeviceUpgradesApi:
1195
1196
 
1196
1197
  Get a Device Upgrade Run by UID in the SCC Firewall Manager Tenant. Each upgrade run represents a group of devices being upgraded, or staged for upgrades, together.
1197
1198
 
1198
- :param upgrade_version_uid: The unique identifier, represented as a UUID, of the Device Upgrade Version object in SCC Firewall Manager. (required)
1199
+ :param upgrade_version_uid: Unique identifier, represented as a UUID, of the Device Upgrade Version object in SCC Firewall Manager. (required)
1199
1200
  :type upgrade_version_uid: str
1200
1201
  :param _request_timeout: timeout setting for this request. If one
1201
1202
  number provided, it will be total request
@@ -1249,7 +1250,7 @@ class MSPDeviceUpgradesApi:
1249
1250
  @validate_call
1250
1251
  def get_msp_ftd_compatible_upgrade_versions_with_http_info(
1251
1252
  self,
1252
- upgrade_version_uid: Annotated[StrictStr, Field(description="The unique identifier, represented as a UUID, of the Device Upgrade Version object in SCC Firewall Manager.")],
1253
+ upgrade_version_uid: Annotated[StrictStr, Field(description="Unique identifier, represented as a UUID, of the Device Upgrade Version object in SCC Firewall Manager.")],
1253
1254
  _request_timeout: Union[
1254
1255
  None,
1255
1256
  Annotated[StrictFloat, Field(gt=0)],
@@ -1267,7 +1268,7 @@ class MSPDeviceUpgradesApi:
1267
1268
 
1268
1269
  Get a Device Upgrade Run by UID in the SCC Firewall Manager Tenant. Each upgrade run represents a group of devices being upgraded, or staged for upgrades, together.
1269
1270
 
1270
- :param upgrade_version_uid: The unique identifier, represented as a UUID, of the Device Upgrade Version object in SCC Firewall Manager. (required)
1271
+ :param upgrade_version_uid: Unique identifier, represented as a UUID, of the Device Upgrade Version object in SCC Firewall Manager. (required)
1271
1272
  :type upgrade_version_uid: str
1272
1273
  :param _request_timeout: timeout setting for this request. If one
1273
1274
  number provided, it will be total request
@@ -1321,7 +1322,7 @@ class MSPDeviceUpgradesApi:
1321
1322
  @validate_call
1322
1323
  def get_msp_ftd_compatible_upgrade_versions_without_preload_content(
1323
1324
  self,
1324
- upgrade_version_uid: Annotated[StrictStr, Field(description="The unique identifier, represented as a UUID, of the Device Upgrade Version object in SCC Firewall Manager.")],
1325
+ upgrade_version_uid: Annotated[StrictStr, Field(description="Unique identifier, represented as a UUID, of the Device Upgrade Version object in SCC Firewall Manager.")],
1325
1326
  _request_timeout: Union[
1326
1327
  None,
1327
1328
  Annotated[StrictFloat, Field(gt=0)],
@@ -1339,7 +1340,7 @@ class MSPDeviceUpgradesApi:
1339
1340
 
1340
1341
  Get a Device Upgrade Run by UID in the SCC Firewall Manager Tenant. Each upgrade run represents a group of devices being upgraded, or staged for upgrades, together.
1341
1342
 
1342
- :param upgrade_version_uid: The unique identifier, represented as a UUID, of the Device Upgrade Version object in SCC Firewall Manager. (required)
1343
+ :param upgrade_version_uid: Unique identifier, represented as a UUID, of the Device Upgrade Version object in SCC Firewall Manager. (required)
1343
1344
  :type upgrade_version_uid: str
1344
1345
  :param _request_timeout: timeout setting for this request. If one
1345
1346
  number provided, it will be total request
@@ -1696,6 +1697,7 @@ class MSPDeviceUpgradesApi:
1696
1697
  @validate_call
1697
1698
  def upgrade_msp_managed_ftd_devices(
1698
1699
  self,
1700
+ msp_upgrade_ftd_devices_input: MspUpgradeFtdDevicesInput,
1699
1701
  _request_timeout: Union[
1700
1702
  None,
1701
1703
  Annotated[StrictFloat, Field(gt=0)],
@@ -1713,6 +1715,8 @@ class MSPDeviceUpgradesApi:
1713
1715
 
1714
1716
  <p>Asynchronous operation to upgrade multiple FTD devices across managed tenants.</p> <p><strong>Notes:</strong></p> <ul> <li>Maximum of 50 FTD devices per hardware model per managed tenant per request</li> </ul> <p><strong>Response:</strong></p> <ul> <li>Returns a transaction object to track upgrade operation progress</li> <li>Use the transaction ID or the entity UID to monitor the status of the upgrade</li> </ul>
1715
1717
 
1718
+ :param msp_upgrade_ftd_devices_input: (required)
1719
+ :type msp_upgrade_ftd_devices_input: MspUpgradeFtdDevicesInput
1716
1720
  :param _request_timeout: timeout setting for this request. If one
1717
1721
  number provided, it will be total request
1718
1722
  timeout. It can also be a pair (tuple) of
@@ -1736,6 +1740,7 @@ class MSPDeviceUpgradesApi:
1736
1740
  """ # noqa: E501
1737
1741
 
1738
1742
  _param = self._upgrade_msp_managed_ftd_devices_serialize(
1743
+ msp_upgrade_ftd_devices_input=msp_upgrade_ftd_devices_input,
1739
1744
  _request_auth=_request_auth,
1740
1745
  _content_type=_content_type,
1741
1746
  _headers=_headers,
@@ -1760,6 +1765,7 @@ class MSPDeviceUpgradesApi:
1760
1765
  @validate_call
1761
1766
  def upgrade_msp_managed_ftd_devices_with_http_info(
1762
1767
  self,
1768
+ msp_upgrade_ftd_devices_input: MspUpgradeFtdDevicesInput,
1763
1769
  _request_timeout: Union[
1764
1770
  None,
1765
1771
  Annotated[StrictFloat, Field(gt=0)],
@@ -1777,6 +1783,8 @@ class MSPDeviceUpgradesApi:
1777
1783
 
1778
1784
  <p>Asynchronous operation to upgrade multiple FTD devices across managed tenants.</p> <p><strong>Notes:</strong></p> <ul> <li>Maximum of 50 FTD devices per hardware model per managed tenant per request</li> </ul> <p><strong>Response:</strong></p> <ul> <li>Returns a transaction object to track upgrade operation progress</li> <li>Use the transaction ID or the entity UID to monitor the status of the upgrade</li> </ul>
1779
1785
 
1786
+ :param msp_upgrade_ftd_devices_input: (required)
1787
+ :type msp_upgrade_ftd_devices_input: MspUpgradeFtdDevicesInput
1780
1788
  :param _request_timeout: timeout setting for this request. If one
1781
1789
  number provided, it will be total request
1782
1790
  timeout. It can also be a pair (tuple) of
@@ -1800,6 +1808,7 @@ class MSPDeviceUpgradesApi:
1800
1808
  """ # noqa: E501
1801
1809
 
1802
1810
  _param = self._upgrade_msp_managed_ftd_devices_serialize(
1811
+ msp_upgrade_ftd_devices_input=msp_upgrade_ftd_devices_input,
1803
1812
  _request_auth=_request_auth,
1804
1813
  _content_type=_content_type,
1805
1814
  _headers=_headers,
@@ -1824,6 +1833,7 @@ class MSPDeviceUpgradesApi:
1824
1833
  @validate_call
1825
1834
  def upgrade_msp_managed_ftd_devices_without_preload_content(
1826
1835
  self,
1836
+ msp_upgrade_ftd_devices_input: MspUpgradeFtdDevicesInput,
1827
1837
  _request_timeout: Union[
1828
1838
  None,
1829
1839
  Annotated[StrictFloat, Field(gt=0)],
@@ -1841,6 +1851,8 @@ class MSPDeviceUpgradesApi:
1841
1851
 
1842
1852
  <p>Asynchronous operation to upgrade multiple FTD devices across managed tenants.</p> <p><strong>Notes:</strong></p> <ul> <li>Maximum of 50 FTD devices per hardware model per managed tenant per request</li> </ul> <p><strong>Response:</strong></p> <ul> <li>Returns a transaction object to track upgrade operation progress</li> <li>Use the transaction ID or the entity UID to monitor the status of the upgrade</li> </ul>
1843
1853
 
1854
+ :param msp_upgrade_ftd_devices_input: (required)
1855
+ :type msp_upgrade_ftd_devices_input: MspUpgradeFtdDevicesInput
1844
1856
  :param _request_timeout: timeout setting for this request. If one
1845
1857
  number provided, it will be total request
1846
1858
  timeout. It can also be a pair (tuple) of
@@ -1864,6 +1876,7 @@ class MSPDeviceUpgradesApi:
1864
1876
  """ # noqa: E501
1865
1877
 
1866
1878
  _param = self._upgrade_msp_managed_ftd_devices_serialize(
1879
+ msp_upgrade_ftd_devices_input=msp_upgrade_ftd_devices_input,
1867
1880
  _request_auth=_request_auth,
1868
1881
  _content_type=_content_type,
1869
1882
  _headers=_headers,
@@ -1883,6 +1896,7 @@ class MSPDeviceUpgradesApi:
1883
1896
 
1884
1897
  def _upgrade_msp_managed_ftd_devices_serialize(
1885
1898
  self,
1899
+ msp_upgrade_ftd_devices_input,
1886
1900
  _request_auth,
1887
1901
  _content_type,
1888
1902
  _headers,
@@ -1906,6 +1920,8 @@ class MSPDeviceUpgradesApi:
1906
1920
  # process the header parameters
1907
1921
  # process the form parameters
1908
1922
  # process the body parameter
1923
+ if msp_upgrade_ftd_devices_input is not None:
1924
+ _body_params = msp_upgrade_ftd_devices_input
1909
1925
 
1910
1926
 
1911
1927
  # set the HTTP header `Accept`
@@ -1915,6 +1931,19 @@ class MSPDeviceUpgradesApi:
1915
1931
  ]
1916
1932
  )
1917
1933
 
1934
+ # set the HTTP header `Content-Type`
1935
+ if _content_type:
1936
+ _header_params['Content-Type'] = _content_type
1937
+ else:
1938
+ _default_content_type = (
1939
+ self.api_client.select_header_content_type(
1940
+ [
1941
+ 'application/json'
1942
+ ]
1943
+ )
1944
+ )
1945
+ if _default_content_type is not None:
1946
+ _header_params['Content-Type'] = _default_content_type
1918
1947
 
1919
1948
  # authentication setting
1920
1949
  _auth_settings: List[str] = [
@@ -1416,8 +1416,8 @@ class MSPInventoryApi:
1416
1416
  @validate_call
1417
1417
  def get_msp_managed_cloud_services(
1418
1418
  self,
1419
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
1420
- 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,
1419
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
1420
+ offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.")] = None,
1421
1421
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
1422
1422
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
1423
1423
  _request_timeout: Union[
@@ -1437,9 +1437,9 @@ class MSPInventoryApi:
1437
1437
 
1438
1438
  Get cloud services, across all tenants, managed by the MSP portal.
1439
1439
 
1440
- :param limit: The number of results to retrieve.
1440
+ :param limit: Number of results to retrieve.
1441
1441
  :type limit: str
1442
- :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.
1442
+ :param offset: Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.
1443
1443
  :type offset: str
1444
1444
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
1445
1445
  :type q: str
@@ -1496,8 +1496,8 @@ class MSPInventoryApi:
1496
1496
  @validate_call
1497
1497
  def get_msp_managed_cloud_services_with_http_info(
1498
1498
  self,
1499
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
1500
- 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,
1499
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
1500
+ offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.")] = None,
1501
1501
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
1502
1502
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
1503
1503
  _request_timeout: Union[
@@ -1517,9 +1517,9 @@ class MSPInventoryApi:
1517
1517
 
1518
1518
  Get cloud services, across all tenants, managed by the MSP portal.
1519
1519
 
1520
- :param limit: The number of results to retrieve.
1520
+ :param limit: Number of results to retrieve.
1521
1521
  :type limit: str
1522
- :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.
1522
+ :param offset: Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.
1523
1523
  :type offset: str
1524
1524
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
1525
1525
  :type q: str
@@ -1576,8 +1576,8 @@ class MSPInventoryApi:
1576
1576
  @validate_call
1577
1577
  def get_msp_managed_cloud_services_without_preload_content(
1578
1578
  self,
1579
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
1580
- 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,
1579
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
1580
+ offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.")] = None,
1581
1581
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
1582
1582
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
1583
1583
  _request_timeout: Union[
@@ -1597,9 +1597,9 @@ class MSPInventoryApi:
1597
1597
 
1598
1598
  Get cloud services, across all tenants, managed by the MSP portal.
1599
1599
 
1600
- :param limit: The number of results to retrieve.
1600
+ :param limit: Number of results to retrieve.
1601
1601
  :type limit: str
1602
- :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.
1602
+ :param offset: Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.
1603
1603
  :type offset: str
1604
1604
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
1605
1605
  :type q: str
@@ -2505,8 +2505,8 @@ class MSPInventoryApi:
2505
2505
  @validate_call
2506
2506
  def get_msp_managed_device_managers(
2507
2507
  self,
2508
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
2509
- 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,
2508
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
2509
+ offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.")] = None,
2510
2510
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
2511
2511
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
2512
2512
  _request_timeout: Union[
@@ -2526,9 +2526,9 @@ class MSPInventoryApi:
2526
2526
 
2527
2527
  Get device managers, across all tenants, managed by the MSP portal.
2528
2528
 
2529
- :param limit: The number of results to retrieve.
2529
+ :param limit: Number of results to retrieve.
2530
2530
  :type limit: str
2531
- :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.
2531
+ :param offset: Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.
2532
2532
  :type offset: str
2533
2533
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
2534
2534
  :type q: str
@@ -2585,8 +2585,8 @@ class MSPInventoryApi:
2585
2585
  @validate_call
2586
2586
  def get_msp_managed_device_managers_with_http_info(
2587
2587
  self,
2588
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
2589
- 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,
2588
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
2589
+ offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.")] = None,
2590
2590
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
2591
2591
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
2592
2592
  _request_timeout: Union[
@@ -2606,9 +2606,9 @@ class MSPInventoryApi:
2606
2606
 
2607
2607
  Get device managers, across all tenants, managed by the MSP portal.
2608
2608
 
2609
- :param limit: The number of results to retrieve.
2609
+ :param limit: Number of results to retrieve.
2610
2610
  :type limit: str
2611
- :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.
2611
+ :param offset: Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.
2612
2612
  :type offset: str
2613
2613
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
2614
2614
  :type q: str
@@ -2665,8 +2665,8 @@ class MSPInventoryApi:
2665
2665
  @validate_call
2666
2666
  def get_msp_managed_device_managers_without_preload_content(
2667
2667
  self,
2668
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
2669
- 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,
2668
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
2669
+ offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.")] = None,
2670
2670
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
2671
2671
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
2672
2672
  _request_timeout: Union[
@@ -2686,9 +2686,9 @@ class MSPInventoryApi:
2686
2686
 
2687
2687
  Get device managers, across all tenants, managed by the MSP portal.
2688
2688
 
2689
- :param limit: The number of results to retrieve.
2689
+ :param limit: Number of results to retrieve.
2690
2690
  :type limit: str
2691
- :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.
2691
+ :param offset: Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.
2692
2692
  :type offset: str
2693
2693
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
2694
2694
  :type q: str
@@ -3066,8 +3066,8 @@ class MSPInventoryApi:
3066
3066
  @validate_call
3067
3067
  def get_msp_managed_devices(
3068
3068
  self,
3069
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
3070
- 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,
3069
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
3070
+ offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.")] = None,
3071
3071
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
3072
3072
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
3073
3073
  _request_timeout: Union[
@@ -3087,9 +3087,9 @@ class MSPInventoryApi:
3087
3087
 
3088
3088
  Get devices, across all tenants, managed by the MSP portal.
3089
3089
 
3090
- :param limit: The number of results to retrieve.
3090
+ :param limit: Number of results to retrieve.
3091
3091
  :type limit: str
3092
- :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.
3092
+ :param offset: Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.
3093
3093
  :type offset: str
3094
3094
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
3095
3095
  :type q: str
@@ -3146,8 +3146,8 @@ class MSPInventoryApi:
3146
3146
  @validate_call
3147
3147
  def get_msp_managed_devices_with_http_info(
3148
3148
  self,
3149
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
3150
- 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,
3149
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
3150
+ offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.")] = None,
3151
3151
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
3152
3152
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
3153
3153
  _request_timeout: Union[
@@ -3167,9 +3167,9 @@ class MSPInventoryApi:
3167
3167
 
3168
3168
  Get devices, across all tenants, managed by the MSP portal.
3169
3169
 
3170
- :param limit: The number of results to retrieve.
3170
+ :param limit: Number of results to retrieve.
3171
3171
  :type limit: str
3172
- :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.
3172
+ :param offset: Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.
3173
3173
  :type offset: str
3174
3174
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
3175
3175
  :type q: str
@@ -3226,8 +3226,8 @@ class MSPInventoryApi:
3226
3226
  @validate_call
3227
3227
  def get_msp_managed_devices_without_preload_content(
3228
3228
  self,
3229
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
3230
- 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,
3229
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
3230
+ offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.")] = None,
3231
3231
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
3232
3232
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
3233
3233
  _request_timeout: Union[
@@ -3247,9 +3247,9 @@ class MSPInventoryApi:
3247
3247
 
3248
3248
  Get devices, across all tenants, managed by the MSP portal.
3249
3249
 
3250
- :param limit: The number of results to retrieve.
3250
+ :param limit: Number of results to retrieve.
3251
3251
  :type limit: str
3252
- :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.
3252
+ :param offset: Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.
3253
3253
  :type offset: str
3254
3254
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
3255
3255
  :type q: str
@@ -4137,8 +4137,8 @@ class MSPInventoryApi:
4137
4137
  @validate_call
4138
4138
  def get_msp_managed_templates(
4139
4139
  self,
4140
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
4141
- 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,
4140
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
4141
+ offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.")] = None,
4142
4142
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
4143
4143
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
4144
4144
  _request_timeout: Union[
@@ -4158,9 +4158,9 @@ class MSPInventoryApi:
4158
4158
 
4159
4159
  Get templates, across all tenants, managed by the MSP portal.
4160
4160
 
4161
- :param limit: The number of results to retrieve.
4161
+ :param limit: Number of results to retrieve.
4162
4162
  :type limit: str
4163
- :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.
4163
+ :param offset: Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.
4164
4164
  :type offset: str
4165
4165
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
4166
4166
  :type q: str
@@ -4217,8 +4217,8 @@ class MSPInventoryApi:
4217
4217
  @validate_call
4218
4218
  def get_msp_managed_templates_with_http_info(
4219
4219
  self,
4220
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
4221
- 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,
4220
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
4221
+ offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.")] = None,
4222
4222
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
4223
4223
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
4224
4224
  _request_timeout: Union[
@@ -4238,9 +4238,9 @@ class MSPInventoryApi:
4238
4238
 
4239
4239
  Get templates, across all tenants, managed by the MSP portal.
4240
4240
 
4241
- :param limit: The number of results to retrieve.
4241
+ :param limit: Number of results to retrieve.
4242
4242
  :type limit: str
4243
- :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.
4243
+ :param offset: Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.
4244
4244
  :type offset: str
4245
4245
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
4246
4246
  :type q: str
@@ -4297,8 +4297,8 @@ class MSPInventoryApi:
4297
4297
  @validate_call
4298
4298
  def get_msp_managed_templates_without_preload_content(
4299
4299
  self,
4300
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
4301
- 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,
4300
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
4301
+ offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.")] = None,
4302
4302
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
4303
4303
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
4304
4304
  _request_timeout: Union[
@@ -4318,9 +4318,9 @@ class MSPInventoryApi:
4318
4318
 
4319
4319
  Get templates, across all tenants, managed by the MSP portal.
4320
4320
 
4321
- :param limit: The number of results to retrieve.
4321
+ :param limit: Number of results to retrieve.
4322
4322
  :type limit: str
4323
- :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.
4323
+ :param offset: Offset of the results retrieved. The Security Cloud Control APIs use the offset field to determine the index of the first result retrieved, and will retrieve `limit` results from the offset specified.
4324
4324
  :type offset: str
4325
4325
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
4326
4326
  :type q: str