tencentcloud-sdk-python-ioa 3.0.1459__tar.gz → 3.0.1469__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.
- {tencentcloud-sdk-python-ioa-3.0.1459 → tencentcloud-sdk-python-ioa-3.0.1469}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ioa-3.0.1459 → tencentcloud-sdk-python-ioa-3.0.1469}/setup.py +1 -1
- {tencentcloud-sdk-python-ioa-3.0.1459 → tencentcloud-sdk-python-ioa-3.0.1469}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ioa-3.0.1459 → tencentcloud-sdk-python-ioa-3.0.1469}/tencentcloud/ioa/v20220601/models.py +15 -0
- {tencentcloud-sdk-python-ioa-3.0.1459 → tencentcloud-sdk-python-ioa-3.0.1469}/tencentcloud_sdk_python_ioa.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ioa-3.0.1469/tencentcloud_sdk_python_ioa.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ioa-3.0.1459/tencentcloud_sdk_python_ioa.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ioa-3.0.1459 → tencentcloud-sdk-python-ioa-3.0.1469}/README.rst +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1459 → tencentcloud-sdk-python-ioa-3.0.1469}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1459 → tencentcloud-sdk-python-ioa-3.0.1469}/tencentcloud/ioa/__init__.py +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1459 → tencentcloud-sdk-python-ioa-3.0.1469}/tencentcloud/ioa/v20220601/__init__.py +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1459 → tencentcloud-sdk-python-ioa-3.0.1469}/tencentcloud/ioa/v20220601/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1459 → tencentcloud-sdk-python-ioa-3.0.1469}/tencentcloud/ioa/v20220601/ioa_client.py +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1459 → tencentcloud-sdk-python-ioa-3.0.1469}/tencentcloud_sdk_python_ioa.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1459 → tencentcloud-sdk-python-ioa-3.0.1469}/tencentcloud_sdk_python_ioa.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1459 → tencentcloud-sdk-python-ioa-3.0.1469}/tencentcloud_sdk_python_ioa.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-ioa',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.0.1469,<4.0.0"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Ioa SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -1391,6 +1391,8 @@ class DescribeAccountGroupsData(AbstractModel):
|
|
|
1391
1391
|
:type LatestSyncResult: str
|
|
1392
1392
|
:param _LatestSyncTime: 最新一次同步任务的结束时间
|
|
1393
1393
|
:type LatestSyncTime: str
|
|
1394
|
+
:param _NamePathArr: 分组名称数组
|
|
1395
|
+
:type NamePathArr: list of str
|
|
1394
1396
|
"""
|
|
1395
1397
|
self._NamePath = None
|
|
1396
1398
|
self._IdPathArr = None
|
|
@@ -1412,6 +1414,7 @@ class DescribeAccountGroupsData(AbstractModel):
|
|
|
1412
1414
|
self._ReadOnly = None
|
|
1413
1415
|
self._LatestSyncResult = None
|
|
1414
1416
|
self._LatestSyncTime = None
|
|
1417
|
+
self._NamePathArr = None
|
|
1415
1418
|
|
|
1416
1419
|
@property
|
|
1417
1420
|
def NamePath(self):
|
|
@@ -1633,6 +1636,17 @@ class DescribeAccountGroupsData(AbstractModel):
|
|
|
1633
1636
|
def LatestSyncTime(self, LatestSyncTime):
|
|
1634
1637
|
self._LatestSyncTime = LatestSyncTime
|
|
1635
1638
|
|
|
1639
|
+
@property
|
|
1640
|
+
def NamePathArr(self):
|
|
1641
|
+
r"""分组名称数组
|
|
1642
|
+
:rtype: list of str
|
|
1643
|
+
"""
|
|
1644
|
+
return self._NamePathArr
|
|
1645
|
+
|
|
1646
|
+
@NamePathArr.setter
|
|
1647
|
+
def NamePathArr(self, NamePathArr):
|
|
1648
|
+
self._NamePathArr = NamePathArr
|
|
1649
|
+
|
|
1636
1650
|
|
|
1637
1651
|
def _deserialize(self, params):
|
|
1638
1652
|
self._NamePath = params.get("NamePath")
|
|
@@ -1655,6 +1669,7 @@ class DescribeAccountGroupsData(AbstractModel):
|
|
|
1655
1669
|
self._ReadOnly = params.get("ReadOnly")
|
|
1656
1670
|
self._LatestSyncResult = params.get("LatestSyncResult")
|
|
1657
1671
|
self._LatestSyncTime = params.get("LatestSyncTime")
|
|
1672
|
+
self._NamePathArr = params.get("NamePathArr")
|
|
1658
1673
|
memeber_set = set(params.keys())
|
|
1659
1674
|
for name, value in vars(self).items():
|
|
1660
1675
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.0.1469
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.0.1459
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|