tencentcloud-sdk-python-lke 3.1.2__tar.gz → 3.1.7__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.2 → tencentcloud_sdk_python_lke-3.1.7}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_lke-3.1.2 → tencentcloud_sdk_python_lke-3.1.7}/setup.py +1 -1
- {tencentcloud_sdk_python_lke-3.1.2 → tencentcloud_sdk_python_lke-3.1.7}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_lke-3.1.2 → tencentcloud_sdk_python_lke-3.1.7}/tencentcloud/lke/v20231130/models.py +68 -0
- {tencentcloud_sdk_python_lke-3.1.2 → tencentcloud_sdk_python_lke-3.1.7}/tencentcloud_sdk_python_lke.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_lke-3.1.7/tencentcloud_sdk_python_lke.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_lke-3.1.2/tencentcloud_sdk_python_lke.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_lke-3.1.2 → tencentcloud_sdk_python_lke-3.1.7}/README.rst +0 -0
- {tencentcloud_sdk_python_lke-3.1.2 → tencentcloud_sdk_python_lke-3.1.7}/setup.cfg +0 -0
- {tencentcloud_sdk_python_lke-3.1.2 → tencentcloud_sdk_python_lke-3.1.7}/tencentcloud/lke/__init__.py +0 -0
- {tencentcloud_sdk_python_lke-3.1.2 → tencentcloud_sdk_python_lke-3.1.7}/tencentcloud/lke/v20231130/__init__.py +0 -0
- {tencentcloud_sdk_python_lke-3.1.2 → tencentcloud_sdk_python_lke-3.1.7}/tencentcloud/lke/v20231130/errorcodes.py +0 -0
- {tencentcloud_sdk_python_lke-3.1.2 → tencentcloud_sdk_python_lke-3.1.7}/tencentcloud/lke/v20231130/lke_client.py +0 -0
- {tencentcloud_sdk_python_lke-3.1.2 → tencentcloud_sdk_python_lke-3.1.7}/tencentcloud/lke/v20231130/lke_client_async.py +0 -0
- {tencentcloud_sdk_python_lke-3.1.2 → tencentcloud_sdk_python_lke-3.1.7}/tencentcloud_sdk_python_lke.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_lke-3.1.2 → tencentcloud_sdk_python_lke-3.1.7}/tencentcloud_sdk_python_lke.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_lke-3.1.2 → tencentcloud_sdk_python_lke-3.1.7}/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.7
|
|
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.7
|
|
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.7,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Lke SDK for Python',
|
|
@@ -556,6 +556,42 @@ class AgentDebugInfo(AbstractModel):
|
|
|
556
556
|
|
|
557
557
|
|
|
558
558
|
|
|
559
|
+
class AgentHandoffAdvancedSetting(AbstractModel):
|
|
560
|
+
r"""Agent转交高级设置
|
|
561
|
+
|
|
562
|
+
"""
|
|
563
|
+
|
|
564
|
+
def __init__(self):
|
|
565
|
+
r"""
|
|
566
|
+
:param _ConversationPolicy: 对话流转策略;0-由上一轮回复用户的 Agent 继续发起,1- 回到主Agent
|
|
567
|
+
:type ConversationPolicy: int
|
|
568
|
+
"""
|
|
569
|
+
self._ConversationPolicy = None
|
|
570
|
+
|
|
571
|
+
@property
|
|
572
|
+
def ConversationPolicy(self):
|
|
573
|
+
r"""对话流转策略;0-由上一轮回复用户的 Agent 继续发起,1- 回到主Agent
|
|
574
|
+
:rtype: int
|
|
575
|
+
"""
|
|
576
|
+
return self._ConversationPolicy
|
|
577
|
+
|
|
578
|
+
@ConversationPolicy.setter
|
|
579
|
+
def ConversationPolicy(self, ConversationPolicy):
|
|
580
|
+
self._ConversationPolicy = ConversationPolicy
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
def _deserialize(self, params):
|
|
584
|
+
self._ConversationPolicy = params.get("ConversationPolicy")
|
|
585
|
+
memeber_set = set(params.keys())
|
|
586
|
+
for name, value in vars(self).items():
|
|
587
|
+
property_name = name[1:]
|
|
588
|
+
if property_name in memeber_set:
|
|
589
|
+
memeber_set.remove(property_name)
|
|
590
|
+
if len(memeber_set) > 0:
|
|
591
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
592
|
+
|
|
593
|
+
|
|
594
|
+
|
|
559
595
|
class AgentInput(AbstractModel):
|
|
560
596
|
r"""Agent输入值,支持直接赋值和引用
|
|
561
597
|
|
|
@@ -2700,6 +2736,8 @@ class AgentToolInfo(AbstractModel):
|
|
|
2700
2736
|
:type FinanceStatus: int
|
|
2701
2737
|
:param _ToolSource: 工具来源: 0-来自插件,1-来自工作流
|
|
2702
2738
|
:type ToolSource: int
|
|
2739
|
+
:param _FinanceType: 计费状态;0-不计费,1-限时免费,2-官方收费
|
|
2740
|
+
:type FinanceType: int
|
|
2703
2741
|
"""
|
|
2704
2742
|
self._PluginId = None
|
|
2705
2743
|
self._PluginName = None
|
|
@@ -2719,6 +2757,7 @@ class AgentToolInfo(AbstractModel):
|
|
|
2719
2757
|
self._Query = None
|
|
2720
2758
|
self._FinanceStatus = None
|
|
2721
2759
|
self._ToolSource = None
|
|
2760
|
+
self._FinanceType = None
|
|
2722
2761
|
|
|
2723
2762
|
@property
|
|
2724
2763
|
def PluginId(self):
|
|
@@ -2921,6 +2960,17 @@ class AgentToolInfo(AbstractModel):
|
|
|
2921
2960
|
def ToolSource(self, ToolSource):
|
|
2922
2961
|
self._ToolSource = ToolSource
|
|
2923
2962
|
|
|
2963
|
+
@property
|
|
2964
|
+
def FinanceType(self):
|
|
2965
|
+
r"""计费状态;0-不计费,1-限时免费,2-官方收费
|
|
2966
|
+
:rtype: int
|
|
2967
|
+
"""
|
|
2968
|
+
return self._FinanceType
|
|
2969
|
+
|
|
2970
|
+
@FinanceType.setter
|
|
2971
|
+
def FinanceType(self, FinanceType):
|
|
2972
|
+
self._FinanceType = FinanceType
|
|
2973
|
+
|
|
2924
2974
|
|
|
2925
2975
|
def _deserialize(self, params):
|
|
2926
2976
|
self._PluginId = params.get("PluginId")
|
|
@@ -2963,6 +3013,7 @@ class AgentToolInfo(AbstractModel):
|
|
|
2963
3013
|
self._Query.append(obj)
|
|
2964
3014
|
self._FinanceStatus = params.get("FinanceStatus")
|
|
2965
3015
|
self._ToolSource = params.get("ToolSource")
|
|
3016
|
+
self._FinanceType = params.get("FinanceType")
|
|
2966
3017
|
memeber_set = set(params.keys())
|
|
2967
3018
|
for name, value in vars(self).items():
|
|
2968
3019
|
property_name = name[1:]
|
|
@@ -8524,11 +8575,14 @@ class DescribeAppAgentListResponse(AbstractModel):
|
|
|
8524
8575
|
:type StaringAgentId: str
|
|
8525
8576
|
:param _Agents: 应用Agent信息列表
|
|
8526
8577
|
:type Agents: list of Agent
|
|
8578
|
+
:param _HandoffAdvancedSetting: Agent转交高级设置
|
|
8579
|
+
:type HandoffAdvancedSetting: :class:`tencentcloud.lke.v20231130.models.AgentHandoffAdvancedSetting`
|
|
8527
8580
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8528
8581
|
:type RequestId: str
|
|
8529
8582
|
"""
|
|
8530
8583
|
self._StaringAgentId = None
|
|
8531
8584
|
self._Agents = None
|
|
8585
|
+
self._HandoffAdvancedSetting = None
|
|
8532
8586
|
self._RequestId = None
|
|
8533
8587
|
|
|
8534
8588
|
@property
|
|
@@ -8553,6 +8607,17 @@ class DescribeAppAgentListResponse(AbstractModel):
|
|
|
8553
8607
|
def Agents(self, Agents):
|
|
8554
8608
|
self._Agents = Agents
|
|
8555
8609
|
|
|
8610
|
+
@property
|
|
8611
|
+
def HandoffAdvancedSetting(self):
|
|
8612
|
+
r"""Agent转交高级设置
|
|
8613
|
+
:rtype: :class:`tencentcloud.lke.v20231130.models.AgentHandoffAdvancedSetting`
|
|
8614
|
+
"""
|
|
8615
|
+
return self._HandoffAdvancedSetting
|
|
8616
|
+
|
|
8617
|
+
@HandoffAdvancedSetting.setter
|
|
8618
|
+
def HandoffAdvancedSetting(self, HandoffAdvancedSetting):
|
|
8619
|
+
self._HandoffAdvancedSetting = HandoffAdvancedSetting
|
|
8620
|
+
|
|
8556
8621
|
@property
|
|
8557
8622
|
def RequestId(self):
|
|
8558
8623
|
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -8573,6 +8638,9 @@ class DescribeAppAgentListResponse(AbstractModel):
|
|
|
8573
8638
|
obj = Agent()
|
|
8574
8639
|
obj._deserialize(item)
|
|
8575
8640
|
self._Agents.append(obj)
|
|
8641
|
+
if params.get("HandoffAdvancedSetting") is not None:
|
|
8642
|
+
self._HandoffAdvancedSetting = AgentHandoffAdvancedSetting()
|
|
8643
|
+
self._HandoffAdvancedSetting._deserialize(params.get("HandoffAdvancedSetting"))
|
|
8576
8644
|
self._RequestId = params.get("RequestId")
|
|
8577
8645
|
|
|
8578
8646
|
|
|
@@ -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.7
|
|
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.7
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.7
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.2
|
|
File without changes
|
|
File without changes
|
{tencentcloud_sdk_python_lke-3.1.2 → tencentcloud_sdk_python_lke-3.1.7}/tencentcloud/lke/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|