tencentcloud-sdk-python-lke 3.1.85__tar.gz → 3.1.86__tar.gz
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_sdk_python_lke-3.1.85 → tencentcloud_sdk_python_lke-3.1.86}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_lke-3.1.85 → tencentcloud_sdk_python_lke-3.1.86}/setup.py +1 -1
- {tencentcloud_sdk_python_lke-3.1.85 → tencentcloud_sdk_python_lke-3.1.86}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_lke-3.1.85 → tencentcloud_sdk_python_lke-3.1.86}/tencentcloud/lke/v20231130/models.py +35 -20
- {tencentcloud_sdk_python_lke-3.1.85 → tencentcloud_sdk_python_lke-3.1.86}/tencentcloud_sdk_python_lke.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_lke-3.1.86/tencentcloud_sdk_python_lke.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_lke-3.1.85/tencentcloud_sdk_python_lke.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_lke-3.1.85 → tencentcloud_sdk_python_lke-3.1.86}/README.rst +0 -0
- {tencentcloud_sdk_python_lke-3.1.85 → tencentcloud_sdk_python_lke-3.1.86}/setup.cfg +0 -0
- {tencentcloud_sdk_python_lke-3.1.85 → tencentcloud_sdk_python_lke-3.1.86}/tencentcloud/lke/__init__.py +0 -0
- {tencentcloud_sdk_python_lke-3.1.85 → tencentcloud_sdk_python_lke-3.1.86}/tencentcloud/lke/v20231130/__init__.py +0 -0
- {tencentcloud_sdk_python_lke-3.1.85 → tencentcloud_sdk_python_lke-3.1.86}/tencentcloud/lke/v20231130/errorcodes.py +0 -0
- {tencentcloud_sdk_python_lke-3.1.85 → tencentcloud_sdk_python_lke-3.1.86}/tencentcloud/lke/v20231130/lke_client.py +0 -0
- {tencentcloud_sdk_python_lke-3.1.85 → tencentcloud_sdk_python_lke-3.1.86}/tencentcloud/lke/v20231130/lke_client_async.py +0 -0
- {tencentcloud_sdk_python_lke-3.1.85 → tencentcloud_sdk_python_lke-3.1.86}/tencentcloud_sdk_python_lke.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_lke-3.1.85 → tencentcloud_sdk_python_lke-3.1.86}/tencentcloud_sdk_python_lke.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_lke-3.1.85 → tencentcloud_sdk_python_lke-3.1.86}/tencentcloud_sdk_python_lke.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-lke
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.86
|
|
4
4
|
Summary: Tencent Cloud Lke SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.86
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-lke',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common>=3.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.86,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Lke SDK for Python',
|
|
@@ -28921,10 +28921,13 @@ class ModifyRejectedQuestionRequest(AbstractModel):
|
|
|
28921
28921
|
|
|
28922
28922
|
|
|
28923
28923
|
:type RejectedBizId: str
|
|
28924
|
+
:param _EnableScope: 拒答生效域: 1-不生效;2-仅开发域生效;3-仅发布域生效;4-开发域和发布域均生效
|
|
28925
|
+
:type EnableScope: int
|
|
28924
28926
|
"""
|
|
28925
28927
|
self._BotBizId = None
|
|
28926
28928
|
self._Question = None
|
|
28927
28929
|
self._RejectedBizId = None
|
|
28930
|
+
self._EnableScope = None
|
|
28928
28931
|
|
|
28929
28932
|
@property
|
|
28930
28933
|
def BotBizId(self):
|
|
@@ -28964,11 +28967,23 @@ class ModifyRejectedQuestionRequest(AbstractModel):
|
|
|
28964
28967
|
def RejectedBizId(self, RejectedBizId):
|
|
28965
28968
|
self._RejectedBizId = RejectedBizId
|
|
28966
28969
|
|
|
28970
|
+
@property
|
|
28971
|
+
def EnableScope(self):
|
|
28972
|
+
r"""拒答生效域: 1-不生效;2-仅开发域生效;3-仅发布域生效;4-开发域和发布域均生效
|
|
28973
|
+
:rtype: int
|
|
28974
|
+
"""
|
|
28975
|
+
return self._EnableScope
|
|
28976
|
+
|
|
28977
|
+
@EnableScope.setter
|
|
28978
|
+
def EnableScope(self, EnableScope):
|
|
28979
|
+
self._EnableScope = EnableScope
|
|
28980
|
+
|
|
28967
28981
|
|
|
28968
28982
|
def _deserialize(self, params):
|
|
28969
28983
|
self._BotBizId = params.get("BotBizId")
|
|
28970
28984
|
self._Question = params.get("Question")
|
|
28971
28985
|
self._RejectedBizId = params.get("RejectedBizId")
|
|
28986
|
+
self._EnableScope = params.get("EnableScope")
|
|
28972
28987
|
memeber_set = set(params.keys())
|
|
28973
28988
|
for name, value in vars(self).items():
|
|
28974
28989
|
property_name = name[1:]
|
|
@@ -36497,31 +36512,31 @@ class UnsatisfiedReply(AbstractModel):
|
|
|
36497
36512
|
|
|
36498
36513
|
def __init__(self):
|
|
36499
36514
|
r"""
|
|
36500
|
-
:param _ReplyBizId:
|
|
36515
|
+
:param _ReplyBizId: <p>不满意回复ID</p>
|
|
36501
36516
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
36502
36517
|
:type ReplyBizId: str
|
|
36503
|
-
:param _RecordBizId:
|
|
36518
|
+
:param _RecordBizId: <p>消息记录ID</p>
|
|
36504
36519
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
36505
36520
|
:type RecordBizId: str
|
|
36506
|
-
:param _Question:
|
|
36521
|
+
:param _Question: <p>用户问题</p>
|
|
36507
36522
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
36508
36523
|
:type Question: str
|
|
36509
|
-
:param _Answer:
|
|
36524
|
+
:param _Answer: <p>问题回复</p>
|
|
36510
36525
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
36511
36526
|
:type Answer: str
|
|
36512
|
-
:param _Reasons:
|
|
36527
|
+
:param _Reasons: <p>错误类型</p>
|
|
36513
36528
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
36514
36529
|
:type Reasons: list of str
|
|
36515
|
-
:param _Status:
|
|
36530
|
+
:param _Status: <p>处理状态,0:待处理,1:已拒答,2:已忽略,3:已纠错</p>
|
|
36516
36531
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
36517
36532
|
:type Status: int
|
|
36518
|
-
:param _CreateTime:
|
|
36533
|
+
:param _CreateTime: <p>创建时间,秒级时间戳</p>
|
|
36519
36534
|
:type CreateTime: str
|
|
36520
|
-
:param _UpdateTime:
|
|
36535
|
+
:param _UpdateTime: <p>更新时间,秒级时间戳</p>
|
|
36521
36536
|
:type UpdateTime: str
|
|
36522
|
-
:param _Operator:
|
|
36537
|
+
:param _Operator: <p>操作人</p>
|
|
36523
36538
|
:type Operator: str
|
|
36524
|
-
:param _FeedbackContent:
|
|
36539
|
+
:param _FeedbackContent: <p>自定义反馈</p>
|
|
36525
36540
|
:type FeedbackContent: str
|
|
36526
36541
|
"""
|
|
36527
36542
|
self._ReplyBizId = None
|
|
@@ -36537,7 +36552,7 @@ class UnsatisfiedReply(AbstractModel):
|
|
|
36537
36552
|
|
|
36538
36553
|
@property
|
|
36539
36554
|
def ReplyBizId(self):
|
|
36540
|
-
r"""
|
|
36555
|
+
r"""<p>不满意回复ID</p>
|
|
36541
36556
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
36542
36557
|
:rtype: str
|
|
36543
36558
|
"""
|
|
@@ -36549,7 +36564,7 @@ class UnsatisfiedReply(AbstractModel):
|
|
|
36549
36564
|
|
|
36550
36565
|
@property
|
|
36551
36566
|
def RecordBizId(self):
|
|
36552
|
-
r"""
|
|
36567
|
+
r"""<p>消息记录ID</p>
|
|
36553
36568
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
36554
36569
|
:rtype: str
|
|
36555
36570
|
"""
|
|
@@ -36561,7 +36576,7 @@ class UnsatisfiedReply(AbstractModel):
|
|
|
36561
36576
|
|
|
36562
36577
|
@property
|
|
36563
36578
|
def Question(self):
|
|
36564
|
-
r"""
|
|
36579
|
+
r"""<p>用户问题</p>
|
|
36565
36580
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
36566
36581
|
:rtype: str
|
|
36567
36582
|
"""
|
|
@@ -36573,7 +36588,7 @@ class UnsatisfiedReply(AbstractModel):
|
|
|
36573
36588
|
|
|
36574
36589
|
@property
|
|
36575
36590
|
def Answer(self):
|
|
36576
|
-
r"""
|
|
36591
|
+
r"""<p>问题回复</p>
|
|
36577
36592
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
36578
36593
|
:rtype: str
|
|
36579
36594
|
"""
|
|
@@ -36585,7 +36600,7 @@ class UnsatisfiedReply(AbstractModel):
|
|
|
36585
36600
|
|
|
36586
36601
|
@property
|
|
36587
36602
|
def Reasons(self):
|
|
36588
|
-
r"""
|
|
36603
|
+
r"""<p>错误类型</p>
|
|
36589
36604
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
36590
36605
|
:rtype: list of str
|
|
36591
36606
|
"""
|
|
@@ -36597,7 +36612,7 @@ class UnsatisfiedReply(AbstractModel):
|
|
|
36597
36612
|
|
|
36598
36613
|
@property
|
|
36599
36614
|
def Status(self):
|
|
36600
|
-
r"""
|
|
36615
|
+
r"""<p>处理状态,0:待处理,1:已拒答,2:已忽略,3:已纠错</p>
|
|
36601
36616
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
36602
36617
|
:rtype: int
|
|
36603
36618
|
"""
|
|
@@ -36609,7 +36624,7 @@ class UnsatisfiedReply(AbstractModel):
|
|
|
36609
36624
|
|
|
36610
36625
|
@property
|
|
36611
36626
|
def CreateTime(self):
|
|
36612
|
-
r"""
|
|
36627
|
+
r"""<p>创建时间,秒级时间戳</p>
|
|
36613
36628
|
:rtype: str
|
|
36614
36629
|
"""
|
|
36615
36630
|
return self._CreateTime
|
|
@@ -36620,7 +36635,7 @@ class UnsatisfiedReply(AbstractModel):
|
|
|
36620
36635
|
|
|
36621
36636
|
@property
|
|
36622
36637
|
def UpdateTime(self):
|
|
36623
|
-
r"""
|
|
36638
|
+
r"""<p>更新时间,秒级时间戳</p>
|
|
36624
36639
|
:rtype: str
|
|
36625
36640
|
"""
|
|
36626
36641
|
return self._UpdateTime
|
|
@@ -36631,7 +36646,7 @@ class UnsatisfiedReply(AbstractModel):
|
|
|
36631
36646
|
|
|
36632
36647
|
@property
|
|
36633
36648
|
def Operator(self):
|
|
36634
|
-
r"""
|
|
36649
|
+
r"""<p>操作人</p>
|
|
36635
36650
|
:rtype: str
|
|
36636
36651
|
"""
|
|
36637
36652
|
return self._Operator
|
|
@@ -36642,7 +36657,7 @@ class UnsatisfiedReply(AbstractModel):
|
|
|
36642
36657
|
|
|
36643
36658
|
@property
|
|
36644
36659
|
def FeedbackContent(self):
|
|
36645
|
-
r"""
|
|
36660
|
+
r"""<p>自定义反馈</p>
|
|
36646
36661
|
:rtype: str
|
|
36647
36662
|
"""
|
|
36648
36663
|
return self._FeedbackContent
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-lke
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.86
|
|
4
4
|
Summary: Tencent Cloud Lke SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.86
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.86
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.85
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|