tencentcloud-sdk-nodejs 4.0.591 → 4.0.592

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.
@@ -134,6 +134,7 @@ import {
134
134
  QueryFlexPlatformAccountBalanceResponse,
135
135
  ApplyReWithdrawalRequest,
136
136
  DownloadFileResult,
137
+ QueryFlexWechatAuthResultResponse,
137
138
  RechargeByThirdPayResponse,
138
139
  QueryOutwardOrderRequest,
139
140
  ViewMerchantRequest,
@@ -240,6 +241,7 @@ import {
240
241
  OpenBankRefundOrderApplyResult,
241
242
  CreatePayRollPreOrderWithAuthRequest,
242
243
  QueryMerchantBalanceRequest,
244
+ ApplyFlexWechatPreAuthRequest,
243
245
  QueryOutwardOrderResult,
244
246
  QueryPayerInfoRequest,
245
247
  QuerySingleTransactionStatusRequest,
@@ -443,6 +445,7 @@ import {
443
445
  QueryTransferResultResponse,
444
446
  CloseCloudOrderRequest,
445
447
  CreateInvoiceResultV2,
448
+ WechatPreAuthResult,
446
449
  QueryAcctInfoRequest,
447
450
  DescribeChargeDetailResponse,
448
451
  TranItem,
@@ -561,13 +564,14 @@ import {
561
564
  CreateOrderRequest,
562
565
  ModifyBindedAccountRequest,
563
566
  WithdrawCashMembershipResponse,
567
+ ViewShopRequest,
564
568
  CreateSinglePaymentRequest,
565
569
  QueryFlexPayeeAccountInfoResponse,
566
570
  WithdrawBill,
567
571
  MemberTransactionItem,
568
572
  DistributeReceiverResult,
569
573
  DistributeApplyRequest,
570
- ViewShopRequest,
574
+ QueryFlexWechatAuthResultRequest,
571
575
  OpenBankQueryRefundOrderResult,
572
576
  ApplyOutwardOrderResponse,
573
577
  QueryFlexServiceProviderAccountBalanceResponse,
@@ -643,6 +647,7 @@ import {
643
647
  ApplyOpenBankOrderDetailReceiptResult,
644
648
  CreateRedInvoiceV2Response,
645
649
  PayeeAccountPropertyInfo,
650
+ ApplyFlexWechatPreAuthResponse,
646
651
  DistributeMultiApplyResult,
647
652
  RefundOrderRequest,
648
653
  OpenBankPayerInfo,
@@ -653,6 +658,7 @@ import {
653
658
  CheckAcctResponse,
654
659
  CloudSubOrderRefund,
655
660
  QueryOpenBankExternalSubAccountBookBalanceRequest,
661
+ QueryWechatAuthResult,
656
662
  ApplyOutwardOrderResult,
657
663
  ApplyPayerInfoRequest,
658
664
  CreateBatchPaymentBatchData,
@@ -1814,6 +1820,16 @@ export class Client extends AbstractClient {
1814
1820
  return this.request("CreateFlexPayee", req, cb)
1815
1821
  }
1816
1822
 
1823
+ /**
1824
+ * 查询微工卡核身结果
1825
+ */
1826
+ async QueryFlexWechatAuthResult(
1827
+ req: QueryFlexWechatAuthResultRequest,
1828
+ cb?: (error: string, rep: QueryFlexWechatAuthResultResponse) => void
1829
+ ): Promise<QueryFlexWechatAuthResultResponse> {
1830
+ return this.request("QueryFlexWechatAuthResult", req, cb)
1831
+ }
1832
+
1817
1833
  /**
1818
1834
  * 智慧零售-发票红冲V2
1819
1835
  */
@@ -1937,6 +1953,16 @@ export class Client extends AbstractClient {
1937
1953
  return this.request("QueryMerchant", req, cb)
1938
1954
  }
1939
1955
 
1956
+ /**
1957
+ * 微工卡开通预核身接口
1958
+ */
1959
+ async ApplyFlexWechatPreAuth(
1960
+ req: ApplyFlexWechatPreAuthRequest,
1961
+ cb?: (error: string, rep: ApplyFlexWechatPreAuthResponse) => void
1962
+ ): Promise<ApplyFlexWechatPreAuthResponse> {
1963
+ return this.request("ApplyFlexWechatPreAuth", req, cb)
1964
+ }
1965
+
1940
1966
  /**
1941
1967
  * 修改会员属性-普通商户子账户。修改会员的会员属性。
1942
1968
  */
@@ -4332,6 +4332,32 @@ export interface DownloadFileResult {
4332
4332
  Storage: string
4333
4333
  }
4334
4334
 
4335
+ /**
4336
+ * QueryFlexWechatAuthResult返回参数结构体
4337
+ */
4338
+ export interface QueryFlexWechatAuthResultResponse {
4339
+ /**
4340
+ * 错误码。SUCCESS为成功,其他为失败
4341
+ */
4342
+ ErrCode?: string
4343
+
4344
+ /**
4345
+ * 错误消息
4346
+ */
4347
+ ErrMessage?: string
4348
+
4349
+ /**
4350
+ * 返回结果
4351
+ 注意:此字段可能返回 null,表示取不到有效值。
4352
+ */
4353
+ Result?: QueryWechatAuthResult
4354
+
4355
+ /**
4356
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4357
+ */
4358
+ RequestId?: string
4359
+ }
4360
+
4335
4361
  /**
4336
4362
  * RechargeByThirdPay返回参数结构体
4337
4363
  */
@@ -9364,6 +9390,65 @@ export interface QueryMerchantBalanceRequest {
9364
9390
  Profile?: string
9365
9391
  }
9366
9392
 
9393
+ /**
9394
+ * ApplyFlexWechatPreAuth请求参数结构体
9395
+ */
9396
+ export interface ApplyFlexWechatPreAuthRequest {
9397
+ /**
9398
+ * 商家核身单号
9399
+ */
9400
+ AuthNo: string
9401
+
9402
+ /**
9403
+ * 微信用户标识
9404
+ */
9405
+ OpenId: string
9406
+
9407
+ /**
9408
+ * 项目名称
9409
+ */
9410
+ ProjectName: string
9411
+
9412
+ /**
9413
+ * 用工单位名称
9414
+ */
9415
+ EmployerName: string
9416
+
9417
+ /**
9418
+ * 用户姓名
9419
+ */
9420
+ UserName: string
9421
+
9422
+ /**
9423
+ * 用户证件号
9424
+ */
9425
+ IdNo: string
9426
+
9427
+ /**
9428
+ * 用工类型
9429
+ LONG_TERM_EMPLOYMENT:长期用工,
9430
+ SHORT_TERM_EMPLOYMENT: 短期用工,
9431
+ COOPERATION_EMPLOYMENT:合作关系
9432
+ */
9433
+ EmploymentType: string
9434
+
9435
+ /**
9436
+ * 核身类型
9437
+ SIGN_IN:考勤、签到打卡类型
9438
+ INSURANCE:投保类型
9439
+ CONTRACT:签约类型
9440
+ */
9441
+ AuthType: string
9442
+
9443
+ /**
9444
+ * 环境类型
9445
+ test 测试
9446
+ release 生产
9447
+ sandbox 沙箱
9448
+ */
9449
+ Environment: string
9450
+ }
9451
+
9367
9452
  /**
9368
9453
  * 查询汇出结果
9369
9454
  */
@@ -17667,6 +17752,41 @@ export interface CreateInvoiceResultV2 {
17667
17752
  InvoiceId: string
17668
17753
  }
17669
17754
 
17755
+ /**
17756
+ * 微工卡预核身结果
17757
+ */
17758
+ export interface WechatPreAuthResult {
17759
+ /**
17760
+ * 商户核身单号
17761
+ */
17762
+ AuthNo?: string
17763
+
17764
+ /**
17765
+ * 微信用户标识
17766
+ */
17767
+ OpenId?: string
17768
+
17769
+ /**
17770
+ * 商户号
17771
+ */
17772
+ MchId?: string
17773
+
17774
+ /**
17775
+ * 子商户号
17776
+ */
17777
+ SubMchId?: string
17778
+
17779
+ /**
17780
+ * 预核身token值
17781
+ */
17782
+ Token?: string
17783
+
17784
+ /**
17785
+ * token有效期时间,单位:秒
17786
+ */
17787
+ Expire?: number
17788
+ }
17789
+
17670
17790
  /**
17671
17791
  * QueryAcctInfo请求参数结构体
17672
17792
  */
@@ -22083,6 +22203,36 @@ export interface WithdrawCashMembershipResponse {
22083
22203
  RequestId?: string
22084
22204
  }
22085
22205
 
22206
+ /**
22207
+ * ViewShop请求参数结构体
22208
+ */
22209
+ export interface ViewShopRequest {
22210
+ /**
22211
+ * 收单系统分配的开放ID
22212
+ */
22213
+ OpenId: string
22214
+
22215
+ /**
22216
+ * 收单系统分配的密钥
22217
+ */
22218
+ OpenKey: string
22219
+
22220
+ /**
22221
+ * 外部商户主键编号(ShopNo或OutShopId必须传一个)
22222
+ */
22223
+ OutShopId?: string
22224
+
22225
+ /**
22226
+ * 门店编号(ShopNo或OutShopId必须传一个)
22227
+ */
22228
+ ShopNo?: string
22229
+
22230
+ /**
22231
+ * 沙箱环境填sandbox,正式环境不填
22232
+ */
22233
+ Profile?: string
22234
+ }
22235
+
22086
22236
  /**
22087
22237
  * CreateSinglePayment请求参数结构体
22088
22238
  */
@@ -22341,33 +22491,21 @@ export interface DistributeApplyRequest {
22341
22491
  }
22342
22492
 
22343
22493
  /**
22344
- * ViewShop请求参数结构体
22494
+ * QueryFlexWechatAuthResult请求参数结构体
22345
22495
  */
22346
- export interface ViewShopRequest {
22496
+ export interface QueryFlexWechatAuthResultRequest {
22347
22497
  /**
22348
- * 收单系统分配的开放ID
22498
+ * 商户核身单号
22349
22499
  */
22350
- OpenId: string
22351
-
22352
- /**
22353
- * 收单系统分配的密钥
22354
- */
22355
- OpenKey: string
22356
-
22357
- /**
22358
- * 外部商户主键编号(ShopNo或OutShopId必须传一个)
22359
- */
22360
- OutShopId?: string
22361
-
22362
- /**
22363
- * 门店编号(ShopNo或OutShopId必须传一个)
22364
- */
22365
- ShopNo?: string
22500
+ AuthNo: string
22366
22501
 
22367
22502
  /**
22368
- * 沙箱环境填sandbox,正式环境不填
22369
- */
22370
- Profile?: string
22503
+ * 环境类型
22504
+ test 测试
22505
+ release 生产
22506
+ sandbox 沙箱
22507
+ */
22508
+ Environment?: string
22371
22509
  }
22372
22510
 
22373
22511
  /**
@@ -25674,6 +25812,32 @@ DISABLE:停用
25674
25812
  PaymentRightStatus?: string
25675
25813
  }
25676
25814
 
25815
+ /**
25816
+ * ApplyFlexWechatPreAuth返回参数结构体
25817
+ */
25818
+ export interface ApplyFlexWechatPreAuthResponse {
25819
+ /**
25820
+ * 错误码。SUCCESS为成功,其他为失败
25821
+ */
25822
+ ErrCode?: string
25823
+
25824
+ /**
25825
+ * 错误信息
25826
+ */
25827
+ ErrMessage?: string
25828
+
25829
+ /**
25830
+ * 返回结果
25831
+ 注意:此字段可能返回 null,表示取不到有效值。
25832
+ */
25833
+ Result?: WechatPreAuthResult
25834
+
25835
+ /**
25836
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
25837
+ */
25838
+ RequestId?: string
25839
+ }
25840
+
25677
25841
  /**
25678
25842
  * 分账申请响应对象
25679
25843
  */
@@ -26028,6 +26192,87 @@ _不填默认为生产环境_
26028
26192
  Environment?: string
26029
26193
  }
26030
26194
 
26195
+ /**
26196
+ * 查询用户微工卡核身结果
26197
+ */
26198
+ export interface QueryWechatAuthResult {
26199
+ /**
26200
+ * 商户核身单号
26201
+ */
26202
+ AuthNo?: string
26203
+
26204
+ /**
26205
+ * 微信用户标识
26206
+ */
26207
+ OpenId?: string
26208
+
26209
+ /**
26210
+ * 商户号
26211
+ */
26212
+ MchId?: string
26213
+
26214
+ /**
26215
+ * 子商户号
26216
+ */
26217
+ SubMchId?: string
26218
+
26219
+ /**
26220
+ * 核身渠道
26221
+ FROM_MINI_APP:来自小程序方式核身
26222
+ FROM_HARDWARE:来自硬件设备方式核身
26223
+ */
26224
+ AuthScene?: string
26225
+
26226
+ /**
26227
+ * 核身渠道标识
26228
+
26229
+ 用于定位渠道具体来源,如果是扫码打卡渠道标识就是具体的小程序appid,若是硬件设备,则是设备的序列号等
26230
+ */
26231
+ AuthSource?: string
26232
+
26233
+ /**
26234
+ * 项目名称
26235
+ */
26236
+ ProjectName?: string
26237
+
26238
+ /**
26239
+ * 所属单位名称
26240
+ */
26241
+ EmployerName?: string
26242
+
26243
+ /**
26244
+ * 核身时间
26245
+ yyyy-MM-DDTHH:mm:ss+TIMEZONE
26246
+
26247
+ 示例值:2015-05-20T13:29:35+08:00
26248
+ 注意:此字段可能返回 null,表示取不到有效值。
26249
+ */
26250
+ AuthTime?: string
26251
+
26252
+ /**
26253
+ * 核身类型
26254
+
26255
+ SIGN_IN:考勤、签到打卡类型
26256
+ INSURANCE:投保类型
26257
+ CONTRACT:签约类型
26258
+ */
26259
+ AuthType?: string
26260
+
26261
+ /**
26262
+ * 核身状态
26263
+ AUTHENTICATE_PROCESSING:核身中
26264
+ AUTHENTICATE_SUCCESS:核身成功
26265
+ AUTHENTICATE_FAILED:核身失败
26266
+ */
26267
+ AuthState?: string
26268
+
26269
+ /**
26270
+ * 核身失败原因描述
26271
+ 注意:此字段可能返回 null,表示取不到有效值。
26272
+ */
26273
+ AuthFailReason?: string
26274
+ }
26275
+
26031
26276
  /**
26032
26277
  * 汇出指令申请结果
26033
26278
  */
@@ -1013,7 +1013,7 @@ export class Client extends AbstractClient {
1013
1013
  }
1014
1014
 
1015
1015
  /**
1016
- * 获取集群版实例分片信息
1016
+ * 本接口(DescribeInstanceShards)用于获取集群架构实例的分片信息。
1017
1017
  */
1018
1018
  async DescribeInstanceShards(
1019
1019
  req: DescribeInstanceShardsRequest,
@@ -1033,7 +1033,7 @@ export class Client extends AbstractClient {
1033
1033
  }
1034
1034
 
1035
1035
  /**
1036
- * 查询Redis实例列表
1036
+ * 本接口(DescribeInstances)用于查询Redis实例列表。
1037
1037
  */
1038
1038
  async DescribeInstances(
1039
1039
  req: DescribeInstancesRequest,
@@ -1496,14 +1496,14 @@ export interface ParameterDetail {
1496
1496
  */
1497
1497
  export interface DescribeInstanceShardsResponse {
1498
1498
  /**
1499
- * 实例分片列表信息
1499
+ * 实例分片列表信息,包括:节点信息、节点ID、Key数量、使用容量、容量倾斜率等信息。
1500
1500
  */
1501
- InstanceShards: Array<InstanceClusterShard>
1501
+ InstanceShards?: Array<InstanceClusterShard>
1502
1502
 
1503
1503
  /**
1504
- * 实例分片节点总数
1504
+ * 实例分片节点数量。
1505
1505
  */
1506
- TotalCount: number
1506
+ TotalCount?: number
1507
1507
 
1508
1508
  /**
1509
1509
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -3163,13 +3163,15 @@ export interface DescribeParamTemplatesResponse {
3163
3163
  */
3164
3164
  export interface DescribeInstanceShardsRequest {
3165
3165
  /**
3166
- * 实例ID
3166
+ * 指定实例 ID。例如:crs-xjhsdj****。请登录[Redis控制台](https://console.cloud.tencent.com/redis)在实例列表复制实例 ID。
3167
3167
  */
3168
3168
  InstanceId: string
3169
3169
 
3170
3170
  /**
3171
- * 是否过滤掉从节信息
3172
- */
3171
+ * 是否过滤掉从节信息。
3172
+ - true;过滤从节点。
3173
+ - false:不过滤。
3174
+ */
3173
3175
  FilterSlave?: boolean
3174
3176
  }
3175
3177
 
@@ -4033,17 +4035,19 @@ export interface DescribeInstancesRequest {
4033
4035
  Limit?: number
4034
4036
 
4035
4037
  /**
4036
- * 分页偏移量,取Limit整数倍。
4038
+ * 分页偏移量,取Limit整数倍。计算公式:offset=limit*(页码-1)。
4037
4039
  */
4038
4040
  Offset?: number
4039
4041
 
4040
4042
  /**
4041
- * 实例 ID,如:crs-6ubhgouj
4042
- */
4043
+ * 指定实例 ID。例如:crs-xjhsdj****。请登录[Redis控制台](https://console.cloud.tencent.com/redis)在实例列表复制实例 ID
4044
+
4045
+
4046
+ */
4043
4047
  InstanceId?: string
4044
4048
 
4045
4049
  /**
4046
- * 实例排序依据,枚举值如下所示:<ul><li>projectId:项目ID。</li><li>createtime:实例创建时间。</li><li>instancename:实例名称。</li><li>type:实例类型。</li><li>curDeadline:实例到期时间。</li></ul>
4050
+ * 实例列表排序依据,枚举值如下所示:<ul><li>projectId:依据项目ID排序。</li><li>createtime:依据实例创建时间排序。</li><li>instancename:依据实例名称排序。</li><li>type:依据实例类型排序。</li><li>curDeadline:依据实例到期时间排序。</li></ul>
4047
4051
  */
4048
4052
  OrderBy?: string
4049
4053
 
@@ -4108,7 +4112,7 @@ export interface DescribeInstancesRequest {
4108
4112
  EngineName?: string
4109
4113
 
4110
4114
  /**
4111
- * 续费模式。<ul><li>0:默认状态(手动续费)。</li><li>1:自动续费。</li><li>2:明确不自动续费。</ul>
4115
+ * 续费模式。<ul><li>0:手动续费。</li><li>1:自动续费。</li><li>2:到期不再续费。</ul>
4112
4116
  */
4113
4117
  AutoRenew?: Array<number>
4114
4118
 
@@ -4148,7 +4152,7 @@ export interface DescribeInstancesRequest {
4148
4152
  TagKeys?: Array<string>
4149
4153
 
4150
4154
  /**
4151
- * 实例的产品版本。如果该参数不配置或者数组设置为空值,则默认不依据此参数过滤实例。<ul><li>local:本地盘版。</li><li>cloud:云盘版。</li><li>cdc:独享集群版。</li></ul>
4155
+ * 实例的产品版本。如果该参数不配置或者数组设置为空值,则默认不依据此参数过滤实例。<ul><li>local:本地盘版。</li><li>cdc:独享集群版。</li></ul>
4152
4156
  */
4153
4157
  ProductVersions?: Array<string>
4154
4158
 
@@ -4206,22 +4210,23 @@ export interface ModfiyInstancePasswordRequest {
4206
4210
  */
4207
4211
  export interface DescribeSlowLogRequest {
4208
4212
  /**
4209
- * 实例Id
4210
- */
4213
+ * 指定实例 ID。例如:crs-xjhsdj****。请登录[Redis控制台](https://console.cloud.tencent.com/redis)在实例列表复制实例 ID
4214
+
4215
+ */
4211
4216
  InstanceId: string
4212
4217
 
4213
4218
  /**
4214
- * 开始时间。
4219
+ * 预查询慢日志的起始时间。
4215
4220
  */
4216
4221
  BeginTime: string
4217
4222
 
4218
4223
  /**
4219
- * 结束时间。
4224
+ * 预查询慢日志的结束时间。
4220
4225
  */
4221
4226
  EndTime: string
4222
4227
 
4223
4228
  /**
4224
- * 慢查询平均执行时间阈值(单位:毫秒)。
4229
+ * 慢查询平均执行时间阈值,单位:毫秒。
4225
4230
  */
4226
4231
  MinQueryTime?: number
4227
4232
 
@@ -4231,7 +4236,7 @@ export interface DescribeSlowLogRequest {
4231
4236
  Limit?: number
4232
4237
 
4233
4238
  /**
4234
- * 慢查询条数的偏移量,取Limit整数倍。
4239
+ * 慢查询条数的偏移量,取Limit整数倍。计算公式:offset=limit*(页码-1)。
4235
4240
  */
4236
4241
  Offset?: number
4237
4242
 
@@ -49,6 +49,8 @@ import {
49
49
  InstanceChargePrepaid,
50
50
  Tag,
51
51
  LoginNode,
52
+ NodeScript,
53
+ ModifyInitNodeScriptsResponse,
52
54
  ManagerNodeOverview,
53
55
  ManagerNode,
54
56
  DeleteClusterRequest,
@@ -67,6 +69,7 @@ import {
67
69
  QueueConfigOverview,
68
70
  VirtualPrivateCloud,
69
71
  ExpansionNodeConfigOverview,
72
+ ModifyInitNodeScriptsRequest,
70
73
  GooseFSxOptionOverview,
71
74
  DescribeAutoScalingConfigurationRequest,
72
75
  StorageOption,
@@ -111,6 +114,16 @@ export class Client extends AbstractClient {
111
114
  return this.request("DeleteNodes", req, cb)
112
115
  }
113
116
 
117
+ /**
118
+ * 本接口 (ModifyInitNodeScripts) 用于修改节点初始化脚本。
119
+ */
120
+ async ModifyInitNodeScripts(
121
+ req: ModifyInitNodeScriptsRequest,
122
+ cb?: (error: string, rep: ModifyInitNodeScriptsResponse) => void
123
+ ): Promise<ModifyInitNodeScriptsResponse> {
124
+ return this.request("ModifyInitNodeScripts", req, cb)
125
+ }
126
+
114
127
  /**
115
128
  * 本接口 (CreateCluster) 用于创建并启动集群。
116
129
 
@@ -649,6 +649,11 @@ false(默认):发送正常请求,通过检查后直接创建实例
649
649
  * 弹性伸缩类型。默认值:THPC_AS<br><li>THPC_AS:集群自动扩缩容由THPC产品内部实现。<br><li>AS:集群自动扩缩容由[弹性伸缩](https://cloud.tencent.com/document/product/377/3154)产品实现。
650
650
  */
651
651
  AutoScalingType?: string
652
+
653
+ /**
654
+ * 节点初始化脚本信息列表。
655
+ */
656
+ InitNodeScripts?: Array<NodeScript>
652
657
  }
653
658
 
654
659
  /**
@@ -769,6 +774,11 @@ export interface QueueConfig {
769
774
  * 扩容节点配置信息。
770
775
  */
771
776
  ExpansionNodeConfigs?: Array<ExpansionNodeConfig>
777
+
778
+ /**
779
+ * 队列中期望的空闲节点数量(包含弹性节点和静态节点)。默认值:0。队列中,处于空闲状态的节点小于此值,集群会扩容弹性节点;处于空闲状态的节点大于此值,集群会缩容弹性节点。
780
+ */
781
+ DesiredIdleNodeCapacity?: number
772
782
  }
773
783
 
774
784
  /**
@@ -851,6 +861,34 @@ export interface LoginNode {
851
861
  InstanceName?: string
852
862
  }
853
863
 
864
+ /**
865
+ * 描述节点执行脚本信息。
866
+ */
867
+ export interface NodeScript {
868
+ /**
869
+ * 节点执行脚本获取地址。
870
+ 目前仅支持cos地址。地址最大长度:255。
871
+ 注意:此字段可能返回 null,表示取不到有效值。
872
+ */
873
+ ScriptPath: string
874
+
875
+ /**
876
+ * 脚本执行超时时间(包含拉取脚本的时间)。单位秒,默认值:30。取值范围:10~1200。
877
+ 注意:此字段可能返回 null,表示取不到有效值。
878
+ */
879
+ Timeout?: number
880
+ }
881
+
882
+ /**
883
+ * ModifyInitNodeScripts返回参数结构体
884
+ */
885
+ export interface ModifyInitNodeScriptsResponse {
886
+ /**
887
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
888
+ */
889
+ RequestId?: string
890
+ }
891
+
854
892
  /**
855
893
  * 管控节点概览。
856
894
  */
@@ -1245,6 +1283,12 @@ export interface QueueConfigOverview {
1245
1283
  * 扩容节点配置信息。
1246
1284
  */
1247
1285
  ExpansionNodeConfigs?: Array<ExpansionNodeConfigOverview>
1286
+
1287
+ /**
1288
+ * 队列中期望的空闲节点数量(包含弹性节点和静态节点)。默认值:0。队列中,处于空闲状态的节点小于此值,集群会扩容弹性节点;处于空闲状态的节点大于此值,集群会缩容弹性节点。
1289
+ 注意:此字段可能返回 null,表示取不到有效值。
1290
+ */
1291
+ DesiredIdleNodeCapacity?: number
1248
1292
  }
1249
1293
 
1250
1294
  /**
@@ -1323,6 +1367,21 @@ export interface ExpansionNodeConfigOverview {
1323
1367
  DataDisks?: Array<DataDisk>
1324
1368
  }
1325
1369
 
1370
+ /**
1371
+ * ModifyInitNodeScripts请求参数结构体
1372
+ */
1373
+ export interface ModifyInitNodeScriptsRequest {
1374
+ /**
1375
+ * 集群ID。
1376
+ */
1377
+ ClusterId: string
1378
+
1379
+ /**
1380
+ * 节点初始化脚本信息列表。
1381
+ */
1382
+ InitNodeScripts?: Array<NodeScript>
1383
+ }
1384
+
1326
1385
  /**
1327
1386
  * GooseFSx存储选项概览信息。
1328
1387
  */