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.
- scc_firewall_manager_sdk/__init__.py +9 -1
- scc_firewall_manager_sdk/api/__init__.py +2 -0
- scc_firewall_manager_sdk/api/ai_assistant_api.py +12 -12
- scc_firewall_manager_sdk/api/asa_access_groups_api.py +12 -12
- scc_firewall_manager_sdk/api/asa_access_rules_api.py +12 -12
- scc_firewall_manager_sdk/api/asa_interfaces_api.py +72 -72
- scc_firewall_manager_sdk/api/audit_logs_api.py +12 -12
- scc_firewall_manager_sdk/api/change_requests_api.py +12 -12
- scc_firewall_manager_sdk/api/changelogs_api.py +12 -12
- scc_firewall_manager_sdk/api/command_line_interface_api.py +24 -24
- scc_firewall_manager_sdk/api/connectors_api.py +12 -313
- scc_firewall_manager_sdk/api/device_health_aggregations_api.py +6 -6
- scc_firewall_manager_sdk/api/device_upgrades_api.py +15 -15
- scc_firewall_manager_sdk/api/events_api.py +358 -0
- scc_firewall_manager_sdk/api/interface_health_aggregations_api.py +6 -6
- scc_firewall_manager_sdk/api/inventory_api.py +48 -48
- scc_firewall_manager_sdk/api/licensing_api.py +626 -0
- scc_firewall_manager_sdk/api/msp_device_upgrades_api.py +53 -24
- scc_firewall_manager_sdk/api/msp_inventory_api.py +48 -48
- scc_firewall_manager_sdk/api/msp_tenant_management_api.py +41 -12
- scc_firewall_manager_sdk/api/msp_user_management_api.py +24 -24
- scc_firewall_manager_sdk/api/remote_access_monitoring_api.py +24 -24
- scc_firewall_manager_sdk/api/tenant_management_api.py +21 -18
- scc_firewall_manager_sdk/api/users_api.py +30 -30
- scc_firewall_manager_sdk/api_client.py +1 -1
- scc_firewall_manager_sdk/configuration.py +1 -1
- scc_firewall_manager_sdk/models/__init__.py +6 -0
- scc_firewall_manager_sdk/models/access_group.py +1 -1
- scc_firewall_manager_sdk/models/cdo_transaction.py +12 -12
- scc_firewall_manager_sdk/models/common_api_error.py +3 -3
- scc_firewall_manager_sdk/models/completion_status_dto.py +104 -0
- scc_firewall_manager_sdk/models/device_license_dto.py +133 -0
- scc_firewall_manager_sdk/models/device_license_page.py +102 -0
- scc_firewall_manager_sdk/models/device_upgrade_status_dto.py +13 -7
- scc_firewall_manager_sdk/models/enable_cd_fmc_for_tenant_request.py +88 -0
- scc_firewall_manager_sdk/models/log_settings.py +1 -1
- scc_firewall_manager_sdk/models/msp_calculate_compatible_upgrade_versions_input.py +1 -1
- scc_firewall_manager_sdk/models/msp_managed_device.py +7 -1
- scc_firewall_manager_sdk/models/msp_managed_device_distinct_attribute_values.py +5 -1
- scc_firewall_manager_sdk/models/msp_upgrade_ftd_devices_input.py +97 -0
- scc_firewall_manager_sdk/models/msp_upgrade_run_dto.py +9 -9
- scc_firewall_manager_sdk/models/msp_upgrade_runs_attribute_values.py +18 -3
- scc_firewall_manager_sdk/models/smart_account.py +90 -0
- scc_firewall_manager_sdk/models/tenant_settings.py +3 -1
- scc_firewall_manager_sdk/models/upgrade_run_dto.py +1 -1
- scc_firewall_manager_sdk/models/upgrade_run_metadata_dto.py +1 -1
- {scc_firewall_manager_sdk-1.15.287.dist-info → scc_firewall_manager_sdk-1.15.563.dist-info}/METADATA +1 -1
- {scc_firewall_manager_sdk-1.15.287.dist-info → scc_firewall_manager_sdk-1.15.563.dist-info}/RECORD +50 -42
- {scc_firewall_manager_sdk-1.15.287.dist-info → scc_firewall_manager_sdk-1.15.563.dist-info}/WHEEL +0 -0
- {scc_firewall_manager_sdk-1.15.287.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.
|
|
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
|
|
@@ -118,6 +120,7 @@ from scc_firewall_manager_sdk.models.command_response import CommandResponse
|
|
|
118
120
|
from scc_firewall_manager_sdk.models.common_api_error import CommonApiError
|
|
119
121
|
from scc_firewall_manager_sdk.models.compatible_device_dto import CompatibleDeviceDto
|
|
120
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
|
|
121
124
|
from scc_firewall_manager_sdk.models.config_state import ConfigState
|
|
122
125
|
from scc_firewall_manager_sdk.models.conflict_detection_interval import ConflictDetectionInterval
|
|
123
126
|
from scc_firewall_manager_sdk.models.conflict_detection_state import ConflictDetectionState
|
|
@@ -136,6 +139,8 @@ from scc_firewall_manager_sdk.models.device_end_of_life_device_info import Devic
|
|
|
136
139
|
from scc_firewall_manager_sdk.models.device_end_of_life_recommendation import DeviceEndOfLifeRecommendation
|
|
137
140
|
from scc_firewall_manager_sdk.models.device_end_of_life_report import DeviceEndOfLifeReport
|
|
138
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
|
|
139
144
|
from scc_firewall_manager_sdk.models.device_maintenance_window import DeviceMaintenanceWindow
|
|
140
145
|
from scc_firewall_manager_sdk.models.device_manager_patch_input import DeviceManagerPatchInput
|
|
141
146
|
from scc_firewall_manager_sdk.models.device_metadata import DeviceMetadata
|
|
@@ -149,6 +154,7 @@ from scc_firewall_manager_sdk.models.domain_settings import DomainSettings
|
|
|
149
154
|
from scc_firewall_manager_sdk.models.duo_admin_panel_create_or_update_input import DuoAdminPanelCreateOrUpdateInput
|
|
150
155
|
from scc_firewall_manager_sdk.models.duplex_type import DuplexType
|
|
151
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
|
|
152
158
|
from scc_firewall_manager_sdk.models.entity import Entity
|
|
153
159
|
from scc_firewall_manager_sdk.models.entity_type import EntityType
|
|
154
160
|
from scc_firewall_manager_sdk.models.ether_channel_interface_create_input import EtherChannelInterfaceCreateInput
|
|
@@ -231,6 +237,7 @@ from scc_firewall_manager_sdk.models.msp_managed_template_distinct_attribute_val
|
|
|
231
237
|
from scc_firewall_manager_sdk.models.msp_managed_templates_page import MspManagedTemplatesPage
|
|
232
238
|
from scc_firewall_manager_sdk.models.msp_managed_tenant import MspManagedTenant
|
|
233
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
|
|
234
241
|
from scc_firewall_manager_sdk.models.msp_upgrade_run_dto import MspUpgradeRunDto
|
|
235
242
|
from scc_firewall_manager_sdk.models.msp_upgrade_run_dto_page import MspUpgradeRunDtoPage
|
|
236
243
|
from scc_firewall_manager_sdk.models.msp_upgrade_runs_attribute_values import MspUpgradeRunsAttributeValues
|
|
@@ -265,6 +272,7 @@ from scc_firewall_manager_sdk.models.service_object_content import ServiceObject
|
|
|
265
272
|
from scc_firewall_manager_sdk.models.service_object_value_content import ServiceObjectValueContent
|
|
266
273
|
from scc_firewall_manager_sdk.models.shared_object_value import SharedObjectValue
|
|
267
274
|
from scc_firewall_manager_sdk.models.single_content import SingleContent
|
|
275
|
+
from scc_firewall_manager_sdk.models.smart_account import SmartAccount
|
|
268
276
|
from scc_firewall_manager_sdk.models.source_destination_ports_value import SourceDestinationPortsValue
|
|
269
277
|
from scc_firewall_manager_sdk.models.source_dynamic_object_content import SourceDynamicObjectContent
|
|
270
278
|
from scc_firewall_manager_sdk.models.source_network_content import SourceNetworkContent
|
|
@@ -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="
|
|
1175
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
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:
|
|
1194
|
+
:param limit: Number of results to retrieve.
|
|
1195
1195
|
:type limit: str
|
|
1196
|
-
:param offset:
|
|
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="
|
|
1254
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
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:
|
|
1273
|
+
:param limit: Number of results to retrieve.
|
|
1274
1274
|
:type limit: str
|
|
1275
|
-
:param offset:
|
|
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="
|
|
1333
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
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:
|
|
1352
|
+
:param limit: Number of results to retrieve.
|
|
1353
1353
|
:type limit: str
|
|
1354
|
-
:param offset:
|
|
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="
|
|
867
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
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:
|
|
887
|
+
:param limit: Number of results to retrieve.
|
|
888
888
|
:type limit: str
|
|
889
|
-
:param offset:
|
|
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="
|
|
949
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
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:
|
|
969
|
+
:param limit: Number of results to retrieve.
|
|
970
970
|
:type limit: str
|
|
971
|
-
:param offset:
|
|
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="
|
|
1031
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
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:
|
|
1051
|
+
:param limit: Number of results to retrieve.
|
|
1052
1052
|
:type limit: str
|
|
1053
|
-
:param offset:
|
|
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="
|
|
867
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
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:
|
|
887
|
+
:param limit: Number of results to retrieve.
|
|
888
888
|
:type limit: str
|
|
889
|
-
:param offset:
|
|
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="
|
|
949
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
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:
|
|
969
|
+
:param limit: Number of results to retrieve.
|
|
970
970
|
:type limit: str
|
|
971
|
-
:param offset:
|
|
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="
|
|
1031
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
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:
|
|
1051
|
+
:param limit: Number of results to retrieve.
|
|
1052
1052
|
:type limit: str
|
|
1053
|
-
:param offset:
|
|
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
|