tencentcloud-sdk-python 3.0.1068__py2.py3-none-any.whl → 3.0.1076__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.
Potentially problematic release.
This version of tencentcloud-sdk-python might be problematic. Click here for more details.
- tencentcloud/__init__.py +1 -1
- tencentcloud/antiddos/v20200309/models.py +27 -1
- tencentcloud/billing/v20180709/billing_client.py +23 -0
- tencentcloud/billing/v20180709/errorcodes.py +6 -0
- tencentcloud/billing/v20180709/models.py +479 -0
- tencentcloud/car/v20220110/car_client.py +2 -2
- tencentcloud/cfs/v20190719/models.py +12 -0
- tencentcloud/cfw/v20190904/models.py +116 -0
- tencentcloud/clb/v20180317/errorcodes.py +3 -0
- tencentcloud/cloudaudit/v20190319/cloudaudit_client.py +6 -6
- tencentcloud/cloudaudit/v20190319/errorcodes.py +6 -3
- tencentcloud/cloudaudit/v20190319/models.py +30 -2
- tencentcloud/cvm/v20170312/models.py +2 -2
- tencentcloud/cynosdb/v20190107/models.py +188 -0
- tencentcloud/dbbrain/v20210527/models.py +37 -0
- tencentcloud/dnspod/v20210323/models.py +12 -0
- tencentcloud/dts/v20211206/dts_client.py +511 -0
- tencentcloud/dts/v20211206/errorcodes.py +3 -0
- tencentcloud/dts/v20211206/models.py +6918 -2996
- tencentcloud/ess/v20201111/ess_client.py +64 -9
- tencentcloud/ess/v20201111/models.py +161 -42
- tencentcloud/essbasic/v20210526/essbasic_client.py +59 -11
- tencentcloud/essbasic/v20210526/models.py +253 -187
- tencentcloud/faceid/v20180301/models.py +24 -0
- tencentcloud/hai/v20230812/errorcodes.py +6 -0
- tencentcloud/hunyuan/v20230901/models.py +1 -1
- tencentcloud/monitor/v20180724/models.py +1118 -97
- tencentcloud/monitor/v20180724/monitor_client.py +118 -0
- tencentcloud/mps/v20190612/models.py +60 -1
- tencentcloud/mrs/v20200910/models.py +5 -1
- tencentcloud/ocr/v20181119/models.py +216 -1
- tencentcloud/ocr/v20181119/ocr_client.py +23 -0
- tencentcloud/rum/v20210622/models.py +0 -504
- tencentcloud/rum/v20210622/rum_client.py +0 -138
- tencentcloud/scf/v20180416/errorcodes.py +3 -0
- tencentcloud/tat/v20201028/models.py +2 -0
- tencentcloud/tcb/v20180608/models.py +9 -0
- tencentcloud/tdid/v20210519/errorcodes.py +143 -2
- tencentcloud/tdid/v20210519/models.py +1424 -788
- tencentcloud/tdid/v20210519/tdid_client.py +201 -112
- tencentcloud/tdmq/v20200217/errorcodes.py +3 -0
- tencentcloud/tdmq/v20200217/models.py +261 -0
- tencentcloud/tdmq/v20200217/tdmq_client.py +23 -0
- tencentcloud/teo/v20220901/models.py +18 -16
- tencentcloud/tione/v20211111/errorcodes.py +12 -0
- tencentcloud/tione/v20211111/models.py +190 -32
- tencentcloud/trtc/v20190722/errorcodes.py +6 -0
- tencentcloud/trtc/v20190722/models.py +34 -5
- tencentcloud/trtc/v20190722/trtc_client.py +2 -0
- tencentcloud/tse/v20201207/models.py +1 -1
- tencentcloud/tsf/v20180326/models.py +14 -1
- tencentcloud/vod/v20180717/models.py +933 -43
- tencentcloud/vod/v20180717/vod_client.py +161 -0
- tencentcloud/wedata/v20210820/models.py +0 -70
- tencentcloud/wedata/v20210820/wedata_client.py +0 -25
- {tencentcloud_sdk_python-3.0.1068.dist-info → tencentcloud_sdk_python-3.0.1076.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1068.dist-info → tencentcloud_sdk_python-3.0.1076.dist-info}/RECORD +60 -60
- {tencentcloud_sdk_python-3.0.1068.dist-info → tencentcloud_sdk_python-3.0.1076.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1068.dist-info → tencentcloud_sdk_python-3.0.1076.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1068.dist-info → tencentcloud_sdk_python-3.0.1076.dist-info}/top_level.txt +0 -0
|
@@ -8881,6 +8881,79 @@ class ApplyUploadResponse(AbstractModel):
|
|
|
8881
8881
|
self._RequestId = params.get("RequestId")
|
|
8882
8882
|
|
|
8883
8883
|
|
|
8884
|
+
class AreaCLSTargetInfo(AbstractModel):
|
|
8885
|
+
"""日志推送目标。
|
|
8886
|
+
|
|
8887
|
+
"""
|
|
8888
|
+
|
|
8889
|
+
def __init__(self):
|
|
8890
|
+
r"""
|
|
8891
|
+
:param _CLSRegion: 日志集所属地区:
|
|
8892
|
+
ap-guangzhou:广州;
|
|
8893
|
+
ap-singapore:新加坡。
|
|
8894
|
+
:type CLSRegion: str
|
|
8895
|
+
:param _TopicId: 投递的目标主题 ID。
|
|
8896
|
+
:type TopicId: str
|
|
8897
|
+
:param _LogsetId: 投递的目标集 ID。
|
|
8898
|
+
:type LogsetId: str
|
|
8899
|
+
:param _Switch: 日志投递状态。
|
|
8900
|
+
ON:启用;
|
|
8901
|
+
OFF:停用。
|
|
8902
|
+
:type Switch: str
|
|
8903
|
+
"""
|
|
8904
|
+
self._CLSRegion = None
|
|
8905
|
+
self._TopicId = None
|
|
8906
|
+
self._LogsetId = None
|
|
8907
|
+
self._Switch = None
|
|
8908
|
+
|
|
8909
|
+
@property
|
|
8910
|
+
def CLSRegion(self):
|
|
8911
|
+
return self._CLSRegion
|
|
8912
|
+
|
|
8913
|
+
@CLSRegion.setter
|
|
8914
|
+
def CLSRegion(self, CLSRegion):
|
|
8915
|
+
self._CLSRegion = CLSRegion
|
|
8916
|
+
|
|
8917
|
+
@property
|
|
8918
|
+
def TopicId(self):
|
|
8919
|
+
return self._TopicId
|
|
8920
|
+
|
|
8921
|
+
@TopicId.setter
|
|
8922
|
+
def TopicId(self, TopicId):
|
|
8923
|
+
self._TopicId = TopicId
|
|
8924
|
+
|
|
8925
|
+
@property
|
|
8926
|
+
def LogsetId(self):
|
|
8927
|
+
return self._LogsetId
|
|
8928
|
+
|
|
8929
|
+
@LogsetId.setter
|
|
8930
|
+
def LogsetId(self, LogsetId):
|
|
8931
|
+
self._LogsetId = LogsetId
|
|
8932
|
+
|
|
8933
|
+
@property
|
|
8934
|
+
def Switch(self):
|
|
8935
|
+
return self._Switch
|
|
8936
|
+
|
|
8937
|
+
@Switch.setter
|
|
8938
|
+
def Switch(self, Switch):
|
|
8939
|
+
self._Switch = Switch
|
|
8940
|
+
|
|
8941
|
+
|
|
8942
|
+
def _deserialize(self, params):
|
|
8943
|
+
self._CLSRegion = params.get("CLSRegion")
|
|
8944
|
+
self._TopicId = params.get("TopicId")
|
|
8945
|
+
self._LogsetId = params.get("LogsetId")
|
|
8946
|
+
self._Switch = params.get("Switch")
|
|
8947
|
+
memeber_set = set(params.keys())
|
|
8948
|
+
for name, value in vars(self).items():
|
|
8949
|
+
property_name = name[1:]
|
|
8950
|
+
if property_name in memeber_set:
|
|
8951
|
+
memeber_set.remove(property_name)
|
|
8952
|
+
if len(memeber_set) > 0:
|
|
8953
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
8954
|
+
|
|
8955
|
+
|
|
8956
|
+
|
|
8884
8957
|
class ArtifactRepairInfo(AbstractModel):
|
|
8885
8958
|
"""去伪影(毛刺)控制信息
|
|
8886
8959
|
|
|
@@ -9873,6 +9946,111 @@ class BlurConfigureInfoForUpdate(AbstractModel):
|
|
|
9873
9946
|
|
|
9874
9947
|
|
|
9875
9948
|
|
|
9949
|
+
class CLSLogsetInfo(AbstractModel):
|
|
9950
|
+
"""CLS 日志集信息
|
|
9951
|
+
|
|
9952
|
+
"""
|
|
9953
|
+
|
|
9954
|
+
def __init__(self):
|
|
9955
|
+
r"""
|
|
9956
|
+
:param _LogsetId: 日志集 ID。
|
|
9957
|
+
:type LogsetId: str
|
|
9958
|
+
:param _LogsetName: 日志集名。
|
|
9959
|
+
:type LogsetName: str
|
|
9960
|
+
"""
|
|
9961
|
+
self._LogsetId = None
|
|
9962
|
+
self._LogsetName = None
|
|
9963
|
+
|
|
9964
|
+
@property
|
|
9965
|
+
def LogsetId(self):
|
|
9966
|
+
return self._LogsetId
|
|
9967
|
+
|
|
9968
|
+
@LogsetId.setter
|
|
9969
|
+
def LogsetId(self, LogsetId):
|
|
9970
|
+
self._LogsetId = LogsetId
|
|
9971
|
+
|
|
9972
|
+
@property
|
|
9973
|
+
def LogsetName(self):
|
|
9974
|
+
return self._LogsetName
|
|
9975
|
+
|
|
9976
|
+
@LogsetName.setter
|
|
9977
|
+
def LogsetName(self, LogsetName):
|
|
9978
|
+
self._LogsetName = LogsetName
|
|
9979
|
+
|
|
9980
|
+
|
|
9981
|
+
def _deserialize(self, params):
|
|
9982
|
+
self._LogsetId = params.get("LogsetId")
|
|
9983
|
+
self._LogsetName = params.get("LogsetName")
|
|
9984
|
+
memeber_set = set(params.keys())
|
|
9985
|
+
for name, value in vars(self).items():
|
|
9986
|
+
property_name = name[1:]
|
|
9987
|
+
if property_name in memeber_set:
|
|
9988
|
+
memeber_set.remove(property_name)
|
|
9989
|
+
if len(memeber_set) > 0:
|
|
9990
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
9991
|
+
|
|
9992
|
+
|
|
9993
|
+
|
|
9994
|
+
class CLSTopicInfo(AbstractModel):
|
|
9995
|
+
"""CLS日志主题信息。
|
|
9996
|
+
|
|
9997
|
+
"""
|
|
9998
|
+
|
|
9999
|
+
def __init__(self):
|
|
10000
|
+
r"""
|
|
10001
|
+
:param _TopicId: 日志主题 ID。
|
|
10002
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10003
|
+
:type TopicId: str
|
|
10004
|
+
:param _TopicName: 日志主题名。
|
|
10005
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10006
|
+
:type TopicName: str
|
|
10007
|
+
:param _LogsetId: 日志集 ID。
|
|
10008
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10009
|
+
:type LogsetId: str
|
|
10010
|
+
"""
|
|
10011
|
+
self._TopicId = None
|
|
10012
|
+
self._TopicName = None
|
|
10013
|
+
self._LogsetId = None
|
|
10014
|
+
|
|
10015
|
+
@property
|
|
10016
|
+
def TopicId(self):
|
|
10017
|
+
return self._TopicId
|
|
10018
|
+
|
|
10019
|
+
@TopicId.setter
|
|
10020
|
+
def TopicId(self, TopicId):
|
|
10021
|
+
self._TopicId = TopicId
|
|
10022
|
+
|
|
10023
|
+
@property
|
|
10024
|
+
def TopicName(self):
|
|
10025
|
+
return self._TopicName
|
|
10026
|
+
|
|
10027
|
+
@TopicName.setter
|
|
10028
|
+
def TopicName(self, TopicName):
|
|
10029
|
+
self._TopicName = TopicName
|
|
10030
|
+
|
|
10031
|
+
@property
|
|
10032
|
+
def LogsetId(self):
|
|
10033
|
+
return self._LogsetId
|
|
10034
|
+
|
|
10035
|
+
@LogsetId.setter
|
|
10036
|
+
def LogsetId(self, LogsetId):
|
|
10037
|
+
self._LogsetId = LogsetId
|
|
10038
|
+
|
|
10039
|
+
|
|
10040
|
+
def _deserialize(self, params):
|
|
10041
|
+
self._TopicId = params.get("TopicId")
|
|
10042
|
+
self._TopicName = params.get("TopicName")
|
|
10043
|
+
self._LogsetId = params.get("LogsetId")
|
|
10044
|
+
memeber_set = set(params.keys())
|
|
10045
|
+
for name, value in vars(self).items():
|
|
10046
|
+
property_name = name[1:]
|
|
10047
|
+
if property_name in memeber_set:
|
|
10048
|
+
memeber_set.remove(property_name)
|
|
10049
|
+
if len(memeber_set) > 0:
|
|
10050
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
10051
|
+
|
|
10052
|
+
|
|
10053
|
+
|
|
9876
10054
|
class Canvas(AbstractModel):
|
|
9877
10055
|
"""画布信息。制作视频时,如果源素材(视频或者图片)不能填满输出的视频窗口,将用设置的画布进行背景绘制。
|
|
9878
10056
|
|
|
@@ -12630,6 +12808,174 @@ class CreateAnimatedGraphicsTemplateResponse(AbstractModel):
|
|
|
12630
12808
|
self._RequestId = params.get("RequestId")
|
|
12631
12809
|
|
|
12632
12810
|
|
|
12811
|
+
class CreateCLSLogsetRequest(AbstractModel):
|
|
12812
|
+
"""CreateCLSLogset请求参数结构体
|
|
12813
|
+
|
|
12814
|
+
"""
|
|
12815
|
+
|
|
12816
|
+
def __init__(self):
|
|
12817
|
+
r"""
|
|
12818
|
+
:param _CLSRegion: 日志集所属地区:
|
|
12819
|
+
ap-guangzhou:广州;
|
|
12820
|
+
ap-singapore:新加坡。
|
|
12821
|
+
:type CLSRegion: str
|
|
12822
|
+
"""
|
|
12823
|
+
self._CLSRegion = None
|
|
12824
|
+
|
|
12825
|
+
@property
|
|
12826
|
+
def CLSRegion(self):
|
|
12827
|
+
return self._CLSRegion
|
|
12828
|
+
|
|
12829
|
+
@CLSRegion.setter
|
|
12830
|
+
def CLSRegion(self, CLSRegion):
|
|
12831
|
+
self._CLSRegion = CLSRegion
|
|
12832
|
+
|
|
12833
|
+
|
|
12834
|
+
def _deserialize(self, params):
|
|
12835
|
+
self._CLSRegion = params.get("CLSRegion")
|
|
12836
|
+
memeber_set = set(params.keys())
|
|
12837
|
+
for name, value in vars(self).items():
|
|
12838
|
+
property_name = name[1:]
|
|
12839
|
+
if property_name in memeber_set:
|
|
12840
|
+
memeber_set.remove(property_name)
|
|
12841
|
+
if len(memeber_set) > 0:
|
|
12842
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
12843
|
+
|
|
12844
|
+
|
|
12845
|
+
|
|
12846
|
+
class CreateCLSLogsetResponse(AbstractModel):
|
|
12847
|
+
"""CreateCLSLogset返回参数结构体
|
|
12848
|
+
|
|
12849
|
+
"""
|
|
12850
|
+
|
|
12851
|
+
def __init__(self):
|
|
12852
|
+
r"""
|
|
12853
|
+
:param _LogsetId: 日志集 ID。
|
|
12854
|
+
:type LogsetId: str
|
|
12855
|
+
:param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
12856
|
+
:type RequestId: str
|
|
12857
|
+
"""
|
|
12858
|
+
self._LogsetId = None
|
|
12859
|
+
self._RequestId = None
|
|
12860
|
+
|
|
12861
|
+
@property
|
|
12862
|
+
def LogsetId(self):
|
|
12863
|
+
return self._LogsetId
|
|
12864
|
+
|
|
12865
|
+
@LogsetId.setter
|
|
12866
|
+
def LogsetId(self, LogsetId):
|
|
12867
|
+
self._LogsetId = LogsetId
|
|
12868
|
+
|
|
12869
|
+
@property
|
|
12870
|
+
def RequestId(self):
|
|
12871
|
+
return self._RequestId
|
|
12872
|
+
|
|
12873
|
+
@RequestId.setter
|
|
12874
|
+
def RequestId(self, RequestId):
|
|
12875
|
+
self._RequestId = RequestId
|
|
12876
|
+
|
|
12877
|
+
|
|
12878
|
+
def _deserialize(self, params):
|
|
12879
|
+
self._LogsetId = params.get("LogsetId")
|
|
12880
|
+
self._RequestId = params.get("RequestId")
|
|
12881
|
+
|
|
12882
|
+
|
|
12883
|
+
class CreateCLSTopicRequest(AbstractModel):
|
|
12884
|
+
"""CreateCLSTopic请求参数结构体
|
|
12885
|
+
|
|
12886
|
+
"""
|
|
12887
|
+
|
|
12888
|
+
def __init__(self):
|
|
12889
|
+
r"""
|
|
12890
|
+
:param _CLSRegion: 日志集所属地区:
|
|
12891
|
+
ap-guangzhou:广州;
|
|
12892
|
+
ap-singapore:新加坡。
|
|
12893
|
+
:type CLSRegion: str
|
|
12894
|
+
:param _TopicName: 日志主题名。
|
|
12895
|
+
:type TopicName: str
|
|
12896
|
+
:param _LogsetId: 日志集 ID。
|
|
12897
|
+
:type LogsetId: str
|
|
12898
|
+
"""
|
|
12899
|
+
self._CLSRegion = None
|
|
12900
|
+
self._TopicName = None
|
|
12901
|
+
self._LogsetId = None
|
|
12902
|
+
|
|
12903
|
+
@property
|
|
12904
|
+
def CLSRegion(self):
|
|
12905
|
+
return self._CLSRegion
|
|
12906
|
+
|
|
12907
|
+
@CLSRegion.setter
|
|
12908
|
+
def CLSRegion(self, CLSRegion):
|
|
12909
|
+
self._CLSRegion = CLSRegion
|
|
12910
|
+
|
|
12911
|
+
@property
|
|
12912
|
+
def TopicName(self):
|
|
12913
|
+
return self._TopicName
|
|
12914
|
+
|
|
12915
|
+
@TopicName.setter
|
|
12916
|
+
def TopicName(self, TopicName):
|
|
12917
|
+
self._TopicName = TopicName
|
|
12918
|
+
|
|
12919
|
+
@property
|
|
12920
|
+
def LogsetId(self):
|
|
12921
|
+
return self._LogsetId
|
|
12922
|
+
|
|
12923
|
+
@LogsetId.setter
|
|
12924
|
+
def LogsetId(self, LogsetId):
|
|
12925
|
+
self._LogsetId = LogsetId
|
|
12926
|
+
|
|
12927
|
+
|
|
12928
|
+
def _deserialize(self, params):
|
|
12929
|
+
self._CLSRegion = params.get("CLSRegion")
|
|
12930
|
+
self._TopicName = params.get("TopicName")
|
|
12931
|
+
self._LogsetId = params.get("LogsetId")
|
|
12932
|
+
memeber_set = set(params.keys())
|
|
12933
|
+
for name, value in vars(self).items():
|
|
12934
|
+
property_name = name[1:]
|
|
12935
|
+
if property_name in memeber_set:
|
|
12936
|
+
memeber_set.remove(property_name)
|
|
12937
|
+
if len(memeber_set) > 0:
|
|
12938
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
12939
|
+
|
|
12940
|
+
|
|
12941
|
+
|
|
12942
|
+
class CreateCLSTopicResponse(AbstractModel):
|
|
12943
|
+
"""CreateCLSTopic返回参数结构体
|
|
12944
|
+
|
|
12945
|
+
"""
|
|
12946
|
+
|
|
12947
|
+
def __init__(self):
|
|
12948
|
+
r"""
|
|
12949
|
+
:param _TopicId: 日志主题 ID。
|
|
12950
|
+
:type TopicId: str
|
|
12951
|
+
:param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
12952
|
+
:type RequestId: str
|
|
12953
|
+
"""
|
|
12954
|
+
self._TopicId = None
|
|
12955
|
+
self._RequestId = None
|
|
12956
|
+
|
|
12957
|
+
@property
|
|
12958
|
+
def TopicId(self):
|
|
12959
|
+
return self._TopicId
|
|
12960
|
+
|
|
12961
|
+
@TopicId.setter
|
|
12962
|
+
def TopicId(self, TopicId):
|
|
12963
|
+
self._TopicId = TopicId
|
|
12964
|
+
|
|
12965
|
+
@property
|
|
12966
|
+
def RequestId(self):
|
|
12967
|
+
return self._RequestId
|
|
12968
|
+
|
|
12969
|
+
@RequestId.setter
|
|
12970
|
+
def RequestId(self, RequestId):
|
|
12971
|
+
self._RequestId = RequestId
|
|
12972
|
+
|
|
12973
|
+
|
|
12974
|
+
def _deserialize(self, params):
|
|
12975
|
+
self._TopicId = params.get("TopicId")
|
|
12976
|
+
self._RequestId = params.get("RequestId")
|
|
12977
|
+
|
|
12978
|
+
|
|
12633
12979
|
class CreateClassRequest(AbstractModel):
|
|
12634
12980
|
"""CreateClass请求参数结构体
|
|
12635
12981
|
|
|
@@ -16617,41 +16963,43 @@ class DeleteAnimatedGraphicsTemplateResponse(AbstractModel):
|
|
|
16617
16963
|
self._RequestId = params.get("RequestId")
|
|
16618
16964
|
|
|
16619
16965
|
|
|
16620
|
-
class
|
|
16621
|
-
"""
|
|
16966
|
+
class DeleteCLSTopicRequest(AbstractModel):
|
|
16967
|
+
"""DeleteCLSTopic请求参数结构体
|
|
16622
16968
|
|
|
16623
16969
|
"""
|
|
16624
16970
|
|
|
16625
16971
|
def __init__(self):
|
|
16626
16972
|
r"""
|
|
16627
|
-
:param
|
|
16628
|
-
|
|
16629
|
-
|
|
16630
|
-
:type
|
|
16973
|
+
:param _CLSRegion: 日志集所属地区:
|
|
16974
|
+
ap-guangzhou:广州;
|
|
16975
|
+
ap-singapore:新加坡。
|
|
16976
|
+
:type CLSRegion: str
|
|
16977
|
+
:param _TopicId: 日志主题 ID。
|
|
16978
|
+
:type TopicId: str
|
|
16631
16979
|
"""
|
|
16632
|
-
self.
|
|
16633
|
-
self.
|
|
16980
|
+
self._CLSRegion = None
|
|
16981
|
+
self._TopicId = None
|
|
16634
16982
|
|
|
16635
16983
|
@property
|
|
16636
|
-
def
|
|
16637
|
-
return self.
|
|
16984
|
+
def CLSRegion(self):
|
|
16985
|
+
return self._CLSRegion
|
|
16638
16986
|
|
|
16639
|
-
@
|
|
16640
|
-
def
|
|
16641
|
-
self.
|
|
16987
|
+
@CLSRegion.setter
|
|
16988
|
+
def CLSRegion(self, CLSRegion):
|
|
16989
|
+
self._CLSRegion = CLSRegion
|
|
16642
16990
|
|
|
16643
16991
|
@property
|
|
16644
|
-
def
|
|
16645
|
-
return self.
|
|
16992
|
+
def TopicId(self):
|
|
16993
|
+
return self._TopicId
|
|
16646
16994
|
|
|
16647
|
-
@
|
|
16648
|
-
def
|
|
16649
|
-
self.
|
|
16995
|
+
@TopicId.setter
|
|
16996
|
+
def TopicId(self, TopicId):
|
|
16997
|
+
self._TopicId = TopicId
|
|
16650
16998
|
|
|
16651
16999
|
|
|
16652
17000
|
def _deserialize(self, params):
|
|
16653
|
-
self.
|
|
16654
|
-
self.
|
|
17001
|
+
self._CLSRegion = params.get("CLSRegion")
|
|
17002
|
+
self._TopicId = params.get("TopicId")
|
|
16655
17003
|
memeber_set = set(params.keys())
|
|
16656
17004
|
for name, value in vars(self).items():
|
|
16657
17005
|
property_name = name[1:]
|
|
@@ -16662,8 +17010,8 @@ class DeleteClassRequest(AbstractModel):
|
|
|
16662
17010
|
|
|
16663
17011
|
|
|
16664
17012
|
|
|
16665
|
-
class
|
|
16666
|
-
"""
|
|
17013
|
+
class DeleteCLSTopicResponse(AbstractModel):
|
|
17014
|
+
"""DeleteCLSTopic返回参数结构体
|
|
16667
17015
|
|
|
16668
17016
|
"""
|
|
16669
17017
|
|
|
@@ -16687,28 +17035,28 @@ class DeleteClassResponse(AbstractModel):
|
|
|
16687
17035
|
self._RequestId = params.get("RequestId")
|
|
16688
17036
|
|
|
16689
17037
|
|
|
16690
|
-
class
|
|
16691
|
-
"""
|
|
17038
|
+
class DeleteClassRequest(AbstractModel):
|
|
17039
|
+
"""DeleteClass请求参数结构体
|
|
16692
17040
|
|
|
16693
17041
|
"""
|
|
16694
17042
|
|
|
16695
17043
|
def __init__(self):
|
|
16696
17044
|
r"""
|
|
16697
|
-
:param
|
|
16698
|
-
:type
|
|
17045
|
+
:param _ClassId: 分类 ID
|
|
17046
|
+
:type ClassId: int
|
|
16699
17047
|
:param _SubAppId: <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
16700
17048
|
:type SubAppId: int
|
|
16701
17049
|
"""
|
|
16702
|
-
self.
|
|
17050
|
+
self._ClassId = None
|
|
16703
17051
|
self._SubAppId = None
|
|
16704
17052
|
|
|
16705
17053
|
@property
|
|
16706
|
-
def
|
|
16707
|
-
return self.
|
|
17054
|
+
def ClassId(self):
|
|
17055
|
+
return self._ClassId
|
|
16708
17056
|
|
|
16709
|
-
@
|
|
16710
|
-
def
|
|
16711
|
-
self.
|
|
17057
|
+
@ClassId.setter
|
|
17058
|
+
def ClassId(self, ClassId):
|
|
17059
|
+
self._ClassId = ClassId
|
|
16712
17060
|
|
|
16713
17061
|
@property
|
|
16714
17062
|
def SubAppId(self):
|
|
@@ -16720,7 +17068,7 @@ class DeleteContentReviewTemplateRequest(AbstractModel):
|
|
|
16720
17068
|
|
|
16721
17069
|
|
|
16722
17070
|
def _deserialize(self, params):
|
|
16723
|
-
self.
|
|
17071
|
+
self._ClassId = params.get("ClassId")
|
|
16724
17072
|
self._SubAppId = params.get("SubAppId")
|
|
16725
17073
|
memeber_set = set(params.keys())
|
|
16726
17074
|
for name, value in vars(self).items():
|
|
@@ -16732,8 +17080,8 @@ class DeleteContentReviewTemplateRequest(AbstractModel):
|
|
|
16732
17080
|
|
|
16733
17081
|
|
|
16734
17082
|
|
|
16735
|
-
class
|
|
16736
|
-
"""
|
|
17083
|
+
class DeleteClassResponse(AbstractModel):
|
|
17084
|
+
"""DeleteClass返回参数结构体
|
|
16737
17085
|
|
|
16738
17086
|
"""
|
|
16739
17087
|
|
|
@@ -16757,14 +17105,14 @@ class DeleteContentReviewTemplateResponse(AbstractModel):
|
|
|
16757
17105
|
self._RequestId = params.get("RequestId")
|
|
16758
17106
|
|
|
16759
17107
|
|
|
16760
|
-
class
|
|
16761
|
-
"""
|
|
17108
|
+
class DeleteContentReviewTemplateRequest(AbstractModel):
|
|
17109
|
+
"""DeleteContentReviewTemplate请求参数结构体
|
|
16762
17110
|
|
|
16763
17111
|
"""
|
|
16764
17112
|
|
|
16765
17113
|
def __init__(self):
|
|
16766
17114
|
r"""
|
|
16767
|
-
:param _Definition:
|
|
17115
|
+
:param _Definition: 内容审核模板唯一标识。
|
|
16768
17116
|
:type Definition: int
|
|
16769
17117
|
:param _SubAppId: <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
16770
17118
|
:type SubAppId: int
|
|
@@ -16802,8 +17150,8 @@ class DeleteEnhanceMediaTemplateRequest(AbstractModel):
|
|
|
16802
17150
|
|
|
16803
17151
|
|
|
16804
17152
|
|
|
16805
|
-
class
|
|
16806
|
-
"""
|
|
17153
|
+
class DeleteContentReviewTemplateResponse(AbstractModel):
|
|
17154
|
+
"""DeleteContentReviewTemplate返回参数结构体
|
|
16807
17155
|
|
|
16808
17156
|
"""
|
|
16809
17157
|
|
|
@@ -16827,14 +17175,84 @@ class DeleteEnhanceMediaTemplateResponse(AbstractModel):
|
|
|
16827
17175
|
self._RequestId = params.get("RequestId")
|
|
16828
17176
|
|
|
16829
17177
|
|
|
16830
|
-
class
|
|
16831
|
-
"""
|
|
17178
|
+
class DeleteEnhanceMediaTemplateRequest(AbstractModel):
|
|
17179
|
+
"""DeleteEnhanceMediaTemplate请求参数结构体
|
|
16832
17180
|
|
|
16833
17181
|
"""
|
|
16834
17182
|
|
|
16835
17183
|
def __init__(self):
|
|
16836
17184
|
r"""
|
|
16837
|
-
:param _Definition:
|
|
17185
|
+
:param _Definition: 音画质重生模板号。
|
|
17186
|
+
:type Definition: int
|
|
17187
|
+
:param _SubAppId: <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
17188
|
+
:type SubAppId: int
|
|
17189
|
+
"""
|
|
17190
|
+
self._Definition = None
|
|
17191
|
+
self._SubAppId = None
|
|
17192
|
+
|
|
17193
|
+
@property
|
|
17194
|
+
def Definition(self):
|
|
17195
|
+
return self._Definition
|
|
17196
|
+
|
|
17197
|
+
@Definition.setter
|
|
17198
|
+
def Definition(self, Definition):
|
|
17199
|
+
self._Definition = Definition
|
|
17200
|
+
|
|
17201
|
+
@property
|
|
17202
|
+
def SubAppId(self):
|
|
17203
|
+
return self._SubAppId
|
|
17204
|
+
|
|
17205
|
+
@SubAppId.setter
|
|
17206
|
+
def SubAppId(self, SubAppId):
|
|
17207
|
+
self._SubAppId = SubAppId
|
|
17208
|
+
|
|
17209
|
+
|
|
17210
|
+
def _deserialize(self, params):
|
|
17211
|
+
self._Definition = params.get("Definition")
|
|
17212
|
+
self._SubAppId = params.get("SubAppId")
|
|
17213
|
+
memeber_set = set(params.keys())
|
|
17214
|
+
for name, value in vars(self).items():
|
|
17215
|
+
property_name = name[1:]
|
|
17216
|
+
if property_name in memeber_set:
|
|
17217
|
+
memeber_set.remove(property_name)
|
|
17218
|
+
if len(memeber_set) > 0:
|
|
17219
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
17220
|
+
|
|
17221
|
+
|
|
17222
|
+
|
|
17223
|
+
class DeleteEnhanceMediaTemplateResponse(AbstractModel):
|
|
17224
|
+
"""DeleteEnhanceMediaTemplate返回参数结构体
|
|
17225
|
+
|
|
17226
|
+
"""
|
|
17227
|
+
|
|
17228
|
+
def __init__(self):
|
|
17229
|
+
r"""
|
|
17230
|
+
:param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
17231
|
+
:type RequestId: str
|
|
17232
|
+
"""
|
|
17233
|
+
self._RequestId = None
|
|
17234
|
+
|
|
17235
|
+
@property
|
|
17236
|
+
def RequestId(self):
|
|
17237
|
+
return self._RequestId
|
|
17238
|
+
|
|
17239
|
+
@RequestId.setter
|
|
17240
|
+
def RequestId(self, RequestId):
|
|
17241
|
+
self._RequestId = RequestId
|
|
17242
|
+
|
|
17243
|
+
|
|
17244
|
+
def _deserialize(self, params):
|
|
17245
|
+
self._RequestId = params.get("RequestId")
|
|
17246
|
+
|
|
17247
|
+
|
|
17248
|
+
class DeleteHeadTailTemplateRequest(AbstractModel):
|
|
17249
|
+
"""DeleteHeadTailTemplate请求参数结构体
|
|
17250
|
+
|
|
17251
|
+
"""
|
|
17252
|
+
|
|
17253
|
+
def __init__(self):
|
|
17254
|
+
r"""
|
|
17255
|
+
:param _Definition: 片头片尾模板号。
|
|
16838
17256
|
:type Definition: int
|
|
16839
17257
|
:param _SubAppId: <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
16840
17258
|
:type SubAppId: int
|
|
@@ -19096,6 +19514,319 @@ class DescribeCDNUsageDataResponse(AbstractModel):
|
|
|
19096
19514
|
self._RequestId = params.get("RequestId")
|
|
19097
19515
|
|
|
19098
19516
|
|
|
19517
|
+
class DescribeCLSLogsetsRequest(AbstractModel):
|
|
19518
|
+
"""DescribeCLSLogsets请求参数结构体
|
|
19519
|
+
|
|
19520
|
+
"""
|
|
19521
|
+
|
|
19522
|
+
def __init__(self):
|
|
19523
|
+
r"""
|
|
19524
|
+
:param _CLSRegion: CLS 日志集所属的地域,取值有:
|
|
19525
|
+
ap-guangzhou:广州;
|
|
19526
|
+
ap-singapore:新加坡。
|
|
19527
|
+
:type CLSRegion: str
|
|
19528
|
+
"""
|
|
19529
|
+
self._CLSRegion = None
|
|
19530
|
+
|
|
19531
|
+
@property
|
|
19532
|
+
def CLSRegion(self):
|
|
19533
|
+
return self._CLSRegion
|
|
19534
|
+
|
|
19535
|
+
@CLSRegion.setter
|
|
19536
|
+
def CLSRegion(self, CLSRegion):
|
|
19537
|
+
self._CLSRegion = CLSRegion
|
|
19538
|
+
|
|
19539
|
+
|
|
19540
|
+
def _deserialize(self, params):
|
|
19541
|
+
self._CLSRegion = params.get("CLSRegion")
|
|
19542
|
+
memeber_set = set(params.keys())
|
|
19543
|
+
for name, value in vars(self).items():
|
|
19544
|
+
property_name = name[1:]
|
|
19545
|
+
if property_name in memeber_set:
|
|
19546
|
+
memeber_set.remove(property_name)
|
|
19547
|
+
if len(memeber_set) > 0:
|
|
19548
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
19549
|
+
|
|
19550
|
+
|
|
19551
|
+
|
|
19552
|
+
class DescribeCLSLogsetsResponse(AbstractModel):
|
|
19553
|
+
"""DescribeCLSLogsets返回参数结构体
|
|
19554
|
+
|
|
19555
|
+
"""
|
|
19556
|
+
|
|
19557
|
+
def __init__(self):
|
|
19558
|
+
r"""
|
|
19559
|
+
:param _Logsets: 查询到的日志集列表。
|
|
19560
|
+
:type Logsets: list of CLSLogsetInfo
|
|
19561
|
+
:param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
19562
|
+
:type RequestId: str
|
|
19563
|
+
"""
|
|
19564
|
+
self._Logsets = None
|
|
19565
|
+
self._RequestId = None
|
|
19566
|
+
|
|
19567
|
+
@property
|
|
19568
|
+
def Logsets(self):
|
|
19569
|
+
return self._Logsets
|
|
19570
|
+
|
|
19571
|
+
@Logsets.setter
|
|
19572
|
+
def Logsets(self, Logsets):
|
|
19573
|
+
self._Logsets = Logsets
|
|
19574
|
+
|
|
19575
|
+
@property
|
|
19576
|
+
def RequestId(self):
|
|
19577
|
+
return self._RequestId
|
|
19578
|
+
|
|
19579
|
+
@RequestId.setter
|
|
19580
|
+
def RequestId(self, RequestId):
|
|
19581
|
+
self._RequestId = RequestId
|
|
19582
|
+
|
|
19583
|
+
|
|
19584
|
+
def _deserialize(self, params):
|
|
19585
|
+
if params.get("Logsets") is not None:
|
|
19586
|
+
self._Logsets = []
|
|
19587
|
+
for item in params.get("Logsets"):
|
|
19588
|
+
obj = CLSLogsetInfo()
|
|
19589
|
+
obj._deserialize(item)
|
|
19590
|
+
self._Logsets.append(obj)
|
|
19591
|
+
self._RequestId = params.get("RequestId")
|
|
19592
|
+
|
|
19593
|
+
|
|
19594
|
+
class DescribeCLSPushTargetsRequest(AbstractModel):
|
|
19595
|
+
"""DescribeCLSPushTargets请求参数结构体
|
|
19596
|
+
|
|
19597
|
+
"""
|
|
19598
|
+
|
|
19599
|
+
def __init__(self):
|
|
19600
|
+
r"""
|
|
19601
|
+
:param _Domains: 点播域名。
|
|
19602
|
+
:type Domains: list of str
|
|
19603
|
+
:param _SubAppId: 点播应用 ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
|
19604
|
+
:type SubAppId: int
|
|
19605
|
+
"""
|
|
19606
|
+
self._Domains = None
|
|
19607
|
+
self._SubAppId = None
|
|
19608
|
+
|
|
19609
|
+
@property
|
|
19610
|
+
def Domains(self):
|
|
19611
|
+
return self._Domains
|
|
19612
|
+
|
|
19613
|
+
@Domains.setter
|
|
19614
|
+
def Domains(self, Domains):
|
|
19615
|
+
self._Domains = Domains
|
|
19616
|
+
|
|
19617
|
+
@property
|
|
19618
|
+
def SubAppId(self):
|
|
19619
|
+
return self._SubAppId
|
|
19620
|
+
|
|
19621
|
+
@SubAppId.setter
|
|
19622
|
+
def SubAppId(self, SubAppId):
|
|
19623
|
+
self._SubAppId = SubAppId
|
|
19624
|
+
|
|
19625
|
+
|
|
19626
|
+
def _deserialize(self, params):
|
|
19627
|
+
self._Domains = params.get("Domains")
|
|
19628
|
+
self._SubAppId = params.get("SubAppId")
|
|
19629
|
+
memeber_set = set(params.keys())
|
|
19630
|
+
for name, value in vars(self).items():
|
|
19631
|
+
property_name = name[1:]
|
|
19632
|
+
if property_name in memeber_set:
|
|
19633
|
+
memeber_set.remove(property_name)
|
|
19634
|
+
if len(memeber_set) > 0:
|
|
19635
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
19636
|
+
|
|
19637
|
+
|
|
19638
|
+
|
|
19639
|
+
class DescribeCLSPushTargetsResponse(AbstractModel):
|
|
19640
|
+
"""DescribeCLSPushTargets返回参数结构体
|
|
19641
|
+
|
|
19642
|
+
"""
|
|
19643
|
+
|
|
19644
|
+
def __init__(self):
|
|
19645
|
+
r"""
|
|
19646
|
+
:param _TotalCount: 域名推送总数量。
|
|
19647
|
+
:type TotalCount: int
|
|
19648
|
+
:param _DomainCLSTargets: 域名推送 CLS 目标列表。
|
|
19649
|
+
:type DomainCLSTargets: list of DomainCLSTargetInfo
|
|
19650
|
+
:param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
19651
|
+
:type RequestId: str
|
|
19652
|
+
"""
|
|
19653
|
+
self._TotalCount = None
|
|
19654
|
+
self._DomainCLSTargets = None
|
|
19655
|
+
self._RequestId = None
|
|
19656
|
+
|
|
19657
|
+
@property
|
|
19658
|
+
def TotalCount(self):
|
|
19659
|
+
return self._TotalCount
|
|
19660
|
+
|
|
19661
|
+
@TotalCount.setter
|
|
19662
|
+
def TotalCount(self, TotalCount):
|
|
19663
|
+
self._TotalCount = TotalCount
|
|
19664
|
+
|
|
19665
|
+
@property
|
|
19666
|
+
def DomainCLSTargets(self):
|
|
19667
|
+
return self._DomainCLSTargets
|
|
19668
|
+
|
|
19669
|
+
@DomainCLSTargets.setter
|
|
19670
|
+
def DomainCLSTargets(self, DomainCLSTargets):
|
|
19671
|
+
self._DomainCLSTargets = DomainCLSTargets
|
|
19672
|
+
|
|
19673
|
+
@property
|
|
19674
|
+
def RequestId(self):
|
|
19675
|
+
return self._RequestId
|
|
19676
|
+
|
|
19677
|
+
@RequestId.setter
|
|
19678
|
+
def RequestId(self, RequestId):
|
|
19679
|
+
self._RequestId = RequestId
|
|
19680
|
+
|
|
19681
|
+
|
|
19682
|
+
def _deserialize(self, params):
|
|
19683
|
+
self._TotalCount = params.get("TotalCount")
|
|
19684
|
+
if params.get("DomainCLSTargets") is not None:
|
|
19685
|
+
self._DomainCLSTargets = []
|
|
19686
|
+
for item in params.get("DomainCLSTargets"):
|
|
19687
|
+
obj = DomainCLSTargetInfo()
|
|
19688
|
+
obj._deserialize(item)
|
|
19689
|
+
self._DomainCLSTargets.append(obj)
|
|
19690
|
+
self._RequestId = params.get("RequestId")
|
|
19691
|
+
|
|
19692
|
+
|
|
19693
|
+
class DescribeCLSTopicsRequest(AbstractModel):
|
|
19694
|
+
"""DescribeCLSTopics请求参数结构体
|
|
19695
|
+
|
|
19696
|
+
"""
|
|
19697
|
+
|
|
19698
|
+
def __init__(self):
|
|
19699
|
+
r"""
|
|
19700
|
+
:param _CLSRegion: 日志集所属地区:
|
|
19701
|
+
ap-guangzhou:广州;
|
|
19702
|
+
ap-singapore:新加坡。
|
|
19703
|
+
:type CLSRegion: str
|
|
19704
|
+
:param _LogsetId: 日志主题所属日志集 ID。
|
|
19705
|
+
:type LogsetId: str
|
|
19706
|
+
:param _TopicIds: 日志主题 ID 列表。如果不填,表示查询所有的日志主题。
|
|
19707
|
+
:type TopicIds: list of str
|
|
19708
|
+
:param _Offset: 分页偏移量,默认值:0。
|
|
19709
|
+
:type Offset: int
|
|
19710
|
+
:param _Limit: 返回记录条数,默认值:20,最大值:100。
|
|
19711
|
+
:type Limit: int
|
|
19712
|
+
"""
|
|
19713
|
+
self._CLSRegion = None
|
|
19714
|
+
self._LogsetId = None
|
|
19715
|
+
self._TopicIds = None
|
|
19716
|
+
self._Offset = None
|
|
19717
|
+
self._Limit = None
|
|
19718
|
+
|
|
19719
|
+
@property
|
|
19720
|
+
def CLSRegion(self):
|
|
19721
|
+
return self._CLSRegion
|
|
19722
|
+
|
|
19723
|
+
@CLSRegion.setter
|
|
19724
|
+
def CLSRegion(self, CLSRegion):
|
|
19725
|
+
self._CLSRegion = CLSRegion
|
|
19726
|
+
|
|
19727
|
+
@property
|
|
19728
|
+
def LogsetId(self):
|
|
19729
|
+
return self._LogsetId
|
|
19730
|
+
|
|
19731
|
+
@LogsetId.setter
|
|
19732
|
+
def LogsetId(self, LogsetId):
|
|
19733
|
+
self._LogsetId = LogsetId
|
|
19734
|
+
|
|
19735
|
+
@property
|
|
19736
|
+
def TopicIds(self):
|
|
19737
|
+
return self._TopicIds
|
|
19738
|
+
|
|
19739
|
+
@TopicIds.setter
|
|
19740
|
+
def TopicIds(self, TopicIds):
|
|
19741
|
+
self._TopicIds = TopicIds
|
|
19742
|
+
|
|
19743
|
+
@property
|
|
19744
|
+
def Offset(self):
|
|
19745
|
+
return self._Offset
|
|
19746
|
+
|
|
19747
|
+
@Offset.setter
|
|
19748
|
+
def Offset(self, Offset):
|
|
19749
|
+
self._Offset = Offset
|
|
19750
|
+
|
|
19751
|
+
@property
|
|
19752
|
+
def Limit(self):
|
|
19753
|
+
return self._Limit
|
|
19754
|
+
|
|
19755
|
+
@Limit.setter
|
|
19756
|
+
def Limit(self, Limit):
|
|
19757
|
+
self._Limit = Limit
|
|
19758
|
+
|
|
19759
|
+
|
|
19760
|
+
def _deserialize(self, params):
|
|
19761
|
+
self._CLSRegion = params.get("CLSRegion")
|
|
19762
|
+
self._LogsetId = params.get("LogsetId")
|
|
19763
|
+
self._TopicIds = params.get("TopicIds")
|
|
19764
|
+
self._Offset = params.get("Offset")
|
|
19765
|
+
self._Limit = params.get("Limit")
|
|
19766
|
+
memeber_set = set(params.keys())
|
|
19767
|
+
for name, value in vars(self).items():
|
|
19768
|
+
property_name = name[1:]
|
|
19769
|
+
if property_name in memeber_set:
|
|
19770
|
+
memeber_set.remove(property_name)
|
|
19771
|
+
if len(memeber_set) > 0:
|
|
19772
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
19773
|
+
|
|
19774
|
+
|
|
19775
|
+
|
|
19776
|
+
class DescribeCLSTopicsResponse(AbstractModel):
|
|
19777
|
+
"""DescribeCLSTopics返回参数结构体
|
|
19778
|
+
|
|
19779
|
+
"""
|
|
19780
|
+
|
|
19781
|
+
def __init__(self):
|
|
19782
|
+
r"""
|
|
19783
|
+
:param _TotalCount: 日志主题总数量。
|
|
19784
|
+
:type TotalCount: int
|
|
19785
|
+
:param _Topics: 日志主题列表。
|
|
19786
|
+
:type Topics: list of CLSTopicInfo
|
|
19787
|
+
:param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
19788
|
+
:type RequestId: str
|
|
19789
|
+
"""
|
|
19790
|
+
self._TotalCount = None
|
|
19791
|
+
self._Topics = None
|
|
19792
|
+
self._RequestId = None
|
|
19793
|
+
|
|
19794
|
+
@property
|
|
19795
|
+
def TotalCount(self):
|
|
19796
|
+
return self._TotalCount
|
|
19797
|
+
|
|
19798
|
+
@TotalCount.setter
|
|
19799
|
+
def TotalCount(self, TotalCount):
|
|
19800
|
+
self._TotalCount = TotalCount
|
|
19801
|
+
|
|
19802
|
+
@property
|
|
19803
|
+
def Topics(self):
|
|
19804
|
+
return self._Topics
|
|
19805
|
+
|
|
19806
|
+
@Topics.setter
|
|
19807
|
+
def Topics(self, Topics):
|
|
19808
|
+
self._Topics = Topics
|
|
19809
|
+
|
|
19810
|
+
@property
|
|
19811
|
+
def RequestId(self):
|
|
19812
|
+
return self._RequestId
|
|
19813
|
+
|
|
19814
|
+
@RequestId.setter
|
|
19815
|
+
def RequestId(self, RequestId):
|
|
19816
|
+
self._RequestId = RequestId
|
|
19817
|
+
|
|
19818
|
+
|
|
19819
|
+
def _deserialize(self, params):
|
|
19820
|
+
self._TotalCount = params.get("TotalCount")
|
|
19821
|
+
if params.get("Topics") is not None:
|
|
19822
|
+
self._Topics = []
|
|
19823
|
+
for item in params.get("Topics"):
|
|
19824
|
+
obj = CLSTopicInfo()
|
|
19825
|
+
obj._deserialize(item)
|
|
19826
|
+
self._Topics.append(obj)
|
|
19827
|
+
self._RequestId = params.get("RequestId")
|
|
19828
|
+
|
|
19829
|
+
|
|
19099
19830
|
class DescribeCdnLogsRequest(AbstractModel):
|
|
19100
19831
|
"""DescribeCdnLogs请求参数结构体
|
|
19101
19832
|
|
|
@@ -24895,6 +25626,67 @@ class DescribeWordSamplesResponse(AbstractModel):
|
|
|
24895
25626
|
self._RequestId = params.get("RequestId")
|
|
24896
25627
|
|
|
24897
25628
|
|
|
25629
|
+
class DomainCLSTargetInfo(AbstractModel):
|
|
25630
|
+
"""域名推送 CLS 目标。
|
|
25631
|
+
|
|
25632
|
+
"""
|
|
25633
|
+
|
|
25634
|
+
def __init__(self):
|
|
25635
|
+
r"""
|
|
25636
|
+
:param _Domain: 域名。
|
|
25637
|
+
:type Domain: str
|
|
25638
|
+
:param _ChineseMainlandCLSTargetInfo: 中国大陆地区的日志推送目标。
|
|
25639
|
+
:type ChineseMainlandCLSTargetInfo: :class:`tencentcloud.vod.v20180717.models.AreaCLSTargetInfo`
|
|
25640
|
+
:param _OutsideChineseMainlandCLSTargetInfo: 中国大陆以外地区的日志推送目标。
|
|
25641
|
+
:type OutsideChineseMainlandCLSTargetInfo: :class:`tencentcloud.vod.v20180717.models.AreaCLSTargetInfo`
|
|
25642
|
+
"""
|
|
25643
|
+
self._Domain = None
|
|
25644
|
+
self._ChineseMainlandCLSTargetInfo = None
|
|
25645
|
+
self._OutsideChineseMainlandCLSTargetInfo = None
|
|
25646
|
+
|
|
25647
|
+
@property
|
|
25648
|
+
def Domain(self):
|
|
25649
|
+
return self._Domain
|
|
25650
|
+
|
|
25651
|
+
@Domain.setter
|
|
25652
|
+
def Domain(self, Domain):
|
|
25653
|
+
self._Domain = Domain
|
|
25654
|
+
|
|
25655
|
+
@property
|
|
25656
|
+
def ChineseMainlandCLSTargetInfo(self):
|
|
25657
|
+
return self._ChineseMainlandCLSTargetInfo
|
|
25658
|
+
|
|
25659
|
+
@ChineseMainlandCLSTargetInfo.setter
|
|
25660
|
+
def ChineseMainlandCLSTargetInfo(self, ChineseMainlandCLSTargetInfo):
|
|
25661
|
+
self._ChineseMainlandCLSTargetInfo = ChineseMainlandCLSTargetInfo
|
|
25662
|
+
|
|
25663
|
+
@property
|
|
25664
|
+
def OutsideChineseMainlandCLSTargetInfo(self):
|
|
25665
|
+
return self._OutsideChineseMainlandCLSTargetInfo
|
|
25666
|
+
|
|
25667
|
+
@OutsideChineseMainlandCLSTargetInfo.setter
|
|
25668
|
+
def OutsideChineseMainlandCLSTargetInfo(self, OutsideChineseMainlandCLSTargetInfo):
|
|
25669
|
+
self._OutsideChineseMainlandCLSTargetInfo = OutsideChineseMainlandCLSTargetInfo
|
|
25670
|
+
|
|
25671
|
+
|
|
25672
|
+
def _deserialize(self, params):
|
|
25673
|
+
self._Domain = params.get("Domain")
|
|
25674
|
+
if params.get("ChineseMainlandCLSTargetInfo") is not None:
|
|
25675
|
+
self._ChineseMainlandCLSTargetInfo = AreaCLSTargetInfo()
|
|
25676
|
+
self._ChineseMainlandCLSTargetInfo._deserialize(params.get("ChineseMainlandCLSTargetInfo"))
|
|
25677
|
+
if params.get("OutsideChineseMainlandCLSTargetInfo") is not None:
|
|
25678
|
+
self._OutsideChineseMainlandCLSTargetInfo = AreaCLSTargetInfo()
|
|
25679
|
+
self._OutsideChineseMainlandCLSTargetInfo._deserialize(params.get("OutsideChineseMainlandCLSTargetInfo"))
|
|
25680
|
+
memeber_set = set(params.keys())
|
|
25681
|
+
for name, value in vars(self).items():
|
|
25682
|
+
property_name = name[1:]
|
|
25683
|
+
if property_name in memeber_set:
|
|
25684
|
+
memeber_set.remove(property_name)
|
|
25685
|
+
if len(memeber_set) > 0:
|
|
25686
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
25687
|
+
|
|
25688
|
+
|
|
25689
|
+
|
|
24898
25690
|
class DomainDetailInfo(AbstractModel):
|
|
24899
25691
|
"""域名信息
|
|
24900
25692
|
|
|
@@ -51844,6 +52636,104 @@ class SegmentConfigureInfoForUpdate(AbstractModel):
|
|
|
51844
52636
|
|
|
51845
52637
|
|
|
51846
52638
|
|
|
52639
|
+
class SetCLSPushTargetRequest(AbstractModel):
|
|
52640
|
+
"""SetCLSPushTarget请求参数结构体
|
|
52641
|
+
|
|
52642
|
+
"""
|
|
52643
|
+
|
|
52644
|
+
def __init__(self):
|
|
52645
|
+
r"""
|
|
52646
|
+
:param _Domain: 域名。
|
|
52647
|
+
:type Domain: str
|
|
52648
|
+
:param _SubAppId: 点播应用 ID。如果要访问子应用中的资源,则将该字段填写为子应用 ID;否则无需填写该字段。
|
|
52649
|
+
:type SubAppId: int
|
|
52650
|
+
:param _ChineseMainlandCLSTargetInfo: 要设置的中国大陆地区的日志推送目标。
|
|
52651
|
+
:type ChineseMainlandCLSTargetInfo: :class:`tencentcloud.vod.v20180717.models.AreaCLSTargetInfo`
|
|
52652
|
+
:param _OutsideChineseMainlandCLSTargetInfo: 要设置的中国大陆以外地区的日志推送目标。
|
|
52653
|
+
:type OutsideChineseMainlandCLSTargetInfo: :class:`tencentcloud.vod.v20180717.models.AreaCLSTargetInfo`
|
|
52654
|
+
"""
|
|
52655
|
+
self._Domain = None
|
|
52656
|
+
self._SubAppId = None
|
|
52657
|
+
self._ChineseMainlandCLSTargetInfo = None
|
|
52658
|
+
self._OutsideChineseMainlandCLSTargetInfo = None
|
|
52659
|
+
|
|
52660
|
+
@property
|
|
52661
|
+
def Domain(self):
|
|
52662
|
+
return self._Domain
|
|
52663
|
+
|
|
52664
|
+
@Domain.setter
|
|
52665
|
+
def Domain(self, Domain):
|
|
52666
|
+
self._Domain = Domain
|
|
52667
|
+
|
|
52668
|
+
@property
|
|
52669
|
+
def SubAppId(self):
|
|
52670
|
+
return self._SubAppId
|
|
52671
|
+
|
|
52672
|
+
@SubAppId.setter
|
|
52673
|
+
def SubAppId(self, SubAppId):
|
|
52674
|
+
self._SubAppId = SubAppId
|
|
52675
|
+
|
|
52676
|
+
@property
|
|
52677
|
+
def ChineseMainlandCLSTargetInfo(self):
|
|
52678
|
+
return self._ChineseMainlandCLSTargetInfo
|
|
52679
|
+
|
|
52680
|
+
@ChineseMainlandCLSTargetInfo.setter
|
|
52681
|
+
def ChineseMainlandCLSTargetInfo(self, ChineseMainlandCLSTargetInfo):
|
|
52682
|
+
self._ChineseMainlandCLSTargetInfo = ChineseMainlandCLSTargetInfo
|
|
52683
|
+
|
|
52684
|
+
@property
|
|
52685
|
+
def OutsideChineseMainlandCLSTargetInfo(self):
|
|
52686
|
+
return self._OutsideChineseMainlandCLSTargetInfo
|
|
52687
|
+
|
|
52688
|
+
@OutsideChineseMainlandCLSTargetInfo.setter
|
|
52689
|
+
def OutsideChineseMainlandCLSTargetInfo(self, OutsideChineseMainlandCLSTargetInfo):
|
|
52690
|
+
self._OutsideChineseMainlandCLSTargetInfo = OutsideChineseMainlandCLSTargetInfo
|
|
52691
|
+
|
|
52692
|
+
|
|
52693
|
+
def _deserialize(self, params):
|
|
52694
|
+
self._Domain = params.get("Domain")
|
|
52695
|
+
self._SubAppId = params.get("SubAppId")
|
|
52696
|
+
if params.get("ChineseMainlandCLSTargetInfo") is not None:
|
|
52697
|
+
self._ChineseMainlandCLSTargetInfo = AreaCLSTargetInfo()
|
|
52698
|
+
self._ChineseMainlandCLSTargetInfo._deserialize(params.get("ChineseMainlandCLSTargetInfo"))
|
|
52699
|
+
if params.get("OutsideChineseMainlandCLSTargetInfo") is not None:
|
|
52700
|
+
self._OutsideChineseMainlandCLSTargetInfo = AreaCLSTargetInfo()
|
|
52701
|
+
self._OutsideChineseMainlandCLSTargetInfo._deserialize(params.get("OutsideChineseMainlandCLSTargetInfo"))
|
|
52702
|
+
memeber_set = set(params.keys())
|
|
52703
|
+
for name, value in vars(self).items():
|
|
52704
|
+
property_name = name[1:]
|
|
52705
|
+
if property_name in memeber_set:
|
|
52706
|
+
memeber_set.remove(property_name)
|
|
52707
|
+
if len(memeber_set) > 0:
|
|
52708
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
52709
|
+
|
|
52710
|
+
|
|
52711
|
+
|
|
52712
|
+
class SetCLSPushTargetResponse(AbstractModel):
|
|
52713
|
+
"""SetCLSPushTarget返回参数结构体
|
|
52714
|
+
|
|
52715
|
+
"""
|
|
52716
|
+
|
|
52717
|
+
def __init__(self):
|
|
52718
|
+
r"""
|
|
52719
|
+
:param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
52720
|
+
:type RequestId: str
|
|
52721
|
+
"""
|
|
52722
|
+
self._RequestId = None
|
|
52723
|
+
|
|
52724
|
+
@property
|
|
52725
|
+
def RequestId(self):
|
|
52726
|
+
return self._RequestId
|
|
52727
|
+
|
|
52728
|
+
@RequestId.setter
|
|
52729
|
+
def RequestId(self, RequestId):
|
|
52730
|
+
self._RequestId = RequestId
|
|
52731
|
+
|
|
52732
|
+
|
|
52733
|
+
def _deserialize(self, params):
|
|
52734
|
+
self._RequestId = params.get("RequestId")
|
|
52735
|
+
|
|
52736
|
+
|
|
51847
52737
|
class SetDrmKeyProviderInfoRequest(AbstractModel):
|
|
51848
52738
|
"""SetDrmKeyProviderInfo请求参数结构体
|
|
51849
52739
|
|