tencentcloud-sdk-python 3.0.1381__py2.py3-none-any.whl → 3.0.1383__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/cbs/v20170312/cbs_client.py +3 -3
- tencentcloud/cbs/v20170312/errorcodes.py +9 -0
- tencentcloud/cbs/v20170312/models.py +76 -55
- tencentcloud/cdb/v20170320/cdb_client.py +1 -1
- tencentcloud/cdb/v20170320/models.py +20 -0
- tencentcloud/cdwdoris/v20211228/models.py +30 -0
- tencentcloud/cfs/v20190719/cfs_client.py +2 -2
- tencentcloud/cfs/v20190719/models.py +46 -48
- tencentcloud/cfw/v20190904/cfw_client.py +1 -1
- tencentcloud/cfw/v20190904/models.py +2 -2
- tencentcloud/cvm/v20170312/models.py +36 -16
- tencentcloud/cynosdb/v20190107/models.py +252 -0
- tencentcloud/dnspod/v20210323/models.py +0 -2
- tencentcloud/emr/v20190103/models.py +15 -0
- tencentcloud/ess/v20201111/errorcodes.py +9 -0
- tencentcloud/ess/v20201111/models.py +54 -26
- tencentcloud/essbasic/v20210526/errorcodes.py +3 -0
- tencentcloud/essbasic/v20210526/essbasic_client.py +1 -1
- tencentcloud/essbasic/v20210526/models.py +40 -6
- tencentcloud/gs/v20191118/models.py +30 -0
- tencentcloud/hai/v20230812/hai_client.py +8 -6
- tencentcloud/hai/v20230812/models.py +72 -84
- tencentcloud/lke/v20231130/models.py +671 -2
- tencentcloud/mps/v20190612/models.py +887 -0
- tencentcloud/mps/v20190612/mps_client.py +70 -0
- tencentcloud/postgres/v20170312/models.py +0 -158
- tencentcloud/postgres/v20170312/postgres_client.py +0 -50
- tencentcloud/privatedns/v20201028/errorcodes.py +2 -2
- tencentcloud/privatedns/v20201028/models.py +8 -8
- tencentcloud/pts/v20210728/models.py +15 -0
- tencentcloud/ssl/v20191205/errorcodes.py +24 -0
- tencentcloud/ssl/v20191205/models.py +176 -6
- tencentcloud/teo/v20220901/teo_client.py +5 -0
- tencentcloud/tke/v20180525/errorcodes.py +3 -0
- tencentcloud/tke/v20180525/models.py +15 -184
- tencentcloud/tke/v20180525/tke_client.py +0 -23
- tencentcloud/tms/v20201229/errorcodes.py +3 -0
- tencentcloud/tms/v20201229/models.py +36 -4
- tencentcloud/vpc/v20170312/errorcodes.py +6 -0
- tencentcloud/vpc/v20170312/models.py +18 -18
- {tencentcloud_sdk_python-3.0.1381.dist-info → tencentcloud_sdk_python-3.0.1383.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1381.dist-info → tencentcloud_sdk_python-3.0.1383.dist-info}/RECORD +46 -46
- {tencentcloud_sdk_python-3.0.1381.dist-info → tencentcloud_sdk_python-3.0.1383.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1381.dist-info → tencentcloud_sdk_python-3.0.1383.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1381.dist-info → tencentcloud_sdk_python-3.0.1383.dist-info}/top_level.txt +0 -0
@@ -18,6 +18,116 @@ import warnings
|
|
18
18
|
from tencentcloud.common.abstract_model import AbstractModel
|
19
19
|
|
20
20
|
|
21
|
+
class AICallConfig(AbstractModel):
|
22
|
+
"""智能通话
|
23
|
+
|
24
|
+
"""
|
25
|
+
|
26
|
+
def __init__(self):
|
27
|
+
r"""
|
28
|
+
:param _EnableVoiceInteract: 启用语音互动功能
|
29
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
30
|
+
:type EnableVoiceInteract: bool
|
31
|
+
:param _EnableVoiceCall: 启用语音通话
|
32
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
33
|
+
:type EnableVoiceCall: bool
|
34
|
+
:param _EnableDigitalHuman: 启用数智人
|
35
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
36
|
+
:type EnableDigitalHuman: bool
|
37
|
+
:param _Voice: 音色配置
|
38
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
39
|
+
:type Voice: :class:`tencentcloud.lke.v20231130.models.VoiceConfig`
|
40
|
+
:param _DigitalHuman: 数智人配置
|
41
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
42
|
+
:type DigitalHuman: :class:`tencentcloud.lke.v20231130.models.DigitalHumanConfig`
|
43
|
+
"""
|
44
|
+
self._EnableVoiceInteract = None
|
45
|
+
self._EnableVoiceCall = None
|
46
|
+
self._EnableDigitalHuman = None
|
47
|
+
self._Voice = None
|
48
|
+
self._DigitalHuman = None
|
49
|
+
|
50
|
+
@property
|
51
|
+
def EnableVoiceInteract(self):
|
52
|
+
"""启用语音互动功能
|
53
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
54
|
+
:rtype: bool
|
55
|
+
"""
|
56
|
+
return self._EnableVoiceInteract
|
57
|
+
|
58
|
+
@EnableVoiceInteract.setter
|
59
|
+
def EnableVoiceInteract(self, EnableVoiceInteract):
|
60
|
+
self._EnableVoiceInteract = EnableVoiceInteract
|
61
|
+
|
62
|
+
@property
|
63
|
+
def EnableVoiceCall(self):
|
64
|
+
"""启用语音通话
|
65
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
66
|
+
:rtype: bool
|
67
|
+
"""
|
68
|
+
return self._EnableVoiceCall
|
69
|
+
|
70
|
+
@EnableVoiceCall.setter
|
71
|
+
def EnableVoiceCall(self, EnableVoiceCall):
|
72
|
+
self._EnableVoiceCall = EnableVoiceCall
|
73
|
+
|
74
|
+
@property
|
75
|
+
def EnableDigitalHuman(self):
|
76
|
+
"""启用数智人
|
77
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
78
|
+
:rtype: bool
|
79
|
+
"""
|
80
|
+
return self._EnableDigitalHuman
|
81
|
+
|
82
|
+
@EnableDigitalHuman.setter
|
83
|
+
def EnableDigitalHuman(self, EnableDigitalHuman):
|
84
|
+
self._EnableDigitalHuman = EnableDigitalHuman
|
85
|
+
|
86
|
+
@property
|
87
|
+
def Voice(self):
|
88
|
+
"""音色配置
|
89
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
90
|
+
:rtype: :class:`tencentcloud.lke.v20231130.models.VoiceConfig`
|
91
|
+
"""
|
92
|
+
return self._Voice
|
93
|
+
|
94
|
+
@Voice.setter
|
95
|
+
def Voice(self, Voice):
|
96
|
+
self._Voice = Voice
|
97
|
+
|
98
|
+
@property
|
99
|
+
def DigitalHuman(self):
|
100
|
+
"""数智人配置
|
101
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
102
|
+
:rtype: :class:`tencentcloud.lke.v20231130.models.DigitalHumanConfig`
|
103
|
+
"""
|
104
|
+
return self._DigitalHuman
|
105
|
+
|
106
|
+
@DigitalHuman.setter
|
107
|
+
def DigitalHuman(self, DigitalHuman):
|
108
|
+
self._DigitalHuman = DigitalHuman
|
109
|
+
|
110
|
+
|
111
|
+
def _deserialize(self, params):
|
112
|
+
self._EnableVoiceInteract = params.get("EnableVoiceInteract")
|
113
|
+
self._EnableVoiceCall = params.get("EnableVoiceCall")
|
114
|
+
self._EnableDigitalHuman = params.get("EnableDigitalHuman")
|
115
|
+
if params.get("Voice") is not None:
|
116
|
+
self._Voice = VoiceConfig()
|
117
|
+
self._Voice._deserialize(params.get("Voice"))
|
118
|
+
if params.get("DigitalHuman") is not None:
|
119
|
+
self._DigitalHuman = DigitalHumanConfig()
|
120
|
+
self._DigitalHuman._deserialize(params.get("DigitalHuman"))
|
121
|
+
memeber_set = set(params.keys())
|
122
|
+
for name, value in vars(self).items():
|
123
|
+
property_name = name[1:]
|
124
|
+
if property_name in memeber_set:
|
125
|
+
memeber_set.remove(property_name)
|
126
|
+
if len(memeber_set) > 0:
|
127
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
128
|
+
|
129
|
+
|
130
|
+
|
21
131
|
class AgentDebugInfo(AbstractModel):
|
22
132
|
"""Agent调试信息
|
23
133
|
|
@@ -119,6 +229,9 @@ class AgentProcedure(AbstractModel):
|
|
119
229
|
:param _TargetAgentName: 挂号agent
|
120
230
|
注意:此字段可能返回 null,表示取不到有效值。
|
121
231
|
:type TargetAgentName: str
|
232
|
+
:param _AgentIcon: Agent的图标
|
233
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
234
|
+
:type AgentIcon: str
|
122
235
|
"""
|
123
236
|
self._Index = None
|
124
237
|
self._Name = None
|
@@ -133,6 +246,7 @@ class AgentProcedure(AbstractModel):
|
|
133
246
|
self._ReplyIndex = None
|
134
247
|
self._SourceAgentName = None
|
135
248
|
self._TargetAgentName = None
|
249
|
+
self._AgentIcon = None
|
136
250
|
|
137
251
|
@property
|
138
252
|
def Index(self):
|
@@ -290,6 +404,18 @@ class AgentProcedure(AbstractModel):
|
|
290
404
|
def TargetAgentName(self, TargetAgentName):
|
291
405
|
self._TargetAgentName = TargetAgentName
|
292
406
|
|
407
|
+
@property
|
408
|
+
def AgentIcon(self):
|
409
|
+
"""Agent的图标
|
410
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
411
|
+
:rtype: str
|
412
|
+
"""
|
413
|
+
return self._AgentIcon
|
414
|
+
|
415
|
+
@AgentIcon.setter
|
416
|
+
def AgentIcon(self, AgentIcon):
|
417
|
+
self._AgentIcon = AgentIcon
|
418
|
+
|
293
419
|
|
294
420
|
def _deserialize(self, params):
|
295
421
|
self._Index = params.get("Index")
|
@@ -307,6 +433,7 @@ class AgentProcedure(AbstractModel):
|
|
307
433
|
self._ReplyIndex = params.get("ReplyIndex")
|
308
434
|
self._SourceAgentName = params.get("SourceAgentName")
|
309
435
|
self._TargetAgentName = params.get("TargetAgentName")
|
436
|
+
self._AgentIcon = params.get("AgentIcon")
|
310
437
|
memeber_set = set(params.keys())
|
311
438
|
for name, value in vars(self).items():
|
312
439
|
property_name = name[1:]
|
@@ -339,12 +466,24 @@ class AgentProcedureDebugging(AbstractModel):
|
|
339
466
|
:param _References: 具体的参考来源
|
340
467
|
注意:此字段可能返回 null,表示取不到有效值。
|
341
468
|
:type References: list of AgentReference
|
469
|
+
:param _DisplayStatus: 展示正在执行的状态
|
470
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
471
|
+
:type DisplayStatus: str
|
472
|
+
:param _SandboxUrl: 云桌面的URL地址
|
473
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
474
|
+
:type SandboxUrl: str
|
475
|
+
:param _DisplayUrl: 云桌面里面通过浏览器打开的URL地址
|
476
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
477
|
+
:type DisplayUrl: str
|
342
478
|
"""
|
343
479
|
self._Content = None
|
344
480
|
self._DisplayContent = None
|
345
481
|
self._DisplayType = None
|
346
482
|
self._QuoteInfos = None
|
347
483
|
self._References = None
|
484
|
+
self._DisplayStatus = None
|
485
|
+
self._SandboxUrl = None
|
486
|
+
self._DisplayUrl = None
|
348
487
|
|
349
488
|
@property
|
350
489
|
def Content(self):
|
@@ -406,6 +545,42 @@ class AgentProcedureDebugging(AbstractModel):
|
|
406
545
|
def References(self, References):
|
407
546
|
self._References = References
|
408
547
|
|
548
|
+
@property
|
549
|
+
def DisplayStatus(self):
|
550
|
+
"""展示正在执行的状态
|
551
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
552
|
+
:rtype: str
|
553
|
+
"""
|
554
|
+
return self._DisplayStatus
|
555
|
+
|
556
|
+
@DisplayStatus.setter
|
557
|
+
def DisplayStatus(self, DisplayStatus):
|
558
|
+
self._DisplayStatus = DisplayStatus
|
559
|
+
|
560
|
+
@property
|
561
|
+
def SandboxUrl(self):
|
562
|
+
"""云桌面的URL地址
|
563
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
564
|
+
:rtype: str
|
565
|
+
"""
|
566
|
+
return self._SandboxUrl
|
567
|
+
|
568
|
+
@SandboxUrl.setter
|
569
|
+
def SandboxUrl(self, SandboxUrl):
|
570
|
+
self._SandboxUrl = SandboxUrl
|
571
|
+
|
572
|
+
@property
|
573
|
+
def DisplayUrl(self):
|
574
|
+
"""云桌面里面通过浏览器打开的URL地址
|
575
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
576
|
+
:rtype: str
|
577
|
+
"""
|
578
|
+
return self._DisplayUrl
|
579
|
+
|
580
|
+
@DisplayUrl.setter
|
581
|
+
def DisplayUrl(self, DisplayUrl):
|
582
|
+
self._DisplayUrl = DisplayUrl
|
583
|
+
|
409
584
|
|
410
585
|
def _deserialize(self, params):
|
411
586
|
self._Content = params.get("Content")
|
@@ -423,6 +598,9 @@ class AgentProcedureDebugging(AbstractModel):
|
|
423
598
|
obj = AgentReference()
|
424
599
|
obj._deserialize(item)
|
425
600
|
self._References.append(obj)
|
601
|
+
self._DisplayStatus = params.get("DisplayStatus")
|
602
|
+
self._SandboxUrl = params.get("SandboxUrl")
|
603
|
+
self._DisplayUrl = params.get("DisplayUrl")
|
426
604
|
memeber_set = set(params.keys())
|
427
605
|
for name, value in vars(self).items():
|
428
606
|
property_name = name[1:]
|
@@ -655,6 +833,9 @@ class AgentThought(AbstractModel):
|
|
655
833
|
:param _TraceId: TraceId
|
656
834
|
注意:此字段可能返回 null,表示取不到有效值。
|
657
835
|
:type TraceId: str
|
836
|
+
:param _Files: 文件信息
|
837
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
838
|
+
:type Files: list of FileInfo
|
658
839
|
"""
|
659
840
|
self._SessionId = None
|
660
841
|
self._RequestId = None
|
@@ -664,6 +845,7 @@ class AgentThought(AbstractModel):
|
|
664
845
|
self._WorkflowName = None
|
665
846
|
self._Procedures = None
|
666
847
|
self._TraceId = None
|
848
|
+
self._Files = None
|
667
849
|
|
668
850
|
@property
|
669
851
|
def SessionId(self):
|
@@ -761,6 +943,18 @@ class AgentThought(AbstractModel):
|
|
761
943
|
def TraceId(self, TraceId):
|
762
944
|
self._TraceId = TraceId
|
763
945
|
|
946
|
+
@property
|
947
|
+
def Files(self):
|
948
|
+
"""文件信息
|
949
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
950
|
+
:rtype: list of FileInfo
|
951
|
+
"""
|
952
|
+
return self._Files
|
953
|
+
|
954
|
+
@Files.setter
|
955
|
+
def Files(self, Files):
|
956
|
+
self._Files = Files
|
957
|
+
|
764
958
|
|
765
959
|
def _deserialize(self, params):
|
766
960
|
self._SessionId = params.get("SessionId")
|
@@ -776,6 +970,12 @@ class AgentThought(AbstractModel):
|
|
776
970
|
obj._deserialize(item)
|
777
971
|
self._Procedures.append(obj)
|
778
972
|
self._TraceId = params.get("TraceId")
|
973
|
+
if params.get("Files") is not None:
|
974
|
+
self._Files = []
|
975
|
+
for item in params.get("Files"):
|
976
|
+
obj = FileInfo()
|
977
|
+
obj._deserialize(item)
|
978
|
+
self._Files.append(obj)
|
779
979
|
memeber_set = set(params.keys())
|
780
980
|
for name, value in vars(self).items():
|
781
981
|
property_name = name[1:]
|
@@ -4596,10 +4796,14 @@ class Credentials(AbstractModel):
|
|
4596
4796
|
:param _TmpSecretKey: 临时证书密钥Key
|
4597
4797
|
注意:此字段可能返回 null,表示取不到有效值。
|
4598
4798
|
:type TmpSecretKey: str
|
4799
|
+
:param _AppId: 临时证书appid
|
4800
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4801
|
+
:type AppId: int
|
4599
4802
|
"""
|
4600
4803
|
self._Token = None
|
4601
4804
|
self._TmpSecretId = None
|
4602
4805
|
self._TmpSecretKey = None
|
4806
|
+
self._AppId = None
|
4603
4807
|
|
4604
4808
|
@property
|
4605
4809
|
def Token(self):
|
@@ -4637,11 +4841,24 @@ class Credentials(AbstractModel):
|
|
4637
4841
|
def TmpSecretKey(self, TmpSecretKey):
|
4638
4842
|
self._TmpSecretKey = TmpSecretKey
|
4639
4843
|
|
4844
|
+
@property
|
4845
|
+
def AppId(self):
|
4846
|
+
"""临时证书appid
|
4847
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4848
|
+
:rtype: int
|
4849
|
+
"""
|
4850
|
+
return self._AppId
|
4851
|
+
|
4852
|
+
@AppId.setter
|
4853
|
+
def AppId(self, AppId):
|
4854
|
+
self._AppId = AppId
|
4855
|
+
|
4640
4856
|
|
4641
4857
|
def _deserialize(self, params):
|
4642
4858
|
self._Token = params.get("Token")
|
4643
4859
|
self._TmpSecretId = params.get("TmpSecretId")
|
4644
4860
|
self._TmpSecretKey = params.get("TmpSecretKey")
|
4861
|
+
self._AppId = params.get("AppId")
|
4645
4862
|
memeber_set = set(params.keys())
|
4646
4863
|
for name, value in vars(self).items():
|
4647
4864
|
property_name = name[1:]
|
@@ -9390,6 +9607,72 @@ class DescribeUnsatisfiedReplyContextResponse(AbstractModel):
|
|
9390
9607
|
self._RequestId = params.get("RequestId")
|
9391
9608
|
|
9392
9609
|
|
9610
|
+
class DigitalHumanConfig(AbstractModel):
|
9611
|
+
"""数智人配置
|
9612
|
+
|
9613
|
+
"""
|
9614
|
+
|
9615
|
+
def __init__(self):
|
9616
|
+
r"""
|
9617
|
+
:param _AssetKey: 数智人资产key
|
9618
|
+
:type AssetKey: str
|
9619
|
+
:param _Name: 数智人名称
|
9620
|
+
:type Name: str
|
9621
|
+
:param _Avatar: 图像
|
9622
|
+
:type Avatar: str
|
9623
|
+
"""
|
9624
|
+
self._AssetKey = None
|
9625
|
+
self._Name = None
|
9626
|
+
self._Avatar = None
|
9627
|
+
|
9628
|
+
@property
|
9629
|
+
def AssetKey(self):
|
9630
|
+
"""数智人资产key
|
9631
|
+
:rtype: str
|
9632
|
+
"""
|
9633
|
+
return self._AssetKey
|
9634
|
+
|
9635
|
+
@AssetKey.setter
|
9636
|
+
def AssetKey(self, AssetKey):
|
9637
|
+
self._AssetKey = AssetKey
|
9638
|
+
|
9639
|
+
@property
|
9640
|
+
def Name(self):
|
9641
|
+
"""数智人名称
|
9642
|
+
:rtype: str
|
9643
|
+
"""
|
9644
|
+
return self._Name
|
9645
|
+
|
9646
|
+
@Name.setter
|
9647
|
+
def Name(self, Name):
|
9648
|
+
self._Name = Name
|
9649
|
+
|
9650
|
+
@property
|
9651
|
+
def Avatar(self):
|
9652
|
+
"""图像
|
9653
|
+
:rtype: str
|
9654
|
+
"""
|
9655
|
+
return self._Avatar
|
9656
|
+
|
9657
|
+
@Avatar.setter
|
9658
|
+
def Avatar(self, Avatar):
|
9659
|
+
self._Avatar = Avatar
|
9660
|
+
|
9661
|
+
|
9662
|
+
def _deserialize(self, params):
|
9663
|
+
self._AssetKey = params.get("AssetKey")
|
9664
|
+
self._Name = params.get("Name")
|
9665
|
+
self._Avatar = params.get("Avatar")
|
9666
|
+
memeber_set = set(params.keys())
|
9667
|
+
for name, value in vars(self).items():
|
9668
|
+
property_name = name[1:]
|
9669
|
+
if property_name in memeber_set:
|
9670
|
+
memeber_set.remove(property_name)
|
9671
|
+
if len(memeber_set) > 0:
|
9672
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
9673
|
+
|
9674
|
+
|
9675
|
+
|
9393
9676
|
class DocFilterFlag(AbstractModel):
|
9394
9677
|
"""文档列表筛选标识位
|
9395
9678
|
|
@@ -10410,12 +10693,16 @@ class FileInfo(AbstractModel):
|
|
10410
10693
|
:param _DocId: 解析后返回的DocID
|
10411
10694
|
注意:此字段可能返回 null,表示取不到有效值。
|
10412
10695
|
:type DocId: str
|
10696
|
+
:param _CreatedAt: 创建时间
|
10697
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10698
|
+
:type CreatedAt: str
|
10413
10699
|
"""
|
10414
10700
|
self._FileName = None
|
10415
10701
|
self._FileSize = None
|
10416
10702
|
self._FileUrl = None
|
10417
10703
|
self._FileType = None
|
10418
10704
|
self._DocId = None
|
10705
|
+
self._CreatedAt = None
|
10419
10706
|
|
10420
10707
|
@property
|
10421
10708
|
def FileName(self):
|
@@ -10477,6 +10764,18 @@ class FileInfo(AbstractModel):
|
|
10477
10764
|
def DocId(self, DocId):
|
10478
10765
|
self._DocId = DocId
|
10479
10766
|
|
10767
|
+
@property
|
10768
|
+
def CreatedAt(self):
|
10769
|
+
"""创建时间
|
10770
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
10771
|
+
:rtype: str
|
10772
|
+
"""
|
10773
|
+
return self._CreatedAt
|
10774
|
+
|
10775
|
+
@CreatedAt.setter
|
10776
|
+
def CreatedAt(self, CreatedAt):
|
10777
|
+
self._CreatedAt = CreatedAt
|
10778
|
+
|
10480
10779
|
|
10481
10780
|
def _deserialize(self, params):
|
10482
10781
|
self._FileName = params.get("FileName")
|
@@ -10484,6 +10783,7 @@ class FileInfo(AbstractModel):
|
|
10484
10783
|
self._FileUrl = params.get("FileUrl")
|
10485
10784
|
self._FileType = params.get("FileType")
|
10486
10785
|
self._DocId = params.get("DocId")
|
10786
|
+
self._CreatedAt = params.get("CreatedAt")
|
10487
10787
|
memeber_set = set(params.keys())
|
10488
10788
|
for name, value in vars(self).items():
|
10489
10789
|
property_name = name[1:]
|
@@ -13616,6 +13916,9 @@ class KnowledgeQaConfig(AbstractModel):
|
|
13616
13916
|
:param _ImageTextRetrieval: 是否开启图文检索
|
13617
13917
|
注意:此字段可能返回 null,表示取不到有效值。
|
13618
13918
|
:type ImageTextRetrieval: bool
|
13919
|
+
:param _AiCall: 配置语音通话参数
|
13920
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
13921
|
+
:type AiCall: :class:`tencentcloud.lke.v20231130.models.AICallConfig`
|
13619
13922
|
"""
|
13620
13923
|
self._Greeting = None
|
13621
13924
|
self._RoleDescription = None
|
@@ -13631,6 +13934,7 @@ class KnowledgeQaConfig(AbstractModel):
|
|
13631
13934
|
self._ThoughtModel = None
|
13632
13935
|
self._IntentAchievements = None
|
13633
13936
|
self._ImageTextRetrieval = None
|
13937
|
+
self._AiCall = None
|
13634
13938
|
|
13635
13939
|
@property
|
13636
13940
|
def Greeting(self):
|
@@ -13812,6 +14116,18 @@ class KnowledgeQaConfig(AbstractModel):
|
|
13812
14116
|
def ImageTextRetrieval(self, ImageTextRetrieval):
|
13813
14117
|
self._ImageTextRetrieval = ImageTextRetrieval
|
13814
14118
|
|
14119
|
+
@property
|
14120
|
+
def AiCall(self):
|
14121
|
+
"""配置语音通话参数
|
14122
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
14123
|
+
:rtype: :class:`tencentcloud.lke.v20231130.models.AICallConfig`
|
14124
|
+
"""
|
14125
|
+
return self._AiCall
|
14126
|
+
|
14127
|
+
@AiCall.setter
|
14128
|
+
def AiCall(self, AiCall):
|
14129
|
+
self._AiCall = AiCall
|
14130
|
+
|
13815
14131
|
|
13816
14132
|
def _deserialize(self, params):
|
13817
14133
|
self._Greeting = params.get("Greeting")
|
@@ -13857,6 +14173,9 @@ class KnowledgeQaConfig(AbstractModel):
|
|
13857
14173
|
obj._deserialize(item)
|
13858
14174
|
self._IntentAchievements.append(obj)
|
13859
14175
|
self._ImageTextRetrieval = params.get("ImageTextRetrieval")
|
14176
|
+
if params.get("AiCall") is not None:
|
14177
|
+
self._AiCall = AICallConfig()
|
14178
|
+
self._AiCall._deserialize(params.get("AiCall"))
|
13860
14179
|
memeber_set = set(params.keys())
|
13861
14180
|
for name, value in vars(self).items():
|
13862
14181
|
property_name = name[1:]
|
@@ -14346,12 +14665,15 @@ class KnowledgeQaSingleWorkflow(AbstractModel):
|
|
14346
14665
|
:type Status: str
|
14347
14666
|
:param _IsEnable: 工作流是否启用
|
14348
14667
|
:type IsEnable: bool
|
14668
|
+
:param _AsyncWorkflow: 是否开启异步调用工作流
|
14669
|
+
:type AsyncWorkflow: bool
|
14349
14670
|
"""
|
14350
14671
|
self._WorkflowId = None
|
14351
14672
|
self._WorkflowName = None
|
14352
14673
|
self._WorkflowDesc = None
|
14353
14674
|
self._Status = None
|
14354
14675
|
self._IsEnable = None
|
14676
|
+
self._AsyncWorkflow = None
|
14355
14677
|
|
14356
14678
|
@property
|
14357
14679
|
def WorkflowId(self):
|
@@ -14408,6 +14730,17 @@ class KnowledgeQaSingleWorkflow(AbstractModel):
|
|
14408
14730
|
def IsEnable(self, IsEnable):
|
14409
14731
|
self._IsEnable = IsEnable
|
14410
14732
|
|
14733
|
+
@property
|
14734
|
+
def AsyncWorkflow(self):
|
14735
|
+
"""是否开启异步调用工作流
|
14736
|
+
:rtype: bool
|
14737
|
+
"""
|
14738
|
+
return self._AsyncWorkflow
|
14739
|
+
|
14740
|
+
@AsyncWorkflow.setter
|
14741
|
+
def AsyncWorkflow(self, AsyncWorkflow):
|
14742
|
+
self._AsyncWorkflow = AsyncWorkflow
|
14743
|
+
|
14411
14744
|
|
14412
14745
|
def _deserialize(self, params):
|
14413
14746
|
self._WorkflowId = params.get("WorkflowId")
|
@@ -14415,6 +14748,7 @@ class KnowledgeQaSingleWorkflow(AbstractModel):
|
|
14415
14748
|
self._WorkflowDesc = params.get("WorkflowDesc")
|
14416
14749
|
self._Status = params.get("Status")
|
14417
14750
|
self._IsEnable = params.get("IsEnable")
|
14751
|
+
self._AsyncWorkflow = params.get("AsyncWorkflow")
|
14418
14752
|
memeber_set = set(params.keys())
|
14419
14753
|
for name, value in vars(self).items():
|
14420
14754
|
property_name = name[1:]
|
@@ -18926,6 +19260,8 @@ class ModelInfo(AbstractModel):
|
|
18926
19260
|
:type RoleLenLimit: int
|
18927
19261
|
:param _IsExclusive: 是否专属并发模型
|
18928
19262
|
:type IsExclusive: bool
|
19263
|
+
:param _SupportAiCallStatus: 模型支持智能通话效果
|
19264
|
+
:type SupportAiCallStatus: int
|
18929
19265
|
"""
|
18930
19266
|
self._ModelName = None
|
18931
19267
|
self._ModelDesc = None
|
@@ -18944,6 +19280,7 @@ class ModelInfo(AbstractModel):
|
|
18944
19280
|
self._IsDefault = None
|
18945
19281
|
self._RoleLenLimit = None
|
18946
19282
|
self._IsExclusive = None
|
19283
|
+
self._SupportAiCallStatus = None
|
18947
19284
|
|
18948
19285
|
@property
|
18949
19286
|
def ModelName(self):
|
@@ -19142,6 +19479,17 @@ class ModelInfo(AbstractModel):
|
|
19142
19479
|
def IsExclusive(self, IsExclusive):
|
19143
19480
|
self._IsExclusive = IsExclusive
|
19144
19481
|
|
19482
|
+
@property
|
19483
|
+
def SupportAiCallStatus(self):
|
19484
|
+
"""模型支持智能通话效果
|
19485
|
+
:rtype: int
|
19486
|
+
"""
|
19487
|
+
return self._SupportAiCallStatus
|
19488
|
+
|
19489
|
+
@SupportAiCallStatus.setter
|
19490
|
+
def SupportAiCallStatus(self, SupportAiCallStatus):
|
19491
|
+
self._SupportAiCallStatus = SupportAiCallStatus
|
19492
|
+
|
19145
19493
|
|
19146
19494
|
def _deserialize(self, params):
|
19147
19495
|
self._ModelName = params.get("ModelName")
|
@@ -19167,6 +19515,7 @@ class ModelInfo(AbstractModel):
|
|
19167
19515
|
self._IsDefault = params.get("IsDefault")
|
19168
19516
|
self._RoleLenLimit = params.get("RoleLenLimit")
|
19169
19517
|
self._IsExclusive = params.get("IsExclusive")
|
19518
|
+
self._SupportAiCallStatus = params.get("SupportAiCallStatus")
|
19170
19519
|
memeber_set = set(params.keys())
|
19171
19520
|
for name, value in vars(self).items():
|
19172
19521
|
property_name = name[1:]
|
@@ -20827,6 +21176,9 @@ class MsgRecord(AbstractModel):
|
|
20827
21176
|
:param _ExtraInfo: 扩展信息
|
20828
21177
|
注意:此字段可能返回 null,表示取不到有效值。
|
20829
21178
|
:type ExtraInfo: :class:`tencentcloud.lke.v20231130.models.ExtraInfo`
|
21179
|
+
:param _WorkFlow: 工作流信息
|
21180
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
21181
|
+
:type WorkFlow: :class:`tencentcloud.lke.v20231130.models.WorkflowInfo`
|
20830
21182
|
"""
|
20831
21183
|
self._Content = None
|
20832
21184
|
self._SessionId = None
|
@@ -20853,6 +21205,7 @@ class MsgRecord(AbstractModel):
|
|
20853
21205
|
self._QuoteInfos = None
|
20854
21206
|
self._AgentThought = None
|
20855
21207
|
self._ExtraInfo = None
|
21208
|
+
self._WorkFlow = None
|
20856
21209
|
|
20857
21210
|
@property
|
20858
21211
|
def Content(self):
|
@@ -21154,6 +21507,18 @@ class MsgRecord(AbstractModel):
|
|
21154
21507
|
def ExtraInfo(self, ExtraInfo):
|
21155
21508
|
self._ExtraInfo = ExtraInfo
|
21156
21509
|
|
21510
|
+
@property
|
21511
|
+
def WorkFlow(self):
|
21512
|
+
"""工作流信息
|
21513
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
21514
|
+
:rtype: :class:`tencentcloud.lke.v20231130.models.WorkflowInfo`
|
21515
|
+
"""
|
21516
|
+
return self._WorkFlow
|
21517
|
+
|
21518
|
+
@WorkFlow.setter
|
21519
|
+
def WorkFlow(self, WorkFlow):
|
21520
|
+
self._WorkFlow = WorkFlow
|
21521
|
+
|
21157
21522
|
|
21158
21523
|
def _deserialize(self, params):
|
21159
21524
|
self._Content = params.get("Content")
|
@@ -21204,6 +21569,9 @@ class MsgRecord(AbstractModel):
|
|
21204
21569
|
if params.get("ExtraInfo") is not None:
|
21205
21570
|
self._ExtraInfo = ExtraInfo()
|
21206
21571
|
self._ExtraInfo._deserialize(params.get("ExtraInfo"))
|
21572
|
+
if params.get("WorkFlow") is not None:
|
21573
|
+
self._WorkFlow = WorkflowInfo()
|
21574
|
+
self._WorkFlow._deserialize(params.get("WorkFlow"))
|
21207
21575
|
memeber_set = set(params.keys())
|
21208
21576
|
for name, value in vars(self).items():
|
21209
21577
|
property_name = name[1:]
|
@@ -21410,7 +21778,7 @@ class PluginToolReqParam(AbstractModel):
|
|
21410
21778
|
:type Name: str
|
21411
21779
|
:param _Desc: 参数描述
|
21412
21780
|
:type Desc: str
|
21413
|
-
:param _Type: 参数类型,0:string, 1:int, 2:float,3:bool 4:object 5:array_string, 6:array_int, 7:array_float, 8:array_bool, 9:array_object
|
21781
|
+
:param _Type: 参数类型,0:string, 1:int, 2:float,3:bool 4:object 5:array_string, 6:array_int, 7:array_float, 8:array_bool, 9:array_object, 99:null, 100:upspecified
|
21414
21782
|
:type Type: int
|
21415
21783
|
:param _IsRequired: 参数是否必填
|
21416
21784
|
:type IsRequired: bool
|
@@ -21420,6 +21788,10 @@ class PluginToolReqParam(AbstractModel):
|
|
21420
21788
|
:type SubParams: list of PluginToolReqParam
|
21421
21789
|
:param _GlobalHidden: 插件参数配置是否隐藏不可见,true-隐藏不可见,false-可见
|
21422
21790
|
:type GlobalHidden: bool
|
21791
|
+
:param _OneOf: OneOf类型参数
|
21792
|
+
:type OneOf: list of PluginToolReqParam
|
21793
|
+
:param _AnyOf: AnyOf类型参数
|
21794
|
+
:type AnyOf: list of PluginToolReqParam
|
21423
21795
|
"""
|
21424
21796
|
self._Name = None
|
21425
21797
|
self._Desc = None
|
@@ -21428,6 +21800,8 @@ class PluginToolReqParam(AbstractModel):
|
|
21428
21800
|
self._DefaultValue = None
|
21429
21801
|
self._SubParams = None
|
21430
21802
|
self._GlobalHidden = None
|
21803
|
+
self._OneOf = None
|
21804
|
+
self._AnyOf = None
|
21431
21805
|
|
21432
21806
|
@property
|
21433
21807
|
def Name(self):
|
@@ -21453,7 +21827,7 @@ class PluginToolReqParam(AbstractModel):
|
|
21453
21827
|
|
21454
21828
|
@property
|
21455
21829
|
def Type(self):
|
21456
|
-
"""参数类型,0:string, 1:int, 2:float,3:bool 4:object 5:array_string, 6:array_int, 7:array_float, 8:array_bool, 9:array_object
|
21830
|
+
"""参数类型,0:string, 1:int, 2:float,3:bool 4:object 5:array_string, 6:array_int, 7:array_float, 8:array_bool, 9:array_object, 99:null, 100:upspecified
|
21457
21831
|
:rtype: int
|
21458
21832
|
"""
|
21459
21833
|
return self._Type
|
@@ -21506,6 +21880,28 @@ class PluginToolReqParam(AbstractModel):
|
|
21506
21880
|
def GlobalHidden(self, GlobalHidden):
|
21507
21881
|
self._GlobalHidden = GlobalHidden
|
21508
21882
|
|
21883
|
+
@property
|
21884
|
+
def OneOf(self):
|
21885
|
+
"""OneOf类型参数
|
21886
|
+
:rtype: list of PluginToolReqParam
|
21887
|
+
"""
|
21888
|
+
return self._OneOf
|
21889
|
+
|
21890
|
+
@OneOf.setter
|
21891
|
+
def OneOf(self, OneOf):
|
21892
|
+
self._OneOf = OneOf
|
21893
|
+
|
21894
|
+
@property
|
21895
|
+
def AnyOf(self):
|
21896
|
+
"""AnyOf类型参数
|
21897
|
+
:rtype: list of PluginToolReqParam
|
21898
|
+
"""
|
21899
|
+
return self._AnyOf
|
21900
|
+
|
21901
|
+
@AnyOf.setter
|
21902
|
+
def AnyOf(self, AnyOf):
|
21903
|
+
self._AnyOf = AnyOf
|
21904
|
+
|
21509
21905
|
|
21510
21906
|
def _deserialize(self, params):
|
21511
21907
|
self._Name = params.get("Name")
|
@@ -21520,6 +21916,18 @@ class PluginToolReqParam(AbstractModel):
|
|
21520
21916
|
obj._deserialize(item)
|
21521
21917
|
self._SubParams.append(obj)
|
21522
21918
|
self._GlobalHidden = params.get("GlobalHidden")
|
21919
|
+
if params.get("OneOf") is not None:
|
21920
|
+
self._OneOf = []
|
21921
|
+
for item in params.get("OneOf"):
|
21922
|
+
obj = PluginToolReqParam()
|
21923
|
+
obj._deserialize(item)
|
21924
|
+
self._OneOf.append(obj)
|
21925
|
+
if params.get("AnyOf") is not None:
|
21926
|
+
self._AnyOf = []
|
21927
|
+
for item in params.get("AnyOf"):
|
21928
|
+
obj = PluginToolReqParam()
|
21929
|
+
obj._deserialize(item)
|
21930
|
+
self._AnyOf.append(obj)
|
21523
21931
|
memeber_set = set(params.keys())
|
21524
21932
|
for name, value in vars(self).items():
|
21525
21933
|
property_name = name[1:]
|
@@ -21773,6 +22181,8 @@ class ProcedureDebugging(AbstractModel):
|
|
21773
22181
|
:param _Agent: Agent调试信息
|
21774
22182
|
注意:此字段可能返回 null,表示取不到有效值。
|
21775
22183
|
:type Agent: :class:`tencentcloud.lke.v20231130.models.AgentDebugInfo`
|
22184
|
+
:param _CustomVariables: 自定义参数
|
22185
|
+
:type CustomVariables: list of str
|
21776
22186
|
"""
|
21777
22187
|
self._Content = None
|
21778
22188
|
self._System = None
|
@@ -21781,6 +22191,7 @@ class ProcedureDebugging(AbstractModel):
|
|
21781
22191
|
self._TaskFlow = None
|
21782
22192
|
self._WorkFlow = None
|
21783
22193
|
self._Agent = None
|
22194
|
+
self._CustomVariables = None
|
21784
22195
|
|
21785
22196
|
@property
|
21786
22197
|
def Content(self):
|
@@ -21866,6 +22277,17 @@ class ProcedureDebugging(AbstractModel):
|
|
21866
22277
|
def Agent(self, Agent):
|
21867
22278
|
self._Agent = Agent
|
21868
22279
|
|
22280
|
+
@property
|
22281
|
+
def CustomVariables(self):
|
22282
|
+
"""自定义参数
|
22283
|
+
:rtype: list of str
|
22284
|
+
"""
|
22285
|
+
return self._CustomVariables
|
22286
|
+
|
22287
|
+
@CustomVariables.setter
|
22288
|
+
def CustomVariables(self, CustomVariables):
|
22289
|
+
self._CustomVariables = CustomVariables
|
22290
|
+
|
21869
22291
|
|
21870
22292
|
def _deserialize(self, params):
|
21871
22293
|
self._Content = params.get("Content")
|
@@ -21891,6 +22313,7 @@ class ProcedureDebugging(AbstractModel):
|
|
21891
22313
|
if params.get("Agent") is not None:
|
21892
22314
|
self._Agent = AgentDebugInfo()
|
21893
22315
|
self._Agent._deserialize(params.get("Agent"))
|
22316
|
+
self._CustomVariables = params.get("CustomVariables")
|
21894
22317
|
memeber_set = set(params.keys())
|
21895
22318
|
for name, value in vars(self).items():
|
21896
22319
|
property_name = name[1:]
|
@@ -26959,6 +27382,78 @@ class VerifyQAResponse(AbstractModel):
|
|
26959
27382
|
self._RequestId = params.get("RequestId")
|
26960
27383
|
|
26961
27384
|
|
27385
|
+
class VoiceConfig(AbstractModel):
|
27386
|
+
"""音色参数
|
27387
|
+
|
27388
|
+
"""
|
27389
|
+
|
27390
|
+
def __init__(self):
|
27391
|
+
r"""
|
27392
|
+
:param _VoiceType: 公有云音色id
|
27393
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27394
|
+
:type VoiceType: int
|
27395
|
+
:param _TimbreKey: 音色key
|
27396
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27397
|
+
:type TimbreKey: str
|
27398
|
+
:param _VoiceName: 音色名称
|
27399
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27400
|
+
:type VoiceName: str
|
27401
|
+
"""
|
27402
|
+
self._VoiceType = None
|
27403
|
+
self._TimbreKey = None
|
27404
|
+
self._VoiceName = None
|
27405
|
+
|
27406
|
+
@property
|
27407
|
+
def VoiceType(self):
|
27408
|
+
"""公有云音色id
|
27409
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27410
|
+
:rtype: int
|
27411
|
+
"""
|
27412
|
+
return self._VoiceType
|
27413
|
+
|
27414
|
+
@VoiceType.setter
|
27415
|
+
def VoiceType(self, VoiceType):
|
27416
|
+
self._VoiceType = VoiceType
|
27417
|
+
|
27418
|
+
@property
|
27419
|
+
def TimbreKey(self):
|
27420
|
+
"""音色key
|
27421
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27422
|
+
:rtype: str
|
27423
|
+
"""
|
27424
|
+
return self._TimbreKey
|
27425
|
+
|
27426
|
+
@TimbreKey.setter
|
27427
|
+
def TimbreKey(self, TimbreKey):
|
27428
|
+
self._TimbreKey = TimbreKey
|
27429
|
+
|
27430
|
+
@property
|
27431
|
+
def VoiceName(self):
|
27432
|
+
"""音色名称
|
27433
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27434
|
+
:rtype: str
|
27435
|
+
"""
|
27436
|
+
return self._VoiceName
|
27437
|
+
|
27438
|
+
@VoiceName.setter
|
27439
|
+
def VoiceName(self, VoiceName):
|
27440
|
+
self._VoiceName = VoiceName
|
27441
|
+
|
27442
|
+
|
27443
|
+
def _deserialize(self, params):
|
27444
|
+
self._VoiceType = params.get("VoiceType")
|
27445
|
+
self._TimbreKey = params.get("TimbreKey")
|
27446
|
+
self._VoiceName = params.get("VoiceName")
|
27447
|
+
memeber_set = set(params.keys())
|
27448
|
+
for name, value in vars(self).items():
|
27449
|
+
property_name = name[1:]
|
27450
|
+
if property_name in memeber_set:
|
27451
|
+
memeber_set.remove(property_name)
|
27452
|
+
if len(memeber_set) > 0:
|
27453
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
27454
|
+
|
27455
|
+
|
27456
|
+
|
26962
27457
|
class WordRecognizeInfo(AbstractModel):
|
26963
27458
|
"""解析为 word 文档的结果
|
26964
27459
|
|
@@ -27033,11 +27528,23 @@ class WorkFlowSummary(AbstractModel):
|
|
27033
27528
|
:param _RunNodes: 节点信息
|
27034
27529
|
注意:此字段可能返回 null,表示取不到有效值。
|
27035
27530
|
:type RunNodes: list of WorkflowRunNodeInfo
|
27531
|
+
:param _OptionCards: 选项卡
|
27532
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27533
|
+
:type OptionCards: list of str
|
27534
|
+
:param _Outputs: 多气泡的输出结果
|
27535
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27536
|
+
:type Outputs: list of str
|
27537
|
+
:param _WorkflowReleaseTime: 工作流发布时间,unix时间戳
|
27538
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27539
|
+
:type WorkflowReleaseTime: str
|
27036
27540
|
"""
|
27037
27541
|
self._WorkflowId = None
|
27038
27542
|
self._WorkflowName = None
|
27039
27543
|
self._WorkflowRunId = None
|
27040
27544
|
self._RunNodes = None
|
27545
|
+
self._OptionCards = None
|
27546
|
+
self._Outputs = None
|
27547
|
+
self._WorkflowReleaseTime = None
|
27041
27548
|
|
27042
27549
|
@property
|
27043
27550
|
def WorkflowId(self):
|
@@ -27087,6 +27594,42 @@ class WorkFlowSummary(AbstractModel):
|
|
27087
27594
|
def RunNodes(self, RunNodes):
|
27088
27595
|
self._RunNodes = RunNodes
|
27089
27596
|
|
27597
|
+
@property
|
27598
|
+
def OptionCards(self):
|
27599
|
+
"""选项卡
|
27600
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27601
|
+
:rtype: list of str
|
27602
|
+
"""
|
27603
|
+
return self._OptionCards
|
27604
|
+
|
27605
|
+
@OptionCards.setter
|
27606
|
+
def OptionCards(self, OptionCards):
|
27607
|
+
self._OptionCards = OptionCards
|
27608
|
+
|
27609
|
+
@property
|
27610
|
+
def Outputs(self):
|
27611
|
+
"""多气泡的输出结果
|
27612
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27613
|
+
:rtype: list of str
|
27614
|
+
"""
|
27615
|
+
return self._Outputs
|
27616
|
+
|
27617
|
+
@Outputs.setter
|
27618
|
+
def Outputs(self, Outputs):
|
27619
|
+
self._Outputs = Outputs
|
27620
|
+
|
27621
|
+
@property
|
27622
|
+
def WorkflowReleaseTime(self):
|
27623
|
+
"""工作流发布时间,unix时间戳
|
27624
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27625
|
+
:rtype: str
|
27626
|
+
"""
|
27627
|
+
return self._WorkflowReleaseTime
|
27628
|
+
|
27629
|
+
@WorkflowReleaseTime.setter
|
27630
|
+
def WorkflowReleaseTime(self, WorkflowReleaseTime):
|
27631
|
+
self._WorkflowReleaseTime = WorkflowReleaseTime
|
27632
|
+
|
27090
27633
|
|
27091
27634
|
def _deserialize(self, params):
|
27092
27635
|
self._WorkflowId = params.get("WorkflowId")
|
@@ -27098,6 +27641,132 @@ class WorkFlowSummary(AbstractModel):
|
|
27098
27641
|
obj = WorkflowRunNodeInfo()
|
27099
27642
|
obj._deserialize(item)
|
27100
27643
|
self._RunNodes.append(obj)
|
27644
|
+
self._OptionCards = params.get("OptionCards")
|
27645
|
+
self._Outputs = params.get("Outputs")
|
27646
|
+
self._WorkflowReleaseTime = params.get("WorkflowReleaseTime")
|
27647
|
+
memeber_set = set(params.keys())
|
27648
|
+
for name, value in vars(self).items():
|
27649
|
+
property_name = name[1:]
|
27650
|
+
if property_name in memeber_set:
|
27651
|
+
memeber_set.remove(property_name)
|
27652
|
+
if len(memeber_set) > 0:
|
27653
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
27654
|
+
|
27655
|
+
|
27656
|
+
|
27657
|
+
class WorkflowInfo(AbstractModel):
|
27658
|
+
"""工作流信息
|
27659
|
+
|
27660
|
+
"""
|
27661
|
+
|
27662
|
+
def __init__(self):
|
27663
|
+
r"""
|
27664
|
+
:param _WorkflowId: 工作流ID
|
27665
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27666
|
+
:type WorkflowId: str
|
27667
|
+
:param _WorkflowName: 工作流名称
|
27668
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27669
|
+
:type WorkflowName: str
|
27670
|
+
:param _WorkflowRunId: 工作流运行ID
|
27671
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27672
|
+
:type WorkflowRunId: str
|
27673
|
+
:param _OptionCards: 选项卡
|
27674
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27675
|
+
:type OptionCards: list of str
|
27676
|
+
:param _Outputs: 多气泡的输出结果
|
27677
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27678
|
+
:type Outputs: list of str
|
27679
|
+
:param _WorkflowReleaseTime: 工作流发布时间,unix时间戳
|
27680
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27681
|
+
:type WorkflowReleaseTime: str
|
27682
|
+
"""
|
27683
|
+
self._WorkflowId = None
|
27684
|
+
self._WorkflowName = None
|
27685
|
+
self._WorkflowRunId = None
|
27686
|
+
self._OptionCards = None
|
27687
|
+
self._Outputs = None
|
27688
|
+
self._WorkflowReleaseTime = None
|
27689
|
+
|
27690
|
+
@property
|
27691
|
+
def WorkflowId(self):
|
27692
|
+
"""工作流ID
|
27693
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27694
|
+
:rtype: str
|
27695
|
+
"""
|
27696
|
+
return self._WorkflowId
|
27697
|
+
|
27698
|
+
@WorkflowId.setter
|
27699
|
+
def WorkflowId(self, WorkflowId):
|
27700
|
+
self._WorkflowId = WorkflowId
|
27701
|
+
|
27702
|
+
@property
|
27703
|
+
def WorkflowName(self):
|
27704
|
+
"""工作流名称
|
27705
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27706
|
+
:rtype: str
|
27707
|
+
"""
|
27708
|
+
return self._WorkflowName
|
27709
|
+
|
27710
|
+
@WorkflowName.setter
|
27711
|
+
def WorkflowName(self, WorkflowName):
|
27712
|
+
self._WorkflowName = WorkflowName
|
27713
|
+
|
27714
|
+
@property
|
27715
|
+
def WorkflowRunId(self):
|
27716
|
+
"""工作流运行ID
|
27717
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27718
|
+
:rtype: str
|
27719
|
+
"""
|
27720
|
+
return self._WorkflowRunId
|
27721
|
+
|
27722
|
+
@WorkflowRunId.setter
|
27723
|
+
def WorkflowRunId(self, WorkflowRunId):
|
27724
|
+
self._WorkflowRunId = WorkflowRunId
|
27725
|
+
|
27726
|
+
@property
|
27727
|
+
def OptionCards(self):
|
27728
|
+
"""选项卡
|
27729
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27730
|
+
:rtype: list of str
|
27731
|
+
"""
|
27732
|
+
return self._OptionCards
|
27733
|
+
|
27734
|
+
@OptionCards.setter
|
27735
|
+
def OptionCards(self, OptionCards):
|
27736
|
+
self._OptionCards = OptionCards
|
27737
|
+
|
27738
|
+
@property
|
27739
|
+
def Outputs(self):
|
27740
|
+
"""多气泡的输出结果
|
27741
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27742
|
+
:rtype: list of str
|
27743
|
+
"""
|
27744
|
+
return self._Outputs
|
27745
|
+
|
27746
|
+
@Outputs.setter
|
27747
|
+
def Outputs(self, Outputs):
|
27748
|
+
self._Outputs = Outputs
|
27749
|
+
|
27750
|
+
@property
|
27751
|
+
def WorkflowReleaseTime(self):
|
27752
|
+
"""工作流发布时间,unix时间戳
|
27753
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
27754
|
+
:rtype: str
|
27755
|
+
"""
|
27756
|
+
return self._WorkflowReleaseTime
|
27757
|
+
|
27758
|
+
@WorkflowReleaseTime.setter
|
27759
|
+
def WorkflowReleaseTime(self, WorkflowReleaseTime):
|
27760
|
+
self._WorkflowReleaseTime = WorkflowReleaseTime
|
27761
|
+
|
27762
|
+
|
27763
|
+
def _deserialize(self, params):
|
27764
|
+
self._WorkflowId = params.get("WorkflowId")
|
27765
|
+
self._WorkflowName = params.get("WorkflowName")
|
27766
|
+
self._WorkflowRunId = params.get("WorkflowRunId")
|
27767
|
+
self._OptionCards = params.get("OptionCards")
|
27768
|
+
self._Outputs = params.get("Outputs")
|
27769
|
+
self._WorkflowReleaseTime = params.get("WorkflowReleaseTime")
|
27101
27770
|
memeber_set = set(params.keys())
|
27102
27771
|
for name, value in vars(self).items():
|
27103
27772
|
property_name = name[1:]
|