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.
- scc_firewall_manager_sdk/__init__.py +19 -2
- 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 -12
- scc_firewall_manager_sdk/api/device_health_aggregations_api.py +19 -19
- scc_firewall_manager_sdk/api/device_upgrades_api.py +298 -297
- scc_firewall_manager_sdk/api/events_api.py +358 -0
- scc_firewall_manager_sdk/api/interface_health_aggregations_api.py +344 -0
- 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 +1692 -37
- 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/object_management_api.py +17 -0
- 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 +16 -1
- scc_firewall_manager_sdk/models/access_group.py +1 -1
- scc_firewall_manager_sdk/models/cdo_token_info.py +3 -1
- scc_firewall_manager_sdk/models/cdo_transaction.py +14 -14
- scc_firewall_manager_sdk/models/common_api_error.py +3 -3
- scc_firewall_manager_sdk/models/compatible_device_dto.py +100 -0
- scc_firewall_manager_sdk/models/compatible_version_info_dto.py +112 -0
- 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/{tenant_ftd_compatibility_version.py → device_upgrade_status_dto.py} +14 -18
- 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/metric_aggregation_list_item.py +12 -8
- scc_firewall_manager_sdk/models/msp_calculate_compatible_upgrade_versions_input.py +89 -0
- scc_firewall_manager_sdk/models/msp_managed_device.py +13 -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 +135 -0
- scc_firewall_manager_sdk/models/msp_upgrade_run_dto_page.py +102 -0
- scc_firewall_manager_sdk/models/msp_upgrade_runs_attribute_values.py +114 -0
- scc_firewall_manager_sdk/models/page.py +94 -0
- 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_compatibility_info_dto.py +107 -0
- scc_firewall_manager_sdk/models/upgrade_run_dto.py +14 -4
- scc_firewall_manager_sdk/models/upgrade_run_metadata_dto.py +96 -0
- {scc_firewall_manager_sdk-1.15.195.dist-info → scc_firewall_manager_sdk-1.15.563.dist-info}/METADATA +1 -1
- {scc_firewall_manager_sdk-1.15.195.dist-info → scc_firewall_manager_sdk-1.15.563.dist-info}/RECORD +58 -41
- {scc_firewall_manager_sdk-1.15.195.dist-info → scc_firewall_manager_sdk-1.15.563.dist-info}/WHEEL +0 -0
- {scc_firewall_manager_sdk-1.15.195.dist-info → scc_firewall_manager_sdk-1.15.563.dist-info}/top_level.txt +0 -0
|
@@ -317,8 +317,8 @@ class ChangelogsApi:
|
|
|
317
317
|
@validate_call
|
|
318
318
|
def get_changelogs(
|
|
319
319
|
self,
|
|
320
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
321
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
320
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
321
|
+
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,
|
|
322
322
|
search_text: Annotated[Optional[StrictStr], Field(description="The searchText parameter serves as a flexible search option that allows for text-based filtering across all fields of the Change Log object. This parameter can be used independently to search for entries containing the specified text, or in combination with the q query parameter for more targeted results. When used with q, the search conditions of searchText are logically ANDed with the q parameter's criteria, ensuring that the returned entries satisfy both sets of conditions.")] = None,
|
|
323
323
|
time_range: Annotated[Optional[StrictStr], Field(description="The time range for which to retrieve Change Logs. This parameter cannot be used in conjunction with a query on the lastEventDate field.")] = None,
|
|
324
324
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
@@ -339,9 +339,9 @@ class ChangelogsApi:
|
|
|
339
339
|
|
|
340
340
|
Get a list of Change Logs in the Security Cloud Control tenant.
|
|
341
341
|
|
|
342
|
-
:param limit:
|
|
342
|
+
:param limit: Number of results to retrieve.
|
|
343
343
|
:type limit: str
|
|
344
|
-
:param offset:
|
|
344
|
+
: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.
|
|
345
345
|
:type offset: str
|
|
346
346
|
:param search_text: The searchText parameter serves as a flexible search option that allows for text-based filtering across all fields of the Change Log object. This parameter can be used independently to search for entries containing the specified text, or in combination with the q query parameter for more targeted results. When used with q, the search conditions of searchText are logically ANDed with the q parameter's criteria, ensuring that the returned entries satisfy both sets of conditions.
|
|
347
347
|
:type search_text: str
|
|
@@ -405,8 +405,8 @@ class ChangelogsApi:
|
|
|
405
405
|
@validate_call
|
|
406
406
|
def get_changelogs_with_http_info(
|
|
407
407
|
self,
|
|
408
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
409
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
408
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
409
|
+
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,
|
|
410
410
|
search_text: Annotated[Optional[StrictStr], Field(description="The searchText parameter serves as a flexible search option that allows for text-based filtering across all fields of the Change Log object. This parameter can be used independently to search for entries containing the specified text, or in combination with the q query parameter for more targeted results. When used with q, the search conditions of searchText are logically ANDed with the q parameter's criteria, ensuring that the returned entries satisfy both sets of conditions.")] = None,
|
|
411
411
|
time_range: Annotated[Optional[StrictStr], Field(description="The time range for which to retrieve Change Logs. This parameter cannot be used in conjunction with a query on the lastEventDate field.")] = None,
|
|
412
412
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
@@ -427,9 +427,9 @@ class ChangelogsApi:
|
|
|
427
427
|
|
|
428
428
|
Get a list of Change Logs in the Security Cloud Control tenant.
|
|
429
429
|
|
|
430
|
-
:param limit:
|
|
430
|
+
:param limit: Number of results to retrieve.
|
|
431
431
|
:type limit: str
|
|
432
|
-
:param offset:
|
|
432
|
+
: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.
|
|
433
433
|
:type offset: str
|
|
434
434
|
:param search_text: The searchText parameter serves as a flexible search option that allows for text-based filtering across all fields of the Change Log object. This parameter can be used independently to search for entries containing the specified text, or in combination with the q query parameter for more targeted results. When used with q, the search conditions of searchText are logically ANDed with the q parameter's criteria, ensuring that the returned entries satisfy both sets of conditions.
|
|
435
435
|
:type search_text: str
|
|
@@ -493,8 +493,8 @@ class ChangelogsApi:
|
|
|
493
493
|
@validate_call
|
|
494
494
|
def get_changelogs_without_preload_content(
|
|
495
495
|
self,
|
|
496
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
497
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
496
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
497
|
+
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,
|
|
498
498
|
search_text: Annotated[Optional[StrictStr], Field(description="The searchText parameter serves as a flexible search option that allows for text-based filtering across all fields of the Change Log object. This parameter can be used independently to search for entries containing the specified text, or in combination with the q query parameter for more targeted results. When used with q, the search conditions of searchText are logically ANDed with the q parameter's criteria, ensuring that the returned entries satisfy both sets of conditions.")] = None,
|
|
499
499
|
time_range: Annotated[Optional[StrictStr], Field(description="The time range for which to retrieve Change Logs. This parameter cannot be used in conjunction with a query on the lastEventDate field.")] = None,
|
|
500
500
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
@@ -515,9 +515,9 @@ class ChangelogsApi:
|
|
|
515
515
|
|
|
516
516
|
Get a list of Change Logs in the Security Cloud Control tenant.
|
|
517
517
|
|
|
518
|
-
:param limit:
|
|
518
|
+
:param limit: Number of results to retrieve.
|
|
519
519
|
:type limit: str
|
|
520
|
-
:param offset:
|
|
520
|
+
: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.
|
|
521
521
|
:type offset: str
|
|
522
522
|
:param search_text: The searchText parameter serves as a flexible search option that allows for text-based filtering across all fields of the Change Log object. This parameter can be used independently to search for entries containing the specified text, or in combination with the q query parameter for more targeted results. When used with q, the search conditions of searchText are logically ANDed with the q parameter's criteria, ensuring that the returned entries satisfy both sets of conditions.
|
|
523
523
|
:type search_text: str
|
|
@@ -1452,8 +1452,8 @@ class CommandLineInterfaceApi:
|
|
|
1452
1452
|
@validate_call
|
|
1453
1453
|
def get_cli_macros(
|
|
1454
1454
|
self,
|
|
1455
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1456
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1455
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
1456
|
+
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,
|
|
1457
1457
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
1458
1458
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
1459
1459
|
_request_timeout: Union[
|
|
@@ -1473,9 +1473,9 @@ class CommandLineInterfaceApi:
|
|
|
1473
1473
|
|
|
1474
1474
|
Get a list of CLI macros. A CLI macro is a fully-formed CLI command ready to use, or a template of a CLI command you can modify before you run it.
|
|
1475
1475
|
|
|
1476
|
-
:param limit:
|
|
1476
|
+
:param limit: Number of results to retrieve.
|
|
1477
1477
|
:type limit: str
|
|
1478
|
-
:param offset:
|
|
1478
|
+
: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.
|
|
1479
1479
|
:type offset: str
|
|
1480
1480
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
1481
1481
|
:type q: str
|
|
@@ -1536,8 +1536,8 @@ class CommandLineInterfaceApi:
|
|
|
1536
1536
|
@validate_call
|
|
1537
1537
|
def get_cli_macros_with_http_info(
|
|
1538
1538
|
self,
|
|
1539
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1540
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1539
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
1540
|
+
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,
|
|
1541
1541
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
1542
1542
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
1543
1543
|
_request_timeout: Union[
|
|
@@ -1557,9 +1557,9 @@ class CommandLineInterfaceApi:
|
|
|
1557
1557
|
|
|
1558
1558
|
Get a list of CLI macros. A CLI macro is a fully-formed CLI command ready to use, or a template of a CLI command you can modify before you run it.
|
|
1559
1559
|
|
|
1560
|
-
:param limit:
|
|
1560
|
+
:param limit: Number of results to retrieve.
|
|
1561
1561
|
:type limit: str
|
|
1562
|
-
:param offset:
|
|
1562
|
+
: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.
|
|
1563
1563
|
:type offset: str
|
|
1564
1564
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
1565
1565
|
:type q: str
|
|
@@ -1620,8 +1620,8 @@ class CommandLineInterfaceApi:
|
|
|
1620
1620
|
@validate_call
|
|
1621
1621
|
def get_cli_macros_without_preload_content(
|
|
1622
1622
|
self,
|
|
1623
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1624
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1623
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
1624
|
+
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,
|
|
1625
1625
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
1626
1626
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
1627
1627
|
_request_timeout: Union[
|
|
@@ -1641,9 +1641,9 @@ class CommandLineInterfaceApi:
|
|
|
1641
1641
|
|
|
1642
1642
|
Get a list of CLI macros. A CLI macro is a fully-formed CLI command ready to use, or a template of a CLI command you can modify before you run it.
|
|
1643
1643
|
|
|
1644
|
-
:param limit:
|
|
1644
|
+
:param limit: Number of results to retrieve.
|
|
1645
1645
|
:type limit: str
|
|
1646
|
-
:param offset:
|
|
1646
|
+
: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.
|
|
1647
1647
|
:type offset: str
|
|
1648
1648
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
1649
1649
|
:type q: str
|
|
@@ -2055,8 +2055,8 @@ class CommandLineInterfaceApi:
|
|
|
2055
2055
|
@validate_call
|
|
2056
2056
|
def get_cli_results(
|
|
2057
2057
|
self,
|
|
2058
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2059
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2058
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
2059
|
+
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,
|
|
2060
2060
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
2061
2061
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
2062
2062
|
_request_timeout: Union[
|
|
@@ -2076,9 +2076,9 @@ class CommandLineInterfaceApi:
|
|
|
2076
2076
|
|
|
2077
2077
|
Get a list of results from command lines executed using the [CDO Command Line Interface (CLI)](https://docs.defenseorchestrator.com/c-using-the-cdo-command-line-interface.html). These commands can be executed using either the Security Cloud Control UI or the API.
|
|
2078
2078
|
|
|
2079
|
-
:param limit:
|
|
2079
|
+
:param limit: Number of results to retrieve.
|
|
2080
2080
|
:type limit: str
|
|
2081
|
-
:param offset:
|
|
2081
|
+
: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.
|
|
2082
2082
|
:type offset: str
|
|
2083
2083
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
2084
2084
|
:type q: str
|
|
@@ -2139,8 +2139,8 @@ class CommandLineInterfaceApi:
|
|
|
2139
2139
|
@validate_call
|
|
2140
2140
|
def get_cli_results_with_http_info(
|
|
2141
2141
|
self,
|
|
2142
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2143
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2142
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
2143
|
+
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,
|
|
2144
2144
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
2145
2145
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
2146
2146
|
_request_timeout: Union[
|
|
@@ -2160,9 +2160,9 @@ class CommandLineInterfaceApi:
|
|
|
2160
2160
|
|
|
2161
2161
|
Get a list of results from command lines executed using the [CDO Command Line Interface (CLI)](https://docs.defenseorchestrator.com/c-using-the-cdo-command-line-interface.html). These commands can be executed using either the Security Cloud Control UI or the API.
|
|
2162
2162
|
|
|
2163
|
-
:param limit:
|
|
2163
|
+
:param limit: Number of results to retrieve.
|
|
2164
2164
|
:type limit: str
|
|
2165
|
-
:param offset:
|
|
2165
|
+
: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.
|
|
2166
2166
|
:type offset: str
|
|
2167
2167
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
2168
2168
|
:type q: str
|
|
@@ -2223,8 +2223,8 @@ class CommandLineInterfaceApi:
|
|
|
2223
2223
|
@validate_call
|
|
2224
2224
|
def get_cli_results_without_preload_content(
|
|
2225
2225
|
self,
|
|
2226
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2227
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2226
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
2227
|
+
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,
|
|
2228
2228
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
2229
2229
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
2230
2230
|
_request_timeout: Union[
|
|
@@ -2244,9 +2244,9 @@ class CommandLineInterfaceApi:
|
|
|
2244
2244
|
|
|
2245
2245
|
Get a list of results from command lines executed using the [CDO Command Line Interface (CLI)](https://docs.defenseorchestrator.com/c-using-the-cdo-command-line-interface.html). These commands can be executed using either the Security Cloud Control UI or the API.
|
|
2246
2246
|
|
|
2247
|
-
:param limit:
|
|
2247
|
+
:param limit: Number of results to retrieve.
|
|
2248
2248
|
:type limit: str
|
|
2249
|
-
:param offset:
|
|
2249
|
+
: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.
|
|
2250
2250
|
:type offset: str
|
|
2251
2251
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
2252
2252
|
:type q: str
|
|
@@ -873,8 +873,8 @@ class ConnectorsApi:
|
|
|
873
873
|
@validate_call
|
|
874
874
|
def get_sdcs(
|
|
875
875
|
self,
|
|
876
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
877
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
876
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
877
|
+
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,
|
|
878
878
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
879
879
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
880
880
|
_request_timeout: Union[
|
|
@@ -894,9 +894,9 @@ class ConnectorsApi:
|
|
|
894
894
|
|
|
895
895
|
Get a list of on-prem SDCs in the Security Cloud Control tenant.
|
|
896
896
|
|
|
897
|
-
:param limit:
|
|
897
|
+
:param limit: Number of results to retrieve.
|
|
898
898
|
:type limit: str
|
|
899
|
-
:param offset:
|
|
899
|
+
: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.
|
|
900
900
|
:type offset: str
|
|
901
901
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
902
902
|
:type q: str
|
|
@@ -956,8 +956,8 @@ class ConnectorsApi:
|
|
|
956
956
|
@validate_call
|
|
957
957
|
def get_sdcs_with_http_info(
|
|
958
958
|
self,
|
|
959
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
960
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
959
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
960
|
+
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,
|
|
961
961
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
962
962
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
963
963
|
_request_timeout: Union[
|
|
@@ -977,9 +977,9 @@ class ConnectorsApi:
|
|
|
977
977
|
|
|
978
978
|
Get a list of on-prem SDCs in the Security Cloud Control tenant.
|
|
979
979
|
|
|
980
|
-
:param limit:
|
|
980
|
+
:param limit: Number of results to retrieve.
|
|
981
981
|
:type limit: str
|
|
982
|
-
:param offset:
|
|
982
|
+
: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.
|
|
983
983
|
:type offset: str
|
|
984
984
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
985
985
|
:type q: str
|
|
@@ -1039,8 +1039,8 @@ class ConnectorsApi:
|
|
|
1039
1039
|
@validate_call
|
|
1040
1040
|
def get_sdcs_without_preload_content(
|
|
1041
1041
|
self,
|
|
1042
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1043
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1042
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
1043
|
+
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,
|
|
1044
1044
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
1045
1045
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
1046
1046
|
_request_timeout: Union[
|
|
@@ -1060,9 +1060,9 @@ class ConnectorsApi:
|
|
|
1060
1060
|
|
|
1061
1061
|
Get a list of on-prem SDCs in the Security Cloud Control tenant.
|
|
1062
1062
|
|
|
1063
|
-
:param limit:
|
|
1063
|
+
:param limit: Number of results to retrieve.
|
|
1064
1064
|
:type limit: str
|
|
1065
|
-
:param offset:
|
|
1065
|
+
: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.
|
|
1066
1066
|
:type offset: str
|
|
1067
1067
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
1068
1068
|
:type q: str
|
|
@@ -44,11 +44,11 @@ class DeviceHealthAggregationsApi:
|
|
|
44
44
|
@validate_call
|
|
45
45
|
def get_device_health_metric_aggregation_list(
|
|
46
46
|
self,
|
|
47
|
-
metric: Annotated[StrictStr, Field(description="The metric for the device health aggregation list.")],
|
|
47
|
+
metric: Annotated[StrictStr, Field(description="The metric for the device health aggregation detailed list.")],
|
|
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)],
|
|
@@ -62,11 +62,11 @@ class DeviceHealthAggregationsApi:
|
|
|
62
62
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
63
63
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
64
64
|
) -> MetricAggregationListResponse:
|
|
65
|
-
"""Get device list for aggregations
|
|
65
|
+
"""Get device detailed list for aggregations
|
|
66
66
|
|
|
67
|
-
Retrieve filtered device list corresponding to aggregation metrics.
|
|
67
|
+
Retrieve filtered device detailed list corresponding to aggregation metrics.
|
|
68
68
|
|
|
69
|
-
:param metric: The metric for the device health aggregation list. (required)
|
|
69
|
+
:param metric: The metric for the device health aggregation detailed list. (required)
|
|
70
70
|
:type metric: str
|
|
71
71
|
:param threshold: The metric threshold (e.g. CRITICAL). (required)
|
|
72
72
|
:type threshold: str
|
|
@@ -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
|
|
@@ -132,11 +132,11 @@ class DeviceHealthAggregationsApi:
|
|
|
132
132
|
@validate_call
|
|
133
133
|
def get_device_health_metric_aggregation_list_with_http_info(
|
|
134
134
|
self,
|
|
135
|
-
metric: Annotated[StrictStr, Field(description="The metric for the device health aggregation list.")],
|
|
135
|
+
metric: Annotated[StrictStr, Field(description="The metric for the device health aggregation detailed list.")],
|
|
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)],
|
|
@@ -150,11 +150,11 @@ class DeviceHealthAggregationsApi:
|
|
|
150
150
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
151
151
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
152
152
|
) -> ApiResponse[MetricAggregationListResponse]:
|
|
153
|
-
"""Get device list for aggregations
|
|
153
|
+
"""Get device detailed list for aggregations
|
|
154
154
|
|
|
155
|
-
Retrieve filtered device list corresponding to aggregation metrics.
|
|
155
|
+
Retrieve filtered device detailed list corresponding to aggregation metrics.
|
|
156
156
|
|
|
157
|
-
:param metric: The metric for the device health aggregation list. (required)
|
|
157
|
+
:param metric: The metric for the device health aggregation detailed list. (required)
|
|
158
158
|
:type metric: str
|
|
159
159
|
:param threshold: The metric threshold (e.g. CRITICAL). (required)
|
|
160
160
|
:type threshold: str
|
|
@@ -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
|
|
@@ -220,11 +220,11 @@ class DeviceHealthAggregationsApi:
|
|
|
220
220
|
@validate_call
|
|
221
221
|
def get_device_health_metric_aggregation_list_without_preload_content(
|
|
222
222
|
self,
|
|
223
|
-
metric: Annotated[StrictStr, Field(description="The metric for the device health aggregation list.")],
|
|
223
|
+
metric: Annotated[StrictStr, Field(description="The metric for the device health aggregation detailed list.")],
|
|
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)],
|
|
@@ -238,11 +238,11 @@ class DeviceHealthAggregationsApi:
|
|
|
238
238
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
239
239
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
240
240
|
) -> RESTResponseType:
|
|
241
|
-
"""Get device list for aggregations
|
|
241
|
+
"""Get device detailed list for aggregations
|
|
242
242
|
|
|
243
|
-
Retrieve filtered device list corresponding to aggregation metrics.
|
|
243
|
+
Retrieve filtered device detailed list corresponding to aggregation metrics.
|
|
244
244
|
|
|
245
|
-
:param metric: The metric for the device health aggregation list. (required)
|
|
245
|
+
:param metric: The metric for the device health aggregation detailed list. (required)
|
|
246
246
|
:type metric: str
|
|
247
247
|
:param threshold: The metric threshold (e.g. CRITICAL). (required)
|
|
248
248
|
:type threshold: str
|
|
@@ -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
|
|
@@ -368,7 +368,7 @@ class DeviceHealthAggregationsApi:
|
|
|
368
368
|
|
|
369
369
|
return self.api_client.param_serialize(
|
|
370
370
|
method='GET',
|
|
371
|
-
resource_path='/v1/inventory/devices/health/metrics/aggregations/
|
|
371
|
+
resource_path='/v1/inventory/devices/health/metrics/aggregations/details',
|
|
372
372
|
path_params=_path_params,
|
|
373
373
|
query_params=_query_params,
|
|
374
374
|
header_params=_header_params,
|