tencentcloud-sdk-nodejs 4.0.812 → 4.0.813

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/CHANGELOG.md +191 -0
  2. package/SERVICE_CHANGELOG.md +230 -87
  3. package/package.json +1 -1
  4. package/products.md +10 -10
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/afc/v20200226/afc_models.ts +4 -8
  7. package/src/services/cdn/v20180606/cdn_models.ts +1 -1
  8. package/src/services/cls/v20201016/cls_models.ts +50 -15
  9. package/src/services/cynosdb/v20190107/cynosdb_client.ts +1 -0
  10. package/src/services/cynosdb/v20190107/cynosdb_models.ts +30 -0
  11. package/src/services/emr/v20190103/emr_client.ts +4 -2
  12. package/src/services/emr/v20190103/emr_models.ts +106 -66
  13. package/src/services/ess/v20201111/ess_client.ts +14 -0
  14. package/src/services/ess/v20201111/ess_models.ts +42 -1
  15. package/src/services/essbasic/v20210526/essbasic_client.ts +20 -2
  16. package/src/services/essbasic/v20210526/essbasic_models.ts +41 -3
  17. package/src/services/lcic/v20220817/lcic_models.ts +42 -0
  18. package/src/services/sqlserver/v20180328/sqlserver_models.ts +4 -0
  19. package/src/services/trp/v20210515/trp_models.ts +10 -0
  20. package/tencentcloud/common/sdk_version.d.ts +1 -1
  21. package/tencentcloud/common/sdk_version.js +1 -1
  22. package/tencentcloud/services/afc/v20200226/afc_models.d.ts +4 -8
  23. package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +1 -1
  24. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +50 -15
  25. package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +29 -0
  26. package/tencentcloud/services/emr/v20190103/emr_client.d.ts +1 -1
  27. package/tencentcloud/services/emr/v20190103/emr_models.d.ts +104 -66
  28. package/tencentcloud/services/ess/v20201111/ess_client.d.ts +7 -1
  29. package/tencentcloud/services/ess/v20201111/ess_client.js +8 -0
  30. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +40 -1
  31. package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +12 -2
  32. package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +13 -1
  33. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +39 -3
  34. package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +42 -0
  35. package/tencentcloud/services/sqlserver/v20180328/sqlserver_models.d.ts +4 -0
  36. package/tencentcloud/services/trp/v20210515/trp_models.d.ts +10 -0
  37. package/test/ess.v20201111.test.js +10 -0
  38. package/test/essbasic.v20210526.test.js +10 -0
@@ -838,7 +838,16 @@ export interface ConfigInfo {
838
838
  */
839
839
  Path?: string
840
840
  /**
841
- * 采集的日志类型,json_log代表json格式日志,delimiter_log代表分隔符格式日志,minimalist_log代表极简日志,multiline_log代表多行日志,fullregex_log代表完整正则,默认为minimalist_log
841
+ * 采集的日志类型。
842
+ - json_log代表:JSON-文件日志(详见[使用 JSON 提取模式采集日志](https://cloud.tencent.com/document/product/614/17419));
843
+ - delimiter_log代表:分隔符-文件日志(详见[使用分隔符提取模式采集日志](https://cloud.tencent.com/document/product/614/17420));
844
+ - minimalist_log代表:单行全文-文件日志(详见[使用单行全文提取模式采集日志](https://cloud.tencent.com/document/product/614/17421));
845
+ - fullregex_log代表:单行完全正则-文件日志(详见[使用单行-完全正则提取模式采集日志](https://cloud.tencent.com/document/product/614/52365));
846
+ - multiline_log代表:多行全文-文件日志(详见[使用多行全文提取模式采集日志](https://cloud.tencent.com/document/product/614/17422));
847
+ - multiline_fullregex_log代表:多行完全正则-文件日志(详见[使用多行-完全正则提取模式采集日志](https://cloud.tencent.com/document/product/614/52366));
848
+ - user_define_log代表:组合解析(适用于多格式嵌套的日志,详见[使用组合解析提取模式采集日志](https://cloud.tencent.com/document/product/614/61310));
849
+ - service_syslog代表:syslog 采集(详见[采集 Syslog](https://cloud.tencent.com/document/product/614/81454));
850
+ - windows_event_log代表:Windows事件日志(详见[采集 Windows 事件日志](https://cloud.tencent.com/document/product/614/96678))。
842
851
  注意:此字段可能返回 null,表示取不到有效值。
843
852
  */
844
853
  LogType?: string
@@ -866,7 +875,7 @@ export interface ConfigInfo {
866
875
  */
867
876
  CreateTime?: string
868
877
  /**
869
- * 用户自定义解析字符串
878
+ * 用户自定义解析字符串,详见[使用组合解析提取模式采集日志](https://cloud.tencent.com/document/product/614/61310)。
870
879
  注意:此字段可能返回 null,表示取不到有效值。
871
880
  */
872
881
  UserDefineRule?: string
@@ -875,7 +884,10 @@ export interface ConfigInfo {
875
884
  - ClsAgentFileTimeout(超时属性), 取值范围: 大于等于0的整数, 0为不超时
876
885
  - ClsAgentMaxDepth(最大目录深度),取值范围: 大于等于0的整数
877
886
  - ClsAgentParseFailMerge(合并解析失败日志),取值范围: true或false
878
- 样例:{"ClsAgentFileTimeout":0,"ClsAgentMaxDepth":10,"ClsAgentParseFailMerge":true}
887
+ 样例:
888
+ `{\"ClsAgentFileTimeout\":0,\"ClsAgentMaxDepth\":10,\"ClsAgentParseFailMerge\":true}`
889
+
890
+ 控制台默认占位值:`{\"ClsAgentDefault\":0}`
879
891
  注意:此字段可能返回 null,表示取不到有效值。
880
892
  */
881
893
  AdvancedConfig?: string
@@ -3741,7 +3753,7 @@ export interface CreateDeliverCloudFunctionResponse {
3741
3753
  */
3742
3754
  export interface ModifyConfigRequest {
3743
3755
  /**
3744
- * 采集规则配置ID
3756
+ * 采集规则配置ID,通过[获取采集规则配置](https://cloud.tencent.com/document/product/614/58616)返回信息获取。
3745
3757
  */
3746
3758
  ConfigId: string
3747
3759
  /**
@@ -3753,7 +3765,18 @@ export interface ModifyConfigRequest {
3753
3765
  */
3754
3766
  Path?: string
3755
3767
  /**
3756
- * 采集的日志类型,json_log代表json格式日志,delimiter_log代表分隔符格式日志,minimalist_log代表极简日志,multiline_log代表多行日志,fullregex_log代表完整正则,默认为minimalist_log
3768
+ * 采集的日志类型。支持以下类型:
3769
+ - json_log代表:JSON-文件日志(详见[使用 JSON 提取模式采集日志](https://cloud.tencent.com/document/product/614/17419));
3770
+ - delimiter_log代表:分隔符-文件日志(详见[使用分隔符提取模式采集日志](https://cloud.tencent.com/document/product/614/17420));
3771
+ - minimalist_log代表:单行全文-文件日志(详见[使用单行全文提取模式采集日志](https://cloud.tencent.com/document/product/614/17421));
3772
+ - fullregex_log代表:单行完全正则-文件日志(详见[使用单行-完全正则提取模式采集日志](https://cloud.tencent.com/document/product/614/52365));
3773
+ - multiline_log代表:多行全文-文件日志(详见[使用多行全文提取模式采集日志](https://cloud.tencent.com/document/product/614/17422));
3774
+ - multiline_fullregex_log代表:多行完全正则-文件日志(详见[使用多行-完全正则提取模式采集日志](https://cloud.tencent.com/document/product/614/52366));
3775
+ - user_define_log代表:组合解析(适用于多格式嵌套的日志,详见[使用组合解析提取模式采集日志](https://cloud.tencent.com/document/product/614/61310));
3776
+ - service_syslog代表:syslog 采集(详见[采集 Syslog](https://cloud.tencent.com/document/product/614/81454));
3777
+ - windows_event_log代表:Windows事件日志(详见[采集 Windows 事件日志](https://cloud.tencent.com/document/product/614/96678))。
3778
+
3779
+
3757
3780
  */
3758
3781
  LogType?: string
3759
3782
  /**
@@ -3769,7 +3792,7 @@ export interface ModifyConfigRequest {
3769
3792
  */
3770
3793
  Output?: string
3771
3794
  /**
3772
- * 用户自定义解析字符串,Json格式序列化的字符串
3795
+ * 用户自定义解析字符串,Json格式序列化的字符串。
3773
3796
  */
3774
3797
  UserDefineRule?: string
3775
3798
  /**
@@ -3777,7 +3800,8 @@ export interface ModifyConfigRequest {
3777
3800
  - ClsAgentFileTimeout(超时属性), 取值范围: 大于等于0的整数, 0为不超时
3778
3801
  - ClsAgentMaxDepth(最大目录深度),取值范围: 大于等于0的整数
3779
3802
  - ClsAgentParseFailMerge(合并解析失败日志),取值范围: true或false
3780
- 样例:{"ClsAgentFileTimeout":0,"ClsAgentMaxDepth":10,"ClsAgentParseFailMerge":true}
3803
+ 样例:
3804
+ `{\"ClsAgentFileTimeout\":0,\"ClsAgentMaxDepth\":10,\"ClsAgentParseFailMerge\":true}`
3781
3805
  */
3782
3806
  AdvancedConfig?: string
3783
3807
  }
@@ -4039,7 +4063,16 @@ export interface CreateConfigRequest {
4039
4063
  */
4040
4064
  Path?: string
4041
4065
  /**
4042
- * 采集的日志类型,json_log代表json格式日志,delimiter_log代表分隔符格式日志,minimalist_log代表极简日志,multiline_log代表多行日志,fullregex_log代表完整正则,默认为minimalist_log
4066
+ * 采集的日志类型,默认为minimalist_log。支持以下类型:
4067
+ - json_log代表:JSON-文件日志(详见[使用 JSON 提取模式采集日志](https://cloud.tencent.com/document/product/614/17419));
4068
+ - delimiter_log代表:分隔符-文件日志(详见[使用分隔符提取模式采集日志](https://cloud.tencent.com/document/product/614/17420));
4069
+ - minimalist_log代表:单行全文-文件日志(详见[使用单行全文提取模式采集日志](https://cloud.tencent.com/document/product/614/17421));
4070
+ - fullregex_log代表:单行完全正则-文件日志(详见[使用单行-完全正则提取模式采集日志](https://cloud.tencent.com/document/product/614/52365));
4071
+ - multiline_log代表:多行全文-文件日志(详见[使用多行全文提取模式采集日志](https://cloud.tencent.com/document/product/614/17422));
4072
+ - multiline_fullregex_log代表:多行完全正则-文件日志(详见[使用多行-完全正则提取模式采集日志](https://cloud.tencent.com/document/product/614/52366));
4073
+ - user_define_log代表:组合解析(适用于多格式嵌套的日志,详见[使用组合解析提取模式采集日志](https://cloud.tencent.com/document/product/614/61310));
4074
+ - service_syslog代表:syslog 采集(详见[采集 Syslog](https://cloud.tencent.com/document/product/614/81454));
4075
+ - windows_event_log代表:Windows事件日志(详见[采集 Windows 事件日志](https://cloud.tencent.com/document/product/614/96678))。
4043
4076
  */
4044
4077
  LogType?: string
4045
4078
  /**
@@ -4051,7 +4084,7 @@ export interface CreateConfigRequest {
4051
4084
  */
4052
4085
  ExcludePaths?: Array<ExcludePathInfo>
4053
4086
  /**
4054
- * 用户自定义采集规则,Json格式序列化的字符串
4087
+ * 用户自定义采集规则,Json格式序列化的字符串。当LogType为user_define_log时,必填。
4055
4088
  */
4056
4089
  UserDefineRule?: string
4057
4090
  /**
@@ -4059,7 +4092,10 @@ export interface CreateConfigRequest {
4059
4092
  - ClsAgentFileTimeout(超时属性), 取值范围: 大于等于0的整数, 0为不超时
4060
4093
  - ClsAgentMaxDepth(最大目录深度),取值范围: 大于等于0的整数
4061
4094
  - ClsAgentParseFailMerge(合并解析失败日志),取值范围: true或false
4062
- 样例:{"ClsAgentFileTimeout":0,"ClsAgentMaxDepth":10,"ClsAgentParseFailMerge":true}
4095
+ 样例:
4096
+ `{\"ClsAgentFileTimeout\":0,\"ClsAgentMaxDepth\":10,\"ClsAgentParseFailMerge\":true}`
4097
+
4098
+ 控制台默认占位值:`{\"ClsAgentDefault\":0}`
4063
4099
  */
4064
4100
  AdvancedConfig?: string
4065
4101
  }
@@ -4801,6 +4837,10 @@ export interface CreateKafkaRechargeRequest {
4801
4837
  * 导入数据位置,-2:最早(默认),-1:最晚
4802
4838
  */
4803
4839
  Offset: number
4840
+ /**
4841
+ * 日志导入规则。
4842
+ */
4843
+ LogRechargeRule: LogRechargeRuleInfo
4804
4844
  /**
4805
4845
  * 腾讯云CKafka实例ID,KafkaType为0时必填
4806
4846
  */
@@ -4822,11 +4862,6 @@ KafkaType为1并且IsEncryptionAddr为true时Protocol必填
4822
4862
  * 用户Kafka消费组名称
4823
4863
  */
4824
4864
  ConsumerGroupName?: string
4825
- /**
4826
- * 日志导入规则。
4827
- 必填字段。
4828
- */
4829
- LogRechargeRule?: LogRechargeRuleInfo
4830
4865
  }
4831
4866
 
4832
4867
  /**
@@ -45,6 +45,7 @@ import {
45
45
  CreateParamTemplateRequest,
46
46
  DescribeClusterDetailRequest,
47
47
  ModifyResourcePackageNameRequest,
48
+ UpgradeProxy,
48
49
  BackupFileInfo,
49
50
  UpgradeProxyRequest,
50
51
  DescribeBinlogDownloadUrlResponse,
@@ -642,6 +642,28 @@ export interface ModifyResourcePackageNameRequest {
642
642
  PackageName: string
643
643
  }
644
644
 
645
+ /**
646
+ * 添加实例或者变配实例时同步升级proxy.
647
+ */
648
+ export interface UpgradeProxy {
649
+ /**
650
+ * cpu
651
+ */
652
+ Cpu: number
653
+ /**
654
+ * memory
655
+ */
656
+ Mem: number
657
+ /**
658
+ * 代理节点信息
659
+ */
660
+ ProxyZones: Array<ProxyZone>
661
+ /**
662
+ * 重新负载均衡
663
+ */
664
+ ReloadBalance?: string
665
+ }
666
+
645
667
  /**
646
668
  * 备份文件信息
647
669
  */
@@ -2827,6 +2849,10 @@ export interface UpgradeInstanceRequest {
2827
2849
  * NormalUpgrade:普通变配,FastUpgrade:极速变配,若变配过程判断会造成闪断,变配流程会终止。
2828
2850
  */
2829
2851
  UpgradeMode?: string
2852
+ /**
2853
+ * proxy同步升级
2854
+ */
2855
+ UpgradeProxy?: UpgradeProxy
2830
2856
  }
2831
2857
 
2832
2858
  /**
@@ -3994,6 +4020,10 @@ export interface AddInstancesRequest {
3994
4020
  * 安全组ID,新建只读实例时可以指定安全组。
3995
4021
  */
3996
4022
  SecurityGroupIds?: Array<string>
4023
+ /**
4024
+ * proxy同步升级
4025
+ */
4026
+ UpgradeProxy?: UpgradeProxy
3997
4027
  }
3998
4028
 
3999
4029
  /**
@@ -56,6 +56,7 @@ import {
56
56
  InsightResult,
57
57
  NodeDetailPriceResult,
58
58
  Tag,
59
+ Arg,
59
60
  ClusterIDToFlowID,
60
61
  EmrListInstance,
61
62
  AddUsersForUserManagerResponse,
@@ -67,8 +68,8 @@ import {
67
68
  DescribeInstanceRenewNodesRequest,
68
69
  YarnApplication,
69
70
  JobResult,
70
- DescribeClusterNodesRequest,
71
71
  DescribeAutoScaleStrategiesResponse,
72
+ StopParams,
72
73
  DependService,
73
74
  PodSpec,
74
75
  InquiryPriceRenewInstanceResponse,
@@ -110,6 +111,7 @@ import {
110
111
  ModifyResourceSchedulerRequest,
111
112
  LoginSettings,
112
113
  RunJobFlowRequest,
114
+ GroupGlobalConfs,
113
115
  PriceResource,
114
116
  TimeAutoScaleStrategy,
115
117
  DescribeInsightListResponse,
@@ -122,7 +124,7 @@ import {
122
124
  UserAndGroup,
123
125
  AddMetricScaleStrategyResponse,
124
126
  BootstrapAction,
125
- GroupGlobalConfs,
127
+ DescribeClusterNodesRequest,
126
128
  DescribeCvmQuotaRequest,
127
129
  DescribeImpalaQueriesRequest,
128
130
  ComponentBasicRestartInfo,
@@ -1511,6 +1511,22 @@ export interface Tag {
1511
1511
  TagValue?: string
1512
1512
  }
1513
1513
 
1514
+ /**
1515
+ * 通用的参数
1516
+ */
1517
+ export interface Arg {
1518
+ /**
1519
+ * key
1520
+ 注意:此字段可能返回 null,表示取不到有效值。
1521
+ */
1522
+ Key?: string
1523
+ /**
1524
+ * 值列表
1525
+ 注意:此字段可能返回 null,表示取不到有效值。
1526
+ */
1527
+ Values?: Array<string>
1528
+ }
1529
+
1514
1530
  /**
1515
1531
  * 集群id与流程id的mapping
1516
1532
  */
@@ -2166,71 +2182,33 @@ export interface JobResult {
2166
2182
  }
2167
2183
 
2168
2184
  /**
2169
- * DescribeClusterNodes请求参数结构体
2185
+ * DescribeAutoScaleStrategies返回参数结构体
2170
2186
  */
2171
- export interface DescribeClusterNodesRequest {
2172
- /**
2173
- * 集群实例ID,实例ID形如: emr-xxxxxxxx
2174
- */
2175
- InstanceId: string
2176
- /**
2177
- * 节点标识,取值为:
2178
- <li>all:表示获取全部类型节点,cdb信息除外。</li>
2179
- <li>master:表示获取master节点信息。</li>
2180
- <li>core:表示获取core节点信息。</li>
2181
- <li>task:表示获取task节点信息。</li>
2182
- <li>common:表示获取common节点信息。</li>
2183
- <li>router:表示获取router节点信息。</li>
2184
- <li>db:表示获取正常状态的cdb信息。</li>
2185
- <li>recyle:表示获取回收站隔离中的节点信息,包括cdb信息。</li>
2186
- <li>renew:表示获取所有待续费的节点信息,包括cdb信息,自动续费节点不会返回。</li>
2187
- 注意:现在只支持以上取值,输入其他值会导致错误。
2188
- */
2189
- NodeFlag: string
2190
- /**
2191
- * 导出全部节点信息csv时是否携带cdb信息
2192
- */
2193
- ExportDb?: boolean
2194
- /**
2195
- * 页编号,默认值为0,表示第一页。
2196
- */
2197
- Offset?: number
2198
- /**
2199
- * 每页返回数量,默认值为100,最大值为100。
2200
- 如果offset和limit都不填,或者都填0,则返回全部数据
2201
- */
2202
- Limit?: number
2203
- /**
2204
- * 资源类型:支持all/host/pod,默认为all
2205
- */
2206
- HardwareResourceType?: string
2207
- /**
2208
- * 支持搜索的字段
2209
- */
2210
- SearchFields?: Array<SearchItem>
2187
+ export interface DescribeAutoScaleStrategiesResponse {
2211
2188
  /**
2212
- *
2189
+ * 按时间伸缩规则
2190
+ 注意:此字段可能返回 null,表示取不到有效值。
2213
2191
  */
2214
- OrderField?: string
2192
+ TimeBasedAutoScaleStrategies?: Array<TimeAutoScaleStrategy>
2215
2193
  /**
2216
- *
2194
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2217
2195
  */
2218
- Asc?: number
2196
+ RequestId?: string
2219
2197
  }
2220
2198
 
2221
2199
  /**
2222
- * DescribeAutoScaleStrategies返回参数结构体
2200
+ * 停止服务时的参数
2223
2201
  */
2224
- export interface DescribeAutoScaleStrategiesResponse {
2202
+ export interface StopParams {
2225
2203
  /**
2226
- * 按时间伸缩规则
2227
- 注意:此字段可能返回 null,表示取不到有效值。
2204
+ * 安全模式:safe
2205
+ 默认模式:default
2228
2206
  */
2229
- TimeBasedAutoScaleStrategies?: Array<TimeAutoScaleStrategy>
2207
+ StopPolicy?: string
2230
2208
  /**
2231
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
2209
+ * 线程数
2232
2210
  */
2233
- RequestId?: string
2211
+ ThreadCount?: number
2234
2212
  }
2235
2213
 
2236
2214
  /**
@@ -2412,6 +2390,10 @@ export interface StartStopServiceOrMonitorRequest {
2412
2390
  * 操作策略
2413
2391
  */
2414
2392
  StrategyConfig?: StrategyConfig
2393
+ /**
2394
+ * 暂停服务时用的参数
2395
+ */
2396
+ StopParams?: StopParams
2415
2397
  }
2416
2398
 
2417
2399
  /**
@@ -3541,6 +3523,32 @@ true 表示安装kerberos,false表示不安装kerberos。
3541
3523
  Instance?: ClusterSetting
3542
3524
  }
3543
3525
 
3526
+ /**
3527
+ * 集群所有伸缩组全局参数信息
3528
+ */
3529
+ export interface GroupGlobalConfs {
3530
+ /**
3531
+ * 伸缩组信息
3532
+ 注意:此字段可能返回 null,表示取不到有效值。
3533
+ */
3534
+ GroupGlobalConf?: AutoScaleResourceConf
3535
+ /**
3536
+ * 当前伸缩组扩容出来的节点数量。
3537
+ 注意:此字段可能返回 null,表示取不到有效值。
3538
+ */
3539
+ CurrentNodes?: number
3540
+ /**
3541
+ * 当前伸缩组扩容出来的后付费节点数量。
3542
+ 注意:此字段可能返回 null,表示取不到有效值。
3543
+ */
3544
+ CurrentPostPaidNodes?: number
3545
+ /**
3546
+ * 当前伸缩组扩容出来的竞价实例节点数量。
3547
+ 注意:此字段可能返回 null,表示取不到有效值。
3548
+ */
3549
+ CurrentSpotPaidNodes?: number
3550
+ }
3551
+
3544
3552
  /**
3545
3553
  * 询价资源
3546
3554
  */
@@ -4006,29 +4014,56 @@ clusterAfter 表示在集群初始化后执行。
4006
4014
  }
4007
4015
 
4008
4016
  /**
4009
- * 集群所有伸缩组全局参数信息
4017
+ * DescribeClusterNodes请求参数结构体
4010
4018
  */
4011
- export interface GroupGlobalConfs {
4019
+ export interface DescribeClusterNodesRequest {
4012
4020
  /**
4013
- * 伸缩组信息
4014
- 注意:此字段可能返回 null,表示取不到有效值。
4021
+ * 集群实例ID,实例ID形如: emr-xxxxxxxx
4015
4022
  */
4016
- GroupGlobalConf?: AutoScaleResourceConf
4023
+ InstanceId: string
4017
4024
  /**
4018
- * 当前伸缩组扩容出来的节点数量。
4019
- 注意:此字段可能返回 null,表示取不到有效值。
4025
+ * 节点标识,取值为:
4026
+ <li>all:表示获取全部类型节点,cdb信息除外。</li>
4027
+ <li>master:表示获取master节点信息。</li>
4028
+ <li>core:表示获取core节点信息。</li>
4029
+ <li>task:表示获取task节点信息。</li>
4030
+ <li>common:表示获取common节点信息。</li>
4031
+ <li>router:表示获取router节点信息。</li>
4032
+ <li>db:表示获取正常状态的cdb信息。</li>
4033
+ <li>recyle:表示获取回收站隔离中的节点信息,包括cdb信息。</li>
4034
+ <li>renew:表示获取所有待续费的节点信息,包括cdb信息,自动续费节点不会返回。</li>
4035
+ 注意:现在只支持以上取值,输入其他值会导致错误。
4020
4036
  */
4021
- CurrentNodes?: number
4037
+ NodeFlag: string
4022
4038
  /**
4023
- * 当前伸缩组扩容出来的后付费节点数量。
4024
- 注意:此字段可能返回 null,表示取不到有效值。
4039
+ * 导出全部节点信息csv时是否携带cdb信息
4025
4040
  */
4026
- CurrentPostPaidNodes?: number
4041
+ ExportDb?: boolean
4027
4042
  /**
4028
- * 当前伸缩组扩容出来的竞价实例节点数量。
4029
- 注意:此字段可能返回 null,表示取不到有效值。
4043
+ * 页编号,默认值为0,表示第一页。
4030
4044
  */
4031
- CurrentSpotPaidNodes?: number
4045
+ Offset?: number
4046
+ /**
4047
+ * 每页返回数量,默认值为100,最大值为100。
4048
+ 如果offset和limit都不填,或者都填0,则返回全部数据
4049
+ */
4050
+ Limit?: number
4051
+ /**
4052
+ * 资源类型:支持all/host/pod,默认为all
4053
+ */
4054
+ HardwareResourceType?: string
4055
+ /**
4056
+ * 支持搜索的字段
4057
+ */
4058
+ SearchFields?: Array<SearchItem>
4059
+ /**
4060
+ * 无
4061
+ */
4062
+ OrderField?: string
4063
+ /**
4064
+ * 无
4065
+ */
4066
+ Asc?: number
4032
4067
  }
4033
4068
 
4034
4069
  /**
@@ -5955,6 +5990,11 @@ export interface StrategyConfig {
5955
5990
  注意:此字段可能返回 null,表示取不到有效值。
5956
5991
  */
5957
5992
  DealOnFail?: number
5993
+ /**
5994
+ * 指令需要指定的参数
5995
+ 注意:此字段可能返回 null,表示取不到有效值。
5996
+ */
5997
+ Args?: Array<Arg>
5958
5998
  }
5959
5999
 
5960
6000
  /**
@@ -170,6 +170,7 @@ import {
170
170
  ApproverInfo,
171
171
  CreateFlowSignReviewResponse,
172
172
  ModifyIntegrationDepartmentRequest,
173
+ RenewAutoSignLicenseRequest,
173
174
  Filter,
174
175
  CreateStaffResult,
175
176
  CreateUserAutoSignEnableUrlRequest,
@@ -232,6 +233,7 @@ import {
232
233
  DeleteExtendedServiceAuthInfosRequest,
233
234
  DescribeIntegrationDepartmentsRequest,
234
235
  DescribeFlowInfoResponse,
236
+ RenewAutoSignLicenseResponse,
235
237
  CancelMultiFlowSignQRCodeResponse,
236
238
  CreateFlowResponse,
237
239
  DescribeUserAutoSignStatusRequest,
@@ -434,6 +436,18 @@ export class Client extends AbstractClient {
434
436
  return this.request("CreateFlowGroupSignReview", req, cb)
435
437
  }
436
438
 
439
+ /**
440
+ * 给医疗个人自动签许可续期。续期成功后,可对医疗自动签许可追加一年有效期,只可续期一次。
441
+
442
+ 注意: `处方单等特殊场景专用,此接口为白名单功能,使用前请联系对接的客户经理沟通。`
443
+ */
444
+ async RenewAutoSignLicense(
445
+ req: RenewAutoSignLicenseRequest,
446
+ cb?: (error: string, rep: RenewAutoSignLicenseResponse) => void
447
+ ): Promise<RenewAutoSignLicenseResponse> {
448
+ return this.request("RenewAutoSignLicense", req, cb)
449
+ }
450
+
437
451
  /**
438
452
  * 本接口(CreateEmbedWebUrl)用于创建嵌入Web的链接,支持以下类型的Web链接创建:
439
453
  1. 创建印章
@@ -3492,7 +3492,7 @@ export interface DescribeFileUrlsRequest {
3492
3492
  /**
3493
3493
  * 文件对应的业务类型,目前支持:
3494
3494
  <ul>
3495
- <li>**FLOW ** : 如需下载合同文件请选择此项</li>
3495
+ <li>**FLOW ** : <font color="red">如需下载合同文件请选择此项</font></li>
3496
3496
  <li>**TEMPLATE ** : 如需下载模板文件请选择此项</li>
3497
3497
  <li>**DOCUMENT **: 如需下载文档文件请选择此项</li>
3498
3498
  <li>**SEAL **: 如需下载印章图片请选择此项</li>
@@ -5615,6 +5615,31 @@ export interface ModifyIntegrationDepartmentRequest {
5615
5615
  OrderNo?: number
5616
5616
  }
5617
5617
 
5618
+ /**
5619
+ * RenewAutoSignLicense请求参数结构体
5620
+ */
5621
+ export interface RenewAutoSignLicenseRequest {
5622
+ /**
5623
+ * 执行本接口操作的员工信息。
5624
+ 注: `在调用此接口时,请确保指定的员工已获得所需的接口调用权限,并具备接口传入的相应资源的数据权限。`
5625
+ */
5626
+ Operator: UserInfo
5627
+ /**
5628
+ * 自动签使用的场景值, 可以选择的场景值如下:
5629
+ <ul><li> **E_PRESCRIPTION_AUTO_SIGN** : 电子处方场景</li><li> **OTHER** : 通用场景</li></ul>
5630
+ */
5631
+ SceneKey: string
5632
+ /**
5633
+ * 需要续期自动签的个人的信息,如姓名,证件信息等。
5634
+ */
5635
+ UserInfo: UserThreeFactor
5636
+ /**
5637
+ * 代理企业和员工的信息。
5638
+ 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
5639
+ */
5640
+ Agent?: Agent
5641
+ }
5642
+
5618
5643
  /**
5619
5644
  * 查询过滤条件
5620
5645
  */
@@ -7732,6 +7757,22 @@ export interface DescribeFlowInfoResponse {
7732
7757
  RequestId?: string
7733
7758
  }
7734
7759
 
7760
+ /**
7761
+ * RenewAutoSignLicense返回参数结构体
7762
+ */
7763
+ export interface RenewAutoSignLicenseResponse {
7764
+ /**
7765
+ * 续期成功后新的自动签许可到期时间。当且仅当已通过许可开通自动签时有值。
7766
+
7767
+ 值为unix时间戳,单位为秒。
7768
+ */
7769
+ LicenseTo?: number
7770
+ /**
7771
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7772
+ */
7773
+ RequestId?: string
7774
+ }
7775
+
7735
7776
  /**
7736
7777
  * CancelMultiFlowSignQRCode返回参数结构体
7737
7778
  */
@@ -75,6 +75,7 @@ import {
75
75
  DescribeResourceUrlsByFlowsResponse,
76
76
  ChannelCreateFlowGroupByFilesRequest,
77
77
  ChannelCreateOrganizationModifyQrCodeRequest,
78
+ ChannelRenewAutoSignLicenseResponse,
78
79
  ChannelCreateFlowByFilesResponse,
79
80
  DescribeFlowDetailInfoResponse,
80
81
  RecipientComponentInfo,
@@ -148,6 +149,7 @@ import {
148
149
  DescribeChannelOrganizationsRequest,
149
150
  ChannelCreatePreparedPersonalEsignRequest,
150
151
  FillError,
152
+ ChannelRenewAutoSignLicenseRequest,
151
153
  ChannelDescribeBillUsageDetailResponse,
152
154
  FlowDetailInfo,
153
155
  CreateFlowsByTemplatesResponse,
@@ -255,6 +257,18 @@ export class Client extends AbstractClient {
255
257
  return this.request("ChannelDeleteSealPolicies", req, cb)
256
258
  }
257
259
 
260
+ /**
261
+ * 给医疗个人自动签许可续期。续期成功后,可对医疗自动签许可追加一年有效期,只可续期一次。
262
+
263
+ 注意: `处方单等特殊场景专用,此接口为白名单功能,使用前请联系对接的客户经理沟通。`
264
+ */
265
+ async ChannelRenewAutoSignLicense(
266
+ req: ChannelRenewAutoSignLicenseRequest,
267
+ cb?: (error: string, rep: ChannelRenewAutoSignLicenseResponse) => void
268
+ ): Promise<ChannelRenewAutoSignLicenseResponse> {
269
+ return this.request("ChannelRenewAutoSignLicense", req, cb)
270
+ }
271
+
258
272
  /**
259
273
  * 提交企业流程审批结果
260
274
  **当前存在两种审核操作:**
@@ -1767,8 +1781,12 @@ Web链接访问后,会根据子客企业(**Agent中ProxyOrganizationOpenId表
1767
1781
  }
1768
1782
 
1769
1783
  /**
1770
- * 通过此接口(ChannelDescribeBillUsageDetail)查询该第三方平台子客企业的套餐消耗详情。
1771
- */
1784
+ * 通过此接口(ChannelDescribeBillUsageDetail)查询该第三方平台子客企业的套餐消耗详情。可以支持单个子客和整个应用下所有子客的查询。
1785
+ <ul>
1786
+ <li>对于单个子客企业的查询,通过指定子客的唯一标识(Agent.ProxyOrganizationOpenId)来查询该子客消耗详情</li>
1787
+ <li>对于整个应用下所有企业的查询,不需要指定子客的唯一标识,只需要传入渠道应用标识(Agent.AppId)直接查询整个应用下所有子客企业消耗详情</li>
1788
+ </ul>
1789
+ */
1772
1790
  async ChannelDescribeBillUsageDetail(
1773
1791
  req: ChannelDescribeBillUsageDetailRequest,
1774
1792
  cb?: (error: string, rep: ChannelDescribeBillUsageDetailResponse) => void