tencentcloud-sdk-python 3.0.1455__py2.py3-none-any.whl → 3.0.1456__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/cls/v20201016/models.py +2 -0
- tencentcloud/dlc/v20210125/dlc_client.py +23 -0
- tencentcloud/dlc/v20210125/models.py +186 -0
- tencentcloud/trtc/v20190722/models.py +4 -2
- {tencentcloud_sdk_python-3.0.1455.dist-info → tencentcloud_sdk_python-3.0.1456.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1455.dist-info → tencentcloud_sdk_python-3.0.1456.dist-info}/RECORD +10 -10
- {tencentcloud_sdk_python-3.0.1455.dist-info → tencentcloud_sdk_python-3.0.1456.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1455.dist-info → tencentcloud_sdk_python-3.0.1456.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1455.dist-info → tencentcloud_sdk_python-3.0.1456.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -10888,6 +10888,7 @@ class DataTransformResouceInfo(AbstractModel):
|
|
10888
10888
|
- 通过[获取日志主题列表](https://cloud.tencent.com/document/product/614/56454)获取日志主题Id。
|
10889
10889
|
:type TopicId: str
|
10890
10890
|
:param _Alias: 别名
|
10891
|
+
限制:不能包含字符 |。
|
10891
10892
|
:type Alias: str
|
10892
10893
|
"""
|
10893
10894
|
self._TopicId = None
|
@@ -10908,6 +10909,7 @@ class DataTransformResouceInfo(AbstractModel):
|
|
10908
10909
|
@property
|
10909
10910
|
def Alias(self):
|
10910
10911
|
"""别名
|
10912
|
+
限制:不能包含字符 |。
|
10911
10913
|
:rtype: str
|
10912
10914
|
"""
|
10913
10915
|
return self._Alias
|
@@ -1063,6 +1063,29 @@ class DlcClient(AbstractClient):
|
|
1063
1063
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1064
1064
|
|
1065
1065
|
|
1066
|
+
def CreateTcIcebergTable(self, request):
|
1067
|
+
"""创建TIceberg表
|
1068
|
+
|
1069
|
+
:param request: Request instance for CreateTcIcebergTable.
|
1070
|
+
:type request: :class:`tencentcloud.dlc.v20210125.models.CreateTcIcebergTableRequest`
|
1071
|
+
:rtype: :class:`tencentcloud.dlc.v20210125.models.CreateTcIcebergTableResponse`
|
1072
|
+
|
1073
|
+
"""
|
1074
|
+
try:
|
1075
|
+
params = request._serialize()
|
1076
|
+
headers = request.headers
|
1077
|
+
body = self.call("CreateTcIcebergTable", params, headers=headers)
|
1078
|
+
response = json.loads(body)
|
1079
|
+
model = models.CreateTcIcebergTableResponse()
|
1080
|
+
model._deserialize(response["Response"])
|
1081
|
+
return model
|
1082
|
+
except Exception as e:
|
1083
|
+
if isinstance(e, TencentCloudSDKException):
|
1084
|
+
raise
|
1085
|
+
else:
|
1086
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
1087
|
+
|
1088
|
+
|
1066
1089
|
def CreateUser(self, request):
|
1067
1090
|
"""创建用户
|
1068
1091
|
|
@@ -8707,6 +8707,192 @@ class CreateTasksResponse(AbstractModel):
|
|
8707
8707
|
self._RequestId = params.get("RequestId")
|
8708
8708
|
|
8709
8709
|
|
8710
|
+
class CreateTcIcebergTableRequest(AbstractModel):
|
8711
|
+
"""CreateTcIcebergTable请求参数结构体
|
8712
|
+
|
8713
|
+
"""
|
8714
|
+
|
8715
|
+
def __init__(self):
|
8716
|
+
r"""
|
8717
|
+
:param _TableBaseInfo: 表基本信息
|
8718
|
+
:type TableBaseInfo: :class:`tencentcloud.dlc.v20210125.models.TableBaseInfo`
|
8719
|
+
:param _Columns: 表字段信息
|
8720
|
+
:type Columns: list of TColumn
|
8721
|
+
:param _DryRun: 为true时只获取sql而不执行
|
8722
|
+
:type DryRun: bool
|
8723
|
+
:param _Partitions: 表分区信息
|
8724
|
+
:type Partitions: list of TPartition
|
8725
|
+
:param _Properties: 表属性信息
|
8726
|
+
:type Properties: list of Property
|
8727
|
+
"""
|
8728
|
+
self._TableBaseInfo = None
|
8729
|
+
self._Columns = None
|
8730
|
+
self._DryRun = None
|
8731
|
+
self._Partitions = None
|
8732
|
+
self._Properties = None
|
8733
|
+
|
8734
|
+
@property
|
8735
|
+
def TableBaseInfo(self):
|
8736
|
+
"""表基本信息
|
8737
|
+
:rtype: :class:`tencentcloud.dlc.v20210125.models.TableBaseInfo`
|
8738
|
+
"""
|
8739
|
+
return self._TableBaseInfo
|
8740
|
+
|
8741
|
+
@TableBaseInfo.setter
|
8742
|
+
def TableBaseInfo(self, TableBaseInfo):
|
8743
|
+
self._TableBaseInfo = TableBaseInfo
|
8744
|
+
|
8745
|
+
@property
|
8746
|
+
def Columns(self):
|
8747
|
+
"""表字段信息
|
8748
|
+
:rtype: list of TColumn
|
8749
|
+
"""
|
8750
|
+
return self._Columns
|
8751
|
+
|
8752
|
+
@Columns.setter
|
8753
|
+
def Columns(self, Columns):
|
8754
|
+
self._Columns = Columns
|
8755
|
+
|
8756
|
+
@property
|
8757
|
+
def DryRun(self):
|
8758
|
+
"""为true时只获取sql而不执行
|
8759
|
+
:rtype: bool
|
8760
|
+
"""
|
8761
|
+
return self._DryRun
|
8762
|
+
|
8763
|
+
@DryRun.setter
|
8764
|
+
def DryRun(self, DryRun):
|
8765
|
+
self._DryRun = DryRun
|
8766
|
+
|
8767
|
+
@property
|
8768
|
+
def Partitions(self):
|
8769
|
+
"""表分区信息
|
8770
|
+
:rtype: list of TPartition
|
8771
|
+
"""
|
8772
|
+
return self._Partitions
|
8773
|
+
|
8774
|
+
@Partitions.setter
|
8775
|
+
def Partitions(self, Partitions):
|
8776
|
+
self._Partitions = Partitions
|
8777
|
+
|
8778
|
+
@property
|
8779
|
+
def Properties(self):
|
8780
|
+
"""表属性信息
|
8781
|
+
:rtype: list of Property
|
8782
|
+
"""
|
8783
|
+
return self._Properties
|
8784
|
+
|
8785
|
+
@Properties.setter
|
8786
|
+
def Properties(self, Properties):
|
8787
|
+
self._Properties = Properties
|
8788
|
+
|
8789
|
+
|
8790
|
+
def _deserialize(self, params):
|
8791
|
+
if params.get("TableBaseInfo") is not None:
|
8792
|
+
self._TableBaseInfo = TableBaseInfo()
|
8793
|
+
self._TableBaseInfo._deserialize(params.get("TableBaseInfo"))
|
8794
|
+
if params.get("Columns") is not None:
|
8795
|
+
self._Columns = []
|
8796
|
+
for item in params.get("Columns"):
|
8797
|
+
obj = TColumn()
|
8798
|
+
obj._deserialize(item)
|
8799
|
+
self._Columns.append(obj)
|
8800
|
+
self._DryRun = params.get("DryRun")
|
8801
|
+
if params.get("Partitions") is not None:
|
8802
|
+
self._Partitions = []
|
8803
|
+
for item in params.get("Partitions"):
|
8804
|
+
obj = TPartition()
|
8805
|
+
obj._deserialize(item)
|
8806
|
+
self._Partitions.append(obj)
|
8807
|
+
if params.get("Properties") is not None:
|
8808
|
+
self._Properties = []
|
8809
|
+
for item in params.get("Properties"):
|
8810
|
+
obj = Property()
|
8811
|
+
obj._deserialize(item)
|
8812
|
+
self._Properties.append(obj)
|
8813
|
+
memeber_set = set(params.keys())
|
8814
|
+
for name, value in vars(self).items():
|
8815
|
+
property_name = name[1:]
|
8816
|
+
if property_name in memeber_set:
|
8817
|
+
memeber_set.remove(property_name)
|
8818
|
+
if len(memeber_set) > 0:
|
8819
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
8820
|
+
|
8821
|
+
|
8822
|
+
|
8823
|
+
class CreateTcIcebergTableResponse(AbstractModel):
|
8824
|
+
"""CreateTcIcebergTable返回参数结构体
|
8825
|
+
|
8826
|
+
"""
|
8827
|
+
|
8828
|
+
def __init__(self):
|
8829
|
+
r"""
|
8830
|
+
:param _SessionId: amoro的SessionId
|
8831
|
+
:type SessionId: str
|
8832
|
+
:param _SQL: 执行的sql
|
8833
|
+
:type SQL: str
|
8834
|
+
:param _DryRun: 为true时只返回sql而不实际执行
|
8835
|
+
:type DryRun: bool
|
8836
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8837
|
+
:type RequestId: str
|
8838
|
+
"""
|
8839
|
+
self._SessionId = None
|
8840
|
+
self._SQL = None
|
8841
|
+
self._DryRun = None
|
8842
|
+
self._RequestId = None
|
8843
|
+
|
8844
|
+
@property
|
8845
|
+
def SessionId(self):
|
8846
|
+
"""amoro的SessionId
|
8847
|
+
:rtype: str
|
8848
|
+
"""
|
8849
|
+
return self._SessionId
|
8850
|
+
|
8851
|
+
@SessionId.setter
|
8852
|
+
def SessionId(self, SessionId):
|
8853
|
+
self._SessionId = SessionId
|
8854
|
+
|
8855
|
+
@property
|
8856
|
+
def SQL(self):
|
8857
|
+
"""执行的sql
|
8858
|
+
:rtype: str
|
8859
|
+
"""
|
8860
|
+
return self._SQL
|
8861
|
+
|
8862
|
+
@SQL.setter
|
8863
|
+
def SQL(self, SQL):
|
8864
|
+
self._SQL = SQL
|
8865
|
+
|
8866
|
+
@property
|
8867
|
+
def DryRun(self):
|
8868
|
+
"""为true时只返回sql而不实际执行
|
8869
|
+
:rtype: bool
|
8870
|
+
"""
|
8871
|
+
return self._DryRun
|
8872
|
+
|
8873
|
+
@DryRun.setter
|
8874
|
+
def DryRun(self, DryRun):
|
8875
|
+
self._DryRun = DryRun
|
8876
|
+
|
8877
|
+
@property
|
8878
|
+
def RequestId(self):
|
8879
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8880
|
+
:rtype: str
|
8881
|
+
"""
|
8882
|
+
return self._RequestId
|
8883
|
+
|
8884
|
+
@RequestId.setter
|
8885
|
+
def RequestId(self, RequestId):
|
8886
|
+
self._RequestId = RequestId
|
8887
|
+
|
8888
|
+
|
8889
|
+
def _deserialize(self, params):
|
8890
|
+
self._SessionId = params.get("SessionId")
|
8891
|
+
self._SQL = params.get("SQL")
|
8892
|
+
self._DryRun = params.get("DryRun")
|
8893
|
+
self._RequestId = params.get("RequestId")
|
8894
|
+
|
8895
|
+
|
8710
8896
|
class CreateUserRequest(AbstractModel):
|
8711
8897
|
"""CreateUser请求参数结构体
|
8712
8898
|
|
@@ -13809,8 +13809,9 @@ class SliceParams(AbstractModel):
|
|
13809
13809
|
示例值:30
|
13810
13810
|
:type MaxIdleTime: int
|
13811
13811
|
:param _SliceAudio: 音频切片时长,默认15s 示例值:15
|
13812
|
+
取值范围15-60s
|
13812
13813
|
:type SliceAudio: int
|
13813
|
-
:param _SliceVideo: 视频截帧间隔时长,默认5s, 示例值:5
|
13814
|
+
:param _SliceVideo: 视频截帧间隔时长,默认5s, 示例值:5 取值范围5-60s
|
13814
13815
|
:type SliceVideo: int
|
13815
13816
|
:param _SubscribeStreamUserIds: 指定订阅流白名单或者黑名单。
|
13816
13817
|
:type SubscribeStreamUserIds: :class:`tencentcloud.trtc.v20190722.models.SubscribeStreamUserIds`
|
@@ -13854,6 +13855,7 @@ class SliceParams(AbstractModel):
|
|
13854
13855
|
@property
|
13855
13856
|
def SliceAudio(self):
|
13856
13857
|
"""音频切片时长,默认15s 示例值:15
|
13858
|
+
取值范围15-60s
|
13857
13859
|
:rtype: int
|
13858
13860
|
"""
|
13859
13861
|
return self._SliceAudio
|
@@ -13864,7 +13866,7 @@ class SliceParams(AbstractModel):
|
|
13864
13866
|
|
13865
13867
|
@property
|
13866
13868
|
def SliceVideo(self):
|
13867
|
-
"""视频截帧间隔时长,默认5s, 示例值:5
|
13869
|
+
"""视频截帧间隔时长,默认5s, 示例值:5 取值范围5-60s
|
13868
13870
|
:rtype: int
|
13869
13871
|
"""
|
13870
13872
|
return self._SliceVideo
|
{tencentcloud_sdk_python-3.0.1455.dist-info → tencentcloud_sdk_python-3.0.1456.dist-info}/RECORD
RENAMED
@@ -50,7 +50,7 @@ QcloudApi/modules/vod.py,sha256=l05_qYx0l5bq6LJ8mAX2YO3pRXzxY3JMdDHV1N_SRKE,679
|
|
50
50
|
QcloudApi/modules/vpc.py,sha256=JBiNpcnrAwf_UJ_UdpxQybKeCTfeveJ9R1B-vO1_w_U,679
|
51
51
|
QcloudApi/modules/wenzhi.py,sha256=hr1rRLU8TxxSfejMqV2O4alO_yXF3C0tfZMSzziu54Q,685
|
52
52
|
QcloudApi/modules/yunsou.py,sha256=JlgzMjnJaho6axFVhSTAv6DS0HLcjl0LJL02q6qI2yY,685
|
53
|
-
tencentcloud/__init__.py,sha256=
|
53
|
+
tencentcloud/__init__.py,sha256=TS-zC1npFlGmZXQXjymH8KrGtjM2Ob0VcGKhqUXUCbE,631
|
54
54
|
tencentcloud/aai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
55
55
|
tencentcloud/aai/v20180522/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
56
|
tencentcloud/aai/v20180522/aai_client.py,sha256=TS0CfKHCyAf0JjZWSnoCkz26lWtT4jwp9-usOLcAJEE,5470
|
@@ -395,7 +395,7 @@ tencentcloud/cls/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
395
395
|
tencentcloud/cls/v20201016/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
396
396
|
tencentcloud/cls/v20201016/cls_client.py,sha256=VQiVJ-9gwsriE9zSB78qoSK_cXNkMn6XPoXyBofJ31Y,112759
|
397
397
|
tencentcloud/cls/v20201016/errorcodes.py,sha256=29fXsdQFT2bdvhEvGjLSkwY72u5vyma3n0vVxDLZ_ik,11336
|
398
|
-
tencentcloud/cls/v20201016/models.py,sha256=
|
398
|
+
tencentcloud/cls/v20201016/models.py,sha256=R-nzfBoNNufc4bof8SejdrAHJRF4VLFm12pfutW6Dz0,1059675
|
399
399
|
tencentcloud/cme/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
400
400
|
tencentcloud/cme/v20191029/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
401
401
|
tencentcloud/cme/v20191029/cme_client.py,sha256=wSAV62NpuY2GuzCNKclWXzEbD1TMyW79CzDvDcqPcdw,55293
|
@@ -518,9 +518,9 @@ tencentcloud/dcdb/v20180411/errorcodes.py,sha256=y_UWMSIMqyxvt-4U7uRacTOezDrU5ui
|
|
518
518
|
tencentcloud/dcdb/v20180411/models.py,sha256=5IQ81k3qpXou2DrdNKWcimFt16TbfTmZhW7VrikoqUs,578192
|
519
519
|
tencentcloud/dlc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
520
520
|
tencentcloud/dlc/v20210125/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
521
|
-
tencentcloud/dlc/v20210125/dlc_client.py,sha256=
|
521
|
+
tencentcloud/dlc/v20210125/dlc_client.py,sha256=40-7FC-SC8C7FwPNzNoVMuG6yzb3gKylKyi_8bb2AnY,168535
|
522
522
|
tencentcloud/dlc/v20210125/errorcodes.py,sha256=ToLFEEYumXTKZ29vUQnngGcLaqfRTYcoWKlLk6xF7vA,32642
|
523
|
-
tencentcloud/dlc/v20210125/models.py,sha256=
|
523
|
+
tencentcloud/dlc/v20210125/models.py,sha256=FRYP8Wv2-naRexOmYGbBEoMQlx2lnufm4jGIKLHVjn4,1373645
|
524
524
|
tencentcloud/dnspod/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
525
525
|
tencentcloud/dnspod/v20210323/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
526
526
|
tencentcloud/dnspod/v20210323/dnspod_client.py,sha256=gbZc7OMXE2HKlZIZLxrA5554m4HA0HzXj4bpf3J_hUw,84274
|
@@ -1261,7 +1261,7 @@ tencentcloud/trro/v20220325/trro_client.py,sha256=PRRh9wvJFS1kT0wpSm_BD56vjSSxH2
|
|
1261
1261
|
tencentcloud/trtc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1262
1262
|
tencentcloud/trtc/v20190722/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1263
1263
|
tencentcloud/trtc/v20190722/errorcodes.py,sha256=xLMIY3GqMT4P3HzptYvbgmPjE64wn3EDSO-6EMb-kq4,13309
|
1264
|
-
tencentcloud/trtc/v20190722/models.py,sha256=
|
1264
|
+
tencentcloud/trtc/v20190722/models.py,sha256=UwCNjiDLzvghBYJuH4j8bJvzEnWCHy9VZdCbd3VK29g,692212
|
1265
1265
|
tencentcloud/trtc/v20190722/trtc_client.py,sha256=-V4mFFJq8qBKz9aV2G2hYnGUxUBxt8K5EBtXhadIYHs,94078
|
1266
1266
|
tencentcloud/tse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1267
1267
|
tencentcloud/tse/v20201207/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1403,8 +1403,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
1403
1403
|
tencentcloud/yunsou/v20191115/errorcodes.py,sha256=YV391ulIJZVFPtkkzGWg4n2fbxEDxJh5ji0uglbVnA0,1274
|
1404
1404
|
tencentcloud/yunsou/v20191115/models.py,sha256=jTr6sa2LfXEBd7uOgC19JRTLBXZmLGyP3QjNfGqLPyo,27653
|
1405
1405
|
tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=H2Kzv6ow4QKnLc63655ffyUZBaGSczEYf3R5UTjcjGA,2714
|
1406
|
-
tencentcloud_sdk_python-3.0.
|
1407
|
-
tencentcloud_sdk_python-3.0.
|
1408
|
-
tencentcloud_sdk_python-3.0.
|
1409
|
-
tencentcloud_sdk_python-3.0.
|
1410
|
-
tencentcloud_sdk_python-3.0.
|
1406
|
+
tencentcloud_sdk_python-3.0.1456.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
|
1407
|
+
tencentcloud_sdk_python-3.0.1456.dist-info/METADATA,sha256=yBJKwgtySvDbvk10XQjHk7Fo3T0hUEeFwNPOnnBlw_I,1613
|
1408
|
+
tencentcloud_sdk_python-3.0.1456.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
1409
|
+
tencentcloud_sdk_python-3.0.1456.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
|
1410
|
+
tencentcloud_sdk_python-3.0.1456.dist-info/RECORD,,
|
{tencentcloud_sdk_python-3.0.1455.dist-info → tencentcloud_sdk_python-3.0.1456.dist-info}/LICENSE
RENAMED
File without changes
|
{tencentcloud_sdk_python-3.0.1455.dist-info → tencentcloud_sdk_python-3.0.1456.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|