tencentcloud-sdk-python-ioa 3.0.1368__tar.gz → 3.0.1369__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.1368 → tencentcloud-sdk-python-ioa-3.0.1369}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-ioa-3.0.1368 → tencentcloud-sdk-python-ioa-3.0.1369}/setup.py +1 -1
- {tencentcloud-sdk-python-ioa-3.0.1368 → tencentcloud-sdk-python-ioa-3.0.1369}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-ioa-3.0.1368 → tencentcloud-sdk-python-ioa-3.0.1369}/tencentcloud/ioa/v20220601/models.py +19 -4
- {tencentcloud-sdk-python-ioa-3.0.1368 → tencentcloud-sdk-python-ioa-3.0.1369}/tencentcloud_sdk_python_ioa.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-ioa-3.0.1369/tencentcloud_sdk_python_ioa.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-ioa-3.0.1368/tencentcloud_sdk_python_ioa.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-ioa-3.0.1368 → tencentcloud-sdk-python-ioa-3.0.1369}/README.rst +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1368 → tencentcloud-sdk-python-ioa-3.0.1369}/setup.cfg +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1368 → tencentcloud-sdk-python-ioa-3.0.1369}/tencentcloud/ioa/__init__.py +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1368 → tencentcloud-sdk-python-ioa-3.0.1369}/tencentcloud/ioa/v20220601/__init__.py +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1368 → tencentcloud-sdk-python-ioa-3.0.1369}/tencentcloud/ioa/v20220601/errorcodes.py +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1368 → tencentcloud-sdk-python-ioa-3.0.1369}/tencentcloud/ioa/v20220601/ioa_client.py +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1368 → tencentcloud-sdk-python-ioa-3.0.1369}/tencentcloud_sdk_python_ioa.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1368 → tencentcloud-sdk-python-ioa-3.0.1369}/tencentcloud_sdk_python_ioa.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-ioa-3.0.1368 → tencentcloud-sdk-python-ioa-3.0.1369}/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.1369"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Ioa SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -2876,7 +2876,7 @@ class DeviceDetail(AbstractModel):
|
|
|
2876
2876
|
:type DeviceStrategyVer: str
|
|
2877
2877
|
:param _NGNStrategyVer: NGN策略版本
|
|
2878
2878
|
:type NGNStrategyVer: str
|
|
2879
|
-
:param _IOAUserName: 最近登录账户的账号
|
|
2879
|
+
:param _IOAUserName: 最近登录账户的账号(账号系统用户账号)
|
|
2880
2880
|
:type IOAUserName: str
|
|
2881
2881
|
:param _DeviceNewStrategyVer: 设备管控新策略
|
|
2882
2882
|
:type DeviceNewStrategyVer: str
|
|
@@ -2894,10 +2894,12 @@ class DeviceDetail(AbstractModel):
|
|
|
2894
2894
|
:type IdentityNewStrategyVer: str
|
|
2895
2895
|
:param _AccountGroupName: 最近登录账号部门
|
|
2896
2896
|
:type AccountGroupName: str
|
|
2897
|
-
:param _AccountName: 最近登录账户的姓名
|
|
2897
|
+
:param _AccountName: 最近登录账户的姓名(账号系统用户姓名)
|
|
2898
2898
|
:type AccountName: str
|
|
2899
2899
|
:param _AccountGroupId: 账号组id
|
|
2900
2900
|
:type AccountGroupId: int
|
|
2901
|
+
:param _RemarkName: 终端备注名
|
|
2902
|
+
:type RemarkName: str
|
|
2901
2903
|
"""
|
|
2902
2904
|
self._Id = None
|
|
2903
2905
|
self._Mid = None
|
|
@@ -2942,6 +2944,7 @@ class DeviceDetail(AbstractModel):
|
|
|
2942
2944
|
self._AccountGroupName = None
|
|
2943
2945
|
self._AccountName = None
|
|
2944
2946
|
self._AccountGroupId = None
|
|
2947
|
+
self._RemarkName = None
|
|
2945
2948
|
|
|
2946
2949
|
@property
|
|
2947
2950
|
def Id(self):
|
|
@@ -3297,7 +3300,7 @@ class DeviceDetail(AbstractModel):
|
|
|
3297
3300
|
|
|
3298
3301
|
@property
|
|
3299
3302
|
def IOAUserName(self):
|
|
3300
|
-
"""最近登录账户的账号
|
|
3303
|
+
"""最近登录账户的账号(账号系统用户账号)
|
|
3301
3304
|
:rtype: str
|
|
3302
3305
|
"""
|
|
3303
3306
|
return self._IOAUserName
|
|
@@ -3396,7 +3399,7 @@ class DeviceDetail(AbstractModel):
|
|
|
3396
3399
|
|
|
3397
3400
|
@property
|
|
3398
3401
|
def AccountName(self):
|
|
3399
|
-
"""最近登录账户的姓名
|
|
3402
|
+
"""最近登录账户的姓名(账号系统用户姓名)
|
|
3400
3403
|
:rtype: str
|
|
3401
3404
|
"""
|
|
3402
3405
|
return self._AccountName
|
|
@@ -3416,6 +3419,17 @@ class DeviceDetail(AbstractModel):
|
|
|
3416
3419
|
def AccountGroupId(self, AccountGroupId):
|
|
3417
3420
|
self._AccountGroupId = AccountGroupId
|
|
3418
3421
|
|
|
3422
|
+
@property
|
|
3423
|
+
def RemarkName(self):
|
|
3424
|
+
"""终端备注名
|
|
3425
|
+
:rtype: str
|
|
3426
|
+
"""
|
|
3427
|
+
return self._RemarkName
|
|
3428
|
+
|
|
3429
|
+
@RemarkName.setter
|
|
3430
|
+
def RemarkName(self, RemarkName):
|
|
3431
|
+
self._RemarkName = RemarkName
|
|
3432
|
+
|
|
3419
3433
|
|
|
3420
3434
|
def _deserialize(self, params):
|
|
3421
3435
|
self._Id = params.get("Id")
|
|
@@ -3461,6 +3475,7 @@ class DeviceDetail(AbstractModel):
|
|
|
3461
3475
|
self._AccountGroupName = params.get("AccountGroupName")
|
|
3462
3476
|
self._AccountName = params.get("AccountName")
|
|
3463
3477
|
self._AccountGroupId = params.get("AccountGroupId")
|
|
3478
|
+
self._RemarkName = params.get("RemarkName")
|
|
3464
3479
|
memeber_set = set(params.keys())
|
|
3465
3480
|
for name, value in vars(self).items():
|
|
3466
3481
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1369
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1368
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|