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
|
@@ -634,6 +634,7 @@ class ObjectManagementApi:
|
|
|
634
634
|
def delete_object(
|
|
635
635
|
self,
|
|
636
636
|
uid: Annotated[StrictStr, Field(description="The unique identifier of the object being deleted.")],
|
|
637
|
+
forced_delete: Annotated[Optional[StrictBool], Field(description="Force mode is required to delete an object that hasn't targets but is in use by another object.")] = None,
|
|
637
638
|
_request_timeout: Union[
|
|
638
639
|
None,
|
|
639
640
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -653,6 +654,8 @@ class ObjectManagementApi:
|
|
|
653
654
|
|
|
654
655
|
:param uid: The unique identifier of the object being deleted. (required)
|
|
655
656
|
:type uid: str
|
|
657
|
+
:param forced_delete: Force mode is required to delete an object that hasn't targets but is in use by another object.
|
|
658
|
+
:type forced_delete: bool
|
|
656
659
|
:param _request_timeout: timeout setting for this request. If one
|
|
657
660
|
number provided, it will be total request
|
|
658
661
|
timeout. It can also be a pair (tuple) of
|
|
@@ -677,6 +680,7 @@ class ObjectManagementApi:
|
|
|
677
680
|
|
|
678
681
|
_param = self._delete_object_serialize(
|
|
679
682
|
uid=uid,
|
|
683
|
+
forced_delete=forced_delete,
|
|
680
684
|
_request_auth=_request_auth,
|
|
681
685
|
_content_type=_content_type,
|
|
682
686
|
_headers=_headers,
|
|
@@ -705,6 +709,7 @@ class ObjectManagementApi:
|
|
|
705
709
|
def delete_object_with_http_info(
|
|
706
710
|
self,
|
|
707
711
|
uid: Annotated[StrictStr, Field(description="The unique identifier of the object being deleted.")],
|
|
712
|
+
forced_delete: Annotated[Optional[StrictBool], Field(description="Force mode is required to delete an object that hasn't targets but is in use by another object.")] = None,
|
|
708
713
|
_request_timeout: Union[
|
|
709
714
|
None,
|
|
710
715
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -724,6 +729,8 @@ class ObjectManagementApi:
|
|
|
724
729
|
|
|
725
730
|
:param uid: The unique identifier of the object being deleted. (required)
|
|
726
731
|
:type uid: str
|
|
732
|
+
:param forced_delete: Force mode is required to delete an object that hasn't targets but is in use by another object.
|
|
733
|
+
:type forced_delete: bool
|
|
727
734
|
:param _request_timeout: timeout setting for this request. If one
|
|
728
735
|
number provided, it will be total request
|
|
729
736
|
timeout. It can also be a pair (tuple) of
|
|
@@ -748,6 +755,7 @@ class ObjectManagementApi:
|
|
|
748
755
|
|
|
749
756
|
_param = self._delete_object_serialize(
|
|
750
757
|
uid=uid,
|
|
758
|
+
forced_delete=forced_delete,
|
|
751
759
|
_request_auth=_request_auth,
|
|
752
760
|
_content_type=_content_type,
|
|
753
761
|
_headers=_headers,
|
|
@@ -776,6 +784,7 @@ class ObjectManagementApi:
|
|
|
776
784
|
def delete_object_without_preload_content(
|
|
777
785
|
self,
|
|
778
786
|
uid: Annotated[StrictStr, Field(description="The unique identifier of the object being deleted.")],
|
|
787
|
+
forced_delete: Annotated[Optional[StrictBool], Field(description="Force mode is required to delete an object that hasn't targets but is in use by another object.")] = None,
|
|
779
788
|
_request_timeout: Union[
|
|
780
789
|
None,
|
|
781
790
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -795,6 +804,8 @@ class ObjectManagementApi:
|
|
|
795
804
|
|
|
796
805
|
:param uid: The unique identifier of the object being deleted. (required)
|
|
797
806
|
:type uid: str
|
|
807
|
+
:param forced_delete: Force mode is required to delete an object that hasn't targets but is in use by another object.
|
|
808
|
+
:type forced_delete: bool
|
|
798
809
|
:param _request_timeout: timeout setting for this request. If one
|
|
799
810
|
number provided, it will be total request
|
|
800
811
|
timeout. It can also be a pair (tuple) of
|
|
@@ -819,6 +830,7 @@ class ObjectManagementApi:
|
|
|
819
830
|
|
|
820
831
|
_param = self._delete_object_serialize(
|
|
821
832
|
uid=uid,
|
|
833
|
+
forced_delete=forced_delete,
|
|
822
834
|
_request_auth=_request_auth,
|
|
823
835
|
_content_type=_content_type,
|
|
824
836
|
_headers=_headers,
|
|
@@ -842,6 +854,7 @@ class ObjectManagementApi:
|
|
|
842
854
|
def _delete_object_serialize(
|
|
843
855
|
self,
|
|
844
856
|
uid,
|
|
857
|
+
forced_delete,
|
|
845
858
|
_request_auth,
|
|
846
859
|
_content_type,
|
|
847
860
|
_headers,
|
|
@@ -864,6 +877,10 @@ class ObjectManagementApi:
|
|
|
864
877
|
if uid is not None:
|
|
865
878
|
_path_params['uid'] = uid
|
|
866
879
|
# process the query parameters
|
|
880
|
+
if forced_delete is not None:
|
|
881
|
+
|
|
882
|
+
_query_params.append(('forcedDelete', forced_delete))
|
|
883
|
+
|
|
867
884
|
# process the header parameters
|
|
868
885
|
# process the form parameters
|
|
869
886
|
# process the body parameter
|
|
@@ -324,8 +324,8 @@ class RemoteAccessMonitoringApi:
|
|
|
324
324
|
@validate_call
|
|
325
325
|
def get_mfa_events(
|
|
326
326
|
self,
|
|
327
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
328
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
327
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
328
|
+
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,
|
|
329
329
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
330
330
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
331
331
|
_request_timeout: Union[
|
|
@@ -345,9 +345,9 @@ class RemoteAccessMonitoringApi:
|
|
|
345
345
|
|
|
346
346
|
Get a list of MFA events.
|
|
347
347
|
|
|
348
|
-
:param limit:
|
|
348
|
+
:param limit: Number of results to retrieve.
|
|
349
349
|
:type limit: str
|
|
350
|
-
:param offset:
|
|
350
|
+
: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.
|
|
351
351
|
:type offset: str
|
|
352
352
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
353
353
|
:type q: str
|
|
@@ -408,8 +408,8 @@ class RemoteAccessMonitoringApi:
|
|
|
408
408
|
@validate_call
|
|
409
409
|
def get_mfa_events_with_http_info(
|
|
410
410
|
self,
|
|
411
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
412
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
411
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
412
|
+
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,
|
|
413
413
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
414
414
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
415
415
|
_request_timeout: Union[
|
|
@@ -429,9 +429,9 @@ class RemoteAccessMonitoringApi:
|
|
|
429
429
|
|
|
430
430
|
Get a list of MFA events.
|
|
431
431
|
|
|
432
|
-
:param limit:
|
|
432
|
+
:param limit: Number of results to retrieve.
|
|
433
433
|
:type limit: str
|
|
434
|
-
:param offset:
|
|
434
|
+
: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.
|
|
435
435
|
:type offset: str
|
|
436
436
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
437
437
|
:type q: str
|
|
@@ -492,8 +492,8 @@ class RemoteAccessMonitoringApi:
|
|
|
492
492
|
@validate_call
|
|
493
493
|
def get_mfa_events_without_preload_content(
|
|
494
494
|
self,
|
|
495
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
496
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
495
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
496
|
+
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,
|
|
497
497
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
498
498
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
499
499
|
_request_timeout: Union[
|
|
@@ -513,9 +513,9 @@ class RemoteAccessMonitoringApi:
|
|
|
513
513
|
|
|
514
514
|
Get a list of MFA events.
|
|
515
515
|
|
|
516
|
-
:param limit:
|
|
516
|
+
:param limit: Number of results to retrieve.
|
|
517
517
|
:type limit: str
|
|
518
|
-
:param offset:
|
|
518
|
+
: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.
|
|
519
519
|
:type offset: str
|
|
520
520
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
521
521
|
:type q: str
|
|
@@ -927,8 +927,8 @@ class RemoteAccessMonitoringApi:
|
|
|
927
927
|
@validate_call
|
|
928
928
|
def get_ra_vpn_sessions(
|
|
929
929
|
self,
|
|
930
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
931
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
930
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
931
|
+
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,
|
|
932
932
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
933
933
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
934
934
|
_request_timeout: Union[
|
|
@@ -948,9 +948,9 @@ class RemoteAccessMonitoringApi:
|
|
|
948
948
|
|
|
949
949
|
Get a list of RA VPN sessions.
|
|
950
950
|
|
|
951
|
-
:param limit:
|
|
951
|
+
:param limit: Number of results to retrieve.
|
|
952
952
|
:type limit: str
|
|
953
|
-
:param offset:
|
|
953
|
+
: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.
|
|
954
954
|
:type offset: str
|
|
955
955
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
956
956
|
:type q: str
|
|
@@ -1011,8 +1011,8 @@ class RemoteAccessMonitoringApi:
|
|
|
1011
1011
|
@validate_call
|
|
1012
1012
|
def get_ra_vpn_sessions_with_http_info(
|
|
1013
1013
|
self,
|
|
1014
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1015
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1014
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
1015
|
+
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,
|
|
1016
1016
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
1017
1017
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
1018
1018
|
_request_timeout: Union[
|
|
@@ -1032,9 +1032,9 @@ class RemoteAccessMonitoringApi:
|
|
|
1032
1032
|
|
|
1033
1033
|
Get a list of RA VPN sessions.
|
|
1034
1034
|
|
|
1035
|
-
:param limit:
|
|
1035
|
+
:param limit: Number of results to retrieve.
|
|
1036
1036
|
:type limit: str
|
|
1037
|
-
:param offset:
|
|
1037
|
+
: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.
|
|
1038
1038
|
:type offset: str
|
|
1039
1039
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
1040
1040
|
:type q: str
|
|
@@ -1095,8 +1095,8 @@ class RemoteAccessMonitoringApi:
|
|
|
1095
1095
|
@validate_call
|
|
1096
1096
|
def get_ra_vpn_sessions_without_preload_content(
|
|
1097
1097
|
self,
|
|
1098
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1099
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1098
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
1099
|
+
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,
|
|
1100
1100
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
1101
1101
|
sort: Annotated[Optional[List[StrictStr]], Field(description="The fields to sort results by.")] = None,
|
|
1102
1102
|
_request_timeout: Union[
|
|
@@ -1116,9 +1116,9 @@ class RemoteAccessMonitoringApi:
|
|
|
1116
1116
|
|
|
1117
1117
|
Get a list of RA VPN sessions.
|
|
1118
1118
|
|
|
1119
|
-
:param limit:
|
|
1119
|
+
:param limit: Number of results to retrieve.
|
|
1120
1120
|
:type limit: str
|
|
1121
|
-
:param offset:
|
|
1121
|
+
: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.
|
|
1122
1122
|
:type offset: str
|
|
1123
1123
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
1124
1124
|
:type q: str
|
|
@@ -825,8 +825,8 @@ class TenantManagementApi:
|
|
|
825
825
|
@validate_call
|
|
826
826
|
def get_tenants(
|
|
827
827
|
self,
|
|
828
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
829
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
828
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
829
|
+
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,
|
|
830
830
|
_request_timeout: Union[
|
|
831
831
|
None,
|
|
832
832
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -840,13 +840,13 @@ class TenantManagementApi:
|
|
|
840
840
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
841
841
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
842
842
|
) -> TenantPage:
|
|
843
|
-
"""Get Tenants
|
|
843
|
+
"""(Deprecated) Get Tenants
|
|
844
844
|
|
|
845
|
-
Get a list of tenants with which the Security Cloud Control user is associated.
|
|
845
|
+
Get a list of tenants with which the Security Cloud Control user is associated. This endpoint must be called using the access token of a human user associated with a tenant.
|
|
846
846
|
|
|
847
|
-
:param limit:
|
|
847
|
+
:param limit: Number of results to retrieve.
|
|
848
848
|
:type limit: str
|
|
849
|
-
:param offset:
|
|
849
|
+
: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.
|
|
850
850
|
:type offset: str
|
|
851
851
|
:param _request_timeout: timeout setting for this request. If one
|
|
852
852
|
number provided, it will be total request
|
|
@@ -869,6 +869,7 @@ class TenantManagementApi:
|
|
|
869
869
|
:type _host_index: int, optional
|
|
870
870
|
:return: Returns the result object.
|
|
871
871
|
""" # noqa: E501
|
|
872
|
+
warnings.warn("GET /v1/tenants is deprecated.", DeprecationWarning)
|
|
872
873
|
|
|
873
874
|
_param = self._get_tenants_serialize(
|
|
874
875
|
limit=limit,
|
|
@@ -900,8 +901,8 @@ class TenantManagementApi:
|
|
|
900
901
|
@validate_call
|
|
901
902
|
def get_tenants_with_http_info(
|
|
902
903
|
self,
|
|
903
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
904
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
904
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
905
|
+
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,
|
|
905
906
|
_request_timeout: Union[
|
|
906
907
|
None,
|
|
907
908
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -915,13 +916,13 @@ class TenantManagementApi:
|
|
|
915
916
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
916
917
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
917
918
|
) -> ApiResponse[TenantPage]:
|
|
918
|
-
"""Get Tenants
|
|
919
|
+
"""(Deprecated) Get Tenants
|
|
919
920
|
|
|
920
|
-
Get a list of tenants with which the Security Cloud Control user is associated.
|
|
921
|
+
Get a list of tenants with which the Security Cloud Control user is associated. This endpoint must be called using the access token of a human user associated with a tenant.
|
|
921
922
|
|
|
922
|
-
:param limit:
|
|
923
|
+
:param limit: Number of results to retrieve.
|
|
923
924
|
:type limit: str
|
|
924
|
-
:param offset:
|
|
925
|
+
: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.
|
|
925
926
|
:type offset: str
|
|
926
927
|
:param _request_timeout: timeout setting for this request. If one
|
|
927
928
|
number provided, it will be total request
|
|
@@ -944,6 +945,7 @@ class TenantManagementApi:
|
|
|
944
945
|
:type _host_index: int, optional
|
|
945
946
|
:return: Returns the result object.
|
|
946
947
|
""" # noqa: E501
|
|
948
|
+
warnings.warn("GET /v1/tenants is deprecated.", DeprecationWarning)
|
|
947
949
|
|
|
948
950
|
_param = self._get_tenants_serialize(
|
|
949
951
|
limit=limit,
|
|
@@ -975,8 +977,8 @@ class TenantManagementApi:
|
|
|
975
977
|
@validate_call
|
|
976
978
|
def get_tenants_without_preload_content(
|
|
977
979
|
self,
|
|
978
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
979
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
980
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
981
|
+
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,
|
|
980
982
|
_request_timeout: Union[
|
|
981
983
|
None,
|
|
982
984
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -990,13 +992,13 @@ class TenantManagementApi:
|
|
|
990
992
|
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
991
993
|
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
992
994
|
) -> RESTResponseType:
|
|
993
|
-
"""Get Tenants
|
|
995
|
+
"""(Deprecated) Get Tenants
|
|
994
996
|
|
|
995
|
-
Get a list of tenants with which the Security Cloud Control user is associated.
|
|
997
|
+
Get a list of tenants with which the Security Cloud Control user is associated. This endpoint must be called using the access token of a human user associated with a tenant.
|
|
996
998
|
|
|
997
|
-
:param limit:
|
|
999
|
+
:param limit: Number of results to retrieve.
|
|
998
1000
|
:type limit: str
|
|
999
|
-
:param offset:
|
|
1001
|
+
: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.
|
|
1000
1002
|
:type offset: str
|
|
1001
1003
|
:param _request_timeout: timeout setting for this request. If one
|
|
1002
1004
|
number provided, it will be total request
|
|
@@ -1019,6 +1021,7 @@ class TenantManagementApi:
|
|
|
1019
1021
|
:type _host_index: int, optional
|
|
1020
1022
|
:return: Returns the result object.
|
|
1021
1023
|
""" # noqa: E501
|
|
1024
|
+
warnings.warn("GET /v1/tenants is deprecated.", DeprecationWarning)
|
|
1022
1025
|
|
|
1023
1026
|
_param = self._get_tenants_serialize(
|
|
1024
1027
|
limit=limit,
|
|
@@ -2329,8 +2329,8 @@ class UsersApi:
|
|
|
2329
2329
|
@validate_call
|
|
2330
2330
|
def get_active_directory_groups(
|
|
2331
2331
|
self,
|
|
2332
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2333
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2332
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
2333
|
+
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,
|
|
2334
2334
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
2335
2335
|
_request_timeout: Union[
|
|
2336
2336
|
None,
|
|
@@ -2349,9 +2349,9 @@ class UsersApi:
|
|
|
2349
2349
|
|
|
2350
2350
|
Get a list of active directory groups associated with the Security Cloud Control tenant.
|
|
2351
2351
|
|
|
2352
|
-
:param limit:
|
|
2352
|
+
:param limit: Number of results to retrieve.
|
|
2353
2353
|
:type limit: str
|
|
2354
|
-
:param offset:
|
|
2354
|
+
: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.
|
|
2355
2355
|
:type offset: str
|
|
2356
2356
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
2357
2357
|
:type q: str
|
|
@@ -2408,8 +2408,8 @@ class UsersApi:
|
|
|
2408
2408
|
@validate_call
|
|
2409
2409
|
def get_active_directory_groups_with_http_info(
|
|
2410
2410
|
self,
|
|
2411
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2412
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2411
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
2412
|
+
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,
|
|
2413
2413
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
2414
2414
|
_request_timeout: Union[
|
|
2415
2415
|
None,
|
|
@@ -2428,9 +2428,9 @@ class UsersApi:
|
|
|
2428
2428
|
|
|
2429
2429
|
Get a list of active directory groups associated with the Security Cloud Control tenant.
|
|
2430
2430
|
|
|
2431
|
-
:param limit:
|
|
2431
|
+
:param limit: Number of results to retrieve.
|
|
2432
2432
|
:type limit: str
|
|
2433
|
-
:param offset:
|
|
2433
|
+
: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.
|
|
2434
2434
|
:type offset: str
|
|
2435
2435
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
2436
2436
|
:type q: str
|
|
@@ -2487,8 +2487,8 @@ class UsersApi:
|
|
|
2487
2487
|
@validate_call
|
|
2488
2488
|
def get_active_directory_groups_without_preload_content(
|
|
2489
2489
|
self,
|
|
2490
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2491
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2490
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
2491
|
+
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,
|
|
2492
2492
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
2493
2493
|
_request_timeout: Union[
|
|
2494
2494
|
None,
|
|
@@ -2507,9 +2507,9 @@ class UsersApi:
|
|
|
2507
2507
|
|
|
2508
2508
|
Get a list of active directory groups associated with the Security Cloud Control tenant.
|
|
2509
2509
|
|
|
2510
|
-
:param limit:
|
|
2510
|
+
:param limit: Number of results to retrieve.
|
|
2511
2511
|
:type limit: str
|
|
2512
|
-
:param offset:
|
|
2512
|
+
: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.
|
|
2513
2513
|
:type offset: str
|
|
2514
2514
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
2515
2515
|
:type q: str
|
|
@@ -2635,8 +2635,8 @@ class UsersApi:
|
|
|
2635
2635
|
@validate_call
|
|
2636
2636
|
def get_api_only_users(
|
|
2637
2637
|
self,
|
|
2638
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2639
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2638
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
2639
|
+
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,
|
|
2640
2640
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
2641
2641
|
_request_timeout: Union[
|
|
2642
2642
|
None,
|
|
@@ -2655,9 +2655,9 @@ class UsersApi:
|
|
|
2655
2655
|
|
|
2656
2656
|
Get a list of API-only users associated with the Security Cloud Control Firewall Manager tenant.
|
|
2657
2657
|
|
|
2658
|
-
:param limit:
|
|
2658
|
+
:param limit: Number of results to retrieve.
|
|
2659
2659
|
:type limit: str
|
|
2660
|
-
:param offset:
|
|
2660
|
+
: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.
|
|
2661
2661
|
:type offset: str
|
|
2662
2662
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
2663
2663
|
:type q: str
|
|
@@ -2714,8 +2714,8 @@ class UsersApi:
|
|
|
2714
2714
|
@validate_call
|
|
2715
2715
|
def get_api_only_users_with_http_info(
|
|
2716
2716
|
self,
|
|
2717
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2718
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2717
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
2718
|
+
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,
|
|
2719
2719
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
2720
2720
|
_request_timeout: Union[
|
|
2721
2721
|
None,
|
|
@@ -2734,9 +2734,9 @@ class UsersApi:
|
|
|
2734
2734
|
|
|
2735
2735
|
Get a list of API-only users associated with the Security Cloud Control Firewall Manager tenant.
|
|
2736
2736
|
|
|
2737
|
-
:param limit:
|
|
2737
|
+
:param limit: Number of results to retrieve.
|
|
2738
2738
|
:type limit: str
|
|
2739
|
-
:param offset:
|
|
2739
|
+
: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.
|
|
2740
2740
|
:type offset: str
|
|
2741
2741
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
2742
2742
|
:type q: str
|
|
@@ -2793,8 +2793,8 @@ class UsersApi:
|
|
|
2793
2793
|
@validate_call
|
|
2794
2794
|
def get_api_only_users_without_preload_content(
|
|
2795
2795
|
self,
|
|
2796
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2797
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
2796
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
2797
|
+
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,
|
|
2798
2798
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
2799
2799
|
_request_timeout: Union[
|
|
2800
2800
|
None,
|
|
@@ -2813,9 +2813,9 @@ class UsersApi:
|
|
|
2813
2813
|
|
|
2814
2814
|
Get a list of API-only users associated with the Security Cloud Control Firewall Manager tenant.
|
|
2815
2815
|
|
|
2816
|
-
:param limit:
|
|
2816
|
+
:param limit: Number of results to retrieve.
|
|
2817
2817
|
:type limit: str
|
|
2818
|
-
:param offset:
|
|
2818
|
+
: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.
|
|
2819
2819
|
:type offset: str
|
|
2820
2820
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
2821
2821
|
:type q: str
|
|
@@ -3464,7 +3464,7 @@ class UsersApi:
|
|
|
3464
3464
|
def get_users(
|
|
3465
3465
|
self,
|
|
3466
3466
|
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
|
|
3467
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
3467
|
+
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,
|
|
3468
3468
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
3469
3469
|
_request_timeout: Union[
|
|
3470
3470
|
None,
|
|
@@ -3485,7 +3485,7 @@ class UsersApi:
|
|
|
3485
3485
|
|
|
3486
3486
|
:param limit: The number of results to retrieve.
|
|
3487
3487
|
:type limit: str
|
|
3488
|
-
:param offset:
|
|
3488
|
+
: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.
|
|
3489
3489
|
:type offset: str
|
|
3490
3490
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
3491
3491
|
:type q: str
|
|
@@ -3543,7 +3543,7 @@ class UsersApi:
|
|
|
3543
3543
|
def get_users_with_http_info(
|
|
3544
3544
|
self,
|
|
3545
3545
|
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
|
|
3546
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
3546
|
+
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,
|
|
3547
3547
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
3548
3548
|
_request_timeout: Union[
|
|
3549
3549
|
None,
|
|
@@ -3564,7 +3564,7 @@ class UsersApi:
|
|
|
3564
3564
|
|
|
3565
3565
|
:param limit: The number of results to retrieve.
|
|
3566
3566
|
:type limit: str
|
|
3567
|
-
:param offset:
|
|
3567
|
+
: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.
|
|
3568
3568
|
:type offset: str
|
|
3569
3569
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
3570
3570
|
:type q: str
|
|
@@ -3622,7 +3622,7 @@ class UsersApi:
|
|
|
3622
3622
|
def get_users_without_preload_content(
|
|
3623
3623
|
self,
|
|
3624
3624
|
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="The number of results to retrieve.")] = None,
|
|
3625
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
3625
|
+
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,
|
|
3626
3626
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
3627
3627
|
_request_timeout: Union[
|
|
3628
3628
|
None,
|
|
@@ -3643,7 +3643,7 @@ class UsersApi:
|
|
|
3643
3643
|
|
|
3644
3644
|
:param limit: The number of results to retrieve.
|
|
3645
3645
|
:type limit: str
|
|
3646
|
-
:param offset:
|
|
3646
|
+
: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.
|
|
3647
3647
|
:type offset: str
|
|
3648
3648
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
3649
3649
|
:type q: str
|
|
@@ -88,7 +88,7 @@ class ApiClient:
|
|
|
88
88
|
self.default_headers[header_name] = header_value
|
|
89
89
|
self.cookie = cookie
|
|
90
90
|
# Set default User-Agent.
|
|
91
|
-
self.user_agent = 'OpenAPI-Generator/1.15.
|
|
91
|
+
self.user_agent = 'OpenAPI-Generator/1.15.563/python'
|
|
92
92
|
self.client_side_validation = configuration.client_side_validation
|
|
93
93
|
|
|
94
94
|
def __enter__(self):
|
|
@@ -380,7 +380,7 @@ class Configuration:
|
|
|
380
380
|
"OS: {env}\n"\
|
|
381
381
|
"Python Version: {pyversion}\n"\
|
|
382
382
|
"Version of the API: 1.15.0\n"\
|
|
383
|
-
"SDK Package Version: 1.15.
|
|
383
|
+
"SDK Package Version: 1.15.563".\
|
|
384
384
|
format(env=sys.platform, pyversion=sys.version)
|
|
385
385
|
|
|
386
386
|
def get_host_settings(self):
|