tencentcloud-sdk-python 3.0.1334__py2.py3-none-any.whl → 3.0.1335__py2.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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/acp/v20220105/models.py +0 -32
- tencentcloud/autoscaling/v20180419/autoscaling_client.py +3 -2
- tencentcloud/controlcenter/v20230110/controlcenter_client.py +92 -0
- tencentcloud/controlcenter/v20230110/errorcodes.py +9 -0
- tencentcloud/controlcenter/v20230110/models.py +948 -0
- tencentcloud/cvm/v20170312/cvm_client.py +92 -0
- tencentcloud/cvm/v20170312/errorcodes.py +9 -0
- tencentcloud/cvm/v20170312/models.py +1491 -33
- tencentcloud/cynosdb/v20190107/models.py +17 -2
- tencentcloud/ims/v20201229/ims_client.py +18 -12
- tencentcloud/keewidb/v20220308/models.py +0 -2
- tencentcloud/lcic/v20220817/models.py +75 -54
- tencentcloud/lke/v20231130/errorcodes.py +0 -12
- tencentcloud/lke/v20231130/lke_client.py +0 -50
- tencentcloud/lke/v20231130/models.py +0 -284
- tencentcloud/lowcode/v20210108/models.py +182 -2
- tencentcloud/mariadb/v20170312/models.py +10 -10
- tencentcloud/mqtt/v20240516/models.py +84 -0
- tencentcloud/mqtt/v20240516/mqtt_client.py +23 -0
- tencentcloud/ocr/v20181119/models.py +4 -22
- tencentcloud/ocr/v20181119/ocr_client.py +1 -1
- tencentcloud/partners/v20180321/models.py +197 -0
- tencentcloud/partners/v20180321/partners_client.py +23 -0
- tencentcloud/tat/v20201028/models.py +494 -180
- tencentcloud/tat/v20201028/tat_client.py +2 -2
- tencentcloud/teo/v20220901/models.py +14 -4
- tencentcloud/tke/v20180525/models.py +0 -292
- tencentcloud/tke/v20220501/models.py +0 -2
- tencentcloud/vdb/v20230616/models.py +0 -12
- {tencentcloud_sdk_python-3.0.1334.dist-info → tencentcloud_sdk_python-3.0.1335.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1334.dist-info → tencentcloud_sdk_python-3.0.1335.dist-info}/RECORD +35 -35
- {tencentcloud_sdk_python-3.0.1334.dist-info → tencentcloud_sdk_python-3.0.1335.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1334.dist-info → tencentcloud_sdk_python-3.0.1335.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1334.dist-info → tencentcloud_sdk_python-3.0.1335.dist-info}/top_level.txt +0 -0
@@ -1741,6 +1741,119 @@ class AuditApplyClientResponse(AbstractModel):
|
|
1741
1741
|
self._RequestId = params.get("RequestId")
|
1742
1742
|
|
1743
1743
|
|
1744
|
+
class ClientIncreaseInfoList(AbstractModel):
|
1745
|
+
"""客户增量激励考核信息列表
|
1746
|
+
|
1747
|
+
"""
|
1748
|
+
|
1749
|
+
def __init__(self):
|
1750
|
+
r"""
|
1751
|
+
:param _ClientUin: 客户UIN
|
1752
|
+
:type ClientUin: str
|
1753
|
+
:param _IsJoinIncrease: 是否参与增量政策,
|
1754
|
+
Y:是,N:否
|
1755
|
+
:type IsJoinIncrease: str
|
1756
|
+
:param _IncreaseUseAssociateDate: 增量考核关联时间
|
1757
|
+
:type IncreaseUseAssociateDate: str
|
1758
|
+
:param _TLevel: 参与增量考核的原始客户等级
|
1759
|
+
:type TLevel: str
|
1760
|
+
:param _IncreaseGoal: 增量考核目标,分
|
1761
|
+
:type IncreaseGoal: str
|
1762
|
+
:param _TotalBaseAmt: 完成订单金额,分
|
1763
|
+
:type TotalBaseAmt: str
|
1764
|
+
"""
|
1765
|
+
self._ClientUin = None
|
1766
|
+
self._IsJoinIncrease = None
|
1767
|
+
self._IncreaseUseAssociateDate = None
|
1768
|
+
self._TLevel = None
|
1769
|
+
self._IncreaseGoal = None
|
1770
|
+
self._TotalBaseAmt = None
|
1771
|
+
|
1772
|
+
@property
|
1773
|
+
def ClientUin(self):
|
1774
|
+
"""客户UIN
|
1775
|
+
:rtype: str
|
1776
|
+
"""
|
1777
|
+
return self._ClientUin
|
1778
|
+
|
1779
|
+
@ClientUin.setter
|
1780
|
+
def ClientUin(self, ClientUin):
|
1781
|
+
self._ClientUin = ClientUin
|
1782
|
+
|
1783
|
+
@property
|
1784
|
+
def IsJoinIncrease(self):
|
1785
|
+
"""是否参与增量政策,
|
1786
|
+
Y:是,N:否
|
1787
|
+
:rtype: str
|
1788
|
+
"""
|
1789
|
+
return self._IsJoinIncrease
|
1790
|
+
|
1791
|
+
@IsJoinIncrease.setter
|
1792
|
+
def IsJoinIncrease(self, IsJoinIncrease):
|
1793
|
+
self._IsJoinIncrease = IsJoinIncrease
|
1794
|
+
|
1795
|
+
@property
|
1796
|
+
def IncreaseUseAssociateDate(self):
|
1797
|
+
"""增量考核关联时间
|
1798
|
+
:rtype: str
|
1799
|
+
"""
|
1800
|
+
return self._IncreaseUseAssociateDate
|
1801
|
+
|
1802
|
+
@IncreaseUseAssociateDate.setter
|
1803
|
+
def IncreaseUseAssociateDate(self, IncreaseUseAssociateDate):
|
1804
|
+
self._IncreaseUseAssociateDate = IncreaseUseAssociateDate
|
1805
|
+
|
1806
|
+
@property
|
1807
|
+
def TLevel(self):
|
1808
|
+
"""参与增量考核的原始客户等级
|
1809
|
+
:rtype: str
|
1810
|
+
"""
|
1811
|
+
return self._TLevel
|
1812
|
+
|
1813
|
+
@TLevel.setter
|
1814
|
+
def TLevel(self, TLevel):
|
1815
|
+
self._TLevel = TLevel
|
1816
|
+
|
1817
|
+
@property
|
1818
|
+
def IncreaseGoal(self):
|
1819
|
+
"""增量考核目标,分
|
1820
|
+
:rtype: str
|
1821
|
+
"""
|
1822
|
+
return self._IncreaseGoal
|
1823
|
+
|
1824
|
+
@IncreaseGoal.setter
|
1825
|
+
def IncreaseGoal(self, IncreaseGoal):
|
1826
|
+
self._IncreaseGoal = IncreaseGoal
|
1827
|
+
|
1828
|
+
@property
|
1829
|
+
def TotalBaseAmt(self):
|
1830
|
+
"""完成订单金额,分
|
1831
|
+
:rtype: str
|
1832
|
+
"""
|
1833
|
+
return self._TotalBaseAmt
|
1834
|
+
|
1835
|
+
@TotalBaseAmt.setter
|
1836
|
+
def TotalBaseAmt(self, TotalBaseAmt):
|
1837
|
+
self._TotalBaseAmt = TotalBaseAmt
|
1838
|
+
|
1839
|
+
|
1840
|
+
def _deserialize(self, params):
|
1841
|
+
self._ClientUin = params.get("ClientUin")
|
1842
|
+
self._IsJoinIncrease = params.get("IsJoinIncrease")
|
1843
|
+
self._IncreaseUseAssociateDate = params.get("IncreaseUseAssociateDate")
|
1844
|
+
self._TLevel = params.get("TLevel")
|
1845
|
+
self._IncreaseGoal = params.get("IncreaseGoal")
|
1846
|
+
self._TotalBaseAmt = params.get("TotalBaseAmt")
|
1847
|
+
memeber_set = set(params.keys())
|
1848
|
+
for name, value in vars(self).items():
|
1849
|
+
property_name = name[1:]
|
1850
|
+
if property_name in memeber_set:
|
1851
|
+
memeber_set.remove(property_name)
|
1852
|
+
if len(memeber_set) > 0:
|
1853
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
1854
|
+
|
1855
|
+
|
1856
|
+
|
1744
1857
|
class CreatePayRelationForClientRequest(AbstractModel):
|
1745
1858
|
"""CreatePayRelationForClient请求参数结构体
|
1746
1859
|
|
@@ -3497,6 +3610,90 @@ class DescribeClientBalanceNewResponse(AbstractModel):
|
|
3497
3610
|
self._RequestId = params.get("RequestId")
|
3498
3611
|
|
3499
3612
|
|
3613
|
+
class DescribeClientJoinIncreaseListRequest(AbstractModel):
|
3614
|
+
"""DescribeClientJoinIncreaseList请求参数结构体
|
3615
|
+
|
3616
|
+
"""
|
3617
|
+
|
3618
|
+
def __init__(self):
|
3619
|
+
r"""
|
3620
|
+
:param _ClientUins: 客户UIN列表
|
3621
|
+
:type ClientUins: list of str
|
3622
|
+
"""
|
3623
|
+
self._ClientUins = None
|
3624
|
+
|
3625
|
+
@property
|
3626
|
+
def ClientUins(self):
|
3627
|
+
"""客户UIN列表
|
3628
|
+
:rtype: list of str
|
3629
|
+
"""
|
3630
|
+
return self._ClientUins
|
3631
|
+
|
3632
|
+
@ClientUins.setter
|
3633
|
+
def ClientUins(self, ClientUins):
|
3634
|
+
self._ClientUins = ClientUins
|
3635
|
+
|
3636
|
+
|
3637
|
+
def _deserialize(self, params):
|
3638
|
+
self._ClientUins = params.get("ClientUins")
|
3639
|
+
memeber_set = set(params.keys())
|
3640
|
+
for name, value in vars(self).items():
|
3641
|
+
property_name = name[1:]
|
3642
|
+
if property_name in memeber_set:
|
3643
|
+
memeber_set.remove(property_name)
|
3644
|
+
if len(memeber_set) > 0:
|
3645
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
3646
|
+
|
3647
|
+
|
3648
|
+
|
3649
|
+
class DescribeClientJoinIncreaseListResponse(AbstractModel):
|
3650
|
+
"""DescribeClientJoinIncreaseList返回参数结构体
|
3651
|
+
|
3652
|
+
"""
|
3653
|
+
|
3654
|
+
def __init__(self):
|
3655
|
+
r"""
|
3656
|
+
:param _List: 已审核代客列表
|
3657
|
+
:type List: list of ClientIncreaseInfoList
|
3658
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3659
|
+
:type RequestId: str
|
3660
|
+
"""
|
3661
|
+
self._List = None
|
3662
|
+
self._RequestId = None
|
3663
|
+
|
3664
|
+
@property
|
3665
|
+
def List(self):
|
3666
|
+
"""已审核代客列表
|
3667
|
+
:rtype: list of ClientIncreaseInfoList
|
3668
|
+
"""
|
3669
|
+
return self._List
|
3670
|
+
|
3671
|
+
@List.setter
|
3672
|
+
def List(self, List):
|
3673
|
+
self._List = List
|
3674
|
+
|
3675
|
+
@property
|
3676
|
+
def RequestId(self):
|
3677
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3678
|
+
:rtype: str
|
3679
|
+
"""
|
3680
|
+
return self._RequestId
|
3681
|
+
|
3682
|
+
@RequestId.setter
|
3683
|
+
def RequestId(self, RequestId):
|
3684
|
+
self._RequestId = RequestId
|
3685
|
+
|
3686
|
+
|
3687
|
+
def _deserialize(self, params):
|
3688
|
+
if params.get("List") is not None:
|
3689
|
+
self._List = []
|
3690
|
+
for item in params.get("List"):
|
3691
|
+
obj = ClientIncreaseInfoList()
|
3692
|
+
obj._deserialize(item)
|
3693
|
+
self._List.append(obj)
|
3694
|
+
self._RequestId = params.get("RequestId")
|
3695
|
+
|
3696
|
+
|
3500
3697
|
class DescribeRebateInfosNewRequest(AbstractModel):
|
3501
3698
|
"""DescribeRebateInfosNew请求参数结构体
|
3502
3699
|
|
@@ -351,6 +351,29 @@ class PartnersClient(AbstractClient):
|
|
351
351
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
352
352
|
|
353
353
|
|
354
|
+
def DescribeClientJoinIncreaseList(self, request):
|
355
|
+
"""查询合作伙伴名下客户的参与增量激励考核信息列表
|
356
|
+
|
357
|
+
:param request: Request instance for DescribeClientJoinIncreaseList.
|
358
|
+
:type request: :class:`tencentcloud.partners.v20180321.models.DescribeClientJoinIncreaseListRequest`
|
359
|
+
:rtype: :class:`tencentcloud.partners.v20180321.models.DescribeClientJoinIncreaseListResponse`
|
360
|
+
|
361
|
+
"""
|
362
|
+
try:
|
363
|
+
params = request._serialize()
|
364
|
+
headers = request.headers
|
365
|
+
body = self.call("DescribeClientJoinIncreaseList", params, headers=headers)
|
366
|
+
response = json.loads(body)
|
367
|
+
model = models.DescribeClientJoinIncreaseListResponse()
|
368
|
+
model._deserialize(response["Response"])
|
369
|
+
return model
|
370
|
+
except Exception as e:
|
371
|
+
if isinstance(e, TencentCloudSDKException):
|
372
|
+
raise
|
373
|
+
else:
|
374
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
375
|
+
|
376
|
+
|
354
377
|
def DescribeRebateInfos(self, request):
|
355
378
|
"""【该接口已下线,请切换使用升级版本DescribeRebateInfosNew】代理商可查询自己名下全部返佣信息
|
356
379
|
|