tencentcloud-sdk-python 3.0.1171__py2.py3-none-any.whl → 3.0.1173__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/apm/v20210622/errorcodes.py +6 -0
- tencentcloud/billing/v20180709/models.py +13 -0
- tencentcloud/cam/v20190116/models.py +38 -0
- tencentcloud/cdwdoris/v20211228/models.py +24 -0
- tencentcloud/ckafka/v20190819/models.py +77 -12
- tencentcloud/cls/v20201016/models.py +9 -1
- tencentcloud/cmq/v20190304/cmq_client.py +1 -1
- tencentcloud/cmq/v20190304/models.py +60 -60
- tencentcloud/csip/v20221121/models.py +127 -1
- tencentcloud/cynosdb/v20190107/cynosdb_client.py +23 -0
- tencentcloud/cynosdb/v20190107/models.py +693 -0
- tencentcloud/dlc/v20210125/dlc_client.py +46 -0
- tencentcloud/dlc/v20210125/models.py +288 -0
- tencentcloud/dts/v20180330/dts_client.py +0 -25
- tencentcloud/dts/v20180330/models.py +0 -146
- tencentcloud/emr/v20190103/models.py +3 -3
- tencentcloud/ess/v20201111/ess_client.py +59 -0
- tencentcloud/ess/v20201111/models.py +228 -0
- tencentcloud/essbasic/v20210526/essbasic_client.py +63 -0
- tencentcloud/essbasic/v20210526/models.py +225 -8
- tencentcloud/iecp/v20210914/iecp_client.py +60 -20
- tencentcloud/ims/v20201229/ims_client.py +4 -3
- tencentcloud/lke/v20231130/errorcodes.py +33 -0
- tencentcloud/lke/v20231130/lke_client.py +69 -0
- tencentcloud/lke/v20231130/models.py +852 -0
- tencentcloud/mongodb/v20190725/errorcodes.py +9 -0
- tencentcloud/mongodb/v20190725/models.py +162 -0
- tencentcloud/mongodb/v20190725/mongodb_client.py +23 -0
- tencentcloud/monitor/v20180724/models.py +12 -0
- tencentcloud/mps/v20190612/models.py +109 -8
- tencentcloud/ocr/v20181119/models.py +532 -3
- tencentcloud/organization/v20210331/errorcodes.py +3 -0
- tencentcloud/organization/v20210331/models.py +116 -0
- tencentcloud/organization/v20210331/organization_client.py +46 -0
- tencentcloud/sms/v20210111/sms_client.py +33 -65
- tencentcloud/tdmq/v20200217/models.py +934 -59
- tencentcloud/tdmq/v20200217/tdmq_client.py +184 -0
- tencentcloud/tke/v20180525/errorcodes.py +3 -0
- tencentcloud/tke/v20180525/models.py +263 -4
- tencentcloud/tke/v20180525/tke_client.py +23 -0
- tencentcloud/trro/v20220325/models.py +1 -1
- tencentcloud/trtc/v20190722/models.py +1 -1
- tencentcloud/tse/v20201207/models.py +18 -1
- tencentcloud/tsf/v20180326/models.py +13 -0
- tencentcloud/tsf/v20180326/tsf_client.py +3 -1
- tencentcloud/waf/v20180125/models.py +103 -12
- tencentcloud/wedata/v20210820/models.py +39 -26
- tencentcloud/wedata/v20210820/wedata_client.py +1 -1
- {tencentcloud_sdk_python-3.0.1171.dist-info → tencentcloud_sdk_python-3.0.1173.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1171.dist-info → tencentcloud_sdk_python-3.0.1173.dist-info}/RECORD +54 -54
- {tencentcloud_sdk_python-3.0.1171.dist-info → tencentcloud_sdk_python-3.0.1173.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1171.dist-info → tencentcloud_sdk_python-3.0.1173.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1171.dist-info → tencentcloud_sdk_python-3.0.1173.dist-info}/top_level.txt +0 -0
@@ -18,6 +18,64 @@ import warnings
|
|
18
18
|
from tencentcloud.common.abstract_model import AbstractModel
|
19
19
|
|
20
20
|
|
21
|
+
class AcceptJoinShareUnitInvitationRequest(AbstractModel):
|
22
|
+
"""AcceptJoinShareUnitInvitation请求参数结构体
|
23
|
+
|
24
|
+
"""
|
25
|
+
|
26
|
+
def __init__(self):
|
27
|
+
r"""
|
28
|
+
:param _UnitId: 共享单元ID。
|
29
|
+
:type UnitId: str
|
30
|
+
"""
|
31
|
+
self._UnitId = None
|
32
|
+
|
33
|
+
@property
|
34
|
+
def UnitId(self):
|
35
|
+
return self._UnitId
|
36
|
+
|
37
|
+
@UnitId.setter
|
38
|
+
def UnitId(self, UnitId):
|
39
|
+
self._UnitId = UnitId
|
40
|
+
|
41
|
+
|
42
|
+
def _deserialize(self, params):
|
43
|
+
self._UnitId = params.get("UnitId")
|
44
|
+
memeber_set = set(params.keys())
|
45
|
+
for name, value in vars(self).items():
|
46
|
+
property_name = name[1:]
|
47
|
+
if property_name in memeber_set:
|
48
|
+
memeber_set.remove(property_name)
|
49
|
+
if len(memeber_set) > 0:
|
50
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
51
|
+
|
52
|
+
|
53
|
+
|
54
|
+
class AcceptJoinShareUnitInvitationResponse(AbstractModel):
|
55
|
+
"""AcceptJoinShareUnitInvitation返回参数结构体
|
56
|
+
|
57
|
+
"""
|
58
|
+
|
59
|
+
def __init__(self):
|
60
|
+
r"""
|
61
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
62
|
+
:type RequestId: str
|
63
|
+
"""
|
64
|
+
self._RequestId = None
|
65
|
+
|
66
|
+
@property
|
67
|
+
def RequestId(self):
|
68
|
+
return self._RequestId
|
69
|
+
|
70
|
+
@RequestId.setter
|
71
|
+
def RequestId(self, RequestId):
|
72
|
+
self._RequestId = RequestId
|
73
|
+
|
74
|
+
|
75
|
+
def _deserialize(self, params):
|
76
|
+
self._RequestId = params.get("RequestId")
|
77
|
+
|
78
|
+
|
21
79
|
class AddOrganizationMemberEmailRequest(AbstractModel):
|
22
80
|
"""AddOrganizationMemberEmail请求参数结构体
|
23
81
|
|
@@ -7835,6 +7893,64 @@ class QuitOrganizationResponse(AbstractModel):
|
|
7835
7893
|
self._RequestId = params.get("RequestId")
|
7836
7894
|
|
7837
7895
|
|
7896
|
+
class RejectJoinShareUnitInvitationRequest(AbstractModel):
|
7897
|
+
"""RejectJoinShareUnitInvitation请求参数结构体
|
7898
|
+
|
7899
|
+
"""
|
7900
|
+
|
7901
|
+
def __init__(self):
|
7902
|
+
r"""
|
7903
|
+
:param _UnitId: 共享单元ID。
|
7904
|
+
:type UnitId: str
|
7905
|
+
"""
|
7906
|
+
self._UnitId = None
|
7907
|
+
|
7908
|
+
@property
|
7909
|
+
def UnitId(self):
|
7910
|
+
return self._UnitId
|
7911
|
+
|
7912
|
+
@UnitId.setter
|
7913
|
+
def UnitId(self, UnitId):
|
7914
|
+
self._UnitId = UnitId
|
7915
|
+
|
7916
|
+
|
7917
|
+
def _deserialize(self, params):
|
7918
|
+
self._UnitId = params.get("UnitId")
|
7919
|
+
memeber_set = set(params.keys())
|
7920
|
+
for name, value in vars(self).items():
|
7921
|
+
property_name = name[1:]
|
7922
|
+
if property_name in memeber_set:
|
7923
|
+
memeber_set.remove(property_name)
|
7924
|
+
if len(memeber_set) > 0:
|
7925
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
7926
|
+
|
7927
|
+
|
7928
|
+
|
7929
|
+
class RejectJoinShareUnitInvitationResponse(AbstractModel):
|
7930
|
+
"""RejectJoinShareUnitInvitation返回参数结构体
|
7931
|
+
|
7932
|
+
"""
|
7933
|
+
|
7934
|
+
def __init__(self):
|
7935
|
+
r"""
|
7936
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7937
|
+
:type RequestId: str
|
7938
|
+
"""
|
7939
|
+
self._RequestId = None
|
7940
|
+
|
7941
|
+
@property
|
7942
|
+
def RequestId(self):
|
7943
|
+
return self._RequestId
|
7944
|
+
|
7945
|
+
@RequestId.setter
|
7946
|
+
def RequestId(self, RequestId):
|
7947
|
+
self._RequestId = RequestId
|
7948
|
+
|
7949
|
+
|
7950
|
+
def _deserialize(self, params):
|
7951
|
+
self._RequestId = params.get("RequestId")
|
7952
|
+
|
7953
|
+
|
7838
7954
|
class ResourceTagMapping(AbstractModel):
|
7839
7955
|
"""资源及关联的标签
|
7840
7956
|
|
@@ -26,6 +26,29 @@ class OrganizationClient(AbstractClient):
|
|
26
26
|
_service = 'organization'
|
27
27
|
|
28
28
|
|
29
|
+
def AcceptJoinShareUnitInvitation(self, request):
|
30
|
+
"""接受加入共享单元邀请。
|
31
|
+
|
32
|
+
:param request: Request instance for AcceptJoinShareUnitInvitation.
|
33
|
+
:type request: :class:`tencentcloud.organization.v20210331.models.AcceptJoinShareUnitInvitationRequest`
|
34
|
+
:rtype: :class:`tencentcloud.organization.v20210331.models.AcceptJoinShareUnitInvitationResponse`
|
35
|
+
|
36
|
+
"""
|
37
|
+
try:
|
38
|
+
params = request._serialize()
|
39
|
+
headers = request.headers
|
40
|
+
body = self.call("AcceptJoinShareUnitInvitation", params, headers=headers)
|
41
|
+
response = json.loads(body)
|
42
|
+
model = models.AcceptJoinShareUnitInvitationResponse()
|
43
|
+
model._deserialize(response["Response"])
|
44
|
+
return model
|
45
|
+
except Exception as e:
|
46
|
+
if isinstance(e, TencentCloudSDKException):
|
47
|
+
raise
|
48
|
+
else:
|
49
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
50
|
+
|
51
|
+
|
29
52
|
def AddOrganizationMemberEmail(self, request):
|
30
53
|
"""添加组织成员邮箱
|
31
54
|
|
@@ -1291,6 +1314,29 @@ class OrganizationClient(AbstractClient):
|
|
1291
1314
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1292
1315
|
|
1293
1316
|
|
1317
|
+
def RejectJoinShareUnitInvitation(self, request):
|
1318
|
+
"""拒绝加入共享单元邀请。
|
1319
|
+
|
1320
|
+
:param request: Request instance for RejectJoinShareUnitInvitation.
|
1321
|
+
:type request: :class:`tencentcloud.organization.v20210331.models.RejectJoinShareUnitInvitationRequest`
|
1322
|
+
:rtype: :class:`tencentcloud.organization.v20210331.models.RejectJoinShareUnitInvitationResponse`
|
1323
|
+
|
1324
|
+
"""
|
1325
|
+
try:
|
1326
|
+
params = request._serialize()
|
1327
|
+
headers = request.headers
|
1328
|
+
body = self.call("RejectJoinShareUnitInvitation", params, headers=headers)
|
1329
|
+
response = json.loads(body)
|
1330
|
+
model = models.RejectJoinShareUnitInvitationResponse()
|
1331
|
+
model._deserialize(response["Response"])
|
1332
|
+
return model
|
1333
|
+
except Exception as e:
|
1334
|
+
if isinstance(e, TencentCloudSDKException):
|
1335
|
+
raise
|
1336
|
+
else:
|
1337
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1338
|
+
|
1339
|
+
|
1294
1340
|
def UpdateOrganizationIdentity(self, request):
|
1295
1341
|
"""更新组织身份
|
1296
1342
|
|
@@ -27,10 +27,8 @@ class SmsClient(AbstractClient):
|
|
27
27
|
|
28
28
|
|
29
29
|
def AddSmsSign(self, request):
|
30
|
-
"""
|
31
|
-
|
32
|
-
>- 注:由于云 **API3.0 安全性**有所提升,所以**接口鉴权**较为复杂,建议使用 SDK 来使用云短信服务。
|
33
|
-
>- 您可以在 [API 3.0 Explorer](https://console.cloud.tencent.com/api/explorer?Product=sms&Version=2021-01-11&Action=SendSms) 中直接运行该接口,可以先免去签名计算步骤。运行成功后,API Explorer可以**自动生成**SDK代码示例。
|
30
|
+
"""本接口 (AddSmsSign) 用于添加短信签名。
|
31
|
+
<blockquote class="d-mod-explain"><div class="d-mod-title d-explain-title" style="line-height: normal;"><i class="d-icon-explain"></i>说明:</div><p></p><ul><li>添加短信签名前,请先认真参阅 <a href="https://cloud.tencent.com/document/product/382/39022">腾讯云短信签名审核标准。</a></li><li>个人认证用户不支持使用 API 申请短信签名,请参阅了解 <a href="https://cloud.tencent.com/document/product/378/3629">实名认证基本介绍</a>,如果为个人认证请登录 <a href="https://console.cloud.tencent.com/smsv2">控制台</a> 申请短信签名。</li></ul></blockquote>
|
34
32
|
|
35
33
|
:param request: Request instance for AddSmsSign.
|
36
34
|
:type request: :class:`tencentcloud.sms.v20210111.models.AddSmsSignRequest`
|
@@ -53,10 +51,8 @@ class SmsClient(AbstractClient):
|
|
53
51
|
|
54
52
|
|
55
53
|
def AddSmsTemplate(self, request):
|
56
|
-
"""
|
57
|
-
|
58
|
-
>- 注:由于云 **API3.0 安全性**有所提升,所以**接口鉴权**较为复杂,建议使用 SDK 来使用云短信服务。
|
59
|
-
>- 您可以在 [API 3.0 Explorer](https://console.cloud.tencent.com/api/explorer?Product=sms&Version=2021-01-11&Action=SendSms) 中直接运行该接口,可以先免去签名计算步骤。运行成功后,API Explorer可以**自动生成**SDK代码示例。
|
54
|
+
"""本接口 (AddSmsTemplate) 用于创建短信模板。
|
55
|
+
<blockquote class="d-mod-explain"><div class="d-mod-title d-explain-title" style="line-height: normal;"><i class="d-icon-explain"></i>说明:</div><p></p><ul><li>申请短信模板前,请先认真参阅 <a href="https://cloud.tencent.com/document/product/382/39023">腾讯云短信正文模板审核标准。</a></li><li>个人认证用户不支持使用 API 申请短信正文模板,请参阅了解 <a href="https://cloud.tencent.com/document/product/378/3629">实名认证基本介绍</a>,如果为个人认证请登录 <a href="https://console.cloud.tencent.com/smsv2">控制台</a> 申请短信正文模板。</li></ul></blockquote>
|
60
56
|
|
61
57
|
:param request: Request instance for AddSmsTemplate.
|
62
58
|
:type request: :class:`tencentcloud.sms.v20210111.models.AddSmsTemplateRequest`
|
@@ -79,9 +75,7 @@ class SmsClient(AbstractClient):
|
|
79
75
|
|
80
76
|
|
81
77
|
def CallbackStatusStatistics(self, request):
|
82
|
-
"""
|
83
|
-
>- 注:由于云 **API3.0 安全性**有所提升,所以**接口鉴权**较为复杂,建议使用 SDK 来使用云短信服务。
|
84
|
-
>- 您可以在 [API 3.0 Explorer](https://console.cloud.tencent.com/api/explorer?Product=sms&Version=2021-01-11&Action=SendSms) 中直接运行该接口,可以先免去签名计算步骤。运行成功后,API Explorer可以**自动生成**SDK代码示例。
|
78
|
+
"""本接口 (CallbackStatusStatistics) 用于统计用户回执的数据。
|
85
79
|
|
86
80
|
:param request: Request instance for CallbackStatusStatistics.
|
87
81
|
:type request: :class:`tencentcloud.sms.v20210111.models.CallbackStatusStatisticsRequest`
|
@@ -104,9 +98,8 @@ class SmsClient(AbstractClient):
|
|
104
98
|
|
105
99
|
|
106
100
|
def DeleteSmsSign(self, request):
|
107
|
-
"""
|
108
|
-
|
109
|
-
>- 您可以在 [API 3.0 Explorer](https://console.cloud.tencent.com/api/explorer?Product=sms&Version=2021-01-11&Action=SendSms) 中直接运行该接口,可以先免去签名计算步骤。运行成功后,API Explorer可以**自动生成**SDK代码示例。
|
101
|
+
"""本接口 (DeleteSmsSign) 用于删除短信签名。
|
102
|
+
<blockquote class="d-mod-explain"><div class="d-mod-title d-explain-title" style="line-height: normal;"><i class="d-icon-explain"></i>说明:</div><p></p><ul><li>个人认证用户不支持使用 API 删除短信签名,请参阅了解 <a href="https://cloud.tencent.com/document/product/378/3629">实名认证基本介绍</a>,如果为个人认证请登录 <a href="https://console.cloud.tencent.com/smsv2">控制台</a> 删除短信签名。</li></ul></blockquote>
|
110
103
|
|
111
104
|
:param request: Request instance for DeleteSmsSign.
|
112
105
|
:type request: :class:`tencentcloud.sms.v20210111.models.DeleteSmsSignRequest`
|
@@ -129,9 +122,8 @@ class SmsClient(AbstractClient):
|
|
129
122
|
|
130
123
|
|
131
124
|
def DeleteSmsTemplate(self, request):
|
132
|
-
"""
|
133
|
-
|
134
|
-
>- 您可以在 [API 3.0 Explorer](https://console.cloud.tencent.com/api/explorer?Product=sms&Version=2021-01-11&Action=SendSms) 中直接运行该接口,可以先免去签名计算步骤。运行成功后,API Explorer可以**自动生成**SDK代码示例。
|
125
|
+
"""本接口 (DeleteSmsTemplate) 用于删除短信模板。
|
126
|
+
<blockquote class="d-mod-explain"><div class="d-mod-title d-explain-title" style="line-height: normal;"><i class="d-icon-explain"></i>说明:</div><p></p><ul><li>个人认证用户不支持使用 API 删除短信正文模板,请参阅了解 <a href="https://cloud.tencent.com/document/product/378/3629">实名认证基本介绍</a>,如果为个人认证请登录 <a href="https://console.cloud.tencent.com/smsv2">控制台</a> 删除短信正文模板。</li></ul></blockquote>
|
135
127
|
|
136
128
|
:param request: Request instance for DeleteSmsTemplate.
|
137
129
|
:type request: :class:`tencentcloud.sms.v20210111.models.DeleteSmsTemplateRequest`
|
@@ -154,8 +146,8 @@ class SmsClient(AbstractClient):
|
|
154
146
|
|
155
147
|
|
156
148
|
def DescribePhoneNumberInfo(self, request):
|
157
|
-
"""
|
158
|
-
|
149
|
+
"""本接口 (DescribePhoneNumberInfo) 用于提供电话号码的信息查询,包括国家(或地区)码、规范的 E.164 格式号码等。
|
150
|
+
- 例如:查询号码 +86018845720123,可以得到国家码 86、规范的 E.164 号码 +8618845720123 等信息。
|
159
151
|
|
160
152
|
:param request: Request instance for DescribePhoneNumberInfo.
|
161
153
|
:type request: :class:`tencentcloud.sms.v20210111.models.DescribePhoneNumberInfoRequest`
|
@@ -178,9 +170,8 @@ class SmsClient(AbstractClient):
|
|
178
170
|
|
179
171
|
|
180
172
|
def DescribeSmsSignList(self, request):
|
181
|
-
"""
|
182
|
-
|
183
|
-
>- 您可以在 [API 3.0 Explorer](https://console.cloud.tencent.com/api/explorer?Product=sms&Version=2021-01-11&Action=SendSms) 中直接运行该接口,可以先免去签名计算步骤。运行成功后,API Explorer可以**自动生成**SDK代码示例。
|
173
|
+
"""本接口 (DescribeSmsSignList) 用于查询短信签名状态。
|
174
|
+
<blockquote class="d-mod-explain"><div class="d-mod-title d-explain-title" style="line-height: normal;"><i class="d-icon-explain"></i>说明:</div><p></p><ul><li>个人认证用户不支持使用 API 查询短信签名,请参阅了解 <a href="https://cloud.tencent.com/document/product/378/3629">实名认证基本介绍</a>,如果为个人认证请登录 <a href="https://console.cloud.tencent.com/smsv2">控制台</a> 查询短信签名。</li></ul></blockquote>
|
184
175
|
|
185
176
|
:param request: Request instance for DescribeSmsSignList.
|
186
177
|
:type request: :class:`tencentcloud.sms.v20210111.models.DescribeSmsSignListRequest`
|
@@ -203,9 +194,8 @@ class SmsClient(AbstractClient):
|
|
203
194
|
|
204
195
|
|
205
196
|
def DescribeSmsTemplateList(self, request):
|
206
|
-
"""
|
207
|
-
|
208
|
-
>- 您可以在 [API 3.0 Explorer](https://console.cloud.tencent.com/api/explorer?Product=sms&Version=2021-01-11&Action=SendSms) 中直接运行该接口,可以先免去签名计算步骤。运行成功后,API Explorer可以**自动生成**SDK代码示例。
|
197
|
+
"""本接口 (DescribeSmsTemplateList) 用于查询短信模板状态。
|
198
|
+
<blockquote class="d-mod-explain"><div class="d-mod-title d-explain-title" style="line-height: normal;"><i class="d-icon-explain"></i>说明:</div><p></p><ul><li>个人认证用户不支持使用 API 查询短信正文模板,请参阅了解 <a href="https://cloud.tencent.com/document/product/378/3629">实名认证基本介绍</a>,如果为个人认证请登录 <a href="https://console.cloud.tencent.com/smsv2">控制台</a> 查询短信正文模板。</li></ul></blockquote>
|
209
199
|
|
210
200
|
:param request: Request instance for DescribeSmsTemplateList.
|
211
201
|
:type request: :class:`tencentcloud.sms.v20210111.models.DescribeSmsTemplateListRequest`
|
@@ -228,11 +218,8 @@ class SmsClient(AbstractClient):
|
|
228
218
|
|
229
219
|
|
230
220
|
def ModifySmsSign(self, request):
|
231
|
-
"""
|
232
|
-
|
233
|
-
3. 修改短信签名,仅当签名为**待审核**或**已拒绝**状态时,才能进行修改,**已审核通过**的签名不支持修改。
|
234
|
-
>- 注:由于云 **API3.0 安全性**有所提升,所以**接口鉴权**较为复杂,建议使用 SDK 来使用云短信服务。
|
235
|
-
>- 您可以在 [API 3.0 Explorer](https://console.cloud.tencent.com/api/explorer?Product=sms&Version=2021-01-11&Action=SendSms) 中直接运行该接口,可以先免去签名计算步骤。运行成功后,API Explorer可以**自动生成**SDK代码示例。
|
221
|
+
"""本接口 (ModifySmsSign) 用于修改短信签名。
|
222
|
+
<blockquote class="d-mod-explain"><div class="d-mod-title d-explain-title" style="line-height: normal;"><i class="d-icon-explain"></i>说明:</div><p></p><ul><li>修改短信签名前,请先认真参阅 <a href="https://cloud.tencent.com/document/product/382/39022">腾讯云短信签名审核标准。</a></li><li>个人认证用户不支持使用 API 修改短信签名,请参阅了解 <a href="https://cloud.tencent.com/document/product/378/3629">实名认证基本介绍</a>,如果为个人认证请登录 <a href="https://console.cloud.tencent.com/smsv2">控制台</a> 修改短信签名。</li><li>修改短信签名,仅当签名为<b>待审核</b>或<b>已拒绝</b>状态时,才能进行修改,<b>已审核通过</b>的签名不支持修改。</li></ul></blockquote>
|
236
223
|
|
237
224
|
:param request: Request instance for ModifySmsSign.
|
238
225
|
:type request: :class:`tencentcloud.sms.v20210111.models.ModifySmsSignRequest`
|
@@ -255,11 +242,8 @@ class SmsClient(AbstractClient):
|
|
255
242
|
|
256
243
|
|
257
244
|
def ModifySmsTemplate(self, request):
|
258
|
-
"""
|
259
|
-
|
260
|
-
3. 修改短信模板,仅当正文模板为**待审核**或**已拒绝**状态时,才能进行修改,**已审核通过**的正文模板不支持修改。
|
261
|
-
>- 注:由于云 **API3.0 安全性**有所提升,所以**接口鉴权**较为复杂,建议使用 SDK 来使用云短信服务。
|
262
|
-
>- 您可以在 [API 3.0 Explorer](https://console.cloud.tencent.com/api/explorer?Product=sms&Version=2019-07-11&Action=SendSms) 中直接运行该接口,可以先免去签名计算步骤。运行成功后,API Explorer可以**自动生成**SDK代码示例。
|
245
|
+
"""本接口 (ModifySmsTemplate) 用于修改短信模板。
|
246
|
+
<blockquote class="d-mod-explain"><div class="d-mod-title d-explain-title" style="line-height: normal;"><i class="d-icon-explain"></i>说明:</div><p></p><ul><li>修改短信正文模板前,请先认真参阅 <a href="https://cloud.tencent.com/document/product/382/39023">腾讯云短信正文模板审核标准。</a></li><li>个人认证用户不支持使用 API 修改短信正文模板,请参阅了解 <a href="https://cloud.tencent.com/document/product/378/3629">实名认证基本介绍</a>,如果为个人认证请登录 <a href="https://console.cloud.tencent.com/smsv2">控制台</a> 修改短信正文模板。</li><li>修改短信模板,仅当正文模板为<b>待审核</b>或<b>已拒绝</b>状态时,才能进行修改,<b>已审核通过</b>的正文模板不支持修改。</li></ul></blockquote>
|
263
247
|
|
264
248
|
:param request: Request instance for ModifySmsTemplate.
|
265
249
|
:type request: :class:`tencentcloud.sms.v20210111.models.ModifySmsTemplateRequest`
|
@@ -282,11 +266,8 @@ class SmsClient(AbstractClient):
|
|
282
266
|
|
283
267
|
|
284
268
|
def PullSmsReplyStatus(self, request):
|
285
|
-
"""
|
286
|
-
|
287
|
-
>- 注:此接口需要联系 [腾讯云短信小助手](https://cloud.tencent.com/document/product/382/3773#.E6.8A.80.E6.9C.AF.E4.BA.A4.E6.B5.81) 开通。
|
288
|
-
>- 注:由于云 **API3.0 安全性**有所提升,所以**接口鉴权**较为复杂,建议使用 SDK 来使用云短信服务。
|
289
|
-
>- 您可以在 [API 3.0 Explorer](https://console.cloud.tencent.com/api/explorer?Product=sms&Version=2021-01-11&Action=SendSms) 中直接运行该接口,可以先免去签名计算步骤。运行成功后,API Explorer可以**自动生成**SDK代码示例。
|
269
|
+
"""本接口 (PullSmsReplyStatus) 用于拉取短信回复状态。
|
270
|
+
<blockquote class="d-mod-explain"><div class="d-mod-title d-explain-title" style="line-height: normal;"><i class="d-icon-explain"></i>说明:</div><p></p><ul><li>此接口需要联系 <a href="https://cloud.tencent.com/document/product/382/3773#.E6.8A.80.E6.9C.AF.E4.BA.A4.E6.B5.81">腾讯云短信小助手</a> 开通。</li><li>上行回复也支持 <a href="https://cloud.tencent.com/document/product/382/42907">配置回复回调</a> 的方式获取。</li></ul></blockquote>
|
290
271
|
|
291
272
|
:param request: Request instance for PullSmsReplyStatus.
|
292
273
|
:type request: :class:`tencentcloud.sms.v20210111.models.PullSmsReplyStatusRequest`
|
@@ -309,10 +290,8 @@ class SmsClient(AbstractClient):
|
|
309
290
|
|
310
291
|
|
311
292
|
def PullSmsReplyStatusByPhoneNumber(self, request):
|
312
|
-
"""
|
313
|
-
|
314
|
-
>- 注:由于云 **API3.0 安全性**有所提升,所以**接口鉴权**较为复杂,建议使用 SDK 来使用云短信服务。
|
315
|
-
>- 您可以在 [API 3.0 Explorer](https://console.cloud.tencent.com/api/explorer?Product=sms&Version=2021-01-11&Action=SendSms) 中直接运行该接口,可以先免去签名计算步骤。运行成功后,API Explorer可以**自动生成**SDK代码示例。
|
293
|
+
"""本接口 (PullSmsReplyStatusByPhoneNumber) 用于拉取单个号码短信回复状态。
|
294
|
+
<blockquote class="d-mod-explain"><div class="d-mod-title d-explain-title" style="line-height: normal;"><i class="d-icon-explain"></i>说明:</div><p></p><ul><li>上行回复也支持 <a href="https://cloud.tencent.com/document/product/382/42907">配置回复回调</a> 的方式获取。</li></ul></blockquote>
|
316
295
|
|
317
296
|
:param request: Request instance for PullSmsReplyStatusByPhoneNumber.
|
318
297
|
:type request: :class:`tencentcloud.sms.v20210111.models.PullSmsReplyStatusByPhoneNumberRequest`
|
@@ -335,11 +314,8 @@ class SmsClient(AbstractClient):
|
|
335
314
|
|
336
315
|
|
337
316
|
def PullSmsSendStatus(self, request):
|
338
|
-
"""
|
339
|
-
|
340
|
-
>- 注:此接口需要联系 [腾讯云短信小助手](https://cloud.tencent.com/document/product/382/3773#.E6.8A.80.E6.9C.AF.E4.BA.A4.E6.B5.81) 开通。
|
341
|
-
>- 注:由于云 **API3.0 安全性**有所提升,所以**接口鉴权**较为复杂,建议使用 SDK 来使用云短信服务。
|
342
|
-
>- 您可以在 [API 3.0 Explorer](https://console.cloud.tencent.com/api/explorer?Product=sms&Version=2021-01-11&Action=SendSms) 中直接运行该接口,可以先免去签名计算步骤。运行成功后,API Explorer可以**自动生成**SDK代码示例。
|
317
|
+
"""本接口 (PullSmsSendStatus) 用于拉取短信下发状态。
|
318
|
+
<blockquote class="d-mod-explain"><div class="d-mod-title d-explain-title" style="line-height: normal;"><i class="d-icon-explain"></i>说明:</div><p></p><ul><li>此接口需要联系 <a href="https://cloud.tencent.com/document/product/382/3773#.E6.8A.80.E6.9C.AF.E4.BA.A4.E6.B5.81">腾讯云短信小助手</a> 开通。</li><li>下发状态也支持 <a href="https://cloud.tencent.com/document/product/382/37809#.E7.9F.AD.E4.BF.A1.E7.8A.B6.E6.80.81.E5.9B.9E.E8.B0.83.E9.85.8D.E7.BD.AE">配置回调</a> 的方式获取。</li></ul></blockquote>
|
343
319
|
|
344
320
|
:param request: Request instance for PullSmsSendStatus.
|
345
321
|
:type request: :class:`tencentcloud.sms.v20210111.models.PullSmsSendStatusRequest`
|
@@ -362,10 +338,8 @@ class SmsClient(AbstractClient):
|
|
362
338
|
|
363
339
|
|
364
340
|
def PullSmsSendStatusByPhoneNumber(self, request):
|
365
|
-
"""
|
366
|
-
|
367
|
-
>- 注:由于云 **API3.0 安全性**有所提升,所以**接口鉴权**较为复杂,建议使用 SDK 来使用云短信服务。
|
368
|
-
>- 您可以在 [API 3.0 Explorer](https://console.cloud.tencent.com/api/explorer?Product=sms&Version=2021-01-11&Action=SendSms) 中直接运行该接口,可以先免去签名计算步骤。运行成功后,API Explorer可以**自动生成**SDK代码示例。
|
341
|
+
"""本接口 (PullSmsSendStatusByPhoneNumber) 用于拉取单个号码短信下发状态。
|
342
|
+
<blockquote class="d-mod-explain"><div class="d-mod-title d-explain-title" style="line-height: normal;"><i class="d-icon-explain"></i>说明:</div><p></p><ul><li>下发状态也支持 <a href="https://cloud.tencent.com/document/product/382/37809#.E7.9F.AD.E4.BF.A1.E7.8A.B6.E6.80.81.E5.9B.9E.E8.B0.83.E9.85.8D.E7.BD.AE">配置回调</a> 的方式获取。</li></ul></blockquote>
|
369
343
|
|
370
344
|
:param request: Request instance for PullSmsSendStatusByPhoneNumber.
|
371
345
|
:type request: :class:`tencentcloud.sms.v20210111.models.PullSmsSendStatusByPhoneNumberRequest`
|
@@ -388,8 +362,8 @@ class SmsClient(AbstractClient):
|
|
388
362
|
|
389
363
|
|
390
364
|
def ReportConversion(self, request):
|
391
|
-
"""
|
392
|
-
|
365
|
+
"""本接口 (ReportConversion) 用于短信转化率上报。将已接收到短信的流水号上报到腾讯云短信服务。
|
366
|
+
<blockquote class="d-mod-explain"><div class="d-mod-title d-explain-title" style="line-height: normal;"><i class="d-icon-explain"></i>说明:</div><p></p><ul><li>该接口当前以白名单方式对外开放,如有需要请联系 <a href="https://cloud.tencent.com/document/product/382/3773#.E6.8A.80.E6.9C.AF.E4.BA.A4.E6.B5.81">腾讯云短信小助手</a> 开通。</li></ul></blockquote>
|
393
367
|
|
394
368
|
:param request: Request instance for ReportConversion.
|
395
369
|
:type request: :class:`tencentcloud.sms.v20210111.models.ReportConversionRequest`
|
@@ -412,10 +386,8 @@ class SmsClient(AbstractClient):
|
|
412
386
|
|
413
387
|
|
414
388
|
def SendSms(self, request):
|
415
|
-
"""
|
416
|
-
|
417
|
-
>- 注:您可以在 [API 3.0 Explorer](https://console.cloud.tencent.com/api/explorer?Product=sms&Version=2021-01-11&Action=SendSms) 中直接运行该接口,可以先免去签名计算步骤。运行成功后,API Explorer可以**自动生成**SDK代码示例。
|
418
|
-
>- 注:当前接口属于 2021-01-11 版本,如果您仍在使用 [2019-07-11 版本](https://cloud.tencent.com/document/product/382/38778),建议您使用当前最新版本的接口,版本差异可参考[版本描述](https://cloud.tencent.com/document/product/382/63195#.E7.89.88.E6.9C.AC.E6.8F.8F.E8.BF.B0)。
|
389
|
+
"""本接口 (SendSms) 用于发送验证码、通知类短信和营销短信。支持国内短信与国际/港澳台短信。
|
390
|
+
- 当前接口属于 2021-01-11 版本,如果您仍在使用 [2019-07-11 版本](https://cloud.tencent.com/document/product/382/38778),建议您使用当前最新版本的接口,版本差异可参考[版本描述](https://cloud.tencent.com/document/product/382/63195#.E7.89.88.E6.9C.AC.E6.8F.8F.E8.BF.B0)。
|
419
391
|
|
420
392
|
:param request: Request instance for SendSms.
|
421
393
|
:type request: :class:`tencentcloud.sms.v20210111.models.SendSmsRequest`
|
@@ -438,9 +410,7 @@ class SmsClient(AbstractClient):
|
|
438
410
|
|
439
411
|
|
440
412
|
def SendStatusStatistics(self, request):
|
441
|
-
"""
|
442
|
-
>- 注:由于云 **API3.0 安全性**有所提升,所以**接口鉴权**较为复杂,建议使用 SDK 来使用云短信服务。
|
443
|
-
>- 您可以在 [API 3.0 Explorer](https://console.cloud.tencent.com/api/explorer?Product=sms&Version=2021-01-11&Action=SendSms) 中直接运行该接口,可以先免去签名计算步骤。运行成功后,API Explorer可以**自动生成**SDK代码示例。
|
413
|
+
"""本接口 (SendStatusStatistics) 用于统计用户发送短信的数据。
|
444
414
|
|
445
415
|
:param request: Request instance for SendStatusStatistics.
|
446
416
|
:type request: :class:`tencentcloud.sms.v20210111.models.SendStatusStatisticsRequest`
|
@@ -463,9 +433,7 @@ class SmsClient(AbstractClient):
|
|
463
433
|
|
464
434
|
|
465
435
|
def SmsPackagesStatistics(self, request):
|
466
|
-
"""
|
467
|
-
>- 注:由于云 **API3.0 安全性**有所提升,所以**接口鉴权**较为复杂,建议使用 SDK 来使用云短信服务。
|
468
|
-
>- 您可以在 [API 3.0 Explorer](https://console.cloud.tencent.com/api/explorer?Product=sms&Version=2021-01-11&Action=SendSms) 中直接运行该接口,可以先免去签名计算步骤。运行成功后,API Explorer可以**自动生成**SDK代码示例。
|
436
|
+
"""本接口 (SmsPackagesStatistics) 用于统计用户套餐包数据。
|
469
437
|
|
470
438
|
:param request: Request instance for SmsPackagesStatistics.
|
471
439
|
:type request: :class:`tencentcloud.sms.v20210111.models.SmsPackagesStatisticsRequest`
|