alibabacloud-nis20211216 2.2.2__tar.gz → 2.2.3__tar.gz
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.
- {alibabacloud_nis20211216-2.2.2 → alibabacloud_nis20211216-2.2.3}/ChangeLog.md +4 -0
- {alibabacloud_nis20211216-2.2.2 → alibabacloud_nis20211216-2.2.3}/PKG-INFO +1 -1
- alibabacloud_nis20211216-2.2.3/alibabacloud_nis20211216/__init__.py +1 -0
- {alibabacloud_nis20211216-2.2.2 → alibabacloud_nis20211216-2.2.3}/alibabacloud_nis20211216/models.py +6 -0
- {alibabacloud_nis20211216-2.2.2 → alibabacloud_nis20211216-2.2.3}/alibabacloud_nis20211216.egg-info/PKG-INFO +1 -1
- {alibabacloud_nis20211216-2.2.2 → alibabacloud_nis20211216-2.2.3}/alibabacloud_nis20211216.egg-info/requires.txt +1 -1
- {alibabacloud_nis20211216-2.2.2 → alibabacloud_nis20211216-2.2.3}/setup.py +2 -2
- alibabacloud_nis20211216-2.2.2/alibabacloud_nis20211216/__init__.py +0 -1
- {alibabacloud_nis20211216-2.2.2 → alibabacloud_nis20211216-2.2.3}/LICENSE +0 -0
- {alibabacloud_nis20211216-2.2.2 → alibabacloud_nis20211216-2.2.3}/MANIFEST.in +0 -0
- {alibabacloud_nis20211216-2.2.2 → alibabacloud_nis20211216-2.2.3}/README-CN.md +0 -0
- {alibabacloud_nis20211216-2.2.2 → alibabacloud_nis20211216-2.2.3}/README.md +0 -0
- {alibabacloud_nis20211216-2.2.2 → alibabacloud_nis20211216-2.2.3}/alibabacloud_nis20211216/client.py +0 -0
- {alibabacloud_nis20211216-2.2.2 → alibabacloud_nis20211216-2.2.3}/alibabacloud_nis20211216.egg-info/SOURCES.txt +0 -0
- {alibabacloud_nis20211216-2.2.2 → alibabacloud_nis20211216-2.2.3}/alibabacloud_nis20211216.egg-info/dependency_links.txt +0 -0
- {alibabacloud_nis20211216-2.2.2 → alibabacloud_nis20211216-2.2.3}/alibabacloud_nis20211216.egg-info/top_level.txt +0 -0
- {alibabacloud_nis20211216-2.2.2 → alibabacloud_nis20211216-2.2.3}/setup.cfg +0 -0
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
2025-06-27 Version: 2.2.2
|
|
2
|
+
- Update API GetNisNetworkMetrics: add request parameters StepMinutes.
|
|
3
|
+
|
|
4
|
+
|
|
1
5
|
2025-04-18 Version: 2.2.1
|
|
2
6
|
- Update API DescribeNisInspectionReportCheckItems: add response parameters Body.CheckItemList.$.RecommendationList.$.ReasonCode.
|
|
3
7
|
- Update API DescribeNisInspectionReportCheckItems: add response parameters Body.CheckItemList.$.RecommendationList.$.SuggestionCode.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '2.2.3'
|
{alibabacloud_nis20211216-2.2.2 → alibabacloud_nis20211216-2.2.3}/alibabacloud_nis20211216/models.py
RENAMED
|
@@ -1632,6 +1632,7 @@ class DescribeNisInspectionReportCheckItemsResponseBodyCheckItemList(TeaModel):
|
|
|
1632
1632
|
check_item_name: str = None,
|
|
1633
1633
|
check_result_list: List[DescribeNisInspectionReportCheckItemsResponseBodyCheckItemListCheckResultList] = None,
|
|
1634
1634
|
description: str = None,
|
|
1635
|
+
description_code: str = None,
|
|
1635
1636
|
recommendation_list: List[DescribeNisInspectionReportCheckItemsResponseBodyCheckItemListRecommendationList] = None,
|
|
1636
1637
|
resource_type: str = None,
|
|
1637
1638
|
):
|
|
@@ -1640,6 +1641,7 @@ class DescribeNisInspectionReportCheckItemsResponseBodyCheckItemList(TeaModel):
|
|
|
1640
1641
|
self.check_item_name = check_item_name
|
|
1641
1642
|
self.check_result_list = check_result_list
|
|
1642
1643
|
self.description = description
|
|
1644
|
+
self.description_code = description_code
|
|
1643
1645
|
self.recommendation_list = recommendation_list
|
|
1644
1646
|
self.resource_type = resource_type
|
|
1645
1647
|
|
|
@@ -1671,6 +1673,8 @@ class DescribeNisInspectionReportCheckItemsResponseBodyCheckItemList(TeaModel):
|
|
|
1671
1673
|
result['CheckResultList'].append(k.to_map() if k else None)
|
|
1672
1674
|
if self.description is not None:
|
|
1673
1675
|
result['Description'] = self.description
|
|
1676
|
+
if self.description_code is not None:
|
|
1677
|
+
result['DescriptionCode'] = self.description_code
|
|
1674
1678
|
result['RecommendationList'] = []
|
|
1675
1679
|
if self.recommendation_list is not None:
|
|
1676
1680
|
for k in self.recommendation_list:
|
|
@@ -1694,6 +1698,8 @@ class DescribeNisInspectionReportCheckItemsResponseBodyCheckItemList(TeaModel):
|
|
|
1694
1698
|
self.check_result_list.append(temp_model.from_map(k))
|
|
1695
1699
|
if m.get('Description') is not None:
|
|
1696
1700
|
self.description = m.get('Description')
|
|
1701
|
+
if m.get('DescriptionCode') is not None:
|
|
1702
|
+
self.description_code = m.get('DescriptionCode')
|
|
1697
1703
|
self.recommendation_list = []
|
|
1698
1704
|
if m.get('RecommendationList') is not None:
|
|
1699
1705
|
for k in m.get('RecommendationList'):
|
|
@@ -24,7 +24,7 @@ from setuptools import setup, find_packages
|
|
|
24
24
|
"""
|
|
25
25
|
setup module for alibabacloud_nis20211216.
|
|
26
26
|
|
|
27
|
-
Created on
|
|
27
|
+
Created on 07/11/2025
|
|
28
28
|
|
|
29
29
|
@author: Alibaba Cloud SDK
|
|
30
30
|
"""
|
|
@@ -38,7 +38,7 @@ URL = "https://github.com/aliyun/alibabacloud-python-sdk"
|
|
|
38
38
|
VERSION = __import__(PACKAGE).__version__
|
|
39
39
|
REQUIRES = [
|
|
40
40
|
"alibabacloud_tea_util>=0.3.13, <1.0.0",
|
|
41
|
-
"alibabacloud_tea_openapi>=0.3.
|
|
41
|
+
"alibabacloud_tea_openapi>=0.3.16, <1.0.0",
|
|
42
42
|
"alibabacloud_openapi_util>=0.2.2, <1.0.0",
|
|
43
43
|
"alibabacloud_endpoint_util>=0.0.4, <1.0.0"
|
|
44
44
|
]
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '2.2.2'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{alibabacloud_nis20211216-2.2.2 → alibabacloud_nis20211216-2.2.3}/alibabacloud_nis20211216/client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|