scc-firewall-manager-sdk 1.15.195__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 (58) hide show
  1. scc_firewall_manager_sdk/__init__.py +19 -2
  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 -12
  12. scc_firewall_manager_sdk/api/device_health_aggregations_api.py +19 -19
  13. scc_firewall_manager_sdk/api/device_upgrades_api.py +298 -297
  14. scc_firewall_manager_sdk/api/events_api.py +358 -0
  15. scc_firewall_manager_sdk/api/interface_health_aggregations_api.py +344 -0
  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 +1692 -37
  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/object_management_api.py +17 -0
  23. scc_firewall_manager_sdk/api/remote_access_monitoring_api.py +24 -24
  24. scc_firewall_manager_sdk/api/tenant_management_api.py +21 -18
  25. scc_firewall_manager_sdk/api/users_api.py +30 -30
  26. scc_firewall_manager_sdk/api_client.py +1 -1
  27. scc_firewall_manager_sdk/configuration.py +1 -1
  28. scc_firewall_manager_sdk/models/__init__.py +16 -1
  29. scc_firewall_manager_sdk/models/access_group.py +1 -1
  30. scc_firewall_manager_sdk/models/cdo_token_info.py +3 -1
  31. scc_firewall_manager_sdk/models/cdo_transaction.py +14 -14
  32. scc_firewall_manager_sdk/models/common_api_error.py +3 -3
  33. scc_firewall_manager_sdk/models/compatible_device_dto.py +100 -0
  34. scc_firewall_manager_sdk/models/compatible_version_info_dto.py +112 -0
  35. scc_firewall_manager_sdk/models/completion_status_dto.py +104 -0
  36. scc_firewall_manager_sdk/models/device_license_dto.py +133 -0
  37. scc_firewall_manager_sdk/models/device_license_page.py +102 -0
  38. scc_firewall_manager_sdk/models/{tenant_ftd_compatibility_version.py → device_upgrade_status_dto.py} +14 -18
  39. scc_firewall_manager_sdk/models/enable_cd_fmc_for_tenant_request.py +88 -0
  40. scc_firewall_manager_sdk/models/log_settings.py +1 -1
  41. scc_firewall_manager_sdk/models/metric_aggregation_list_item.py +12 -8
  42. scc_firewall_manager_sdk/models/msp_calculate_compatible_upgrade_versions_input.py +89 -0
  43. scc_firewall_manager_sdk/models/msp_managed_device.py +13 -1
  44. scc_firewall_manager_sdk/models/msp_managed_device_distinct_attribute_values.py +5 -1
  45. scc_firewall_manager_sdk/models/msp_upgrade_ftd_devices_input.py +97 -0
  46. scc_firewall_manager_sdk/models/msp_upgrade_run_dto.py +135 -0
  47. scc_firewall_manager_sdk/models/msp_upgrade_run_dto_page.py +102 -0
  48. scc_firewall_manager_sdk/models/msp_upgrade_runs_attribute_values.py +114 -0
  49. scc_firewall_manager_sdk/models/page.py +94 -0
  50. scc_firewall_manager_sdk/models/smart_account.py +90 -0
  51. scc_firewall_manager_sdk/models/tenant_settings.py +3 -1
  52. scc_firewall_manager_sdk/models/upgrade_compatibility_info_dto.py +107 -0
  53. scc_firewall_manager_sdk/models/upgrade_run_dto.py +14 -4
  54. scc_firewall_manager_sdk/models/upgrade_run_metadata_dto.py +96 -0
  55. {scc_firewall_manager_sdk-1.15.195.dist-info → scc_firewall_manager_sdk-1.15.563.dist-info}/METADATA +1 -1
  56. {scc_firewall_manager_sdk-1.15.195.dist-info → scc_firewall_manager_sdk-1.15.563.dist-info}/RECORD +58 -41
  57. {scc_firewall_manager_sdk-1.15.195.dist-info → scc_firewall_manager_sdk-1.15.563.dist-info}/WHEEL +0 -0
  58. {scc_firewall_manager_sdk-1.15.195.dist-info → scc_firewall_manager_sdk-1.15.563.dist-info}/top_level.txt +0 -0
@@ -15,7 +15,7 @@
15
15
  """ # noqa: E501
16
16
 
17
17
 
18
- __version__ = "1.15.195"
18
+ __version__ = "1.15.563"
19
19
 
20
20
  # import apis into sdk package
21
21
  from scc_firewall_manager_sdk.api.ai_assistant_api import AIAssistantApi
@@ -31,8 +31,10 @@ from scc_firewall_manager_sdk.api.connectors_api import ConnectorsApi
31
31
  from scc_firewall_manager_sdk.api.device_health_api import DeviceHealthApi
32
32
  from scc_firewall_manager_sdk.api.device_health_aggregations_api import DeviceHealthAggregationsApi
33
33
  from scc_firewall_manager_sdk.api.device_upgrades_api import DeviceUpgradesApi
34
+ from scc_firewall_manager_sdk.api.events_api import EventsApi
34
35
  from scc_firewall_manager_sdk.api.interface_health_aggregations_api import InterfaceHealthAggregationsApi
35
36
  from scc_firewall_manager_sdk.api.inventory_api import InventoryApi
37
+ from scc_firewall_manager_sdk.api.licensing_api import LicensingApi
36
38
  from scc_firewall_manager_sdk.api.msp_device_upgrades_api import MSPDeviceUpgradesApi
37
39
  from scc_firewall_manager_sdk.api.msp_inventory_api import MSPInventoryApi
38
40
  from scc_firewall_manager_sdk.api.msp_tenant_management_api import MSPTenantManagementApi
@@ -116,6 +118,9 @@ from scc_firewall_manager_sdk.models.cluster_node import ClusterNode
116
118
  from scc_firewall_manager_sdk.models.command import Command
117
119
  from scc_firewall_manager_sdk.models.command_response import CommandResponse
118
120
  from scc_firewall_manager_sdk.models.common_api_error import CommonApiError
121
+ from scc_firewall_manager_sdk.models.compatible_device_dto import CompatibleDeviceDto
122
+ from scc_firewall_manager_sdk.models.compatible_version_info_dto import CompatibleVersionInfoDto
123
+ from scc_firewall_manager_sdk.models.completion_status_dto import CompletionStatusDto
119
124
  from scc_firewall_manager_sdk.models.config_state import ConfigState
120
125
  from scc_firewall_manager_sdk.models.conflict_detection_interval import ConflictDetectionInterval
121
126
  from scc_firewall_manager_sdk.models.conflict_detection_state import ConflictDetectionState
@@ -134,18 +139,22 @@ from scc_firewall_manager_sdk.models.device_end_of_life_device_info import Devic
134
139
  from scc_firewall_manager_sdk.models.device_end_of_life_recommendation import DeviceEndOfLifeRecommendation
135
140
  from scc_firewall_manager_sdk.models.device_end_of_life_report import DeviceEndOfLifeReport
136
141
  from scc_firewall_manager_sdk.models.device_gateway_api_request import DeviceGatewayApiRequest
142
+ from scc_firewall_manager_sdk.models.device_license_dto import DeviceLicenseDto
143
+ from scc_firewall_manager_sdk.models.device_license_page import DeviceLicensePage
137
144
  from scc_firewall_manager_sdk.models.device_maintenance_window import DeviceMaintenanceWindow
138
145
  from scc_firewall_manager_sdk.models.device_manager_patch_input import DeviceManagerPatchInput
139
146
  from scc_firewall_manager_sdk.models.device_metadata import DeviceMetadata
140
147
  from scc_firewall_manager_sdk.models.device_page import DevicePage
141
148
  from scc_firewall_manager_sdk.models.device_patch_input import DevicePatchInput
142
149
  from scc_firewall_manager_sdk.models.device_role import DeviceRole
150
+ from scc_firewall_manager_sdk.models.device_upgrade_status_dto import DeviceUpgradeStatusDto
143
151
  from scc_firewall_manager_sdk.models.devices_patch_input import DevicesPatchInput
144
152
  from scc_firewall_manager_sdk.models.disk_health_metrics import DiskHealthMetrics
145
153
  from scc_firewall_manager_sdk.models.domain_settings import DomainSettings
146
154
  from scc_firewall_manager_sdk.models.duo_admin_panel_create_or_update_input import DuoAdminPanelCreateOrUpdateInput
147
155
  from scc_firewall_manager_sdk.models.duplex_type import DuplexType
148
156
  from scc_firewall_manager_sdk.models.duplicate_group_dto import DuplicateGroupDto
157
+ from scc_firewall_manager_sdk.models.enable_cd_fmc_for_tenant_request import EnableCdFmcForTenantRequest
149
158
  from scc_firewall_manager_sdk.models.entity import Entity
150
159
  from scc_firewall_manager_sdk.models.entity_type import EntityType
151
160
  from scc_firewall_manager_sdk.models.ether_channel_interface_create_input import EtherChannelInterfaceCreateInput
@@ -210,6 +219,7 @@ from scc_firewall_manager_sdk.models.mfa_event import MfaEvent
210
219
  from scc_firewall_manager_sdk.models.mfa_event_page import MfaEventPage
211
220
  from scc_firewall_manager_sdk.models.msp_add_tenant_input import MspAddTenantInput
212
221
  from scc_firewall_manager_sdk.models.msp_add_users_to_tenant_input import MspAddUsersToTenantInput
222
+ from scc_firewall_manager_sdk.models.msp_calculate_compatible_upgrade_versions_input import MspCalculateCompatibleUpgradeVersionsInput
213
223
  from scc_firewall_manager_sdk.models.msp_create_tenant_input import MspCreateTenantInput
214
224
  from scc_firewall_manager_sdk.models.msp_delete_users_from_tenant_input import MspDeleteUsersFromTenantInput
215
225
  from scc_firewall_manager_sdk.models.msp_export_input import MspExportInput
@@ -227,6 +237,10 @@ from scc_firewall_manager_sdk.models.msp_managed_template_distinct_attribute_val
227
237
  from scc_firewall_manager_sdk.models.msp_managed_templates_page import MspManagedTemplatesPage
228
238
  from scc_firewall_manager_sdk.models.msp_managed_tenant import MspManagedTenant
229
239
  from scc_firewall_manager_sdk.models.msp_managed_tenant_page import MspManagedTenantPage
240
+ from scc_firewall_manager_sdk.models.msp_upgrade_ftd_devices_input import MspUpgradeFtdDevicesInput
241
+ from scc_firewall_manager_sdk.models.msp_upgrade_run_dto import MspUpgradeRunDto
242
+ from scc_firewall_manager_sdk.models.msp_upgrade_run_dto_page import MspUpgradeRunDtoPage
243
+ from scc_firewall_manager_sdk.models.msp_upgrade_runs_attribute_values import MspUpgradeRunsAttributeValues
230
244
  from scc_firewall_manager_sdk.models.network import Network
231
245
  from scc_firewall_manager_sdk.models.network_object_content import NetworkObjectContent
232
246
  from scc_firewall_manager_sdk.models.os import OS
@@ -234,6 +248,7 @@ from scc_firewall_manager_sdk.models.object_content import ObjectContent
234
248
  from scc_firewall_manager_sdk.models.object_response import ObjectResponse
235
249
  from scc_firewall_manager_sdk.models.on_prem_fmc_info import OnPremFmcInfo
236
250
  from scc_firewall_manager_sdk.models.override import Override
251
+ from scc_firewall_manager_sdk.models.page import Page
237
252
  from scc_firewall_manager_sdk.models.physical_interface_patch_input import PhysicalInterfacePatchInput
238
253
  from scc_firewall_manager_sdk.models.policy import Policy
239
254
  from scc_firewall_manager_sdk.models.ports_value import PortsValue
@@ -257,6 +272,7 @@ from scc_firewall_manager_sdk.models.service_object_content import ServiceObject
257
272
  from scc_firewall_manager_sdk.models.service_object_value_content import ServiceObjectValueContent
258
273
  from scc_firewall_manager_sdk.models.shared_object_value import SharedObjectValue
259
274
  from scc_firewall_manager_sdk.models.single_content import SingleContent
275
+ from scc_firewall_manager_sdk.models.smart_account import SmartAccount
260
276
  from scc_firewall_manager_sdk.models.source_destination_ports_value import SourceDestinationPortsValue
261
277
  from scc_firewall_manager_sdk.models.source_dynamic_object_content import SourceDynamicObjectContent
262
278
  from scc_firewall_manager_sdk.models.source_network_content import SourceNetworkContent
@@ -275,16 +291,17 @@ from scc_firewall_manager_sdk.models.switch_port_config import SwitchPortConfig
275
291
  from scc_firewall_manager_sdk.models.target import Target
276
292
  from scc_firewall_manager_sdk.models.targets_request import TargetsRequest
277
293
  from scc_firewall_manager_sdk.models.tenant import Tenant
278
- from scc_firewall_manager_sdk.models.tenant_ftd_compatibility_version import TenantFtdCompatibilityVersion
279
294
  from scc_firewall_manager_sdk.models.tenant_page import TenantPage
280
295
  from scc_firewall_manager_sdk.models.tenant_settings import TenantSettings
281
296
  from scc_firewall_manager_sdk.models.unified_object_list_view import UnifiedObjectListView
282
297
  from scc_firewall_manager_sdk.models.universal_ztna_settings import UniversalZtnaSettings
283
298
  from scc_firewall_manager_sdk.models.update_request import UpdateRequest
284
299
  from scc_firewall_manager_sdk.models.upgrade_asa_device_input import UpgradeAsaDeviceInput
300
+ from scc_firewall_manager_sdk.models.upgrade_compatibility_info_dto import UpgradeCompatibilityInfoDto
285
301
  from scc_firewall_manager_sdk.models.upgrade_ftd_device_input import UpgradeFtdDeviceInput
286
302
  from scc_firewall_manager_sdk.models.upgrade_ftd_devices_input import UpgradeFtdDevicesInput
287
303
  from scc_firewall_manager_sdk.models.upgrade_run_dto import UpgradeRunDto
304
+ from scc_firewall_manager_sdk.models.upgrade_run_metadata_dto import UpgradeRunMetadataDto
288
305
  from scc_firewall_manager_sdk.models.upgrade_run_modify_input import UpgradeRunModifyInput
289
306
  from scc_firewall_manager_sdk.models.url_object_content import UrlObjectContent
290
307
  from scc_firewall_manager_sdk.models.user import User
@@ -14,8 +14,10 @@ from scc_firewall_manager_sdk.api.connectors_api import ConnectorsApi
14
14
  from scc_firewall_manager_sdk.api.device_health_api import DeviceHealthApi
15
15
  from scc_firewall_manager_sdk.api.device_health_aggregations_api import DeviceHealthAggregationsApi
16
16
  from scc_firewall_manager_sdk.api.device_upgrades_api import DeviceUpgradesApi
17
+ from scc_firewall_manager_sdk.api.events_api import EventsApi
17
18
  from scc_firewall_manager_sdk.api.interface_health_aggregations_api import InterfaceHealthAggregationsApi
18
19
  from scc_firewall_manager_sdk.api.inventory_api import InventoryApi
20
+ from scc_firewall_manager_sdk.api.licensing_api import LicensingApi
19
21
  from scc_firewall_manager_sdk.api.msp_device_upgrades_api import MSPDeviceUpgradesApi
20
22
  from scc_firewall_manager_sdk.api.msp_inventory_api import MSPInventoryApi
21
23
  from scc_firewall_manager_sdk.api.msp_tenant_management_api import MSPTenantManagementApi
@@ -1171,8 +1171,8 @@ class AIAssistantApi:
1171
1171
  @validate_call
1172
1172
  def get_conversations(
1173
1173
  self,
1174
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
1175
- 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,
1174
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
1175
+ 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,
1176
1176
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
1177
1177
  _request_timeout: Union[
1178
1178
  None,
@@ -1191,9 +1191,9 @@ class AIAssistantApi:
1191
1191
 
1192
1192
  Get a list of AI Assistant Conversations. Note: the total number of conversations is set to -1 as this information is currently unavailable.
1193
1193
 
1194
- :param limit: The number of results to retrieve.
1194
+ :param limit: Number of results to retrieve.
1195
1195
  :type limit: str
1196
- :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.
1196
+ :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.
1197
1197
  :type offset: str
1198
1198
  :param sort: The fields to sort results by.
1199
1199
  :type sort: List[str]
@@ -1250,8 +1250,8 @@ class AIAssistantApi:
1250
1250
  @validate_call
1251
1251
  def get_conversations_with_http_info(
1252
1252
  self,
1253
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
1254
- 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,
1253
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
1254
+ 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,
1255
1255
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
1256
1256
  _request_timeout: Union[
1257
1257
  None,
@@ -1270,9 +1270,9 @@ class AIAssistantApi:
1270
1270
 
1271
1271
  Get a list of AI Assistant Conversations. Note: the total number of conversations is set to -1 as this information is currently unavailable.
1272
1272
 
1273
- :param limit: The number of results to retrieve.
1273
+ :param limit: Number of results to retrieve.
1274
1274
  :type limit: str
1275
- :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.
1275
+ :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.
1276
1276
  :type offset: str
1277
1277
  :param sort: The fields to sort results by.
1278
1278
  :type sort: List[str]
@@ -1329,8 +1329,8 @@ class AIAssistantApi:
1329
1329
  @validate_call
1330
1330
  def get_conversations_without_preload_content(
1331
1331
  self,
1332
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
1333
- 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,
1332
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
1333
+ 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,
1334
1334
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
1335
1335
  _request_timeout: Union[
1336
1336
  None,
@@ -1349,9 +1349,9 @@ class AIAssistantApi:
1349
1349
 
1350
1350
  Get a list of AI Assistant Conversations. Note: the total number of conversations is set to -1 as this information is currently unavailable.
1351
1351
 
1352
- :param limit: The number of results to retrieve.
1352
+ :param limit: Number of results to retrieve.
1353
1353
  :type limit: str
1354
- :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.
1354
+ :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.
1355
1355
  :type offset: str
1356
1356
  :param sort: The fields to sort results by.
1357
1357
  :type sort: List[str]
@@ -863,8 +863,8 @@ class ASAAccessGroupsApi:
863
863
  @validate_call
864
864
  def list_access_groups(
865
865
  self,
866
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
867
- 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,
868
868
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
869
869
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
870
870
  _request_timeout: Union[
@@ -884,9 +884,9 @@ class ASAAccessGroupsApi:
884
884
 
885
885
  Get a list of ASA Access Groups.
886
886
 
887
- :param limit: The number of results to retrieve.
887
+ :param limit: Number of results to retrieve.
888
888
  :type limit: str
889
- :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.
890
890
  :type offset: str
891
891
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
892
892
  :type q: str
@@ -945,8 +945,8 @@ class ASAAccessGroupsApi:
945
945
  @validate_call
946
946
  def list_access_groups_with_http_info(
947
947
  self,
948
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
949
- 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,
948
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
949
+ 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,
950
950
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
951
951
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
952
952
  _request_timeout: Union[
@@ -966,9 +966,9 @@ class ASAAccessGroupsApi:
966
966
 
967
967
  Get a list of ASA Access Groups.
968
968
 
969
- :param limit: The number of results to retrieve.
969
+ :param limit: Number of results to retrieve.
970
970
  :type limit: str
971
- :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.
971
+ :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.
972
972
  :type offset: str
973
973
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
974
974
  :type q: str
@@ -1027,8 +1027,8 @@ class ASAAccessGroupsApi:
1027
1027
  @validate_call
1028
1028
  def list_access_groups_without_preload_content(
1029
1029
  self,
1030
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
1031
- 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,
1030
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
1031
+ 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,
1032
1032
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
1033
1033
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
1034
1034
  _request_timeout: Union[
@@ -1048,9 +1048,9 @@ class ASAAccessGroupsApi:
1048
1048
 
1049
1049
  Get a list of ASA Access Groups.
1050
1050
 
1051
- :param limit: The number of results to retrieve.
1051
+ :param limit: Number of results to retrieve.
1052
1052
  :type limit: str
1053
- :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.
1053
+ :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.
1054
1054
  :type offset: str
1055
1055
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
1056
1056
  :type q: str
@@ -863,8 +863,8 @@ class ASAAccessRulesApi:
863
863
  @validate_call
864
864
  def list_access_rules(
865
865
  self,
866
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
867
- 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,
868
868
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
869
869
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
870
870
  _request_timeout: Union[
@@ -884,9 +884,9 @@ class ASAAccessRulesApi:
884
884
 
885
885
  Get a list of ASA Access Rules.
886
886
 
887
- :param limit: The number of results to retrieve.
887
+ :param limit: Number of results to retrieve.
888
888
  :type limit: str
889
- :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.
890
890
  :type offset: str
891
891
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
892
892
  :type q: str
@@ -945,8 +945,8 @@ class ASAAccessRulesApi:
945
945
  @validate_call
946
946
  def list_access_rules_with_http_info(
947
947
  self,
948
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
949
- 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,
948
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
949
+ 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,
950
950
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
951
951
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
952
952
  _request_timeout: Union[
@@ -966,9 +966,9 @@ class ASAAccessRulesApi:
966
966
 
967
967
  Get a list of ASA Access Rules.
968
968
 
969
- :param limit: The number of results to retrieve.
969
+ :param limit: Number of results to retrieve.
970
970
  :type limit: str
971
- :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.
971
+ :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.
972
972
  :type offset: str
973
973
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
974
974
  :type q: str
@@ -1027,8 +1027,8 @@ class ASAAccessRulesApi:
1027
1027
  @validate_call
1028
1028
  def list_access_rules_without_preload_content(
1029
1029
  self,
1030
- limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
1031
- 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,
1030
+ limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
1031
+ 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,
1032
1032
  q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
1033
1033
  sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
1034
1034
  _request_timeout: Union[
@@ -1048,9 +1048,9 @@ class ASAAccessRulesApi:
1048
1048
 
1049
1049
  Get a list of ASA Access Rules.
1050
1050
 
1051
- :param limit: The number of results to retrieve.
1051
+ :param limit: Number of results to retrieve.
1052
1052
  :type limit: str
1053
- :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.
1053
+ :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.
1054
1054
  :type offset: str
1055
1055
  :param q: The query to execute. Use the Lucene Query Syntax to construct your query.
1056
1056
  :type q: str