tencentcloud-sdk-python 3.0.1345__py2.py3-none-any.whl → 3.0.1346__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/antiddos/v20200309/antiddos_client.py +0 -50
- tencentcloud/antiddos/v20200309/models.py +12 -687
- tencentcloud/apm/v20210622/models.py +60 -60
- tencentcloud/batch/v20170312/models.py +0 -150
- tencentcloud/cdwch/v20200915/models.py +111 -146
- tencentcloud/ckafka/v20190819/models.py +18 -960
- tencentcloud/cls/v20201016/models.py +0 -112
- tencentcloud/dbbrain/v20191016/models.py +2 -2
- tencentcloud/dbbrain/v20210527/models.py +17 -4
- tencentcloud/emr/v20190103/emr_client.py +1 -1
- tencentcloud/emr/v20190103/models.py +422 -15
- tencentcloud/hunyuan/v20230901/models.py +17 -2
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +23 -0
- tencentcloud/iotexplorer/v20190423/models.py +131 -0
- tencentcloud/iotvideoindustry/v20201201/models.py +0 -52
- tencentcloud/lke/v20231130/lke_client.py +0 -23
- tencentcloud/lke/v20231130/models.py +0 -79
- tencentcloud/lkeap/v20240522/lkeap_client.py +1 -1
- tencentcloud/memcached/v20190318/models.py +2 -2
- tencentcloud/monitor/v20180724/models.py +446 -0
- tencentcloud/monitor/v20180724/monitor_client.py +23 -0
- tencentcloud/redis/v20180412/models.py +2 -4
- tencentcloud/svp/v20240125/models.py +0 -2
- tencentcloud/tdmq/v20200217/models.py +266 -0
- tencentcloud/teo/v20220901/errorcodes.py +3 -0
- tencentcloud/teo/v20220901/models.py +81 -2
- tencentcloud/teo/v20220901/teo_client.py +23 -0
- tencentcloud/thpc/v20220401/models.py +0 -6
- tencentcloud/thpc/v20230321/models.py +0 -12
- tencentcloud/wedata/v20210820/models.py +222 -0
- {tencentcloud_sdk_python-3.0.1345.dist-info → tencentcloud_sdk_python-3.0.1346.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1345.dist-info → tencentcloud_sdk_python-3.0.1346.dist-info}/RECORD +36 -36
- {tencentcloud_sdk_python-3.0.1345.dist-info → tencentcloud_sdk_python-3.0.1346.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1345.dist-info → tencentcloud_sdk_python-3.0.1346.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1345.dist-info → tencentcloud_sdk_python-3.0.1346.dist-info}/top_level.txt +0 -0
@@ -2142,6 +2142,29 @@ class IotexplorerClient(AbstractClient):
|
|
2142
2142
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2143
2143
|
|
2144
2144
|
|
2145
|
+
def DescribeUnbindedDevices(self, request):
|
2146
|
+
"""获取未绑定的设备列表
|
2147
|
+
|
2148
|
+
:param request: Request instance for DescribeUnbindedDevices.
|
2149
|
+
:type request: :class:`tencentcloud.iotexplorer.v20190423.models.DescribeUnbindedDevicesRequest`
|
2150
|
+
:rtype: :class:`tencentcloud.iotexplorer.v20190423.models.DescribeUnbindedDevicesResponse`
|
2151
|
+
|
2152
|
+
"""
|
2153
|
+
try:
|
2154
|
+
params = request._serialize()
|
2155
|
+
headers = request.headers
|
2156
|
+
body = self.call("DescribeUnbindedDevices", params, headers=headers)
|
2157
|
+
response = json.loads(body)
|
2158
|
+
model = models.DescribeUnbindedDevicesResponse()
|
2159
|
+
model._deserialize(response["Response"])
|
2160
|
+
return model
|
2161
|
+
except Exception as e:
|
2162
|
+
if isinstance(e, TencentCloudSDKException):
|
2163
|
+
raise
|
2164
|
+
else:
|
2165
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2166
|
+
|
2167
|
+
|
2145
2168
|
def DescribeVideoLicense(self, request):
|
2146
2169
|
"""用于查询视频激活码统计概览
|
2147
2170
|
|
@@ -14079,6 +14079,137 @@ class DescribeTopicRuleResponse(AbstractModel):
|
|
14079
14079
|
self._RequestId = params.get("RequestId")
|
14080
14080
|
|
14081
14081
|
|
14082
|
+
class DescribeUnbindedDevicesRequest(AbstractModel):
|
14083
|
+
"""DescribeUnbindedDevices请求参数结构体
|
14084
|
+
|
14085
|
+
"""
|
14086
|
+
|
14087
|
+
def __init__(self):
|
14088
|
+
r"""
|
14089
|
+
:param _ProductId: 产品ID
|
14090
|
+
:type ProductId: str
|
14091
|
+
:param _Offset: 分页偏移量
|
14092
|
+
:type Offset: int
|
14093
|
+
:param _Limit: 分页的页大小
|
14094
|
+
:type Limit: int
|
14095
|
+
"""
|
14096
|
+
self._ProductId = None
|
14097
|
+
self._Offset = None
|
14098
|
+
self._Limit = None
|
14099
|
+
|
14100
|
+
@property
|
14101
|
+
def ProductId(self):
|
14102
|
+
"""产品ID
|
14103
|
+
:rtype: str
|
14104
|
+
"""
|
14105
|
+
return self._ProductId
|
14106
|
+
|
14107
|
+
@ProductId.setter
|
14108
|
+
def ProductId(self, ProductId):
|
14109
|
+
self._ProductId = ProductId
|
14110
|
+
|
14111
|
+
@property
|
14112
|
+
def Offset(self):
|
14113
|
+
"""分页偏移量
|
14114
|
+
:rtype: int
|
14115
|
+
"""
|
14116
|
+
return self._Offset
|
14117
|
+
|
14118
|
+
@Offset.setter
|
14119
|
+
def Offset(self, Offset):
|
14120
|
+
self._Offset = Offset
|
14121
|
+
|
14122
|
+
@property
|
14123
|
+
def Limit(self):
|
14124
|
+
"""分页的页大小
|
14125
|
+
:rtype: int
|
14126
|
+
"""
|
14127
|
+
return self._Limit
|
14128
|
+
|
14129
|
+
@Limit.setter
|
14130
|
+
def Limit(self, Limit):
|
14131
|
+
self._Limit = Limit
|
14132
|
+
|
14133
|
+
|
14134
|
+
def _deserialize(self, params):
|
14135
|
+
self._ProductId = params.get("ProductId")
|
14136
|
+
self._Offset = params.get("Offset")
|
14137
|
+
self._Limit = params.get("Limit")
|
14138
|
+
memeber_set = set(params.keys())
|
14139
|
+
for name, value in vars(self).items():
|
14140
|
+
property_name = name[1:]
|
14141
|
+
if property_name in memeber_set:
|
14142
|
+
memeber_set.remove(property_name)
|
14143
|
+
if len(memeber_set) > 0:
|
14144
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
14145
|
+
|
14146
|
+
|
14147
|
+
|
14148
|
+
class DescribeUnbindedDevicesResponse(AbstractModel):
|
14149
|
+
"""DescribeUnbindedDevices返回参数结构体
|
14150
|
+
|
14151
|
+
"""
|
14152
|
+
|
14153
|
+
def __init__(self):
|
14154
|
+
r"""
|
14155
|
+
:param _UnbindedDevices: 未绑定的设备列表
|
14156
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
14157
|
+
:type UnbindedDevices: list of BindDeviceInfo
|
14158
|
+
:param _Total: 设备的总数量
|
14159
|
+
:type Total: int
|
14160
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
14161
|
+
:type RequestId: str
|
14162
|
+
"""
|
14163
|
+
self._UnbindedDevices = None
|
14164
|
+
self._Total = None
|
14165
|
+
self._RequestId = None
|
14166
|
+
|
14167
|
+
@property
|
14168
|
+
def UnbindedDevices(self):
|
14169
|
+
"""未绑定的设备列表
|
14170
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
14171
|
+
:rtype: list of BindDeviceInfo
|
14172
|
+
"""
|
14173
|
+
return self._UnbindedDevices
|
14174
|
+
|
14175
|
+
@UnbindedDevices.setter
|
14176
|
+
def UnbindedDevices(self, UnbindedDevices):
|
14177
|
+
self._UnbindedDevices = UnbindedDevices
|
14178
|
+
|
14179
|
+
@property
|
14180
|
+
def Total(self):
|
14181
|
+
"""设备的总数量
|
14182
|
+
:rtype: int
|
14183
|
+
"""
|
14184
|
+
return self._Total
|
14185
|
+
|
14186
|
+
@Total.setter
|
14187
|
+
def Total(self, Total):
|
14188
|
+
self._Total = Total
|
14189
|
+
|
14190
|
+
@property
|
14191
|
+
def RequestId(self):
|
14192
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
14193
|
+
:rtype: str
|
14194
|
+
"""
|
14195
|
+
return self._RequestId
|
14196
|
+
|
14197
|
+
@RequestId.setter
|
14198
|
+
def RequestId(self, RequestId):
|
14199
|
+
self._RequestId = RequestId
|
14200
|
+
|
14201
|
+
|
14202
|
+
def _deserialize(self, params):
|
14203
|
+
if params.get("UnbindedDevices") is not None:
|
14204
|
+
self._UnbindedDevices = []
|
14205
|
+
for item in params.get("UnbindedDevices"):
|
14206
|
+
obj = BindDeviceInfo()
|
14207
|
+
obj._deserialize(item)
|
14208
|
+
self._UnbindedDevices.append(obj)
|
14209
|
+
self._Total = params.get("Total")
|
14210
|
+
self._RequestId = params.get("RequestId")
|
14211
|
+
|
14212
|
+
|
14082
14213
|
class DescribeVideoLicenseRequest(AbstractModel):
|
14083
14214
|
"""DescribeVideoLicense请求参数结构体
|
14084
14215
|
|
@@ -5188,10 +5188,8 @@ class DescribeDeviceListResponse(AbstractModel):
|
|
5188
5188
|
def __init__(self):
|
5189
5189
|
r"""
|
5190
5190
|
:param _TotalCount: 设备总数
|
5191
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5192
5191
|
:type TotalCount: int
|
5193
5192
|
:param _Devices: 设备详细信息列表
|
5194
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5195
5193
|
:type Devices: list of AllDeviceInfo
|
5196
5194
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
5197
5195
|
:type RequestId: str
|
@@ -5203,7 +5201,6 @@ class DescribeDeviceListResponse(AbstractModel):
|
|
5203
5201
|
@property
|
5204
5202
|
def TotalCount(self):
|
5205
5203
|
"""设备总数
|
5206
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5207
5204
|
:rtype: int
|
5208
5205
|
"""
|
5209
5206
|
return self._TotalCount
|
@@ -5215,7 +5212,6 @@ class DescribeDeviceListResponse(AbstractModel):
|
|
5215
5212
|
@property
|
5216
5213
|
def Devices(self):
|
5217
5214
|
"""设备详细信息列表
|
5218
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5219
5215
|
:rtype: list of AllDeviceInfo
|
5220
5216
|
"""
|
5221
5217
|
return self._Devices
|
@@ -6398,10 +6394,8 @@ class DescribeLiveChannelListResponse(AbstractModel):
|
|
6398
6394
|
def __init__(self):
|
6399
6395
|
r"""
|
6400
6396
|
:param _Total: 频道总数
|
6401
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6402
6397
|
:type Total: int
|
6403
6398
|
:param _LiveChannels: 频道信息数组
|
6404
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6405
6399
|
:type LiveChannels: list of LiveChannelInfo
|
6406
6400
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6407
6401
|
:type RequestId: str
|
@@ -6413,7 +6407,6 @@ class DescribeLiveChannelListResponse(AbstractModel):
|
|
6413
6407
|
@property
|
6414
6408
|
def Total(self):
|
6415
6409
|
"""频道总数
|
6416
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6417
6410
|
:rtype: int
|
6418
6411
|
"""
|
6419
6412
|
return self._Total
|
@@ -6425,7 +6418,6 @@ class DescribeLiveChannelListResponse(AbstractModel):
|
|
6425
6418
|
@property
|
6426
6419
|
def LiveChannels(self):
|
6427
6420
|
"""频道信息数组
|
6428
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
6429
6421
|
:rtype: list of LiveChannelInfo
|
6430
6422
|
"""
|
6431
6423
|
return self._LiveChannels
|
@@ -7514,10 +7506,8 @@ class DescribeMessageForwardsResponse(AbstractModel):
|
|
7514
7506
|
def __init__(self):
|
7515
7507
|
r"""
|
7516
7508
|
:param _Total: 配置总数
|
7517
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7518
7509
|
:type Total: int
|
7519
7510
|
:param _List: 配置列表
|
7520
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7521
7511
|
:type List: list of MessageForward
|
7522
7512
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7523
7513
|
:type RequestId: str
|
@@ -7529,7 +7519,6 @@ class DescribeMessageForwardsResponse(AbstractModel):
|
|
7529
7519
|
@property
|
7530
7520
|
def Total(self):
|
7531
7521
|
"""配置总数
|
7532
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7533
7522
|
:rtype: int
|
7534
7523
|
"""
|
7535
7524
|
return self._Total
|
@@ -7541,7 +7530,6 @@ class DescribeMessageForwardsResponse(AbstractModel):
|
|
7541
7530
|
@property
|
7542
7531
|
def List(self):
|
7543
7532
|
"""配置列表
|
7544
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
7545
7533
|
:rtype: list of MessageForward
|
7546
7534
|
"""
|
7547
7535
|
return self._List
|
@@ -10377,10 +10365,8 @@ class DeviceMonitorValue(AbstractModel):
|
|
10377
10365
|
def __init__(self):
|
10378
10366
|
r"""
|
10379
10367
|
:param _Value: 统计值
|
10380
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10381
10368
|
:type Value: float
|
10382
10369
|
:param _Time: 统计时间
|
10383
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10384
10370
|
:type Time: int
|
10385
10371
|
"""
|
10386
10372
|
self._Value = None
|
@@ -10389,7 +10375,6 @@ class DeviceMonitorValue(AbstractModel):
|
|
10389
10375
|
@property
|
10390
10376
|
def Value(self):
|
10391
10377
|
"""统计值
|
10392
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10393
10378
|
:rtype: float
|
10394
10379
|
"""
|
10395
10380
|
return self._Value
|
@@ -10401,7 +10386,6 @@ class DeviceMonitorValue(AbstractModel):
|
|
10401
10386
|
@property
|
10402
10387
|
def Time(self):
|
10403
10388
|
"""统计时间
|
10404
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
10405
10389
|
:rtype: int
|
10406
10390
|
"""
|
10407
10391
|
return self._Time
|
@@ -11872,25 +11856,18 @@ class LiveChannelInfo(AbstractModel):
|
|
11872
11856
|
def __init__(self):
|
11873
11857
|
r"""
|
11874
11858
|
:param _LiveChannelId: 频道ID
|
11875
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11876
11859
|
:type LiveChannelId: str
|
11877
11860
|
:param _LiveChannelName: 频道名称
|
11878
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11879
11861
|
:type LiveChannelName: str
|
11880
11862
|
:param _LiveChannelType: 频道类型
|
11881
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11882
11863
|
:type LiveChannelType: int
|
11883
11864
|
:param _LiveStatus: 通道直播状态:1: 未推流,2: 推流中
|
11884
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11885
11865
|
:type LiveStatus: int
|
11886
11866
|
:param _PushStreamAddress: 推流地址
|
11887
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11888
11867
|
:type PushStreamAddress: str
|
11889
11868
|
:param _CreateTime: 创建时间
|
11890
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11891
11869
|
:type CreateTime: str
|
11892
11870
|
:param _UpdateTime: 修改时间
|
11893
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11894
11871
|
:type UpdateTime: str
|
11895
11872
|
"""
|
11896
11873
|
self._LiveChannelId = None
|
@@ -11904,7 +11881,6 @@ class LiveChannelInfo(AbstractModel):
|
|
11904
11881
|
@property
|
11905
11882
|
def LiveChannelId(self):
|
11906
11883
|
"""频道ID
|
11907
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11908
11884
|
:rtype: str
|
11909
11885
|
"""
|
11910
11886
|
return self._LiveChannelId
|
@@ -11916,7 +11892,6 @@ class LiveChannelInfo(AbstractModel):
|
|
11916
11892
|
@property
|
11917
11893
|
def LiveChannelName(self):
|
11918
11894
|
"""频道名称
|
11919
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11920
11895
|
:rtype: str
|
11921
11896
|
"""
|
11922
11897
|
return self._LiveChannelName
|
@@ -11928,7 +11903,6 @@ class LiveChannelInfo(AbstractModel):
|
|
11928
11903
|
@property
|
11929
11904
|
def LiveChannelType(self):
|
11930
11905
|
"""频道类型
|
11931
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11932
11906
|
:rtype: int
|
11933
11907
|
"""
|
11934
11908
|
return self._LiveChannelType
|
@@ -11940,7 +11914,6 @@ class LiveChannelInfo(AbstractModel):
|
|
11940
11914
|
@property
|
11941
11915
|
def LiveStatus(self):
|
11942
11916
|
"""通道直播状态:1: 未推流,2: 推流中
|
11943
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11944
11917
|
:rtype: int
|
11945
11918
|
"""
|
11946
11919
|
return self._LiveStatus
|
@@ -11952,7 +11925,6 @@ class LiveChannelInfo(AbstractModel):
|
|
11952
11925
|
@property
|
11953
11926
|
def PushStreamAddress(self):
|
11954
11927
|
"""推流地址
|
11955
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11956
11928
|
:rtype: str
|
11957
11929
|
"""
|
11958
11930
|
return self._PushStreamAddress
|
@@ -11964,7 +11936,6 @@ class LiveChannelInfo(AbstractModel):
|
|
11964
11936
|
@property
|
11965
11937
|
def CreateTime(self):
|
11966
11938
|
"""创建时间
|
11967
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11968
11939
|
:rtype: str
|
11969
11940
|
"""
|
11970
11941
|
return self._CreateTime
|
@@ -11976,7 +11947,6 @@ class LiveChannelInfo(AbstractModel):
|
|
11976
11947
|
@property
|
11977
11948
|
def UpdateTime(self):
|
11978
11949
|
"""修改时间
|
11979
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
11980
11950
|
:rtype: str
|
11981
11951
|
"""
|
11982
11952
|
return self._UpdateTime
|
@@ -12274,37 +12244,26 @@ class MessageForward(AbstractModel):
|
|
12274
12244
|
def __init__(self):
|
12275
12245
|
r"""
|
12276
12246
|
:param _IntId: 配置ID
|
12277
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12278
12247
|
:type IntId: int
|
12279
12248
|
:param _Uin: 用户Uin
|
12280
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12281
12249
|
:type Uin: str
|
12282
12250
|
:param _MessageType: json数组, 转发类型 1: 告警 2:GPS
|
12283
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12284
12251
|
:type MessageType: str
|
12285
12252
|
:param _RegionId: 区域ID
|
12286
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12287
12253
|
:type RegionId: str
|
12288
12254
|
:param _RegionName: 区域名称
|
12289
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12290
12255
|
:type RegionName: str
|
12291
12256
|
:param _Instance: 实例ID
|
12292
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12293
12257
|
:type Instance: str
|
12294
12258
|
:param _InstanceName: 实例名称
|
12295
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12296
12259
|
:type InstanceName: str
|
12297
12260
|
:param _TopicId: kafka topic id
|
12298
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12299
12261
|
:type TopicId: str
|
12300
12262
|
:param _CreateTime: 创建时间
|
12301
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12302
12263
|
:type CreateTime: str
|
12303
12264
|
:param _UpdateTime: 更新时间
|
12304
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12305
12265
|
:type UpdateTime: str
|
12306
12266
|
:param _TopicName: topic 名称
|
12307
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12308
12267
|
:type TopicName: str
|
12309
12268
|
"""
|
12310
12269
|
self._IntId = None
|
@@ -12322,7 +12281,6 @@ class MessageForward(AbstractModel):
|
|
12322
12281
|
@property
|
12323
12282
|
def IntId(self):
|
12324
12283
|
"""配置ID
|
12325
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12326
12284
|
:rtype: int
|
12327
12285
|
"""
|
12328
12286
|
return self._IntId
|
@@ -12334,7 +12292,6 @@ class MessageForward(AbstractModel):
|
|
12334
12292
|
@property
|
12335
12293
|
def Uin(self):
|
12336
12294
|
"""用户Uin
|
12337
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12338
12295
|
:rtype: str
|
12339
12296
|
"""
|
12340
12297
|
return self._Uin
|
@@ -12346,7 +12303,6 @@ class MessageForward(AbstractModel):
|
|
12346
12303
|
@property
|
12347
12304
|
def MessageType(self):
|
12348
12305
|
"""json数组, 转发类型 1: 告警 2:GPS
|
12349
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12350
12306
|
:rtype: str
|
12351
12307
|
"""
|
12352
12308
|
return self._MessageType
|
@@ -12358,7 +12314,6 @@ class MessageForward(AbstractModel):
|
|
12358
12314
|
@property
|
12359
12315
|
def RegionId(self):
|
12360
12316
|
"""区域ID
|
12361
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12362
12317
|
:rtype: str
|
12363
12318
|
"""
|
12364
12319
|
return self._RegionId
|
@@ -12370,7 +12325,6 @@ class MessageForward(AbstractModel):
|
|
12370
12325
|
@property
|
12371
12326
|
def RegionName(self):
|
12372
12327
|
"""区域名称
|
12373
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12374
12328
|
:rtype: str
|
12375
12329
|
"""
|
12376
12330
|
return self._RegionName
|
@@ -12382,7 +12336,6 @@ class MessageForward(AbstractModel):
|
|
12382
12336
|
@property
|
12383
12337
|
def Instance(self):
|
12384
12338
|
"""实例ID
|
12385
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12386
12339
|
:rtype: str
|
12387
12340
|
"""
|
12388
12341
|
return self._Instance
|
@@ -12394,7 +12347,6 @@ class MessageForward(AbstractModel):
|
|
12394
12347
|
@property
|
12395
12348
|
def InstanceName(self):
|
12396
12349
|
"""实例名称
|
12397
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12398
12350
|
:rtype: str
|
12399
12351
|
"""
|
12400
12352
|
return self._InstanceName
|
@@ -12406,7 +12358,6 @@ class MessageForward(AbstractModel):
|
|
12406
12358
|
@property
|
12407
12359
|
def TopicId(self):
|
12408
12360
|
"""kafka topic id
|
12409
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12410
12361
|
:rtype: str
|
12411
12362
|
"""
|
12412
12363
|
return self._TopicId
|
@@ -12418,7 +12369,6 @@ class MessageForward(AbstractModel):
|
|
12418
12369
|
@property
|
12419
12370
|
def CreateTime(self):
|
12420
12371
|
"""创建时间
|
12421
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12422
12372
|
:rtype: str
|
12423
12373
|
"""
|
12424
12374
|
return self._CreateTime
|
@@ -12430,7 +12380,6 @@ class MessageForward(AbstractModel):
|
|
12430
12380
|
@property
|
12431
12381
|
def UpdateTime(self):
|
12432
12382
|
"""更新时间
|
12433
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12434
12383
|
:rtype: str
|
12435
12384
|
"""
|
12436
12385
|
return self._UpdateTime
|
@@ -12442,7 +12391,6 @@ class MessageForward(AbstractModel):
|
|
12442
12391
|
@property
|
12443
12392
|
def TopicName(self):
|
12444
12393
|
"""topic 名称
|
12445
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
12446
12394
|
:rtype: str
|
12447
12395
|
"""
|
12448
12396
|
return self._TopicName
|
@@ -2105,29 +2105,6 @@ class LkeClient(AbstractClient):
|
|
2105
2105
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2106
2106
|
|
2107
2107
|
|
2108
|
-
def ResetSession(self, request):
|
2109
|
-
"""重置会话
|
2110
|
-
|
2111
|
-
:param request: Request instance for ResetSession.
|
2112
|
-
:type request: :class:`tencentcloud.lke.v20231130.models.ResetSessionRequest`
|
2113
|
-
:rtype: :class:`tencentcloud.lke.v20231130.models.ResetSessionResponse`
|
2114
|
-
|
2115
|
-
"""
|
2116
|
-
try:
|
2117
|
-
params = request._serialize()
|
2118
|
-
headers = request.headers
|
2119
|
-
body = self.call("ResetSession", params, headers=headers)
|
2120
|
-
response = json.loads(body)
|
2121
|
-
model = models.ResetSessionResponse()
|
2122
|
-
model._deserialize(response["Response"])
|
2123
|
-
return model
|
2124
|
-
except Exception as e:
|
2125
|
-
if isinstance(e, TencentCloudSDKException):
|
2126
|
-
raise
|
2127
|
-
else:
|
2128
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
2129
|
-
|
2130
|
-
|
2131
2108
|
def RetryDocAudit(self, request):
|
2132
2109
|
"""文档解析重试
|
2133
2110
|
|
@@ -23421,85 +23421,6 @@ class RenameDocResponse(AbstractModel):
|
|
23421
23421
|
self._RequestId = params.get("RequestId")
|
23422
23422
|
|
23423
23423
|
|
23424
|
-
class ResetSessionRequest(AbstractModel):
|
23425
|
-
"""ResetSession请求参数结构体
|
23426
|
-
|
23427
|
-
"""
|
23428
|
-
|
23429
|
-
def __init__(self):
|
23430
|
-
r"""
|
23431
|
-
:param _SessionId: 会话ID
|
23432
|
-
:type SessionId: str
|
23433
|
-
:param _IsOnlyEmptyTheDialog: 是否仅清空会话关联
|
23434
|
-
:type IsOnlyEmptyTheDialog: bool
|
23435
|
-
"""
|
23436
|
-
self._SessionId = None
|
23437
|
-
self._IsOnlyEmptyTheDialog = None
|
23438
|
-
|
23439
|
-
@property
|
23440
|
-
def SessionId(self):
|
23441
|
-
"""会话ID
|
23442
|
-
:rtype: str
|
23443
|
-
"""
|
23444
|
-
return self._SessionId
|
23445
|
-
|
23446
|
-
@SessionId.setter
|
23447
|
-
def SessionId(self, SessionId):
|
23448
|
-
self._SessionId = SessionId
|
23449
|
-
|
23450
|
-
@property
|
23451
|
-
def IsOnlyEmptyTheDialog(self):
|
23452
|
-
"""是否仅清空会话关联
|
23453
|
-
:rtype: bool
|
23454
|
-
"""
|
23455
|
-
return self._IsOnlyEmptyTheDialog
|
23456
|
-
|
23457
|
-
@IsOnlyEmptyTheDialog.setter
|
23458
|
-
def IsOnlyEmptyTheDialog(self, IsOnlyEmptyTheDialog):
|
23459
|
-
self._IsOnlyEmptyTheDialog = IsOnlyEmptyTheDialog
|
23460
|
-
|
23461
|
-
|
23462
|
-
def _deserialize(self, params):
|
23463
|
-
self._SessionId = params.get("SessionId")
|
23464
|
-
self._IsOnlyEmptyTheDialog = params.get("IsOnlyEmptyTheDialog")
|
23465
|
-
memeber_set = set(params.keys())
|
23466
|
-
for name, value in vars(self).items():
|
23467
|
-
property_name = name[1:]
|
23468
|
-
if property_name in memeber_set:
|
23469
|
-
memeber_set.remove(property_name)
|
23470
|
-
if len(memeber_set) > 0:
|
23471
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
23472
|
-
|
23473
|
-
|
23474
|
-
|
23475
|
-
class ResetSessionResponse(AbstractModel):
|
23476
|
-
"""ResetSession返回参数结构体
|
23477
|
-
|
23478
|
-
"""
|
23479
|
-
|
23480
|
-
def __init__(self):
|
23481
|
-
r"""
|
23482
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
23483
|
-
:type RequestId: str
|
23484
|
-
"""
|
23485
|
-
self._RequestId = None
|
23486
|
-
|
23487
|
-
@property
|
23488
|
-
def RequestId(self):
|
23489
|
-
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
23490
|
-
:rtype: str
|
23491
|
-
"""
|
23492
|
-
return self._RequestId
|
23493
|
-
|
23494
|
-
@RequestId.setter
|
23495
|
-
def RequestId(self, RequestId):
|
23496
|
-
self._RequestId = RequestId
|
23497
|
-
|
23498
|
-
|
23499
|
-
def _deserialize(self, params):
|
23500
|
-
self._RequestId = params.get("RequestId")
|
23501
|
-
|
23502
|
-
|
23503
23424
|
class RetryDocAuditRequest(AbstractModel):
|
23504
23425
|
"""RetryDocAudit请求参数结构体
|
23505
23426
|
|
@@ -167,7 +167,7 @@ class LkeapClient(AbstractClient):
|
|
167
167
|
|
168
168
|
|
169
169
|
def CreateKnowledgeBase(self, request):
|
170
|
-
"""用于在系统中创建一个新的知识库。知识库是一个用于存储和管理知识条目的集合,可以包括文档、问答对、属性标签等。创建知识库后,可以向其中添加各种知识条目,以便在后续的知识检索中使用。
|
170
|
+
"""用于在系统中创建一个新的知识库。知识库是一个用于存储和管理知识条目的集合,可以包括文档、问答对、属性标签等。创建知识库后,可以向其中添加各种知识条目,以便在后续的知识检索中使用。 使用场景:当需要在系统中建立一个新的知识库以存储和管理特定领域或项目的知识条目时使用。例如,一个用户可能需要创建一个知识库,以存储用户指南、常见问题解答和技术文档。体验用户最多可创建3个知识库,付费用户最多可创建100个知识库。
|
171
171
|
|
172
172
|
:param request: Request instance for CreateKnowledgeBase.
|
173
173
|
:type request: :class:`tencentcloud.lkeap.v20240522.models.CreateKnowledgeBaseRequest`
|
@@ -290,7 +290,7 @@ class InstanceListInfo(AbstractModel):
|
|
290
290
|
:type Tags: list of TagInfo
|
291
291
|
:param _InstanceId: 实例ID
|
292
292
|
:type InstanceId: str
|
293
|
-
:param _RegionId: 地域id
|
293
|
+
:param _RegionId: 地域id。1--广州 4--上海 5-- 香港 6--多伦多 7--上海金融 8--北京 9-- 新加坡 11--深圳金融 15--美西(硅谷)16--成都 17--德国 18--韩国 19--重庆 22--美东(弗吉尼亚)23--泰国 25--日本
|
294
294
|
:type RegionId: int
|
295
295
|
:param _InstanceDesc: 实例描述信息
|
296
296
|
:type InstanceDesc: str
|
@@ -438,7 +438,7 @@ class InstanceListInfo(AbstractModel):
|
|
438
438
|
|
439
439
|
@property
|
440
440
|
def RegionId(self):
|
441
|
-
"""地域id
|
441
|
+
"""地域id。1--广州 4--上海 5-- 香港 6--多伦多 7--上海金融 8--北京 9-- 新加坡 11--深圳金融 15--美西(硅谷)16--成都 17--德国 18--韩国 19--重庆 22--美东(弗吉尼亚)23--泰国 25--日本
|
442
442
|
:rtype: int
|
443
443
|
"""
|
444
444
|
return self._RegionId
|