tccli 3.0.1204.1__py2.py3-none-any.whl → 3.0.1205.1__py2.py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
tccli/__init__.py CHANGED
@@ -1 +1 @@
1
- __version__ = '3.0.1204.1'
1
+ __version__ = '3.0.1205.1'
@@ -7560,6 +7560,7 @@
7560
7560
  "example": "10",
7561
7561
  "member": "int64",
7562
7562
  "name": "Interval",
7563
+ "output_required": true,
7563
7564
  "type": "int",
7564
7565
  "value_allowed_null": false
7565
7566
  },
@@ -7569,6 +7570,7 @@
7569
7570
  "example": "12",
7570
7571
  "member": "int64",
7571
7572
  "name": "TotalCount",
7573
+ "output_required": true,
7572
7574
  "type": "int",
7573
7575
  "value_allowed_null": false
7574
7576
  },
@@ -7578,6 +7580,7 @@
7578
7580
  "example": "无",
7579
7581
  "member": "HistogramInfo",
7580
7582
  "name": "HistogramInfos",
7583
+ "output_required": true,
7581
7584
  "type": "list",
7582
7585
  "value_allowed_null": false
7583
7586
  },
@@ -393,7 +393,7 @@
393
393
  "status": "online"
394
394
  },
395
395
  "ImportImage": {
396
- "document": "本接口(ImportImage)用于导入镜像,导入后的镜像可用于创建实例。目前支持 RAW、VHD、QCOW2、VMDK 镜像格式。",
396
+ "document": "本接口(ImportImage)用于导入镜像,导入后的镜像可用于创建实例。目前支持RAW、VHD、QCOW2、VMDK镜像格式。",
397
397
  "input": "ImportImageRequest",
398
398
  "name": "外部镜像导入",
399
399
  "output": "ImportImageResponse",
@@ -5861,6 +5861,15 @@
5861
5861
  "name": "BootMode",
5862
5862
  "required": false,
5863
5863
  "type": "string"
5864
+ },
5865
+ {
5866
+ "disabled": false,
5867
+ "document": " 镜像族",
5868
+ "example": "business-daily-update",
5869
+ "member": "string",
5870
+ "name": "ImageFamily",
5871
+ "required": false,
5872
+ "type": "string"
5864
5873
  }
5865
5874
  ],
5866
5875
  "type": "object"
@@ -901,6 +901,58 @@ def doExportResourcePackageDeductDetails(args, parsed_globals):
901
901
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
902
902
 
903
903
 
904
+ def doInquirePriceModify(args, parsed_globals):
905
+ g_param = parse_global_arg(parsed_globals)
906
+
907
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
908
+ cred = credential.CVMRoleCredential()
909
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
910
+ cred = credential.STSAssumeRoleCredential(
911
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
912
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
913
+ )
914
+ elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
915
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
916
+ else:
917
+ cred = credential.Credential(
918
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
919
+ )
920
+ http_profile = HttpProfile(
921
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
922
+ reqMethod="POST",
923
+ endpoint=g_param[OptionsDefine.Endpoint],
924
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
925
+ )
926
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
927
+ if g_param[OptionsDefine.Language]:
928
+ profile.language = g_param[OptionsDefine.Language]
929
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
930
+ client = mod.CynosdbClient(cred, g_param[OptionsDefine.Region], profile)
931
+ client._sdkVersion += ("_CLI_" + __version__)
932
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
933
+ model = models.InquirePriceModifyRequest()
934
+ model.from_json_string(json.dumps(args))
935
+ start_time = time.time()
936
+ while True:
937
+ rsp = client.InquirePriceModify(model)
938
+ result = rsp.to_json_string()
939
+ try:
940
+ json_obj = json.loads(result)
941
+ except TypeError as e:
942
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
943
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
944
+ break
945
+ cur_time = time.time()
946
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
947
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
948
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
949
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
950
+ else:
951
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
952
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
953
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
954
+
955
+
904
956
  def doDescribeClusterDetail(args, parsed_globals):
905
957
  g_param = parse_global_arg(parsed_globals)
906
958
 
@@ -7741,6 +7793,7 @@ ACTION_MAP = {
7741
7793
  "RenewClusters": doRenewClusters,
7742
7794
  "CloseProxy": doCloseProxy,
7743
7795
  "ExportResourcePackageDeductDetails": doExportResourcePackageDeductDetails,
7796
+ "InquirePriceModify": doInquirePriceModify,
7744
7797
  "DescribeClusterDetail": doDescribeClusterDetail,
7745
7798
  "DescribeTasks": doDescribeTasks,
7746
7799
  "DescribeBackupConfig": doDescribeBackupConfig,
@@ -595,6 +595,13 @@
595
595
  "output": "InquirePriceCreateResponse",
596
596
  "status": "online"
597
597
  },
598
+ "InquirePriceModify": {
599
+ "document": "变配预付费集群询价",
600
+ "input": "InquirePriceModifyRequest",
601
+ "name": "变配预付费集群询价",
602
+ "output": "InquirePriceModifyResponse",
603
+ "status": "online"
604
+ },
598
605
  "InquirePriceRenew": {
599
606
  "document": "查询续费集群价格",
600
607
  "input": "InquirePriceRenewRequest",
@@ -12483,6 +12490,107 @@
12483
12490
  ],
12484
12491
  "type": "object"
12485
12492
  },
12493
+ "InquirePriceModifyRequest": {
12494
+ "document": "InquirePriceModify请求参数结构体",
12495
+ "members": [
12496
+ {
12497
+ "disabled": false,
12498
+ "document": "集群ID",
12499
+ "example": "无",
12500
+ "member": "string",
12501
+ "name": "ClusterId",
12502
+ "required": true,
12503
+ "type": "string"
12504
+ },
12505
+ {
12506
+ "disabled": false,
12507
+ "document": "CPU核数",
12508
+ "example": "1",
12509
+ "member": "int64",
12510
+ "name": "Cpu",
12511
+ "required": false,
12512
+ "type": "int"
12513
+ },
12514
+ {
12515
+ "disabled": false,
12516
+ "document": "内存大小",
12517
+ "example": "1",
12518
+ "member": "int64",
12519
+ "name": "Memory",
12520
+ "required": false,
12521
+ "type": "int"
12522
+ },
12523
+ {
12524
+ "disabled": false,
12525
+ "document": "存储大小,存储资源变配:ClusterId,StorageLimit",
12526
+ "example": "10",
12527
+ "member": "int64",
12528
+ "name": "StorageLimit",
12529
+ "required": false,
12530
+ "type": "int"
12531
+ },
12532
+ {
12533
+ "disabled": false,
12534
+ "document": "实例ID,计算资源变配必传: ClusterId,InstanceId,Cpu,Memory ",
12535
+ "example": "无",
12536
+ "member": "string",
12537
+ "name": "InstanceId",
12538
+ "required": false,
12539
+ "type": "string"
12540
+ },
12541
+ {
12542
+ "disabled": false,
12543
+ "document": "实例设备类型",
12544
+ "example": "无",
12545
+ "member": "string",
12546
+ "name": "DeviceType",
12547
+ "required": false,
12548
+ "type": "string"
12549
+ },
12550
+ {
12551
+ "disabled": false,
12552
+ "document": "serverless实例ccu大小",
12553
+ "example": "无",
12554
+ "member": "float",
12555
+ "name": "Ccu",
12556
+ "required": false,
12557
+ "type": "float"
12558
+ }
12559
+ ],
12560
+ "type": "object"
12561
+ },
12562
+ "InquirePriceModifyResponse": {
12563
+ "document": "InquirePriceModify返回参数结构体",
12564
+ "members": [
12565
+ {
12566
+ "disabled": false,
12567
+ "document": "实例价格\n注意:此字段可能返回 null,表示取不到有效值。",
12568
+ "example": "无",
12569
+ "member": "TradePrice",
12570
+ "name": "InstancePrice",
12571
+ "output_required": true,
12572
+ "type": "object",
12573
+ "value_allowed_null": true
12574
+ },
12575
+ {
12576
+ "disabled": false,
12577
+ "document": "存储价格\n注意:此字段可能返回 null,表示取不到有效值。",
12578
+ "example": "无",
12579
+ "member": "TradePrice",
12580
+ "name": "StoragePrice",
12581
+ "output_required": true,
12582
+ "type": "object",
12583
+ "value_allowed_null": true
12584
+ },
12585
+ {
12586
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
12587
+ "member": "string",
12588
+ "name": "RequestId",
12589
+ "type": "string"
12590
+ }
12591
+ ],
12592
+ "type": "object"
12593
+ },
12486
12594
  "InquirePriceRenewRequest": {
12487
12595
  "document": "InquirePriceRenew请求参数结构体",
12488
12596
  "members": [
@@ -704,6 +704,14 @@
704
704
  "title": "新购集群询价"
705
705
  }
706
706
  ],
707
+ "InquirePriceModify": [
708
+ {
709
+ "document": "使用该接口进行变配预付费资源询价,后付费资源变配询价需直接使用InquirePriceCreate接口",
710
+ "input": "POST / HTTP/1.1\nHost: cynosdb.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: InquirePriceModify\n<公共请求参数>\n\n{\n \"Cpu\": 0,\n \"Memory\": 0,\n \"StorageLimit\": 0,\n \"ClusterId\": \"abc\",\n \"InstanceId\": \"abc\"\n}",
711
+ "output": "{\n \"Response\": {\n \"InstancePrice\": {\n \"TotalPrice\": 0,\n \"Discount\": 0,\n \"TotalPriceDiscount\": 0,\n \"UnitPrice\": 0,\n \"UnitPriceDiscount\": 0,\n \"ChargeUnit\": \"abc\"\n },\n \"StoragePrice\": {\n \"TotalPrice\": 0,\n \"Discount\": 0,\n \"TotalPriceDiscount\": 0,\n \"UnitPrice\": 0,\n \"UnitPriceDiscount\": 0,\n \"ChargeUnit\": \"abc\"\n },\n \"RequestId\": \"abc\"\n }\n}",
712
+ "title": "变配预付费资源询价"
713
+ }
714
+ ],
707
715
  "InquirePriceRenew": [
708
716
  {
709
717
  "document": "",
@@ -3553,6 +3553,58 @@ def doCreateWebThemeConfig(args, parsed_globals):
3553
3553
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
3554
3554
 
3555
3555
 
3556
+ def doCreateDynamicFlowApprover(args, parsed_globals):
3557
+ g_param = parse_global_arg(parsed_globals)
3558
+
3559
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
3560
+ cred = credential.CVMRoleCredential()
3561
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
3562
+ cred = credential.STSAssumeRoleCredential(
3563
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
3564
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
3565
+ )
3566
+ elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
3567
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
3568
+ else:
3569
+ cred = credential.Credential(
3570
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
3571
+ )
3572
+ http_profile = HttpProfile(
3573
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
3574
+ reqMethod="POST",
3575
+ endpoint=g_param[OptionsDefine.Endpoint],
3576
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
3577
+ )
3578
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
3579
+ if g_param[OptionsDefine.Language]:
3580
+ profile.language = g_param[OptionsDefine.Language]
3581
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
3582
+ client = mod.EssClient(cred, g_param[OptionsDefine.Region], profile)
3583
+ client._sdkVersion += ("_CLI_" + __version__)
3584
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
3585
+ model = models.CreateDynamicFlowApproverRequest()
3586
+ model.from_json_string(json.dumps(args))
3587
+ start_time = time.time()
3588
+ while True:
3589
+ rsp = client.CreateDynamicFlowApprover(model)
3590
+ result = rsp.to_json_string()
3591
+ try:
3592
+ json_obj = json.loads(result)
3593
+ except TypeError as e:
3594
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
3595
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
3596
+ break
3597
+ cur_time = time.time()
3598
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
3599
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
3600
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
3601
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
3602
+ else:
3603
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
3604
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
3605
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
3606
+
3607
+
3556
3608
  def doCreateIntegrationEmployees(args, parsed_globals):
3557
3609
  g_param = parse_global_arg(parsed_globals)
3558
3610
 
@@ -4437,6 +4489,58 @@ def doDescribeBillUsage(args, parsed_globals):
4437
4489
  FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
4438
4490
 
4439
4491
 
4492
+ def doArchiveDynamicFlow(args, parsed_globals):
4493
+ g_param = parse_global_arg(parsed_globals)
4494
+
4495
+ if g_param[OptionsDefine.UseCVMRole.replace('-', '_')]:
4496
+ cred = credential.CVMRoleCredential()
4497
+ elif g_param[OptionsDefine.RoleArn.replace('-', '_')] and g_param[OptionsDefine.RoleSessionName.replace('-', '_')]:
4498
+ cred = credential.STSAssumeRoleCredential(
4499
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.RoleArn.replace('-', '_')],
4500
+ g_param[OptionsDefine.RoleSessionName.replace('-', '_')], endpoint=g_param["sts_cred_endpoint"]
4501
+ )
4502
+ elif os.getenv(OptionsDefine.ENV_TKE_REGION) and os.getenv(OptionsDefine.ENV_TKE_PROVIDER_ID) and os.getenv(OptionsDefine.ENV_TKE_WEB_IDENTITY_TOKEN_FILE) and os.getenv(OptionsDefine.ENV_TKE_ROLE_ARN):
4503
+ cred = credential.DefaultTkeOIDCRoleArnProvider().get_credentials()
4504
+ else:
4505
+ cred = credential.Credential(
4506
+ g_param[OptionsDefine.SecretId], g_param[OptionsDefine.SecretKey], g_param[OptionsDefine.Token]
4507
+ )
4508
+ http_profile = HttpProfile(
4509
+ reqTimeout=60 if g_param[OptionsDefine.Timeout] is None else int(g_param[OptionsDefine.Timeout]),
4510
+ reqMethod="POST",
4511
+ endpoint=g_param[OptionsDefine.Endpoint],
4512
+ proxy=g_param[OptionsDefine.HttpsProxy.replace('-', '_')]
4513
+ )
4514
+ profile = ClientProfile(httpProfile=http_profile, signMethod="HmacSHA256")
4515
+ if g_param[OptionsDefine.Language]:
4516
+ profile.language = g_param[OptionsDefine.Language]
4517
+ mod = CLIENT_MAP[g_param[OptionsDefine.Version]]
4518
+ client = mod.EssClient(cred, g_param[OptionsDefine.Region], profile)
4519
+ client._sdkVersion += ("_CLI_" + __version__)
4520
+ models = MODELS_MAP[g_param[OptionsDefine.Version]]
4521
+ model = models.ArchiveDynamicFlowRequest()
4522
+ model.from_json_string(json.dumps(args))
4523
+ start_time = time.time()
4524
+ while True:
4525
+ rsp = client.ArchiveDynamicFlow(model)
4526
+ result = rsp.to_json_string()
4527
+ try:
4528
+ json_obj = json.loads(result)
4529
+ except TypeError as e:
4530
+ json_obj = json.loads(result.decode('utf-8')) # python3.3
4531
+ if not g_param[OptionsDefine.Waiter] or search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj) == g_param['OptionsDefine.WaiterInfo']['to']:
4532
+ break
4533
+ cur_time = time.time()
4534
+ if cur_time - start_time >= g_param['OptionsDefine.WaiterInfo']['timeout']:
4535
+ raise ClientError('Request timeout, wait `%s` to `%s` timeout, last request is %s' %
4536
+ (g_param['OptionsDefine.WaiterInfo']['expr'], g_param['OptionsDefine.WaiterInfo']['to'],
4537
+ search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj)))
4538
+ else:
4539
+ print('Inquiry result is %s.' % search(g_param['OptionsDefine.WaiterInfo']['expr'], json_obj))
4540
+ time.sleep(g_param['OptionsDefine.WaiterInfo']['interval'])
4541
+ FormatOutput.output("action", json_obj, g_param[OptionsDefine.Output], g_param[OptionsDefine.Filter])
4542
+
4543
+
4440
4544
  def doUpdateIntegrationEmployees(args, parsed_globals):
4441
4545
  g_param = parse_global_arg(parsed_globals)
4442
4546
 
@@ -4828,6 +4932,7 @@ ACTION_MAP = {
4828
4932
  "CreateIntegrationSubOrganizationActiveRecord": doCreateIntegrationSubOrganizationActiveRecord,
4829
4933
  "DescribeFlowComponents": doDescribeFlowComponents,
4830
4934
  "CreateWebThemeConfig": doCreateWebThemeConfig,
4935
+ "CreateDynamicFlowApprover": doCreateDynamicFlowApprover,
4831
4936
  "CreateIntegrationEmployees": doCreateIntegrationEmployees,
4832
4937
  "CreateBatchQuickSignUrl": doCreateBatchQuickSignUrl,
4833
4938
  "ModifyApplicationCallbackInfo": doModifyApplicationCallbackInfo,
@@ -4845,6 +4950,7 @@ ACTION_MAP = {
4845
4950
  "DisableUserAutoSign": doDisableUserAutoSign,
4846
4951
  "GetTaskResultApi": doGetTaskResultApi,
4847
4952
  "DescribeBillUsage": doDescribeBillUsage,
4953
+ "ArchiveDynamicFlow": doArchiveDynamicFlow,
4848
4954
  "UpdateIntegrationEmployees": doUpdateIntegrationEmployees,
4849
4955
  "CreateOrganizationBatchSignUrl": doCreateOrganizationBatchSignUrl,
4850
4956
  "DescribeThirdPartyAuthCode": doDescribeThirdPartyAuthCode,
@@ -1,5 +1,12 @@
1
1
  {
2
2
  "actions": {
3
+ "ArchiveDynamicFlow": {
4
+ "document": "该接口用于结束动态签署流程,若当前合同还存在签署方未签署,无法结束。",
5
+ "input": "ArchiveDynamicFlowRequest",
6
+ "name": "结束动态签署合同",
7
+ "output": "ArchiveDynamicFlowResponse",
8
+ "status": "online"
9
+ },
3
10
  "BindEmployeeUserIdWithClientOpenId": {
4
11
  "document": "此接口(BindEmployeeUserIdWithClientOpenId)用于将电子签系统员工UserId与客户系统员工OpenId进行绑定。\n\n此OpenId只在 [更新企业员工信息 ](https://qian.tencent.com/developers/companyApis/staffs/UpdateIntegrationEmployees)、[移除企业员工](https://qian.tencent.com/developers/companyApis/staffs/DeleteIntegrationEmployees) 等场景下可以使用",
5
12
  "input": "BindEmployeeUserIdWithClientOpenIdRequest",
@@ -84,6 +91,13 @@
84
91
  "output": "CreateDocumentResponse",
85
92
  "status": "online"
86
93
  },
94
+ "CreateDynamicFlowApprover": {
95
+ "document": "此接口(CreateDynamicFlowApprover)用来补充动态合同的签署人信息。<br/>\n适用场景:使用CreateFlowByFiles指定:OpenDynamicSignFlow=true发起的合同,可以使用该接口补充后续签署人。<br/>",
96
+ "input": "CreateDynamicFlowApproverRequest",
97
+ "name": "补充动态签署合同的签署人信息",
98
+ "output": "CreateDynamicFlowApproverResponse",
99
+ "status": "online"
100
+ },
87
101
  "CreateEmbedWebUrl": {
88
102
  "document": "本接口(CreateEmbedWebUrl)用于创建可嵌入web页面的URL(此web页面可以通过iframe方式嵌入到贵方系统的网页中),支持以下类型的Web链接创建:\n1. 创建印章\n2. 创建模板\n3. 修改模板\n4. 预览模板\n5. 预览合同流程\n\n预览模板的嵌入页面长相如下:\n![image](https://qcloudimg.tencent-cloud.cn/raw/57bdda4a884e3f5b2de12d5a282a3651.png)\n\n预览合同流程的嵌入页面长相如下:\n![image](https://qcloudimg.tencent-cloud.cn/raw/dc7af994e2f6da56bdad5975e927de34.png)",
89
103
  "input": "CreateEmbedWebUrlRequest",
@@ -787,7 +801,7 @@
787
801
  },
788
802
  {
789
803
  "disabled": false,
790
- "document": "签署方经办人的证件类型,支持以下类型,样式可以参考<a href=\"https://qian.tencent.com/developers/partner/id_card_support/\" target=\"_blank\">常见个人证件类型介绍</a>\n<ul><li>ID_CARD 中国大陆居民身份证 (默认值)</li>\n<li>HONGKONG_AND_MACAO 港澳居民来往内地通行证</li>\n<li>HONGKONG_MACAO_AND_TAIWAN 港澳台居民居住证(格式同居民身份证)</li>\n<li>OTHER_CARD_TYPE 其他证件</li></ul>\n\n\n\n\n注: `其他证件类型为白名单功能,使用前请联系对接的客户经理沟通。`",
804
+ "document": "签署方经办人的证件类型,支持以下类型,样式可以参考<a href=\"https://qian.tencent.com/developers/partner/id_card_support/\" target=\"_blank\">常见个人证件类型介绍</a>\n<ul><li>ID_CARD 中国大陆居民身份证 (默认值)</li>\n<li>HONGKONG_AND_MACAO 港澳居民来往内地通行证</li>\n<li>HONGKONG_MACAO_AND_TAIWAN 港澳台居民居住证(格式同居民身份证)</li>\n<li>OTHER_CARD_TYPE 其他证件</li></ul>\n\n\n\n\n注: \n1. <b>其他证件类型为白名单功能</b>,使用前请联系对接的客户经理沟通。\n2. 港澳居民来往内地通行证 和 港澳台居民居住证 类型的签署人<b>至少要过一次大陆的海关</b>才能使用。",
791
805
  "example": "ID_CARD",
792
806
  "member": "string",
793
807
  "name": "ApproverIdCardType",
@@ -1083,6 +1097,99 @@
1083
1097
  ],
1084
1098
  "usage": "in"
1085
1099
  },
1100
+ "ArchiveDynamicApproverData": {
1101
+ "document": "动态签署2.0合同参与人信息",
1102
+ "members": [
1103
+ {
1104
+ "disabled": false,
1105
+ "document": "签署参与人在本流程中的编号ID(每个流程不同),可用此ID来定位签署参与人在本流程的签署节点,也可用于后续创建签署链接等操作。 注意:不指定该字段时默认为发起方\n注意:此字段可能返回 null,表示取不到有效值。",
1106
+ "example": "06f2bc0f1772d8deac2f92b5df61a5ac",
1107
+ "member": "string",
1108
+ "name": "SignId",
1109
+ "output_required": false,
1110
+ "required": false,
1111
+ "type": "string",
1112
+ "value_allowed_null": true
1113
+ },
1114
+ {
1115
+ "disabled": false,
1116
+ "document": "签署方经办人在模板中配置的参与方ID,与控件绑定,是控件的归属方,ID为32位字符串。 模板发起合同时,该参数为必填项。 文件发起合同是,该参数无需传值。 如果开发者后序用合同模板发起合同,建议保存此值,在用合同模板发起合同中需此值绑定对应的签署经办人 。\n注意:此字段可能返回 null,表示取不到有效值。",
1117
+ "example": "yDwhSUUckp3lqxlpUu6Ni3SvjJPoxxxx",
1118
+ "member": "string",
1119
+ "name": "RecipientId",
1120
+ "output_required": false,
1121
+ "required": false,
1122
+ "type": "string",
1123
+ "value_allowed_null": true
1124
+ }
1125
+ ],
1126
+ "usage": "both"
1127
+ },
1128
+ "ArchiveDynamicFlowRequest": {
1129
+ "document": "ArchiveDynamicFlow请求参数结构体",
1130
+ "members": [
1131
+ {
1132
+ "disabled": false,
1133
+ "document": "执行本接口操作的员工信息。\n注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`",
1134
+ "example": "无",
1135
+ "member": "UserInfo",
1136
+ "name": "Operator",
1137
+ "required": true,
1138
+ "type": "object"
1139
+ },
1140
+ {
1141
+ "disabled": false,
1142
+ "document": "合同流程ID, 为32位字符串。\n\n可登录腾讯电子签控制台,[点击查看FlowId在控制台中的位置](https://qcloudimg.tencent-cloud.cn/raw/0a83015166cfe1cb043d14f9ec4bd75e.png)",
1143
+ "example": "yDwFmUUckpstqfvzUE1h3jo1f3cqjkGm",
1144
+ "member": "string",
1145
+ "name": "FlowId",
1146
+ "required": true,
1147
+ "type": "string"
1148
+ },
1149
+ {
1150
+ "disabled": false,
1151
+ "document": "代理企业和员工的信息。\n在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。",
1152
+ "example": "无",
1153
+ "member": "Agent",
1154
+ "name": "Agent",
1155
+ "required": false,
1156
+ "type": "object"
1157
+ }
1158
+ ],
1159
+ "type": "object"
1160
+ },
1161
+ "ArchiveDynamicFlowResponse": {
1162
+ "document": "ArchiveDynamicFlow返回参数结构体",
1163
+ "members": [
1164
+ {
1165
+ "disabled": false,
1166
+ "document": "合同流程ID",
1167
+ "example": "yDwFmUUckpstqfvzUE1h3jo1f3cqjkGm",
1168
+ "member": "string",
1169
+ "name": "FlowId",
1170
+ "output_required": false,
1171
+ "type": "string",
1172
+ "value_allowed_null": false
1173
+ },
1174
+ {
1175
+ "disabled": false,
1176
+ "document": "动态签署人的参与人信息",
1177
+ "example": "无",
1178
+ "member": "ArchiveDynamicApproverData",
1179
+ "name": "Approvers",
1180
+ "output_required": false,
1181
+ "type": "list",
1182
+ "value_allowed_null": false
1183
+ },
1184
+ {
1185
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
1186
+ "member": "string",
1187
+ "name": "RequestId",
1188
+ "type": "string"
1189
+ }
1190
+ ],
1191
+ "type": "object"
1192
+ },
1086
1193
  "AuthInfoDetail": {
1087
1194
  "document": "企业扩展服务授权列表详情",
1088
1195
  "members": [
@@ -2960,6 +3067,89 @@
2960
3067
  ],
2961
3068
  "type": "object"
2962
3069
  },
3070
+ "CreateDynamicFlowApproverRequest": {
3071
+ "document": "CreateDynamicFlowApprover请求参数结构体",
3072
+ "members": [
3073
+ {
3074
+ "disabled": false,
3075
+ "document": "执行本接口操作的员工信息。使用此接口时,必须填写userId。支持填入集团子公司经办人 userId 代发合同。注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`",
3076
+ "example": "无",
3077
+ "member": "UserInfo",
3078
+ "name": "Operator",
3079
+ "required": true,
3080
+ "type": "object"
3081
+ },
3082
+ {
3083
+ "disabled": false,
3084
+ "document": "合同流程ID,为32位字符串",
3085
+ "example": "无",
3086
+ "member": "string",
3087
+ "name": "FlowId",
3088
+ "required": true,
3089
+ "type": "string"
3090
+ },
3091
+ {
3092
+ "disabled": false,
3093
+ "document": "合同流程的参与方列表,最多可支持50个参与方,可在列表中指定企业B端签署方和个人C端签署方的联系和认证方式等信息,具体定义可以参考开发者中心的ApproverInfo结构体。如果合同流程是有序签署,Approvers列表中参与人的顺序就是默认的签署顺序,请确保列表中参与人的顺序符合实际签署顺序。",
3094
+ "example": "无",
3095
+ "member": "ApproverInfo",
3096
+ "name": "Approvers",
3097
+ "required": true,
3098
+ "type": "list"
3099
+ },
3100
+ {
3101
+ "disabled": false,
3102
+ "document": "代理企业和员工的信息。在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。",
3103
+ "example": "无",
3104
+ "member": "Agent",
3105
+ "name": "Agent",
3106
+ "required": false,
3107
+ "type": "object"
3108
+ },
3109
+ {
3110
+ "disabled": false,
3111
+ "document": "个人自动签名的使用场景包括以下, 个人自动签署(即ApproverType设置成个人自动签署时)业务此值必传:<ul><li> **E_PRESCRIPTION_AUTO_SIGN**:电子处方单(医疗自动签) </li><li> **OTHER** : 通用场景</li></ul>注: `个人自动签名场景是白名单功能,使用前请与对接的客户经理联系沟通。`",
3112
+ "example": "E_PRESCRIPTION_AUTO_SIGN",
3113
+ "member": "string",
3114
+ "name": "AutoSignScene",
3115
+ "required": false,
3116
+ "type": "string"
3117
+ }
3118
+ ],
3119
+ "type": "object"
3120
+ },
3121
+ "CreateDynamicFlowApproverResponse": {
3122
+ "document": "CreateDynamicFlowApprover返回参数结构体",
3123
+ "members": [
3124
+ {
3125
+ "disabled": false,
3126
+ "document": "合同流程ID,为32位字符串",
3127
+ "example": "无",
3128
+ "member": "string",
3129
+ "name": "FlowId",
3130
+ "output_required": false,
3131
+ "type": "string",
3132
+ "value_allowed_null": false
3133
+ },
3134
+ {
3135
+ "disabled": false,
3136
+ "document": "补充动态合同签署人的结果数组",
3137
+ "example": "无",
3138
+ "member": "DynamicFlowApproverResult",
3139
+ "name": "DynamicFlowApproverList",
3140
+ "output_required": false,
3141
+ "type": "list",
3142
+ "value_allowed_null": false
3143
+ },
3144
+ {
3145
+ "document": "唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。",
3146
+ "member": "string",
3147
+ "name": "RequestId",
3148
+ "type": "string"
3149
+ }
3150
+ ],
3151
+ "type": "object"
3152
+ },
2963
3153
  "CreateEmbedWebUrlRequest": {
2964
3154
  "document": "CreateEmbedWebUrl请求参数结构体",
2965
3155
  "members": [
@@ -3535,6 +3725,15 @@
3535
3725
  "name": "FlowDisplayType",
3536
3726
  "required": false,
3537
3727
  "type": "int"
3728
+ },
3729
+ {
3730
+ "disabled": false,
3731
+ "document": "是否开启动态签署合同:\n<ul><li> **true**:开启动态签署合同,可在签署过程中追加签署人(必须满足:1,发起方企业开启了模块化计费能力;2,发起方企业在企业应用管理中开启了动态签署人2.0能力) 。</li>\n<li> **false**:不开启动态签署合同。</li></ul>",
3732
+ "example": "true",
3733
+ "member": "bool",
3734
+ "name": "OpenDynamicSignFlow",
3735
+ "required": false,
3736
+ "type": "bool"
3538
3737
  }
3539
3738
  ],
3540
3739
  "type": "object"
@@ -9657,6 +9856,45 @@
9657
9856
  ],
9658
9857
  "type": "object"
9659
9858
  },
9859
+ "DynamicFlowApproverResult": {
9860
+ "document": "动态添加签署人的结果信息",
9861
+ "members": [
9862
+ {
9863
+ "disabled": false,
9864
+ "document": "签署方角色编号\n注意:此字段可能返回 null,表示取不到有效值。",
9865
+ "example": "无",
9866
+ "member": "string",
9867
+ "name": "RecipientId",
9868
+ "output_required": false,
9869
+ "required": false,
9870
+ "type": "string",
9871
+ "value_allowed_null": true
9872
+ },
9873
+ {
9874
+ "disabled": false,
9875
+ "document": "签署方唯一编号\n注意:此字段可能返回 null,表示取不到有效值。",
9876
+ "example": "无",
9877
+ "member": "string",
9878
+ "name": "SignId",
9879
+ "output_required": false,
9880
+ "required": false,
9881
+ "type": "string",
9882
+ "value_allowed_null": true
9883
+ },
9884
+ {
9885
+ "disabled": false,
9886
+ "document": "签署方当前状态\n注意:此字段可能返回 null,表示取不到有效值。",
9887
+ "example": "无",
9888
+ "member": "int64",
9889
+ "name": "ApproverStatus",
9890
+ "output_required": false,
9891
+ "required": false,
9892
+ "type": "int",
9893
+ "value_allowed_null": true
9894
+ }
9895
+ ],
9896
+ "usage": "both"
9897
+ },
9660
9898
  "EmbedUrlOption": {
9661
9899
  "document": "个性化参数",
9662
9900
  "members": [
@@ -1,5 +1,25 @@
1
1
  {
2
2
  "actions": {
3
+ "ArchiveDynamicFlow": [
4
+ {
5
+ "document": "所有签署方都签署完成,并且不再新增签署方时,结束该动态签署合同",
6
+ "input": "POST / HTTP/1.1\nHost: ess.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ArchiveDynamicFlow\n<公共请求参数>\n\n{\n \"Operator\": {\n \"ClientIp\": \"1.1.1.1\",\n \"UserId\": \"yDxZtUyKQD2JuqUuO4zjERYGxxxxxxxx\"\n },\n \"FlowId\": \"yDCmVUUckpufezuiUxQQFiT8Exxxxxxxx\"\n}",
7
+ "output": "{\n \"Response\": {\n \"Approvers\": [\n {\n \"SignId\": \"yDCmDUUckpuf0hsfUuvalvQtaxxxxxxx\",\n \"RecipientId\": \"yDCmDUUckpuf0hseUuvalvQRmxxxxxx\"\n }\n ],\n \"FlowId\": \"yDCmDUUckpuf0hsmUuvalvQyxxxxxxxxx\",\n \"RequestId\": \"abc\"\n }\n}",
8
+ "title": "结束动态签署合同"
9
+ },
10
+ {
11
+ "document": "未签署完成前归档",
12
+ "input": "POST / HTTP/1.1\nHost: ess.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ArchiveDynamicFlow\n<公共请求参数>\n\n{\n \"Operator\": {\n \"UserId\": \"yDwf3UUckps8dvveUEfH3DjvMmg3ZkjQ\"\n },\n \"FlowId\": \"yDCjFUUckp4jkz76UoofpTx3iZ3A3C3x\"\n}",
13
+ "output": "{\n \"Response\": {\n \"Error\": {\n \"Code\": \"OperationDenied\",\n \"Message\": \"当前合同状态不支持归档合同,请检查后重试\"\n },\n \"RequestId\": \"34ded0a6-e679-4af7-a07e-ca457e388499\"\n }\n}",
14
+ "title": "归档失败"
15
+ },
16
+ {
17
+ "document": "所有签署方签署完成后,结束动态合同",
18
+ "input": "POST / HTTP/1.1\nHost: ess.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ArchiveDynamicFlow\n<公共请求参数>\n\n{\n \"Operator\": {\n \"UserId\": \"yDwf3UUckps8dvveUEfH3DjvMmg3ZkjQ\"\n },\n \"FlowId\": \"yDCjFUUckp48fiwyUyh7ukYEdXdSyJps\"\n}",
19
+ "output": "{\n \"Response\": {\n \"Approvers\": [\n {\n \"RecipientId\": \"yDCjFUUckp48fiwbUyh7ukYE1kRDNNN4\",\n \"SignId\": \"yDCjFUUckp48fiwwUyh7ukYvjx5PR1e2\"\n }\n ],\n \"FlowId\": \"yDCjFUUckp48fiwyUyh7ukYEdXdSyJps\",\n \"RequestId\": \"ca0fd107-4337-4650-8236-aa3e4561f7ef\"\n }\n}",
20
+ "title": "归档合同"
21
+ }
22
+ ],
3
23
  "BindEmployeeUserIdWithClientOpenId": [
4
24
  {
5
25
  "document": "传入UserId和OpenId,绑定成功。",
@@ -234,6 +254,44 @@
234
254
  "title": "创建电子文档并填充图片控件"
235
255
  }
236
256
  ],
257
+ "CreateDynamicFlowApprover": [
258
+ {
259
+ "document": "补充企业自动签签署人",
260
+ "input": "POST / HTTP/1.1\nHost: ess.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateDynamicFlowApprover\n<公共请求参数>\n\n{\n \"Operator\": {\n \"UserId\": \"操作人id\"\n },\n \"FlowId\": \"合同id\",\n \"AutoSignScene\": \"\",\n \"Approvers\": [\n {\n \"ApproverType\": 3,\n \"OrganizationName\": \"发起方企业\",\n \"PreReadTime\": 3,\n \"SignComponents\": [\n {\n \"ComponentPosX\": 160,\n \"ComponentPosY\": 160,\n \"ComponentWidth\": 100,\n \"ComponentHeight\": 100,\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_SEAL\",\n \"ComponentValue\": \"yDCHZUUckpa9v4i1UuSIlP8KougrzLuQ\",\n \"ComponentPage\": 1\n }\n ]\n }\n ]\n}",
261
+ "output": "{\n \"Response\": {\n \"DynamicFlowApproverList\": [\n {\n \"ApproverStatus\": 1,\n \"RecipientId\": \"yDCjFUUckp48f6hcUyh7ukYyfaIqHqnR\",\n \"SignId\": \"yDCjFUUckp48f6hiUyh7ukYBjxSiGXzB\"\n }\n ],\n \"FlowId\": \"yDCjFUUckp48f680Uyh7ukYy5JFb80ux\",\n \"RequestId\": \"s1728544317709049372\"\n }\n}",
262
+ "title": "补充企业自动签签署人"
263
+ },
264
+ {
265
+ "document": "二要素形式补充签署人",
266
+ "input": "POST / HTTP/1.1\nHost: ess.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateDynamicFlowApprover\n<公共请求参数>\n\n{\n \"Operator\": {\n \"UserId\": \"操作人id\"\n },\n \"FlowId\": \"合同id\",\n \"Approvers\": [\n {\n \"ApproverType\": 0,\n \"OrganizationName\": \"企业名称\",\n \"ApproverName\": \"签署人姓名\",\n \"ApproverMobile\": \"签署人手机号\",\n \"PreReadTime\": 3,\n \"SignComponents\": [\n {\n \"ComponentPosX\": 260,\n \"ComponentPosY\": 260,\n \"ComponentWidth\": 100,\n \"ComponentHeight\": 100,\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_SEAL\",\n \"ComponentPage\": 1\n }\n ]\n }\n ]\n}",
267
+ "output": "{\n \"Response\": {\n \"DynamicFlowApproverList\": [\n {\n \"ApproverStatus\": 1,\n \"RecipientId\": \"yDCjFUUckp48f6hcUyh7ukYyfaIqHqnR\",\n \"SignId\": \"yDCjFUUckp48f6hiUyh7ukYBjxSiGXzB\"\n }\n ],\n \"FlowId\": \"yDCjFUUckp48f680Uyh7ukYy5JFb80ux\",\n \"RequestId\": \"s1728544317709049372\"\n }\n}",
268
+ "title": "二要素形式补充企业签署人"
269
+ },
270
+ {
271
+ "document": "二要素补充个人签署人",
272
+ "input": "POST / HTTP/1.1\nHost: ess.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateDynamicFlowApprover\n<公共请求参数>\n\n{\n \"Operator\": {\n \"UserId\": \"操作人id\"\n },\n \"FlowId\": \"合同id\",\n \"Approvers\": [\n {\n \"ApproverType\": 1,\n \"ApproverName\": \"签署人姓名\",\n \"ApproverMobile\": \"签署人手机号\",\n \"PreReadTime\": 3,\n \"SignComponents\": [\n {\n \"ComponentPosX\": 260,\n \"ComponentPosY\": 260,\n \"ComponentWidth\": 100,\n \"ComponentHeight\": 100,\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_SEAL\",\n \"ComponentPage\": 1\n }\n ]\n }\n ]\n}",
273
+ "output": "{\n \"Response\": {\n \"DynamicFlowApproverList\": [\n {\n \"ApproverStatus\": 1,\n \"RecipientId\": \"yDCjFUUckp48f6hcUyh7ukYyfaIqHqnR\",\n \"SignId\": \"yDCjFUUckp48f6hiUyh7ukYBjxSiGXzB\"\n }\n ],\n \"FlowId\": \"合同id\",\n \"RequestId\": \"s1728544317709049372\"\n }\n}",
274
+ "title": "二要素补充个人签署人"
275
+ },
276
+ {
277
+ "document": "补充个人自动签签署人",
278
+ "input": "POST / HTTP/1.1\nHost: ess.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateDynamicFlowApprover\n<公共请求参数>\n\n{\n \"Operator\": {\n \"UserId\": \"操作人id\"\n },\n \"FlowId\": \"合同id\",\n \"AutoSignScene\": \"E_PRESCRIPTION_AUTO_SIGN\",\n \"Approvers\": [\n {\n \"ApproverType\": 7,\n \"ApproverName\": \"签署人姓名\",\n \"ApproverMobile\": \"签署人手机号\",\n \"PreReadTime\": 3,\n \"SignComponents\": [\n {\n \"ComponentPosX\": 360,\n \"ComponentPosY\": 360,\n \"ComponentWidth\": 100,\n \"ComponentHeight\": 100,\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_SIGNATURE\",\n \"ComponentPage\": 1\n }\n ]\n }\n ]\n}",
279
+ "output": "{\n \"Response\": {\n \"DynamicFlowApproverList\": [\n {\n \"ApproverStatus\": 1,\n \"RecipientId\": \"yDCjFUUckp48f6hcUyh7ukYyfaIqHqnR\",\n \"SignId\": \"yDCjFUUckp48f6hiUyh7ukYBjxSiGXzB\"\n }\n ],\n \"FlowId\": \"合同id\",\n \"RequestId\": \"s1728544317709049372\"\n }\n}",
280
+ "title": "补充个人自动签签署人"
281
+ },
282
+ {
283
+ "document": "补充或签签署人",
284
+ "input": "POST / HTTP/1.1\nHost: ess.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateDynamicFlowApprover\n<公共请求参数>\n\n{\n \"Operator\": {\n \"UserId\": \"操作人id\"\n },\n \"FlowId\": \"合同id\",\n \"AutoSignScene\": \"\",\n \"Approvers\": [\n {\n \"ApproverType\": 0,\n \"OrganizationName\": \"企业名称\",\n \"CustomApproverTag\": \"唯一标志\",\n \"PreReadTime\": 3,\n \"SignComponents\": [\n {\n \"ComponentPosX\": 333,\n \"ComponentPosY\": 333,\n \"ComponentWidth\": 100,\n \"ComponentHeight\": 100,\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_SEAL\",\n \"ComponentPage\": 1\n }\n ]\n }\n ]\n}",
285
+ "output": "{\n \"Response\": {\n \"DynamicFlowApproverList\": [\n {\n \"ApproverStatus\": 1,\n \"RecipientId\": \"yDCjFUUckp48f6hcUyh7ukYyfaIqHqnR\",\n \"SignId\": \"yDCjFUUckp48f6hiUyh7ukYBjxSiGXzB\"\n }\n ],\n \"FlowId\": \"合同id\",\n \"RequestId\": \"s1728544317709049372\"\n }\n}",
286
+ "title": "补充或签签署人"
287
+ },
288
+ {
289
+ "document": "补充动态签署人",
290
+ "input": "POST / HTTP/1.1\nHost: ess.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateDynamicFlowApprover\n<公共请求参数>\n\n{\n \"Operator\": {\n \"UserId\": \"操作人id\"\n },\n \"FlowId\": \"合同id\",\n \"AutoSignScene\": \"\",\n \"Approvers\": [\n {\n \"ApproverType\": 0,\n \"ApproverOption\": {\n \"FillType\": 1\n },\n \"PreReadTime\": 3,\n \"SignComponents\": [\n {\n \"ComponentPosX\": 60,\n \"ComponentPosY\": 360,\n \"ComponentWidth\": 100,\n \"ComponentHeight\": 100,\n \"FileIndex\": 0,\n \"ComponentType\": \"SIGN_SEAL\",\n \"ComponentPage\": 1\n }\n ]\n }\n ]\n}",
291
+ "output": "{\n \"Response\": {\n \"DynamicFlowApproverList\": [\n {\n \"ApproverStatus\": 1,\n \"RecipientId\": \"yDCjFUUckp48f6hcUyh7ukYyfaIqHqnR\",\n \"SignId\": \"yDCjFUUckp48f6hiUyh7ukYBjxSiGXzB\"\n }\n ],\n \"FlowId\": \"合同id\",\n \"RequestId\": \"s1728544317709049372\"\n }\n}",
292
+ "title": "补充动态签署人"
293
+ }
294
+ ],
237
295
  "CreateEmbedWebUrl": [
238
296
  {
239
297
  "document": "\t\n获取合同详情嵌入WEB链接",
@@ -1975,7 +1975,7 @@
1975
1975
  "members": [
1976
1976
  {
1977
1977
  "disabled": false,
1978
- "document": "文件类型。支持的文件类型:PDF、DOCX、DOC、XLS、XLSX、PPTPPTX、PNG、JPG、JPEG、CSV",
1978
+ "document": "文件类型。支持的文件类型:PDF、DOC、DOCX、PPTPPTX、MD、TXT、XLS、XLSX、CSV、PNG、JPG、JPEG、BMP、GIF、WEBP、HEIC、EPS、ICNS、IM、PCX、PPM、TIFF、XBM、HEIF、JP2",
1979
1979
  "example": "PDF",
1980
1980
  "member": "string",
1981
1981
  "name": "FileType",
@@ -11274,7 +11274,7 @@
11274
11274
  "example": "6954227",
11275
11275
  "member": "int64",
11276
11276
  "name": "TaskId",
11277
- "required": true,
11277
+ "output_required": true,
11278
11278
  "type": "int",
11279
11279
  "value_allowed_null": false
11280
11280
  },
@@ -1536,7 +1536,7 @@
1536
1536
  {
1537
1537
  "disabled": false,
1538
1538
  "document": "函数所属命名空间",
1539
- "example": "\"\"",
1539
+ "example": "default",
1540
1540
  "member": "string",
1541
1541
  "name": "Namespace",
1542
1542
  "required": false,
@@ -1545,7 +1545,7 @@
1545
1545
  {
1546
1546
  "disabled": false,
1547
1547
  "document": "填写需要删除的版本号,不填默认删除函数下全部版本。",
1548
- "example": "\"\"",
1548
+ "example": "$LATEST",
1549
1549
  "member": "string",
1550
1550
  "name": "Qualifier",
1551
1551
  "required": false,
@@ -4173,7 +4173,7 @@
4173
4173
  "example": "无",
4174
4174
  "member": "Alias",
4175
4175
  "name": "Aliases",
4176
- "required": true,
4176
+ "output_required": true,
4177
4177
  "type": "list",
4178
4178
  "value_allowed_null": false
4179
4179
  },
@@ -4183,7 +4183,7 @@
4183
4183
  "example": "无",
4184
4184
  "member": "uint64",
4185
4185
  "name": "TotalCount",
4186
- "required": true,
4186
+ "output_required": true,
4187
4187
  "type": "int",
4188
4188
  "value_allowed_null": true
4189
4189
  },
@@ -4548,6 +4548,7 @@
4548
4548
  "example": "无",
4549
4549
  "member": "LayerVersionInfo",
4550
4550
  "name": "Layers",
4551
+ "output_required": true,
4551
4552
  "type": "list",
4552
4553
  "value_allowed_null": false
4553
4554
  },
@@ -4557,6 +4558,7 @@
4557
4558
  "example": "0",
4558
4559
  "member": "int64",
4559
4560
  "name": "TotalCount",
4561
+ "output_required": true,
4560
4562
  "type": "int",
4561
4563
  "value_allowed_null": false
4562
4564
  },
@@ -5427,7 +5429,7 @@
5427
5429
  {
5428
5430
  "disabled": false,
5429
5431
  "document": "函数的命名空间",
5430
- "example": "\"\"",
5432
+ "example": "default",
5431
5433
  "member": "string",
5432
5434
  "name": "Namespace",
5433
5435
  "required": false,
@@ -5445,6 +5447,7 @@
5445
5447
  "example": "4",
5446
5448
  "member": "string",
5447
5449
  "name": "FunctionVersion",
5450
+ "output_required": true,
5448
5451
  "type": "string",
5449
5452
  "value_allowed_null": false
5450
5453
  },
@@ -5454,6 +5457,7 @@
5454
5457
  "example": "45686",
5455
5458
  "member": "int64",
5456
5459
  "name": "CodeSize",
5460
+ "output_required": true,
5457
5461
  "type": "int",
5458
5462
  "value_allowed_null": false
5459
5463
  },
@@ -5463,6 +5467,7 @@
5463
5467
  "example": "256",
5464
5468
  "member": "int64",
5465
5469
  "name": "MemorySize",
5470
+ "output_required": true,
5466
5471
  "type": "int",
5467
5472
  "value_allowed_null": false
5468
5473
  },
@@ -5472,6 +5477,7 @@
5472
5477
  "example": "dummytut",
5473
5478
  "member": "string",
5474
5479
  "name": "Description",
5480
+ "output_required": true,
5475
5481
  "type": "string",
5476
5482
  "value_allowed_null": false
5477
5483
  },
@@ -5481,6 +5487,7 @@
5481
5487
  "example": "scfredis.main_handler",
5482
5488
  "member": "string",
5483
5489
  "name": "Handler",
5490
+ "output_required": true,
5484
5491
  "type": "string",
5485
5492
  "value_allowed_null": false
5486
5493
  },
@@ -5490,6 +5497,7 @@
5490
5497
  "example": "3",
5491
5498
  "member": "int64",
5492
5499
  "name": "Timeout",
5500
+ "output_required": true,
5493
5501
  "type": "int",
5494
5502
  "value_allowed_null": false
5495
5503
  },
@@ -5499,6 +5507,7 @@
5499
5507
  "example": "Python2.7",
5500
5508
  "member": "string",
5501
5509
  "name": "Runtime",
5510
+ "output_required": true,
5502
5511
  "type": "string",
5503
5512
  "value_allowed_null": true
5504
5513
  },
@@ -5508,6 +5517,7 @@
5508
5517
  "example": "default",
5509
5518
  "member": "string",
5510
5519
  "name": "Namespace",
5520
+ "output_required": true,
5511
5521
  "type": "string",
5512
5522
  "value_allowed_null": false
5513
5523
  },
@@ -204,7 +204,7 @@
204
204
  {
205
205
  "document": "",
206
206
  "input": "https://scf.tencentcloudapi.com/?Action=ListAliases\n&Namespace=<Namespace>\n&FunctionName=<FunctionName>\n&<公共请求参数>",
207
- "output": "{\n \"Response\": {\n \"TotalCount\": 1,\n \"RequestId\": \"xx\",\n \"Aliases\": [\n {\n \"ModTime\": \"2020-09-22 00:00:00\",\n \"Name\": \"xx\",\n \"AddTime\": \"2020-09-22 00:00:00\",\n \"FunctionVersion\": \"xx\",\n \"RoutingConfig\": {\n \"AdditionalVersionWeights\": [\n {\n \"Version\": \"xx\",\n \"Weight\": 0.0\n }\n ],\n \"AddtionVersionMatchs\": [\n {\n \"Version\": \"xx\",\n \"Expression\": \"xx\",\n \"Method\": \"xx\",\n \"Key\": \"xx\"\n }\n ]\n },\n \"Description\": \"xx\"\n }\n ]\n }\n}",
207
+ "output": "{\n \"Response\": {\n \"Aliases\": [\n {\n \"FunctionVersion\": \"abc\",\n \"Name\": \"abc\",\n \"RoutingConfig\": {\n \"AdditionalVersionWeights\": [\n {\n \"Version\": \"abc\",\n \"Weight\": 0\n }\n ],\n \"AddtionVersionMatchs\": [\n {\n \"Version\": \"abc\",\n \"Key\": \"abc\",\n \"Method\": \"abc\",\n \"Expression\": \"abc\"\n }\n ]\n },\n \"Description\": \"abc\",\n \"AddTime\": \"2020-09-22 00:00:00\",\n \"ModTime\": \"2020-09-22 00:00:00\"\n }\n ],\n \"TotalCount\": 1,\n \"RequestId\": \"abc\"\n }\n}",
208
208
  "title": "查询函数下的全部别名"
209
209
  }
210
210
  ],
@@ -242,7 +242,7 @@
242
242
  {
243
243
  "document": "拉取层列表",
244
244
  "input": "POST / HTTP/1.1\nHost: scf.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ListLayers\n<公共请求参数>\n\n{\n \"CompatibleRuntime\": \"abc\",\n \"Offset\": 0,\n \"Limit\": 0,\n \"SearchKey\": \"abc\"\n}",
245
- "output": "{\n \"Response\": {\n \"Layers\": [\n {\n \"CompatibleRuntimes\": [\n \"abc\"\n ],\n \"AddTime\": \"abc\",\n \"Description\": \"abc\",\n \"LicenseInfo\": \"abc\",\n \"LayerVersion\": 0,\n \"LayerName\": \"abc\",\n \"Status\": \"abc\"\n }\n ],\n \"TotalCount\": 0,\n \"RequestId\": \"abc\"\n }\n}",
245
+ "output": "{\n \"Response\": {\n \"Layers\": [\n {\n \"CompatibleRuntimes\": [\n \"abc\"\n ],\n \"AddTime\": \"abc\",\n \"Description\": \"abc\",\n \"LicenseInfo\": \"abc\",\n \"LayerVersion\": 0,\n \"LayerName\": \"abc\",\n \"Status\": \"abc\",\n \"Stamp\": \"abc\",\n \"Tags\": [\n {\n \"Key\": \"abc\",\n \"Value\": \"abc\"\n }\n ]\n }\n ],\n \"TotalCount\": 0,\n \"RequestId\": \"abc\"\n }\n}",
246
246
  "title": "拉取层列表"
247
247
  }
248
248
  ],
@@ -5087,13 +5087,13 @@
5087
5087
  "value_allowed_null": true
5088
5088
  },
5089
5089
  {
5090
- "disabled": true,
5090
+ "disabled": false,
5091
5091
  "document": "是否支持ipv6路由表\n注意:此字段可能返回 null,表示取不到有效值。",
5092
5092
  "example": "True",
5093
- "member": "string",
5093
+ "member": "bool",
5094
5094
  "name": "Ipv6Flag",
5095
5095
  "output_required": false,
5096
- "type": "string",
5096
+ "type": "bool",
5097
5097
  "value_allowed_null": true
5098
5098
  },
5099
5099
  {
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tccli
3
- Version: 3.0.1204.1
3
+ Version: 3.0.1205.1
4
4
  Summary: Universal Command Line Environment for Tencent Cloud
5
5
  Project-URL: Bug Tracker, https://github.com/TencentCloud/tencentcloud-cli/issues
6
6
  Project-URL: Homepage, https://github.com/TencentCloud/tencentcloud-cli
@@ -13,7 +13,7 @@ Classifier: Programming Language :: Python :: 2.7
13
13
  Classifier: Programming Language :: Python :: 3
14
14
  Requires-Dist: jmespath==0.10.0
15
15
  Requires-Dist: six==1.16.0
16
- Requires-Dist: tencentcloud-sdk-python>=3.0.1204
16
+ Requires-Dist: tencentcloud-sdk-python>=3.0.1205
17
17
  Description-Content-Type: text/markdown
18
18
 
19
19
  # 命令行工具简介
@@ -1,4 +1,4 @@
1
- tccli/__init__.py,sha256=793Qx8WsUYfHW3Di8lVqnqAjW4sss2_qQdEZFfpIDng,27
1
+ tccli/__init__.py,sha256=rXQ7xM07L9foHqUvPB7A9wjc_n_oW55TkwmdnmHmyts,27
2
2
  tccli/argparser.py,sha256=iFaw_iIMdyVwUdcv2_2OHQfe7-7j9yGzoOgXgXswoBo,5555
3
3
  tccli/argument.py,sha256=ZtVo3AySpzM-Hw6_hPdU27FjUsc8QPB2fIuLy7JSBAk,8091
4
4
  tccli/base_command.py,sha256=rFWNAwfS0GA6LLGNOM-iPI0RV81Jag5cZn536ZQN0pw,2859
@@ -306,7 +306,7 @@ tccli/services/cloudstudio/v20230508/api.json,sha256=uTn1amz54O7MH4A5vkYGMeumzHb
306
306
  tccli/services/cloudstudio/v20230508/examples.json,sha256=XXpDCtNUiK9__-_4bdbT4XTvDaGPPKOP7kGMIwMYW30,5455
307
307
  tccli/services/cls/__init__.py,sha256=emWEmdULub91gG47BRE9u44cHrFt8L4KRduipQx_MfQ,85
308
308
  tccli/services/cls/cls_client.py,sha256=uEMsgKQlTL-JbfFGe-QqQviaUzs4ayfOaZlQMFPJ_Ws,317283
309
- tccli/services/cls/v20201016/api.json,sha256=00jXq9Wszw0rBoRsyQVdFmUwZs9JCHbNwOSSx_L5fhI,540812
309
+ tccli/services/cls/v20201016/api.json,sha256=ZtGDgmaDnAgUuC8B6m9gM_Chbo01nXQL9ltPXsBKPRI,540917
310
310
  tccli/services/cls/v20201016/examples.json,sha256=G49KJhwBTHZJxxQHYwMBXjcSIB6KYLw5eSnEJ1zZrvA,203208
311
311
  tccli/services/cme/__init__.py,sha256=JUEIsQ1dWJHSubFZl7yjNuEMYMdDiyVRMv7YUiZcz4s,85
312
312
  tccli/services/cme/cme_client.py,sha256=I0EfukJ3DMhKfOXq4I1nZ2Tp4597B3hzycqVQd_EBqM,159812
@@ -346,7 +346,7 @@ tccli/services/csxg/v20230303/api.json,sha256=faLND0vT8UTE9LyFQcVhOqLcc47xZp07X7
346
346
  tccli/services/csxg/v20230303/examples.json,sha256=bWInWqLp53HCMJ8s0MxYhRmNHzsYJEEU-RjzwOSYPeo,2106
347
347
  tccli/services/cvm/__init__.py,sha256=TlF7VMjJTb_ELng-8ghL1Zvrmu7MJyuNBU5KLiWrFnw,85
348
348
  tccli/services/cvm/cvm_client.py,sha256=vdTxSTI08TBgl1_0rM5CSlAZcjE4cVNZar3AWi8mFK0,319674
349
- tccli/services/cvm/v20170312/api.json,sha256=fzBLmu6cHlUjG85cUpQCFyo6FWfBZm1_LNY_DtNmeFo,529342
349
+ tccli/services/cvm/v20170312/api.json,sha256=ocPyAhcco3PEYEEmMnao7AGsRhE_pTPmEVGhRhFhi4A,529591
350
350
  tccli/services/cvm/v20170312/examples.json,sha256=L3iPV8ZqfnJhI5iSlK0Mnzal8y6EESe0HJMq8_ZlDgk,130372
351
351
  tccli/services/cwp/__init__.py,sha256=VzfiK7QzpNmTiO4zrmILRFSkKMJka8elLwzYLTjUPFw,85
352
352
  tccli/services/cwp/cwp_client.py,sha256=ddzwZS8LRsEGaBdwY3uEjW-CuEIRcEWx56CXBRMVv2w,1611104
@@ -357,9 +357,9 @@ tccli/services/cws/cws_client.py,sha256=bPGWX2h4Ru5YACa7TklX2FnFIbMeFxvrfbGYPibx
357
357
  tccli/services/cws/v20180312/api.json,sha256=yvPs5gzcrgBkZti57TJNssoNSIq0rgozU3FRTrDilgQ,57598
358
358
  tccli/services/cws/v20180312/examples.json,sha256=QmYFbj9zOOBlm4aAxhOw45f5SPrzp5SDfqTv5b3n3Go,17899
359
359
  tccli/services/cynosdb/__init__.py,sha256=MBWPrBSMnHBk0CGpJoI_LU1UxxPO0CX-LO2xxuCFCzg,93
360
- tccli/services/cynosdb/cynosdb_client.py,sha256=k578JK1MBmCLYoj0G0ZO445mXfm26-Mf1ZA7CSPW_yI,465283
361
- tccli/services/cynosdb/v20190107/api.json,sha256=pqzanmjAH5hq-ZrVWTEhqXciukizW3rOfHzP1d4igtA,680974
362
- tccli/services/cynosdb/v20190107/examples.json,sha256=qTuUCHFBMkVTZcPlHSTscL1ULR0Uae3UKFkHb1xR-rA,164930
360
+ tccli/services/cynosdb/cynosdb_client.py,sha256=XIJI7XzlZzFocNL1bSs1JDw89oh9Fj2UXP5LANypBbQ,468374
361
+ tccli/services/cynosdb/v20190107/api.json,sha256=U-wh3Y_FMdK9G0jPMm-q9kjSrIsbLaUw5hP2qPSnaIA,684291
362
+ tccli/services/cynosdb/v20190107/examples.json,sha256=bcc2Y3cKImaFVBjyIQFjOFvs_1G0Xpyn30m8_O45pI0,166043
363
363
  tccli/services/dasb/__init__.py,sha256=x5ez0S2wQBIe-qTkGhVvwqG-rdYdP4NXZn2WfQDvF98,87
364
364
  tccli/services/dasb/dasb_client.py,sha256=PPOaOfXHzwAETOcokO48iQo_vbQ4bgaym2lZh2XINIw,199953
365
365
  tccli/services/dasb/v20191018/api.json,sha256=b2QaGsmDN9u8eyxMuVHAGoDB_p5wRMQHf0PZGsL8OeY,262860
@@ -459,9 +459,9 @@ tccli/services/es/es_client.py,sha256=qq_JR_yVQpJGLyJ0aVtZnk8xn9f3KQlDHdD_3_j1sC
459
459
  tccli/services/es/v20180416/api.json,sha256=aQvUM9syLsYautHdDrmav1X2sY_JU8EMzRcIvrddk4E,344740
460
460
  tccli/services/es/v20180416/examples.json,sha256=4ElTEbF_OVJnL_rtoi_aNs2_mJiImj38e5DlRzJued4,75197
461
461
  tccli/services/ess/__init__.py,sha256=heBHzUKDuNxQ68yNutgyA8stCndyFWqYJqiQFozTiDs,85
462
- tccli/services/ess/ess_client.py,sha256=HAo0ywaDfMX3e84hCPYpiE7s6S_dL6faDVWLdSOovPQ,289209
463
- tccli/services/ess/v20201111/api.json,sha256=DUf6S8Um0fmetAeVaBrCvC5XuTVh7tHfSTecevvbSaA,743022
464
- tccli/services/ess/v20201111/examples.json,sha256=BXBkhRoqS0MyFslyYc0I5fbK3mBsV-TsQ-GgEegk6RY,583727
462
+ tccli/services/ess/ess_client.py,sha256=tZ5-Z40_q_MZA4qThR8Og9iycsxWW4lleWtS7DoOyYk,295418
463
+ tccli/services/ess/v20201111/api.json,sha256=vssuf_bYLHRKy45uRCfQNwyVjdmvs_M58Fyul1sHnEs,753594
464
+ tccli/services/ess/v20201111/examples.json,sha256=71nRAxRrgBJ0-VkSYMyvCcPU6u_8QB2xOh3Dd1-DPzI,594900
465
465
  tccli/services/essbasic/__init__.py,sha256=Uh5kuYtJvJ4F1S2w-19_B6a_JMF1ubh8Se-7p5LA0PE,95
466
466
  tccli/services/essbasic/essbasic_client.py,sha256=FG9LsMtLfF62Sx0BARxtzUnKWr1GYYzmJ2_piD3zgmg,414260
467
467
  tccli/services/essbasic/v20201222/api.json,sha256=8yA-0DwpjBAZajDJnp3flQ2xn1sdkZMVQcvegUcemSM,184116
@@ -632,7 +632,7 @@ tccli/services/live/v20180801/api.json,sha256=vVGrG5pA52weea5OGqr0bsONYjKZb-0nDx
632
632
  tccli/services/live/v20180801/examples.json,sha256=1Ptp7NyUWJGalh8qV1QOp0clj07l5m_O7J78kegPEgk,128092
633
633
  tccli/services/lke/__init__.py,sha256=GKvpxCc-YzK4HVgYFq-aLRxZ1WW4MjpKLIqJNqecz_c,85
634
634
  tccli/services/lke/lke_client.py,sha256=sU6BgO4uOwvE7auZ2ujiZ97050YvqsGxw8rdpXgoO9k,282542
635
- tccli/services/lke/v20231130/api.json,sha256=8u649R_m_FhlkVnpQNz5sssOqcABB0FLXaQR7rCPF1U,391422
635
+ tccli/services/lke/v20231130/api.json,sha256=7dM3uoazysqsIdFpqX6ni2Xhr3szkPQ8dC5wgo8MBSI,391515
636
636
  tccli/services/lke/v20231130/examples.json,sha256=iE0h08jIYpNvgv426y79H8wT_QIkzuW-6zLRquo8A18,233819
637
637
  tccli/services/lowcode/__init__.py,sha256=Kwnfhcs3YjlqMpMouELxDMbP4F0BLDwcaqTPutTSvDs,93
638
638
  tccli/services/lowcode/lowcode_client.py,sha256=mk1eMWo8vZK0nJ8y6jtYIvoUnvkgMJv-W-1i20SzMaw,8716
@@ -758,7 +758,7 @@ tccli/services/rce/v20201103/api.json,sha256=VuWokf1Ywg5hZhBDvj0oQT-eESD1DWwaGAw
758
758
  tccli/services/rce/v20201103/examples.json,sha256=OqxZyUOTBbcCFyx34kzGNNGaGroaqGlGhGBejRyJx5Q,7229
759
759
  tccli/services/redis/__init__.py,sha256=LzB8_p66HdHV32O1SzEXmHhzIe3zOiQGyLwhFG-9lec,89
760
760
  tccli/services/redis/redis_client.py,sha256=4hQ1efSopqzDpVWghp4YukOC5RpyTEpbW8C-fvxzLl8,335310
761
- tccli/services/redis/v20180412/api.json,sha256=NKH9RDM-7EzZjYKj0rAChO2MTU6euJe8ptme73ptSTM,434831
761
+ tccli/services/redis/v20180412/api.json,sha256=t_Er19AJSqev16YOXYfsO205nVWKE5K2KLYGwDphjaw,434838
762
762
  tccli/services/redis/v20180412/examples.json,sha256=6arvZl4QO2F1LT_-mheqvy22j59oPtKu46exPZ1F3v8,132618
763
763
  tccli/services/region/__init__.py,sha256=1VhvvIxcO9rVPGI0QB9oyeCaXG_b25vlTQA02oJfISE,91
764
764
  tccli/services/region/region_client.py,sha256=Q_KWFAG24EqbmiebpjVIhKPCPcYN0GmiLsCb4jCaf9U,14818
@@ -778,8 +778,8 @@ tccli/services/rum/v20210622/api.json,sha256=AHVaDPMpBgywd8a17eAGLOd9F1OHSbjvw9h
778
778
  tccli/services/rum/v20210622/examples.json,sha256=IKO5y9UCaQtMKDxCkCXfTKQaMF_XREpvK69pqHV_EWs,53268
779
779
  tccli/services/scf/__init__.py,sha256=3faZHXJgI7IwnqjGNKVPOIQ6ZW08wo8kgTLRpok8ZMc,85
780
780
  tccli/services/scf/scf_client.py,sha256=kGsQReJ4dM3PqAyLh-H0FUzQ_9WrT6brE9djaZWJtJg,147454
781
- tccli/services/scf/v20180416/api.json,sha256=rQq3_Py6-tGomf3u0NgKKwDDcx3xzkyGthssLfMtT-0,242707
782
- tccli/services/scf/v20180416/examples.json,sha256=jRNEJJcksoeCvwel35Bui_LvnwWIznUU8DSV3GPdJRk,47582
781
+ tccli/services/scf/v20180416/api.json,sha256=tHmktKO6XpSgPQkliqTmUwNNXEe0umLWStcvUixGWag,243080
782
+ tccli/services/scf/v20180416/examples.json,sha256=HksuqxiTNEuNxJbNmvEY4YS5I3zJfjdVwt0vSfZxnlY,47808
783
783
  tccli/services/ses/__init__.py,sha256=J-SZFw3XVI3f_DzMexJURmTZUsc7i32U7hRrvlfuVns,85
784
784
  tccli/services/ses/ses_client.py,sha256=3-nH3O92GyvlaP51aO_Dh0iYU8N4yEmYuVE3OkoFYO4,101269
785
785
  tccli/services/ses/v20201002/api.json,sha256=6NTqYavFlrxD194Eq6XF6qNn7sdCPWorL5O3ygcvh-c,104785
@@ -1080,7 +1080,7 @@ tccli/services/vod/v20240718/api.json,sha256=qEb0v2SaH1_NwIrBtQnwkX0Ra-kR3v_dfwG
1080
1080
  tccli/services/vod/v20240718/examples.json,sha256=g5rJRLbY-ngpdZJP1xsLT4A9dea78jqdSj8svKZpqoA,4839
1081
1081
  tccli/services/vpc/__init__.py,sha256=3Uy1NP1qkZo8Nd-p-jr1ioM8nnurpWlZOgH6iB3HT7M,85
1082
1082
  tccli/services/vpc/vpc_client.py,sha256=PxuHNeYw5kGBxvPnVwr9-qygoaKJEhKxkMaahUYBeFU,1161112
1083
- tccli/services/vpc/v20170312/api.json,sha256=-mX0gw4J7UN5HyCmnG8pcwVqaRdGn8IZ4NyheVFWWjM,1253654
1083
+ tccli/services/vpc/v20170312/api.json,sha256=w0Du3CUfq-UbtDOQt-UScvS3UvDbAdXMz7FMSUWhHnE,1253651
1084
1084
  tccli/services/vpc/v20170312/examples.json,sha256=Um6f5si2jt3342OnfbvJfszXzD62OOyP9pV6rvhU3-U,440971
1085
1085
  tccli/services/vrs/__init__.py,sha256=wd5Otb4faSI7EjUxu_vldqDm0UVy5iVTZYbLgHCVoHk,85
1086
1086
  tccli/services/vrs/vrs_client.py,sha256=GoEtSeQJUcGDUenhtMEXSM0UvCGBZe-hx068V6TAwI8,27146
@@ -1128,8 +1128,8 @@ tccli/services/yunsou/v20180504/api.json,sha256=2808fil5p3pTEJ3SqXEEq7eSrASZOiv8
1128
1128
  tccli/services/yunsou/v20180504/examples.json,sha256=Jg4WuqS_Wxl7eTBMbzjem65FuUZQi3qq3xtlBNFZlTU,11870
1129
1129
  tccli/services/yunsou/v20191115/api.json,sha256=r_p7c7fMNylQVDpSN0CkUB4Cx1nYW1lI3BM_Zi50FNs,15932
1130
1130
  tccli/services/yunsou/v20191115/examples.json,sha256=vN5MzexHVPMckm4MbnXNiOe3KKiVchvf4_uLpjOskuk,3983
1131
- tccli-3.0.1204.1.dist-info/METADATA,sha256=L1ACJjFMfSQfwJI872sGZ1lYU27Vwz_QMZm5FPF9TdU,16172
1132
- tccli-3.0.1204.1.dist-info/WHEEL,sha256=HyPWovjK_wfsxZqVnw7Bu5rgKxNh3Nm__lHm0ALDcb4,101
1133
- tccli-3.0.1204.1.dist-info/entry_points.txt,sha256=9ZzsXxi7Xj3ZneT7VxRVJpFvnmdEOeysh999_0gWVvo,85
1134
- tccli-3.0.1204.1.dist-info/license_files/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
1135
- tccli-3.0.1204.1.dist-info/RECORD,,
1131
+ tccli-3.0.1205.1.dist-info/METADATA,sha256=uTI8_RVYFq3iEJVF-sc-UdmsK0sFa_W0t2EThE9o9Lc,16172
1132
+ tccli-3.0.1205.1.dist-info/WHEEL,sha256=HyPWovjK_wfsxZqVnw7Bu5rgKxNh3Nm__lHm0ALDcb4,101
1133
+ tccli-3.0.1205.1.dist-info/entry_points.txt,sha256=9ZzsXxi7Xj3ZneT7VxRVJpFvnmdEOeysh999_0gWVvo,85
1134
+ tccli-3.0.1205.1.dist-info/license_files/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
1135
+ tccli-3.0.1205.1.dist-info/RECORD,,