tencentcloud-sdk-python 3.0.1331__py2.py3-none-any.whl → 3.0.1333__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.
@@ -2019,11 +2019,14 @@ class CreateDisasterRecoverGroupRequest(AbstractModel):
2019
2019
  :type ClientToken: str
2020
2020
  :param _Affinity: 置放群组的亲和度,在置放群组的实例会按该亲和度分布,亲和度的取值范围是:1-10,默认为1
2021
2021
  :type Affinity: int
2022
+ :param _TagSpecification: 标签描述列表。通过指定该参数可以绑定标签到置放群组。
2023
+ :type TagSpecification: list of TagSpecification
2022
2024
  """
2023
2025
  self._Name = None
2024
2026
  self._Type = None
2025
2027
  self._ClientToken = None
2026
2028
  self._Affinity = None
2029
+ self._TagSpecification = None
2027
2030
 
2028
2031
  @property
2029
2032
  def Name(self):
@@ -2069,12 +2072,29 @@ class CreateDisasterRecoverGroupRequest(AbstractModel):
2069
2072
  def Affinity(self, Affinity):
2070
2073
  self._Affinity = Affinity
2071
2074
 
2075
+ @property
2076
+ def TagSpecification(self):
2077
+ """标签描述列表。通过指定该参数可以绑定标签到置放群组。
2078
+ :rtype: list of TagSpecification
2079
+ """
2080
+ return self._TagSpecification
2081
+
2082
+ @TagSpecification.setter
2083
+ def TagSpecification(self, TagSpecification):
2084
+ self._TagSpecification = TagSpecification
2085
+
2072
2086
 
2073
2087
  def _deserialize(self, params):
2074
2088
  self._Name = params.get("Name")
2075
2089
  self._Type = params.get("Type")
2076
2090
  self._ClientToken = params.get("ClientToken")
2077
2091
  self._Affinity = params.get("Affinity")
2092
+ if params.get("TagSpecification") is not None:
2093
+ self._TagSpecification = []
2094
+ for item in params.get("TagSpecification"):
2095
+ obj = TagSpecification()
2096
+ obj._deserialize(item)
2097
+ self._TagSpecification.append(obj)
2078
2098
  memeber_set = set(params.keys())
2079
2099
  for name, value in vars(self).items():
2080
2100
  property_name = name[1:]
@@ -4976,11 +4996,18 @@ class DescribeDisasterRecoverGroupsRequest(AbstractModel):
4976
4996
  :type Offset: int
4977
4997
  :param _Limit: 返回数量,默认为20,最大值为100。关于`Limit`的更进一步介绍请参考 API [简介](https://cloud.tencent.com/document/api/213/15688)中的相关小节。
4978
4998
  :type Limit: int
4999
+ :param _Filters: <li><strong>tag-key</strong></li>
5000
+ <p style="padding-left: 30px;">按照【<strong>标签键</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
5001
+ <li><strong>tag-value</strong></li> <p style="padding-left: 30px;">按照【<strong>标签值</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
5002
+ <li><strong>tag:tag-key</strong></li> <p style="padding-left: 30px;">按照【<strong>标签键值对</strong>】进行过滤。tag-key使用具体的标签键进行替换。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
5003
+ 每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。
5004
+ :type Filters: list of Filter
4979
5005
  """
4980
5006
  self._DisasterRecoverGroupIds = None
4981
5007
  self._Name = None
4982
5008
  self._Offset = None
4983
5009
  self._Limit = None
5010
+ self._Filters = None
4984
5011
 
4985
5012
  @property
4986
5013
  def DisasterRecoverGroupIds(self):
@@ -5026,12 +5053,33 @@ class DescribeDisasterRecoverGroupsRequest(AbstractModel):
5026
5053
  def Limit(self, Limit):
5027
5054
  self._Limit = Limit
5028
5055
 
5056
+ @property
5057
+ def Filters(self):
5058
+ """<li><strong>tag-key</strong></li>
5059
+ <p style="padding-left: 30px;">按照【<strong>标签键</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
5060
+ <li><strong>tag-value</strong></li> <p style="padding-left: 30px;">按照【<strong>标签值</strong>】进行过滤。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
5061
+ <li><strong>tag:tag-key</strong></li> <p style="padding-left: 30px;">按照【<strong>标签键值对</strong>】进行过滤。tag-key使用具体的标签键进行替换。</p><p style="padding-left: 30px;">类型:String</p><p style="padding-left: 30px;">必选:否</p>
5062
+ 每次请求的`Filters`的上限为10,`Filter.Values`的上限为5。
5063
+ :rtype: list of Filter
5064
+ """
5065
+ return self._Filters
5066
+
5067
+ @Filters.setter
5068
+ def Filters(self, Filters):
5069
+ self._Filters = Filters
5070
+
5029
5071
 
5030
5072
  def _deserialize(self, params):
5031
5073
  self._DisasterRecoverGroupIds = params.get("DisasterRecoverGroupIds")
5032
5074
  self._Name = params.get("Name")
5033
5075
  self._Offset = params.get("Offset")
5034
5076
  self._Limit = params.get("Limit")
5077
+ if params.get("Filters") is not None:
5078
+ self._Filters = []
5079
+ for item in params.get("Filters"):
5080
+ obj = Filter()
5081
+ obj._deserialize(item)
5082
+ self._Filters.append(obj)
5035
5083
  memeber_set = set(params.keys())
5036
5084
  for name, value in vars(self).items():
5037
5085
  property_name = name[1:]
@@ -8301,11 +8349,11 @@ class DisasterRecoverGroup(AbstractModel):
8301
8349
  :param _CurrentNum: 分散置放群组内云服务器当前数量。
8302
8350
  :type CurrentNum: int
8303
8351
  :param _InstanceIds: 分散置放群组内,云服务器id列表。
8304
- 注意:此字段可能返回 null,表示取不到有效值。
8305
8352
  :type InstanceIds: list of str
8306
8353
  :param _CreateTime: 分散置放群组创建时间。
8307
- 注意:此字段可能返回 null,表示取不到有效值。
8308
8354
  :type CreateTime: str
8355
+ :param _Tags: 置放群组关联的标签列表。
8356
+ :type Tags: list of Tag
8309
8357
  """
8310
8358
  self._DisasterRecoverGroupId = None
8311
8359
  self._Name = None
@@ -8314,6 +8362,7 @@ class DisasterRecoverGroup(AbstractModel):
8314
8362
  self._CurrentNum = None
8315
8363
  self._InstanceIds = None
8316
8364
  self._CreateTime = None
8365
+ self._Tags = None
8317
8366
 
8318
8367
  @property
8319
8368
  def DisasterRecoverGroupId(self):
@@ -8376,7 +8425,6 @@ class DisasterRecoverGroup(AbstractModel):
8376
8425
  @property
8377
8426
  def InstanceIds(self):
8378
8427
  """分散置放群组内,云服务器id列表。
8379
- 注意:此字段可能返回 null,表示取不到有效值。
8380
8428
  :rtype: list of str
8381
8429
  """
8382
8430
  return self._InstanceIds
@@ -8388,7 +8436,6 @@ class DisasterRecoverGroup(AbstractModel):
8388
8436
  @property
8389
8437
  def CreateTime(self):
8390
8438
  """分散置放群组创建时间。
8391
- 注意:此字段可能返回 null,表示取不到有效值。
8392
8439
  :rtype: str
8393
8440
  """
8394
8441
  return self._CreateTime
@@ -8397,6 +8444,17 @@ class DisasterRecoverGroup(AbstractModel):
8397
8444
  def CreateTime(self, CreateTime):
8398
8445
  self._CreateTime = CreateTime
8399
8446
 
8447
+ @property
8448
+ def Tags(self):
8449
+ """置放群组关联的标签列表。
8450
+ :rtype: list of Tag
8451
+ """
8452
+ return self._Tags
8453
+
8454
+ @Tags.setter
8455
+ def Tags(self, Tags):
8456
+ self._Tags = Tags
8457
+
8400
8458
 
8401
8459
  def _deserialize(self, params):
8402
8460
  self._DisasterRecoverGroupId = params.get("DisasterRecoverGroupId")
@@ -8406,6 +8464,12 @@ class DisasterRecoverGroup(AbstractModel):
8406
8464
  self._CurrentNum = params.get("CurrentNum")
8407
8465
  self._InstanceIds = params.get("InstanceIds")
8408
8466
  self._CreateTime = params.get("CreateTime")
8467
+ if params.get("Tags") is not None:
8468
+ self._Tags = []
8469
+ for item in params.get("Tags"):
8470
+ obj = Tag()
8471
+ obj._deserialize(item)
8472
+ self._Tags.append(obj)
8409
8473
  memeber_set = set(params.keys())
8410
8474
  for name, value in vars(self).items():
8411
8475
  property_name = name[1:]
@@ -1459,6 +1459,29 @@ class EmrClient(AbstractClient):
1459
1459
  raise TencentCloudSDKException(type(e).__name__, str(e))
1460
1460
 
1461
1461
 
1462
+ def ModifySLInstanceBasic(self, request):
1463
+ """serverless hbase修改实例名称
1464
+
1465
+ :param request: Request instance for ModifySLInstanceBasic.
1466
+ :type request: :class:`tencentcloud.emr.v20190103.models.ModifySLInstanceBasicRequest`
1467
+ :rtype: :class:`tencentcloud.emr.v20190103.models.ModifySLInstanceBasicResponse`
1468
+
1469
+ """
1470
+ try:
1471
+ params = request._serialize()
1472
+ headers = request.headers
1473
+ body = self.call("ModifySLInstanceBasic", params, headers=headers)
1474
+ response = json.loads(body)
1475
+ model = models.ModifySLInstanceBasicResponse()
1476
+ model._deserialize(response["Response"])
1477
+ return model
1478
+ except Exception as e:
1479
+ if isinstance(e, TencentCloudSDKException):
1480
+ raise
1481
+ else:
1482
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1483
+
1484
+
1462
1485
  def ModifyUserManagerPwd(self, request):
1463
1486
  """修改用户密码(用户管理)
1464
1487
 
@@ -20871,6 +20871,85 @@ class ModifyResourcesTagsResponse(AbstractModel):
20871
20871
  self._RequestId = params.get("RequestId")
20872
20872
 
20873
20873
 
20874
+ class ModifySLInstanceBasicRequest(AbstractModel):
20875
+ """ModifySLInstanceBasic请求参数结构体
20876
+
20877
+ """
20878
+
20879
+ def __init__(self):
20880
+ r"""
20881
+ :param _InstanceId: 集群实例ID
20882
+ :type InstanceId: str
20883
+ :param _ClusterName: 实例名称
20884
+ :type ClusterName: str
20885
+ """
20886
+ self._InstanceId = None
20887
+ self._ClusterName = None
20888
+
20889
+ @property
20890
+ def InstanceId(self):
20891
+ """集群实例ID
20892
+ :rtype: str
20893
+ """
20894
+ return self._InstanceId
20895
+
20896
+ @InstanceId.setter
20897
+ def InstanceId(self, InstanceId):
20898
+ self._InstanceId = InstanceId
20899
+
20900
+ @property
20901
+ def ClusterName(self):
20902
+ """实例名称
20903
+ :rtype: str
20904
+ """
20905
+ return self._ClusterName
20906
+
20907
+ @ClusterName.setter
20908
+ def ClusterName(self, ClusterName):
20909
+ self._ClusterName = ClusterName
20910
+
20911
+
20912
+ def _deserialize(self, params):
20913
+ self._InstanceId = params.get("InstanceId")
20914
+ self._ClusterName = params.get("ClusterName")
20915
+ memeber_set = set(params.keys())
20916
+ for name, value in vars(self).items():
20917
+ property_name = name[1:]
20918
+ if property_name in memeber_set:
20919
+ memeber_set.remove(property_name)
20920
+ if len(memeber_set) > 0:
20921
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
20922
+
20923
+
20924
+
20925
+ class ModifySLInstanceBasicResponse(AbstractModel):
20926
+ """ModifySLInstanceBasic返回参数结构体
20927
+
20928
+ """
20929
+
20930
+ def __init__(self):
20931
+ r"""
20932
+ :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
20933
+ :type RequestId: str
20934
+ """
20935
+ self._RequestId = None
20936
+
20937
+ @property
20938
+ def RequestId(self):
20939
+ """唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
20940
+ :rtype: str
20941
+ """
20942
+ return self._RequestId
20943
+
20944
+ @RequestId.setter
20945
+ def RequestId(self, RequestId):
20946
+ self._RequestId = RequestId
20947
+
20948
+
20949
+ def _deserialize(self, params):
20950
+ self._RequestId = params.get("RequestId")
20951
+
20952
+
20874
20953
  class ModifySLInstanceRequest(AbstractModel):
20875
20954
  """ModifySLInstance请求参数结构体
20876
20955
 
@@ -2324,7 +2324,7 @@ class EssbasicClient(AbstractClient):
2324
2324
  def CreateSealByImage(self, request):
2325
2325
  """1. 可以**通过图片**为子客企业代创建印章,图片最大5MB
2326
2326
 
2327
- 2. 可以**系统创建**子客企业代创建印章, 系统创建的印章样子下图(样式可以调整)
2327
+ 2. 可以使用**系统生成印章**为子客企业代创建印章, 系统创建的印章样子下图(样式可以调整)
2328
2328
 
2329
2329
  ![image](https://dyn.ess.tencent.cn/guide/capi/CreateSealByImage.png)
2330
2330
 
@@ -8216,7 +8216,7 @@ class DescribeStorageCredentialRequest(AbstractModel):
8216
8216
 
8217
8217
  def __init__(self):
8218
8218
  r"""
8219
- :param _BotBizId: 应用ID
8219
+ :param _BotBizId: 应用ID,参数非必填不代表不需要填写,下面不同的参数组合会获取到不同的权限,具体请参考 https://cloud.tencent.com/document/product/1759/116238
8220
8220
  :type BotBizId: str
8221
8221
  :param _FileType: 文件类型,正常的文件名类型后缀,例如 xlsx、pdf、 docx、png 等
8222
8222
  :type FileType: str
@@ -8233,7 +8233,7 @@ class DescribeStorageCredentialRequest(AbstractModel):
8233
8233
 
8234
8234
  @property
8235
8235
  def BotBizId(self):
8236
- """应用ID
8236
+ """应用ID,参数非必填不代表不需要填写,下面不同的参数组合会获取到不同的权限,具体请参考 https://cloud.tencent.com/document/product/1759/116238
8237
8237
  :rtype: str
8238
8238
  """
8239
8239
  return self._BotBizId
@@ -3635,7 +3635,11 @@ class AiAnalysisTaskInput(AbstractModel):
3635
3635
  :param _Definition: 视频内容分析模板 ID。
3636
3636
  :type Definition: int
3637
3637
  :param _ExtendedParameter: 扩展参数,其值为序列化的 json字符串。
3638
- 注意:此参数为定制需求参数,需要线下对接。
3638
+ 注意:此参数为定制需求参数,参考如下:
3639
+ 智能檫除:https://cloud.tencent.com/document/product/862/101530
3640
+ 智能拆条:https://cloud.tencent.com/document/product/862/112098
3641
+ 高光集锦:https://cloud.tencent.com/document/product/862/107280
3642
+ 智能横转竖:https://cloud.tencent.com/document/product/862/112112
3639
3643
  注意:此字段可能返回 null,表示取不到有效值。
3640
3644
  :type ExtendedParameter: str
3641
3645
  """
@@ -3656,7 +3660,11 @@ class AiAnalysisTaskInput(AbstractModel):
3656
3660
  @property
3657
3661
  def ExtendedParameter(self):
3658
3662
  """扩展参数,其值为序列化的 json字符串。
3659
- 注意:此参数为定制需求参数,需要线下对接。
3663
+ 注意:此参数为定制需求参数,参考如下:
3664
+ 智能檫除:https://cloud.tencent.com/document/product/862/101530
3665
+ 智能拆条:https://cloud.tencent.com/document/product/862/112098
3666
+ 高光集锦:https://cloud.tencent.com/document/product/862/107280
3667
+ 智能横转竖:https://cloud.tencent.com/document/product/862/112112
3660
3668
  注意:此字段可能返回 null,表示取不到有效值。
3661
3669
  :rtype: str
3662
3670
  """
@@ -29456,6 +29464,9 @@ class DrmInfo(AbstractModel):
29456
29464
  r"""
29457
29465
  :param _Type: 加密类型:
29458
29466
  <li> simpleaes: aes-128 加密</li>
29467
+ <li> widevine</li>
29468
+ <li> fairplay:Dash不支持fairplay加密</li>
29469
+ <li> playready</li>
29459
29470
  注意:此字段可能返回 null,表示取不到有效值。
29460
29471
  :type Type: str
29461
29472
  :param _SimpleAesDrm: SimpleAes 加密信息。
@@ -29469,6 +29480,9 @@ class DrmInfo(AbstractModel):
29469
29480
  def Type(self):
29470
29481
  """加密类型:
29471
29482
  <li> simpleaes: aes-128 加密</li>
29483
+ <li> widevine</li>
29484
+ <li> fairplay:Dash不支持fairplay加密</li>
29485
+ <li> playready</li>
29472
29486
  注意:此字段可能返回 null,表示取不到有效值。
29473
29487
  :rtype: str
29474
29488
  """
@@ -47703,6 +47717,8 @@ class ProcessMediaRequest(AbstractModel):
47703
47717
  <li> Online:实时任务</li>
47704
47718
  <li> Offline:闲时任务,不保证实效性,默认3天内处理完</li>
47705
47719
  :type TaskType: str
47720
+ :param _ResourceId: 资源ID,需要保证对应资源是开启状态。默认为帐号主资源ID。
47721
+ :type ResourceId: str
47706
47722
  """
47707
47723
  self._InputInfo = None
47708
47724
  self._OutputStorage = None
@@ -47718,6 +47734,7 @@ class ProcessMediaRequest(AbstractModel):
47718
47734
  self._SessionId = None
47719
47735
  self._SessionContext = None
47720
47736
  self._TaskType = None
47737
+ self._ResourceId = None
47721
47738
 
47722
47739
  @property
47723
47740
  def InputInfo(self):
@@ -47884,6 +47901,17 @@ class ProcessMediaRequest(AbstractModel):
47884
47901
  def TaskType(self, TaskType):
47885
47902
  self._TaskType = TaskType
47886
47903
 
47904
+ @property
47905
+ def ResourceId(self):
47906
+ """资源ID,需要保证对应资源是开启状态。默认为帐号主资源ID。
47907
+ :rtype: str
47908
+ """
47909
+ return self._ResourceId
47910
+
47911
+ @ResourceId.setter
47912
+ def ResourceId(self, ResourceId):
47913
+ self._ResourceId = ResourceId
47914
+
47887
47915
 
47888
47916
  def _deserialize(self, params):
47889
47917
  if params.get("InputInfo") is not None:
@@ -47916,6 +47944,7 @@ class ProcessMediaRequest(AbstractModel):
47916
47944
  self._SessionId = params.get("SessionId")
47917
47945
  self._SessionContext = params.get("SessionContext")
47918
47946
  self._TaskType = params.get("TaskType")
47947
+ self._ResourceId = params.get("ResourceId")
47919
47948
  memeber_set = set(params.keys())
47920
47949
  for name, value in vars(self).items():
47921
47950
  property_name = name[1:]
@@ -10154,7 +10154,7 @@ class CreateZoneRequest(AbstractModel):
10154
10154
  :type Area: str
10155
10155
  :param _PlanId: 待绑定的目标套餐 ID。当您账号下已存在套餐时,可以填写此参数,直接将站点绑定至该套餐。若您当前没有可绑定的套餐时,请前往控制台购买套餐完成站点创建。
10156
10156
  :type PlanId: str
10157
- :param _AliasZoneName: 同名站点标识。限制输入数字、英文、- 和 _ 组合,长度 20 个字符以内。详情参考 [同名站点标识](https://cloud.tencent.com/document/product/1552/70202),无此使用场景时,该字段保留为空即可。
10157
+ :param _AliasZoneName: 同名站点标识。限制输入数字、英文、"." 、"-" "_",长度 200 个字符以内。详情参考 [同名站点标识](https://cloud.tencent.com/document/product/1552/70202),无此使用场景时,该字段保留为空即可。
10158
10158
  :type AliasZoneName: str
10159
10159
  :param _Tags: 标签。该参数用于对站点进行分权限管控、分账。需要先前往 [标签控制台](https://console.cloud.tencent.com/tag/taglist) 创建对应的标签才可以在此处传入对应的标签键和标签值。
10160
10160
  :type Tags: list of Tag
@@ -10227,7 +10227,7 @@ class CreateZoneRequest(AbstractModel):
10227
10227
 
10228
10228
  @property
10229
10229
  def AliasZoneName(self):
10230
- """同名站点标识。限制输入数字、英文、- 和 _ 组合,长度 20 个字符以内。详情参考 [同名站点标识](https://cloud.tencent.com/document/product/1552/70202),无此使用场景时,该字段保留为空即可。
10230
+ """同名站点标识。限制输入数字、英文、"." 、"-" "_",长度 200 个字符以内。详情参考 [同名站点标识](https://cloud.tencent.com/document/product/1552/70202),无此使用场景时,该字段保留为空即可。
10231
10231
  :rtype: str
10232
10232
  """
10233
10233
  return self._AliasZoneName
@@ -31721,7 +31721,7 @@ class ModifyZoneRequest(AbstractModel):
31721
31721
  :type Type: str
31722
31722
  :param _VanityNameServers: 自定义站点信息,以替代系统默认分配的名称服务器。不填写保持原有配置。当站点是无域名接入方式时不允许传此参数。
31723
31723
  :type VanityNameServers: :class:`tencentcloud.teo.v20220901.models.VanityNameServers`
31724
- :param _AliasZoneName: 站点别名。数字、英文、-和_组合,限制20个字符。
31724
+ :param _AliasZoneName: 同名站点标识。限制输入数字、英文、"." 、"-" 和 "_",长度 200 个字符以内。
31725
31725
  :type AliasZoneName: str
31726
31726
  :param _Area: 站点接入地域,取值有:
31727
31727
  <li> global:全球;</li>
@@ -31776,7 +31776,7 @@ class ModifyZoneRequest(AbstractModel):
31776
31776
 
31777
31777
  @property
31778
31778
  def AliasZoneName(self):
31779
- """站点别名。数字、英文、-和_组合,限制20个字符。
31779
+ """同名站点标识。限制输入数字、英文、"." 、"-" 和 "_",长度 200 个字符以内。
31780
31780
  :rtype: str
31781
31781
  """
31782
31782
  return self._AliasZoneName
@@ -5142,10 +5142,8 @@ class DescribeCodePacksResponse(AbstractModel):
5142
5142
  def __init__(self):
5143
5143
  r"""
5144
5144
  :param _CodePacks: 码列表
5145
- 注意:此字段可能返回 null,表示取不到有效值。
5146
5145
  :type CodePacks: list of CodePack
5147
5146
  :param _TotalCount: 总数
5148
- 注意:此字段可能返回 null,表示取不到有效值。
5149
5147
  :type TotalCount: int
5150
5148
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5151
5149
  :type RequestId: str
@@ -5157,7 +5155,6 @@ class DescribeCodePacksResponse(AbstractModel):
5157
5155
  @property
5158
5156
  def CodePacks(self):
5159
5157
  """码列表
5160
- 注意:此字段可能返回 null,表示取不到有效值。
5161
5158
  :rtype: list of CodePack
5162
5159
  """
5163
5160
  return self._CodePacks
@@ -5169,7 +5166,6 @@ class DescribeCodePacksResponse(AbstractModel):
5169
5166
  @property
5170
5167
  def TotalCount(self):
5171
5168
  """总数
5172
- 注意:此字段可能返回 null,表示取不到有效值。
5173
5169
  :rtype: int
5174
5170
  """
5175
5171
  return self._TotalCount
@@ -8059,7 +8055,6 @@ class Job(AbstractModel):
8059
8055
  :param _Status: 执行状态 init:初始化, pending: 执行中, done: 执行成功, error: 执行失败
8060
8056
  :type Status: str
8061
8057
  :param _ErrorMessage: 任务错误信息
8062
- 注意:此字段可能返回 null,表示取不到有效值。
8063
8058
  :type ErrorMessage: str
8064
8059
  """
8065
8060
  self._JobId = None
@@ -8091,7 +8086,6 @@ class Job(AbstractModel):
8091
8086
  @property
8092
8087
  def ErrorMessage(self):
8093
8088
  """任务错误信息
8094
- 注意:此字段可能返回 null,表示取不到有效值。
8095
8089
  :rtype: str
8096
8090
  """
8097
8091
  return self._ErrorMessage
@@ -872,9 +872,9 @@ class AdaptiveDynamicStreamingTaskInput(AbstractModel):
872
872
  :type Definition: int
873
873
  :param _WatermarkSet: 水印列表,支持多张图片或文字水印,最大可支持 10 张。
874
874
  :type WatermarkSet: list of WatermarkInput
875
- :param _TraceWatermark: 溯源水印,该功能已不再支持使用。
875
+ :param _TraceWatermark: 溯源水印。
876
876
  :type TraceWatermark: :class:`tencentcloud.vod.v20180717.models.TraceWatermarkInput`
877
- :param _CopyRightWatermark: 版权水印,该功能已不再支持使用。
877
+ :param _CopyRightWatermark: 版权水印。
878
878
  :type CopyRightWatermark: :class:`tencentcloud.vod.v20180717.models.CopyRightWatermarkInput`
879
879
  :param _SubtitleSet: 字幕列表,元素为字幕 ID,支持多个字幕,最大可支持16个。
880
880
  :type SubtitleSet: list of str
@@ -909,7 +909,7 @@ class AdaptiveDynamicStreamingTaskInput(AbstractModel):
909
909
 
910
910
  @property
911
911
  def TraceWatermark(self):
912
- """溯源水印,该功能已不再支持使用。
912
+ """溯源水印。
913
913
  :rtype: :class:`tencentcloud.vod.v20180717.models.TraceWatermarkInput`
914
914
  """
915
915
  return self._TraceWatermark
@@ -920,7 +920,7 @@ class AdaptiveDynamicStreamingTaskInput(AbstractModel):
920
920
 
921
921
  @property
922
922
  def CopyRightWatermark(self):
923
- """版权水印,该功能已不再支持使用。
923
+ """版权水印。
924
924
  :rtype: :class:`tencentcloud.vod.v20180717.models.CopyRightWatermarkInput`
925
925
  """
926
926
  return self._CopyRightWatermark
@@ -71788,9 +71788,9 @@ class TranscodeTaskInput(AbstractModel):
71788
71788
  :type Definition: int
71789
71789
  :param _WatermarkSet: 水印列表,支持多张图片或文字水印,最大可支持 10 张。
71790
71790
  :type WatermarkSet: list of WatermarkInput
71791
- :param _TraceWatermark: 溯源水印,该功能已不再支持使用。
71791
+ :param _TraceWatermark: 溯源水印。
71792
71792
  :type TraceWatermark: :class:`tencentcloud.vod.v20180717.models.TraceWatermarkInput`
71793
- :param _CopyRightWatermark: 版权水印,该功能已不再支持使用。
71793
+ :param _CopyRightWatermark: 版权水印。
71794
71794
  :type CopyRightWatermark: :class:`tencentcloud.vod.v20180717.models.CopyRightWatermarkInput`
71795
71795
  :param _MosaicSet: 马赛克列表,最大可支持 10 张。
71796
71796
  :type MosaicSet: list of MosaicInput
@@ -71840,7 +71840,7 @@ class TranscodeTaskInput(AbstractModel):
71840
71840
 
71841
71841
  @property
71842
71842
  def TraceWatermark(self):
71843
- """溯源水印,该功能已不再支持使用。
71843
+ """溯源水印。
71844
71844
  :rtype: :class:`tencentcloud.vod.v20180717.models.TraceWatermarkInput`
71845
71845
  """
71846
71846
  return self._TraceWatermark
@@ -71851,7 +71851,7 @@ class TranscodeTaskInput(AbstractModel):
71851
71851
 
71852
71852
  @property
71853
71853
  def CopyRightWatermark(self):
71854
- """版权水印,该功能已不再支持使用。
71854
+ """版权水印。
71855
71855
  :rtype: :class:`tencentcloud.vod.v20180717.models.CopyRightWatermarkInput`
71856
71856
  """
71857
71857
  return self._CopyRightWatermark
@@ -2916,7 +2916,7 @@ class VodClient(AbstractClient):
2916
2916
 
2917
2917
 
2918
2918
  def ExtractCopyRightWatermark(self, request):
2919
- """ API 已经<font color='red'>不再维护</font>。如果有盗录溯源需求,请参考 [幽灵水印](https://cloud.tencent.com/document/product/266/94228)。
2919
+ """如果有盗录溯源需求,请参考 [幽灵水印](https://cloud.tencent.com/document/product/266/94228)。
2920
2920
 
2921
2921
  :param request: Request instance for ExtractCopyRightWatermark.
2922
2922
  :type request: :class:`tencentcloud.vod.v20180717.models.ExtractCopyRightWatermarkRequest`
@@ -2939,7 +2939,7 @@ class VodClient(AbstractClient):
2939
2939
 
2940
2940
 
2941
2941
  def ExtractTraceWatermark(self, request):
2942
- """ API 已经<font color='red'>不再维护</font>。如果有盗录溯源需求,请参考 [幽灵水印](https://cloud.tencent.com/document/product/266/94228)。
2942
+ """如果有盗录溯源需求,推荐使用 [幽灵水印](https://cloud.tencent.com/document/product/266/94228)。
2943
2943
 
2944
2944
  :param request: Request instance for ExtractTraceWatermark.
2945
2945
  :type request: :class:`tencentcloud.vod.v20180717.models.ExtractTraceWatermarkRequest`
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python
3
- Version: 3.0.1331
3
+ Version: 3.0.1333
4
4
  Summary: Tencent Cloud SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud