scc-firewall-manager-sdk 1.15.58__py3-none-any.whl → 1.15.59__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/device_upgrades_api.py +282 -12
- scc_firewall_manager_sdk/api_client.py +1 -1
- scc_firewall_manager_sdk/configuration.py +1 -1
- {scc_firewall_manager_sdk-1.15.58.dist-info → scc_firewall_manager_sdk-1.15.59.dist-info}/METADATA +1 -1
- {scc_firewall_manager_sdk-1.15.58.dist-info → scc_firewall_manager_sdk-1.15.59.dist-info}/RECORD +8 -8
- {scc_firewall_manager_sdk-1.15.58.dist-info → scc_firewall_manager_sdk-1.15.59.dist-info}/WHEEL +0 -0
- {scc_firewall_manager_sdk-1.15.58.dist-info → scc_firewall_manager_sdk-1.15.59.dist-info}/top_level.txt +0 -0
|
@@ -916,7 +916,7 @@ class DeviceUpgradesApi:
|
|
|
916
916
|
) -> FtdUpgradeRunDtoPage:
|
|
917
917
|
"""Get Device Upgrade Run
|
|
918
918
|
|
|
919
|
-
Get
|
|
919
|
+
Get a Device Upgrade Run by UID in the SCC Firewall Manager Tenant. Each upgrade run represents a group of devices being upgraded, or staged for upgrades, together.
|
|
920
920
|
|
|
921
921
|
:param upgrade_run_uid: The unique identifier, represented as a UUID, of the FTD Device Upgrade Run in SCC Firewall Manager. (required)
|
|
922
922
|
:type upgrade_run_uid: str
|
|
@@ -988,7 +988,7 @@ class DeviceUpgradesApi:
|
|
|
988
988
|
) -> ApiResponse[FtdUpgradeRunDtoPage]:
|
|
989
989
|
"""Get Device Upgrade Run
|
|
990
990
|
|
|
991
|
-
Get
|
|
991
|
+
Get a Device Upgrade Run by UID in the SCC Firewall Manager Tenant. Each upgrade run represents a group of devices being upgraded, or staged for upgrades, together.
|
|
992
992
|
|
|
993
993
|
:param upgrade_run_uid: The unique identifier, represented as a UUID, of the FTD Device Upgrade Run in SCC Firewall Manager. (required)
|
|
994
994
|
:type upgrade_run_uid: str
|
|
@@ -1060,7 +1060,7 @@ class DeviceUpgradesApi:
|
|
|
1060
1060
|
) -> RESTResponseType:
|
|
1061
1061
|
"""Get Device Upgrade Run
|
|
1062
1062
|
|
|
1063
|
-
Get
|
|
1063
|
+
Get a Device Upgrade Run by UID in the SCC Firewall Manager Tenant. Each upgrade run represents a group of devices being upgraded, or staged for upgrades, together.
|
|
1064
1064
|
|
|
1065
1065
|
:param upgrade_run_uid: The unique identifier, represented as a UUID, of the FTD Device Upgrade Run in SCC Firewall Manager. (required)
|
|
1066
1066
|
:type upgrade_run_uid: str
|
|
@@ -1496,6 +1496,276 @@ class DeviceUpgradesApi:
|
|
|
1496
1496
|
|
|
1497
1497
|
@validate_call
|
|
1498
1498
|
def modify_device_upgrade_run(
|
|
1499
|
+
self,
|
|
1500
|
+
upgrade_run_uid: Annotated[StrictStr, Field(description="The unique identifier, represented as a UUID, of the FTD Device Upgrade Run in SCC Firewall Manager.")],
|
|
1501
|
+
_request_timeout: Union[
|
|
1502
|
+
None,
|
|
1503
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1504
|
+
Tuple[
|
|
1505
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1506
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1507
|
+
]
|
|
1508
|
+
] = None,
|
|
1509
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1510
|
+
_content_type: Optional[StrictStr] = None,
|
|
1511
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1512
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1513
|
+
) -> None:
|
|
1514
|
+
"""Delete Device Upgrade Run
|
|
1515
|
+
|
|
1516
|
+
Delete a Device Upgrade Run by UID in the SCC Firewall Manager Tenant. Warning: if you delete an upgrade run currently in progress, you may end up allowing multiple upgrades to be triggered on devices.
|
|
1517
|
+
|
|
1518
|
+
:param upgrade_run_uid: The unique identifier, represented as a UUID, of the FTD Device Upgrade Run in SCC Firewall Manager. (required)
|
|
1519
|
+
:type upgrade_run_uid: str
|
|
1520
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1521
|
+
number provided, it will be total request
|
|
1522
|
+
timeout. It can also be a pair (tuple) of
|
|
1523
|
+
(connection, read) timeouts.
|
|
1524
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1525
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1526
|
+
request; this effectively ignores the
|
|
1527
|
+
authentication in the spec for a single request.
|
|
1528
|
+
:type _request_auth: dict, optional
|
|
1529
|
+
:param _content_type: force content-type for the request.
|
|
1530
|
+
:type _content_type: str, Optional
|
|
1531
|
+
:param _headers: set to override the headers for a single
|
|
1532
|
+
request; this effectively ignores the headers
|
|
1533
|
+
in the spec for a single request.
|
|
1534
|
+
:type _headers: dict, optional
|
|
1535
|
+
:param _host_index: set to override the host_index for a single
|
|
1536
|
+
request; this effectively ignores the host_index
|
|
1537
|
+
in the spec for a single request.
|
|
1538
|
+
:type _host_index: int, optional
|
|
1539
|
+
:return: Returns the result object.
|
|
1540
|
+
""" # noqa: E501
|
|
1541
|
+
|
|
1542
|
+
_param = self._modify_device_upgrade_run_serialize(
|
|
1543
|
+
upgrade_run_uid=upgrade_run_uid,
|
|
1544
|
+
_request_auth=_request_auth,
|
|
1545
|
+
_content_type=_content_type,
|
|
1546
|
+
_headers=_headers,
|
|
1547
|
+
_host_index=_host_index
|
|
1548
|
+
)
|
|
1549
|
+
|
|
1550
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1551
|
+
'204': None,
|
|
1552
|
+
'400': "CommonApiError",
|
|
1553
|
+
'401': "AuthenticationError",
|
|
1554
|
+
'403': "CommonApiError",
|
|
1555
|
+
'500': "CommonApiError",
|
|
1556
|
+
}
|
|
1557
|
+
response_data = self.api_client.call_api(
|
|
1558
|
+
*_param,
|
|
1559
|
+
_request_timeout=_request_timeout
|
|
1560
|
+
)
|
|
1561
|
+
response_data.read()
|
|
1562
|
+
return self.api_client.response_deserialize(
|
|
1563
|
+
response_data=response_data,
|
|
1564
|
+
response_types_map=_response_types_map,
|
|
1565
|
+
).data
|
|
1566
|
+
|
|
1567
|
+
|
|
1568
|
+
@validate_call
|
|
1569
|
+
def modify_device_upgrade_run_with_http_info(
|
|
1570
|
+
self,
|
|
1571
|
+
upgrade_run_uid: Annotated[StrictStr, Field(description="The unique identifier, represented as a UUID, of the FTD Device Upgrade Run in SCC Firewall Manager.")],
|
|
1572
|
+
_request_timeout: Union[
|
|
1573
|
+
None,
|
|
1574
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1575
|
+
Tuple[
|
|
1576
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1577
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1578
|
+
]
|
|
1579
|
+
] = None,
|
|
1580
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1581
|
+
_content_type: Optional[StrictStr] = None,
|
|
1582
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1583
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1584
|
+
) -> ApiResponse[None]:
|
|
1585
|
+
"""Delete Device Upgrade Run
|
|
1586
|
+
|
|
1587
|
+
Delete a Device Upgrade Run by UID in the SCC Firewall Manager Tenant. Warning: if you delete an upgrade run currently in progress, you may end up allowing multiple upgrades to be triggered on devices.
|
|
1588
|
+
|
|
1589
|
+
:param upgrade_run_uid: The unique identifier, represented as a UUID, of the FTD Device Upgrade Run in SCC Firewall Manager. (required)
|
|
1590
|
+
:type upgrade_run_uid: str
|
|
1591
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1592
|
+
number provided, it will be total request
|
|
1593
|
+
timeout. It can also be a pair (tuple) of
|
|
1594
|
+
(connection, read) timeouts.
|
|
1595
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1596
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1597
|
+
request; this effectively ignores the
|
|
1598
|
+
authentication in the spec for a single request.
|
|
1599
|
+
:type _request_auth: dict, optional
|
|
1600
|
+
:param _content_type: force content-type for the request.
|
|
1601
|
+
:type _content_type: str, Optional
|
|
1602
|
+
:param _headers: set to override the headers for a single
|
|
1603
|
+
request; this effectively ignores the headers
|
|
1604
|
+
in the spec for a single request.
|
|
1605
|
+
:type _headers: dict, optional
|
|
1606
|
+
:param _host_index: set to override the host_index for a single
|
|
1607
|
+
request; this effectively ignores the host_index
|
|
1608
|
+
in the spec for a single request.
|
|
1609
|
+
:type _host_index: int, optional
|
|
1610
|
+
:return: Returns the result object.
|
|
1611
|
+
""" # noqa: E501
|
|
1612
|
+
|
|
1613
|
+
_param = self._modify_device_upgrade_run_serialize(
|
|
1614
|
+
upgrade_run_uid=upgrade_run_uid,
|
|
1615
|
+
_request_auth=_request_auth,
|
|
1616
|
+
_content_type=_content_type,
|
|
1617
|
+
_headers=_headers,
|
|
1618
|
+
_host_index=_host_index
|
|
1619
|
+
)
|
|
1620
|
+
|
|
1621
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1622
|
+
'204': None,
|
|
1623
|
+
'400': "CommonApiError",
|
|
1624
|
+
'401': "AuthenticationError",
|
|
1625
|
+
'403': "CommonApiError",
|
|
1626
|
+
'500': "CommonApiError",
|
|
1627
|
+
}
|
|
1628
|
+
response_data = self.api_client.call_api(
|
|
1629
|
+
*_param,
|
|
1630
|
+
_request_timeout=_request_timeout
|
|
1631
|
+
)
|
|
1632
|
+
response_data.read()
|
|
1633
|
+
return self.api_client.response_deserialize(
|
|
1634
|
+
response_data=response_data,
|
|
1635
|
+
response_types_map=_response_types_map,
|
|
1636
|
+
)
|
|
1637
|
+
|
|
1638
|
+
|
|
1639
|
+
@validate_call
|
|
1640
|
+
def modify_device_upgrade_run_without_preload_content(
|
|
1641
|
+
self,
|
|
1642
|
+
upgrade_run_uid: Annotated[StrictStr, Field(description="The unique identifier, represented as a UUID, of the FTD Device Upgrade Run in SCC Firewall Manager.")],
|
|
1643
|
+
_request_timeout: Union[
|
|
1644
|
+
None,
|
|
1645
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1646
|
+
Tuple[
|
|
1647
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
1648
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
1649
|
+
]
|
|
1650
|
+
] = None,
|
|
1651
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
1652
|
+
_content_type: Optional[StrictStr] = None,
|
|
1653
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
1654
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
1655
|
+
) -> RESTResponseType:
|
|
1656
|
+
"""Delete Device Upgrade Run
|
|
1657
|
+
|
|
1658
|
+
Delete a Device Upgrade Run by UID in the SCC Firewall Manager Tenant. Warning: if you delete an upgrade run currently in progress, you may end up allowing multiple upgrades to be triggered on devices.
|
|
1659
|
+
|
|
1660
|
+
:param upgrade_run_uid: The unique identifier, represented as a UUID, of the FTD Device Upgrade Run in SCC Firewall Manager. (required)
|
|
1661
|
+
:type upgrade_run_uid: str
|
|
1662
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
1663
|
+
number provided, it will be total request
|
|
1664
|
+
timeout. It can also be a pair (tuple) of
|
|
1665
|
+
(connection, read) timeouts.
|
|
1666
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
1667
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
1668
|
+
request; this effectively ignores the
|
|
1669
|
+
authentication in the spec for a single request.
|
|
1670
|
+
:type _request_auth: dict, optional
|
|
1671
|
+
:param _content_type: force content-type for the request.
|
|
1672
|
+
:type _content_type: str, Optional
|
|
1673
|
+
:param _headers: set to override the headers for a single
|
|
1674
|
+
request; this effectively ignores the headers
|
|
1675
|
+
in the spec for a single request.
|
|
1676
|
+
:type _headers: dict, optional
|
|
1677
|
+
:param _host_index: set to override the host_index for a single
|
|
1678
|
+
request; this effectively ignores the host_index
|
|
1679
|
+
in the spec for a single request.
|
|
1680
|
+
:type _host_index: int, optional
|
|
1681
|
+
:return: Returns the result object.
|
|
1682
|
+
""" # noqa: E501
|
|
1683
|
+
|
|
1684
|
+
_param = self._modify_device_upgrade_run_serialize(
|
|
1685
|
+
upgrade_run_uid=upgrade_run_uid,
|
|
1686
|
+
_request_auth=_request_auth,
|
|
1687
|
+
_content_type=_content_type,
|
|
1688
|
+
_headers=_headers,
|
|
1689
|
+
_host_index=_host_index
|
|
1690
|
+
)
|
|
1691
|
+
|
|
1692
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
1693
|
+
'204': None,
|
|
1694
|
+
'400': "CommonApiError",
|
|
1695
|
+
'401': "AuthenticationError",
|
|
1696
|
+
'403': "CommonApiError",
|
|
1697
|
+
'500': "CommonApiError",
|
|
1698
|
+
}
|
|
1699
|
+
response_data = self.api_client.call_api(
|
|
1700
|
+
*_param,
|
|
1701
|
+
_request_timeout=_request_timeout
|
|
1702
|
+
)
|
|
1703
|
+
return response_data.response
|
|
1704
|
+
|
|
1705
|
+
|
|
1706
|
+
def _modify_device_upgrade_run_serialize(
|
|
1707
|
+
self,
|
|
1708
|
+
upgrade_run_uid,
|
|
1709
|
+
_request_auth,
|
|
1710
|
+
_content_type,
|
|
1711
|
+
_headers,
|
|
1712
|
+
_host_index,
|
|
1713
|
+
) -> RequestSerialized:
|
|
1714
|
+
|
|
1715
|
+
_host = None
|
|
1716
|
+
|
|
1717
|
+
_collection_formats: Dict[str, str] = {
|
|
1718
|
+
}
|
|
1719
|
+
|
|
1720
|
+
_path_params: Dict[str, str] = {}
|
|
1721
|
+
_query_params: List[Tuple[str, str]] = []
|
|
1722
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
1723
|
+
_form_params: List[Tuple[str, str]] = []
|
|
1724
|
+
_files: Dict[str, str] = {}
|
|
1725
|
+
_body_params: Optional[bytes] = None
|
|
1726
|
+
|
|
1727
|
+
# process the path parameters
|
|
1728
|
+
if upgrade_run_uid is not None:
|
|
1729
|
+
_path_params['upgradeRunUid'] = upgrade_run_uid
|
|
1730
|
+
# process the query parameters
|
|
1731
|
+
# process the header parameters
|
|
1732
|
+
# process the form parameters
|
|
1733
|
+
# process the body parameter
|
|
1734
|
+
|
|
1735
|
+
|
|
1736
|
+
# set the HTTP header `Accept`
|
|
1737
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
1738
|
+
[
|
|
1739
|
+
'application/json'
|
|
1740
|
+
]
|
|
1741
|
+
)
|
|
1742
|
+
|
|
1743
|
+
|
|
1744
|
+
# authentication setting
|
|
1745
|
+
_auth_settings: List[str] = [
|
|
1746
|
+
'bearerAuth'
|
|
1747
|
+
]
|
|
1748
|
+
|
|
1749
|
+
return self.api_client.param_serialize(
|
|
1750
|
+
method='DELETE',
|
|
1751
|
+
resource_path='/v1/inventory/devices/upgrades/runs/{upgradeRunUid}',
|
|
1752
|
+
path_params=_path_params,
|
|
1753
|
+
query_params=_query_params,
|
|
1754
|
+
header_params=_header_params,
|
|
1755
|
+
body=_body_params,
|
|
1756
|
+
post_params=_form_params,
|
|
1757
|
+
files=_files,
|
|
1758
|
+
auth_settings=_auth_settings,
|
|
1759
|
+
collection_formats=_collection_formats,
|
|
1760
|
+
_host=_host,
|
|
1761
|
+
_request_auth=_request_auth
|
|
1762
|
+
)
|
|
1763
|
+
|
|
1764
|
+
|
|
1765
|
+
|
|
1766
|
+
|
|
1767
|
+
@validate_call
|
|
1768
|
+
def modify_device_upgrade_run1(
|
|
1499
1769
|
self,
|
|
1500
1770
|
upgrade_run_uid: Annotated[StrictStr, Field(description="The unique identifier, represented as a UUID, of the FTD Device Upgrade Run in SCC Firewall Manager.")],
|
|
1501
1771
|
upgrade_run_modify_input: UpgradeRunModifyInput,
|
|
@@ -1514,7 +1784,7 @@ class DeviceUpgradesApi:
|
|
|
1514
1784
|
) -> FtdUpgradeRunDtoPage:
|
|
1515
1785
|
"""Modify Device Upgrade Run
|
|
1516
1786
|
|
|
1517
|
-
Modify
|
|
1787
|
+
Modify a Device Upgrade Run by UID in the SCC Firewall Manager Tenant. Each upgrade run represents a group of devices being upgraded, or staged for upgrades, together.
|
|
1518
1788
|
|
|
1519
1789
|
:param upgrade_run_uid: The unique identifier, represented as a UUID, of the FTD Device Upgrade Run in SCC Firewall Manager. (required)
|
|
1520
1790
|
:type upgrade_run_uid: str
|
|
@@ -1542,7 +1812,7 @@ class DeviceUpgradesApi:
|
|
|
1542
1812
|
:return: Returns the result object.
|
|
1543
1813
|
""" # noqa: E501
|
|
1544
1814
|
|
|
1545
|
-
_param = self.
|
|
1815
|
+
_param = self._modify_device_upgrade_run1_serialize(
|
|
1546
1816
|
upgrade_run_uid=upgrade_run_uid,
|
|
1547
1817
|
upgrade_run_modify_input=upgrade_run_modify_input,
|
|
1548
1818
|
_request_auth=_request_auth,
|
|
@@ -1571,7 +1841,7 @@ class DeviceUpgradesApi:
|
|
|
1571
1841
|
|
|
1572
1842
|
|
|
1573
1843
|
@validate_call
|
|
1574
|
-
def
|
|
1844
|
+
def modify_device_upgrade_run1_with_http_info(
|
|
1575
1845
|
self,
|
|
1576
1846
|
upgrade_run_uid: Annotated[StrictStr, Field(description="The unique identifier, represented as a UUID, of the FTD Device Upgrade Run in SCC Firewall Manager.")],
|
|
1577
1847
|
upgrade_run_modify_input: UpgradeRunModifyInput,
|
|
@@ -1590,7 +1860,7 @@ class DeviceUpgradesApi:
|
|
|
1590
1860
|
) -> ApiResponse[FtdUpgradeRunDtoPage]:
|
|
1591
1861
|
"""Modify Device Upgrade Run
|
|
1592
1862
|
|
|
1593
|
-
Modify
|
|
1863
|
+
Modify a Device Upgrade Run by UID in the SCC Firewall Manager Tenant. Each upgrade run represents a group of devices being upgraded, or staged for upgrades, together.
|
|
1594
1864
|
|
|
1595
1865
|
:param upgrade_run_uid: The unique identifier, represented as a UUID, of the FTD Device Upgrade Run in SCC Firewall Manager. (required)
|
|
1596
1866
|
:type upgrade_run_uid: str
|
|
@@ -1618,7 +1888,7 @@ class DeviceUpgradesApi:
|
|
|
1618
1888
|
:return: Returns the result object.
|
|
1619
1889
|
""" # noqa: E501
|
|
1620
1890
|
|
|
1621
|
-
_param = self.
|
|
1891
|
+
_param = self._modify_device_upgrade_run1_serialize(
|
|
1622
1892
|
upgrade_run_uid=upgrade_run_uid,
|
|
1623
1893
|
upgrade_run_modify_input=upgrade_run_modify_input,
|
|
1624
1894
|
_request_auth=_request_auth,
|
|
@@ -1647,7 +1917,7 @@ class DeviceUpgradesApi:
|
|
|
1647
1917
|
|
|
1648
1918
|
|
|
1649
1919
|
@validate_call
|
|
1650
|
-
def
|
|
1920
|
+
def modify_device_upgrade_run1_without_preload_content(
|
|
1651
1921
|
self,
|
|
1652
1922
|
upgrade_run_uid: Annotated[StrictStr, Field(description="The unique identifier, represented as a UUID, of the FTD Device Upgrade Run in SCC Firewall Manager.")],
|
|
1653
1923
|
upgrade_run_modify_input: UpgradeRunModifyInput,
|
|
@@ -1666,7 +1936,7 @@ class DeviceUpgradesApi:
|
|
|
1666
1936
|
) -> RESTResponseType:
|
|
1667
1937
|
"""Modify Device Upgrade Run
|
|
1668
1938
|
|
|
1669
|
-
Modify
|
|
1939
|
+
Modify a Device Upgrade Run by UID in the SCC Firewall Manager Tenant. Each upgrade run represents a group of devices being upgraded, or staged for upgrades, together.
|
|
1670
1940
|
|
|
1671
1941
|
:param upgrade_run_uid: The unique identifier, represented as a UUID, of the FTD Device Upgrade Run in SCC Firewall Manager. (required)
|
|
1672
1942
|
:type upgrade_run_uid: str
|
|
@@ -1694,7 +1964,7 @@ class DeviceUpgradesApi:
|
|
|
1694
1964
|
:return: Returns the result object.
|
|
1695
1965
|
""" # noqa: E501
|
|
1696
1966
|
|
|
1697
|
-
_param = self.
|
|
1967
|
+
_param = self._modify_device_upgrade_run1_serialize(
|
|
1698
1968
|
upgrade_run_uid=upgrade_run_uid,
|
|
1699
1969
|
upgrade_run_modify_input=upgrade_run_modify_input,
|
|
1700
1970
|
_request_auth=_request_auth,
|
|
@@ -1718,7 +1988,7 @@ class DeviceUpgradesApi:
|
|
|
1718
1988
|
return response_data.response
|
|
1719
1989
|
|
|
1720
1990
|
|
|
1721
|
-
def
|
|
1991
|
+
def _modify_device_upgrade_run1_serialize(
|
|
1722
1992
|
self,
|
|
1723
1993
|
upgrade_run_uid,
|
|
1724
1994
|
upgrade_run_modify_input,
|
|
@@ -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.59/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.59".\
|
|
384
384
|
format(env=sys.platform, pyversion=sys.version)
|
|
385
385
|
|
|
386
386
|
def get_host_settings(self):
|
{scc_firewall_manager_sdk-1.15.58.dist-info → scc_firewall_manager_sdk-1.15.59.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=qKU-nJdXiN55SLfrxIknoVONhZM0T3FeyqJtC-NefhM,21913
|
|
2
|
+
scc_firewall_manager_sdk/api_client.py,sha256=l2AstVh6XsVdDW2COv8CfHROGop_5m-NOlEna3RZm9g,25920
|
|
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=dT5cUM3Gj-r3mUbZUgRl-oshifhd8EJcLhfDe-ZG-TE,15992
|
|
5
5
|
scc_firewall_manager_sdk/exceptions.py,sha256=u5-7l5MRjP-aS2pNudBzqSw9OI4xVsIvUjw4WCA8LEk,6039
|
|
6
6
|
scc_firewall_manager_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
scc_firewall_manager_sdk/rest.py,sha256=cSeilvAB5y-V_10IdXcZ0kOyv5dYW8jeWVhrD6kUDa0,9309
|
|
@@ -17,7 +17,7 @@ scc_firewall_manager_sdk/api/command_line_interface_api.py,sha256=_sUPKdTkBkXNbk
|
|
|
17
17
|
scc_firewall_manager_sdk/api/commands_api.py,sha256=U1cDPCmUAgOPnCOC8KcbcQpLGSwgOBBgHUcKH6JmWK4,33891
|
|
18
18
|
scc_firewall_manager_sdk/api/connectors_api.py,sha256=lw4asxJMtyHTm3sxM6Z7S1O2tbr4ZtbjVrZIalmYagI,59889
|
|
19
19
|
scc_firewall_manager_sdk/api/device_health_api.py,sha256=UoxgUo10Am1kga8U0Kxhb6DDw6d7wpXxzGopsvUJ1JI,62283
|
|
20
|
-
scc_firewall_manager_sdk/api/device_upgrades_api.py,sha256=
|
|
20
|
+
scc_firewall_manager_sdk/api/device_upgrades_api.py,sha256=iWb4v4tteX7uoEOncmF34V0n1So7oTPa_tV9AscL9Ck,138718
|
|
21
21
|
scc_firewall_manager_sdk/api/inventory_api.py,sha256=EJqDZzqBE4w_klxuo84rSYmrmbinGSJEbSbU6Wqs4Gg,444995
|
|
22
22
|
scc_firewall_manager_sdk/api/meta_api.py,sha256=0T4mIpkOc0FyDIvEN5qhRQbKN4CzOM00_sRVY2oG59U,29963
|
|
23
23
|
scc_firewall_manager_sdk/api/msp_device_health_aggregations_api.py,sha256=ijjdWeZTpQg5wre_v-qQHIWWJi9Hg3f_dz6i8K0if-U,13808
|
|
@@ -265,7 +265,7 @@ scc_firewall_manager_sdk/models/vlan_interface_create_input.py,sha256=AKUqPJw5ku
|
|
|
265
265
|
scc_firewall_manager_sdk/models/vlan_interface_patch_input.py,sha256=srEFTyQykscNrWsbp8KGEzbmHC07_AU3DXjJ-7Be4zc,6054
|
|
266
266
|
scc_firewall_manager_sdk/models/ztp_onboarding_input.py,sha256=HAgBTdocZeHGDZP_-9NyRtzP9E7BReGtiOmn4S3J-_g,5326
|
|
267
267
|
scc_firewall_manager_sdk/models/ztp_onboarding_template_configuration.py,sha256=f9Z62yGFvz4QAQ07Z4bjfHLw2bRg46ccwoLuQ8q30TE,4808
|
|
268
|
-
scc_firewall_manager_sdk-1.15.
|
|
269
|
-
scc_firewall_manager_sdk-1.15.
|
|
270
|
-
scc_firewall_manager_sdk-1.15.
|
|
271
|
-
scc_firewall_manager_sdk-1.15.
|
|
268
|
+
scc_firewall_manager_sdk-1.15.59.dist-info/METADATA,sha256=uWjvY0u7dk7hbghVKni5N1CA11zzLi_y23bqhTJ_rso,595
|
|
269
|
+
scc_firewall_manager_sdk-1.15.59.dist-info/WHEEL,sha256=2wepM1nk4DS4eFpYrW1TTqPcoGNfHhhO_i5m4cOimbo,92
|
|
270
|
+
scc_firewall_manager_sdk-1.15.59.dist-info/top_level.txt,sha256=_g9WfFWGagKs6ULdfhEt8e7RXknpcp9_jA9ubIL4U3I,25
|
|
271
|
+
scc_firewall_manager_sdk-1.15.59.dist-info/RECORD,,
|
{scc_firewall_manager_sdk-1.15.58.dist-info → scc_firewall_manager_sdk-1.15.59.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|