scc-firewall-manager-sdk 1.13.492__py3-none-any.whl → 1.13.494__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of scc-firewall-manager-sdk might be problematic. Click here for more details.
- scc_firewall_manager_sdk/__init__.py +1 -1
- scc_firewall_manager_sdk/api/msp_api.py +0 -262
- scc_firewall_manager_sdk/api_client.py +1 -1
- scc_firewall_manager_sdk/configuration.py +1 -1
- {scc_firewall_manager_sdk-1.13.492.dist-info → scc_firewall_manager_sdk-1.13.494.dist-info}/METADATA +1 -1
- {scc_firewall_manager_sdk-1.13.492.dist-info → scc_firewall_manager_sdk-1.13.494.dist-info}/RECORD +8 -8
- {scc_firewall_manager_sdk-1.13.492.dist-info → scc_firewall_manager_sdk-1.13.494.dist-info}/WHEEL +0 -0
- {scc_firewall_manager_sdk-1.13.492.dist-info → scc_firewall_manager_sdk-1.13.494.dist-info}/top_level.txt +0 -0
|
@@ -3439,268 +3439,6 @@ class MSPApi:
|
|
|
3439
3439
|
|
|
3440
3440
|
|
|
3441
3441
|
|
|
3442
|
-
@validate_call
|
|
3443
|
-
def get_ftd_upgrade_versions(
|
|
3444
|
-
self,
|
|
3445
|
-
device_uids: Annotated[List[StrictStr], Field(min_length=1, max_length=50, description="A list of unique identifiers, represented as UUIDs, of the devices in Security Cloud Control. Note: All of the devices specified have to be on tenants managed by the MSP portal.")],
|
|
3446
|
-
_request_timeout: Union[
|
|
3447
|
-
None,
|
|
3448
|
-
Annotated[StrictFloat, Field(gt=0)],
|
|
3449
|
-
Tuple[
|
|
3450
|
-
Annotated[StrictFloat, Field(gt=0)],
|
|
3451
|
-
Annotated[StrictFloat, Field(gt=0)]
|
|
3452
|
-
]
|
|
3453
|
-
] = None,
|
|
3454
|
-
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
3455
|
-
_content_type: Optional[StrictStr] = None,
|
|
3456
|
-
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
3457
|
-
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
3458
|
-
) -> CdoTransaction:
|
|
3459
|
-
"""get_ftd_upgrade_versions
|
|
3460
|
-
|
|
3461
|
-
|
|
3462
|
-
:param device_uids: A list of unique identifiers, represented as UUIDs, of the devices in Security Cloud Control. Note: All of the devices specified have to be on tenants managed by the MSP portal. (required)
|
|
3463
|
-
:type device_uids: List[str]
|
|
3464
|
-
:param _request_timeout: timeout setting for this request. If one
|
|
3465
|
-
number provided, it will be total request
|
|
3466
|
-
timeout. It can also be a pair (tuple) of
|
|
3467
|
-
(connection, read) timeouts.
|
|
3468
|
-
:type _request_timeout: int, tuple(int, int), optional
|
|
3469
|
-
:param _request_auth: set to override the auth_settings for an a single
|
|
3470
|
-
request; this effectively ignores the
|
|
3471
|
-
authentication in the spec for a single request.
|
|
3472
|
-
:type _request_auth: dict, optional
|
|
3473
|
-
:param _content_type: force content-type for the request.
|
|
3474
|
-
:type _content_type: str, Optional
|
|
3475
|
-
:param _headers: set to override the headers for a single
|
|
3476
|
-
request; this effectively ignores the headers
|
|
3477
|
-
in the spec for a single request.
|
|
3478
|
-
:type _headers: dict, optional
|
|
3479
|
-
:param _host_index: set to override the host_index for a single
|
|
3480
|
-
request; this effectively ignores the host_index
|
|
3481
|
-
in the spec for a single request.
|
|
3482
|
-
:type _host_index: int, optional
|
|
3483
|
-
:return: Returns the result object.
|
|
3484
|
-
""" # noqa: E501
|
|
3485
|
-
|
|
3486
|
-
_param = self._get_ftd_upgrade_versions_serialize(
|
|
3487
|
-
device_uids=device_uids,
|
|
3488
|
-
_request_auth=_request_auth,
|
|
3489
|
-
_content_type=_content_type,
|
|
3490
|
-
_headers=_headers,
|
|
3491
|
-
_host_index=_host_index
|
|
3492
|
-
)
|
|
3493
|
-
|
|
3494
|
-
_response_types_map: Dict[str, Optional[str]] = {
|
|
3495
|
-
'200': "CdoTransaction",
|
|
3496
|
-
'500': "CommonApiError",
|
|
3497
|
-
}
|
|
3498
|
-
response_data = self.api_client.call_api(
|
|
3499
|
-
*_param,
|
|
3500
|
-
_request_timeout=_request_timeout
|
|
3501
|
-
)
|
|
3502
|
-
response_data.read()
|
|
3503
|
-
return self.api_client.response_deserialize(
|
|
3504
|
-
response_data=response_data,
|
|
3505
|
-
response_types_map=_response_types_map,
|
|
3506
|
-
).data
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
@validate_call
|
|
3510
|
-
def get_ftd_upgrade_versions_with_http_info(
|
|
3511
|
-
self,
|
|
3512
|
-
device_uids: Annotated[List[StrictStr], Field(min_length=1, max_length=50, description="A list of unique identifiers, represented as UUIDs, of the devices in Security Cloud Control. Note: All of the devices specified have to be on tenants managed by the MSP portal.")],
|
|
3513
|
-
_request_timeout: Union[
|
|
3514
|
-
None,
|
|
3515
|
-
Annotated[StrictFloat, Field(gt=0)],
|
|
3516
|
-
Tuple[
|
|
3517
|
-
Annotated[StrictFloat, Field(gt=0)],
|
|
3518
|
-
Annotated[StrictFloat, Field(gt=0)]
|
|
3519
|
-
]
|
|
3520
|
-
] = None,
|
|
3521
|
-
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
3522
|
-
_content_type: Optional[StrictStr] = None,
|
|
3523
|
-
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
3524
|
-
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
3525
|
-
) -> ApiResponse[CdoTransaction]:
|
|
3526
|
-
"""get_ftd_upgrade_versions
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
:param device_uids: A list of unique identifiers, represented as UUIDs, of the devices in Security Cloud Control. Note: All of the devices specified have to be on tenants managed by the MSP portal. (required)
|
|
3530
|
-
:type device_uids: List[str]
|
|
3531
|
-
:param _request_timeout: timeout setting for this request. If one
|
|
3532
|
-
number provided, it will be total request
|
|
3533
|
-
timeout. It can also be a pair (tuple) of
|
|
3534
|
-
(connection, read) timeouts.
|
|
3535
|
-
:type _request_timeout: int, tuple(int, int), optional
|
|
3536
|
-
:param _request_auth: set to override the auth_settings for an a single
|
|
3537
|
-
request; this effectively ignores the
|
|
3538
|
-
authentication in the spec for a single request.
|
|
3539
|
-
:type _request_auth: dict, optional
|
|
3540
|
-
:param _content_type: force content-type for the request.
|
|
3541
|
-
:type _content_type: str, Optional
|
|
3542
|
-
:param _headers: set to override the headers for a single
|
|
3543
|
-
request; this effectively ignores the headers
|
|
3544
|
-
in the spec for a single request.
|
|
3545
|
-
:type _headers: dict, optional
|
|
3546
|
-
:param _host_index: set to override the host_index for a single
|
|
3547
|
-
request; this effectively ignores the host_index
|
|
3548
|
-
in the spec for a single request.
|
|
3549
|
-
:type _host_index: int, optional
|
|
3550
|
-
:return: Returns the result object.
|
|
3551
|
-
""" # noqa: E501
|
|
3552
|
-
|
|
3553
|
-
_param = self._get_ftd_upgrade_versions_serialize(
|
|
3554
|
-
device_uids=device_uids,
|
|
3555
|
-
_request_auth=_request_auth,
|
|
3556
|
-
_content_type=_content_type,
|
|
3557
|
-
_headers=_headers,
|
|
3558
|
-
_host_index=_host_index
|
|
3559
|
-
)
|
|
3560
|
-
|
|
3561
|
-
_response_types_map: Dict[str, Optional[str]] = {
|
|
3562
|
-
'200': "CdoTransaction",
|
|
3563
|
-
'500': "CommonApiError",
|
|
3564
|
-
}
|
|
3565
|
-
response_data = self.api_client.call_api(
|
|
3566
|
-
*_param,
|
|
3567
|
-
_request_timeout=_request_timeout
|
|
3568
|
-
)
|
|
3569
|
-
response_data.read()
|
|
3570
|
-
return self.api_client.response_deserialize(
|
|
3571
|
-
response_data=response_data,
|
|
3572
|
-
response_types_map=_response_types_map,
|
|
3573
|
-
)
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
@validate_call
|
|
3577
|
-
def get_ftd_upgrade_versions_without_preload_content(
|
|
3578
|
-
self,
|
|
3579
|
-
device_uids: Annotated[List[StrictStr], Field(min_length=1, max_length=50, description="A list of unique identifiers, represented as UUIDs, of the devices in Security Cloud Control. Note: All of the devices specified have to be on tenants managed by the MSP portal.")],
|
|
3580
|
-
_request_timeout: Union[
|
|
3581
|
-
None,
|
|
3582
|
-
Annotated[StrictFloat, Field(gt=0)],
|
|
3583
|
-
Tuple[
|
|
3584
|
-
Annotated[StrictFloat, Field(gt=0)],
|
|
3585
|
-
Annotated[StrictFloat, Field(gt=0)]
|
|
3586
|
-
]
|
|
3587
|
-
] = None,
|
|
3588
|
-
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
3589
|
-
_content_type: Optional[StrictStr] = None,
|
|
3590
|
-
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
3591
|
-
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
3592
|
-
) -> RESTResponseType:
|
|
3593
|
-
"""get_ftd_upgrade_versions
|
|
3594
|
-
|
|
3595
|
-
|
|
3596
|
-
:param device_uids: A list of unique identifiers, represented as UUIDs, of the devices in Security Cloud Control. Note: All of the devices specified have to be on tenants managed by the MSP portal. (required)
|
|
3597
|
-
:type device_uids: List[str]
|
|
3598
|
-
:param _request_timeout: timeout setting for this request. If one
|
|
3599
|
-
number provided, it will be total request
|
|
3600
|
-
timeout. It can also be a pair (tuple) of
|
|
3601
|
-
(connection, read) timeouts.
|
|
3602
|
-
:type _request_timeout: int, tuple(int, int), optional
|
|
3603
|
-
:param _request_auth: set to override the auth_settings for an a single
|
|
3604
|
-
request; this effectively ignores the
|
|
3605
|
-
authentication in the spec for a single request.
|
|
3606
|
-
:type _request_auth: dict, optional
|
|
3607
|
-
:param _content_type: force content-type for the request.
|
|
3608
|
-
:type _content_type: str, Optional
|
|
3609
|
-
:param _headers: set to override the headers for a single
|
|
3610
|
-
request; this effectively ignores the headers
|
|
3611
|
-
in the spec for a single request.
|
|
3612
|
-
:type _headers: dict, optional
|
|
3613
|
-
:param _host_index: set to override the host_index for a single
|
|
3614
|
-
request; this effectively ignores the host_index
|
|
3615
|
-
in the spec for a single request.
|
|
3616
|
-
:type _host_index: int, optional
|
|
3617
|
-
:return: Returns the result object.
|
|
3618
|
-
""" # noqa: E501
|
|
3619
|
-
|
|
3620
|
-
_param = self._get_ftd_upgrade_versions_serialize(
|
|
3621
|
-
device_uids=device_uids,
|
|
3622
|
-
_request_auth=_request_auth,
|
|
3623
|
-
_content_type=_content_type,
|
|
3624
|
-
_headers=_headers,
|
|
3625
|
-
_host_index=_host_index
|
|
3626
|
-
)
|
|
3627
|
-
|
|
3628
|
-
_response_types_map: Dict[str, Optional[str]] = {
|
|
3629
|
-
'200': "CdoTransaction",
|
|
3630
|
-
'500': "CommonApiError",
|
|
3631
|
-
}
|
|
3632
|
-
response_data = self.api_client.call_api(
|
|
3633
|
-
*_param,
|
|
3634
|
-
_request_timeout=_request_timeout
|
|
3635
|
-
)
|
|
3636
|
-
return response_data.response
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
def _get_ftd_upgrade_versions_serialize(
|
|
3640
|
-
self,
|
|
3641
|
-
device_uids,
|
|
3642
|
-
_request_auth,
|
|
3643
|
-
_content_type,
|
|
3644
|
-
_headers,
|
|
3645
|
-
_host_index,
|
|
3646
|
-
) -> RequestSerialized:
|
|
3647
|
-
|
|
3648
|
-
_host = None
|
|
3649
|
-
|
|
3650
|
-
_collection_formats: Dict[str, str] = {
|
|
3651
|
-
'deviceUids': 'multi',
|
|
3652
|
-
}
|
|
3653
|
-
|
|
3654
|
-
_path_params: Dict[str, str] = {}
|
|
3655
|
-
_query_params: List[Tuple[str, str]] = []
|
|
3656
|
-
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
3657
|
-
_form_params: List[Tuple[str, str]] = []
|
|
3658
|
-
_files: Dict[str, str] = {}
|
|
3659
|
-
_body_params: Optional[bytes] = None
|
|
3660
|
-
|
|
3661
|
-
# process the path parameters
|
|
3662
|
-
# process the query parameters
|
|
3663
|
-
if device_uids is not None:
|
|
3664
|
-
|
|
3665
|
-
_query_params.append(('deviceUids', device_uids))
|
|
3666
|
-
|
|
3667
|
-
# process the header parameters
|
|
3668
|
-
# process the form parameters
|
|
3669
|
-
# process the body parameter
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
# set the HTTP header `Accept`
|
|
3673
|
-
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
3674
|
-
[
|
|
3675
|
-
'*/*',
|
|
3676
|
-
'application/json'
|
|
3677
|
-
]
|
|
3678
|
-
)
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
# authentication setting
|
|
3682
|
-
_auth_settings: List[str] = [
|
|
3683
|
-
'bearerAuth'
|
|
3684
|
-
]
|
|
3685
|
-
|
|
3686
|
-
return self.api_client.param_serialize(
|
|
3687
|
-
method='GET',
|
|
3688
|
-
resource_path='/v1/msp/inventory/devices/ftds/upgrades/versions',
|
|
3689
|
-
path_params=_path_params,
|
|
3690
|
-
query_params=_query_params,
|
|
3691
|
-
header_params=_header_params,
|
|
3692
|
-
body=_body_params,
|
|
3693
|
-
post_params=_form_params,
|
|
3694
|
-
files=_files,
|
|
3695
|
-
auth_settings=_auth_settings,
|
|
3696
|
-
collection_formats=_collection_formats,
|
|
3697
|
-
_host=_host,
|
|
3698
|
-
_request_auth=_request_auth
|
|
3699
|
-
)
|
|
3700
|
-
|
|
3701
|
-
|
|
3702
|
-
|
|
3703
|
-
|
|
3704
3442
|
@validate_call
|
|
3705
3443
|
def get_human_users_in_msp_managed_tenant(
|
|
3706
3444
|
self,
|
|
@@ -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.13.
|
|
91
|
+
self.user_agent = 'OpenAPI-Generator/1.13.494/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.13.0\n"\
|
|
383
|
-
"SDK Package Version: 1.13.
|
|
383
|
+
"SDK Package Version: 1.13.494".\
|
|
384
384
|
format(env=sys.platform, pyversion=sys.version)
|
|
385
385
|
|
|
386
386
|
def get_host_settings(self):
|
{scc_firewall_manager_sdk-1.13.492.dist-info → scc_firewall_manager_sdk-1.13.494.dist-info}/RECORD
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
scc_firewall_manager_sdk/__init__.py,sha256
|
|
2
|
-
scc_firewall_manager_sdk/api_client.py,sha256=
|
|
1
|
+
scc_firewall_manager_sdk/__init__.py,sha256=-kV3kPuntxvK3eJ5qjWD-AQUEDyzY6uS7Ju9_k7J0JI,18559
|
|
2
|
+
scc_firewall_manager_sdk/api_client.py,sha256=xGlyCT6rrUTR_XoueZuXykqz8CaHOINwhCPo84AhIu4,25921
|
|
3
3
|
scc_firewall_manager_sdk/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
scc_firewall_manager_sdk/configuration.py,sha256=
|
|
4
|
+
scc_firewall_manager_sdk/configuration.py,sha256=L0xNmollHdGkhpSCthd64GTjhKWreQkZ65gkhktkIi0,15993
|
|
5
5
|
scc_firewall_manager_sdk/exceptions.py,sha256=J4sPW_b1AGNUeRyPnnDlVtb1b8kOKgDO6cCzCf1wDYg,6039
|
|
6
6
|
scc_firewall_manager_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
scc_firewall_manager_sdk/rest.py,sha256=fAq2gQ-7Y88YdlSxyPNV1I3fctDBTEU0DrBJapzVrNY,9309
|
|
@@ -19,7 +19,7 @@ scc_firewall_manager_sdk/api/device_health_api.py,sha256=AsB2jnw7A1BKmKpbX2DcFr3
|
|
|
19
19
|
scc_firewall_manager_sdk/api/device_upgrades_api.py,sha256=hINjMZ5Tpr163zR-t41XOOphOw72SBkWjLOEXxue5yg,87919
|
|
20
20
|
scc_firewall_manager_sdk/api/inventory_api.py,sha256=vSPeTkjExRBvpy4c05QKQiLLhY8fjleCxk5wCs9mdGA,411066
|
|
21
21
|
scc_firewall_manager_sdk/api/meta_api.py,sha256=Kh5Dd9u4KWu3zEYAK1UAnC8Wm6sQvXAaNfuaHbygEQk,29963
|
|
22
|
-
scc_firewall_manager_sdk/api/msp_api.py,sha256=
|
|
22
|
+
scc_firewall_manager_sdk/api/msp_api.py,sha256=eS488IW4_0GVPbenFN6srhh9xwAMp6TSHgi-MpeW9pc,346575
|
|
23
23
|
scc_firewall_manager_sdk/api/object_management_api.py,sha256=ta2_mL1O-7oevx9YWigOjhs4udfmnmNIPv6p-jvSiMM,151897
|
|
24
24
|
scc_firewall_manager_sdk/api/remote_access_monitoring_api.py,sha256=pg-8qiqAsHSQIavZcsgxq65qSQRHHCXnjLOxk1n7Ino,86274
|
|
25
25
|
scc_firewall_manager_sdk/api/search_api.py,sha256=V7waQrZ2Jz_xylLONUL_s3JF8Hj63C-uLEBJIdgG8Ig,22845
|
|
@@ -227,7 +227,7 @@ scc_firewall_manager_sdk/models/user_page.py,sha256=zagv0LVHfNn_VR0EMHB_ZiQ6oWA9
|
|
|
227
227
|
scc_firewall_manager_sdk/models/user_role.py,sha256=WVus0z7L_INfk_jkrQpm41fFh8coK1rfQhxrS2IcUsQ,1104
|
|
228
228
|
scc_firewall_manager_sdk/models/ztp_onboarding_input.py,sha256=o6f4KOotVYPH06y4Gm9EhnddZIPlymWT31x8gfnbVt0,5326
|
|
229
229
|
scc_firewall_manager_sdk/models/ztp_onboarding_template_configuration.py,sha256=d7_s7YPs0uQBiX201HJwMc9WR_vSmQpMfAskmRrx2bM,4808
|
|
230
|
-
scc_firewall_manager_sdk-1.13.
|
|
231
|
-
scc_firewall_manager_sdk-1.13.
|
|
232
|
-
scc_firewall_manager_sdk-1.13.
|
|
233
|
-
scc_firewall_manager_sdk-1.13.
|
|
230
|
+
scc_firewall_manager_sdk-1.13.494.dist-info/METADATA,sha256=bnXeXsADW2RJlV6wsVcJ20KK_nf3jXO2bltMSaLc40w,596
|
|
231
|
+
scc_firewall_manager_sdk-1.13.494.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
232
|
+
scc_firewall_manager_sdk-1.13.494.dist-info/top_level.txt,sha256=_g9WfFWGagKs6ULdfhEt8e7RXknpcp9_jA9ubIL4U3I,25
|
|
233
|
+
scc_firewall_manager_sdk-1.13.494.dist-info/RECORD,,
|
{scc_firewall_manager_sdk-1.13.492.dist-info → scc_firewall_manager_sdk-1.13.494.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|