scc-firewall-manager-sdk 1.15.287__py3-none-any.whl → 1.15.563__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- scc_firewall_manager_sdk/__init__.py +9 -1
- scc_firewall_manager_sdk/api/__init__.py +2 -0
- scc_firewall_manager_sdk/api/ai_assistant_api.py +12 -12
- scc_firewall_manager_sdk/api/asa_access_groups_api.py +12 -12
- scc_firewall_manager_sdk/api/asa_access_rules_api.py +12 -12
- scc_firewall_manager_sdk/api/asa_interfaces_api.py +72 -72
- scc_firewall_manager_sdk/api/audit_logs_api.py +12 -12
- scc_firewall_manager_sdk/api/change_requests_api.py +12 -12
- scc_firewall_manager_sdk/api/changelogs_api.py +12 -12
- scc_firewall_manager_sdk/api/command_line_interface_api.py +24 -24
- scc_firewall_manager_sdk/api/connectors_api.py +12 -313
- scc_firewall_manager_sdk/api/device_health_aggregations_api.py +6 -6
- scc_firewall_manager_sdk/api/device_upgrades_api.py +15 -15
- scc_firewall_manager_sdk/api/events_api.py +358 -0
- scc_firewall_manager_sdk/api/interface_health_aggregations_api.py +6 -6
- scc_firewall_manager_sdk/api/inventory_api.py +48 -48
- scc_firewall_manager_sdk/api/licensing_api.py +626 -0
- scc_firewall_manager_sdk/api/msp_device_upgrades_api.py +53 -24
- scc_firewall_manager_sdk/api/msp_inventory_api.py +48 -48
- scc_firewall_manager_sdk/api/msp_tenant_management_api.py +41 -12
- scc_firewall_manager_sdk/api/msp_user_management_api.py +24 -24
- scc_firewall_manager_sdk/api/remote_access_monitoring_api.py +24 -24
- scc_firewall_manager_sdk/api/tenant_management_api.py +21 -18
- scc_firewall_manager_sdk/api/users_api.py +30 -30
- scc_firewall_manager_sdk/api_client.py +1 -1
- scc_firewall_manager_sdk/configuration.py +1 -1
- scc_firewall_manager_sdk/models/__init__.py +6 -0
- scc_firewall_manager_sdk/models/access_group.py +1 -1
- scc_firewall_manager_sdk/models/cdo_transaction.py +12 -12
- scc_firewall_manager_sdk/models/common_api_error.py +3 -3
- scc_firewall_manager_sdk/models/completion_status_dto.py +104 -0
- scc_firewall_manager_sdk/models/device_license_dto.py +133 -0
- scc_firewall_manager_sdk/models/device_license_page.py +102 -0
- scc_firewall_manager_sdk/models/device_upgrade_status_dto.py +13 -7
- scc_firewall_manager_sdk/models/enable_cd_fmc_for_tenant_request.py +88 -0
- scc_firewall_manager_sdk/models/log_settings.py +1 -1
- scc_firewall_manager_sdk/models/msp_calculate_compatible_upgrade_versions_input.py +1 -1
- scc_firewall_manager_sdk/models/msp_managed_device.py +7 -1
- scc_firewall_manager_sdk/models/msp_managed_device_distinct_attribute_values.py +5 -1
- scc_firewall_manager_sdk/models/msp_upgrade_ftd_devices_input.py +97 -0
- scc_firewall_manager_sdk/models/msp_upgrade_run_dto.py +9 -9
- scc_firewall_manager_sdk/models/msp_upgrade_runs_attribute_values.py +18 -3
- scc_firewall_manager_sdk/models/smart_account.py +90 -0
- scc_firewall_manager_sdk/models/tenant_settings.py +3 -1
- scc_firewall_manager_sdk/models/upgrade_run_dto.py +1 -1
- scc_firewall_manager_sdk/models/upgrade_run_metadata_dto.py +1 -1
- {scc_firewall_manager_sdk-1.15.287.dist-info → scc_firewall_manager_sdk-1.15.563.dist-info}/METADATA +1 -1
- {scc_firewall_manager_sdk-1.15.287.dist-info → scc_firewall_manager_sdk-1.15.563.dist-info}/RECORD +50 -42
- {scc_firewall_manager_sdk-1.15.287.dist-info → scc_firewall_manager_sdk-1.15.563.dist-info}/WHEEL +0 -0
- {scc_firewall_manager_sdk-1.15.287.dist-info → scc_firewall_manager_sdk-1.15.563.dist-info}/top_level.txt +0 -0
|
@@ -22,6 +22,7 @@ from typing import Optional
|
|
|
22
22
|
from typing_extensions import Annotated
|
|
23
23
|
from scc_firewall_manager_sdk.models.api_token_info import ApiTokenInfo
|
|
24
24
|
from scc_firewall_manager_sdk.models.cdo_transaction import CdoTransaction
|
|
25
|
+
from scc_firewall_manager_sdk.models.enable_cd_fmc_for_tenant_request import EnableCdFmcForTenantRequest
|
|
25
26
|
from scc_firewall_manager_sdk.models.msp_add_tenant_input import MspAddTenantInput
|
|
26
27
|
from scc_firewall_manager_sdk.models.msp_create_tenant_input import MspCreateTenantInput
|
|
27
28
|
from scc_firewall_manager_sdk.models.msp_managed_tenant import MspManagedTenant
|
|
@@ -1713,8 +1714,8 @@ class MSPTenantManagementApi:
|
|
|
1713
1714
|
@validate_call
|
|
1714
1715
|
def get_msp_managed_tenants(
|
|
1715
1716
|
self,
|
|
1716
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1717
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1717
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
1718
|
+
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,
|
|
1718
1719
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
1719
1720
|
_request_timeout: Union[
|
|
1720
1721
|
None,
|
|
@@ -1733,9 +1734,9 @@ class MSPTenantManagementApi:
|
|
|
1733
1734
|
|
|
1734
1735
|
Get a list of Security Cloud Control tenants managed by the MSP Portal.
|
|
1735
1736
|
|
|
1736
|
-
:param limit:
|
|
1737
|
+
:param limit: Number of results to retrieve.
|
|
1737
1738
|
:type limit: str
|
|
1738
|
-
:param offset:
|
|
1739
|
+
: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.
|
|
1739
1740
|
:type offset: str
|
|
1740
1741
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
1741
1742
|
:type q: str
|
|
@@ -1792,8 +1793,8 @@ class MSPTenantManagementApi:
|
|
|
1792
1793
|
@validate_call
|
|
1793
1794
|
def get_msp_managed_tenants_with_http_info(
|
|
1794
1795
|
self,
|
|
1795
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1796
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1796
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
1797
|
+
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,
|
|
1797
1798
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
1798
1799
|
_request_timeout: Union[
|
|
1799
1800
|
None,
|
|
@@ -1812,9 +1813,9 @@ class MSPTenantManagementApi:
|
|
|
1812
1813
|
|
|
1813
1814
|
Get a list of Security Cloud Control tenants managed by the MSP Portal.
|
|
1814
1815
|
|
|
1815
|
-
:param limit:
|
|
1816
|
+
:param limit: Number of results to retrieve.
|
|
1816
1817
|
:type limit: str
|
|
1817
|
-
:param offset:
|
|
1818
|
+
: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.
|
|
1818
1819
|
:type offset: str
|
|
1819
1820
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
1820
1821
|
:type q: str
|
|
@@ -1871,8 +1872,8 @@ class MSPTenantManagementApi:
|
|
|
1871
1872
|
@validate_call
|
|
1872
1873
|
def get_msp_managed_tenants_without_preload_content(
|
|
1873
1874
|
self,
|
|
1874
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1875
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1875
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
1876
|
+
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,
|
|
1876
1877
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
1877
1878
|
_request_timeout: Union[
|
|
1878
1879
|
None,
|
|
@@ -1891,9 +1892,9 @@ class MSPTenantManagementApi:
|
|
|
1891
1892
|
|
|
1892
1893
|
Get a list of Security Cloud Control tenants managed by the MSP Portal.
|
|
1893
1894
|
|
|
1894
|
-
:param limit:
|
|
1895
|
+
:param limit: Number of results to retrieve.
|
|
1895
1896
|
:type limit: str
|
|
1896
|
-
:param offset:
|
|
1897
|
+
: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.
|
|
1897
1898
|
:type offset: str
|
|
1898
1899
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
1899
1900
|
:type q: str
|
|
@@ -2020,6 +2021,7 @@ class MSPTenantManagementApi:
|
|
|
2020
2021
|
def provision_cd_fmc_for_tenant_in_msp_portal(
|
|
2021
2022
|
self,
|
|
2022
2023
|
tenant_uid: Annotated[StrictStr, Field(description="Unique identifier of the tenant that cdFMC provisioning will be enabled for.")],
|
|
2024
|
+
enable_cd_fmc_for_tenant_request: Optional[EnableCdFmcForTenantRequest] = None,
|
|
2023
2025
|
_request_timeout: Union[
|
|
2024
2026
|
None,
|
|
2025
2027
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2039,6 +2041,8 @@ class MSPTenantManagementApi:
|
|
|
2039
2041
|
|
|
2040
2042
|
:param tenant_uid: Unique identifier of the tenant that cdFMC provisioning will be enabled for. (required)
|
|
2041
2043
|
:type tenant_uid: str
|
|
2044
|
+
:param enable_cd_fmc_for_tenant_request:
|
|
2045
|
+
:type enable_cd_fmc_for_tenant_request: EnableCdFmcForTenantRequest
|
|
2042
2046
|
:param _request_timeout: timeout setting for this request. If one
|
|
2043
2047
|
number provided, it will be total request
|
|
2044
2048
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2063,6 +2067,7 @@ class MSPTenantManagementApi:
|
|
|
2063
2067
|
|
|
2064
2068
|
_param = self._provision_cd_fmc_for_tenant_in_msp_portal_serialize(
|
|
2065
2069
|
tenant_uid=tenant_uid,
|
|
2070
|
+
enable_cd_fmc_for_tenant_request=enable_cd_fmc_for_tenant_request,
|
|
2066
2071
|
_request_auth=_request_auth,
|
|
2067
2072
|
_content_type=_content_type,
|
|
2068
2073
|
_headers=_headers,
|
|
@@ -2088,6 +2093,7 @@ class MSPTenantManagementApi:
|
|
|
2088
2093
|
def provision_cd_fmc_for_tenant_in_msp_portal_with_http_info(
|
|
2089
2094
|
self,
|
|
2090
2095
|
tenant_uid: Annotated[StrictStr, Field(description="Unique identifier of the tenant that cdFMC provisioning will be enabled for.")],
|
|
2096
|
+
enable_cd_fmc_for_tenant_request: Optional[EnableCdFmcForTenantRequest] = None,
|
|
2091
2097
|
_request_timeout: Union[
|
|
2092
2098
|
None,
|
|
2093
2099
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2107,6 +2113,8 @@ class MSPTenantManagementApi:
|
|
|
2107
2113
|
|
|
2108
2114
|
:param tenant_uid: Unique identifier of the tenant that cdFMC provisioning will be enabled for. (required)
|
|
2109
2115
|
:type tenant_uid: str
|
|
2116
|
+
:param enable_cd_fmc_for_tenant_request:
|
|
2117
|
+
:type enable_cd_fmc_for_tenant_request: EnableCdFmcForTenantRequest
|
|
2110
2118
|
:param _request_timeout: timeout setting for this request. If one
|
|
2111
2119
|
number provided, it will be total request
|
|
2112
2120
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2131,6 +2139,7 @@ class MSPTenantManagementApi:
|
|
|
2131
2139
|
|
|
2132
2140
|
_param = self._provision_cd_fmc_for_tenant_in_msp_portal_serialize(
|
|
2133
2141
|
tenant_uid=tenant_uid,
|
|
2142
|
+
enable_cd_fmc_for_tenant_request=enable_cd_fmc_for_tenant_request,
|
|
2134
2143
|
_request_auth=_request_auth,
|
|
2135
2144
|
_content_type=_content_type,
|
|
2136
2145
|
_headers=_headers,
|
|
@@ -2156,6 +2165,7 @@ class MSPTenantManagementApi:
|
|
|
2156
2165
|
def provision_cd_fmc_for_tenant_in_msp_portal_without_preload_content(
|
|
2157
2166
|
self,
|
|
2158
2167
|
tenant_uid: Annotated[StrictStr, Field(description="Unique identifier of the tenant that cdFMC provisioning will be enabled for.")],
|
|
2168
|
+
enable_cd_fmc_for_tenant_request: Optional[EnableCdFmcForTenantRequest] = None,
|
|
2159
2169
|
_request_timeout: Union[
|
|
2160
2170
|
None,
|
|
2161
2171
|
Annotated[StrictFloat, Field(gt=0)],
|
|
@@ -2175,6 +2185,8 @@ class MSPTenantManagementApi:
|
|
|
2175
2185
|
|
|
2176
2186
|
:param tenant_uid: Unique identifier of the tenant that cdFMC provisioning will be enabled for. (required)
|
|
2177
2187
|
:type tenant_uid: str
|
|
2188
|
+
:param enable_cd_fmc_for_tenant_request:
|
|
2189
|
+
:type enable_cd_fmc_for_tenant_request: EnableCdFmcForTenantRequest
|
|
2178
2190
|
:param _request_timeout: timeout setting for this request. If one
|
|
2179
2191
|
number provided, it will be total request
|
|
2180
2192
|
timeout. It can also be a pair (tuple) of
|
|
@@ -2199,6 +2211,7 @@ class MSPTenantManagementApi:
|
|
|
2199
2211
|
|
|
2200
2212
|
_param = self._provision_cd_fmc_for_tenant_in_msp_portal_serialize(
|
|
2201
2213
|
tenant_uid=tenant_uid,
|
|
2214
|
+
enable_cd_fmc_for_tenant_request=enable_cd_fmc_for_tenant_request,
|
|
2202
2215
|
_request_auth=_request_auth,
|
|
2203
2216
|
_content_type=_content_type,
|
|
2204
2217
|
_headers=_headers,
|
|
@@ -2219,6 +2232,7 @@ class MSPTenantManagementApi:
|
|
|
2219
2232
|
def _provision_cd_fmc_for_tenant_in_msp_portal_serialize(
|
|
2220
2233
|
self,
|
|
2221
2234
|
tenant_uid,
|
|
2235
|
+
enable_cd_fmc_for_tenant_request,
|
|
2222
2236
|
_request_auth,
|
|
2223
2237
|
_content_type,
|
|
2224
2238
|
_headers,
|
|
@@ -2244,6 +2258,8 @@ class MSPTenantManagementApi:
|
|
|
2244
2258
|
# process the header parameters
|
|
2245
2259
|
# process the form parameters
|
|
2246
2260
|
# process the body parameter
|
|
2261
|
+
if enable_cd_fmc_for_tenant_request is not None:
|
|
2262
|
+
_body_params = enable_cd_fmc_for_tenant_request
|
|
2247
2263
|
|
|
2248
2264
|
|
|
2249
2265
|
# set the HTTP header `Accept`
|
|
@@ -2253,6 +2269,19 @@ class MSPTenantManagementApi:
|
|
|
2253
2269
|
]
|
|
2254
2270
|
)
|
|
2255
2271
|
|
|
2272
|
+
# set the HTTP header `Content-Type`
|
|
2273
|
+
if _content_type:
|
|
2274
|
+
_header_params['Content-Type'] = _content_type
|
|
2275
|
+
else:
|
|
2276
|
+
_default_content_type = (
|
|
2277
|
+
self.api_client.select_header_content_type(
|
|
2278
|
+
[
|
|
2279
|
+
'application/json'
|
|
2280
|
+
]
|
|
2281
|
+
)
|
|
2282
|
+
)
|
|
2283
|
+
if _default_content_type is not None:
|
|
2284
|
+
_header_params['Content-Type'] = _default_content_type
|
|
2256
2285
|
|
|
2257
2286
|
# authentication setting
|
|
2258
2287
|
_auth_settings: List[str] = [
|
|
@@ -625,8 +625,8 @@ class MSPUserManagementApi:
|
|
|
625
625
|
def get_api_only_users_in_msp_managed_tenant(
|
|
626
626
|
self,
|
|
627
627
|
tenant_uid: Annotated[StrictStr, Field(description="Unique identifier of the tenant to retrieve the users for.")],
|
|
628
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
629
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
628
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
629
|
+
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,
|
|
630
630
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
631
631
|
_request_timeout: Union[
|
|
632
632
|
None,
|
|
@@ -647,9 +647,9 @@ class MSPUserManagementApi:
|
|
|
647
647
|
|
|
648
648
|
:param tenant_uid: Unique identifier of the tenant to retrieve the users for. (required)
|
|
649
649
|
:type tenant_uid: str
|
|
650
|
-
:param limit:
|
|
650
|
+
:param limit: Number of results to retrieve.
|
|
651
651
|
:type limit: str
|
|
652
|
-
:param offset:
|
|
652
|
+
: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.
|
|
653
653
|
:type offset: str
|
|
654
654
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
655
655
|
:type q: str
|
|
@@ -705,8 +705,8 @@ class MSPUserManagementApi:
|
|
|
705
705
|
def get_api_only_users_in_msp_managed_tenant_with_http_info(
|
|
706
706
|
self,
|
|
707
707
|
tenant_uid: Annotated[StrictStr, Field(description="Unique identifier of the tenant to retrieve the users for.")],
|
|
708
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
709
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
708
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
709
|
+
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,
|
|
710
710
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
711
711
|
_request_timeout: Union[
|
|
712
712
|
None,
|
|
@@ -727,9 +727,9 @@ class MSPUserManagementApi:
|
|
|
727
727
|
|
|
728
728
|
:param tenant_uid: Unique identifier of the tenant to retrieve the users for. (required)
|
|
729
729
|
:type tenant_uid: str
|
|
730
|
-
:param limit:
|
|
730
|
+
:param limit: Number of results to retrieve.
|
|
731
731
|
:type limit: str
|
|
732
|
-
:param offset:
|
|
732
|
+
: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.
|
|
733
733
|
:type offset: str
|
|
734
734
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
735
735
|
:type q: str
|
|
@@ -785,8 +785,8 @@ class MSPUserManagementApi:
|
|
|
785
785
|
def get_api_only_users_in_msp_managed_tenant_without_preload_content(
|
|
786
786
|
self,
|
|
787
787
|
tenant_uid: Annotated[StrictStr, Field(description="Unique identifier of the tenant to retrieve the users for.")],
|
|
788
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
789
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
788
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
789
|
+
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,
|
|
790
790
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
791
791
|
_request_timeout: Union[
|
|
792
792
|
None,
|
|
@@ -807,9 +807,9 @@ class MSPUserManagementApi:
|
|
|
807
807
|
|
|
808
808
|
:param tenant_uid: Unique identifier of the tenant to retrieve the users for. (required)
|
|
809
809
|
:type tenant_uid: str
|
|
810
|
-
:param limit:
|
|
810
|
+
:param limit: Number of results to retrieve.
|
|
811
811
|
:type limit: str
|
|
812
|
-
:param offset:
|
|
812
|
+
: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.
|
|
813
813
|
:type offset: str
|
|
814
814
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
815
815
|
:type q: str
|
|
@@ -937,8 +937,8 @@ class MSPUserManagementApi:
|
|
|
937
937
|
def get_human_users_in_msp_managed_tenant(
|
|
938
938
|
self,
|
|
939
939
|
tenant_uid: Annotated[StrictStr, Field(description="Unique identifier of the tenant to retrieve the users for.")],
|
|
940
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
941
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
940
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
941
|
+
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,
|
|
942
942
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
943
943
|
_request_timeout: Union[
|
|
944
944
|
None,
|
|
@@ -959,9 +959,9 @@ class MSPUserManagementApi:
|
|
|
959
959
|
|
|
960
960
|
:param tenant_uid: Unique identifier of the tenant to retrieve the users for. (required)
|
|
961
961
|
:type tenant_uid: str
|
|
962
|
-
:param limit:
|
|
962
|
+
:param limit: Number of results to retrieve.
|
|
963
963
|
:type limit: str
|
|
964
|
-
:param offset:
|
|
964
|
+
: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.
|
|
965
965
|
:type offset: str
|
|
966
966
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
967
967
|
:type q: str
|
|
@@ -1017,8 +1017,8 @@ class MSPUserManagementApi:
|
|
|
1017
1017
|
def get_human_users_in_msp_managed_tenant_with_http_info(
|
|
1018
1018
|
self,
|
|
1019
1019
|
tenant_uid: Annotated[StrictStr, Field(description="Unique identifier of the tenant to retrieve the users for.")],
|
|
1020
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1021
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1020
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
1021
|
+
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,
|
|
1022
1022
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
1023
1023
|
_request_timeout: Union[
|
|
1024
1024
|
None,
|
|
@@ -1039,9 +1039,9 @@ class MSPUserManagementApi:
|
|
|
1039
1039
|
|
|
1040
1040
|
:param tenant_uid: Unique identifier of the tenant to retrieve the users for. (required)
|
|
1041
1041
|
:type tenant_uid: str
|
|
1042
|
-
:param limit:
|
|
1042
|
+
:param limit: Number of results to retrieve.
|
|
1043
1043
|
:type limit: str
|
|
1044
|
-
:param offset:
|
|
1044
|
+
: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.
|
|
1045
1045
|
:type offset: str
|
|
1046
1046
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
1047
1047
|
:type q: str
|
|
@@ -1097,8 +1097,8 @@ class MSPUserManagementApi:
|
|
|
1097
1097
|
def get_human_users_in_msp_managed_tenant_without_preload_content(
|
|
1098
1098
|
self,
|
|
1099
1099
|
tenant_uid: Annotated[StrictStr, Field(description="Unique identifier of the tenant to retrieve the users for.")],
|
|
1100
|
-
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1101
|
-
offset: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="
|
|
1100
|
+
limit: Annotated[Optional[Annotated[str, Field(strict=True)]], Field(description="Number of results to retrieve.")] = None,
|
|
1101
|
+
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,
|
|
1102
1102
|
q: Annotated[Optional[StrictStr], Field(description="The query to execute. Use the Lucene Query Syntax to construct your query.")] = None,
|
|
1103
1103
|
_request_timeout: Union[
|
|
1104
1104
|
None,
|
|
@@ -1119,9 +1119,9 @@ class MSPUserManagementApi:
|
|
|
1119
1119
|
|
|
1120
1120
|
:param tenant_uid: Unique identifier of the tenant to retrieve the users for. (required)
|
|
1121
1121
|
:type tenant_uid: str
|
|
1122
|
-
:param limit:
|
|
1122
|
+
:param limit: Number of results to retrieve.
|
|
1123
1123
|
:type limit: str
|
|
1124
|
-
:param offset:
|
|
1124
|
+
: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.
|
|
1125
1125
|
:type offset: str
|
|
1126
1126
|
:param q: The query to execute. Use the Lucene Query Syntax to construct your query.
|
|
1127
1127
|
:type q: str
|
|
@@ -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,
|