tencentcloud-sdk-python 3.0.1329__py2.py3-none-any.whl → 3.0.1331__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.
Files changed (34) hide show
  1. tencentcloud/__init__.py +1 -1
  2. tencentcloud/ams/v20201229/models.py +207 -14
  3. tencentcloud/batch/v20170312/models.py +2 -26
  4. tencentcloud/cfw/v20190904/cfw_client.py +9 -3
  5. tencentcloud/cvm/v20170312/models.py +37 -38
  6. tencentcloud/cynosdb/v20190107/models.py +23 -4
  7. tencentcloud/emr/v20190103/models.py +4 -4
  8. tencentcloud/ess/v20201111/ess_client.py +57 -0
  9. tencentcloud/ess/v20201111/models.py +406 -322
  10. tencentcloud/essbasic/v20210526/essbasic_client.py +57 -0
  11. tencentcloud/essbasic/v20210526/models.py +388 -238
  12. tencentcloud/ims/v20201229/models.py +157 -0
  13. tencentcloud/lcic/v20220817/models.py +12 -2
  14. tencentcloud/lighthouse/v20200324/models.py +12 -12
  15. tencentcloud/live/v20180801/models.py +0 -78
  16. tencentcloud/lke/v20231130/lke_client.py +23 -0
  17. tencentcloud/lke/v20231130/models.py +128 -4
  18. tencentcloud/lkeap/v20240522/lkeap_client.py +5 -1
  19. tencentcloud/ocr/v20181119/errorcodes.py +6 -0
  20. tencentcloud/rce/v20201103/models.py +16 -52
  21. tencentcloud/taf/v20200210/models.py +0 -2
  22. tencentcloud/teo/v20220901/models.py +18 -4
  23. tencentcloud/tione/v20211111/tione_client.py +3 -1
  24. tencentcloud/tke/v20180525/models.py +2 -178
  25. tencentcloud/trtc/v20190722/models.py +15 -0
  26. tencentcloud/tse/v20201207/models.py +153 -0
  27. tencentcloud/vm/v20201229/models.py +615 -68
  28. tencentcloud/vm/v20210922/models.py +737 -102
  29. tencentcloud/wedata/v20210820/models.py +19 -4
  30. {tencentcloud_sdk_python-3.0.1329.dist-info → tencentcloud_sdk_python-3.0.1331.dist-info}/METADATA +1 -1
  31. {tencentcloud_sdk_python-3.0.1329.dist-info → tencentcloud_sdk_python-3.0.1331.dist-info}/RECORD +34 -34
  32. {tencentcloud_sdk_python-3.0.1329.dist-info → tencentcloud_sdk_python-3.0.1331.dist-info}/LICENSE +0 -0
  33. {tencentcloud_sdk_python-3.0.1329.dist-info → tencentcloud_sdk_python-3.0.1331.dist-info}/WHEEL +0 -0
  34. {tencentcloud_sdk_python-3.0.1329.dist-info → tencentcloud_sdk_python-3.0.1331.dist-info}/top_level.txt +0 -0
@@ -205,20 +205,13 @@ class DataAuthorizationInfo(AbstractModel):
205
205
  r"""
206
206
  :param _DataProviderName: 数据委托方、需求方:客户主体名称。
207
207
  :type DataProviderName: str
208
- :param _DataRecipientName: 数据受托方、提供方:腾讯云主体名称。
209
-
210
- 固定填:腾讯云计算(北京)有限责任公司
208
+ :param _DataRecipientName: 数据受托方、提供方:腾讯云主体名称。固定填:腾讯云计算(北京)有限责任公司
211
209
  :type DataRecipientName: str
212
210
  :param _UserDataType: 客户请求RCE所提供的用户数据类型,支持多选。实际以接口请求传参为准。
213
-
214
211
  1-手机号;
215
-
216
212
  2-微信开放账号;
217
-
218
213
  3-QQ开放账号;
219
-
220
214
  4-IP地址;
221
-
222
215
  999-其它;
223
216
  :type UserDataType: list of int non-negative
224
217
  :param _IsAuthorize: 客户是否已按[合规指南](https://rule.tencent.com/rule/202409130001)要求获取用户授权,同意客户委托腾讯云处理入参信息
@@ -227,16 +220,11 @@ class DataAuthorizationInfo(AbstractModel):
227
220
  :param _IsOrderHandling: 客户是否已按[合规指南](https://rule.tencent.com/rule/202409130001)要求获取用户授权,同意腾讯云结合客户提供的信息,对已合法收集的用户数据进行必要处理得出服务结果,并返回给客户。
228
221
  1-已授权;其它值为未授权。
229
222
  :type IsOrderHandling: int
230
- :param _AuthorizationTerm: 客户获得的用户授权期限时间戳(单位秒)。
231
-
232
- 不填默认无固定期限。
223
+ :param _AuthorizationTerm: 客户获得的用户授权期限时间戳(单位秒)。不填默认无固定期限。
233
224
  :type AuthorizationTerm: int
234
- :param _PrivacyPolicyLink:
235
- 客户获得用户授权所依赖的协议地址。
225
+ :param _PrivacyPolicyLink: 客户获得用户授权所依赖的协议地址。
236
226
  :type PrivacyPolicyLink: str
237
- :param _IsPersonalData: 是否是用户个人敏感数据(不推荐使用)。
238
-
239
- 固定填:1。
227
+ :param _IsPersonalData: 是否是用户个人敏感数据(不推荐使用)。固定填:1。
240
228
  :type IsPersonalData: int
241
229
  """
242
230
  self._DataProviderName = None
@@ -261,9 +249,7 @@ class DataAuthorizationInfo(AbstractModel):
261
249
 
262
250
  @property
263
251
  def DataRecipientName(self):
264
- """数据受托方、提供方:腾讯云主体名称。
265
-
266
- 固定填:腾讯云计算(北京)有限责任公司
252
+ """数据受托方、提供方:腾讯云主体名称。固定填:腾讯云计算(北京)有限责任公司
267
253
  :rtype: str
268
254
  """
269
255
  return self._DataRecipientName
@@ -275,15 +261,10 @@ class DataAuthorizationInfo(AbstractModel):
275
261
  @property
276
262
  def UserDataType(self):
277
263
  """客户请求RCE所提供的用户数据类型,支持多选。实际以接口请求传参为准。
278
-
279
264
  1-手机号;
280
-
281
265
  2-微信开放账号;
282
-
283
266
  3-QQ开放账号;
284
-
285
267
  4-IP地址;
286
-
287
268
  999-其它;
288
269
  :rtype: list of int non-negative
289
270
  """
@@ -319,9 +300,7 @@ class DataAuthorizationInfo(AbstractModel):
319
300
 
320
301
  @property
321
302
  def AuthorizationTerm(self):
322
- """客户获得的用户授权期限时间戳(单位秒)。
323
-
324
- 不填默认无固定期限。
303
+ """客户获得的用户授权期限时间戳(单位秒)。不填默认无固定期限。
325
304
  :rtype: int
326
305
  """
327
306
  return self._AuthorizationTerm
@@ -332,8 +311,7 @@ class DataAuthorizationInfo(AbstractModel):
332
311
 
333
312
  @property
334
313
  def PrivacyPolicyLink(self):
335
- """
336
- 客户获得用户授权所依赖的协议地址。
314
+ """客户获得用户授权所依赖的协议地址。
337
315
  :rtype: str
338
316
  """
339
317
  return self._PrivacyPolicyLink
@@ -344,9 +322,7 @@ class DataAuthorizationInfo(AbstractModel):
344
322
 
345
323
  @property
346
324
  def IsPersonalData(self):
347
- """是否是用户个人敏感数据(不推荐使用)。
348
-
349
- 固定填:1。
325
+ """是否是用户个人敏感数据(不推荐使用)。固定填:1。
350
326
  :rtype: int
351
327
  """
352
328
  return self._IsPersonalData
@@ -1124,12 +1100,9 @@ class InputCryptoManageMarketingRisk(AbstractModel):
1124
1100
  def __init__(self):
1125
1101
  r"""
1126
1102
  :param _IsAuthorized: 是否授权:1已授权,否则未授权。
1127
- 调用全栈式风控引擎接口服务时,客户需先明确授权
1128
-
1129
-
1103
+ 调用全栈式风控引擎接口服务时,客户需先明确授权。
1130
1104
  :type IsAuthorized: str
1131
1105
  :param _CryptoType: 加密类型:1AES加密
1132
-
1133
1106
  :type CryptoType: str
1134
1107
  :param _CryptoContent: 加密内容,非空时接口采用加密模式。
1135
1108
  :type CryptoContent: str
@@ -1141,9 +1114,7 @@ class InputCryptoManageMarketingRisk(AbstractModel):
1141
1114
  @property
1142
1115
  def IsAuthorized(self):
1143
1116
  """是否授权:1已授权,否则未授权。
1144
- 调用全栈式风控引擎接口服务时,客户需先明确授权
1145
-
1146
-
1117
+ 调用全栈式风控引擎接口服务时,客户需先明确授权。
1147
1118
  :rtype: str
1148
1119
  """
1149
1120
  return self._IsAuthorized
@@ -1155,7 +1126,6 @@ class InputCryptoManageMarketingRisk(AbstractModel):
1155
1126
  @property
1156
1127
  def CryptoType(self):
1157
1128
  """加密类型:1AES加密
1158
-
1159
1129
  :rtype: str
1160
1130
  """
1161
1131
  return self._CryptoType
@@ -1690,7 +1660,6 @@ class InputManageMarketingRisk(AbstractModel):
1690
1660
  2:iOS
1691
1661
  3:H5
1692
1662
  4:小程序
1693
-
1694
1663
  :type Platform: str
1695
1664
  :param _DataAuthorization: 数据授权信息。
1696
1665
  :type DataAuthorization: :class:`tencentcloud.rce.v20201103.models.DataAuthorizationInfo`
@@ -1966,7 +1935,6 @@ class InputManageMarketingRisk(AbstractModel):
1966
1935
  2:iOS
1967
1936
  3:H5
1968
1937
  4:小程序
1969
-
1970
1938
  :rtype: str
1971
1939
  """
1972
1940
  return self._Platform
@@ -3671,12 +3639,11 @@ class OutputDescribeNameListFrontFixListData(AbstractModel):
3671
3639
 
3672
3640
  def __init__(self):
3673
3641
  r"""
3674
- :param _Code: 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
3675
-
3642
+ :param _Code: 错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误。
3676
3643
  :type Code: int
3677
- :param _Message: 错误信息
3644
+ :param _Message: 错误信息。
3678
3645
  :type Message: str
3679
- :param _Value: 黑白名单列表信息
3646
+ :param _Value: 黑白名单列表信息。
3680
3647
  :type Value: :class:`tencentcloud.rce.v20201103.models.OutputDescribeNameListInfo`
3681
3648
  """
3682
3649
  self._Code = None
@@ -3685,8 +3652,7 @@ class OutputDescribeNameListFrontFixListData(AbstractModel):
3685
3652
 
3686
3653
  @property
3687
3654
  def Code(self):
3688
- """错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误
3689
-
3655
+ """错误码,0 表示成功,非0表示失败错误码。 0:成功 1002:参数错误 4300:未开通服务 6000:系统内部错误。
3690
3656
  :rtype: int
3691
3657
  """
3692
3658
  return self._Code
@@ -3697,7 +3663,7 @@ class OutputDescribeNameListFrontFixListData(AbstractModel):
3697
3663
 
3698
3664
  @property
3699
3665
  def Message(self):
3700
- """错误信息
3666
+ """错误信息。
3701
3667
  :rtype: str
3702
3668
  """
3703
3669
  return self._Message
@@ -3708,7 +3674,7 @@ class OutputDescribeNameListFrontFixListData(AbstractModel):
3708
3674
 
3709
3675
  @property
3710
3676
  def Value(self):
3711
- """黑白名单列表信息
3677
+ """黑白名单列表信息。
3712
3678
  :rtype: :class:`tencentcloud.rce.v20201103.models.OutputDescribeNameListInfo`
3713
3679
  """
3714
3680
  return self._Value
@@ -4496,7 +4462,6 @@ class QQAccountInfo(AbstractModel):
4496
4462
  支持标准中国大陆11位手机号SHA256加密后位的64位小写字符串。
4497
4463
  :type MobilePhone: str
4498
4464
  :param _DeviceId: 用户设备号(已不推荐使用)。
4499
-
4500
4465
  :type DeviceId: str
4501
4466
  """
4502
4467
  self._QQOpenId = None
@@ -4554,7 +4519,6 @@ class QQAccountInfo(AbstractModel):
4554
4519
  @property
4555
4520
  def DeviceId(self):
4556
4521
  """用户设备号(已不推荐使用)。
4557
-
4558
4522
  :rtype: str
4559
4523
  """
4560
4524
  return self._DeviceId
@@ -94,7 +94,6 @@ class ManagePortraitRiskOutput(AbstractModel):
94
94
  :param _Code: 返回码(0,成功,其他失败)
95
95
  :type Code: int
96
96
  :param _Message: 返回码对应的信息
97
- 注意:此字段可能返回 null,表示取不到有效值。
98
97
  :type Message: str
99
98
  :param _Value: 结果
100
99
  注意:此字段可能返回 null,表示取不到有效值。
@@ -118,7 +117,6 @@ class ManagePortraitRiskOutput(AbstractModel):
118
117
  @property
119
118
  def Message(self):
120
119
  """返回码对应的信息
121
- 注意:此字段可能返回 null,表示取不到有效值。
122
120
  :rtype: str
123
121
  """
124
122
  return self._Message
@@ -13867,7 +13867,14 @@ class DescribeBillingDataRequest(AbstractModel):
13867
13867
  <li>quic_request: QUIC 请求,单位为次;</li>
13868
13868
  <li>bot_request_clean: Bot 请求,单位为次;</li>
13869
13869
  <li>cls_count: 实时日志推送条数,单位为条;</li>
13870
- <li>ddos_bandwidth: 弹性 DDoS 防护带宽,单位为 bps。</li>
13870
+ <li>ddos_bandwidth: 弹性 DDoS 防护带宽,单位为 bps;</li>
13871
+ <li>total_transcode:所有规格音频,视频即时转码,转封装时长,单位为秒;</li>
13872
+ <li>remux:转封装时长,单位为秒;</li>
13873
+ <li>transcode_audio:音频转码时长,单位为秒;</li>
13874
+ <li>transcode_H264_SD:H.264 编码方式的标清视频(短边 <= 480 px)时长,单位为秒;</li>
13875
+ <li>transcode_H264_HD:H.264 编码方式的高清视频(短边 <= 720 px)时长,单位为秒;</li>
13876
+ <li>transcode_H264_FHD:H.264 编码方式的全高清视频(短边 <= 1080 px)时长,单位为秒;</li>
13877
+ <li>transcode_H264_2K:H.264 编码方式的 2K 视频(短边 <= 1440 px)时长,单位为秒。</li>
13871
13878
  :type MetricName: str
13872
13879
  :param _Interval: 查询时间粒度,取值有:
13873
13880
  <li>5min:5 分钟粒度;</li>
@@ -13938,7 +13945,14 @@ class DescribeBillingDataRequest(AbstractModel):
13938
13945
  <li>quic_request: QUIC 请求,单位为次;</li>
13939
13946
  <li>bot_request_clean: Bot 请求,单位为次;</li>
13940
13947
  <li>cls_count: 实时日志推送条数,单位为条;</li>
13941
- <li>ddos_bandwidth: 弹性 DDoS 防护带宽,单位为 bps。</li>
13948
+ <li>ddos_bandwidth: 弹性 DDoS 防护带宽,单位为 bps;</li>
13949
+ <li>total_transcode:所有规格音频,视频即时转码,转封装时长,单位为秒;</li>
13950
+ <li>remux:转封装时长,单位为秒;</li>
13951
+ <li>transcode_audio:音频转码时长,单位为秒;</li>
13952
+ <li>transcode_H264_SD:H.264 编码方式的标清视频(短边 <= 480 px)时长,单位为秒;</li>
13953
+ <li>transcode_H264_HD:H.264 编码方式的高清视频(短边 <= 720 px)时长,单位为秒;</li>
13954
+ <li>transcode_H264_FHD:H.264 编码方式的全高清视频(短边 <= 1080 px)时长,单位为秒;</li>
13955
+ <li>transcode_H264_2K:H.264 编码方式的 2K 视频(短边 <= 1440 px)时长,单位为秒。</li>
13942
13956
  :rtype: str
13943
13957
  """
13944
13958
  return self._MetricName
@@ -20739,7 +20753,7 @@ class DescribeZonesRequest(AbstractModel):
20739
20753
  :param _Limit: 分页查询限制数目。默认值:20,最大值:100。
20740
20754
  :type Limit: int
20741
20755
  :param _Filters: 过滤条件,Filters.Values 的上限为 20。该参数不填写时,返回当前 appid 下有权限的所有站点信息。详细的过滤条件如下:
20742
- <li>zone-name:按照站点名称进行过滤;</li><li>zone-id:按照站点 ID进行过滤。站点 ID 形如:zone-2noz78a8ev6k;</li><li>status:按照站点状态进行过滤;</li><li>tag-key:按照标签键进行过滤;</li><li>tag-value: 按照标签值进行过滤。</li>模糊查询时仅支持过滤字段名为 zone-name。
20756
+ <li>zone-name:按照站点名称进行过滤;</li><li>zone-id:按照站点 ID进行过滤。站点 ID 形如:zone-2noz78a8ev6k;</li><li>status:按照站点状态进行过滤;</li><li>tag-key:按照标签键进行过滤;</li><li>tag-value: 按照标签值进行过滤。</li><li>alias-zone-name: 按照同名站点标识进行过滤。</li>模糊查询时支持过滤字段名为 zone-name 或 alias-zone-name
20743
20757
  :type Filters: list of AdvancedFilter
20744
20758
  :param _Order: 可根据该字段对返回结果进行排序,取值有:
20745
20759
  <li> type:接入类型;</li>
@@ -20785,7 +20799,7 @@ class DescribeZonesRequest(AbstractModel):
20785
20799
  @property
20786
20800
  def Filters(self):
20787
20801
  """过滤条件,Filters.Values 的上限为 20。该参数不填写时,返回当前 appid 下有权限的所有站点信息。详细的过滤条件如下:
20788
- <li>zone-name:按照站点名称进行过滤;</li><li>zone-id:按照站点 ID进行过滤。站点 ID 形如:zone-2noz78a8ev6k;</li><li>status:按照站点状态进行过滤;</li><li>tag-key:按照标签键进行过滤;</li><li>tag-value: 按照标签值进行过滤。</li>模糊查询时仅支持过滤字段名为 zone-name。
20802
+ <li>zone-name:按照站点名称进行过滤;</li><li>zone-id:按照站点 ID进行过滤。站点 ID 形如:zone-2noz78a8ev6k;</li><li>status:按照站点状态进行过滤;</li><li>tag-key:按照标签键进行过滤;</li><li>tag-value: 按照标签值进行过滤。</li><li>alias-zone-name: 按照同名站点标识进行过滤。</li>模糊查询时支持过滤字段名为 zone-name 或 alias-zone-name
20789
20803
  :rtype: list of AdvancedFilter
20790
20804
  """
20791
20805
  return self._Filters
@@ -464,7 +464,9 @@ class TioneClient(AbstractClient):
464
464
 
465
465
 
466
466
  def DescribeInferTemplates(self, request):
467
- """查询推理镜像模板
467
+ """已废弃,收敛到统一接口
468
+
469
+ 查询推理镜像模板
468
470
 
469
471
  :param request: Request instance for DescribeInferTemplates.
470
472
  :type request: :class:`tencentcloud.tione.v20211111.models.DescribeInferTemplatesRequest`