scc-firewall-manager-sdk 1.15.358__py3-none-any.whl → 1.15.389__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of scc-firewall-manager-sdk might be problematic. Click here for more details.
- scc_firewall_manager_sdk/__init__.py +3 -1
- scc_firewall_manager_sdk/api/asa_interfaces_api.py +72 -72
- scc_firewall_manager_sdk/api/device_health_aggregations_api.py +6 -6
- scc_firewall_manager_sdk/api/device_upgrades_api.py +12 -12
- scc_firewall_manager_sdk/api/interface_health_aggregations_api.py +6 -6
- scc_firewall_manager_sdk/api/msp_device_upgrades_api.py +29 -0
- scc_firewall_manager_sdk/api_client.py +1 -1
- scc_firewall_manager_sdk/configuration.py +1 -1
- scc_firewall_manager_sdk/models/__init__.py +2 -0
- scc_firewall_manager_sdk/models/cdo_transaction.py +12 -12
- scc_firewall_manager_sdk/models/completion_status_dto.py +104 -0
- scc_firewall_manager_sdk/models/device_upgrade_status_dto.py +15 -35
- scc_firewall_manager_sdk/models/msp_upgrade_ftd_devices_input.py +97 -0
- scc_firewall_manager_sdk/models/msp_upgrade_runs_attribute_values.py +17 -2
- {scc_firewall_manager_sdk-1.15.358.dist-info → scc_firewall_manager_sdk-1.15.389.dist-info}/METADATA +1 -1
- {scc_firewall_manager_sdk-1.15.358.dist-info → scc_firewall_manager_sdk-1.15.389.dist-info}/RECORD +18 -16
- {scc_firewall_manager_sdk-1.15.358.dist-info → scc_firewall_manager_sdk-1.15.389.dist-info}/WHEEL +0 -0
- {scc_firewall_manager_sdk-1.15.358.dist-info → scc_firewall_manager_sdk-1.15.389.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.389"
|
|
19
19
|
|
|
20
20
|
# import apis into sdk package
|
|
21
21
|
from scc_firewall_manager_sdk.api.ai_assistant_api import AIAssistantApi
|
|
@@ -119,6 +119,7 @@ from scc_firewall_manager_sdk.models.command_response import CommandResponse
|
|
|
119
119
|
from scc_firewall_manager_sdk.models.common_api_error import CommonApiError
|
|
120
120
|
from scc_firewall_manager_sdk.models.compatible_device_dto import CompatibleDeviceDto
|
|
121
121
|
from scc_firewall_manager_sdk.models.compatible_version_info_dto import CompatibleVersionInfoDto
|
|
122
|
+
from scc_firewall_manager_sdk.models.completion_status_dto import CompletionStatusDto
|
|
122
123
|
from scc_firewall_manager_sdk.models.config_state import ConfigState
|
|
123
124
|
from scc_firewall_manager_sdk.models.conflict_detection_interval import ConflictDetectionInterval
|
|
124
125
|
from scc_firewall_manager_sdk.models.conflict_detection_state import ConflictDetectionState
|
|
@@ -233,6 +234,7 @@ from scc_firewall_manager_sdk.models.msp_managed_template_distinct_attribute_val
|
|
|
233
234
|
from scc_firewall_manager_sdk.models.msp_managed_templates_page import MspManagedTemplatesPage
|
|
234
235
|
from scc_firewall_manager_sdk.models.msp_managed_tenant import MspManagedTenant
|
|
235
236
|
from scc_firewall_manager_sdk.models.msp_managed_tenant_page import MspManagedTenantPage
|
|
237
|
+
from scc_firewall_manager_sdk.models.msp_upgrade_ftd_devices_input import MspUpgradeFtdDevicesInput
|
|
236
238
|
from scc_firewall_manager_sdk.models.msp_upgrade_run_dto import MspUpgradeRunDto
|
|
237
239
|
from scc_firewall_manager_sdk.models.msp_upgrade_run_dto_page import MspUpgradeRunDtoPage
|
|
238
240
|
from scc_firewall_manager_sdk.models.msp_upgrade_runs_attribute_values import MspUpgradeRunsAttributeValues
|
|
@@ -2104,8 +2104,8 @@ class ASAInterfacesApi:
|
|
|
2104
2104
|
def get_asa_ether_channel_interfaces(
|
|
2105
2105
|
self,
|
|
2106
2106
|
device_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the device.")],
|
|
2107
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2108
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2107
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
2108
|
+
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,
|
|
2109
2109
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
2110
2110
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
2111
2111
|
_request_timeout: Union[
|
|
@@ -2127,9 +2127,9 @@ class ASAInterfacesApi:
|
|
|
2127
2127
|
|
|
2128
2128
|
:param device_uid: Unique identifier (UUID) of the device. (required)
|
|
2129
2129
|
:type device_uid: str
|
|
2130
|
-
:param limit:
|
|
2130
|
+
:param limit: Number of results to retrieve.
|
|
2131
2131
|
:type limit: str
|
|
2132
|
-
:param offset:
|
|
2132
|
+
: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.
|
|
2133
2133
|
:type offset: str
|
|
2134
2134
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
2135
2135
|
:type q: str
|
|
@@ -2191,8 +2191,8 @@ class ASAInterfacesApi:
|
|
|
2191
2191
|
def get_asa_ether_channel_interfaces_with_http_info(
|
|
2192
2192
|
self,
|
|
2193
2193
|
device_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the device.")],
|
|
2194
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2195
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2194
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
2195
|
+
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,
|
|
2196
2196
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
2197
2197
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
2198
2198
|
_request_timeout: Union[
|
|
@@ -2214,9 +2214,9 @@ class ASAInterfacesApi:
|
|
|
2214
2214
|
|
|
2215
2215
|
:param device_uid: Unique identifier (UUID) of the device. (required)
|
|
2216
2216
|
:type device_uid: str
|
|
2217
|
-
:param limit:
|
|
2217
|
+
:param limit: Number of results to retrieve.
|
|
2218
2218
|
:type limit: str
|
|
2219
|
-
:param offset:
|
|
2219
|
+
: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.
|
|
2220
2220
|
:type offset: str
|
|
2221
2221
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
2222
2222
|
:type q: str
|
|
@@ -2278,8 +2278,8 @@ class ASAInterfacesApi:
|
|
|
2278
2278
|
def get_asa_ether_channel_interfaces_without_preload_content(
|
|
2279
2279
|
self,
|
|
2280
2280
|
device_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the device.")],
|
|
2281
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2282
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2281
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
2282
|
+
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,
|
|
2283
2283
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
2284
2284
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
2285
2285
|
_request_timeout: Union[
|
|
@@ -2301,9 +2301,9 @@ class ASAInterfacesApi:
|
|
|
2301
2301
|
|
|
2302
2302
|
:param device_uid: Unique identifier (UUID) of the device. (required)
|
|
2303
2303
|
:type device_uid: str
|
|
2304
|
-
:param limit:
|
|
2304
|
+
:param limit: Number of results to retrieve.
|
|
2305
2305
|
:type limit: str
|
|
2306
|
-
:param offset:
|
|
2306
|
+
: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.
|
|
2307
2307
|
:type offset: str
|
|
2308
2308
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
2309
2309
|
:type q: str
|
|
@@ -2444,8 +2444,8 @@ class ASAInterfacesApi:
|
|
|
2444
2444
|
self,
|
|
2445
2445
|
device_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the device.")],
|
|
2446
2446
|
interface_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the ASA parent interface.")],
|
|
2447
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2448
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2447
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
2448
|
+
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,
|
|
2449
2449
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
2450
2450
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
2451
2451
|
_request_timeout: Union[
|
|
@@ -2469,9 +2469,9 @@ class ASAInterfacesApi:
|
|
|
2469
2469
|
:type device_uid: str
|
|
2470
2470
|
:param interface_uid: Unique identifier (UUID) of the ASA parent interface. (required)
|
|
2471
2471
|
:type interface_uid: str
|
|
2472
|
-
:param limit:
|
|
2472
|
+
:param limit: Number of results to retrieve.
|
|
2473
2473
|
:type limit: str
|
|
2474
|
-
:param offset:
|
|
2474
|
+
: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.
|
|
2475
2475
|
:type offset: str
|
|
2476
2476
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
2477
2477
|
:type q: str
|
|
@@ -2535,8 +2535,8 @@ class ASAInterfacesApi:
|
|
|
2535
2535
|
self,
|
|
2536
2536
|
device_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the device.")],
|
|
2537
2537
|
interface_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the ASA parent interface.")],
|
|
2538
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2539
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2538
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
2539
|
+
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,
|
|
2540
2540
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
2541
2541
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
2542
2542
|
_request_timeout: Union[
|
|
@@ -2560,9 +2560,9 @@ class ASAInterfacesApi:
|
|
|
2560
2560
|
:type device_uid: str
|
|
2561
2561
|
:param interface_uid: Unique identifier (UUID) of the ASA parent interface. (required)
|
|
2562
2562
|
:type interface_uid: str
|
|
2563
|
-
:param limit:
|
|
2563
|
+
:param limit: Number of results to retrieve.
|
|
2564
2564
|
:type limit: str
|
|
2565
|
-
:param offset:
|
|
2565
|
+
: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.
|
|
2566
2566
|
:type offset: str
|
|
2567
2567
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
2568
2568
|
:type q: str
|
|
@@ -2626,8 +2626,8 @@ class ASAInterfacesApi:
|
|
|
2626
2626
|
self,
|
|
2627
2627
|
device_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the device.")],
|
|
2628
2628
|
interface_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the ASA parent interface.")],
|
|
2629
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2630
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2629
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
2630
|
+
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,
|
|
2631
2631
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
2632
2632
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
2633
2633
|
_request_timeout: Union[
|
|
@@ -2651,9 +2651,9 @@ class ASAInterfacesApi:
|
|
|
2651
2651
|
:type device_uid: str
|
|
2652
2652
|
:param interface_uid: Unique identifier (UUID) of the ASA parent interface. (required)
|
|
2653
2653
|
:type interface_uid: str
|
|
2654
|
-
:param limit:
|
|
2654
|
+
:param limit: Number of results to retrieve.
|
|
2655
2655
|
:type limit: str
|
|
2656
|
-
:param offset:
|
|
2656
|
+
: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.
|
|
2657
2657
|
:type offset: str
|
|
2658
2658
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
2659
2659
|
:type q: str
|
|
@@ -3085,8 +3085,8 @@ class ASAInterfacesApi:
|
|
|
3085
3085
|
def get_asa_physical_interfaces(
|
|
3086
3086
|
self,
|
|
3087
3087
|
device_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the device.")],
|
|
3088
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
3089
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
3088
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
3089
|
+
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,
|
|
3090
3090
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
3091
3091
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
3092
3092
|
_request_timeout: Union[
|
|
@@ -3108,9 +3108,9 @@ class ASAInterfacesApi:
|
|
|
3108
3108
|
|
|
3109
3109
|
:param device_uid: Unique identifier (UUID) of the device. (required)
|
|
3110
3110
|
:type device_uid: str
|
|
3111
|
-
:param limit:
|
|
3111
|
+
:param limit: Number of results to retrieve.
|
|
3112
3112
|
:type limit: str
|
|
3113
|
-
:param offset:
|
|
3113
|
+
: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.
|
|
3114
3114
|
:type offset: str
|
|
3115
3115
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
3116
3116
|
:type q: str
|
|
@@ -3172,8 +3172,8 @@ class ASAInterfacesApi:
|
|
|
3172
3172
|
def get_asa_physical_interfaces_with_http_info(
|
|
3173
3173
|
self,
|
|
3174
3174
|
device_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the device.")],
|
|
3175
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
3176
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
3175
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
3176
|
+
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,
|
|
3177
3177
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
3178
3178
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
3179
3179
|
_request_timeout: Union[
|
|
@@ -3195,9 +3195,9 @@ class ASAInterfacesApi:
|
|
|
3195
3195
|
|
|
3196
3196
|
:param device_uid: Unique identifier (UUID) of the device. (required)
|
|
3197
3197
|
:type device_uid: str
|
|
3198
|
-
:param limit:
|
|
3198
|
+
:param limit: Number of results to retrieve.
|
|
3199
3199
|
:type limit: str
|
|
3200
|
-
:param offset:
|
|
3200
|
+
: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.
|
|
3201
3201
|
:type offset: str
|
|
3202
3202
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
3203
3203
|
:type q: str
|
|
@@ -3259,8 +3259,8 @@ class ASAInterfacesApi:
|
|
|
3259
3259
|
def get_asa_physical_interfaces_without_preload_content(
|
|
3260
3260
|
self,
|
|
3261
3261
|
device_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the device.")],
|
|
3262
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
3263
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
3262
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
3263
|
+
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,
|
|
3264
3264
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
3265
3265
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
3266
3266
|
_request_timeout: Union[
|
|
@@ -3282,9 +3282,9 @@ class ASAInterfacesApi:
|
|
|
3282
3282
|
|
|
3283
3283
|
:param device_uid: Unique identifier (UUID) of the device. (required)
|
|
3284
3284
|
:type device_uid: str
|
|
3285
|
-
:param limit:
|
|
3285
|
+
:param limit: Number of results to retrieve.
|
|
3286
3286
|
:type limit: str
|
|
3287
|
-
:param offset:
|
|
3287
|
+
: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.
|
|
3288
3288
|
:type offset: str
|
|
3289
3289
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
3290
3290
|
:type q: str
|
|
@@ -3712,8 +3712,8 @@ class ASAInterfacesApi:
|
|
|
3712
3712
|
def get_asa_sub_interfaces(
|
|
3713
3713
|
self,
|
|
3714
3714
|
device_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the device.")],
|
|
3715
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
3716
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
3715
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
3716
|
+
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,
|
|
3717
3717
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
3718
3718
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
3719
3719
|
_request_timeout: Union[
|
|
@@ -3735,9 +3735,9 @@ class ASAInterfacesApi:
|
|
|
3735
3735
|
|
|
3736
3736
|
:param device_uid: Unique identifier (UUID) of the device. (required)
|
|
3737
3737
|
:type device_uid: str
|
|
3738
|
-
:param limit:
|
|
3738
|
+
:param limit: Number of results to retrieve.
|
|
3739
3739
|
:type limit: str
|
|
3740
|
-
:param offset:
|
|
3740
|
+
: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.
|
|
3741
3741
|
:type offset: str
|
|
3742
3742
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
3743
3743
|
:type q: str
|
|
@@ -3799,8 +3799,8 @@ class ASAInterfacesApi:
|
|
|
3799
3799
|
def get_asa_sub_interfaces_with_http_info(
|
|
3800
3800
|
self,
|
|
3801
3801
|
device_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the device.")],
|
|
3802
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
3803
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
3802
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
3803
|
+
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,
|
|
3804
3804
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
3805
3805
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
3806
3806
|
_request_timeout: Union[
|
|
@@ -3822,9 +3822,9 @@ class ASAInterfacesApi:
|
|
|
3822
3822
|
|
|
3823
3823
|
:param device_uid: Unique identifier (UUID) of the device. (required)
|
|
3824
3824
|
:type device_uid: str
|
|
3825
|
-
:param limit:
|
|
3825
|
+
:param limit: Number of results to retrieve.
|
|
3826
3826
|
:type limit: str
|
|
3827
|
-
:param offset:
|
|
3827
|
+
: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.
|
|
3828
3828
|
:type offset: str
|
|
3829
3829
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
3830
3830
|
:type q: str
|
|
@@ -3886,8 +3886,8 @@ class ASAInterfacesApi:
|
|
|
3886
3886
|
def get_asa_sub_interfaces_without_preload_content(
|
|
3887
3887
|
self,
|
|
3888
3888
|
device_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the device.")],
|
|
3889
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
3890
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
3889
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
3890
|
+
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,
|
|
3891
3891
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
3892
3892
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
3893
3893
|
_request_timeout: Union[
|
|
@@ -3909,9 +3909,9 @@ class ASAInterfacesApi:
|
|
|
3909
3909
|
|
|
3910
3910
|
:param device_uid: Unique identifier (UUID) of the device. (required)
|
|
3911
3911
|
:type device_uid: str
|
|
3912
|
-
:param limit:
|
|
3912
|
+
:param limit: Number of results to retrieve.
|
|
3913
3913
|
:type limit: str
|
|
3914
|
-
:param offset:
|
|
3914
|
+
: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.
|
|
3915
3915
|
:type offset: str
|
|
3916
3916
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
3917
3917
|
:type q: str
|
|
@@ -4339,8 +4339,8 @@ class ASAInterfacesApi:
|
|
|
4339
4339
|
def get_asa_virtual_tunnel_interfaces(
|
|
4340
4340
|
self,
|
|
4341
4341
|
device_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the device.")],
|
|
4342
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
4343
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
4342
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
4343
|
+
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,
|
|
4344
4344
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
4345
4345
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
4346
4346
|
_request_timeout: Union[
|
|
@@ -4362,9 +4362,9 @@ class ASAInterfacesApi:
|
|
|
4362
4362
|
|
|
4363
4363
|
:param device_uid: Unique identifier (UUID) of the device. (required)
|
|
4364
4364
|
:type device_uid: str
|
|
4365
|
-
:param limit:
|
|
4365
|
+
:param limit: Number of results to retrieve.
|
|
4366
4366
|
:type limit: str
|
|
4367
|
-
:param offset:
|
|
4367
|
+
: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.
|
|
4368
4368
|
:type offset: str
|
|
4369
4369
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
4370
4370
|
:type q: str
|
|
@@ -4426,8 +4426,8 @@ class ASAInterfacesApi:
|
|
|
4426
4426
|
def get_asa_virtual_tunnel_interfaces_with_http_info(
|
|
4427
4427
|
self,
|
|
4428
4428
|
device_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the device.")],
|
|
4429
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
4430
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
4429
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
4430
|
+
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,
|
|
4431
4431
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
4432
4432
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
4433
4433
|
_request_timeout: Union[
|
|
@@ -4449,9 +4449,9 @@ class ASAInterfacesApi:
|
|
|
4449
4449
|
|
|
4450
4450
|
:param device_uid: Unique identifier (UUID) of the device. (required)
|
|
4451
4451
|
:type device_uid: str
|
|
4452
|
-
:param limit:
|
|
4452
|
+
:param limit: Number of results to retrieve.
|
|
4453
4453
|
:type limit: str
|
|
4454
|
-
:param offset:
|
|
4454
|
+
: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.
|
|
4455
4455
|
:type offset: str
|
|
4456
4456
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
4457
4457
|
:type q: str
|
|
@@ -4513,8 +4513,8 @@ class ASAInterfacesApi:
|
|
|
4513
4513
|
def get_asa_virtual_tunnel_interfaces_without_preload_content(
|
|
4514
4514
|
self,
|
|
4515
4515
|
device_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the device.")],
|
|
4516
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
4517
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
4516
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
4517
|
+
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,
|
|
4518
4518
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
4519
4519
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
4520
4520
|
_request_timeout: Union[
|
|
@@ -4536,9 +4536,9 @@ class ASAInterfacesApi:
|
|
|
4536
4536
|
|
|
4537
4537
|
:param device_uid: Unique identifier (UUID) of the device. (required)
|
|
4538
4538
|
:type device_uid: str
|
|
4539
|
-
:param limit:
|
|
4539
|
+
:param limit: Number of results to retrieve.
|
|
4540
4540
|
:type limit: str
|
|
4541
|
-
:param offset:
|
|
4541
|
+
: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.
|
|
4542
4542
|
:type offset: str
|
|
4543
4543
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
4544
4544
|
:type q: str
|
|
@@ -4966,8 +4966,8 @@ class ASAInterfacesApi:
|
|
|
4966
4966
|
def get_asa_vlan_interfaces(
|
|
4967
4967
|
self,
|
|
4968
4968
|
device_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the device.")],
|
|
4969
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
4970
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
4969
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
4970
|
+
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,
|
|
4971
4971
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
4972
4972
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
4973
4973
|
_request_timeout: Union[
|
|
@@ -4989,9 +4989,9 @@ class ASAInterfacesApi:
|
|
|
4989
4989
|
|
|
4990
4990
|
:param device_uid: Unique identifier (UUID) of the device. (required)
|
|
4991
4991
|
:type device_uid: str
|
|
4992
|
-
:param limit:
|
|
4992
|
+
:param limit: Number of results to retrieve.
|
|
4993
4993
|
:type limit: str
|
|
4994
|
-
:param offset:
|
|
4994
|
+
: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.
|
|
4995
4995
|
:type offset: str
|
|
4996
4996
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
4997
4997
|
:type q: str
|
|
@@ -5053,8 +5053,8 @@ class ASAInterfacesApi:
|
|
|
5053
5053
|
def get_asa_vlan_interfaces_with_http_info(
|
|
5054
5054
|
self,
|
|
5055
5055
|
device_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the device.")],
|
|
5056
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
5057
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
5056
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
5057
|
+
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,
|
|
5058
5058
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
5059
5059
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
5060
5060
|
_request_timeout: Union[
|
|
@@ -5076,9 +5076,9 @@ class ASAInterfacesApi:
|
|
|
5076
5076
|
|
|
5077
5077
|
:param device_uid: Unique identifier (UUID) of the device. (required)
|
|
5078
5078
|
:type device_uid: str
|
|
5079
|
-
:param limit:
|
|
5079
|
+
:param limit: Number of results to retrieve.
|
|
5080
5080
|
:type limit: str
|
|
5081
|
-
:param offset:
|
|
5081
|
+
: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.
|
|
5082
5082
|
:type offset: str
|
|
5083
5083
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
5084
5084
|
:type q: str
|
|
@@ -5140,8 +5140,8 @@ class ASAInterfacesApi:
|
|
|
5140
5140
|
def get_asa_vlan_interfaces_without_preload_content(
|
|
5141
5141
|
self,
|
|
5142
5142
|
device_uid: Annotated[StrictStr, Field(description="Unique identifier (UUID) of the device.")],
|
|
5143
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
5144
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
5143
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
5144
|
+
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,
|
|
5145
5145
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
5146
5146
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
5147
5147
|
_request_timeout: Union[
|
|
@@ -5163,9 +5163,9 @@ class ASAInterfacesApi:
|
|
|
5163
5163
|
|
|
5164
5164
|
:param device_uid: Unique identifier (UUID) of the device. (required)
|
|
5165
5165
|
:type device_uid: str
|
|
5166
|
-
:param limit:
|
|
5166
|
+
:param limit: Number of results to retrieve.
|
|
5167
5167
|
:type limit: str
|
|
5168
|
-
:param offset:
|
|
5168
|
+
: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.
|
|
5169
5169
|
:type offset: str
|
|
5170
5170
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
5171
5171
|
:type q: str
|
|
@@ -48,7 +48,7 @@ class DeviceHealthAggregationsApi:
|
|
|
48
48
|
threshold: Annotated[StrictStr, Field(description="The metric threshold (e.g. CRITICAL).")],
|
|
49
49
|
aggregation_period: Annotated[Optional[StrictStr], Field(description="The aggregation period of the metrics returned.")] = None,
|
|
50
50
|
managed_tenant_uid: Annotated[Optional[StrictStr], Field(description="A managed tenant UUID to filter list, if applicable.")] = None,
|
|
51
|
-
q: Annotated[Optional[StrictStr], Field(description="Lucene-style query filter. Only prefix queries (e.g. field:value*) are supported for filtering.")] = None,
|
|
51
|
+
q: Annotated[Optional[StrictStr], Field(description="Lucene-style query filter. Only prefix queries (e.g. field:value*) and wildcard queries (e.g. field:*value or field:*value*) are supported for filtering.")] = None,
|
|
52
52
|
_request_timeout: Union[
|
|
53
53
|
None,
|
|
54
54
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -74,7 +74,7 @@ class DeviceHealthAggregationsApi:
|
|
|
74
74
|
:type aggregation_period: str
|
|
75
75
|
:param managed_tenant_uid: A managed tenant UUID to filter list, if applicable.
|
|
76
76
|
:type managed_tenant_uid: str
|
|
77
|
-
:param q: Lucene-style query filter. Only prefix queries (e.g. field:value*) are supported for filtering.
|
|
77
|
+
:param q: Lucene-style query filter. Only prefix queries (e.g. field:value*) and wildcard queries (e.g. field:*value or field:*value*) are supported for filtering.
|
|
78
78
|
:type q: str
|
|
79
79
|
:param _request_timeout: timeout setting for this request. If one
|
|
80
80
|
number provided, it will be total request
|
|
@@ -136,7 +136,7 @@ class DeviceHealthAggregationsApi:
|
|
|
136
136
|
threshold: Annotated[StrictStr, Field(description="The metric threshold (e.g. CRITICAL).")],
|
|
137
137
|
aggregation_period: Annotated[Optional[StrictStr], Field(description="The aggregation period of the metrics returned.")] = None,
|
|
138
138
|
managed_tenant_uid: Annotated[Optional[StrictStr], Field(description="A managed tenant UUID to filter list, if applicable.")] = None,
|
|
139
|
-
q: Annotated[Optional[StrictStr], Field(description="Lucene-style query filter. Only prefix queries (e.g. field:value*) are supported for filtering.")] = None,
|
|
139
|
+
q: Annotated[Optional[StrictStr], Field(description="Lucene-style query filter. Only prefix queries (e.g. field:value*) and wildcard queries (e.g. field:*value or field:*value*) are supported for filtering.")] = None,
|
|
140
140
|
_request_timeout: Union[
|
|
141
141
|
None,
|
|
142
142
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -162,7 +162,7 @@ class DeviceHealthAggregationsApi:
|
|
|
162
162
|
:type aggregation_period: str
|
|
163
163
|
:param managed_tenant_uid: A managed tenant UUID to filter list, if applicable.
|
|
164
164
|
:type managed_tenant_uid: str
|
|
165
|
-
:param q: Lucene-style query filter. Only prefix queries (e.g. field:value*) are supported for filtering.
|
|
165
|
+
:param q: Lucene-style query filter. Only prefix queries (e.g. field:value*) and wildcard queries (e.g. field:*value or field:*value*) are supported for filtering.
|
|
166
166
|
:type q: str
|
|
167
167
|
:param _request_timeout: timeout setting for this request. If one
|
|
168
168
|
number provided, it will be total request
|
|
@@ -224,7 +224,7 @@ class DeviceHealthAggregationsApi:
|
|
|
224
224
|
threshold: Annotated[StrictStr, Field(description="The metric threshold (e.g. CRITICAL).")],
|
|
225
225
|
aggregation_period: Annotated[Optional[StrictStr], Field(description="The aggregation period of the metrics returned.")] = None,
|
|
226
226
|
managed_tenant_uid: Annotated[Optional[StrictStr], Field(description="A managed tenant UUID to filter list, if applicable.")] = None,
|
|
227
|
-
q: Annotated[Optional[StrictStr], Field(description="Lucene-style query filter. Only prefix queries (e.g. field:value*) are supported for filtering.")] = None,
|
|
227
|
+
q: Annotated[Optional[StrictStr], Field(description="Lucene-style query filter. Only prefix queries (e.g. field:value*) and wildcard queries (e.g. field:*value or field:*value*) are supported for filtering.")] = None,
|
|
228
228
|
_request_timeout: Union[
|
|
229
229
|
None,
|
|
230
230
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -250,7 +250,7 @@ class DeviceHealthAggregationsApi:
|
|
|
250
250
|
:type aggregation_period: str
|
|
251
251
|
:param managed_tenant_uid: A managed tenant UUID to filter list, if applicable.
|
|
252
252
|
:type managed_tenant_uid: str
|
|
253
|
-
:param q: Lucene-style query filter. Only prefix queries (e.g. field:value*) are supported for filtering.
|
|
253
|
+
:param q: Lucene-style query filter. Only prefix queries (e.g. field:value*) and wildcard queries (e.g. field:*value or field:*value*) are supported for filtering.
|
|
254
254
|
:type q: str
|
|
255
255
|
:param _request_timeout: timeout setting for this request. If one
|
|
256
256
|
number provided, it will be total request
|
|
@@ -1444,8 +1444,8 @@ class DeviceUpgradesApi:
|
|
|
1444
1444
|
@validate_call
|
|
1445
1445
|
def get_device_upgrade_runs(
|
|
1446
1446
|
self,
|
|
1447
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1448
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1447
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
1448
|
+
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,
|
|
1449
1449
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
1450
1450
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
1451
1451
|
_request_timeout: Union[
|
|
@@ -1465,9 +1465,9 @@ class DeviceUpgradesApi:
|
|
|
1465
1465
|
|
|
1466
1466
|
Get a list of FTD device upgrade runs in the SCC Firewall Manager Tenant. Each upgrade run represents a group of devices being upgraded, or staged for upgrades, together.
|
|
1467
1467
|
|
|
1468
|
-
:param limit:
|
|
1468
|
+
:param limit: Number of results to retrieve.
|
|
1469
1469
|
:type limit: str
|
|
1470
|
-
:param offset:
|
|
1470
|
+
: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.
|
|
1471
1471
|
:type offset: str
|
|
1472
1472
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
1473
1473
|
:type q: str
|
|
@@ -1527,8 +1527,8 @@ class DeviceUpgradesApi:
|
|
|
1527
1527
|
@validate_call
|
|
1528
1528
|
def get_device_upgrade_runs_with_http_info(
|
|
1529
1529
|
self,
|
|
1530
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1531
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1530
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
1531
|
+
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,
|
|
1532
1532
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
1533
1533
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
1534
1534
|
_request_timeout: Union[
|
|
@@ -1548,9 +1548,9 @@ class DeviceUpgradesApi:
|
|
|
1548
1548
|
|
|
1549
1549
|
Get a list of FTD device upgrade runs in the SCC Firewall Manager Tenant. Each upgrade run represents a group of devices being upgraded, or staged for upgrades, together.
|
|
1550
1550
|
|
|
1551
|
-
:param limit:
|
|
1551
|
+
:param limit: Number of results to retrieve.
|
|
1552
1552
|
:type limit: str
|
|
1553
|
-
:param offset:
|
|
1553
|
+
: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.
|
|
1554
1554
|
:type offset: str
|
|
1555
1555
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
1556
1556
|
:type q: str
|
|
@@ -1610,8 +1610,8 @@ class DeviceUpgradesApi:
|
|
|
1610
1610
|
@validate_call
|
|
1611
1611
|
def get_device_upgrade_runs_without_preload_content(
|
|
1612
1612
|
self,
|
|
1613
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1614
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1613
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
1614
|
+
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,
|
|
1615
1615
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
1616
1616
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
1617
1617
|
_request_timeout: Union[
|
|
@@ -1631,9 +1631,9 @@ class DeviceUpgradesApi:
|
|
|
1631
1631
|
|
|
1632
1632
|
Get a list of FTD device upgrade runs in the SCC Firewall Manager Tenant. Each upgrade run represents a group of devices being upgraded, or staged for upgrades, together.
|
|
1633
1633
|
|
|
1634
|
-
:param limit:
|
|
1634
|
+
:param limit: Number of results to retrieve.
|
|
1635
1635
|
:type limit: str
|
|
1636
|
-
:param offset:
|
|
1636
|
+
: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.
|
|
1637
1637
|
:type offset: str
|
|
1638
1638
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
1639
1639
|
:type q: str
|