tencentcloud-sdk-python 3.0.1469__py2.py3-none-any.whl → 3.0.1470__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/ai3d/v20250513/models.py +40 -2
- tencentcloud/apm/v20210622/models.py +2 -2
- tencentcloud/cdwdoris/v20211228/models.py +52 -12
- tencentcloud/ckafka/v20190819/models.py +90 -0
- tencentcloud/hai/v20230812/errorcodes.py +3 -0
- tencentcloud/lcic/v20220817/models.py +2 -2
- tencentcloud/lke/v20231130/lke_client.py +1 -1
- tencentcloud/lke/v20231130/models.py +115 -47
- tencentcloud/lkeap/v20240522/models.py +2 -2
- tencentcloud/mps/v20190612/models.py +63 -4
- tencentcloud/ocr/v20181119/errorcodes.py +3 -0
- tencentcloud/postgres/v20170312/models.py +33 -16
- tencentcloud/tsf/v20180326/errorcodes.py +3 -3
- {tencentcloud_sdk_python-3.0.1469.dist-info → tencentcloud_sdk_python-3.0.1470.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1469.dist-info → tencentcloud_sdk_python-3.0.1470.dist-info}/RECORD +19 -19
- {tencentcloud_sdk_python-3.0.1469.dist-info → tencentcloud_sdk_python-3.0.1470.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1469.dist-info → tencentcloud_sdk_python-3.0.1470.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1469.dist-info → tencentcloud_sdk_python-3.0.1470.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
@@ -700,7 +700,7 @@ back:后视图;
|
|
700
700
|
:param _EnablePBR: 是否开启 PBR材质生成,默认 false。
|
701
701
|
:type EnablePBR: bool
|
702
702
|
:param _FaceCount: 生成3D模型的面数,默认值为500000。
|
703
|
-
可支持生成面数范围,参考值:40000-
|
703
|
+
可支持生成面数范围,参考值:40000-1500000。
|
704
704
|
:type FaceCount: int
|
705
705
|
:param _GenerateType: 生成任务类型,默认Normal,参考值:
|
706
706
|
Normal:可生成带纹理的几何模型。
|
@@ -708,6 +708,12 @@ LowPoly:可生成智能减面后的模型。
|
|
708
708
|
Geometry:可生成不带纹理的几何模型(白模),选择此任务时,EnablePBR参数不生效。
|
709
709
|
Sketch:可输入草图或线稿图生成模型,此模式下prompt和ImageUrl/ImageBase64可一起输入。
|
710
710
|
:type GenerateType: str
|
711
|
+
:param _PolygonType: 该参数仅在GenerateType中选择LowPoly模式可生效。
|
712
|
+
|
713
|
+
多边形类型,表示模型的表面由几边形网格构成,默认为triangle,参考值:
|
714
|
+
triangle: 三角形面。
|
715
|
+
quadrilateral: 四边形面与三角形面混合生成。
|
716
|
+
:type PolygonType: str
|
711
717
|
"""
|
712
718
|
self._Prompt = None
|
713
719
|
self._ImageBase64 = None
|
@@ -716,6 +722,7 @@ Sketch:可输入草图或线稿图生成模型,此模式下prompt和ImageUrl
|
|
716
722
|
self._EnablePBR = None
|
717
723
|
self._FaceCount = None
|
718
724
|
self._GenerateType = None
|
725
|
+
self._PolygonType = None
|
719
726
|
|
720
727
|
@property
|
721
728
|
def Prompt(self):
|
@@ -791,7 +798,7 @@ back:后视图;
|
|
791
798
|
@property
|
792
799
|
def FaceCount(self):
|
793
800
|
r"""生成3D模型的面数,默认值为500000。
|
794
|
-
可支持生成面数范围,参考值:40000-
|
801
|
+
可支持生成面数范围,参考值:40000-1500000。
|
795
802
|
:rtype: int
|
796
803
|
"""
|
797
804
|
return self._FaceCount
|
@@ -815,6 +822,21 @@ Sketch:可输入草图或线稿图生成模型,此模式下prompt和ImageUrl
|
|
815
822
|
def GenerateType(self, GenerateType):
|
816
823
|
self._GenerateType = GenerateType
|
817
824
|
|
825
|
+
@property
|
826
|
+
def PolygonType(self):
|
827
|
+
r"""该参数仅在GenerateType中选择LowPoly模式可生效。
|
828
|
+
|
829
|
+
多边形类型,表示模型的表面由几边形网格构成,默认为triangle,参考值:
|
830
|
+
triangle: 三角形面。
|
831
|
+
quadrilateral: 四边形面与三角形面混合生成。
|
832
|
+
:rtype: str
|
833
|
+
"""
|
834
|
+
return self._PolygonType
|
835
|
+
|
836
|
+
@PolygonType.setter
|
837
|
+
def PolygonType(self, PolygonType):
|
838
|
+
self._PolygonType = PolygonType
|
839
|
+
|
818
840
|
|
819
841
|
def _deserialize(self, params):
|
820
842
|
self._Prompt = params.get("Prompt")
|
@@ -829,6 +851,7 @@ Sketch:可输入草图或线稿图生成模型,此模式下prompt和ImageUrl
|
|
829
851
|
self._EnablePBR = params.get("EnablePBR")
|
830
852
|
self._FaceCount = params.get("FaceCount")
|
831
853
|
self._GenerateType = params.get("GenerateType")
|
854
|
+
self._PolygonType = params.get("PolygonType")
|
832
855
|
memeber_set = set(params.keys())
|
833
856
|
for name, value in vars(self).items():
|
834
857
|
property_name = name[1:]
|
@@ -1053,9 +1076,12 @@ class ViewImage(AbstractModel):
|
|
1053
1076
|
:type ViewType: str
|
1054
1077
|
:param _ViewImageUrl: 图片Url地址
|
1055
1078
|
:type ViewImageUrl: str
|
1079
|
+
:param _ViewImageBase64: 图片base64地址
|
1080
|
+
:type ViewImageBase64: str
|
1056
1081
|
"""
|
1057
1082
|
self._ViewType = None
|
1058
1083
|
self._ViewImageUrl = None
|
1084
|
+
self._ViewImageBase64 = None
|
1059
1085
|
|
1060
1086
|
@property
|
1061
1087
|
def ViewType(self):
|
@@ -1080,10 +1106,22 @@ class ViewImage(AbstractModel):
|
|
1080
1106
|
def ViewImageUrl(self, ViewImageUrl):
|
1081
1107
|
self._ViewImageUrl = ViewImageUrl
|
1082
1108
|
|
1109
|
+
@property
|
1110
|
+
def ViewImageBase64(self):
|
1111
|
+
r"""图片base64地址
|
1112
|
+
:rtype: str
|
1113
|
+
"""
|
1114
|
+
return self._ViewImageBase64
|
1115
|
+
|
1116
|
+
@ViewImageBase64.setter
|
1117
|
+
def ViewImageBase64(self, ViewImageBase64):
|
1118
|
+
self._ViewImageBase64 = ViewImageBase64
|
1119
|
+
|
1083
1120
|
|
1084
1121
|
def _deserialize(self, params):
|
1085
1122
|
self._ViewType = params.get("ViewType")
|
1086
1123
|
self._ViewImageUrl = params.get("ViewImageUrl")
|
1124
|
+
self._ViewImageBase64 = params.get("ViewImageBase64")
|
1087
1125
|
memeber_set = set(params.keys())
|
1088
1126
|
for name, value in vars(self).items():
|
1089
1127
|
property_name = name[1:]
|
@@ -2485,7 +2485,7 @@ class DescribeApmServiceMetricRequest(AbstractModel):
|
|
2485
2485
|
:type OrderBy: :class:`tencentcloud.apm.v20210622.models.OrderBy`
|
2486
2486
|
:param _Demo: 是否demo模式
|
2487
2487
|
:type Demo: bool
|
2488
|
-
:param _ServiceStatus: 应用状态筛选,可枚举的值为:health、warning、error
|
2488
|
+
:param _ServiceStatus: 应用状态筛选,可枚举的值为:health、warning、error。如果选中多个状态用逗号隔开,例如:"warning,error"
|
2489
2489
|
:type ServiceStatus: str
|
2490
2490
|
:param _Tags: 标签列表
|
2491
2491
|
:type Tags: list of ApmTag
|
@@ -2588,7 +2588,7 @@ class DescribeApmServiceMetricRequest(AbstractModel):
|
|
2588
2588
|
|
2589
2589
|
@property
|
2590
2590
|
def ServiceStatus(self):
|
2591
|
-
r"""应用状态筛选,可枚举的值为:health、warning、error
|
2591
|
+
r"""应用状态筛选,可枚举的值为:health、warning、error。如果选中多个状态用逗号隔开,例如:"warning,error"
|
2592
2592
|
:rtype: str
|
2593
2593
|
"""
|
2594
2594
|
return self._ServiceStatus
|
@@ -6572,7 +6572,11 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
6572
6572
|
|
6573
6573
|
def __init__(self):
|
6574
6574
|
r"""
|
6575
|
-
:param _InstanceState:
|
6575
|
+
:param _InstanceState: 集群状态
|
6576
|
+
Init 创建中
|
6577
|
+
Serving 运行中
|
6578
|
+
Isolated 已隔离
|
6579
|
+
Changing 变更中
|
6576
6580
|
:type InstanceState: str
|
6577
6581
|
:param _FlowCreateTime: 集群操作创建时间
|
6578
6582
|
:type FlowCreateTime: str
|
@@ -6603,7 +6607,11 @@ class DescribeInstanceStateResponse(AbstractModel):
|
|
6603
6607
|
|
6604
6608
|
@property
|
6605
6609
|
def InstanceState(self):
|
6606
|
-
r"""
|
6610
|
+
r"""集群状态
|
6611
|
+
Init 创建中
|
6612
|
+
Serving 运行中
|
6613
|
+
Isolated 已隔离
|
6614
|
+
Changing 变更中
|
6607
6615
|
:rtype: str
|
6608
6616
|
"""
|
6609
6617
|
return self._InstanceState
|
@@ -9127,14 +9135,15 @@ class InstanceInfo(AbstractModel):
|
|
9127
9135
|
|
9128
9136
|
def __init__(self):
|
9129
9137
|
r"""
|
9130
|
-
:param _InstanceId: 集群实例ID, "
|
9138
|
+
:param _InstanceId: 集群实例ID, "cdwdoris-xxxx" 字符串类型
|
9131
9139
|
:type InstanceId: str
|
9132
9140
|
:param _InstanceName: 集群实例名称
|
9133
9141
|
:type InstanceName: str
|
9134
9142
|
:param _Status: 状态,
|
9135
|
-
Init
|
9136
|
-
|
9137
|
-
|
9143
|
+
Init 创建中
|
9144
|
+
Serving 运行中
|
9145
|
+
Isolated 已隔离
|
9146
|
+
Changing 变更中
|
9138
9147
|
:type Status: str
|
9139
9148
|
:param _Version: 版本
|
9140
9149
|
:type Version: str
|
@@ -9169,7 +9178,7 @@ Modify 集群变更中;
|
|
9169
9178
|
:type Id: int
|
9170
9179
|
:param _RegionId: regionId, 表示地域
|
9171
9180
|
:type RegionId: int
|
9172
|
-
:param _ZoneDesc: 可用区说明,例如 "
|
9181
|
+
:param _ZoneDesc: 可用区说明,例如 "广州三区"
|
9173
9182
|
:type ZoneDesc: str
|
9174
9183
|
:param _FlowMsg: 错误流程说明信息
|
9175
9184
|
:type FlowMsg: str
|
@@ -9245,6 +9254,10 @@ Modify 集群变更中;
|
|
9245
9254
|
:type CosStorageSize: float
|
9246
9255
|
:param _IsMasterNonVM: 存算分离的指标 当是true 不支持新建计算组
|
9247
9256
|
:type IsMasterNonVM: bool
|
9257
|
+
:param _CosPkgCapacity: Cos容量包大小
|
9258
|
+
:type CosPkgCapacity: int
|
9259
|
+
:param _UseManagedBucket: 集群是否使用托管桶
|
9260
|
+
:type UseManagedBucket: bool
|
9248
9261
|
"""
|
9249
9262
|
self._InstanceId = None
|
9250
9263
|
self._InstanceName = None
|
@@ -9301,10 +9314,12 @@ Modify 集群变更中;
|
|
9301
9314
|
self._ComputeGroupCount = None
|
9302
9315
|
self._CosStorageSize = None
|
9303
9316
|
self._IsMasterNonVM = None
|
9317
|
+
self._CosPkgCapacity = None
|
9318
|
+
self._UseManagedBucket = None
|
9304
9319
|
|
9305
9320
|
@property
|
9306
9321
|
def InstanceId(self):
|
9307
|
-
r"""集群实例ID, "
|
9322
|
+
r"""集群实例ID, "cdwdoris-xxxx" 字符串类型
|
9308
9323
|
:rtype: str
|
9309
9324
|
"""
|
9310
9325
|
return self._InstanceId
|
@@ -9327,9 +9342,10 @@ Modify 集群变更中;
|
|
9327
9342
|
@property
|
9328
9343
|
def Status(self):
|
9329
9344
|
r"""状态,
|
9330
|
-
Init
|
9331
|
-
|
9332
|
-
|
9345
|
+
Init 创建中
|
9346
|
+
Serving 运行中
|
9347
|
+
Isolated 已隔离
|
9348
|
+
Changing 变更中
|
9333
9349
|
:rtype: str
|
9334
9350
|
"""
|
9335
9351
|
return self._Status
|
@@ -9508,7 +9524,7 @@ Modify 集群变更中;
|
|
9508
9524
|
|
9509
9525
|
@property
|
9510
9526
|
def ZoneDesc(self):
|
9511
|
-
r"""可用区说明,例如 "
|
9527
|
+
r"""可用区说明,例如 "广州三区"
|
9512
9528
|
:rtype: str
|
9513
9529
|
"""
|
9514
9530
|
return self._ZoneDesc
|
@@ -9919,6 +9935,28 @@ Modify 集群变更中;
|
|
9919
9935
|
def IsMasterNonVM(self, IsMasterNonVM):
|
9920
9936
|
self._IsMasterNonVM = IsMasterNonVM
|
9921
9937
|
|
9938
|
+
@property
|
9939
|
+
def CosPkgCapacity(self):
|
9940
|
+
r"""Cos容量包大小
|
9941
|
+
:rtype: int
|
9942
|
+
"""
|
9943
|
+
return self._CosPkgCapacity
|
9944
|
+
|
9945
|
+
@CosPkgCapacity.setter
|
9946
|
+
def CosPkgCapacity(self, CosPkgCapacity):
|
9947
|
+
self._CosPkgCapacity = CosPkgCapacity
|
9948
|
+
|
9949
|
+
@property
|
9950
|
+
def UseManagedBucket(self):
|
9951
|
+
r"""集群是否使用托管桶
|
9952
|
+
:rtype: bool
|
9953
|
+
"""
|
9954
|
+
return self._UseManagedBucket
|
9955
|
+
|
9956
|
+
@UseManagedBucket.setter
|
9957
|
+
def UseManagedBucket(self, UseManagedBucket):
|
9958
|
+
self._UseManagedBucket = UseManagedBucket
|
9959
|
+
|
9922
9960
|
|
9923
9961
|
def _deserialize(self, params):
|
9924
9962
|
self._InstanceId = params.get("InstanceId")
|
@@ -9989,6 +10027,8 @@ Modify 集群变更中;
|
|
9989
10027
|
self._ComputeGroupCount = params.get("ComputeGroupCount")
|
9990
10028
|
self._CosStorageSize = params.get("CosStorageSize")
|
9991
10029
|
self._IsMasterNonVM = params.get("IsMasterNonVM")
|
10030
|
+
self._CosPkgCapacity = params.get("CosPkgCapacity")
|
10031
|
+
self._UseManagedBucket = params.get("UseManagedBucket")
|
9992
10032
|
memeber_set = set(params.keys())
|
9993
10033
|
for name, value in vars(self).items():
|
9994
10034
|
property_name = name[1:]
|
@@ -22098,12 +22098,30 @@ class KafkaConnectParam(AbstractModel):
|
|
22098
22098
|
:type BrokerAddress: str
|
22099
22099
|
:param _Region: CKafka连接源的实例资源地域, 跨地域时必填
|
22100
22100
|
:type Region: str
|
22101
|
+
:param _NetworkType: 网络类型:PUBLIC公网;VPC
|
22102
|
+
:type NetworkType: str
|
22103
|
+
:param _UniqVpcId: vpcId,NetworkType=VPC时必传
|
22104
|
+
:type UniqVpcId: str
|
22105
|
+
:param _ServiceVip: vip,NetworkType=VPC时必传
|
22106
|
+
:type ServiceVip: str
|
22107
|
+
:param _Port: 端口,NetworkType=VPC时必传
|
22108
|
+
:type Port: int
|
22109
|
+
:param _CrossNetResourceUniqueId: 跨云同步下需要客户传递唯一Id标志一组资源
|
22110
|
+
:type CrossNetResourceUniqueId: str
|
22111
|
+
:param _CrossNetVpcSubNetId: 跨云子网ID
|
22112
|
+
:type CrossNetVpcSubNetId: str
|
22101
22113
|
"""
|
22102
22114
|
self._Resource = None
|
22103
22115
|
self._SelfBuilt = None
|
22104
22116
|
self._IsUpdate = None
|
22105
22117
|
self._BrokerAddress = None
|
22106
22118
|
self._Region = None
|
22119
|
+
self._NetworkType = None
|
22120
|
+
self._UniqVpcId = None
|
22121
|
+
self._ServiceVip = None
|
22122
|
+
self._Port = None
|
22123
|
+
self._CrossNetResourceUniqueId = None
|
22124
|
+
self._CrossNetVpcSubNetId = None
|
22107
22125
|
|
22108
22126
|
@property
|
22109
22127
|
def Resource(self):
|
@@ -22161,6 +22179,72 @@ class KafkaConnectParam(AbstractModel):
|
|
22161
22179
|
def Region(self, Region):
|
22162
22180
|
self._Region = Region
|
22163
22181
|
|
22182
|
+
@property
|
22183
|
+
def NetworkType(self):
|
22184
|
+
r"""网络类型:PUBLIC公网;VPC
|
22185
|
+
:rtype: str
|
22186
|
+
"""
|
22187
|
+
return self._NetworkType
|
22188
|
+
|
22189
|
+
@NetworkType.setter
|
22190
|
+
def NetworkType(self, NetworkType):
|
22191
|
+
self._NetworkType = NetworkType
|
22192
|
+
|
22193
|
+
@property
|
22194
|
+
def UniqVpcId(self):
|
22195
|
+
r"""vpcId,NetworkType=VPC时必传
|
22196
|
+
:rtype: str
|
22197
|
+
"""
|
22198
|
+
return self._UniqVpcId
|
22199
|
+
|
22200
|
+
@UniqVpcId.setter
|
22201
|
+
def UniqVpcId(self, UniqVpcId):
|
22202
|
+
self._UniqVpcId = UniqVpcId
|
22203
|
+
|
22204
|
+
@property
|
22205
|
+
def ServiceVip(self):
|
22206
|
+
r"""vip,NetworkType=VPC时必传
|
22207
|
+
:rtype: str
|
22208
|
+
"""
|
22209
|
+
return self._ServiceVip
|
22210
|
+
|
22211
|
+
@ServiceVip.setter
|
22212
|
+
def ServiceVip(self, ServiceVip):
|
22213
|
+
self._ServiceVip = ServiceVip
|
22214
|
+
|
22215
|
+
@property
|
22216
|
+
def Port(self):
|
22217
|
+
r"""端口,NetworkType=VPC时必传
|
22218
|
+
:rtype: int
|
22219
|
+
"""
|
22220
|
+
return self._Port
|
22221
|
+
|
22222
|
+
@Port.setter
|
22223
|
+
def Port(self, Port):
|
22224
|
+
self._Port = Port
|
22225
|
+
|
22226
|
+
@property
|
22227
|
+
def CrossNetResourceUniqueId(self):
|
22228
|
+
r"""跨云同步下需要客户传递唯一Id标志一组资源
|
22229
|
+
:rtype: str
|
22230
|
+
"""
|
22231
|
+
return self._CrossNetResourceUniqueId
|
22232
|
+
|
22233
|
+
@CrossNetResourceUniqueId.setter
|
22234
|
+
def CrossNetResourceUniqueId(self, CrossNetResourceUniqueId):
|
22235
|
+
self._CrossNetResourceUniqueId = CrossNetResourceUniqueId
|
22236
|
+
|
22237
|
+
@property
|
22238
|
+
def CrossNetVpcSubNetId(self):
|
22239
|
+
r"""跨云子网ID
|
22240
|
+
:rtype: str
|
22241
|
+
"""
|
22242
|
+
return self._CrossNetVpcSubNetId
|
22243
|
+
|
22244
|
+
@CrossNetVpcSubNetId.setter
|
22245
|
+
def CrossNetVpcSubNetId(self, CrossNetVpcSubNetId):
|
22246
|
+
self._CrossNetVpcSubNetId = CrossNetVpcSubNetId
|
22247
|
+
|
22164
22248
|
|
22165
22249
|
def _deserialize(self, params):
|
22166
22250
|
self._Resource = params.get("Resource")
|
@@ -22168,6 +22252,12 @@ class KafkaConnectParam(AbstractModel):
|
|
22168
22252
|
self._IsUpdate = params.get("IsUpdate")
|
22169
22253
|
self._BrokerAddress = params.get("BrokerAddress")
|
22170
22254
|
self._Region = params.get("Region")
|
22255
|
+
self._NetworkType = params.get("NetworkType")
|
22256
|
+
self._UniqVpcId = params.get("UniqVpcId")
|
22257
|
+
self._ServiceVip = params.get("ServiceVip")
|
22258
|
+
self._Port = params.get("Port")
|
22259
|
+
self._CrossNetResourceUniqueId = params.get("CrossNetResourceUniqueId")
|
22260
|
+
self._CrossNetVpcSubNetId = params.get("CrossNetVpcSubNetId")
|
22171
22261
|
memeber_set = set(params.keys())
|
22172
22262
|
for name, value in vars(self).items():
|
22173
22263
|
property_name = name[1:]
|
@@ -128,6 +128,9 @@ RESOURCEINSUFFICIENT_BUNDLEINVENTORYSHORTAGE = 'ResourceInsufficient.BundleInven
|
|
128
128
|
# 高性能应用服务相关角色获取失败,无法完成操作
|
129
129
|
UNAUTHORIZEDOPERATION_GETROLEERROR = 'UnauthorizedOperation.GetRoleError'
|
130
130
|
|
131
|
+
# token不正确
|
132
|
+
UNAUTHORIZEDOPERATION_INVALIDTOKEN = 'UnauthorizedOperation.InvalidToken'
|
133
|
+
|
131
134
|
# 用户账号的网络类型是传统型,不允许使用HAI
|
132
135
|
UNAUTHORIZEDOPERATION_UNAUTHORIZEDNETWORKUSER = 'UnauthorizedOperation.UnauthorizedNetworkUser'
|
133
136
|
|
@@ -734,7 +734,7 @@ class BatchCreateRoomRequest(AbstractModel):
|
|
734
734
|
r"""
|
735
735
|
:param _SdkAppId: 低代码平台的SdkAppId。
|
736
736
|
:type SdkAppId: int
|
737
|
-
:param _RoomInfos:
|
737
|
+
:param _RoomInfos: 批量创建课堂的配置信息
|
738
738
|
:type RoomInfos: list of RoomInfo
|
739
739
|
"""
|
740
740
|
self._SdkAppId = None
|
@@ -753,7 +753,7 @@ class BatchCreateRoomRequest(AbstractModel):
|
|
753
753
|
|
754
754
|
@property
|
755
755
|
def RoomInfos(self):
|
756
|
-
r"""
|
756
|
+
r"""批量创建课堂的配置信息
|
757
757
|
:rtype: list of RoomInfo
|
758
758
|
"""
|
759
759
|
return self._RoomInfos
|
@@ -741,7 +741,7 @@ class LkeClient(AbstractClient):
|
|
741
741
|
|
742
742
|
|
743
743
|
def DescribeNodeRun(self, request):
|
744
|
-
r"""通过DescribeWorkflowRun
|
744
|
+
r"""通过DescribeWorkflowRun接口获取了工作流异步运行的整体内容,其中包含了基本的节点信息,再通过本接口可查看节点的运行详情(包括输入、输出、日志等)。
|
745
745
|
|
746
746
|
:param request: Request instance for DescribeNodeRun.
|
747
747
|
:type request: :class:`tencentcloud.lke.v20231130.models.DescribeNodeRunRequest`
|
@@ -7247,31 +7247,20 @@ class CreateWorkflowRunRequest(AbstractModel):
|
|
7247
7247
|
|
7248
7248
|
def __init__(self):
|
7249
7249
|
r"""
|
7250
|
-
:param _RunEnv: 运行环境。0: 测试环境; 1: 正式环境
|
7251
|
-
:type RunEnv: int
|
7252
7250
|
:param _AppBizId: 应用ID
|
7253
7251
|
:type AppBizId: str
|
7252
|
+
:param _RunEnv: 运行环境。0: 测试环境; 1: 正式环境
|
7253
|
+
:type RunEnv: int
|
7254
7254
|
:param _Query: 用户输入的内容
|
7255
7255
|
:type Query: str
|
7256
7256
|
:param _CustomVariables: API参数配置
|
7257
7257
|
:type CustomVariables: list of CustomVariable
|
7258
7258
|
"""
|
7259
|
-
self._RunEnv = None
|
7260
7259
|
self._AppBizId = None
|
7260
|
+
self._RunEnv = None
|
7261
7261
|
self._Query = None
|
7262
7262
|
self._CustomVariables = None
|
7263
7263
|
|
7264
|
-
@property
|
7265
|
-
def RunEnv(self):
|
7266
|
-
r"""运行环境。0: 测试环境; 1: 正式环境
|
7267
|
-
:rtype: int
|
7268
|
-
"""
|
7269
|
-
return self._RunEnv
|
7270
|
-
|
7271
|
-
@RunEnv.setter
|
7272
|
-
def RunEnv(self, RunEnv):
|
7273
|
-
self._RunEnv = RunEnv
|
7274
|
-
|
7275
7264
|
@property
|
7276
7265
|
def AppBizId(self):
|
7277
7266
|
r"""应用ID
|
@@ -7283,6 +7272,17 @@ class CreateWorkflowRunRequest(AbstractModel):
|
|
7283
7272
|
def AppBizId(self, AppBizId):
|
7284
7273
|
self._AppBizId = AppBizId
|
7285
7274
|
|
7275
|
+
@property
|
7276
|
+
def RunEnv(self):
|
7277
|
+
r"""运行环境。0: 测试环境; 1: 正式环境
|
7278
|
+
:rtype: int
|
7279
|
+
"""
|
7280
|
+
return self._RunEnv
|
7281
|
+
|
7282
|
+
@RunEnv.setter
|
7283
|
+
def RunEnv(self, RunEnv):
|
7284
|
+
self._RunEnv = RunEnv
|
7285
|
+
|
7286
7286
|
@property
|
7287
7287
|
def Query(self):
|
7288
7288
|
r"""用户输入的内容
|
@@ -7307,8 +7307,8 @@ class CreateWorkflowRunRequest(AbstractModel):
|
|
7307
7307
|
|
7308
7308
|
|
7309
7309
|
def _deserialize(self, params):
|
7310
|
-
self._RunEnv = params.get("RunEnv")
|
7311
7310
|
self._AppBizId = params.get("AppBizId")
|
7311
|
+
self._RunEnv = params.get("RunEnv")
|
7312
7312
|
self._Query = params.get("Query")
|
7313
7313
|
if params.get("CustomVariables") is not None:
|
7314
7314
|
self._CustomVariables = []
|
@@ -16613,6 +16613,42 @@ class IgnoreUnsatisfiedReplyResponse(AbstractModel):
|
|
16613
16613
|
self._RequestId = params.get("RequestId")
|
16614
16614
|
|
16615
16615
|
|
16616
|
+
class InputBoxConfig(AbstractModel):
|
16617
|
+
r"""输入框配置
|
16618
|
+
|
16619
|
+
"""
|
16620
|
+
|
16621
|
+
def __init__(self):
|
16622
|
+
r"""
|
16623
|
+
:param _InputBoxButtons: 输入框按钮,1:上传图片、2:上传文档,3:腾讯文档,4:联网搜索
|
16624
|
+
:type InputBoxButtons: list of int non-negative
|
16625
|
+
"""
|
16626
|
+
self._InputBoxButtons = None
|
16627
|
+
|
16628
|
+
@property
|
16629
|
+
def InputBoxButtons(self):
|
16630
|
+
r"""输入框按钮,1:上传图片、2:上传文档,3:腾讯文档,4:联网搜索
|
16631
|
+
:rtype: list of int non-negative
|
16632
|
+
"""
|
16633
|
+
return self._InputBoxButtons
|
16634
|
+
|
16635
|
+
@InputBoxButtons.setter
|
16636
|
+
def InputBoxButtons(self, InputBoxButtons):
|
16637
|
+
self._InputBoxButtons = InputBoxButtons
|
16638
|
+
|
16639
|
+
|
16640
|
+
def _deserialize(self, params):
|
16641
|
+
self._InputBoxButtons = params.get("InputBoxButtons")
|
16642
|
+
memeber_set = set(params.keys())
|
16643
|
+
for name, value in vars(self).items():
|
16644
|
+
property_name = name[1:]
|
16645
|
+
if property_name in memeber_set:
|
16646
|
+
memeber_set.remove(property_name)
|
16647
|
+
if len(memeber_set) > 0:
|
16648
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
16649
|
+
|
16650
|
+
|
16651
|
+
|
16616
16652
|
class IntentAchievement(AbstractModel):
|
16617
16653
|
r"""意图达成方式
|
16618
16654
|
|
@@ -18123,6 +18159,8 @@ class KnowledgeQaOutput(AbstractModel):
|
|
18123
18159
|
:param _RecommendedPromptMode: 推荐问模式,0.结合知识库&对话历史推荐问题Prompt(默认) 1.仅结合知识库输出推荐问的prompt
|
18124
18160
|
注意:此字段可能返回 null,表示取不到有效值。
|
18125
18161
|
:type RecommendedPromptMode: int
|
18162
|
+
:param _InputBoxConfig: 输入框按钮配置
|
18163
|
+
:type InputBoxConfig: :class:`tencentcloud.lke.v20231130.models.InputBoxConfig`
|
18126
18164
|
"""
|
18127
18165
|
self._Method = None
|
18128
18166
|
self._UseGeneralKnowledge = None
|
@@ -18132,6 +18170,7 @@ class KnowledgeQaOutput(AbstractModel):
|
|
18132
18170
|
self._QuestionClarifyKeywords = None
|
18133
18171
|
self._UseRecommended = None
|
18134
18172
|
self._RecommendedPromptMode = None
|
18173
|
+
self._InputBoxConfig = None
|
18135
18174
|
|
18136
18175
|
@property
|
18137
18176
|
def Method(self):
|
@@ -18229,6 +18268,17 @@ class KnowledgeQaOutput(AbstractModel):
|
|
18229
18268
|
def RecommendedPromptMode(self, RecommendedPromptMode):
|
18230
18269
|
self._RecommendedPromptMode = RecommendedPromptMode
|
18231
18270
|
|
18271
|
+
@property
|
18272
|
+
def InputBoxConfig(self):
|
18273
|
+
r"""输入框按钮配置
|
18274
|
+
:rtype: :class:`tencentcloud.lke.v20231130.models.InputBoxConfig`
|
18275
|
+
"""
|
18276
|
+
return self._InputBoxConfig
|
18277
|
+
|
18278
|
+
@InputBoxConfig.setter
|
18279
|
+
def InputBoxConfig(self, InputBoxConfig):
|
18280
|
+
self._InputBoxConfig = InputBoxConfig
|
18281
|
+
|
18232
18282
|
|
18233
18283
|
def _deserialize(self, params):
|
18234
18284
|
self._Method = params.get("Method")
|
@@ -18239,6 +18289,9 @@ class KnowledgeQaOutput(AbstractModel):
|
|
18239
18289
|
self._QuestionClarifyKeywords = params.get("QuestionClarifyKeywords")
|
18240
18290
|
self._UseRecommended = params.get("UseRecommended")
|
18241
18291
|
self._RecommendedPromptMode = params.get("RecommendedPromptMode")
|
18292
|
+
if params.get("InputBoxConfig") is not None:
|
18293
|
+
self._InputBoxConfig = InputBoxConfig()
|
18294
|
+
self._InputBoxConfig._deserialize(params.get("InputBoxConfig"))
|
18242
18295
|
memeber_set = set(params.keys())
|
18243
18296
|
for name, value in vars(self).items():
|
18244
18297
|
property_name = name[1:]
|
@@ -23827,37 +23880,26 @@ class ListWorkflowRunsRequest(AbstractModel):
|
|
23827
23880
|
|
23828
23881
|
def __init__(self):
|
23829
23882
|
r"""
|
23830
|
-
:param _RunEnv: 运行环境。0: 测试环境; 1: 正式环境
|
23831
|
-
:type RunEnv: int
|
23832
23883
|
:param _AppBizId: 应用ID
|
23833
23884
|
:type AppBizId: str
|
23834
|
-
:param _Page: 页码
|
23835
|
-
:type Page: int
|
23836
23885
|
:param _PageSize: 每页数量
|
23837
23886
|
:type PageSize: int
|
23887
|
+
:param _RunEnv: 运行环境。0: 测试环境; 1: 正式环境
|
23888
|
+
:type RunEnv: int
|
23889
|
+
:param _Page: 页码
|
23890
|
+
:type Page: int
|
23838
23891
|
:param _LoginUin: 登录用户主账号(集成商模式必填)
|
23839
23892
|
:type LoginUin: str
|
23840
23893
|
:param _LoginSubAccountUin: 登录用户子账号(集成商模式必填)
|
23841
23894
|
:type LoginSubAccountUin: str
|
23842
23895
|
"""
|
23843
|
-
self._RunEnv = None
|
23844
23896
|
self._AppBizId = None
|
23845
|
-
self._Page = None
|
23846
23897
|
self._PageSize = None
|
23898
|
+
self._RunEnv = None
|
23899
|
+
self._Page = None
|
23847
23900
|
self._LoginUin = None
|
23848
23901
|
self._LoginSubAccountUin = None
|
23849
23902
|
|
23850
|
-
@property
|
23851
|
-
def RunEnv(self):
|
23852
|
-
r"""运行环境。0: 测试环境; 1: 正式环境
|
23853
|
-
:rtype: int
|
23854
|
-
"""
|
23855
|
-
return self._RunEnv
|
23856
|
-
|
23857
|
-
@RunEnv.setter
|
23858
|
-
def RunEnv(self, RunEnv):
|
23859
|
-
self._RunEnv = RunEnv
|
23860
|
-
|
23861
23903
|
@property
|
23862
23904
|
def AppBizId(self):
|
23863
23905
|
r"""应用ID
|
@@ -23869,17 +23911,6 @@ class ListWorkflowRunsRequest(AbstractModel):
|
|
23869
23911
|
def AppBizId(self, AppBizId):
|
23870
23912
|
self._AppBizId = AppBizId
|
23871
23913
|
|
23872
|
-
@property
|
23873
|
-
def Page(self):
|
23874
|
-
r"""页码
|
23875
|
-
:rtype: int
|
23876
|
-
"""
|
23877
|
-
return self._Page
|
23878
|
-
|
23879
|
-
@Page.setter
|
23880
|
-
def Page(self, Page):
|
23881
|
-
self._Page = Page
|
23882
|
-
|
23883
23914
|
@property
|
23884
23915
|
def PageSize(self):
|
23885
23916
|
r"""每页数量
|
@@ -23891,6 +23922,28 @@ class ListWorkflowRunsRequest(AbstractModel):
|
|
23891
23922
|
def PageSize(self, PageSize):
|
23892
23923
|
self._PageSize = PageSize
|
23893
23924
|
|
23925
|
+
@property
|
23926
|
+
def RunEnv(self):
|
23927
|
+
r"""运行环境。0: 测试环境; 1: 正式环境
|
23928
|
+
:rtype: int
|
23929
|
+
"""
|
23930
|
+
return self._RunEnv
|
23931
|
+
|
23932
|
+
@RunEnv.setter
|
23933
|
+
def RunEnv(self, RunEnv):
|
23934
|
+
self._RunEnv = RunEnv
|
23935
|
+
|
23936
|
+
@property
|
23937
|
+
def Page(self):
|
23938
|
+
r"""页码
|
23939
|
+
:rtype: int
|
23940
|
+
"""
|
23941
|
+
return self._Page
|
23942
|
+
|
23943
|
+
@Page.setter
|
23944
|
+
def Page(self, Page):
|
23945
|
+
self._Page = Page
|
23946
|
+
|
23894
23947
|
@property
|
23895
23948
|
def LoginUin(self):
|
23896
23949
|
r"""登录用户主账号(集成商模式必填)
|
@@ -23915,10 +23968,10 @@ class ListWorkflowRunsRequest(AbstractModel):
|
|
23915
23968
|
|
23916
23969
|
|
23917
23970
|
def _deserialize(self, params):
|
23918
|
-
self._RunEnv = params.get("RunEnv")
|
23919
23971
|
self._AppBizId = params.get("AppBizId")
|
23920
|
-
self._Page = params.get("Page")
|
23921
23972
|
self._PageSize = params.get("PageSize")
|
23973
|
+
self._RunEnv = params.get("RunEnv")
|
23974
|
+
self._Page = params.get("Page")
|
23922
23975
|
self._LoginUin = params.get("LoginUin")
|
23923
23976
|
self._LoginSubAccountUin = params.get("LoginSubAccountUin")
|
23924
23977
|
memeber_set = set(params.keys())
|
@@ -30229,11 +30282,14 @@ class RetryDocParseRequest(AbstractModel):
|
|
30229
30282
|
r"""
|
30230
30283
|
:param _BotBizId: 应用ID
|
30231
30284
|
:type BotBizId: str
|
30232
|
-
:param _DocBizId:
|
30285
|
+
:param _DocBizId: 废弃
|
30233
30286
|
:type DocBizId: str
|
30287
|
+
:param _DocBizIds: 集合最大上限50个,DocBizIds有值使用DocBizIds,为空时则使用DocBizId(兼容废弃字段)
|
30288
|
+
:type DocBizIds: list of str
|
30234
30289
|
"""
|
30235
30290
|
self._BotBizId = None
|
30236
30291
|
self._DocBizId = None
|
30292
|
+
self._DocBizIds = None
|
30237
30293
|
|
30238
30294
|
@property
|
30239
30295
|
def BotBizId(self):
|
@@ -30248,7 +30304,7 @@ class RetryDocParseRequest(AbstractModel):
|
|
30248
30304
|
|
30249
30305
|
@property
|
30250
30306
|
def DocBizId(self):
|
30251
|
-
r"""
|
30307
|
+
r"""废弃
|
30252
30308
|
:rtype: str
|
30253
30309
|
"""
|
30254
30310
|
return self._DocBizId
|
@@ -30257,10 +30313,22 @@ class RetryDocParseRequest(AbstractModel):
|
|
30257
30313
|
def DocBizId(self, DocBizId):
|
30258
30314
|
self._DocBizId = DocBizId
|
30259
30315
|
|
30316
|
+
@property
|
30317
|
+
def DocBizIds(self):
|
30318
|
+
r"""集合最大上限50个,DocBizIds有值使用DocBizIds,为空时则使用DocBizId(兼容废弃字段)
|
30319
|
+
:rtype: list of str
|
30320
|
+
"""
|
30321
|
+
return self._DocBizIds
|
30322
|
+
|
30323
|
+
@DocBizIds.setter
|
30324
|
+
def DocBizIds(self, DocBizIds):
|
30325
|
+
self._DocBizIds = DocBizIds
|
30326
|
+
|
30260
30327
|
|
30261
30328
|
def _deserialize(self, params):
|
30262
30329
|
self._BotBizId = params.get("BotBizId")
|
30263
30330
|
self._DocBizId = params.get("DocBizId")
|
30331
|
+
self._DocBizIds = params.get("DocBizIds")
|
30264
30332
|
memeber_set = set(params.keys())
|
30265
30333
|
for name, value in vars(self).items():
|
30266
30334
|
property_name = name[1:]
|
@@ -2543,7 +2543,7 @@ class GetEmbeddingRequest(AbstractModel):
|
|
2543
2543
|
|
2544
2544
|
def __init__(self):
|
2545
2545
|
r"""
|
2546
|
-
:param _Model: 说明:选择生成向量的模型备注:可选[lke-text-embedding-v1,lke-text-embedding-v2]
|
2546
|
+
:param _Model: 说明:选择生成向量的模型备注:可选[lke-text-embedding-v1,lke-text-embedding-v2,youtu-embedding-llm-v1]
|
2547
2547
|
:type Model: str
|
2548
2548
|
:param _Inputs: 说明:需要 embedding 的文本
|
2549
2549
|
备注:单条query最多2000个字符,总条数最多7条
|
@@ -2560,7 +2560,7 @@ class GetEmbeddingRequest(AbstractModel):
|
|
2560
2560
|
|
2561
2561
|
@property
|
2562
2562
|
def Model(self):
|
2563
|
-
r"""说明:选择生成向量的模型备注:可选[lke-text-embedding-v1,lke-text-embedding-v2]
|
2563
|
+
r"""说明:选择生成向量的模型备注:可选[lke-text-embedding-v1,lke-text-embedding-v2,youtu-embedding-llm-v1]
|
2564
2564
|
:rtype: str
|
2565
2565
|
"""
|
2566
2566
|
return self._Model
|
@@ -1946,10 +1946,18 @@ class AddOnSubtitle(AbstractModel):
|
|
1946
1946
|
注意:仅支持中文、英文、数字、空格、下划线(_)、短横线(-)、句点(.)和中英文括号,长度不能超过64个字符。
|
1947
1947
|
注意:此字段可能返回 null,表示取不到有效值。
|
1948
1948
|
:type SubtitleName: str
|
1949
|
+
:param _OutputFormat: 字幕输出格式。取值{"WebVTT","TTML"}。
|
1950
|
+
默认值:"WebVTT"
|
1951
|
+
:type OutputFormat: str
|
1952
|
+
:param _DefaultTrack: 默认字幕轨道。为true时指定当前字幕为默认字幕轨道,最多可指定1条默认字幕轨道。
|
1953
|
+
默认值:false
|
1954
|
+
:type DefaultTrack: bool
|
1949
1955
|
"""
|
1950
1956
|
self._Type = None
|
1951
1957
|
self._Subtitle = None
|
1952
1958
|
self._SubtitleName = None
|
1959
|
+
self._OutputFormat = None
|
1960
|
+
self._DefaultTrack = None
|
1953
1961
|
|
1954
1962
|
@property
|
1955
1963
|
def Type(self):
|
@@ -1991,6 +1999,30 @@ class AddOnSubtitle(AbstractModel):
|
|
1991
1999
|
def SubtitleName(self, SubtitleName):
|
1992
2000
|
self._SubtitleName = SubtitleName
|
1993
2001
|
|
2002
|
+
@property
|
2003
|
+
def OutputFormat(self):
|
2004
|
+
r"""字幕输出格式。取值{"WebVTT","TTML"}。
|
2005
|
+
默认值:"WebVTT"
|
2006
|
+
:rtype: str
|
2007
|
+
"""
|
2008
|
+
return self._OutputFormat
|
2009
|
+
|
2010
|
+
@OutputFormat.setter
|
2011
|
+
def OutputFormat(self, OutputFormat):
|
2012
|
+
self._OutputFormat = OutputFormat
|
2013
|
+
|
2014
|
+
@property
|
2015
|
+
def DefaultTrack(self):
|
2016
|
+
r"""默认字幕轨道。为true时指定当前字幕为默认字幕轨道,最多可指定1条默认字幕轨道。
|
2017
|
+
默认值:false
|
2018
|
+
:rtype: bool
|
2019
|
+
"""
|
2020
|
+
return self._DefaultTrack
|
2021
|
+
|
2022
|
+
@DefaultTrack.setter
|
2023
|
+
def DefaultTrack(self, DefaultTrack):
|
2024
|
+
self._DefaultTrack = DefaultTrack
|
2025
|
+
|
1994
2026
|
|
1995
2027
|
def _deserialize(self, params):
|
1996
2028
|
self._Type = params.get("Type")
|
@@ -1998,6 +2030,8 @@ class AddOnSubtitle(AbstractModel):
|
|
1998
2030
|
self._Subtitle = MediaInputInfo()
|
1999
2031
|
self._Subtitle._deserialize(params.get("Subtitle"))
|
2000
2032
|
self._SubtitleName = params.get("SubtitleName")
|
2033
|
+
self._OutputFormat = params.get("OutputFormat")
|
2034
|
+
self._DefaultTrack = params.get("DefaultTrack")
|
2001
2035
|
memeber_set = set(params.keys())
|
2002
2036
|
for name, value in vars(self).items():
|
2003
2037
|
property_name = name[1:]
|
@@ -32091,8 +32125,13 @@ class DescribeTasksRequest(AbstractModel):
|
|
32091
32125
|
|
32092
32126
|
def __init__(self):
|
32093
32127
|
r"""
|
32094
|
-
:param _Status:
|
32128
|
+
:param _Status: 任务状态过滤条件,可选值:
|
32129
|
+
- WAITING(等待中)
|
32130
|
+
- PROCESSING(处理中)
|
32131
|
+
- FINISH(已完成)。
|
32095
32132
|
:type Status: str
|
32133
|
+
:param _SubTaskHasFailed: 任务结束时子任务是否有失败。
|
32134
|
+
:type SubTaskHasFailed: bool
|
32096
32135
|
:param _Limit: 返回记录条数,默认值:10,最大值:100。
|
32097
32136
|
:type Limit: int
|
32098
32137
|
:param _ScrollToken: 翻页标识,分批拉取时使用:当单次请求无法拉取所有数据,接口将会返回 ScrollToken,下一次请求携带该 Token,将会从下一条记录开始获取。
|
@@ -32103,6 +32142,7 @@ class DescribeTasksRequest(AbstractModel):
|
|
32103
32142
|
:type EndTime: str
|
32104
32143
|
"""
|
32105
32144
|
self._Status = None
|
32145
|
+
self._SubTaskHasFailed = None
|
32106
32146
|
self._Limit = None
|
32107
32147
|
self._ScrollToken = None
|
32108
32148
|
self._StartTime = None
|
@@ -32110,7 +32150,10 @@ class DescribeTasksRequest(AbstractModel):
|
|
32110
32150
|
|
32111
32151
|
@property
|
32112
32152
|
def Status(self):
|
32113
|
-
r"""
|
32153
|
+
r"""任务状态过滤条件,可选值:
|
32154
|
+
- WAITING(等待中)
|
32155
|
+
- PROCESSING(处理中)
|
32156
|
+
- FINISH(已完成)。
|
32114
32157
|
:rtype: str
|
32115
32158
|
"""
|
32116
32159
|
return self._Status
|
@@ -32119,6 +32162,17 @@ class DescribeTasksRequest(AbstractModel):
|
|
32119
32162
|
def Status(self, Status):
|
32120
32163
|
self._Status = Status
|
32121
32164
|
|
32165
|
+
@property
|
32166
|
+
def SubTaskHasFailed(self):
|
32167
|
+
r"""任务结束时子任务是否有失败。
|
32168
|
+
:rtype: bool
|
32169
|
+
"""
|
32170
|
+
return self._SubTaskHasFailed
|
32171
|
+
|
32172
|
+
@SubTaskHasFailed.setter
|
32173
|
+
def SubTaskHasFailed(self, SubTaskHasFailed):
|
32174
|
+
self._SubTaskHasFailed = SubTaskHasFailed
|
32175
|
+
|
32122
32176
|
@property
|
32123
32177
|
def Limit(self):
|
32124
32178
|
r"""返回记录条数,默认值:10,最大值:100。
|
@@ -32166,6 +32220,7 @@ class DescribeTasksRequest(AbstractModel):
|
|
32166
32220
|
|
32167
32221
|
def _deserialize(self, params):
|
32168
32222
|
self._Status = params.get("Status")
|
32223
|
+
self._SubTaskHasFailed = params.get("SubTaskHasFailed")
|
32169
32224
|
self._Limit = params.get("Limit")
|
32170
32225
|
self._ScrollToken = params.get("ScrollToken")
|
32171
32226
|
self._StartTime = params.get("StartTime")
|
@@ -55701,7 +55756,9 @@ BarCode:条形码,
|
|
55701
55756
|
LowVoice:低音,
|
55702
55757
|
HighVoice:爆音,
|
55703
55758
|
NoVoice:静音,
|
55704
|
-
LowEvaluation
|
55759
|
+
LowEvaluation:视频无参考评分(MOS)低于阈值,
|
55760
|
+
AudioEvaluation:音频无参考评分(MOS)低于阈值,
|
55761
|
+
AudioNoise:音频噪声。
|
55705
55762
|
:type Type: str
|
55706
55763
|
:param _QualityControlItems: 质检结果项。
|
55707
55764
|
:type QualityControlItems: list of QualityControlItem
|
@@ -55727,7 +55784,9 @@ BarCode:条形码,
|
|
55727
55784
|
LowVoice:低音,
|
55728
55785
|
HighVoice:爆音,
|
55729
55786
|
NoVoice:静音,
|
55730
|
-
LowEvaluation
|
55787
|
+
LowEvaluation:视频无参考评分(MOS)低于阈值,
|
55788
|
+
AudioEvaluation:音频无参考评分(MOS)低于阈值,
|
55789
|
+
AudioNoise:音频噪声。
|
55731
55790
|
:rtype: str
|
55732
55791
|
"""
|
55733
55792
|
return self._Type
|
@@ -59,6 +59,9 @@ FAILEDOPERATION_IMAGEDECODEFAILED = 'FailedOperation.ImageDecodeFailed'
|
|
59
59
|
# 照片未检测到名片。
|
60
60
|
FAILEDOPERATION_IMAGENOBUSINESSCARD = 'FailedOperation.ImageNoBusinessCard'
|
61
61
|
|
62
|
+
# 图片中未检测到手写体
|
63
|
+
FAILEDOPERATION_IMAGENOHANDWRITE = 'FailedOperation.ImageNoHandWrite'
|
64
|
+
|
62
65
|
# 图片中未检测到第二代身份证或临时身份证。
|
63
66
|
FAILEDOPERATION_IMAGENOIDCARD = 'FailedOperation.ImageNoIdCard'
|
64
67
|
|
@@ -4308,6 +4308,8 @@ mssql_compatible引擎:
|
|
4308
4308
|
<li>1:是</li>
|
4309
4309
|
默认值:0
|
4310
4310
|
:type SupportIpv6: int
|
4311
|
+
:param _ExpandedCpu: 实例已经弹性扩容的cpu核数
|
4312
|
+
:type ExpandedCpu: int
|
4311
4313
|
"""
|
4312
4314
|
self._Region = None
|
4313
4315
|
self._Zone = None
|
@@ -4348,6 +4350,7 @@ mssql_compatible引擎:
|
|
4348
4350
|
self._DBEngineConfig = None
|
4349
4351
|
self._NetworkAccessList = None
|
4350
4352
|
self._SupportIpv6 = None
|
4353
|
+
self._ExpandedCpu = None
|
4351
4354
|
|
4352
4355
|
@property
|
4353
4356
|
def Region(self):
|
@@ -4808,6 +4811,17 @@ mssql_compatible引擎:
|
|
4808
4811
|
def SupportIpv6(self, SupportIpv6):
|
4809
4812
|
self._SupportIpv6 = SupportIpv6
|
4810
4813
|
|
4814
|
+
@property
|
4815
|
+
def ExpandedCpu(self):
|
4816
|
+
r"""实例已经弹性扩容的cpu核数
|
4817
|
+
:rtype: int
|
4818
|
+
"""
|
4819
|
+
return self._ExpandedCpu
|
4820
|
+
|
4821
|
+
@ExpandedCpu.setter
|
4822
|
+
def ExpandedCpu(self, ExpandedCpu):
|
4823
|
+
self._ExpandedCpu = ExpandedCpu
|
4824
|
+
|
4811
4825
|
|
4812
4826
|
def _deserialize(self, params):
|
4813
4827
|
self._Region = params.get("Region")
|
@@ -4869,6 +4883,7 @@ mssql_compatible引擎:
|
|
4869
4883
|
obj._deserialize(item)
|
4870
4884
|
self._NetworkAccessList.append(obj)
|
4871
4885
|
self._SupportIpv6 = params.get("SupportIpv6")
|
4886
|
+
self._ExpandedCpu = params.get("ExpandedCpu")
|
4872
4887
|
memeber_set = set(params.keys())
|
4873
4888
|
for name, value in vars(self).items():
|
4874
4889
|
property_name = name[1:]
|
@@ -10716,14 +10731,15 @@ class DescribeReadOnlyGroupsRequest(AbstractModel):
|
|
10716
10731
|
:param _Filters: 按照一个或者多个过滤条件进行查询,目前支持的过滤条件有:
|
10717
10732
|
db-master-instance-id:按照主实例过滤,类型为string。
|
10718
10733
|
read-only-group-id:按照只读组ID过滤,类型为string。
|
10734
|
+
注:该参数的过滤条件中,db-master-instance-id为必须指定项。
|
10719
10735
|
:type Filters: list of Filter
|
10720
|
-
:param _PageSize: 查询每一页的条数,默认为10
|
10736
|
+
:param _PageSize: 查询每一页的条数,默认为10,最大值99。
|
10721
10737
|
:type PageSize: int
|
10722
10738
|
:param _PageNumber: 查询的页码,默认为1
|
10723
10739
|
:type PageNumber: int
|
10724
|
-
:param _OrderBy: 查询排序依据,目前支持:ROGroupId,CreateTime,Name
|
10740
|
+
:param _OrderBy: 查询排序依据,目前支持:ROGroupId,CreateTime,Name。默认值CreateTime
|
10725
10741
|
:type OrderBy: str
|
10726
|
-
:param _OrderByType: 查询排序依据类型,目前支持:desc,asc
|
10742
|
+
:param _OrderByType: 查询排序依据类型,目前支持:desc,asc。默认值asc。
|
10727
10743
|
:type OrderByType: str
|
10728
10744
|
"""
|
10729
10745
|
self._Filters = None
|
@@ -10737,6 +10753,7 @@ read-only-group-id:按照只读组ID过滤,类型为string。
|
|
10737
10753
|
r"""按照一个或者多个过滤条件进行查询,目前支持的过滤条件有:
|
10738
10754
|
db-master-instance-id:按照主实例过滤,类型为string。
|
10739
10755
|
read-only-group-id:按照只读组ID过滤,类型为string。
|
10756
|
+
注:该参数的过滤条件中,db-master-instance-id为必须指定项。
|
10740
10757
|
:rtype: list of Filter
|
10741
10758
|
"""
|
10742
10759
|
return self._Filters
|
@@ -10747,7 +10764,7 @@ read-only-group-id:按照只读组ID过滤,类型为string。
|
|
10747
10764
|
|
10748
10765
|
@property
|
10749
10766
|
def PageSize(self):
|
10750
|
-
r"""查询每一页的条数,默认为10
|
10767
|
+
r"""查询每一页的条数,默认为10,最大值99。
|
10751
10768
|
:rtype: int
|
10752
10769
|
"""
|
10753
10770
|
return self._PageSize
|
@@ -10769,7 +10786,7 @@ read-only-group-id:按照只读组ID过滤,类型为string。
|
|
10769
10786
|
|
10770
10787
|
@property
|
10771
10788
|
def OrderBy(self):
|
10772
|
-
r"""查询排序依据,目前支持:ROGroupId,CreateTime,Name
|
10789
|
+
r"""查询排序依据,目前支持:ROGroupId,CreateTime,Name。默认值CreateTime
|
10773
10790
|
:rtype: str
|
10774
10791
|
"""
|
10775
10792
|
return self._OrderBy
|
@@ -10780,7 +10797,7 @@ read-only-group-id:按照只读组ID过滤,类型为string。
|
|
10780
10797
|
|
10781
10798
|
@property
|
10782
10799
|
def OrderByType(self):
|
10783
|
-
r"""查询排序依据类型,目前支持:desc,asc
|
10800
|
+
r"""查询排序依据类型,目前支持:desc,asc。默认值asc。
|
10784
10801
|
:rtype: str
|
10785
10802
|
"""
|
10786
10803
|
return self._OrderByType
|
@@ -17184,13 +17201,13 @@ class ReadOnlyGroup(AbstractModel):
|
|
17184
17201
|
:type MasterDBInstanceId: str
|
17185
17202
|
:param _MinDelayEliminateReserve: 最小保留实例数
|
17186
17203
|
:type MinDelayEliminateReserve: int
|
17187
|
-
:param _MaxReplayLatency:
|
17204
|
+
:param _MaxReplayLatency: 延迟空间大小阈值。单位MB。
|
17188
17205
|
:type MaxReplayLatency: int
|
17189
|
-
:param _ReplayLatencyEliminate:
|
17206
|
+
:param _ReplayLatencyEliminate: 延迟大小开关。0 - 关闭; 1 - 开启。
|
17190
17207
|
:type ReplayLatencyEliminate: int
|
17191
|
-
:param _MaxReplayLag:
|
17208
|
+
:param _MaxReplayLag: 延迟时间大小阈值,单位:秒。
|
17192
17209
|
:type MaxReplayLag: float
|
17193
|
-
:param _ReplayLagEliminate:
|
17210
|
+
:param _ReplayLagEliminate: 延迟时间开关。0 - 关闭; 1 - 开启。
|
17194
17211
|
:type ReplayLagEliminate: int
|
17195
17212
|
:param _VpcId: 虚拟网络id
|
17196
17213
|
:type VpcId: str
|
@@ -17200,7 +17217,7 @@ class ReadOnlyGroup(AbstractModel):
|
|
17200
17217
|
:type Region: str
|
17201
17218
|
:param _Zone: 地区id
|
17202
17219
|
:type Zone: str
|
17203
|
-
:param _Status:
|
17220
|
+
:param _Status: 状态。枚举值:creating、ok、modifying、deleting、deleted
|
17204
17221
|
:type Status: str
|
17205
17222
|
:param _ReadOnlyDBInstanceList: 实例详细信息
|
17206
17223
|
:type ReadOnlyDBInstanceList: list of DBInstance
|
@@ -17288,7 +17305,7 @@ class ReadOnlyGroup(AbstractModel):
|
|
17288
17305
|
|
17289
17306
|
@property
|
17290
17307
|
def MaxReplayLatency(self):
|
17291
|
-
r"""
|
17308
|
+
r"""延迟空间大小阈值。单位MB。
|
17292
17309
|
:rtype: int
|
17293
17310
|
"""
|
17294
17311
|
return self._MaxReplayLatency
|
@@ -17299,7 +17316,7 @@ class ReadOnlyGroup(AbstractModel):
|
|
17299
17316
|
|
17300
17317
|
@property
|
17301
17318
|
def ReplayLatencyEliminate(self):
|
17302
|
-
r"""
|
17319
|
+
r"""延迟大小开关。0 - 关闭; 1 - 开启。
|
17303
17320
|
:rtype: int
|
17304
17321
|
"""
|
17305
17322
|
return self._ReplayLatencyEliminate
|
@@ -17310,7 +17327,7 @@ class ReadOnlyGroup(AbstractModel):
|
|
17310
17327
|
|
17311
17328
|
@property
|
17312
17329
|
def MaxReplayLag(self):
|
17313
|
-
r"""
|
17330
|
+
r"""延迟时间大小阈值,单位:秒。
|
17314
17331
|
:rtype: float
|
17315
17332
|
"""
|
17316
17333
|
return self._MaxReplayLag
|
@@ -17321,7 +17338,7 @@ class ReadOnlyGroup(AbstractModel):
|
|
17321
17338
|
|
17322
17339
|
@property
|
17323
17340
|
def ReplayLagEliminate(self):
|
17324
|
-
r"""
|
17341
|
+
r"""延迟时间开关。0 - 关闭; 1 - 开启。
|
17325
17342
|
:rtype: int
|
17326
17343
|
"""
|
17327
17344
|
return self._ReplayLagEliminate
|
@@ -17376,7 +17393,7 @@ class ReadOnlyGroup(AbstractModel):
|
|
17376
17393
|
|
17377
17394
|
@property
|
17378
17395
|
def Status(self):
|
17379
|
-
r"""
|
17396
|
+
r"""状态。枚举值:creating、ok、modifying、deleting、deleted
|
17380
17397
|
:rtype: str
|
17381
17398
|
"""
|
17382
17399
|
return self._Status
|
@@ -194,9 +194,6 @@ FAILEDOPERATION_LANEINFORELEASEMESHFAILED = 'FailedOperation.LaneInfoReleaseMesh
|
|
194
194
|
# 全链路灰度规则启用失败。
|
195
195
|
FAILEDOPERATION_LANERULEENABLECONSULFAILED = 'FailedOperation.LaneRuleEnableConsulFailed'
|
196
196
|
|
197
|
-
# 该灰度规则生效中,请关闭后删除
|
198
|
-
FAILEDOPERATION_LANERULEENABLEDRULEDELETEFAILED = 'FailedOperation.LaneRuleEnabledRuleDeleteFailed'
|
199
|
-
|
200
197
|
# 用户全链路灰度规则最大100条。
|
201
198
|
FAILEDOPERATION_LANERULEMAXLIMIT = 'FailedOperation.LaneRuleMaxLimit'
|
202
199
|
|
@@ -965,6 +962,9 @@ INVALIDPARAMETERVALUE_LANEINFONOTEXISTENTRANCE = 'InvalidParameterValue.LaneInfo
|
|
965
962
|
# 泳道备注不能超过200个字符。
|
966
963
|
INVALIDPARAMETERVALUE_LANEINFOREMARKTOOLONG = 'InvalidParameterValue.LaneInfoRemarkTooLong'
|
967
964
|
|
965
|
+
# 该灰度规则生效中,请关闭后删除
|
966
|
+
INVALIDPARAMETERVALUE_LANERULEENABLEDRULEDELETEFAILED = 'InvalidParameterValue.LaneRuleEnabledRuleDeleteFailed'
|
967
|
+
|
968
968
|
# 全链路灰度规则ID错误
|
969
969
|
INVALIDPARAMETERVALUE_LANERULEIDINVALID = 'InvalidParameterValue.LaneRuleIdInvalid'
|
970
970
|
|
{tencentcloud_sdk_python-3.0.1469.dist-info → tencentcloud_sdk_python-3.0.1470.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=g8T79-Bd4FkCq3iAdm4FHwAtKIKvuj4PN76oROp4oSc,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=yUeYfjviV9V9QBmtD5Qs1Kdjy_iSWkIrNeBabwYMCXw,5474
|
@@ -85,7 +85,7 @@ tencentcloud/ai3d/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
85
85
|
tencentcloud/ai3d/v20250513/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
86
86
|
tencentcloud/ai3d/v20250513/ai3d_client.py,sha256=ySxc_XxcqhnVIv-Csg5qY5uYuB_m5VGhWbj3o4Y3gwo,7784
|
87
87
|
tencentcloud/ai3d/v20250513/errorcodes.py,sha256=KvHs6W2GONKBsXXCjJUx8q8sqMTR7e5vr5Gx01t5b24,625
|
88
|
-
tencentcloud/ai3d/v20250513/models.py,sha256=
|
88
|
+
tencentcloud/ai3d/v20250513/models.py,sha256=cBtPwvsCbGSlC4AqwczO6TfXwK_Noor7s8Xq_2dSLQc,36811
|
89
89
|
tencentcloud/aiart/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
90
90
|
tencentcloud/aiart/v20221229/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
91
91
|
tencentcloud/aiart/v20221229/aiart_client.py,sha256=VpxqRnbzudxDFhUTgufB3OsMWVFHevyJQW-cP5Di3OA,29344
|
@@ -134,7 +134,7 @@ tencentcloud/apm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,
|
|
134
134
|
tencentcloud/apm/v20210622/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
135
135
|
tencentcloud/apm/v20210622/apm_client.py,sha256=lR4K1vZtqPduj6kE3_OHTfRZUS4VSEKsOO22Wzk8UtU,14997
|
136
136
|
tencentcloud/apm/v20210622/errorcodes.py,sha256=Pexd24APbWx0uC6KeYLorLnk5bXgc2PmlHKXZxenivE,5495
|
137
|
-
tencentcloud/apm/v20210622/models.py,sha256=
|
137
|
+
tencentcloud/apm/v20210622/models.py,sha256=CICHmfi8MPpN3gEzsgHrueb-0cMyKoDvAIQZa-5DkFU,189408
|
138
138
|
tencentcloud/asr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
139
139
|
tencentcloud/asr/v20190614/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
140
140
|
tencentcloud/asr/v20190614/asr_client.py,sha256=OtvOBwwJ6RMK5kO7BWzlP3gxuSV8xUlxF37nR5gFVH0,38459
|
@@ -302,7 +302,7 @@ tencentcloud/cdwdoris/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3h
|
|
302
302
|
tencentcloud/cdwdoris/v20211228/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
303
303
|
tencentcloud/cdwdoris/v20211228/cdwdoris_client.py,sha256=kjyn4CnOGXaDuPLvLLXt3oTurY3pXh7O7L4kG9JmwxI,55955
|
304
304
|
tencentcloud/cdwdoris/v20211228/errorcodes.py,sha256=rafDIhXCghczE5iA62y9RogoyUIv6TFleArT4IiSjEc,801
|
305
|
-
tencentcloud/cdwdoris/v20211228/models.py,sha256=
|
305
|
+
tencentcloud/cdwdoris/v20211228/models.py,sha256=bKL-nIjJYCcnwrvAMWRjhBttkQDNWEj7rfLTl3Ih9nk,449597
|
306
306
|
tencentcloud/cdwpg/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
307
307
|
tencentcloud/cdwpg/v20201230/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
308
308
|
tencentcloud/cdwpg/v20201230/cdwpg_client.py,sha256=wpW-HblMH-_y1RyYdbhZ8IRPJP3vRAaZOcDlKbBpb2I,22262
|
@@ -365,7 +365,7 @@ tencentcloud/ckafka/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
365
365
|
tencentcloud/ckafka/v20190819/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
366
366
|
tencentcloud/ckafka/v20190819/ckafka_client.py,sha256=HmQXM0dZIL1l4HZpQqro1j6SWxwOAZ5_bSWq2BrN4Zo,79492
|
367
367
|
tencentcloud/ckafka/v20190819/errorcodes.py,sha256=nf7rrmSHw86IRlx2r5BwOPQEJmRX8v3UvGppljQRMSs,3611
|
368
|
-
tencentcloud/ckafka/v20190819/models.py,sha256=
|
368
|
+
tencentcloud/ckafka/v20190819/models.py,sha256=_ZR6LNpe5EenLNoBzWxbsoOZnY-a5JXZwNBIhHmUKsA,1021682
|
369
369
|
tencentcloud/clb/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
370
370
|
tencentcloud/clb/v20180317/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
371
371
|
tencentcloud/clb/v20180317/clb_client.py,sha256=Xm4guJ_8M_gPQJE2stSqZXzf7wNPlWZv4lJ_2dZxkHE,105811
|
@@ -673,7 +673,7 @@ tencentcloud/habo/v20181203/habo_client.py,sha256=00scuqOqMwXnKUpaqZxxXq-aWV93eS
|
|
673
673
|
tencentcloud/habo/v20181203/models.py,sha256=ZphG5rHPBmeFRgUUNqJy6g9zv7lAoqaoKeAfxCqecD8,7571
|
674
674
|
tencentcloud/hai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
675
675
|
tencentcloud/hai/v20230812/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
676
|
-
tencentcloud/hai/v20230812/errorcodes.py,sha256=
|
676
|
+
tencentcloud/hai/v20230812/errorcodes.py,sha256=Jn68LN1XTkJisxCCaAH4S334tcAEYVLzE1E2jn_KGws,7204
|
677
677
|
tencentcloud/hai/v20230812/hai_client.py,sha256=lsxNvaNGgPoiEefG0xWnabaINqTo3kx2kD9ua79thNU,15818
|
678
678
|
tencentcloud/hai/v20230812/models.py,sha256=pIzCJiX6c5sSYC1hJ5Jl1u3wjwAwdQgWzeKjQGd48CU,105092
|
679
679
|
tencentcloud/hasim/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -814,7 +814,7 @@ tencentcloud/lcic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU
|
|
814
814
|
tencentcloud/lcic/v20220817/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
815
815
|
tencentcloud/lcic/v20220817/errorcodes.py,sha256=dDmX2REpUhfDlao39oWyovdvmggBRQYU5t1N0jcUm10,5146
|
816
816
|
tencentcloud/lcic/v20220817/lcic_client.py,sha256=LEbczrniFXYwDHi_19FOaOdqVcdLO2OFeFkrVBjEcrI,65430
|
817
|
-
tencentcloud/lcic/v20220817/models.py,sha256=
|
817
|
+
tencentcloud/lcic/v20220817/models.py,sha256=yWaLfKdQUa6HL6d7uU7L7dt9e-fs1EfVJ4xtU5qMewM,439937
|
818
818
|
tencentcloud/lighthouse/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
819
819
|
tencentcloud/lighthouse/v20200324/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
820
820
|
tencentcloud/lighthouse/v20200324/errorcodes.py,sha256=0E1EhYPjCqXy2eO9RqB-t0gQa8-40swAanSQwepzFtY,37766
|
@@ -828,13 +828,13 @@ tencentcloud/live/v20180801/models.py,sha256=RipqbRaorsSX8tU1vUaewmQ9RZ8_1Xc2mFK
|
|
828
828
|
tencentcloud/lke/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
829
829
|
tencentcloud/lke/v20231130/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
830
830
|
tencentcloud/lke/v20231130/errorcodes.py,sha256=IIzRSWC6WhNQsTE2b3WxQMT-vTEtSFlHwMNi5fMv9x4,800
|
831
|
-
tencentcloud/lke/v20231130/lke_client.py,sha256=
|
832
|
-
tencentcloud/lke/v20231130/models.py,sha256=
|
831
|
+
tencentcloud/lke/v20231130/lke_client.py,sha256=Lt_2F4VVi03Evx0t-S_S2t-VHw56CgrW_CkabIwkTPo,93941
|
832
|
+
tencentcloud/lke/v20231130/models.py,sha256=wcQ-iyATD2B0OsLfWATVkBafE18CfFwyFDv8p3PFBus,1023052
|
833
833
|
tencentcloud/lkeap/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
834
834
|
tencentcloud/lkeap/v20240522/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
835
835
|
tencentcloud/lkeap/v20240522/errorcodes.py,sha256=HHA1Q6N_-s1eCYbKhJGJcm9SJaG--zqRQi9OH4fwojk,2645
|
836
836
|
tencentcloud/lkeap/v20240522/lkeap_client.py,sha256=_qG_U99OU8RzaG6D-4_wQxVG12kDTANQvMbVDTovBwE,37022
|
837
|
-
tencentcloud/lkeap/v20240522/models.py,sha256=
|
837
|
+
tencentcloud/lkeap/v20240522/models.py,sha256=_Z9bJP2ui2RJOZKMdX-Jv5mHZiNqnZCjpm4NMlcKkew,176564
|
838
838
|
tencentcloud/lowcode/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
839
839
|
tencentcloud/lowcode/v20210108/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
840
840
|
tencentcloud/lowcode/v20210108/errorcodes.py,sha256=rGy632X4xXyEBEU8ATzFnhthOgdCuy629bm9xQm-80s,1333
|
@@ -891,7 +891,7 @@ tencentcloud/monitor/v20230616/monitor_client.py,sha256=1SmdQ7Hu7I19YncKc8Cw_gsh
|
|
891
891
|
tencentcloud/mps/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
892
892
|
tencentcloud/mps/v20190612/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
893
893
|
tencentcloud/mps/v20190612/errorcodes.py,sha256=X9SwdrHkNS09VJeUgKt87jcyGls5_TImHxqt2baHABA,17393
|
894
|
-
tencentcloud/mps/v20190612/models.py,sha256=
|
894
|
+
tencentcloud/mps/v20190612/models.py,sha256=yGuHPVnXeSZQrWmT3F4TvoQinO8xKwrnVZDNh8knZZI,2388625
|
895
895
|
tencentcloud/mps/v20190612/mps_client.py,sha256=5sXm5iS1sJ1b_fgUWAgnLtzmF8qxR74JjYGOHJt9aT0,135670
|
896
896
|
tencentcloud/mqtt/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
897
897
|
tencentcloud/mqtt/v20240516/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -930,7 +930,7 @@ tencentcloud/oceanus/v20190422/models.py,sha256=EhzRQGEBBs7tU-BFtwvXCP8xo9QKl4iB
|
|
930
930
|
tencentcloud/oceanus/v20190422/oceanus_client.py,sha256=8Ckn_50Zb449EYsQzqnnTD2_hjTA-PHqexXN3EFas7M,39804
|
931
931
|
tencentcloud/ocr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
932
932
|
tencentcloud/ocr/v20181119/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
933
|
-
tencentcloud/ocr/v20181119/errorcodes.py,sha256=
|
933
|
+
tencentcloud/ocr/v20181119/errorcodes.py,sha256=aT5BAOV-9IbTbpuvPv7D8FEg5f5ud_1XE5bY2bQXTVM,7089
|
934
934
|
tencentcloud/ocr/v20181119/models.py,sha256=GdA6DaBKBXAi1fQD4y9GJasFtPkTyZVcbSpNEHrv8jw,1403402
|
935
935
|
tencentcloud/ocr/v20181119/ocr_client.py,sha256=FyulzE4jpJHjaWLXiua5N-1HwkvcKrvv6NaazY0y5Js,129258
|
936
936
|
tencentcloud/omics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -955,7 +955,7 @@ tencentcloud/partners/v20180321/partners_client.py,sha256=nwH-v8mQOf0A07b7iXpR9I
|
|
955
955
|
tencentcloud/postgres/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
956
956
|
tencentcloud/postgres/v20170312/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
957
957
|
tencentcloud/postgres/v20170312/errorcodes.py,sha256=qlrH-MWWUoucsethqszKO2H62Vpdhym5Af64f9pR5QM,22482
|
958
|
-
tencentcloud/postgres/v20170312/models.py,sha256=
|
958
|
+
tencentcloud/postgres/v20170312/models.py,sha256=ZbLRLfNrFKGGUAaeVgw3Lcv9yjmKIibhXO_WtdwcHPA,662252
|
959
959
|
tencentcloud/postgres/v20170312/postgres_client.py,sha256=29kLIL1j3oA44nmwKZXpTFd1gDMpm5wJXg04XE4e6Ws,100405
|
960
960
|
tencentcloud/privatedns/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
961
961
|
tencentcloud/privatedns/v20201028/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1275,7 +1275,7 @@ tencentcloud/tse/v20201207/models.py,sha256=CASaqygG0-wxXksuH-t1gGZFX-r6NVj_tAEI
|
|
1275
1275
|
tencentcloud/tse/v20201207/tse_client.py,sha256=QKoX8rR3jbPTerrENiJ3uyyeL0hiL9W-jmryEVvtzLA,116446
|
1276
1276
|
tencentcloud/tsf/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1277
1277
|
tencentcloud/tsf/v20180326/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1278
|
-
tencentcloud/tsf/v20180326/errorcodes.py,sha256=
|
1278
|
+
tencentcloud/tsf/v20180326/errorcodes.py,sha256=KLCDnRr3Dq1sUzvS4bl76h_3hqmXpLp_2xRKHlOXPpI,56082
|
1279
1279
|
tencentcloud/tsf/v20180326/models.py,sha256=czswZv08VFb9-61M6IrIPq6SAUTjStzqZOJ8jIXG1LI,1946907
|
1280
1280
|
tencentcloud/tsf/v20180326/tsf_client.py,sha256=c3TzkaI3aB05p2IekGOqsThv-yGPJFwk0brMC5BNFc4,204685
|
1281
1281
|
tencentcloud/tsi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1412,8 +1412,8 @@ tencentcloud/yunsou/v20191115/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
1412
1412
|
tencentcloud/yunsou/v20191115/errorcodes.py,sha256=YV391ulIJZVFPtkkzGWg4n2fbxEDxJh5ji0uglbVnA0,1274
|
1413
1413
|
tencentcloud/yunsou/v20191115/models.py,sha256=TQ-E6fkxGPYItLhPVApTt2PoY81gMZ4GE0yCF7pxZz8,27714
|
1414
1414
|
tencentcloud/yunsou/v20191115/yunsou_client.py,sha256=7ut92qGz4H9bKC4ondQTiKsstVD1ZRYAQ40DNLaQXJE,2716
|
1415
|
-
tencentcloud_sdk_python-3.0.
|
1416
|
-
tencentcloud_sdk_python-3.0.
|
1417
|
-
tencentcloud_sdk_python-3.0.
|
1418
|
-
tencentcloud_sdk_python-3.0.
|
1419
|
-
tencentcloud_sdk_python-3.0.
|
1415
|
+
tencentcloud_sdk_python-3.0.1470.dist-info/LICENSE,sha256=AJyIQ6mPzTpsFn6i0cG6OPVdhJ85l_mfdoOR7J4DnRw,11351
|
1416
|
+
tencentcloud_sdk_python-3.0.1470.dist-info/METADATA,sha256=CIdUVZ67Wr6l9dz-5DWTYfbjEsVWU0ZExh3Bz3hw6oI,1613
|
1417
|
+
tencentcloud_sdk_python-3.0.1470.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
1418
|
+
tencentcloud_sdk_python-3.0.1470.dist-info/top_level.txt,sha256=7kItXWSGlPDkhHTt2qPSt8zrlsPHLfRofR1QJo6eV_A,23
|
1419
|
+
tencentcloud_sdk_python-3.0.1470.dist-info/RECORD,,
|
{tencentcloud_sdk_python-3.0.1469.dist-info → tencentcloud_sdk_python-3.0.1470.dist-info}/LICENSE
RENAMED
File without changes
|
{tencentcloud_sdk_python-3.0.1469.dist-info → tencentcloud_sdk_python-3.0.1470.dist-info}/WHEEL
RENAMED
File without changes
|
File without changes
|