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
@@ -4489,8 +4489,8 @@ class InventoryApi:
4489
4489
  @validate_call
4490
4490
  def get_cloud_services(
4491
4491
  self,
4492
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
4493
- 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,
4492
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
4493
+ 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,
4494
4494
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
4495
4495
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
4496
4496
  _request_timeout: Union[
@@ -4510,9 +4510,9 @@ class InventoryApi:
4510
4510
 
4511
4511
  Get a list of Cloud Services in the Security Cloud Control tenant.
4512
4512
 
4513
- :param limit: The number of results to retrieve.
4513
+ :param limit: Number of results to retrieve.
4514
4514
  :type limit: str
4515
- :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.
4515
+ :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.
4516
4516
  :type offset: str
4517
4517
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
4518
4518
  :type q: str
@@ -4572,8 +4572,8 @@ class InventoryApi:
4572
4572
  @validate_call
4573
4573
  def get_cloud_services_with_http_info(
4574
4574
  self,
4575
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
4576
- 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,
4575
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
4576
+ 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,
4577
4577
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
4578
4578
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
4579
4579
  _request_timeout: Union[
@@ -4593,9 +4593,9 @@ class InventoryApi:
4593
4593
 
4594
4594
  Get a list of Cloud Services in the Security Cloud Control tenant.
4595
4595
 
4596
- :param limit: The number of results to retrieve.
4596
+ :param limit: Number of results to retrieve.
4597
4597
  :type limit: str
4598
- :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.
4598
+ :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.
4599
4599
  :type offset: str
4600
4600
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
4601
4601
  :type q: str
@@ -4655,8 +4655,8 @@ class InventoryApi:
4655
4655
  @validate_call
4656
4656
  def get_cloud_services_without_preload_content(
4657
4657
  self,
4658
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
4659
- 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,
4658
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
4659
+ 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,
4660
4660
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
4661
4661
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
4662
4662
  _request_timeout: Union[
@@ -4676,9 +4676,9 @@ class InventoryApi:
4676
4676
 
4677
4677
  Get a list of Cloud Services in the Security Cloud Control tenant.
4678
4678
 
4679
- :param limit: The number of results to retrieve.
4679
+ :param limit: Number of results to retrieve.
4680
4680
  :type limit: str
4681
- :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.
4681
+ :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.
4682
4682
  :type offset: str
4683
4683
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
4684
4684
  :type q: str
@@ -5907,8 +5907,8 @@ class InventoryApi:
5907
5907
  @validate_call
5908
5908
  def get_device_managers(
5909
5909
  self,
5910
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
5911
- 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,
5910
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
5911
+ 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,
5912
5912
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
5913
5913
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
5914
5914
  _request_timeout: Union[
@@ -5928,9 +5928,9 @@ class InventoryApi:
5928
5928
 
5929
5929
  Fetch a list of Device Managers (on-prem FMCs and cloud-delivered FMCs) in the Security Cloud Control tenant.
5930
5930
 
5931
- :param limit: The number of results to retrieve.
5931
+ :param limit: Number of results to retrieve.
5932
5932
  :type limit: str
5933
- :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.
5933
+ :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.
5934
5934
  :type offset: str
5935
5935
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
5936
5936
  :type q: str
@@ -5990,8 +5990,8 @@ class InventoryApi:
5990
5990
  @validate_call
5991
5991
  def get_device_managers_with_http_info(
5992
5992
  self,
5993
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
5994
- 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,
5993
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
5994
+ 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,
5995
5995
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
5996
5996
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
5997
5997
  _request_timeout: Union[
@@ -6011,9 +6011,9 @@ class InventoryApi:
6011
6011
 
6012
6012
  Fetch a list of Device Managers (on-prem FMCs and cloud-delivered FMCs) in the Security Cloud Control tenant.
6013
6013
 
6014
- :param limit: The number of results to retrieve.
6014
+ :param limit: Number of results to retrieve.
6015
6015
  :type limit: str
6016
- :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.
6016
+ :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.
6017
6017
  :type offset: str
6018
6018
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
6019
6019
  :type q: str
@@ -6073,8 +6073,8 @@ class InventoryApi:
6073
6073
  @validate_call
6074
6074
  def get_device_managers_without_preload_content(
6075
6075
  self,
6076
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
6077
- 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,
6076
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
6077
+ 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,
6078
6078
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
6079
6079
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
6080
6080
  _request_timeout: Union[
@@ -6094,9 +6094,9 @@ class InventoryApi:
6094
6094
 
6095
6095
  Fetch a list of Device Managers (on-prem FMCs and cloud-delivered FMCs) in the Security Cloud Control tenant.
6096
6096
 
6097
- :param limit: The number of results to retrieve.
6097
+ :param limit: Number of results to retrieve.
6098
6098
  :type limit: str
6099
- :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.
6099
+ :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.
6100
6100
  :type offset: str
6101
6101
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
6102
6102
  :type q: str
@@ -6231,8 +6231,8 @@ class InventoryApi:
6231
6231
  @validate_call
6232
6232
  def get_devices(
6233
6233
  self,
6234
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
6235
- 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,
6234
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
6235
+ 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,
6236
6236
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
6237
6237
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
6238
6238
  _request_timeout: Union[
@@ -6252,9 +6252,9 @@ class InventoryApi:
6252
6252
 
6253
6253
  Get a list of devices in the Security Cloud Control tenant.
6254
6254
 
6255
- :param limit: The number of results to retrieve.
6255
+ :param limit: Number of results to retrieve.
6256
6256
  :type limit: str
6257
- :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.
6257
+ :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.
6258
6258
  :type offset: str
6259
6259
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
6260
6260
  :type q: str
@@ -6315,8 +6315,8 @@ class InventoryApi:
6315
6315
  @validate_call
6316
6316
  def get_devices_with_http_info(
6317
6317
  self,
6318
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
6319
- 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,
6318
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
6319
+ 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,
6320
6320
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
6321
6321
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
6322
6322
  _request_timeout: Union[
@@ -6336,9 +6336,9 @@ class InventoryApi:
6336
6336
 
6337
6337
  Get a list of devices in the Security Cloud Control tenant.
6338
6338
 
6339
- :param limit: The number of results to retrieve.
6339
+ :param limit: Number of results to retrieve.
6340
6340
  :type limit: str
6341
- :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.
6341
+ :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.
6342
6342
  :type offset: str
6343
6343
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
6344
6344
  :type q: str
@@ -6399,8 +6399,8 @@ class InventoryApi:
6399
6399
  @validate_call
6400
6400
  def get_devices_without_preload_content(
6401
6401
  self,
6402
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
6403
- 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,
6402
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
6403
+ 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,
6404
6404
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
6405
6405
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
6406
6406
  _request_timeout: Union[
@@ -6420,9 +6420,9 @@ class InventoryApi:
6420
6420
 
6421
6421
  Get a list of devices in the Security Cloud Control tenant.
6422
6422
 
6423
- :param limit: The number of results to retrieve.
6423
+ :param limit: Number of results to retrieve.
6424
6424
  :type limit: str
6425
- :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.
6425
+ :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.
6426
6426
  :type offset: str
6427
6427
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
6428
6428
  :type q: str
@@ -7122,8 +7122,8 @@ class InventoryApi:
7122
7122
  @validate_call
7123
7123
  def get_template_devices(
7124
7124
  self,
7125
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
7126
- 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,
7125
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
7126
+ 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,
7127
7127
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
7128
7128
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
7129
7129
  _request_timeout: Union[
@@ -7143,9 +7143,9 @@ class InventoryApi:
7143
7143
 
7144
7144
  Get a list of template devices in the Security Cloud Control tenant.
7145
7145
 
7146
- :param limit: The number of results to retrieve.
7146
+ :param limit: Number of results to retrieve.
7147
7147
  :type limit: str
7148
- :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.
7148
+ :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.
7149
7149
  :type offset: str
7150
7150
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
7151
7151
  :type q: str
@@ -7205,8 +7205,8 @@ class InventoryApi:
7205
7205
  @validate_call
7206
7206
  def get_template_devices_with_http_info(
7207
7207
  self,
7208
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
7209
- 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,
7208
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
7209
+ 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,
7210
7210
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
7211
7211
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
7212
7212
  _request_timeout: Union[
@@ -7226,9 +7226,9 @@ class InventoryApi:
7226
7226
 
7227
7227
  Get a list of template devices in the Security Cloud Control tenant.
7228
7228
 
7229
- :param limit: The number of results to retrieve.
7229
+ :param limit: Number of results to retrieve.
7230
7230
  :type limit: str
7231
- :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.
7231
+ :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.
7232
7232
  :type offset: str
7233
7233
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
7234
7234
  :type q: str
@@ -7288,8 +7288,8 @@ class InventoryApi:
7288
7288
  @validate_call
7289
7289
  def get_template_devices_without_preload_content(
7290
7290
  self,
7291
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
7292
- 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,
7291
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
7292
+ 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,
7293
7293
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
7294
7294
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
7295
7295
  _request_timeout: Union[
@@ -7309,9 +7309,9 @@ class InventoryApi:
7309
7309
 
7310
7310
  Get a list of template devices in the Security Cloud Control tenant.
7311
7311
 
7312
- :param limit: The number of results to retrieve.
7312
+ :param limit: Number of results to retrieve.
7313
7313
  :type limit: str
7314
- :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.
7314
+ :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.
7315
7315
  :type offset: str
7316
7316
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
7317
7317
  :type q: str