tencentcloud-sdk-python-lke 3.1.29__tar.gz → 3.1.35__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.
Files changed (17) hide show
  1. {tencentcloud_sdk_python_lke-3.1.29 → tencentcloud_sdk_python_lke-3.1.35}/PKG-INFO +2 -2
  2. {tencentcloud_sdk_python_lke-3.1.29 → tencentcloud_sdk_python_lke-3.1.35}/setup.py +1 -1
  3. {tencentcloud_sdk_python_lke-3.1.29 → tencentcloud_sdk_python_lke-3.1.35}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud_sdk_python_lke-3.1.29 → tencentcloud_sdk_python_lke-3.1.35}/tencentcloud/lke/v20231130/models.py +231 -0
  5. {tencentcloud_sdk_python_lke-3.1.29 → tencentcloud_sdk_python_lke-3.1.35}/tencentcloud_sdk_python_lke.egg-info/PKG-INFO +2 -2
  6. tencentcloud_sdk_python_lke-3.1.35/tencentcloud_sdk_python_lke.egg-info/requires.txt +1 -0
  7. tencentcloud_sdk_python_lke-3.1.29/tencentcloud_sdk_python_lke.egg-info/requires.txt +0 -1
  8. {tencentcloud_sdk_python_lke-3.1.29 → tencentcloud_sdk_python_lke-3.1.35}/README.rst +0 -0
  9. {tencentcloud_sdk_python_lke-3.1.29 → tencentcloud_sdk_python_lke-3.1.35}/setup.cfg +0 -0
  10. {tencentcloud_sdk_python_lke-3.1.29 → tencentcloud_sdk_python_lke-3.1.35}/tencentcloud/lke/__init__.py +0 -0
  11. {tencentcloud_sdk_python_lke-3.1.29 → tencentcloud_sdk_python_lke-3.1.35}/tencentcloud/lke/v20231130/__init__.py +0 -0
  12. {tencentcloud_sdk_python_lke-3.1.29 → tencentcloud_sdk_python_lke-3.1.35}/tencentcloud/lke/v20231130/errorcodes.py +0 -0
  13. {tencentcloud_sdk_python_lke-3.1.29 → tencentcloud_sdk_python_lke-3.1.35}/tencentcloud/lke/v20231130/lke_client.py +0 -0
  14. {tencentcloud_sdk_python_lke-3.1.29 → tencentcloud_sdk_python_lke-3.1.35}/tencentcloud/lke/v20231130/lke_client_async.py +0 -0
  15. {tencentcloud_sdk_python_lke-3.1.29 → tencentcloud_sdk_python_lke-3.1.35}/tencentcloud_sdk_python_lke.egg-info/SOURCES.txt +0 -0
  16. {tencentcloud_sdk_python_lke-3.1.29 → tencentcloud_sdk_python_lke-3.1.35}/tencentcloud_sdk_python_lke.egg-info/dependency_links.txt +0 -0
  17. {tencentcloud_sdk_python_lke-3.1.29 → tencentcloud_sdk_python_lke-3.1.35}/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.29
3
+ Version: 3.1.35
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.29
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.35
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.29,<4.0.0"],
11
+ install_requires=["tencentcloud-sdk-python-common>=3.1.35,<4.0.0"],
12
12
 
13
13
  version=tencentcloud.__version__,
14
14
  description='Tencent Cloud Lke SDK for Python',
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.1.29'
17
+ __version__ = '3.1.35'
@@ -2860,6 +2860,10 @@ class AgentToolInfo(AbstractModel):
2860
2860
  :type FinanceType: int
2861
2861
  :param _ToolAdvanceConfig: 工具高级设置
2862
2862
  :type ToolAdvanceConfig: :class:`tencentcloud.lke.v20231130.models.ToolAdvanceConfig`
2863
+ :param _AuthMode: 授权模式; 0-开发者授权;1-使用者授权
2864
+ :type AuthMode: int
2865
+ :param _AuthType: 授权类型; 0-无鉴权;1-APIKey;2-CAM授权;3-Oauth2.0授权;
2866
+ :type AuthType: int
2863
2867
  """
2864
2868
  self._PluginId = None
2865
2869
  self._PluginName = None
@@ -2881,6 +2885,8 @@ class AgentToolInfo(AbstractModel):
2881
2885
  self._ToolSource = None
2882
2886
  self._FinanceType = None
2883
2887
  self._ToolAdvanceConfig = None
2888
+ self._AuthMode = None
2889
+ self._AuthType = None
2884
2890
 
2885
2891
  @property
2886
2892
  def PluginId(self):
@@ -3105,6 +3111,28 @@ class AgentToolInfo(AbstractModel):
3105
3111
  def ToolAdvanceConfig(self, ToolAdvanceConfig):
3106
3112
  self._ToolAdvanceConfig = ToolAdvanceConfig
3107
3113
 
3114
+ @property
3115
+ def AuthMode(self):
3116
+ r"""授权模式; 0-开发者授权;1-使用者授权
3117
+ :rtype: int
3118
+ """
3119
+ return self._AuthMode
3120
+
3121
+ @AuthMode.setter
3122
+ def AuthMode(self, AuthMode):
3123
+ self._AuthMode = AuthMode
3124
+
3125
+ @property
3126
+ def AuthType(self):
3127
+ r"""授权类型; 0-无鉴权;1-APIKey;2-CAM授权;3-Oauth2.0授权;
3128
+ :rtype: int
3129
+ """
3130
+ return self._AuthType
3131
+
3132
+ @AuthType.setter
3133
+ def AuthType(self, AuthType):
3134
+ self._AuthType = AuthType
3135
+
3108
3136
 
3109
3137
  def _deserialize(self, params):
3110
3138
  self._PluginId = params.get("PluginId")
@@ -3151,6 +3179,8 @@ class AgentToolInfo(AbstractModel):
3151
3179
  if params.get("ToolAdvanceConfig") is not None:
3152
3180
  self._ToolAdvanceConfig = ToolAdvanceConfig()
3153
3181
  self._ToolAdvanceConfig._deserialize(params.get("ToolAdvanceConfig"))
3182
+ self._AuthMode = params.get("AuthMode")
3183
+ self._AuthType = params.get("AuthType")
3154
3184
  memeber_set = set(params.keys())
3155
3185
  for name, value in vars(self).items():
3156
3186
  property_name = name[1:]
@@ -4782,6 +4812,168 @@ class AttributeLabelRefByWorkflow(AbstractModel):
4782
4812
 
4783
4813
 
4784
4814
 
4815
+ class Audio(AbstractModel):
4816
+ r"""音频信息
4817
+
4818
+ """
4819
+
4820
+ def __init__(self):
4821
+ r"""
4822
+ :param _Format: 音频文件格式
4823
+ :type Format: str
4824
+ :param _AudioUrl: 音频文件地址
4825
+ :type AudioUrl: str
4826
+ :param _Title: 音频标题
4827
+ 注意:此字段可能返回 null,表示取不到有效值。
4828
+ :type Title: str
4829
+ :param _Position: 音频文件在正文中的位置
4830
+ 注意:此字段可能返回 null,表示取不到有效值。
4831
+ :type Position: int
4832
+ :param _AudioTranscripts: 音频转录后的文字列表
4833
+ 注意:此字段可能返回 null,表示取不到有效值。
4834
+ :type AudioTranscripts: list of AudioTranscript
4835
+ """
4836
+ self._Format = None
4837
+ self._AudioUrl = None
4838
+ self._Title = None
4839
+ self._Position = None
4840
+ self._AudioTranscripts = None
4841
+
4842
+ @property
4843
+ def Format(self):
4844
+ r"""音频文件格式
4845
+ :rtype: str
4846
+ """
4847
+ return self._Format
4848
+
4849
+ @Format.setter
4850
+ def Format(self, Format):
4851
+ self._Format = Format
4852
+
4853
+ @property
4854
+ def AudioUrl(self):
4855
+ r"""音频文件地址
4856
+ :rtype: str
4857
+ """
4858
+ return self._AudioUrl
4859
+
4860
+ @AudioUrl.setter
4861
+ def AudioUrl(self, AudioUrl):
4862
+ self._AudioUrl = AudioUrl
4863
+
4864
+ @property
4865
+ def Title(self):
4866
+ r"""音频标题
4867
+ 注意:此字段可能返回 null,表示取不到有效值。
4868
+ :rtype: str
4869
+ """
4870
+ return self._Title
4871
+
4872
+ @Title.setter
4873
+ def Title(self, Title):
4874
+ self._Title = Title
4875
+
4876
+ @property
4877
+ def Position(self):
4878
+ r"""音频文件在正文中的位置
4879
+ 注意:此字段可能返回 null,表示取不到有效值。
4880
+ :rtype: int
4881
+ """
4882
+ return self._Position
4883
+
4884
+ @Position.setter
4885
+ def Position(self, Position):
4886
+ self._Position = Position
4887
+
4888
+ @property
4889
+ def AudioTranscripts(self):
4890
+ r"""音频转录后的文字列表
4891
+ 注意:此字段可能返回 null,表示取不到有效值。
4892
+ :rtype: list of AudioTranscript
4893
+ """
4894
+ return self._AudioTranscripts
4895
+
4896
+ @AudioTranscripts.setter
4897
+ def AudioTranscripts(self, AudioTranscripts):
4898
+ self._AudioTranscripts = AudioTranscripts
4899
+
4900
+
4901
+ def _deserialize(self, params):
4902
+ self._Format = params.get("Format")
4903
+ self._AudioUrl = params.get("AudioUrl")
4904
+ self._Title = params.get("Title")
4905
+ self._Position = params.get("Position")
4906
+ if params.get("AudioTranscripts") is not None:
4907
+ self._AudioTranscripts = []
4908
+ for item in params.get("AudioTranscripts"):
4909
+ obj = AudioTranscript()
4910
+ obj._deserialize(item)
4911
+ self._AudioTranscripts.append(obj)
4912
+ memeber_set = set(params.keys())
4913
+ for name, value in vars(self).items():
4914
+ property_name = name[1:]
4915
+ if property_name in memeber_set:
4916
+ memeber_set.remove(property_name)
4917
+ if len(memeber_set) > 0:
4918
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
4919
+
4920
+
4921
+
4922
+ class AudioTranscript(AbstractModel):
4923
+ r"""音频转录的文本内容
4924
+
4925
+ """
4926
+
4927
+ def __init__(self):
4928
+ r"""
4929
+ :param _Speaker: 音频的发言者
4930
+ 注意:此字段可能返回 null,表示取不到有效值。
4931
+ :type Speaker: str
4932
+ :param _Transcript: 音频转录为文字后的内容
4933
+ 注意:此字段可能返回 null,表示取不到有效值。
4934
+ :type Transcript: str
4935
+ """
4936
+ self._Speaker = None
4937
+ self._Transcript = None
4938
+
4939
+ @property
4940
+ def Speaker(self):
4941
+ r"""音频的发言者
4942
+ 注意:此字段可能返回 null,表示取不到有效值。
4943
+ :rtype: str
4944
+ """
4945
+ return self._Speaker
4946
+
4947
+ @Speaker.setter
4948
+ def Speaker(self, Speaker):
4949
+ self._Speaker = Speaker
4950
+
4951
+ @property
4952
+ def Transcript(self):
4953
+ r"""音频转录为文字后的内容
4954
+ 注意:此字段可能返回 null,表示取不到有效值。
4955
+ :rtype: str
4956
+ """
4957
+ return self._Transcript
4958
+
4959
+ @Transcript.setter
4960
+ def Transcript(self, Transcript):
4961
+ self._Transcript = Transcript
4962
+
4963
+
4964
+ def _deserialize(self, params):
4965
+ self._Speaker = params.get("Speaker")
4966
+ self._Transcript = params.get("Transcript")
4967
+ memeber_set = set(params.keys())
4968
+ for name, value in vars(self).items():
4969
+ property_name = name[1:]
4970
+ if property_name in memeber_set:
4971
+ memeber_set.remove(property_name)
4972
+ if len(memeber_set) > 0:
4973
+ warnings.warn("%s fileds are useless." % ",".join(memeber_set))
4974
+
4975
+
4976
+
4785
4977
  class BackgroundImageConfig(AbstractModel):
4786
4978
  r"""背景图相关配置
4787
4979
 
@@ -23735,10 +23927,14 @@ class ListReferShareKnowledgeResponse(AbstractModel):
23735
23927
  r"""
23736
23928
  :param _List: 共享知识库信息列表
23737
23929
  :type List: list of KnowledgeBaseInfo
23930
+ :param _Total: 共享知识库数量
23931
+ 注意:此字段可能返回 null,表示取不到有效值。
23932
+ :type Total: str
23738
23933
  :param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
23739
23934
  :type RequestId: str
23740
23935
  """
23741
23936
  self._List = None
23937
+ self._Total = None
23742
23938
  self._RequestId = None
23743
23939
 
23744
23940
  @property
@@ -23752,6 +23948,18 @@ class ListReferShareKnowledgeResponse(AbstractModel):
23752
23948
  def List(self, List):
23753
23949
  self._List = List
23754
23950
 
23951
+ @property
23952
+ def Total(self):
23953
+ r"""共享知识库数量
23954
+ 注意:此字段可能返回 null,表示取不到有效值。
23955
+ :rtype: str
23956
+ """
23957
+ return self._Total
23958
+
23959
+ @Total.setter
23960
+ def Total(self, Total):
23961
+ self._Total = Total
23962
+
23755
23963
  @property
23756
23964
  def RequestId(self):
23757
23965
  r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
@@ -23771,6 +23979,7 @@ class ListReferShareKnowledgeResponse(AbstractModel):
23771
23979
  obj = KnowledgeBaseInfo()
23772
23980
  obj._deserialize(item)
23773
23981
  self._List.append(obj)
23982
+ self._Total = params.get("Total")
23774
23983
  self._RequestId = params.get("RequestId")
23775
23984
 
23776
23985
 
@@ -28481,6 +28690,9 @@ class MsgRecord(AbstractModel):
28481
28690
  :param _WidgetAction: Widget动作信息
28482
28691
  注意:此字段可能返回 null,表示取不到有效值。
28483
28692
  :type WidgetAction: :class:`tencentcloud.lke.v20231130.models.WidgetAction`
28693
+ :param _Audios: 音频信息
28694
+ 注意:此字段可能返回 null,表示取不到有效值。
28695
+ :type Audios: list of Audio
28484
28696
  """
28485
28697
  self._Content = None
28486
28698
  self._SessionId = None
@@ -28510,6 +28722,7 @@ class MsgRecord(AbstractModel):
28510
28722
  self._WorkFlow = None
28511
28723
  self._Widgets = None
28512
28724
  self._WidgetAction = None
28725
+ self._Audios = None
28513
28726
 
28514
28727
  @property
28515
28728
  def Content(self):
@@ -28847,6 +29060,18 @@ class MsgRecord(AbstractModel):
28847
29060
  def WidgetAction(self, WidgetAction):
28848
29061
  self._WidgetAction = WidgetAction
28849
29062
 
29063
+ @property
29064
+ def Audios(self):
29065
+ r"""音频信息
29066
+ 注意:此字段可能返回 null,表示取不到有效值。
29067
+ :rtype: list of Audio
29068
+ """
29069
+ return self._Audios
29070
+
29071
+ @Audios.setter
29072
+ def Audios(self, Audios):
29073
+ self._Audios = Audios
29074
+
28850
29075
 
28851
29076
  def _deserialize(self, params):
28852
29077
  self._Content = params.get("Content")
@@ -28909,6 +29134,12 @@ class MsgRecord(AbstractModel):
28909
29134
  if params.get("WidgetAction") is not None:
28910
29135
  self._WidgetAction = WidgetAction()
28911
29136
  self._WidgetAction._deserialize(params.get("WidgetAction"))
29137
+ if params.get("Audios") is not None:
29138
+ self._Audios = []
29139
+ for item in params.get("Audios"):
29140
+ obj = Audio()
29141
+ obj._deserialize(item)
29142
+ self._Audios.append(obj)
28912
29143
  memeber_set = set(params.keys())
28913
29144
  for name, value in vars(self).items():
28914
29145
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tencentcloud-sdk-python-lke
3
- Version: 3.1.29
3
+ Version: 3.1.35
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.29
18
+ Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.35
19
19
 
20
20
  ============================
21
21
  Tencent Cloud SDK for Python
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common<4.0.0,>=3.1.35
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common<4.0.0,>=3.1.29