tencentcloud-sdk-nodejs 4.1.219 → 4.1.220
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.
- package/es/common/credential.js +1 -1
- package/es/common/sdk_version.js +1 -1
- package/es/services/emr/v20190103/emr_client.js +3 -0
- package/es/services/ess/v20201111/ess_client.js +3 -0
- package/es/services/waf/v20180125/waf_client.js +55 -10
- package/package.json +1 -1
- package/tencentcloud/common/credential.js +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/cdwch/v20200915/cdwch_models.d.ts +4 -0
- package/tencentcloud/services/emr/v20190103/emr_client.d.ts +5 -1
- package/tencentcloud/services/emr/v20190103/emr_client.js +6 -0
- package/tencentcloud/services/emr/v20190103/emr_models.d.ts +329 -72
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +21 -1
- package/tencentcloud/services/ess/v20201111/ess_client.js +22 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +82 -44
- package/tencentcloud/services/ft/v20200304/ft_models.d.ts +8 -4
- package/tencentcloud/services/ims/v20201229/ims_models.d.ts +8 -0
- package/tencentcloud/services/ioa/v20220601/ioa_models.d.ts +2 -2
- package/tencentcloud/services/iss/v20230517/iss_models.d.ts +1 -1
- package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +46 -34
- package/tencentcloud/services/postgres/v20170312/postgres_models.d.ts +106 -25
- package/tencentcloud/services/rum/v20210622/rum_models.d.ts +211 -211
- package/tencentcloud/services/waf/v20180125/waf_client.d.ts +71 -11
- package/tencentcloud/services/waf/v20180125/waf_client.js +105 -15
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +1273 -433
|
@@ -395,6 +395,23 @@ export interface ComputeResourceAdvanceParams {
|
|
|
395
395
|
* <p>base64 编码的用户脚本, 此脚本会在 k8s 组件运行后执行, 需要用户保证脚本的可重入及重试逻辑, 脚本及其生成的日志文件可在节点的 /data/ccs_userscript/ 路径查看</p>
|
|
396
396
|
*/
|
|
397
397
|
UserScript?: string;
|
|
398
|
+
/**
|
|
399
|
+
* <p>节点组Id</p>
|
|
400
|
+
*/
|
|
401
|
+
TkeClusterNodePool?: string;
|
|
402
|
+
}
|
|
403
|
+
/**
|
|
404
|
+
* 服务的部署信息
|
|
405
|
+
*/
|
|
406
|
+
export interface ServiceDeployInfo {
|
|
407
|
+
/**
|
|
408
|
+
* 服务名称
|
|
409
|
+
*/
|
|
410
|
+
ServiceName?: string;
|
|
411
|
+
/**
|
|
412
|
+
* 角色的部署信息列表
|
|
413
|
+
*/
|
|
414
|
+
ComponentDeployInfoList?: Array<ComponentDeployInfo>;
|
|
398
415
|
}
|
|
399
416
|
/**
|
|
400
417
|
* DescribeServiceNodeInfos返回参数结构体
|
|
@@ -612,6 +629,63 @@ export interface JobResult {
|
|
|
612
629
|
*/
|
|
613
630
|
ApplicationId?: string;
|
|
614
631
|
}
|
|
632
|
+
/**
|
|
633
|
+
* InstallSoftware请求参数结构体
|
|
634
|
+
*/
|
|
635
|
+
export interface InstallSoftwareRequest {
|
|
636
|
+
/**
|
|
637
|
+
* <p>集群实例号</p>
|
|
638
|
+
*/
|
|
639
|
+
InstanceId: string;
|
|
640
|
+
/**
|
|
641
|
+
* <p>组件版本号,例如presto-0.161,可根据InstallSoftWareInfo查看当前集群可安装的组件</p>
|
|
642
|
+
*/
|
|
643
|
+
SoftInfo: Array<string>;
|
|
644
|
+
/**
|
|
645
|
+
* <p>如果需要购买CDB,如果是包年包月集群,是否为这个cdb自动续费,默认AUTO_RENEW,如不自动续费新增的CDB,则填入NOT_AUTO_RENEW</p>
|
|
646
|
+
*/
|
|
647
|
+
CdbAutoRenew?: string;
|
|
648
|
+
/**
|
|
649
|
+
* <p>hive共享元数据库类型。取值范围:</p><li>EMR_NEW_META:表示集群默认创建</li><li>EMR_EXIT_METE:表示集群使用指定EMR-MetaDB。</li><li>USER_CUSTOM_META:表示集群使用自定义MetaDB。</li>
|
|
650
|
+
*/
|
|
651
|
+
MetaType?: string;
|
|
652
|
+
/**
|
|
653
|
+
* <p>EMR-MetaDB实例</p>
|
|
654
|
+
*/
|
|
655
|
+
UnifyMetaInstanceId?: string;
|
|
656
|
+
/**
|
|
657
|
+
* <p>自定义MetaDB信息</p>
|
|
658
|
+
*/
|
|
659
|
+
MetaDBInfo?: CustomMetaInfo;
|
|
660
|
+
/**
|
|
661
|
+
* <p>共用组件信息</p>
|
|
662
|
+
*/
|
|
663
|
+
ExternalService?: Array<ExternalService>;
|
|
664
|
+
/**
|
|
665
|
+
* <p>标签信息</p>
|
|
666
|
+
*/
|
|
667
|
+
Tags?: Array<Tag>;
|
|
668
|
+
/**
|
|
669
|
+
* <p>角色的Pod规格信息</p>
|
|
670
|
+
*/
|
|
671
|
+
CloudResources?: Array<CloudResource>;
|
|
672
|
+
/**
|
|
673
|
+
* <p>自定义部署信息</p>
|
|
674
|
+
*/
|
|
675
|
+
ServiceDeployInfoList?: Array<ServiceDeployInfo>;
|
|
676
|
+
/**
|
|
677
|
+
* <p>数据库版本</p>
|
|
678
|
+
*/
|
|
679
|
+
DefaultMetaVersion?: string;
|
|
680
|
+
/**
|
|
681
|
+
* <p>是否开通审计</p>
|
|
682
|
+
*/
|
|
683
|
+
NeedCdbAudit?: number;
|
|
684
|
+
/**
|
|
685
|
+
* <p>额外容器相关配置</p>
|
|
686
|
+
*/
|
|
687
|
+
ContainerExtraConf?: ContainerExtraConf;
|
|
688
|
+
}
|
|
615
689
|
/**
|
|
616
690
|
* DescribeInspectionTaskResult请求参数结构体
|
|
617
691
|
*/
|
|
@@ -2106,6 +2180,19 @@ export interface UserInfoForUserManager {
|
|
|
2106
2180
|
*/
|
|
2107
2181
|
Groups?: Array<string>;
|
|
2108
2182
|
}
|
|
2183
|
+
/**
|
|
2184
|
+
* 标签选择器
|
|
2185
|
+
*/
|
|
2186
|
+
export interface LabelSelector {
|
|
2187
|
+
/**
|
|
2188
|
+
* <p>标签精确匹配条件</p>
|
|
2189
|
+
*/
|
|
2190
|
+
MatchLabels?: Array<StringMap>;
|
|
2191
|
+
/**
|
|
2192
|
+
* <p>标签表达式匹配条件</p>
|
|
2193
|
+
*/
|
|
2194
|
+
MatchExpressions?: Array<LabelSelectorRequirement>;
|
|
2195
|
+
}
|
|
2109
2196
|
/**
|
|
2110
2197
|
* DeleteAutoScaleStrategy返回参数结构体
|
|
2111
2198
|
*/
|
|
@@ -2496,6 +2583,39 @@ export interface Toleration {
|
|
|
2496
2583
|
*/
|
|
2497
2584
|
TolerationSeconds?: number;
|
|
2498
2585
|
}
|
|
2586
|
+
/**
|
|
2587
|
+
* DescribeEmrOverviewMetrics请求参数结构体
|
|
2588
|
+
*/
|
|
2589
|
+
export interface DescribeEmrOverviewMetricsRequest {
|
|
2590
|
+
/**
|
|
2591
|
+
* 结束时间
|
|
2592
|
+
*/
|
|
2593
|
+
End: number;
|
|
2594
|
+
/**
|
|
2595
|
+
* 指标名,NODE.CPU:节点平均CPU利用率和总核数;NODE.CPU.SLHBASE:Serverless实例平均CPU利用率和总核数;HDFS.NN.CAPACITY:存储使用率和总量
|
|
2596
|
+
*/
|
|
2597
|
+
Metric: string;
|
|
2598
|
+
/**
|
|
2599
|
+
* 集群id
|
|
2600
|
+
*/
|
|
2601
|
+
InstanceId: string;
|
|
2602
|
+
/**
|
|
2603
|
+
* 粒度 30s-max 1m-max 1h-max等
|
|
2604
|
+
*/
|
|
2605
|
+
Downsample: string;
|
|
2606
|
+
/**
|
|
2607
|
+
* 起始时间,画饼状图时不传
|
|
2608
|
+
*/
|
|
2609
|
+
Start?: number;
|
|
2610
|
+
/**
|
|
2611
|
+
* 聚合方法,扩展用,这里目前不用传
|
|
2612
|
+
*/
|
|
2613
|
+
Aggregator?: string;
|
|
2614
|
+
/**
|
|
2615
|
+
* 指标要查询的具体type 如:"{"type":"CapacityTotal|CapacityRemaining"}"
|
|
2616
|
+
*/
|
|
2617
|
+
Tags?: string;
|
|
2618
|
+
}
|
|
2499
2619
|
/**
|
|
2500
2620
|
* 集群配置。
|
|
2501
2621
|
*/
|
|
@@ -3081,7 +3201,7 @@ export interface COSSettings {
|
|
|
3081
3201
|
*/
|
|
3082
3202
|
export interface CreateCloudInstanceResponse {
|
|
3083
3203
|
/**
|
|
3084
|
-
*
|
|
3204
|
+
* <p>实例ID</p>
|
|
3085
3205
|
*/
|
|
3086
3206
|
InstanceId?: string;
|
|
3087
3207
|
/**
|
|
@@ -3963,6 +4083,28 @@ export interface DescribeInstanceRenewNodesResponse {
|
|
|
3963
4083
|
*/
|
|
3964
4084
|
RequestId?: string;
|
|
3965
4085
|
}
|
|
4086
|
+
/**
|
|
4087
|
+
* 通用字符串map
|
|
4088
|
+
*/
|
|
4089
|
+
export interface StringMap {
|
|
4090
|
+
/**
|
|
4091
|
+
* <p>键</p>
|
|
4092
|
+
*/
|
|
4093
|
+
Key?: string;
|
|
4094
|
+
/**
|
|
4095
|
+
* <p>值</p>
|
|
4096
|
+
*/
|
|
4097
|
+
Value?: string;
|
|
4098
|
+
}
|
|
4099
|
+
/**
|
|
4100
|
+
* 容器额外配置
|
|
4101
|
+
*/
|
|
4102
|
+
export interface ContainerExtraConf {
|
|
4103
|
+
/**
|
|
4104
|
+
* <p>计算作业代理访问类型,如Spark作业和RayCluster UI;不填写默认使用Internal</p><p>枚举值:</p><ul><li>Internal: 使用内网LB代理访问</li><li>Public: 使用公网LB代理访问</li><li>None: 不创建LB代理访问</li></ul>
|
|
4105
|
+
*/
|
|
4106
|
+
JobAccessProxyType?: string;
|
|
4107
|
+
}
|
|
3966
4108
|
/**
|
|
3967
4109
|
* CreateSLInstance返回参数结构体
|
|
3968
4110
|
*/
|
|
@@ -4207,6 +4349,23 @@ export interface EMREventListItem {
|
|
|
4207
4349
|
*/
|
|
4208
4350
|
CreateTime?: string;
|
|
4209
4351
|
}
|
|
4352
|
+
/**
|
|
4353
|
+
* 标签选择器匹配表达式
|
|
4354
|
+
*/
|
|
4355
|
+
export interface LabelSelectorRequirement {
|
|
4356
|
+
/**
|
|
4357
|
+
* <p>键</p>
|
|
4358
|
+
*/
|
|
4359
|
+
Key?: string;
|
|
4360
|
+
/**
|
|
4361
|
+
* <p>匹配操作</p>
|
|
4362
|
+
*/
|
|
4363
|
+
Operator?: string;
|
|
4364
|
+
/**
|
|
4365
|
+
* <p>值</p>
|
|
4366
|
+
*/
|
|
4367
|
+
Values?: Array<string>;
|
|
4368
|
+
}
|
|
4210
4369
|
/**
|
|
4211
4370
|
* DescribeKyuubiQueryInfo请求参数结构体
|
|
4212
4371
|
*/
|
|
@@ -4623,6 +4782,24 @@ export interface ScriptBootstrapActionConfig {
|
|
|
4623
4782
|
*/
|
|
4624
4783
|
Remark?: string;
|
|
4625
4784
|
}
|
|
4785
|
+
/**
|
|
4786
|
+
* InstallSoftware返回参数结构体
|
|
4787
|
+
*/
|
|
4788
|
+
export interface InstallSoftwareResponse {
|
|
4789
|
+
/**
|
|
4790
|
+
* <p>校验错误信息</p>
|
|
4791
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4792
|
+
*/
|
|
4793
|
+
ErrorMessages?: Array<string>;
|
|
4794
|
+
/**
|
|
4795
|
+
* <p>流程id</p>
|
|
4796
|
+
*/
|
|
4797
|
+
FlowId?: number;
|
|
4798
|
+
/**
|
|
4799
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4800
|
+
*/
|
|
4801
|
+
RequestId?: string;
|
|
4802
|
+
}
|
|
4626
4803
|
/**
|
|
4627
4804
|
* Pod节点选择项集合
|
|
4628
4805
|
*/
|
|
@@ -5536,6 +5713,43 @@ export interface DescribeSparkApplicationsResponse {
|
|
|
5536
5713
|
*/
|
|
5537
5714
|
RequestId?: string;
|
|
5538
5715
|
}
|
|
5716
|
+
/**
|
|
5717
|
+
* 调度拓扑分布
|
|
5718
|
+
*/
|
|
5719
|
+
export interface TopologySpreadConstraint {
|
|
5720
|
+
/**
|
|
5721
|
+
* <p>最大偏差值</p>
|
|
5722
|
+
*/
|
|
5723
|
+
MaxSkew?: number;
|
|
5724
|
+
/**
|
|
5725
|
+
* <p>拓扑域键</p>
|
|
5726
|
+
*/
|
|
5727
|
+
TopologyKey?: string;
|
|
5728
|
+
/**
|
|
5729
|
+
* <p>不满足约束时的处理策略</p>
|
|
5730
|
+
*/
|
|
5731
|
+
WhenUnsatisfiable?: string;
|
|
5732
|
+
/**
|
|
5733
|
+
* <p>标签选择器</p>
|
|
5734
|
+
*/
|
|
5735
|
+
LabelSelector?: LabelSelector;
|
|
5736
|
+
/**
|
|
5737
|
+
* <p>最小拓扑域数量</p>
|
|
5738
|
+
*/
|
|
5739
|
+
MinDomains?: number;
|
|
5740
|
+
/**
|
|
5741
|
+
* <p>节点亲和性策略</p>
|
|
5742
|
+
*/
|
|
5743
|
+
NodeAffinityPolicy?: string;
|
|
5744
|
+
/**
|
|
5745
|
+
* <p>节点污点策略</p>
|
|
5746
|
+
*/
|
|
5747
|
+
NodeTaintsPolicy?: string;
|
|
5748
|
+
/**
|
|
5749
|
+
* <p>匹配标签键列表</p>
|
|
5750
|
+
*/
|
|
5751
|
+
MatchLabelKeys?: Array<string>;
|
|
5752
|
+
}
|
|
5539
5753
|
/**
|
|
5540
5754
|
* ScaleOutInstance返回参数结构体
|
|
5541
5755
|
*/
|
|
@@ -6345,50 +6559,70 @@ export interface DescribeJobFlowRequest {
|
|
|
6345
6559
|
*/
|
|
6346
6560
|
export interface CloudResource {
|
|
6347
6561
|
/**
|
|
6348
|
-
*
|
|
6562
|
+
* <p>组件角色名</p>
|
|
6349
6563
|
*/
|
|
6350
6564
|
ComponentName: string;
|
|
6351
6565
|
/**
|
|
6352
|
-
* pod
|
|
6566
|
+
* <p>pod请求数量</p>
|
|
6353
6567
|
*/
|
|
6354
6568
|
PodNumber: number;
|
|
6355
6569
|
/**
|
|
6356
|
-
* Cpu
|
|
6570
|
+
* <p>Cpu请求数量最大值</p>
|
|
6357
6571
|
*/
|
|
6358
6572
|
LimitCpu: number;
|
|
6359
6573
|
/**
|
|
6360
|
-
*
|
|
6574
|
+
* <p>内存请求数量最大值</p>
|
|
6361
6575
|
*/
|
|
6362
6576
|
LimitMemory: number;
|
|
6363
6577
|
/**
|
|
6364
|
-
*
|
|
6578
|
+
* <p>服务名称,如HIVE</p>
|
|
6365
6579
|
*/
|
|
6366
6580
|
Service?: string;
|
|
6367
6581
|
/**
|
|
6368
|
-
*
|
|
6582
|
+
* <p>数据卷目录设置</p>
|
|
6369
6583
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6370
6584
|
*/
|
|
6371
6585
|
VolumeDir?: VolumeSetting;
|
|
6372
6586
|
/**
|
|
6373
|
-
*
|
|
6587
|
+
* <p>组件外部访问设置</p>
|
|
6374
6588
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6375
6589
|
*/
|
|
6376
6590
|
ExternalAccess?: ExternalAccess;
|
|
6377
6591
|
/**
|
|
6378
|
-
*
|
|
6592
|
+
* <p>节点亲和性设置</p>
|
|
6379
6593
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6380
6594
|
*/
|
|
6381
6595
|
Affinity?: NodeAffinity;
|
|
6382
6596
|
/**
|
|
6383
|
-
*
|
|
6597
|
+
* <p>所选数据盘信息</p>
|
|
6384
6598
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6385
6599
|
*/
|
|
6386
6600
|
Disks?: Array<Disk>;
|
|
6387
6601
|
/**
|
|
6388
|
-
*
|
|
6602
|
+
* <p>容忍</p>
|
|
6389
6603
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
6390
6604
|
*/
|
|
6391
6605
|
Tolerations?: Array<Toleration>;
|
|
6606
|
+
/**
|
|
6607
|
+
* <p>pod亲和性</p>
|
|
6608
|
+
*/
|
|
6609
|
+
PodAffinity?: PodAffinitySpec;
|
|
6610
|
+
/**
|
|
6611
|
+
* <p>pod反亲和性</p>
|
|
6612
|
+
*/
|
|
6613
|
+
PodAntiAffinity?: PodAffinitySpec;
|
|
6614
|
+
/**
|
|
6615
|
+
* <p>拓扑分布约束</p>
|
|
6616
|
+
*/
|
|
6617
|
+
TopologySpreadConstraints?: Array<TopologySpreadConstraint>;
|
|
6618
|
+
/**
|
|
6619
|
+
* <p>pod标签</p>
|
|
6620
|
+
*/
|
|
6621
|
+
PodLabels?: Array<StringMap>;
|
|
6622
|
+
/**
|
|
6623
|
+
* <p>是否创建默认raycluster</p>
|
|
6624
|
+
*/
|
|
6625
|
+
EnableDefaultRayCluster?: boolean;
|
|
6392
6626
|
}
|
|
6393
6627
|
/**
|
|
6394
6628
|
* StarRocks 查询信息
|
|
@@ -6564,6 +6798,19 @@ export interface Placement {
|
|
|
6564
6798
|
*/
|
|
6565
6799
|
ProjectId?: number;
|
|
6566
6800
|
}
|
|
6801
|
+
/**
|
|
6802
|
+
* 角色的部署信息
|
|
6803
|
+
*/
|
|
6804
|
+
export interface ComponentDeployInfo {
|
|
6805
|
+
/**
|
|
6806
|
+
* 角色名称
|
|
6807
|
+
*/
|
|
6808
|
+
ComponentName?: string;
|
|
6809
|
+
/**
|
|
6810
|
+
* 待安装的节点uuid列表
|
|
6811
|
+
*/
|
|
6812
|
+
DeployHostUuidList?: Array<string>;
|
|
6813
|
+
}
|
|
6567
6814
|
/**
|
|
6568
6815
|
* DescribeUsersForUserManager请求参数结构体
|
|
6569
6816
|
*/
|
|
@@ -7435,54 +7682,38 @@ export interface ApplicationStatics {
|
|
|
7435
7682
|
*/
|
|
7436
7683
|
export interface TerminateInstanceRequest {
|
|
7437
7684
|
/**
|
|
7438
|
-
*
|
|
7685
|
+
* <p>实例ID。</p>
|
|
7439
7686
|
*/
|
|
7440
7687
|
InstanceId: string;
|
|
7441
7688
|
/**
|
|
7442
|
-
*
|
|
7689
|
+
* <p>销毁节点ID。该参数为预留参数,用户无需配置。</p>
|
|
7443
7690
|
*/
|
|
7444
7691
|
ResourceIds?: Array<string>;
|
|
7445
7692
|
/**
|
|
7446
|
-
*
|
|
7693
|
+
* <p>类型为ComputeResource和EMR以及默认,默认为EMR,类型为EMR时,InstanceId生效,类型为ComputeResource时,使用ComputeResourceId标识</p>
|
|
7447
7694
|
*/
|
|
7448
7695
|
ResourceBaseType?: string;
|
|
7449
7696
|
/**
|
|
7450
|
-
*
|
|
7697
|
+
* <p>计算资源ID</p>
|
|
7451
7698
|
*/
|
|
7452
7699
|
ComputeResourceId?: string;
|
|
7700
|
+
/**
|
|
7701
|
+
* <p>保留计算资源关联的TKE集群</p>
|
|
7702
|
+
*/
|
|
7703
|
+
RetainTkeCluster?: boolean;
|
|
7453
7704
|
}
|
|
7454
7705
|
/**
|
|
7455
|
-
*
|
|
7706
|
+
* Pod亲和性
|
|
7456
7707
|
*/
|
|
7457
|
-
export interface
|
|
7708
|
+
export interface PodAffinitySpec {
|
|
7458
7709
|
/**
|
|
7459
|
-
*
|
|
7710
|
+
* <p>调度硬关联规则</p>
|
|
7460
7711
|
*/
|
|
7461
|
-
|
|
7712
|
+
RequiredDuringSchedulingIgnoredDuringExecution?: Array<PodAffinityTerm>;
|
|
7462
7713
|
/**
|
|
7463
|
-
*
|
|
7464
|
-
*/
|
|
7465
|
-
Metric: string;
|
|
7466
|
-
/**
|
|
7467
|
-
* 集群id
|
|
7468
|
-
*/
|
|
7469
|
-
InstanceId: string;
|
|
7470
|
-
/**
|
|
7471
|
-
* 粒度 30s-max 1m-max 1h-max等
|
|
7714
|
+
* <p>调度软关联规则</p>
|
|
7472
7715
|
*/
|
|
7473
|
-
|
|
7474
|
-
/**
|
|
7475
|
-
* 起始时间,画饼状图时不传
|
|
7476
|
-
*/
|
|
7477
|
-
Start?: number;
|
|
7478
|
-
/**
|
|
7479
|
-
* 聚合方法,扩展用,这里目前不用传
|
|
7480
|
-
*/
|
|
7481
|
-
Aggregator?: string;
|
|
7482
|
-
/**
|
|
7483
|
-
* 指标要查询的具体type 如:"{"type":"CapacityTotal|CapacityRemaining"}"
|
|
7484
|
-
*/
|
|
7485
|
-
Tags?: string;
|
|
7716
|
+
PreferredDuringSchedulingIgnoredDuringExecution?: Array<WeightedPodAffinityTerm>;
|
|
7486
7717
|
}
|
|
7487
7718
|
/**
|
|
7488
7719
|
* 进程检测信息
|
|
@@ -8936,6 +9167,27 @@ export interface AddMetricScaleStrategyRequest {
|
|
|
8936
9167
|
*/
|
|
8937
9168
|
TimeAutoScaleStrategy?: TimeAutoScaleStrategy;
|
|
8938
9169
|
}
|
|
9170
|
+
/**
|
|
9171
|
+
* Pod亲和性项
|
|
9172
|
+
*/
|
|
9173
|
+
export interface PodAffinityTerm {
|
|
9174
|
+
/**
|
|
9175
|
+
* <p>标签选择器</p>
|
|
9176
|
+
*/
|
|
9177
|
+
LabelSelector?: LabelSelector;
|
|
9178
|
+
/**
|
|
9179
|
+
* <p>命名空间列表</p>
|
|
9180
|
+
*/
|
|
9181
|
+
Namespaces?: Array<string>;
|
|
9182
|
+
/**
|
|
9183
|
+
* <p>拓扑域键</p>
|
|
9184
|
+
*/
|
|
9185
|
+
TopologyKey?: string;
|
|
9186
|
+
/**
|
|
9187
|
+
* <p>命名空间选择器</p>
|
|
9188
|
+
*/
|
|
9189
|
+
NamespaceSelector?: LabelSelector;
|
|
9190
|
+
}
|
|
8939
9191
|
/**
|
|
8940
9192
|
* ModifyUsersOfGroupSTD返回参数结构体
|
|
8941
9193
|
*/
|
|
@@ -9885,93 +10137,85 @@ export interface CreateClusterRequest {
|
|
|
9885
10137
|
*/
|
|
9886
10138
|
export interface CreateCloudInstanceRequest {
|
|
9887
10139
|
/**
|
|
9888
|
-
*
|
|
9889
|
-
<li>长度限制为6-36个字符。</li>
|
|
9890
|
-
<li>只允许包含中文、字母、数字、-、_。</li>
|
|
10140
|
+
* <p>实例名称。</p><li>长度限制为6-36个字符。</li><li>只允许包含中文、字母、数字、-、_。</li>
|
|
9891
10141
|
*/
|
|
9892
10142
|
InstanceName: string;
|
|
9893
10143
|
/**
|
|
9894
|
-
*
|
|
9895
|
-
<li>EMR容器集群实例: EMR-TKE</li>
|
|
10144
|
+
* <p>容器集群类型,取值范围</p><li>EMR容器集群实例: EMR-TKE</li>
|
|
9896
10145
|
*/
|
|
9897
10146
|
ClusterClass: string;
|
|
9898
10147
|
/**
|
|
9899
|
-
*
|
|
9900
|
-
|
|
10148
|
+
* <p>部署的组件列表,不同的EMR产品ID(ProductId:具体含义参考入参ProductId字段)对应不同可选组件列表,不同产品版本可选组件列表查询:<a href="https://cloud.tencent.com/document/product/589/20279">组件版本</a> ;</p>
|
|
9901
10149
|
*/
|
|
9902
10150
|
Software: Array<string>;
|
|
9903
10151
|
/**
|
|
9904
|
-
*
|
|
9905
|
-
<li>EMR容器集群实例: tke</li>
|
|
10152
|
+
* <p>容器平台类型,取值范围</p><li>EMR容器集群实例: tke</li>
|
|
9906
10153
|
*/
|
|
9907
10154
|
PlatFormType: string;
|
|
9908
10155
|
/**
|
|
9909
|
-
* cos
|
|
10156
|
+
* <p>cos存储桶</p>
|
|
9910
10157
|
*/
|
|
9911
10158
|
CosBucket: string;
|
|
9912
10159
|
/**
|
|
9913
|
-
*
|
|
10160
|
+
* <p>容器集群id</p>
|
|
9914
10161
|
*/
|
|
9915
10162
|
EksClusterId?: string;
|
|
9916
10163
|
/**
|
|
9917
|
-
*
|
|
9918
|
-
<li>60:表示EMR-TKE-V1.1.0</li>
|
|
9919
|
-
<li>55:表示EMR-TKE-V1.0.1</li>
|
|
9920
|
-
<li>52:表示EMR-TKE-V1.0.0</li>
|
|
10164
|
+
* <p>产品Id,不同产品ID表示不同的EMR产品版本。取值范围:</p><li>60:表示EMR-TKE-V1.1.0</li><li>55:表示EMR-TKE-V1.0.1</li><li>52:表示EMR-TKE-V1.0.0</li>
|
|
9921
10165
|
*/
|
|
9922
10166
|
ProductId?: number;
|
|
9923
10167
|
/**
|
|
9924
|
-
*
|
|
9925
|
-
示例值:a9a90aa6fae36063280
|
|
10168
|
+
* <p>客户端token,唯一随机标识,时效5分钟,需要调用者指定 防止客户端重新创建资源,小于等于64个字符,例如 a9a90aa6fae36063280<br>示例值:a9a90aa6fae36063280</p>
|
|
9926
10169
|
*/
|
|
9927
10170
|
ClientToken?: string;
|
|
9928
10171
|
/**
|
|
9929
|
-
*
|
|
10172
|
+
* <p>私有网络相关信息配置。通过该参数可以指定私有网络的ID,子网ID等信息。</p>
|
|
9930
10173
|
*/
|
|
9931
10174
|
VPCSettings?: VPCSettings;
|
|
9932
10175
|
/**
|
|
9933
|
-
*
|
|
10176
|
+
* <p>所有组件角色及其对应的Pod资源请求信息</p>
|
|
9934
10177
|
*/
|
|
9935
10178
|
CloudResources?: Array<CloudResource>;
|
|
9936
10179
|
/**
|
|
9937
|
-
*
|
|
10180
|
+
* <p>安全组Id,为空默认创建新的安全组</p>
|
|
9938
10181
|
*/
|
|
9939
10182
|
SgId?: string;
|
|
9940
10183
|
/**
|
|
9941
|
-
*
|
|
9942
|
-
MetaDB信息,当MetaType选择EMR_NEW_META时,MetaDataJdbcUrl MetaDataUser MetaDataPass UnifyMetaInstanceId不用填
|
|
9943
|
-
当MetaType选择EMR_EXIT_META时,填写UnifyMetaInstanceId
|
|
9944
|
-
当MetaType选择USER_CUSTOM_META时,填写MetaDataJdbcUrl MetaDataUser MetaDataPass
|
|
10184
|
+
* <p>元数据库信息<br>MetaDB信息,当MetaType选择EMR_NEW_META时,MetaDataJdbcUrl MetaDataUser MetaDataPass UnifyMetaInstanceId不用填<br>当MetaType选择EMR_EXIT_META时,填写UnifyMetaInstanceId<br>当MetaType选择USER_CUSTOM_META时,填写MetaDataJdbcUrl MetaDataUser MetaDataPass</p>
|
|
9945
10185
|
*/
|
|
9946
10186
|
MetaDBInfo?: CustomMetaDBInfo;
|
|
9947
10187
|
/**
|
|
9948
|
-
*
|
|
10188
|
+
* <p>标签信息</p>
|
|
9949
10189
|
*/
|
|
9950
10190
|
Tags?: Array<Tag>;
|
|
9951
10191
|
/**
|
|
9952
|
-
*
|
|
10192
|
+
* <p>登录密码,LoginSettings中的Password字段</p>
|
|
9953
10193
|
*/
|
|
9954
10194
|
LoginSettings?: LoginSettings;
|
|
9955
10195
|
/**
|
|
9956
|
-
*
|
|
10196
|
+
* <p>共享服务信息</p>
|
|
9957
10197
|
*/
|
|
9958
10198
|
ExternalService?: Array<ExternalService>;
|
|
9959
10199
|
/**
|
|
9960
|
-
*
|
|
10200
|
+
* <p>可用区id</p>
|
|
9961
10201
|
*/
|
|
9962
10202
|
ZoneId?: number;
|
|
9963
10203
|
/**
|
|
9964
|
-
*
|
|
10204
|
+
* <p>数据库版本</p>
|
|
9965
10205
|
*/
|
|
9966
10206
|
DefaultMetaVersion?: string;
|
|
9967
10207
|
/**
|
|
9968
|
-
*
|
|
10208
|
+
* <p>是否开通审计</p>
|
|
9969
10209
|
*/
|
|
9970
10210
|
NeedCdbAudit?: number;
|
|
9971
10211
|
/**
|
|
9972
|
-
*
|
|
10212
|
+
* <p>安全组来源IP</p>
|
|
9973
10213
|
*/
|
|
9974
10214
|
SgIP?: string;
|
|
10215
|
+
/**
|
|
10216
|
+
* <p>额外容器相关配置</p>
|
|
10217
|
+
*/
|
|
10218
|
+
ContainerExtraConf?: ContainerExtraConf;
|
|
9975
10219
|
}
|
|
9976
10220
|
/**
|
|
9977
10221
|
* 资源详情
|
|
@@ -11201,3 +11445,16 @@ export interface NodeAffinity {
|
|
|
11201
11445
|
*/
|
|
11202
11446
|
PreferredDuringSchedulingIgnoredDuringExecution?: Array<PreferredSchedulingTerm>;
|
|
11203
11447
|
}
|
|
11448
|
+
/**
|
|
11449
|
+
* 加权pod亲和性项
|
|
11450
|
+
*/
|
|
11451
|
+
export interface WeightedPodAffinityTerm {
|
|
11452
|
+
/**
|
|
11453
|
+
* <p>权重</p>
|
|
11454
|
+
*/
|
|
11455
|
+
Weight?: number;
|
|
11456
|
+
/**
|
|
11457
|
+
* <p>pod亲和性条件</p>
|
|
11458
|
+
*/
|
|
11459
|
+
PodAffinityTerm?: PodAffinityTerm;
|
|
11460
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import { CreateOrganizationGroupInvitationLinkRequest, DescribeCancelFlowsTaskResponse, CreateSealRequest, ModifyIntegrationDepartmentResponse, CancelFlowResponse, DescribeContractReviewWebUrlRequest, DescribeInformationExtractionTaskRequest, CreateDynamicFlowApproverRequest, DisableUserAutoSignRequest, UploadFilesRequest, OperateSealsResponse, CancelUserAutoSignEnableUrlResponse, CreateContractDiffTaskWebUrlResponse, VerifyDigitFileRequest, CreateFlowEvidenceReportRequest, CreateBatchSignUrlResponse, DescribeUserAutoSignStatusResponse, DescribeContractReviewChecklistWebUrlResponse, CreateFlowForwardsResponse, DescribeFlowEvidenceReportRequest, ModifyPartnerAuthorizationResponse, DeleteSealPoliciesRequest, CreateFlowGroupByTemplatesResponse, ModifySingleSignOnEmployeesResponse, CreateWebThemeConfigResponse, DescribeFlowInfoRequest, ArchiveDynamicFlowResponse, CreateLegalSealQrCodeRequest, DescribeSingleSignOnEmployeesRequest, CreateUserNameChangeUrlRequest, UnbindEmployeeUserIdWithClientOpenIdRequest, CreateBatchInformationExtractionTaskRequest, CreateFlowByFilesRequest, OperateSealsRequest, DescribeFileUrlsResponse, CreateBatchAdminChangeInvitationsUrlResponse, CreateSingleSignOnEmployeesRequest, ModifyIntegrationRoleRequest, VerifyPdfRequest, CreateEmployeeChangeUrlRequest, DescribeSingleSignOnEmployeesResponse, CreateUserAutoSignEnableUrlRequest, CreateBatchOrganizationRegistrationTasksRequest, CreateContractComparisonTaskRequest, DescribeBatchOrganizationRegistrationTasksResponse, CreatePrepareFlowResponse, DescribeOrganizationVerifyStatusRequest, CancelMultiFlowSignQRCodeRequest, CreateSealResponse, VerifyDigitalDataSignRequest, DescribeIntegrationRolesResponse, ModifyExtendedServiceResponse, DescribeBillUsageDetailResponse, DescribeFlowBriefsResponse, DescribeRiskIdentificationTaskFeedbackRequest, CreateBatchAdminChangeInvitationsRequest, DescribeFlowTemplatesResponse, DescribePersonCertificateRequest, CreateBatchOrganizationAuthorizationUrlResponse, ModifyPartnerAutoSignAuthUrlResponse, CreateIntegrationSubOrganizationActiveRecordRequest, CreateOrganizationInfoChangeUrlRequest, DescribePersonCertificateResponse, CreateBatchAdminChangeInvitationsResponse, DescribeFileCounterSignResultRequest, CreateContractDiffTaskWebUrlRequest, DescribeContractReviewTaskRequest, CreateSchemeUrlRequest, CreateFlowApproversResponse, ModifyExtendedServiceRequest, CreateDraftContractByPromptsTaskRequest, CreateLMInformationExtractionTaskFieldFeedbackRequest, CreateContractReviewWebUrlResponse, DisableUserAutoSignResponse, DescribeContractReviewChecklistsWebUrlRequest, CreateContractComparisonTaskResponse, DescribeFileUrlsRequest, CreateMiniAppPrepareFlowResponse, CreateConvertTaskApiRequest, OperateTemplateRequest, CreateBatchQuickSignUrlResponse, DeleteSingleSignOnEmployeesResponse, CreateUserMobileChangeUrlResponse, DescribeFlowTemplatesRequest, DescribeFlowEvidenceReportResponse, CreateRiskIdentificationTaskFeedbackResponse, ExportContractReviewResultResponse, CreateBatchContractReviewTaskRequest, DeleteIntegrationDepartmentResponse, DescribeThirdPartyAuthCodeRequest, CreateBatchInitOrganizationUrlRequest, DeleteOrganizationAuthorizationsResponse, CreateFlowForwardsRequest, CreateIntegrationDepartmentResponse, DeleteSealPoliciesResponse, DescribeOrganizationAuthStatusResponse, DescribeBatchOrganizationRegistrationTasksRequest, CreateSealPolicyResponse, CreateSchemeUrlResponse, CreateFlowSignUrlResponse, RenewAutoSignLicenseResponse, CreateIntegrationRoleResponse, DescribeFlowComponentsRequest, VerifyDigitFileResponse, CreateContractReviewChecklistWebUrlResponse, DeleteIntegrationEmployeesRequest, GetTaskResultApiRequest, CreatePartnerAuthorizationLinkRequest, CreatePersonAuthCertificateImageRequest, CreateFlowByFilesResponse, UploadFilesResponse, DescribeContractReviewChecklistsWebUrlResponse, DescribeBillUsageResponse, ModifyIntegrationDepartmentRequest, CreateOrganizationBatchSignUrlResponse, CreatePartnerAutoSignAuthUrlRequest, CreatePartnerAuthorizationLinkResponse, CreateExtendedServiceAuthInfosResponse, DescribeDraftContractByPromptsTaskResponse, CreateOrganizationBatchSignUrlRequest, CreateDraftContractByPromptsTaskResponse, DeleteIntegrationDepartmentRequest, DescribeFileCounterSignResultResponse, CreateBatchSignUrlRequest, CreateBatchInformationExtractionTaskResponse, DescribeContractComparisonTaskRequest, DescribeFlowBriefsRequest, CreateInformationExtractionWebUrlResponse, CreateFlowGroupSignReviewRequest, ExportContractComparisonTaskResponse, DescribeContractReviewMarkedRiskExportTaskRequest, DescribeContractComparisonTaskResponse, CreateModifyAdminAuthorizationUrlResponse, CreateOrganizationInfoChangeUrlResponse, CreateFlowResponse, CreateUserNameChangeUrlResponse, ModifySingleSignOnEmployeesRequest, DeleteSingleSignOnEmployeesRequest, CancelMultiFlowSignQRCodeResponse, DescribeUserFlowTypeResponse, DescribeExtendedServiceAuthDetailResponse, CreateLegalSealQrCodeResponse, DescribeIntegrationDepartmentsResponse, CreateFileCounterSignRequest, DescribeOrganizationVerifyStatusResponse, DeleteExtendedServiceAuthInfosResponse, DescribeEnterpriseContractReviewChecklistsResponse, ModifyApplicationCallbackInfoResponse, CreateUserVerifyUrlRequest, DescribeLMInformationExtractionTaskFieldFeedbackRequest, CreateIntegrationEmployeesRequest, DescribeContractDiffTaskWebUrlResponse, CreateOrganizationAuthUrlRequest, CreateIntegrationRoleRequest, DescribeIntegrationRolesRequest, CreateFlowGroupSignReviewResponse, CreateFlowRemindsResponse, DescribeOrganizationGroupOrganizationsRequest, DescribeBatchOrganizationRegistrationUrlsRequest, DescribeEnterpriseContractReviewChecklistsRequest, CreateDocumentResponse, CreateIntegrationUserRolesResponse, CreateEmbedWebUrlResponse, UnbindEmployeeUserIdWithClientOpenIdResponse, CreateReleaseFlowResponse, BindEmployeeUserIdWithClientOpenIdRequest, DescribeIntegrationDepartmentsRequest, DescribeExtendedServiceAuthDetailRequest, CreateOrganizationAuthFileRequest, ModifyPartnerAuthorizationRequest, CreateIntegrationSubOrganizationActiveRecordResponse, CreatePersonAuthCertificateImageResponse, DescribeLMInformationExtractionTaskFieldFeedbackResponse, CreateLMInformationExtractionTaskFieldFeedbackResponse, DescribeIntegrationEmployeesResponse, ModifyFlowDeadlineResponse, CreateBatchCancelFlowUrlResponse, CreateUserAutoSignEnableUrlResponse, CreatePartnerAutoSignAuthUrlResponse, ArchiveDynamicFlowRequest, ModifyIntegrationRoleResponse, CreateSingleSignOnEmployeesResponse, CreateFlowEvidenceReportResponse, OperateTemplateResponse, CreateOrganizationGroupInvitationLinkResponse, DeleteIntegrationRoleUsersResponse, CreateFlowGroupByFilesRequest, CreatePreparedPersonalEsignResponse, CreateReleaseFlowRequest, CreateIntegrationUserRolesRequest, CreateFlowSignReviewResponse, RenewAutoSignLicenseRequest, CreateWebThemeConfigRequest, CreateEmployeeQualificationSealQrCodeResponse, CreateUserVerifyUrlResponse, GetTaskResultApiResponse, CreatePrepareFlowGroupRequest, CreateFileCounterSignResponse, CreatePrepareFlowRequest, DescribeCancelFlowsTaskRequest, DescribeContractReviewMarkedRiskExportTaskResponse, CreateSealPolicyRequest, DescribeContractReviewTaskResponse, CancelFlowRequest, DescribeExtendedServiceAuthInfosRequest, UpdateIntegrationEmployeesRequest, CreateFlowGroupByTemplatesRequest, CreateBatchContractReviewTaskResponse, DescribeSignFaceVideoRequest, DescribeOrganizationSealsRequest, CreateBatchOrganizationAuthorizationUrlRequest, CreateDigitalDataSignRequest, CreateBatchCancelFlowUrlRequest, CreateMultiFlowSignQRCodeRequest, DeleteExtendedServiceAuthInfosRequest, DescribeFlowInfoResponse, DescribeUserAutoSignStatusRequest, CreateFlowBlockchainEvidenceUrlRequest, CreateBatchQuickSignUrlRequest, DescribeExtendedServiceAuthInfosResponse, UpdateIntegrationEmployeesResponse, ModifyPartnerAutoSignAuthUrlRequest, DescribeInformationExtractionWebUrlResponse, CreateExtendedServiceAuthInfosRequest, CreatePrepareFlowGroupResponse, CreateMultiFlowSignQRCodeResponse, DescribeThirdPartyAuthCodeResponse, CreateBatchInitOrganizationUrlResponse, BindEmployeeUserIdWithClientOpenIdResponse, CreateDigitalDataSignResponse, CreateOrganizationAuthFileResponse, StartFlowResponse, DescribeRiskIdentificationTaskFeedbackResponse, DescribeInformationExtractionWebUrlRequest, DescribeFlowComponentsResponse, DescribeContractReviewWebUrlResponse, DescribeIntegrationEmployeesRequest, DescribeContractReviewTaskListWebUrlResponse, CreateFlowRequest, CreateContractReviewWebUrlRequest, CreateDynamicFlowApproverResponse, CreateBatchOrganizationRegistrationTasksResponse, DescribeOrganizationSealsResponse, DescribeBillUsageDetailRequest, CreateBatchAdminChangeInvitationsUrlRequest, CreateUserAutoSignSealUrlResponse, CreateEmployeeQualificationSealQrCodeRequest, DescribeInformationExtractionTaskResponse, CreateEmployeeChangeUrlResponse, CreateConvertTaskApiResponse, CreateFlowSignReviewRequest, CreateOrganizationAuthUrlResponse, DescribeOrganizationAuthStatusRequest, CreateUserAutoSignSealUrlRequest, ModifyFlowDeadlineRequest, CreateFlowApproversRequest, CreatePreparedPersonalEsignRequest, CreateMiniAppPrepareFlowRequest, CreateIntegrationDepartmentRequest, DescribeUserVerifyStatusRequest, CreateFlowBlockchainEvidenceUrlResponse, CreateDocumentRequest, CreateContractReviewChecklistWebUrlRequest, CreateUserMobileChangeUrlRequest, CreateEmbedWebUrlRequest, ExportContractReviewMarkedRiskResponse, CreateFlowGroupByFilesResponse, DeleteIntegrationRoleUsersRequest, CreateFlowSignUrlRequest, CreateIntegrationEmployeesResponse, VerifyDigitalDataSignResponse, ExportContractReviewResultRequest, CreateModifyAdminAuthorizationUrlRequest, DeleteOrganizationAuthorizationsRequest, CancelUserAutoSignEnableUrlRequest, DescribeUserVerifyStatusResponse, ExportContractReviewMarkedRiskRequest, DescribeBillUsageRequest, ModifyApplicationCallbackInfoRequest, DescribeContractDiffTaskWebUrlRequest, StartFlowRequest, DeleteIntegrationEmployeesResponse, DescribeContractReviewChecklistWebUrlRequest, CreateFlowRemindsRequest, DescribeDraftContractByPromptsTaskRequest, DescribeSignFaceVideoResponse, VerifyPdfResponse, DescribeBatchOrganizationRegistrationUrlsResponse, ExportContractComparisonTaskRequest, CreateInformationExtractionWebUrlRequest, CreateRiskIdentificationTaskFeedbackRequest, DescribeUserFlowTypeRequest, DescribeContractReviewTaskListWebUrlRequest, DescribeOrganizationGroupOrganizationsResponse } from "./ess_models";
|
|
3
|
+
import { CreateOrganizationGroupInvitationLinkRequest, DescribeCancelFlowsTaskResponse, CreateSealRequest, ModifyIntegrationDepartmentResponse, CancelFlowResponse, DescribeContractReviewWebUrlRequest, DescribeInformationExtractionTaskRequest, CreateDynamicFlowApproverRequest, DisableUserAutoSignRequest, UploadFilesRequest, OperateSealsResponse, CancelUserAutoSignEnableUrlResponse, CreateContractDiffTaskWebUrlResponse, VerifyDigitFileRequest, CreateFlowEvidenceReportRequest, CreateBatchSignUrlResponse, DescribeUserAutoSignStatusResponse, DescribeContractReviewChecklistWebUrlResponse, CreateFlowForwardsResponse, DescribeFlowEvidenceReportRequest, ModifyPartnerAuthorizationResponse, DeleteSealPoliciesRequest, CreateFlowGroupByTemplatesResponse, ModifySingleSignOnEmployeesResponse, CreateWebThemeConfigResponse, DescribeFlowInfoRequest, ArchiveDynamicFlowResponse, CreateLegalSealQrCodeRequest, DescribeSingleSignOnEmployeesRequest, CreateUserNameChangeUrlRequest, UnbindEmployeeUserIdWithClientOpenIdRequest, CreateBatchInformationExtractionTaskRequest, CreateFlowByFilesRequest, OperateSealsRequest, DescribeFileUrlsResponse, CreateBatchAdminChangeInvitationsUrlResponse, CreateSingleSignOnEmployeesRequest, ModifyIntegrationRoleRequest, VerifyPdfRequest, CreateEmployeeChangeUrlRequest, DescribeSingleSignOnEmployeesResponse, CreateUserAutoSignEnableUrlRequest, CreateBatchOrganizationRegistrationTasksRequest, CreateContractComparisonTaskRequest, DescribeBatchOrganizationRegistrationTasksResponse, CreatePrepareFlowResponse, DescribeOrganizationVerifyStatusRequest, CancelMultiFlowSignQRCodeRequest, CreateSealResponse, VerifyDigitalDataSignRequest, DescribeIntegrationRolesResponse, ModifyExtendedServiceResponse, DescribeBillUsageDetailResponse, DescribeFlowBriefsResponse, DescribeRiskIdentificationTaskFeedbackRequest, CreateBatchAdminChangeInvitationsRequest, DescribeFlowTemplatesResponse, DescribePersonCertificateRequest, CreateBatchOrganizationAuthorizationUrlResponse, ModifyPartnerAutoSignAuthUrlResponse, CreateIntegrationSubOrganizationActiveRecordRequest, CreateOrganizationInfoChangeUrlRequest, DescribePersonCertificateResponse, CreateBatchAdminChangeInvitationsResponse, DescribeFileCounterSignResultRequest, CreateContractDiffTaskWebUrlRequest, DescribeContractReviewTaskRequest, CreateSchemeUrlRequest, CreateFlowApproversResponse, ModifyExtendedServiceRequest, CreateDraftContractByPromptsTaskRequest, CreateLMInformationExtractionTaskFieldFeedbackRequest, CreateContractReviewWebUrlResponse, DisableUserAutoSignResponse, DescribeContractReviewChecklistsWebUrlRequest, CreateContractComparisonTaskResponse, DescribeFileUrlsRequest, CreateMiniAppPrepareFlowResponse, CreateConvertTaskApiRequest, OperateTemplateRequest, CreateBatchQuickSignUrlResponse, DeleteSingleSignOnEmployeesResponse, CreateUserMobileChangeUrlResponse, DescribeFlowTemplatesRequest, DescribeFlowEvidenceReportResponse, CreateRiskIdentificationTaskFeedbackResponse, ExportContractReviewResultResponse, CreateBatchContractReviewTaskRequest, DeleteIntegrationDepartmentResponse, DescribeThirdPartyAuthCodeRequest, CreateBatchInitOrganizationUrlRequest, DeleteOrganizationAuthorizationsResponse, CreateFlowForwardsRequest, CreateIntegrationDepartmentResponse, DeleteSealPoliciesResponse, DescribeOrganizationAuthStatusResponse, DescribeBatchOrganizationRegistrationTasksRequest, CreateSealPolicyResponse, CreateSchemeUrlResponse, CreateFlowSignUrlResponse, RenewAutoSignLicenseResponse, CreateIntegrationRoleResponse, DescribeFlowComponentsRequest, VerifyDigitFileResponse, CreateContractReviewChecklistWebUrlResponse, DeleteIntegrationEmployeesRequest, GetTaskResultApiRequest, CreatePartnerAuthorizationLinkRequest, CreatePersonAuthCertificateImageRequest, CreateFlowByFilesResponse, UploadFilesResponse, DescribeContractReviewChecklistsWebUrlResponse, DescribeBillUsageResponse, ModifyIntegrationDepartmentRequest, CreateOrganizationBatchSignUrlResponse, CreatePartnerAutoSignAuthUrlRequest, CreatePartnerAuthorizationLinkResponse, CreateExtendedServiceAuthInfosResponse, DescribeDraftContractByPromptsTaskResponse, CreateOrganizationBatchSignUrlRequest, CreateDraftContractByPromptsTaskResponse, DeleteIntegrationDepartmentRequest, DescribeFileCounterSignResultResponse, CreateBatchSignUrlRequest, CreateBatchInformationExtractionTaskResponse, DescribeContractComparisonTaskRequest, DescribeFlowBriefsRequest, CreateInformationExtractionWebUrlResponse, CreateFlowGroupSignReviewRequest, ExportContractComparisonTaskResponse, DescribeContractReviewMarkedRiskExportTaskRequest, DescribeContractComparisonTaskResponse, CreateModifyAdminAuthorizationUrlResponse, CreateOrganizationInfoChangeUrlResponse, CreateFlowResponse, CreateUserNameChangeUrlResponse, ModifySingleSignOnEmployeesRequest, DeleteSingleSignOnEmployeesRequest, CancelMultiFlowSignQRCodeResponse, DescribeUserFlowTypeResponse, DescribeExtendedServiceAuthDetailResponse, CreateLegalSealQrCodeResponse, DescribeIntegrationDepartmentsResponse, CreateFileCounterSignRequest, DescribeOrganizationVerifyStatusResponse, DeleteExtendedServiceAuthInfosResponse, DescribeEnterpriseContractReviewChecklistsResponse, ModifyApplicationCallbackInfoResponse, CreateUserVerifyUrlRequest, DescribeLMInformationExtractionTaskFieldFeedbackRequest, CreateIntegrationEmployeesRequest, DescribeContractDiffTaskWebUrlResponse, CreateOrganizationAuthUrlRequest, CreateIntegrationRoleRequest, DescribeIntegrationRolesRequest, CreateFlowGroupSignReviewResponse, CreateFlowRemindsResponse, DescribeOrganizationGroupOrganizationsRequest, DescribeBatchOrganizationRegistrationUrlsRequest, DescribeEnterpriseContractReviewChecklistsRequest, CreateDocumentResponse, CreateIntegrationUserRolesResponse, CreateEmbedWebUrlResponse, UnbindEmployeeUserIdWithClientOpenIdResponse, CreateReleaseFlowResponse, BindEmployeeUserIdWithClientOpenIdRequest, DescribeIntegrationDepartmentsRequest, DescribeExtendedServiceAuthDetailRequest, CreateOrganizationAuthFileRequest, ModifyPartnerAuthorizationRequest, CreateIntegrationSubOrganizationActiveRecordResponse, CreatePersonAuthCertificateImageResponse, DescribeLMInformationExtractionTaskFieldFeedbackResponse, CreateLMInformationExtractionTaskFieldFeedbackResponse, DescribeIntegrationEmployeesResponse, ModifyFlowDeadlineResponse, CreateBatchCancelFlowUrlResponse, CreateUserAutoSignEnableUrlResponse, CreatePartnerAutoSignAuthUrlResponse, ArchiveDynamicFlowRequest, ModifyIntegrationRoleResponse, CreateSingleSignOnEmployeesResponse, CreateFlowEvidenceReportResponse, OperateTemplateResponse, CreateOrganizationGroupInvitationLinkResponse, DeleteIntegrationRoleUsersResponse, CreateFlowGroupByFilesRequest, CreatePreparedPersonalEsignResponse, CreateReleaseFlowRequest, CreateIntegrationUserRolesRequest, CreateFlowSignReviewResponse, RenewAutoSignLicenseRequest, CreateWebThemeConfigRequest, CreateEmployeeQualificationSealQrCodeResponse, CreateUserVerifyUrlResponse, GetTaskResultApiResponse, CreatePrepareFlowGroupRequest, CreateFileCounterSignResponse, CreatePrepareFlowRequest, DescribeCancelFlowsTaskRequest, DescribeContractReviewMarkedRiskExportTaskResponse, CreateSealPolicyRequest, DescribeContractReviewTaskResponse, CancelFlowRequest, DescribeExtendedServiceAuthInfosRequest, UpdateIntegrationEmployeesRequest, CreateFlowGroupByTemplatesRequest, CreateBatchContractReviewTaskResponse, DescribeSignFaceVideoRequest, DescribeOrganizationSealsRequest, CreateBatchOrganizationAuthorizationUrlRequest, CreateDigitalDataSignRequest, CreateBatchCancelFlowUrlRequest, CreateMultiFlowSignQRCodeRequest, DeleteExtendedServiceAuthInfosRequest, DescribeFlowInfoResponse, DescribeUserAutoSignStatusRequest, CreateFlowBlockchainEvidenceUrlRequest, CreateBatchQuickSignUrlRequest, DescribeExtendedServiceAuthInfosResponse, UpdateIntegrationEmployeesResponse, ModifyPartnerAutoSignAuthUrlRequest, DescribeInformationExtractionWebUrlResponse, CreateExtendedServiceAuthInfosRequest, CreatePrepareFlowGroupResponse, CreateMultiFlowSignQRCodeResponse, DescribeThirdPartyAuthCodeResponse, CreateBatchInitOrganizationUrlResponse, BindEmployeeUserIdWithClientOpenIdResponse, CreateDigitalDataSignResponse, CreateOrganizationAuthFileResponse, StartFlowResponse, DescribeRiskIdentificationTaskFeedbackResponse, DescribeInformationExtractionWebUrlRequest, DescribeFlowComponentsResponse, DescribeContractReviewWebUrlResponse, OperateFlowRemarksResponse, DescribeIntegrationEmployeesRequest, DescribeContractReviewTaskListWebUrlResponse, CreateFlowRequest, CreateContractReviewWebUrlRequest, CreateDynamicFlowApproverResponse, CreateBatchOrganizationRegistrationTasksResponse, DescribeOrganizationSealsResponse, DescribeBillUsageDetailRequest, CreateBatchAdminChangeInvitationsUrlRequest, CreateUserAutoSignSealUrlResponse, CreateEmployeeQualificationSealQrCodeRequest, OperateFlowRemarksRequest, DescribeInformationExtractionTaskResponse, CreateEmployeeChangeUrlResponse, CreateConvertTaskApiResponse, CreateFlowSignReviewRequest, CreateOrganizationAuthUrlResponse, DescribeOrganizationAuthStatusRequest, CreateUserAutoSignSealUrlRequest, ModifyFlowDeadlineRequest, CreateFlowApproversRequest, CreatePreparedPersonalEsignRequest, CreateMiniAppPrepareFlowRequest, CreateIntegrationDepartmentRequest, DescribeUserVerifyStatusRequest, CreateFlowBlockchainEvidenceUrlResponse, CreateDocumentRequest, CreateContractReviewChecklistWebUrlRequest, CreateUserMobileChangeUrlRequest, CreateEmbedWebUrlRequest, ExportContractReviewMarkedRiskResponse, CreateFlowGroupByFilesResponse, DeleteIntegrationRoleUsersRequest, CreateFlowSignUrlRequest, CreateIntegrationEmployeesResponse, VerifyDigitalDataSignResponse, ExportContractReviewResultRequest, CreateModifyAdminAuthorizationUrlRequest, DeleteOrganizationAuthorizationsRequest, CancelUserAutoSignEnableUrlRequest, DescribeUserVerifyStatusResponse, ExportContractReviewMarkedRiskRequest, DescribeBillUsageRequest, ModifyApplicationCallbackInfoRequest, DescribeContractDiffTaskWebUrlRequest, StartFlowRequest, DeleteIntegrationEmployeesResponse, DescribeContractReviewChecklistWebUrlRequest, CreateFlowRemindsRequest, DescribeDraftContractByPromptsTaskRequest, DescribeSignFaceVideoResponse, VerifyPdfResponse, DescribeBatchOrganizationRegistrationUrlsResponse, ExportContractComparisonTaskRequest, CreateInformationExtractionWebUrlRequest, CreateRiskIdentificationTaskFeedbackRequest, DescribeUserFlowTypeRequest, DescribeContractReviewTaskListWebUrlRequest, DescribeOrganizationGroupOrganizationsResponse } from "./ess_models";
|
|
4
4
|
/**
|
|
5
5
|
* ess client
|
|
6
6
|
* @class
|
|
@@ -474,6 +474,26 @@ export declare class Client extends AbstractClient {
|
|
|
474
474
|
* 查询企业认证状态- 仅通过[CreateOrganizationAuthUrl](https://qian.tencent.com/developers/companyApis/organizations/CreateOrganizationAuthUrl) 和[CreateBatchOrganizationRegistrationTasks](https://qian.tencent.com/developers/companyApis/organizations/CreateBatchOrganizationRegistrationTasks)这两个接口进行引导认证的企业,调用方企业可以依据这个接口,查询认证状态。
|
|
475
475
|
*/
|
|
476
476
|
DescribeOrganizationAuthStatus(req: DescribeOrganizationAuthStatusRequest, cb?: (error: string, rep: DescribeOrganizationAuthStatusResponse) => void): Promise<DescribeOrganizationAuthStatusResponse>;
|
|
477
|
+
/**
|
|
478
|
+
* 此接口(OperateFlowRemarks)用于对企业合同备注进行管理操作,支持新增,创建和删除。
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
用户可以通过接口对合同备注进行管理,支持对创建后的备注进行搜索关联的合同流程。
|
|
482
|
+
|
|
483
|
+

|
|
484
|
+
|
|
485
|
+
注:
|
|
486
|
+
|
|
487
|
+
对合同备注进行操作前,操作人需要获取对应权限:合同操作 - 设置合同类型及备注。
|
|
488
|
+
|
|
489
|
+

|
|
490
|
+
|
|
491
|
+
|
|
492
|
+
没有对应权限的用户,并且不属于超管、法人,该合同的参与方(包含签署方与发起方),将无法对对应合同的备注进行编辑,如果备注内容包含敏感信息,将会对其进行打码显示。
|
|
493
|
+
|
|
494
|
+

|
|
495
|
+
*/
|
|
496
|
+
OperateFlowRemarks(req: OperateFlowRemarksRequest, cb?: (error: string, rep: OperateFlowRemarksResponse) => void): Promise<OperateFlowRemarksResponse>;
|
|
477
497
|
/**
|
|
478
498
|
* 管理企业扩展服务
|
|
479
499
|
|