tencentcloud-sdk-python 3.0.1150__py2.py3-none-any.whl → 3.0.1152__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/cdn/v20180606/models.py +22 -0
- tencentcloud/dlc/v20210125/dlc_client.py +23 -0
- tencentcloud/dlc/v20210125/models.py +204 -0
- tencentcloud/dsgc/v20190723/models.py +4 -9
- tencentcloud/iotexplorer/v20190423/models.py +50 -0
- tencentcloud/mps/v20190612/models.py +13 -10
- tencentcloud/ocr/v20181119/models.py +60 -0
- tencentcloud/sms/v20210111/models.py +4 -2
- tencentcloud/teo/v20220901/models.py +5 -5
- tencentcloud/tione/v20211111/models.py +115 -3
- tencentcloud/tke/v20180525/models.py +4 -6
- tencentcloud/tmt/v20180321/models.py +8 -0
- tencentcloud/trtc/v20190722/errorcodes.py +3 -0
- tencentcloud/trtc/v20190722/models.py +458 -0
- tencentcloud/trtc/v20190722/trtc_client.py +92 -0
- tencentcloud/tsf/v20180326/models.py +143 -1
- tencentcloud/tsf/v20180326/tsf_client.py +46 -0
- {tencentcloud_sdk_python-3.0.1150.dist-info → tencentcloud_sdk_python-3.0.1152.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1150.dist-info → tencentcloud_sdk_python-3.0.1152.dist-info}/RECORD +23 -23
- {tencentcloud_sdk_python-3.0.1150.dist-info → tencentcloud_sdk_python-3.0.1152.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1150.dist-info → tencentcloud_sdk_python-3.0.1152.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1150.dist-info → tencentcloud_sdk_python-3.0.1152.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -3016,8 +3016,21 @@ on:开启
|
|
3016
3016
|
off:关闭
|
3017
3017
|
注意:此字段可能返回 null,表示取不到有效值。
|
3018
3018
|
:type Switch: str
|
3019
|
+
:param _FallbackFormats: 当原图是 avif 且客户端 Accept 头包含 image/avif 时,直接返回原图。
|
3020
|
+
当原图是 avif 且客户端 Accept 头不包含 image/avif 时但包含 image/webp,将 avif 转 webp 格式返回。如果 Accept 头不包含 image/webp, 则转 jpeg 返回。
|
3021
|
+
|
3022
|
+
可用的枚举值:
|
3023
|
+
- []
|
3024
|
+
- ["webp"]
|
3025
|
+
- ["jpeg"]
|
3026
|
+
- ["webp", "jpeg"]
|
3027
|
+
|
3028
|
+
"webp":是否开启 avif 转 webp,"jpeg": 是否开启 avif 转 jpeg。如果 webp 和 jpeg 都开启的情况下,webp 必须在 jpeg 前面。
|
3029
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3030
|
+
:type FallbackFormats: list of str
|
3019
3031
|
"""
|
3020
3032
|
self._Switch = None
|
3033
|
+
self._FallbackFormats = None
|
3021
3034
|
|
3022
3035
|
@property
|
3023
3036
|
def Switch(self):
|
@@ -3027,9 +3040,18 @@ off:关闭
|
|
3027
3040
|
def Switch(self, Switch):
|
3028
3041
|
self._Switch = Switch
|
3029
3042
|
|
3043
|
+
@property
|
3044
|
+
def FallbackFormats(self):
|
3045
|
+
return self._FallbackFormats
|
3046
|
+
|
3047
|
+
@FallbackFormats.setter
|
3048
|
+
def FallbackFormats(self, FallbackFormats):
|
3049
|
+
self._FallbackFormats = FallbackFormats
|
3050
|
+
|
3030
3051
|
|
3031
3052
|
def _deserialize(self, params):
|
3032
3053
|
self._Switch = params.get("Switch")
|
3054
|
+
self._FallbackFormats = params.get("FallbackFormats")
|
3033
3055
|
memeber_set = set(params.keys())
|
3034
3056
|
for name, value in vars(self).items():
|
3035
3057
|
property_name = name[1:]
|
@@ -1866,6 +1866,29 @@ class DlcClient(AbstractClient):
|
|
1866
1866
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1867
1867
|
|
1868
1868
|
|
1869
|
+
def DescribeTaskLog(self, request):
|
1870
|
+
"""本接口(DescribeTaskLog)用于获取spark 作业任务日志详情
|
1871
|
+
|
1872
|
+
:param request: Request instance for DescribeTaskLog.
|
1873
|
+
:type request: :class:`tencentcloud.dlc.v20210125.models.DescribeTaskLogRequest`
|
1874
|
+
:rtype: :class:`tencentcloud.dlc.v20210125.models.DescribeTaskLogResponse`
|
1875
|
+
|
1876
|
+
"""
|
1877
|
+
try:
|
1878
|
+
params = request._serialize()
|
1879
|
+
headers = request.headers
|
1880
|
+
body = self.call("DescribeTaskLog", params, headers=headers)
|
1881
|
+
response = json.loads(body)
|
1882
|
+
model = models.DescribeTaskLogResponse()
|
1883
|
+
model._deserialize(response["Response"])
|
1884
|
+
return model
|
1885
|
+
except Exception as e:
|
1886
|
+
if isinstance(e, TencentCloudSDKException):
|
1887
|
+
raise
|
1888
|
+
else:
|
1889
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1890
|
+
|
1891
|
+
|
1869
1892
|
def DescribeTaskResult(self, request):
|
1870
1893
|
"""查询任务结果
|
1871
1894
|
|
@@ -13734,6 +13734,210 @@ class DescribeTablesResponse(AbstractModel):
|
|
13734
13734
|
self._RequestId = params.get("RequestId")
|
13735
13735
|
|
13736
13736
|
|
13737
|
+
class DescribeTaskLogRequest(AbstractModel):
|
13738
|
+
"""DescribeTaskLog请求参数结构体
|
13739
|
+
|
13740
|
+
"""
|
13741
|
+
|
13742
|
+
def __init__(self):
|
13743
|
+
r"""
|
13744
|
+
:param _TaskId: 列表返回的Id
|
13745
|
+
:type TaskId: str
|
13746
|
+
:param _StartTime: 开始运行时间,unix时间戳(毫秒)
|
13747
|
+
:type StartTime: int
|
13748
|
+
:param _EndTime: 结束运行时间,unix时间戳(毫秒)
|
13749
|
+
:type EndTime: int
|
13750
|
+
:param _Limit: 分页大小,最大1000,配合Context一起使用
|
13751
|
+
:type Limit: int
|
13752
|
+
:param _Context: 下一次分页参数,第一次传空。透传上次接口返回的Context值,可获取后续更多日志,总计最多可获取1万条原始日志,过期时间1小时。
|
13753
|
+
:type Context: str
|
13754
|
+
:param _Asc: 是否升序排列,true:升序排序,false:倒序,默认false,倒序排列
|
13755
|
+
:type Asc: bool
|
13756
|
+
:param _Filters: 预览日志的通用过滤条件
|
13757
|
+
:type Filters: list of Filter
|
13758
|
+
:param _BatchId: SparkSQL任务唯一ID
|
13759
|
+
:type BatchId: str
|
13760
|
+
"""
|
13761
|
+
self._TaskId = None
|
13762
|
+
self._StartTime = None
|
13763
|
+
self._EndTime = None
|
13764
|
+
self._Limit = None
|
13765
|
+
self._Context = None
|
13766
|
+
self._Asc = None
|
13767
|
+
self._Filters = None
|
13768
|
+
self._BatchId = None
|
13769
|
+
|
13770
|
+
@property
|
13771
|
+
def TaskId(self):
|
13772
|
+
return self._TaskId
|
13773
|
+
|
13774
|
+
@TaskId.setter
|
13775
|
+
def TaskId(self, TaskId):
|
13776
|
+
self._TaskId = TaskId
|
13777
|
+
|
13778
|
+
@property
|
13779
|
+
def StartTime(self):
|
13780
|
+
return self._StartTime
|
13781
|
+
|
13782
|
+
@StartTime.setter
|
13783
|
+
def StartTime(self, StartTime):
|
13784
|
+
self._StartTime = StartTime
|
13785
|
+
|
13786
|
+
@property
|
13787
|
+
def EndTime(self):
|
13788
|
+
return self._EndTime
|
13789
|
+
|
13790
|
+
@EndTime.setter
|
13791
|
+
def EndTime(self, EndTime):
|
13792
|
+
self._EndTime = EndTime
|
13793
|
+
|
13794
|
+
@property
|
13795
|
+
def Limit(self):
|
13796
|
+
return self._Limit
|
13797
|
+
|
13798
|
+
@Limit.setter
|
13799
|
+
def Limit(self, Limit):
|
13800
|
+
self._Limit = Limit
|
13801
|
+
|
13802
|
+
@property
|
13803
|
+
def Context(self):
|
13804
|
+
return self._Context
|
13805
|
+
|
13806
|
+
@Context.setter
|
13807
|
+
def Context(self, Context):
|
13808
|
+
self._Context = Context
|
13809
|
+
|
13810
|
+
@property
|
13811
|
+
def Asc(self):
|
13812
|
+
return self._Asc
|
13813
|
+
|
13814
|
+
@Asc.setter
|
13815
|
+
def Asc(self, Asc):
|
13816
|
+
self._Asc = Asc
|
13817
|
+
|
13818
|
+
@property
|
13819
|
+
def Filters(self):
|
13820
|
+
return self._Filters
|
13821
|
+
|
13822
|
+
@Filters.setter
|
13823
|
+
def Filters(self, Filters):
|
13824
|
+
self._Filters = Filters
|
13825
|
+
|
13826
|
+
@property
|
13827
|
+
def BatchId(self):
|
13828
|
+
return self._BatchId
|
13829
|
+
|
13830
|
+
@BatchId.setter
|
13831
|
+
def BatchId(self, BatchId):
|
13832
|
+
self._BatchId = BatchId
|
13833
|
+
|
13834
|
+
|
13835
|
+
def _deserialize(self, params):
|
13836
|
+
self._TaskId = params.get("TaskId")
|
13837
|
+
self._StartTime = params.get("StartTime")
|
13838
|
+
self._EndTime = params.get("EndTime")
|
13839
|
+
self._Limit = params.get("Limit")
|
13840
|
+
self._Context = params.get("Context")
|
13841
|
+
self._Asc = params.get("Asc")
|
13842
|
+
if params.get("Filters") is not None:
|
13843
|
+
self._Filters = []
|
13844
|
+
for item in params.get("Filters"):
|
13845
|
+
obj = Filter()
|
13846
|
+
obj._deserialize(item)
|
13847
|
+
self._Filters.append(obj)
|
13848
|
+
self._BatchId = params.get("BatchId")
|
13849
|
+
memeber_set = set(params.keys())
|
13850
|
+
for name, value in vars(self).items():
|
13851
|
+
property_name = name[1:]
|
13852
|
+
if property_name in memeber_set:
|
13853
|
+
memeber_set.remove(property_name)
|
13854
|
+
if len(memeber_set) > 0:
|
13855
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
13856
|
+
|
13857
|
+
|
13858
|
+
|
13859
|
+
class DescribeTaskLogResponse(AbstractModel):
|
13860
|
+
"""DescribeTaskLog返回参数结构体
|
13861
|
+
|
13862
|
+
"""
|
13863
|
+
|
13864
|
+
def __init__(self):
|
13865
|
+
r"""
|
13866
|
+
:param _Context: 下一次分页参数
|
13867
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13868
|
+
:type Context: str
|
13869
|
+
:param _ListOver: 是否获取完结
|
13870
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13871
|
+
:type ListOver: bool
|
13872
|
+
:param _Results: 日志详情
|
13873
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13874
|
+
:type Results: list of JobLogResult
|
13875
|
+
:param _LogUrl: 日志url
|
13876
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13877
|
+
:type LogUrl: str
|
13878
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
13879
|
+
:type RequestId: str
|
13880
|
+
"""
|
13881
|
+
self._Context = None
|
13882
|
+
self._ListOver = None
|
13883
|
+
self._Results = None
|
13884
|
+
self._LogUrl = None
|
13885
|
+
self._RequestId = None
|
13886
|
+
|
13887
|
+
@property
|
13888
|
+
def Context(self):
|
13889
|
+
return self._Context
|
13890
|
+
|
13891
|
+
@Context.setter
|
13892
|
+
def Context(self, Context):
|
13893
|
+
self._Context = Context
|
13894
|
+
|
13895
|
+
@property
|
13896
|
+
def ListOver(self):
|
13897
|
+
return self._ListOver
|
13898
|
+
|
13899
|
+
@ListOver.setter
|
13900
|
+
def ListOver(self, ListOver):
|
13901
|
+
self._ListOver = ListOver
|
13902
|
+
|
13903
|
+
@property
|
13904
|
+
def Results(self):
|
13905
|
+
return self._Results
|
13906
|
+
|
13907
|
+
@Results.setter
|
13908
|
+
def Results(self, Results):
|
13909
|
+
self._Results = Results
|
13910
|
+
|
13911
|
+
@property
|
13912
|
+
def LogUrl(self):
|
13913
|
+
return self._LogUrl
|
13914
|
+
|
13915
|
+
@LogUrl.setter
|
13916
|
+
def LogUrl(self, LogUrl):
|
13917
|
+
self._LogUrl = LogUrl
|
13918
|
+
|
13919
|
+
@property
|
13920
|
+
def RequestId(self):
|
13921
|
+
return self._RequestId
|
13922
|
+
|
13923
|
+
@RequestId.setter
|
13924
|
+
def RequestId(self, RequestId):
|
13925
|
+
self._RequestId = RequestId
|
13926
|
+
|
13927
|
+
|
13928
|
+
def _deserialize(self, params):
|
13929
|
+
self._Context = params.get("Context")
|
13930
|
+
self._ListOver = params.get("ListOver")
|
13931
|
+
if params.get("Results") is not None:
|
13932
|
+
self._Results = []
|
13933
|
+
for item in params.get("Results"):
|
13934
|
+
obj = JobLogResult()
|
13935
|
+
obj._deserialize(item)
|
13936
|
+
self._Results.append(obj)
|
13937
|
+
self._LogUrl = params.get("LogUrl")
|
13938
|
+
self._RequestId = params.get("RequestId")
|
13939
|
+
|
13940
|
+
|
13737
13941
|
class DescribeTaskResultRequest(AbstractModel):
|
13738
13942
|
"""DescribeTaskResult请求参数结构体
|
13739
13943
|
|
@@ -948,7 +948,7 @@ class AssessmentTask(AbstractModel):
|
|
948
948
|
|
949
949
|
|
950
950
|
class AssessmentTemplate(AbstractModel):
|
951
|
-
"""DSPA
|
951
|
+
"""DSPA评估模板
|
952
952
|
|
953
953
|
"""
|
954
954
|
|
@@ -3055,13 +3055,13 @@ class CreateDSPAAssessmentRiskTemplateRequest(AbstractModel):
|
|
3055
3055
|
r"""
|
3056
3056
|
:param _DspaId: dspa实例id
|
3057
3057
|
:type DspaId: str
|
3058
|
-
:param _TemplateName:
|
3058
|
+
:param _TemplateName: 模板名称
|
3059
3059
|
:type TemplateName: str
|
3060
3060
|
:param _RiskLevelId: 风险等级id
|
3061
3061
|
:type RiskLevelId: int
|
3062
3062
|
:param _RiskIdList: 风险id列表
|
3063
3063
|
:type RiskIdList: list of int
|
3064
|
-
:param _TemplateDescription:
|
3064
|
+
:param _TemplateDescription: 模板描述
|
3065
3065
|
:type TemplateDescription: str
|
3066
3066
|
"""
|
3067
3067
|
self._DspaId = None
|
@@ -10796,12 +10796,7 @@ class DescribeDSPAAssessmentTemplatesRequest(AbstractModel):
|
|
10796
10796
|
:type Offset: int
|
10797
10797
|
:param _Limit: 结果集个数限制。默认为20,最大值为100
|
10798
10798
|
:type Limit: int
|
10799
|
-
:param _Filters:
|
10800
|
-
支持模糊搜索:(TemplateId,TemplateName)
|
10801
|
-
支持过滤:
|
10802
|
-
Source:模版来源,system / user
|
10803
|
-
UseType:模版类型,auto,semi-auto,law等
|
10804
|
-
Status:模版启用状态,draft / launched
|
10799
|
+
:param _Filters: 过滤项。支持模糊搜索:(TemplateId,TemplateName)支持过滤:Source:模板来源,system / userUseType:模板类型,auto,semi-auto,law等Status:模板启用状态,draft / launched
|
10805
10800
|
:type Filters: list of DspaAssessmentFilter
|
10806
10801
|
"""
|
10807
10802
|
self._DspaId = None
|
@@ -2644,6 +2644,10 @@ class CreateStudioProductRequest(AbstractModel):
|
|
2644
2644
|
:type ProductDesc: str
|
2645
2645
|
:param _ProjectId: 产品的项目ID
|
2646
2646
|
:type ProjectId: str
|
2647
|
+
:param _Rate: 平均传输速率
|
2648
|
+
:type Rate: str
|
2649
|
+
:param _Period: 期限
|
2650
|
+
:type Period: str
|
2647
2651
|
"""
|
2648
2652
|
self._ProductName = None
|
2649
2653
|
self._CategoryId = None
|
@@ -2653,6 +2657,8 @@ class CreateStudioProductRequest(AbstractModel):
|
|
2653
2657
|
self._DataProtocol = None
|
2654
2658
|
self._ProductDesc = None
|
2655
2659
|
self._ProjectId = None
|
2660
|
+
self._Rate = None
|
2661
|
+
self._Period = None
|
2656
2662
|
|
2657
2663
|
@property
|
2658
2664
|
def ProductName(self):
|
@@ -2718,6 +2724,22 @@ class CreateStudioProductRequest(AbstractModel):
|
|
2718
2724
|
def ProjectId(self, ProjectId):
|
2719
2725
|
self._ProjectId = ProjectId
|
2720
2726
|
|
2727
|
+
@property
|
2728
|
+
def Rate(self):
|
2729
|
+
return self._Rate
|
2730
|
+
|
2731
|
+
@Rate.setter
|
2732
|
+
def Rate(self, Rate):
|
2733
|
+
self._Rate = Rate
|
2734
|
+
|
2735
|
+
@property
|
2736
|
+
def Period(self):
|
2737
|
+
return self._Period
|
2738
|
+
|
2739
|
+
@Period.setter
|
2740
|
+
def Period(self, Period):
|
2741
|
+
self._Period = Period
|
2742
|
+
|
2721
2743
|
|
2722
2744
|
def _deserialize(self, params):
|
2723
2745
|
self._ProductName = params.get("ProductName")
|
@@ -2728,6 +2750,8 @@ class CreateStudioProductRequest(AbstractModel):
|
|
2728
2750
|
self._DataProtocol = params.get("DataProtocol")
|
2729
2751
|
self._ProductDesc = params.get("ProductDesc")
|
2730
2752
|
self._ProjectId = params.get("ProjectId")
|
2753
|
+
self._Rate = params.get("Rate")
|
2754
|
+
self._Period = params.get("Period")
|
2731
2755
|
memeber_set = set(params.keys())
|
2732
2756
|
for name, value in vars(self).items():
|
2733
2757
|
property_name = name[1:]
|
@@ -15885,6 +15909,12 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
|
|
15885
15909
|
:param _DeviceCount: 设备数量
|
15886
15910
|
注意:此字段可能返回 null,表示取不到有效值。
|
15887
15911
|
:type DeviceCount: int
|
15912
|
+
:param _Rate: 平均传输速率
|
15913
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
15914
|
+
:type Rate: str
|
15915
|
+
:param _Period: 有效期
|
15916
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
15917
|
+
:type Period: str
|
15888
15918
|
"""
|
15889
15919
|
self._ProductId = None
|
15890
15920
|
self._ProductName = None
|
@@ -15905,6 +15935,8 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
|
|
15905
15935
|
self._CreatorNickName = None
|
15906
15936
|
self._BindStrategy = None
|
15907
15937
|
self._DeviceCount = None
|
15938
|
+
self._Rate = None
|
15939
|
+
self._Period = None
|
15908
15940
|
|
15909
15941
|
@property
|
15910
15942
|
def ProductId(self):
|
@@ -16058,6 +16090,22 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
|
|
16058
16090
|
def DeviceCount(self, DeviceCount):
|
16059
16091
|
self._DeviceCount = DeviceCount
|
16060
16092
|
|
16093
|
+
@property
|
16094
|
+
def Rate(self):
|
16095
|
+
return self._Rate
|
16096
|
+
|
16097
|
+
@Rate.setter
|
16098
|
+
def Rate(self, Rate):
|
16099
|
+
self._Rate = Rate
|
16100
|
+
|
16101
|
+
@property
|
16102
|
+
def Period(self):
|
16103
|
+
return self._Period
|
16104
|
+
|
16105
|
+
@Period.setter
|
16106
|
+
def Period(self, Period):
|
16107
|
+
self._Period = Period
|
16108
|
+
|
16061
16109
|
|
16062
16110
|
def _deserialize(self, params):
|
16063
16111
|
self._ProductId = params.get("ProductId")
|
@@ -16079,6 +16127,8 @@ wifi、wifi-ble、cellular、5g、lorawan、ble、ethernet、wifi-ethernet、els
|
|
16079
16127
|
self._CreatorNickName = params.get("CreatorNickName")
|
16080
16128
|
self._BindStrategy = params.get("BindStrategy")
|
16081
16129
|
self._DeviceCount = params.get("DeviceCount")
|
16130
|
+
self._Rate = params.get("Rate")
|
16131
|
+
self._Period = params.get("Period")
|
16082
16132
|
memeber_set = set(params.keys())
|
16083
16133
|
for name, value in vars(self).items():
|
16084
16134
|
property_name = name[1:]
|
@@ -409,6 +409,9 @@ class Activity(AbstractModel):
|
|
409
409
|
<li>action-image-sprite:雪碧图</li>
|
410
410
|
<li>action-snapshotByTimeOffset: 时间点截图</li>
|
411
411
|
<li>action-adaptive-substream:自适应码流</li>
|
412
|
+
|
413
|
+
|
414
|
+
|
412
415
|
注意:此字段可能返回 null,表示取不到有效值。
|
413
416
|
:type ActivityType: str
|
414
417
|
:param _ReardriveIndex: 后驱节点索引数组
|
@@ -1367,7 +1370,7 @@ class AiAnalysisResult(AbstractModel):
|
|
1367
1370
|
<li>Tag:智能标签</li>
|
1368
1371
|
<li>FrameTag:智能按帧标签</li>
|
1369
1372
|
<li>Highlight:智能精彩集锦</li>
|
1370
|
-
<li>DeLogo
|
1373
|
+
<li>DeLogo:智能擦除</li>
|
1371
1374
|
<li>Description:大模型摘要</li>
|
1372
1375
|
:type Type: str
|
1373
1376
|
:param _ClassificationTask: 视频内容分析智能分类任务的查询结果,当任务类型为 Classification 时有效。
|
@@ -1385,7 +1388,7 @@ class AiAnalysisResult(AbstractModel):
|
|
1385
1388
|
:param _HighlightTask: 视频内容分析集锦任务的查询结果,当任务类型为 Highlight时有效。
|
1386
1389
|
注意:此字段可能返回 null,表示取不到有效值。
|
1387
1390
|
:type HighlightTask: :class:`tencentcloud.mps.v20190612.models.AiAnalysisTaskHighlightResult`
|
1388
|
-
:param _DeLogoTask:
|
1391
|
+
:param _DeLogoTask: 视频内容分析智能擦除任务的查询结果,当任务类型为 DeLogo 时有效。
|
1389
1392
|
注意:此字段可能返回 null,表示取不到有效值。
|
1390
1393
|
:type DeLogoTask: :class:`tencentcloud.mps.v20190612.models.AiAnalysisTaskDelLogoResult`
|
1391
1394
|
:param _HeadTailTask: 视频内容分析片头片尾任务的查询结果,当任务类型为 HeadTailRecognition 时有效。
|
@@ -1867,13 +1870,13 @@ class AiAnalysisTaskCoverResult(AbstractModel):
|
|
1867
1870
|
|
1868
1871
|
|
1869
1872
|
class AiAnalysisTaskDelLogoInput(AbstractModel):
|
1870
|
-
"""
|
1873
|
+
"""智能擦除任务输入类型
|
1871
1874
|
|
1872
1875
|
"""
|
1873
1876
|
|
1874
1877
|
def __init__(self):
|
1875
1878
|
r"""
|
1876
|
-
:param _Definition:
|
1879
|
+
:param _Definition: 视频智能擦除模板 ID。
|
1877
1880
|
:type Definition: int
|
1878
1881
|
"""
|
1879
1882
|
self._Definition = None
|
@@ -1900,15 +1903,15 @@ class AiAnalysisTaskDelLogoInput(AbstractModel):
|
|
1900
1903
|
|
1901
1904
|
|
1902
1905
|
class AiAnalysisTaskDelLogoOutput(AbstractModel):
|
1903
|
-
"""
|
1906
|
+
"""智能擦除结果信息
|
1904
1907
|
|
1905
1908
|
"""
|
1906
1909
|
|
1907
1910
|
def __init__(self):
|
1908
1911
|
r"""
|
1909
|
-
:param _Path:
|
1912
|
+
:param _Path: 擦除后文件的路径。
|
1910
1913
|
:type Path: str
|
1911
|
-
:param _OutputStorage:
|
1914
|
+
:param _OutputStorage: 擦除后文件的存储位置。
|
1912
1915
|
:type OutputStorage: :class:`tencentcloud.mps.v20190612.models.TaskOutputStorage`
|
1913
1916
|
"""
|
1914
1917
|
self._Path = None
|
@@ -1947,7 +1950,7 @@ class AiAnalysisTaskDelLogoOutput(AbstractModel):
|
|
1947
1950
|
|
1948
1951
|
|
1949
1952
|
class AiAnalysisTaskDelLogoResult(AbstractModel):
|
1950
|
-
"""
|
1953
|
+
"""智能擦除结果类型
|
1951
1954
|
|
1952
1955
|
"""
|
1953
1956
|
|
@@ -1959,9 +1962,9 @@ class AiAnalysisTaskDelLogoResult(AbstractModel):
|
|
1959
1962
|
:type ErrCode: int
|
1960
1963
|
:param _Message: 错误信息。
|
1961
1964
|
:type Message: str
|
1962
|
-
:param _Input:
|
1965
|
+
:param _Input: 智能擦除任务输入。
|
1963
1966
|
:type Input: :class:`tencentcloud.mps.v20190612.models.AiAnalysisTaskDelLogoInput`
|
1964
|
-
:param _Output:
|
1967
|
+
:param _Output: 智能擦除任务输出。
|
1965
1968
|
注意:此字段可能返回 null,表示取不到有效值。
|
1966
1969
|
:type Output: :class:`tencentcloud.mps.v20190612.models.AiAnalysisTaskDelLogoOutput`
|
1967
1970
|
"""
|
@@ -18849,8 +18849,18 @@ class RecognizeThaiIDCardOCRResponse(AbstractModel):
|
|
18849
18849
|
:type IssueDate: str
|
18850
18850
|
:param _ExpirationDate: 泰文到期日期
|
18851
18851
|
:type ExpirationDate: str
|
18852
|
+
:param _EnIssueDate: 英文签发日期
|
18853
|
+
:type EnIssueDate: str
|
18854
|
+
:param _EnExpirationDate: 英文到期日期
|
18855
|
+
:type EnExpirationDate: str
|
18852
18856
|
:param _Birthday: 泰文出生日期
|
18853
18857
|
:type Birthday: str
|
18858
|
+
:param _EnBirthday: 英文出生日期
|
18859
|
+
:type EnBirthday: str
|
18860
|
+
:param _Religion: 宗教信仰
|
18861
|
+
:type Religion: str
|
18862
|
+
:param _SerialNumber: 序列号
|
18863
|
+
:type SerialNumber: str
|
18854
18864
|
:param _Address: 地址
|
18855
18865
|
:type Address: str
|
18856
18866
|
:param _PortraitImage: 证件人像照片抠取
|
@@ -18872,7 +18882,12 @@ class RecognizeThaiIDCardOCRResponse(AbstractModel):
|
|
18872
18882
|
self._EnLastName = None
|
18873
18883
|
self._IssueDate = None
|
18874
18884
|
self._ExpirationDate = None
|
18885
|
+
self._EnIssueDate = None
|
18886
|
+
self._EnExpirationDate = None
|
18875
18887
|
self._Birthday = None
|
18888
|
+
self._EnBirthday = None
|
18889
|
+
self._Religion = None
|
18890
|
+
self._SerialNumber = None
|
18876
18891
|
self._Address = None
|
18877
18892
|
self._PortraitImage = None
|
18878
18893
|
self._WarnCardInfos = None
|
@@ -18926,6 +18941,22 @@ class RecognizeThaiIDCardOCRResponse(AbstractModel):
|
|
18926
18941
|
def ExpirationDate(self, ExpirationDate):
|
18927
18942
|
self._ExpirationDate = ExpirationDate
|
18928
18943
|
|
18944
|
+
@property
|
18945
|
+
def EnIssueDate(self):
|
18946
|
+
return self._EnIssueDate
|
18947
|
+
|
18948
|
+
@EnIssueDate.setter
|
18949
|
+
def EnIssueDate(self, EnIssueDate):
|
18950
|
+
self._EnIssueDate = EnIssueDate
|
18951
|
+
|
18952
|
+
@property
|
18953
|
+
def EnExpirationDate(self):
|
18954
|
+
return self._EnExpirationDate
|
18955
|
+
|
18956
|
+
@EnExpirationDate.setter
|
18957
|
+
def EnExpirationDate(self, EnExpirationDate):
|
18958
|
+
self._EnExpirationDate = EnExpirationDate
|
18959
|
+
|
18929
18960
|
@property
|
18930
18961
|
def Birthday(self):
|
18931
18962
|
return self._Birthday
|
@@ -18934,6 +18965,30 @@ class RecognizeThaiIDCardOCRResponse(AbstractModel):
|
|
18934
18965
|
def Birthday(self, Birthday):
|
18935
18966
|
self._Birthday = Birthday
|
18936
18967
|
|
18968
|
+
@property
|
18969
|
+
def EnBirthday(self):
|
18970
|
+
return self._EnBirthday
|
18971
|
+
|
18972
|
+
@EnBirthday.setter
|
18973
|
+
def EnBirthday(self, EnBirthday):
|
18974
|
+
self._EnBirthday = EnBirthday
|
18975
|
+
|
18976
|
+
@property
|
18977
|
+
def Religion(self):
|
18978
|
+
return self._Religion
|
18979
|
+
|
18980
|
+
@Religion.setter
|
18981
|
+
def Religion(self, Religion):
|
18982
|
+
self._Religion = Religion
|
18983
|
+
|
18984
|
+
@property
|
18985
|
+
def SerialNumber(self):
|
18986
|
+
return self._SerialNumber
|
18987
|
+
|
18988
|
+
@SerialNumber.setter
|
18989
|
+
def SerialNumber(self, SerialNumber):
|
18990
|
+
self._SerialNumber = SerialNumber
|
18991
|
+
|
18937
18992
|
@property
|
18938
18993
|
def Address(self):
|
18939
18994
|
return self._Address
|
@@ -18974,7 +19029,12 @@ class RecognizeThaiIDCardOCRResponse(AbstractModel):
|
|
18974
19029
|
self._EnLastName = params.get("EnLastName")
|
18975
19030
|
self._IssueDate = params.get("IssueDate")
|
18976
19031
|
self._ExpirationDate = params.get("ExpirationDate")
|
19032
|
+
self._EnIssueDate = params.get("EnIssueDate")
|
19033
|
+
self._EnExpirationDate = params.get("EnExpirationDate")
|
18977
19034
|
self._Birthday = params.get("Birthday")
|
19035
|
+
self._EnBirthday = params.get("EnBirthday")
|
19036
|
+
self._Religion = params.get("Religion")
|
19037
|
+
self._SerialNumber = params.get("SerialNumber")
|
18978
19038
|
self._Address = params.get("Address")
|
18979
19039
|
self._PortraitImage = params.get("PortraitImage")
|
18980
19040
|
self._WarnCardInfos = params.get("WarnCardInfos")
|
@@ -242,7 +242,8 @@ class AddSmsTemplateRequest(AbstractModel):
|
|
242
242
|
:type TemplateName: str
|
243
243
|
:param _TemplateContent: 模板内容。
|
244
244
|
:type TemplateContent: str
|
245
|
-
:param _SmsType: 短信类型,
|
245
|
+
:param _SmsType: 短信类型,1表示营销短信,2表示通知短信,3表示验证码短信。
|
246
|
+
注:原“普通短信”类型模板目前仍支持提交申请,但为进一步提升短信发送质量、提高短信模板审核通过率,建议按“通知短信”类型或“验证码短信”类型申请新增模板,可参考[关于腾讯云短信模板类型优化公告](https://cloud.tencent.com/document/product/382/106171)。
|
246
247
|
:type SmsType: int
|
247
248
|
:param _International: 是否国际/港澳台短信:
|
248
249
|
0:表示国内短信。
|
@@ -1593,7 +1594,8 @@ class ModifySmsTemplateRequest(AbstractModel):
|
|
1593
1594
|
:type TemplateName: str
|
1594
1595
|
:param _TemplateContent: 新的模板内容。
|
1595
1596
|
:type TemplateContent: str
|
1596
|
-
:param _SmsType: 短信类型,
|
1597
|
+
:param _SmsType: 短信类型,1表示营销短信,2表示通知短信,3表示验证码短信。
|
1598
|
+
注:原“普通短信”类型模板目前仍支持提交申请,为进一步提升短信发送质量、提高短信模板审核通过率,建议按“通知短信”类型或“验证码短信”类型申请新增模板,可参考[关于腾讯云短信模板类型优化公告](https://cloud.tencent.com/document/product/382/106171)。
|
1597
1599
|
:type SmsType: int
|
1598
1600
|
:param _International: 是否国际/港澳台短信:
|
1599
1601
|
0:表示国内短信。
|
@@ -15286,9 +15286,9 @@ class Https(AbstractModel):
|
|
15286
15286
|
注意:此字段可能返回 null,表示取不到有效值。
|
15287
15287
|
:type ApplyType: str
|
15288
15288
|
:param _CipherSuite: 密码套件,取值有:
|
15289
|
-
<li>loose-v2023
|
15290
|
-
<li>general-v2023
|
15291
|
-
<li>strict-v2023
|
15289
|
+
<li>loose-v2023:提供高兼容性,安全性一般,支持 TLS 1.0-1.3 密码套件;</li>
|
15290
|
+
<li>general-v2023:提供较高兼容性,安全性中等,支持 TLS 1.2-1.3 密码套件;</li>
|
15291
|
+
<li>strict-v2023:提供高安全性能,禁用所有含不安全隐患的加密套件,支持 TLS 1.2-1.3 密码套件。</li>
|
15292
15292
|
注意:此字段可能返回 null,表示取不到有效值。
|
15293
15293
|
:type CipherSuite: str
|
15294
15294
|
"""
|
@@ -19958,7 +19958,7 @@ class OriginDetail(AbstractModel):
|
|
19958
19958
|
<li>COS:腾讯云 COS 对象存储源站;</li>
|
19959
19959
|
<li>AWS_S3:AWS S3 对象存储源站;</li>
|
19960
19960
|
<li>ORIGIN_GROUP:源站组类型源站;</li>
|
19961
|
-
<li>VODEO
|
19961
|
+
<li>VODEO:云点播-混合云版;</li>
|
19962
19962
|
<li>SPACE:源站卸载,当前仅白名单开放;</li>
|
19963
19963
|
<li>LB:负载均衡,当前仅白名单开放。</li>
|
19964
19964
|
:type OriginType: str
|
@@ -20311,7 +20311,7 @@ class OriginInfo(AbstractModel):
|
|
20311
20311
|
<li>COS:腾讯云 COS 对象存储源站;</li>
|
20312
20312
|
<li>AWS_S3:AWS S3 对象存储源站;</li>
|
20313
20313
|
<li>ORIGIN_GROUP:源站组类型源站;</li>
|
20314
|
-
<li>VODEO
|
20314
|
+
<li>VODEO:云点播-混合云版;</li>
|
20315
20315
|
<li>SPACE:源站卸载,当前仅白名单开放;</li>
|
20316
20316
|
<li>LB:负载均衡,当前仅白名单开放。</li>
|
20317
20317
|
:type OriginType: str
|