tencentcloud-sdk-python-ess 3.0.937__tar.gz → 3.0.938__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 (14) hide show
  1. {tencentcloud-sdk-python-ess-3.0.937 → tencentcloud-sdk-python-ess-3.0.938}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-ess-3.0.937 → tencentcloud-sdk-python-ess-3.0.938}/tencentcloud/__init__.py +1 -1
  3. {tencentcloud-sdk-python-ess-3.0.937 → tencentcloud-sdk-python-ess-3.0.938}/tencentcloud/ess/v20201111/ess_client.py +56 -56
  4. {tencentcloud-sdk-python-ess-3.0.937 → tencentcloud-sdk-python-ess-3.0.938}/tencentcloud/ess/v20201111/models.py +14 -0
  5. {tencentcloud-sdk-python-ess-3.0.937 → tencentcloud-sdk-python-ess-3.0.938}/tencentcloud_sdk_python_ess.egg-info/PKG-INFO +1 -1
  6. {tencentcloud-sdk-python-ess-3.0.937 → tencentcloud-sdk-python-ess-3.0.938}/README.rst +0 -0
  7. {tencentcloud-sdk-python-ess-3.0.937 → tencentcloud-sdk-python-ess-3.0.938}/setup.cfg +0 -0
  8. {tencentcloud-sdk-python-ess-3.0.937 → tencentcloud-sdk-python-ess-3.0.938}/setup.py +0 -0
  9. {tencentcloud-sdk-python-ess-3.0.937 → tencentcloud-sdk-python-ess-3.0.938}/tencentcloud/ess/__init__.py +0 -0
  10. {tencentcloud-sdk-python-ess-3.0.937 → tencentcloud-sdk-python-ess-3.0.938}/tencentcloud/ess/v20201111/__init__.py +0 -0
  11. {tencentcloud-sdk-python-ess-3.0.937 → tencentcloud-sdk-python-ess-3.0.938}/tencentcloud/ess/v20201111/errorcodes.py +0 -0
  12. {tencentcloud-sdk-python-ess-3.0.937 → tencentcloud-sdk-python-ess-3.0.938}/tencentcloud_sdk_python_ess.egg-info/SOURCES.txt +0 -0
  13. {tencentcloud-sdk-python-ess-3.0.937 → tencentcloud-sdk-python-ess-3.0.938}/tencentcloud_sdk_python_ess.egg-info/dependency_links.txt +0 -0
  14. {tencentcloud-sdk-python-ess-3.0.937 → tencentcloud-sdk-python-ess-3.0.938}/tencentcloud_sdk_python_ess.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-ess
3
- Version: 3.0.937
3
+ Version: 3.0.938
4
4
  Summary: Tencent Cloud Ess SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.937'
17
+ __version__ = '3.0.938'
@@ -46,7 +46,7 @@ class EssClient(AbstractClient):
46
46
  if isinstance(e, TencentCloudSDKException):
47
47
  raise
48
48
  else:
49
- raise TencentCloudSDKException(e.message, e.message)
49
+ raise TencentCloudSDKException(type(e).__name__, str(e))
50
50
 
51
51
 
52
52
  def CancelFlow(self, request):
@@ -71,7 +71,7 @@ class EssClient(AbstractClient):
71
71
  if isinstance(e, TencentCloudSDKException):
72
72
  raise
73
73
  else:
74
- raise TencentCloudSDKException(e.message, e.message)
74
+ raise TencentCloudSDKException(type(e).__name__, str(e))
75
75
 
76
76
 
77
77
  def CancelMultiFlowSignQRCode(self, request):
@@ -94,7 +94,7 @@ class EssClient(AbstractClient):
94
94
  if isinstance(e, TencentCloudSDKException):
95
95
  raise
96
96
  else:
97
- raise TencentCloudSDKException(e.message, e.message)
97
+ raise TencentCloudSDKException(type(e).__name__, str(e))
98
98
 
99
99
 
100
100
  def CancelUserAutoSignEnableUrl(self, request):
@@ -117,7 +117,7 @@ class EssClient(AbstractClient):
117
117
  if isinstance(e, TencentCloudSDKException):
118
118
  raise
119
119
  else:
120
- raise TencentCloudSDKException(e.message, e.message)
120
+ raise TencentCloudSDKException(type(e).__name__, str(e))
121
121
 
122
122
 
123
123
  def CreateBatchCancelFlowUrl(self, request):
@@ -142,7 +142,7 @@ class EssClient(AbstractClient):
142
142
  if isinstance(e, TencentCloudSDKException):
143
143
  raise
144
144
  else:
145
- raise TencentCloudSDKException(e.message, e.message)
145
+ raise TencentCloudSDKException(type(e).__name__, str(e))
146
146
 
147
147
 
148
148
  def CreateChannelSubOrganizationModifyQrCode(self, request):
@@ -171,7 +171,7 @@ class EssClient(AbstractClient):
171
171
  if isinstance(e, TencentCloudSDKException):
172
172
  raise
173
173
  else:
174
- raise TencentCloudSDKException(e.message, e.message)
174
+ raise TencentCloudSDKException(type(e).__name__, str(e))
175
175
 
176
176
 
177
177
  def CreateConvertTaskApi(self, request):
@@ -194,7 +194,7 @@ class EssClient(AbstractClient):
194
194
  if isinstance(e, TencentCloudSDKException):
195
195
  raise
196
196
  else:
197
- raise TencentCloudSDKException(e.message, e.message)
197
+ raise TencentCloudSDKException(type(e).__name__, str(e))
198
198
 
199
199
 
200
200
  def CreateDocument(self, request):
@@ -219,7 +219,7 @@ class EssClient(AbstractClient):
219
219
  if isinstance(e, TencentCloudSDKException):
220
220
  raise
221
221
  else:
222
- raise TencentCloudSDKException(e.message, e.message)
222
+ raise TencentCloudSDKException(type(e).__name__, str(e))
223
223
 
224
224
 
225
225
  def CreateFlow(self, request):
@@ -245,7 +245,7 @@ class EssClient(AbstractClient):
245
245
  if isinstance(e, TencentCloudSDKException):
246
246
  raise
247
247
  else:
248
- raise TencentCloudSDKException(e.message, e.message)
248
+ raise TencentCloudSDKException(type(e).__name__, str(e))
249
249
 
250
250
 
251
251
  def CreateFlowApprovers(self, request):
@@ -272,7 +272,7 @@ class EssClient(AbstractClient):
272
272
  if isinstance(e, TencentCloudSDKException):
273
273
  raise
274
274
  else:
275
- raise TencentCloudSDKException(e.message, e.message)
275
+ raise TencentCloudSDKException(type(e).__name__, str(e))
276
276
 
277
277
 
278
278
  def CreateFlowByFiles(self, request):
@@ -298,7 +298,7 @@ class EssClient(AbstractClient):
298
298
  if isinstance(e, TencentCloudSDKException):
299
299
  raise
300
300
  else:
301
- raise TencentCloudSDKException(e.message, e.message)
301
+ raise TencentCloudSDKException(type(e).__name__, str(e))
302
302
 
303
303
 
304
304
  def CreateFlowEvidenceReport(self, request):
@@ -322,7 +322,7 @@ class EssClient(AbstractClient):
322
322
  if isinstance(e, TencentCloudSDKException):
323
323
  raise
324
324
  else:
325
- raise TencentCloudSDKException(e.message, e.message)
325
+ raise TencentCloudSDKException(type(e).__name__, str(e))
326
326
 
327
327
 
328
328
  def CreateFlowGroupByFiles(self, request):
@@ -347,7 +347,7 @@ class EssClient(AbstractClient):
347
347
  if isinstance(e, TencentCloudSDKException):
348
348
  raise
349
349
  else:
350
- raise TencentCloudSDKException(e.message, e.message)
350
+ raise TencentCloudSDKException(type(e).__name__, str(e))
351
351
 
352
352
 
353
353
  def CreateFlowGroupByTemplates(self, request):
@@ -371,7 +371,7 @@ class EssClient(AbstractClient):
371
371
  if isinstance(e, TencentCloudSDKException):
372
372
  raise
373
373
  else:
374
- raise TencentCloudSDKException(e.message, e.message)
374
+ raise TencentCloudSDKException(type(e).__name__, str(e))
375
375
 
376
376
 
377
377
  def CreateFlowReminds(self, request):
@@ -398,7 +398,7 @@ class EssClient(AbstractClient):
398
398
  if isinstance(e, TencentCloudSDKException):
399
399
  raise
400
400
  else:
401
- raise TencentCloudSDKException(e.message, e.message)
401
+ raise TencentCloudSDKException(type(e).__name__, str(e))
402
402
 
403
403
 
404
404
  def CreateFlowSignReview(self, request):
@@ -424,7 +424,7 @@ class EssClient(AbstractClient):
424
424
  if isinstance(e, TencentCloudSDKException):
425
425
  raise
426
426
  else:
427
- raise TencentCloudSDKException(e.message, e.message)
427
+ raise TencentCloudSDKException(type(e).__name__, str(e))
428
428
 
429
429
 
430
430
  def CreateFlowSignUrl(self, request):
@@ -451,7 +451,7 @@ class EssClient(AbstractClient):
451
451
  if isinstance(e, TencentCloudSDKException):
452
452
  raise
453
453
  else:
454
- raise TencentCloudSDKException(e.message, e.message)
454
+ raise TencentCloudSDKException(type(e).__name__, str(e))
455
455
 
456
456
 
457
457
  def CreateIntegrationDepartment(self, request):
@@ -474,7 +474,7 @@ class EssClient(AbstractClient):
474
474
  if isinstance(e, TencentCloudSDKException):
475
475
  raise
476
476
  else:
477
- raise TencentCloudSDKException(e.message, e.message)
477
+ raise TencentCloudSDKException(type(e).__name__, str(e))
478
478
 
479
479
 
480
480
  def CreateIntegrationEmployees(self, request):
@@ -497,7 +497,7 @@ class EssClient(AbstractClient):
497
497
  if isinstance(e, TencentCloudSDKException):
498
498
  raise
499
499
  else:
500
- raise TencentCloudSDKException(e.message, e.message)
500
+ raise TencentCloudSDKException(type(e).__name__, str(e))
501
501
 
502
502
 
503
503
  def CreateIntegrationUserRoles(self, request):
@@ -520,7 +520,7 @@ class EssClient(AbstractClient):
520
520
  if isinstance(e, TencentCloudSDKException):
521
521
  raise
522
522
  else:
523
- raise TencentCloudSDKException(e.message, e.message)
523
+ raise TencentCloudSDKException(type(e).__name__, str(e))
524
524
 
525
525
 
526
526
  def CreateMultiFlowSignQRCode(self, request):
@@ -551,7 +551,7 @@ class EssClient(AbstractClient):
551
551
  if isinstance(e, TencentCloudSDKException):
552
552
  raise
553
553
  else:
554
- raise TencentCloudSDKException(e.message, e.message)
554
+ raise TencentCloudSDKException(type(e).__name__, str(e))
555
555
 
556
556
 
557
557
  def CreatePrepareFlow(self, request):
@@ -576,7 +576,7 @@ class EssClient(AbstractClient):
576
576
  if isinstance(e, TencentCloudSDKException):
577
577
  raise
578
578
  else:
579
- raise TencentCloudSDKException(e.message, e.message)
579
+ raise TencentCloudSDKException(type(e).__name__, str(e))
580
580
 
581
581
 
582
582
  def CreatePreparedPersonalEsign(self, request):
@@ -599,7 +599,7 @@ class EssClient(AbstractClient):
599
599
  if isinstance(e, TencentCloudSDKException):
600
600
  raise
601
601
  else:
602
- raise TencentCloudSDKException(e.message, e.message)
602
+ raise TencentCloudSDKException(type(e).__name__, str(e))
603
603
 
604
604
 
605
605
  def CreateReleaseFlow(self, request):
@@ -622,7 +622,7 @@ class EssClient(AbstractClient):
622
622
  if isinstance(e, TencentCloudSDKException):
623
623
  raise
624
624
  else:
625
- raise TencentCloudSDKException(e.message, e.message)
625
+ raise TencentCloudSDKException(type(e).__name__, str(e))
626
626
 
627
627
 
628
628
  def CreateSchemeUrl(self, request):
@@ -655,7 +655,7 @@ class EssClient(AbstractClient):
655
655
  if isinstance(e, TencentCloudSDKException):
656
656
  raise
657
657
  else:
658
- raise TencentCloudSDKException(e.message, e.message)
658
+ raise TencentCloudSDKException(type(e).__name__, str(e))
659
659
 
660
660
 
661
661
  def CreateSeal(self, request):
@@ -678,7 +678,7 @@ class EssClient(AbstractClient):
678
678
  if isinstance(e, TencentCloudSDKException):
679
679
  raise
680
680
  else:
681
- raise TencentCloudSDKException(e.message, e.message)
681
+ raise TencentCloudSDKException(type(e).__name__, str(e))
682
682
 
683
683
 
684
684
  def CreateSealPolicy(self, request):
@@ -701,7 +701,7 @@ class EssClient(AbstractClient):
701
701
  if isinstance(e, TencentCloudSDKException):
702
702
  raise
703
703
  else:
704
- raise TencentCloudSDKException(e.message, e.message)
704
+ raise TencentCloudSDKException(type(e).__name__, str(e))
705
705
 
706
706
 
707
707
  def CreateUserAutoSignEnableUrl(self, request):
@@ -724,7 +724,7 @@ class EssClient(AbstractClient):
724
724
  if isinstance(e, TencentCloudSDKException):
725
725
  raise
726
726
  else:
727
- raise TencentCloudSDKException(e.message, e.message)
727
+ raise TencentCloudSDKException(type(e).__name__, str(e))
728
728
 
729
729
 
730
730
  def DeleteIntegrationDepartment(self, request):
@@ -747,7 +747,7 @@ class EssClient(AbstractClient):
747
747
  if isinstance(e, TencentCloudSDKException):
748
748
  raise
749
749
  else:
750
- raise TencentCloudSDKException(e.message, e.message)
750
+ raise TencentCloudSDKException(type(e).__name__, str(e))
751
751
 
752
752
 
753
753
  def DeleteIntegrationEmployees(self, request):
@@ -770,7 +770,7 @@ class EssClient(AbstractClient):
770
770
  if isinstance(e, TencentCloudSDKException):
771
771
  raise
772
772
  else:
773
- raise TencentCloudSDKException(e.message, e.message)
773
+ raise TencentCloudSDKException(type(e).__name__, str(e))
774
774
 
775
775
 
776
776
  def DeleteIntegrationRoleUsers(self, request):
@@ -793,7 +793,7 @@ class EssClient(AbstractClient):
793
793
  if isinstance(e, TencentCloudSDKException):
794
794
  raise
795
795
  else:
796
- raise TencentCloudSDKException(e.message, e.message)
796
+ raise TencentCloudSDKException(type(e).__name__, str(e))
797
797
 
798
798
 
799
799
  def DeleteSealPolicies(self, request):
@@ -816,7 +816,7 @@ class EssClient(AbstractClient):
816
816
  if isinstance(e, TencentCloudSDKException):
817
817
  raise
818
818
  else:
819
- raise TencentCloudSDKException(e.message, e.message)
819
+ raise TencentCloudSDKException(type(e).__name__, str(e))
820
820
 
821
821
 
822
822
  def DescribeExtendedServiceAuthInfos(self, request):
@@ -839,7 +839,7 @@ class EssClient(AbstractClient):
839
839
  if isinstance(e, TencentCloudSDKException):
840
840
  raise
841
841
  else:
842
- raise TencentCloudSDKException(e.message, e.message)
842
+ raise TencentCloudSDKException(type(e).__name__, str(e))
843
843
 
844
844
 
845
845
  def DescribeFileUrls(self, request):
@@ -863,7 +863,7 @@ class EssClient(AbstractClient):
863
863
  if isinstance(e, TencentCloudSDKException):
864
864
  raise
865
865
  else:
866
- raise TencentCloudSDKException(e.message, e.message)
866
+ raise TencentCloudSDKException(type(e).__name__, str(e))
867
867
 
868
868
 
869
869
  def DescribeFlowBriefs(self, request):
@@ -888,7 +888,7 @@ class EssClient(AbstractClient):
888
888
  if isinstance(e, TencentCloudSDKException):
889
889
  raise
890
890
  else:
891
- raise TencentCloudSDKException(e.message, e.message)
891
+ raise TencentCloudSDKException(type(e).__name__, str(e))
892
892
 
893
893
 
894
894
  def DescribeFlowComponents(self, request):
@@ -911,7 +911,7 @@ class EssClient(AbstractClient):
911
911
  if isinstance(e, TencentCloudSDKException):
912
912
  raise
913
913
  else:
914
- raise TencentCloudSDKException(e.message, e.message)
914
+ raise TencentCloudSDKException(type(e).__name__, str(e))
915
915
 
916
916
 
917
917
  def DescribeFlowEvidenceReport(self, request):
@@ -934,7 +934,7 @@ class EssClient(AbstractClient):
934
934
  if isinstance(e, TencentCloudSDKException):
935
935
  raise
936
936
  else:
937
- raise TencentCloudSDKException(e.message, e.message)
937
+ raise TencentCloudSDKException(type(e).__name__, str(e))
938
938
 
939
939
 
940
940
  def DescribeFlowInfo(self, request):
@@ -958,7 +958,7 @@ class EssClient(AbstractClient):
958
958
  if isinstance(e, TencentCloudSDKException):
959
959
  raise
960
960
  else:
961
- raise TencentCloudSDKException(e.message, e.message)
961
+ raise TencentCloudSDKException(type(e).__name__, str(e))
962
962
 
963
963
 
964
964
  def DescribeFlowTemplates(self, request):
@@ -982,7 +982,7 @@ class EssClient(AbstractClient):
982
982
  if isinstance(e, TencentCloudSDKException):
983
983
  raise
984
984
  else:
985
- raise TencentCloudSDKException(e.message, e.message)
985
+ raise TencentCloudSDKException(type(e).__name__, str(e))
986
986
 
987
987
 
988
988
  def DescribeIntegrationDepartments(self, request):
@@ -1005,7 +1005,7 @@ class EssClient(AbstractClient):
1005
1005
  if isinstance(e, TencentCloudSDKException):
1006
1006
  raise
1007
1007
  else:
1008
- raise TencentCloudSDKException(e.message, e.message)
1008
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1009
1009
 
1010
1010
 
1011
1011
  def DescribeIntegrationEmployees(self, request):
@@ -1028,7 +1028,7 @@ class EssClient(AbstractClient):
1028
1028
  if isinstance(e, TencentCloudSDKException):
1029
1029
  raise
1030
1030
  else:
1031
- raise TencentCloudSDKException(e.message, e.message)
1031
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1032
1032
 
1033
1033
 
1034
1034
  def DescribeIntegrationMainOrganizationUser(self, request):
@@ -1051,7 +1051,7 @@ class EssClient(AbstractClient):
1051
1051
  if isinstance(e, TencentCloudSDKException):
1052
1052
  raise
1053
1053
  else:
1054
- raise TencentCloudSDKException(e.message, e.message)
1054
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1055
1055
 
1056
1056
 
1057
1057
  def DescribeIntegrationRoles(self, request):
@@ -1074,7 +1074,7 @@ class EssClient(AbstractClient):
1074
1074
  if isinstance(e, TencentCloudSDKException):
1075
1075
  raise
1076
1076
  else:
1077
- raise TencentCloudSDKException(e.message, e.message)
1077
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1078
1078
 
1079
1079
 
1080
1080
  def DescribeOrganizationGroupOrganizations(self, request):
@@ -1097,7 +1097,7 @@ class EssClient(AbstractClient):
1097
1097
  if isinstance(e, TencentCloudSDKException):
1098
1098
  raise
1099
1099
  else:
1100
- raise TencentCloudSDKException(e.message, e.message)
1100
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1101
1101
 
1102
1102
 
1103
1103
  def DescribeOrganizationSeals(self, request):
@@ -1121,7 +1121,7 @@ class EssClient(AbstractClient):
1121
1121
  if isinstance(e, TencentCloudSDKException):
1122
1122
  raise
1123
1123
  else:
1124
- raise TencentCloudSDKException(e.message, e.message)
1124
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1125
1125
 
1126
1126
 
1127
1127
  def DescribeThirdPartyAuthCode(self, request):
@@ -1144,7 +1144,7 @@ class EssClient(AbstractClient):
1144
1144
  if isinstance(e, TencentCloudSDKException):
1145
1145
  raise
1146
1146
  else:
1147
- raise TencentCloudSDKException(e.message, e.message)
1147
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1148
1148
 
1149
1149
 
1150
1150
  def DescribeUserAutoSignStatus(self, request):
@@ -1167,7 +1167,7 @@ class EssClient(AbstractClient):
1167
1167
  if isinstance(e, TencentCloudSDKException):
1168
1168
  raise
1169
1169
  else:
1170
- raise TencentCloudSDKException(e.message, e.message)
1170
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1171
1171
 
1172
1172
 
1173
1173
  def DisableUserAutoSign(self, request):
@@ -1190,7 +1190,7 @@ class EssClient(AbstractClient):
1190
1190
  if isinstance(e, TencentCloudSDKException):
1191
1191
  raise
1192
1192
  else:
1193
- raise TencentCloudSDKException(e.message, e.message)
1193
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1194
1194
 
1195
1195
 
1196
1196
  def GetTaskResultApi(self, request):
@@ -1214,7 +1214,7 @@ class EssClient(AbstractClient):
1214
1214
  if isinstance(e, TencentCloudSDKException):
1215
1215
  raise
1216
1216
  else:
1217
- raise TencentCloudSDKException(e.message, e.message)
1217
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1218
1218
 
1219
1219
 
1220
1220
  def ModifyApplicationCallbackInfo(self, request):
@@ -1239,7 +1239,7 @@ class EssClient(AbstractClient):
1239
1239
  if isinstance(e, TencentCloudSDKException):
1240
1240
  raise
1241
1241
  else:
1242
- raise TencentCloudSDKException(e.message, e.message)
1242
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1243
1243
 
1244
1244
 
1245
1245
  def ModifyIntegrationDepartment(self, request):
@@ -1262,7 +1262,7 @@ class EssClient(AbstractClient):
1262
1262
  if isinstance(e, TencentCloudSDKException):
1263
1263
  raise
1264
1264
  else:
1265
- raise TencentCloudSDKException(e.message, e.message)
1265
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1266
1266
 
1267
1267
 
1268
1268
  def StartFlow(self, request):
@@ -1287,7 +1287,7 @@ class EssClient(AbstractClient):
1287
1287
  if isinstance(e, TencentCloudSDKException):
1288
1288
  raise
1289
1289
  else:
1290
- raise TencentCloudSDKException(e.message, e.message)
1290
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1291
1291
 
1292
1292
 
1293
1293
  def UnbindEmployeeUserIdWithClientOpenId(self, request):
@@ -1310,7 +1310,7 @@ class EssClient(AbstractClient):
1310
1310
  if isinstance(e, TencentCloudSDKException):
1311
1311
  raise
1312
1312
  else:
1313
- raise TencentCloudSDKException(e.message, e.message)
1313
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1314
1314
 
1315
1315
 
1316
1316
  def UpdateIntegrationEmployees(self, request):
@@ -1333,7 +1333,7 @@ class EssClient(AbstractClient):
1333
1333
  if isinstance(e, TencentCloudSDKException):
1334
1334
  raise
1335
1335
  else:
1336
- raise TencentCloudSDKException(e.message, e.message)
1336
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1337
1337
 
1338
1338
 
1339
1339
  def UploadFiles(self, request):
@@ -1362,7 +1362,7 @@ class EssClient(AbstractClient):
1362
1362
  if isinstance(e, TencentCloudSDKException):
1363
1363
  raise
1364
1364
  else:
1365
- raise TencentCloudSDKException(e.message, e.message)
1365
+ raise TencentCloudSDKException(type(e).__name__, str(e))
1366
1366
 
1367
1367
 
1368
1368
  def VerifyPdf(self, request):
@@ -1385,4 +1385,4 @@ class EssClient(AbstractClient):
1385
1385
  if isinstance(e, TencentCloudSDKException):
1386
1386
  raise
1387
1387
  else:
1388
- raise TencentCloudSDKException(e.message, e.message)
1388
+ raise TencentCloudSDKException(type(e).__name__, str(e))
@@ -4793,12 +4793,15 @@ class CreateReleaseFlowRequest(AbstractModel):
4793
4793
  :type ReleasedApprovers: list of ReleasedApprover
4794
4794
  :param _Deadline: 签署流程的签署截止时间。 值为unix时间戳,精确到秒,不传默认为当前时间七天后
4795
4795
  :type Deadline: int
4796
+ :param _Agent: 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
4797
+ :type Agent: :class:`tencentcloud.ess.v20201111.models.Agent`
4796
4798
  """
4797
4799
  self._Operator = None
4798
4800
  self._NeedRelievedFlowId = None
4799
4801
  self._ReliveInfo = None
4800
4802
  self._ReleasedApprovers = None
4801
4803
  self._Deadline = None
4804
+ self._Agent = None
4802
4805
 
4803
4806
  @property
4804
4807
  def Operator(self):
@@ -4840,6 +4843,14 @@ class CreateReleaseFlowRequest(AbstractModel):
4840
4843
  def Deadline(self, Deadline):
4841
4844
  self._Deadline = Deadline
4842
4845
 
4846
+ @property
4847
+ def Agent(self):
4848
+ return self._Agent
4849
+
4850
+ @Agent.setter
4851
+ def Agent(self, Agent):
4852
+ self._Agent = Agent
4853
+
4843
4854
 
4844
4855
  def _deserialize(self, params):
4845
4856
  if params.get("Operator") is not None:
@@ -4856,6 +4867,9 @@ class CreateReleaseFlowRequest(AbstractModel):
4856
4867
  obj._deserialize(item)
4857
4868
  self._ReleasedApprovers.append(obj)
4858
4869
  self._Deadline = params.get("Deadline")
4870
+ if params.get("Agent") is not None:
4871
+ self._Agent = Agent()
4872
+ self._Agent._deserialize(params.get("Agent"))
4859
4873
  memeber_set = set(params.keys())
4860
4874
  for name, value in vars(self).items():
4861
4875
  property_name = name[1:]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-ess
3
- Version: 3.0.937
3
+ Version: 3.0.938
4
4
  Summary: Tencent Cloud Ess SDK for Python
5
5
  Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
6
6
  Author: Tencent Cloud