@pulumi/alicloud 3.59.0 → 3.59.1

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/types/output.d.ts CHANGED
@@ -1055,8 +1055,17 @@ export declare namespace adb {
1055
1055
  privileges?: string[];
1056
1056
  }
1057
1057
  interface LakeAccountAccountPrivilegePrivilegeObject {
1058
+ /**
1059
+ * The name of column.
1060
+ */
1058
1061
  column: string;
1062
+ /**
1063
+ * The name of database.
1064
+ */
1059
1065
  database: string;
1066
+ /**
1067
+ * The name of table.
1068
+ */
1060
1069
  table: string;
1061
1070
  }
1062
1071
  }
@@ -1330,8 +1339,23 @@ export declare namespace alb {
1330
1339
  xforwardedForConfigs: outputs.alb.GetListenersListenerXforwardedForConfig[];
1331
1340
  }
1332
1341
  interface GetListenersListenerAccessLogTracingConfig {
1342
+ /**
1343
+ * Xtrace Function. Value: True Or False. Default Value: False.
1344
+ *
1345
+ * > **NOTE:** Only Instances outside the Security Group to Access the Log Switch **accesslogenabled** Open, in Order to Set This Parameter to the **True**.
1346
+ */
1333
1347
  tracingEnabled: boolean;
1348
+ /**
1349
+ * Xtrace Sampling Rate. Value: **1~10000**.
1350
+ *
1351
+ * > **NOTE:** This attribute is valid when **tracingenabled** is **true**.
1352
+ */
1334
1353
  tracingSample: number;
1354
+ /**
1355
+ * Xtrace Type Value Is **Zipkin**.
1356
+ *
1357
+ * > **NOTE:** This attribute is valid when **tracingenabled** is **true**.
1358
+ */
1335
1359
  tracingType: string;
1336
1360
  }
1337
1361
  interface GetListenersListenerAclConfig {
@@ -1383,7 +1407,13 @@ export declare namespace alb {
1383
1407
  serverGroupId: string;
1384
1408
  }
1385
1409
  interface GetListenersListenerQuicConfig {
1410
+ /**
1411
+ * The ID of the QUIC listener to be associated. If QuicUpgradeEnabled is set to true, this parameter is required. Only HTTPS listeners support this parameter.
1412
+ */
1386
1413
  quicListenerId: string;
1414
+ /**
1415
+ * Indicates whether quic upgrade is enabled. Valid values: true and false. Default value: false.
1416
+ */
1387
1417
  quicUpgradeEnabled: boolean;
1388
1418
  }
1389
1419
  interface GetListenersListenerXforwardedForConfig {
@@ -2122,6 +2152,9 @@ export declare namespace alb {
2122
2152
  aclType: string;
2123
2153
  }
2124
2154
  interface ListenerAclConfigAclRelation {
2155
+ /**
2156
+ * Snooping Binding of the Access Policy Group ID List.
2157
+ */
2125
2158
  aclId: string;
2126
2159
  /**
2127
2160
  * The state of the listener. Valid Values: `Running` Or `Stopped`. Valid values: `Running`: The listener is running. `Stopped`: The listener is stopped.
@@ -2145,9 +2178,15 @@ export declare namespace alb {
2145
2178
  type: string;
2146
2179
  }
2147
2180
  interface ListenerDefaultActionForwardGroupConfig {
2181
+ /**
2182
+ * The destination server group to which requests are forwarded. See `serverGroupTuples` below for details.
2183
+ */
2148
2184
  serverGroupTuples: outputs.alb.ListenerDefaultActionForwardGroupConfigServerGroupTuple[];
2149
2185
  }
2150
2186
  interface ListenerDefaultActionForwardGroupConfigServerGroupTuple {
2187
+ /**
2188
+ * The ID of the destination server group to which requests are forwarded.
2189
+ */
2151
2190
  serverGroupId: string;
2152
2191
  }
2153
2192
  interface ListenerQuicConfig {
@@ -2332,63 +2371,159 @@ export declare namespace alb {
2332
2371
  type: string;
2333
2372
  }
2334
2373
  interface RuleRuleActionCorsConfig {
2374
+ /**
2375
+ * Specifies whether credentials can be passed during CORS operations. Valid values: `on`, `off`.
2376
+ */
2335
2377
  allowCredentials?: string;
2378
+ /**
2379
+ * The allowed headers for CORS requests.
2380
+ */
2336
2381
  allowHeaders?: string[];
2382
+ /**
2383
+ * The allowed HTTP methods for CORS requests. Valid values: `GET`, `POST`, `PUT`, `DELETE`, `HEAD`, `OPTIONS`, `PATCH`.
2384
+ */
2337
2385
  allowMethods?: string[];
2386
+ /**
2387
+ * The allowed origins of CORS requests.
2388
+ */
2338
2389
  allowOrigins?: string[];
2390
+ /**
2391
+ * The headers that can be exposed.
2392
+ */
2339
2393
  exposeHeaders?: string[];
2394
+ /**
2395
+ * The maximum cache time of preflight requests in the browser. Unit: seconds. Valid values: `-1` to `172800`.
2396
+ */
2340
2397
  maxAge?: number;
2341
2398
  }
2342
2399
  interface RuleRuleActionFixedResponseConfig {
2400
+ /**
2401
+ * The fixed response. The response cannot exceed 1 KB in size and can contain only ASCII characters.
2402
+ */
2343
2403
  content: string;
2404
+ /**
2405
+ * The format of the fixed response. Valid values: `text/plain`, `text/css`, `text/html`, `application/javascript`, and `application/json`.
2406
+ */
2344
2407
  contentType?: string;
2408
+ /**
2409
+ * The redirect method. Valid values: `301`, `302`, `303`, `307`, and `308`.
2410
+ */
2345
2411
  httpCode?: string;
2346
2412
  }
2347
2413
  interface RuleRuleActionForwardGroupConfig {
2414
+ /**
2415
+ * The configuration of session persistence for server groups. See `serverGroupStickySession` below.
2416
+ */
2348
2417
  serverGroupStickySession: outputs.alb.RuleRuleActionForwardGroupConfigServerGroupStickySession;
2418
+ /**
2419
+ * The destination server group to which requests are forwarded. See `serverGroupTuples` below.
2420
+ */
2349
2421
  serverGroupTuples: outputs.alb.RuleRuleActionForwardGroupConfigServerGroupTuple[];
2350
2422
  }
2351
2423
  interface RuleRuleActionForwardGroupConfigServerGroupStickySession {
2424
+ /**
2425
+ * Whether to enable session persistence.
2426
+ */
2352
2427
  enabled: boolean;
2428
+ /**
2429
+ * The timeout period. Unit: seconds. Valid values: `1` to `86400`. Default value: `1000`.
2430
+ */
2353
2431
  timeout: number;
2354
2432
  }
2355
2433
  interface RuleRuleActionForwardGroupConfigServerGroupTuple {
2434
+ /**
2435
+ * The ID of the destination server group to which requests are forwarded.
2436
+ */
2356
2437
  serverGroupId: string;
2438
+ /**
2439
+ * The Weight of server group. Default value: `100`. **NOTE:** This attribute is required when the number of `serverGroupTuples` is greater than 2.
2440
+ */
2357
2441
  weight?: number;
2358
2442
  }
2359
2443
  interface RuleRuleActionInsertHeaderConfig {
2360
2444
  key?: string;
2361
2445
  value?: string;
2446
+ /**
2447
+ * The value type of the inserted header field. Valid values:
2448
+ * - `UserDefined`: a custom value
2449
+ * - `ReferenceHeader`: uses a field of the user request header.
2450
+ * - `SystemDefined`: a system value.
2451
+ */
2362
2452
  valueType?: string;
2363
2453
  }
2364
2454
  interface RuleRuleActionRedirectConfig {
2455
+ /**
2456
+ * The host name of the destination to which requests are redirected within ALB. Valid values: The host name must be 3 to 128 characters in length, and can contain letters, digits, hyphens (-), periods (.), asterisks (*), and question marks (?). The host name must contain at least one period (.), and cannot start or end with a period (.). The rightmost domain label can contain only letters, asterisks (*) and question marks (?) and cannot contain digits or hyphens (-). Other domain labels cannot start or end with a hyphen (-). You can include asterisks (*) and question marks (?) anywhere in a domain label. Default value: ${host}. You cannot use this value with other characters at the same time.
2457
+ */
2365
2458
  host?: string;
2459
+ /**
2460
+ * The redirect method. Valid values: `301`, `302`, `303`, `307`, and `308`.
2461
+ */
2366
2462
  httpCode?: string;
2463
+ /**
2464
+ * The path to which requests are to be redirected within ALB. Valid values: The path must be 1 to 128 characters in length, and start with a forward slash (/). The path can contain letters, digits, asterisks (*), question marks (?)and the following special characters: $ - _ . + / & ~ @ :. It cannot contain the following special characters: " % # ; ! ( ) [ ] ^ , ”. The path is case-sensitive. Default value: ${path}. This value can be used only once. You can use it with a valid string.
2465
+ */
2367
2466
  path?: string;
2467
+ /**
2468
+ * The port of the destination to which requests are redirected. Valid values: 1 to 63335. Default value: ${port}. You cannot use this value together with other characters at the same time.
2469
+ */
2368
2470
  port?: string;
2471
+ /**
2472
+ * The protocol of the requests to be redirected. Valid values: `HTTP` and `HTTPS`. Default value: `${protocol}`. You cannot use this value together with other characters at the same time. Note HTTPS listeners can redirect only HTTPS requests.
2473
+ */
2369
2474
  protocol?: string;
2475
+ /**
2476
+ * The query string of the request to be redirected within ALB. The query string must be 1 to 128 characters in length, can contain letters and printable characters. It cannot contain the following special characters: # [ ] { } \ | < > &. Default value: ${query}. This value can be used only once. You can use it with a valid string.
2477
+ */
2370
2478
  query?: string;
2371
2479
  }
2372
2480
  interface RuleRuleActionRemoveHeaderConfig {
2373
2481
  key?: string;
2374
2482
  }
2375
2483
  interface RuleRuleActionRewriteConfig {
2484
+ /**
2485
+ * The host name of the destination to which requests are redirected within ALB. Valid values: The host name must be 3 to 128 characters in length, and can contain letters, digits, hyphens (-), periods (.), asterisks (*), and question marks (?). The host name must contain at least one period (.), and cannot start or end with a period (.). The rightmost domain label can contain only letters, asterisks (*) and question marks (?) and cannot contain digits or hyphens (-). Other domain labels cannot start or end with a hyphen (-). You can include asterisks (*) and question marks (?) anywhere in a domain label. Default value: ${host}. You cannot use this value with other characters at the same time.
2486
+ */
2376
2487
  host?: string;
2488
+ /**
2489
+ * The path to which requests are to be redirected within ALB. Valid values: The path must be 1 to 128 characters in length, and start with a forward slash (/). The path can contain letters, digits, asterisks (*), question marks (?)and the following special characters: $ - _ . + / & ~ @ :. It cannot contain the following special characters: " % # ; ! ( ) [ ] ^ , ”. The path is case-sensitive. Default value: ${path}. This value can be used only once. You can use it with a valid string.
2490
+ */
2377
2491
  path?: string;
2492
+ /**
2493
+ * The query string of the request to be redirected within ALB. The query string must be 1 to 128 characters in length, can contain letters and printable characters. It cannot contain the following special characters: # [ ] { } \ | < > &. Default value: ${query}. This value can be used only once. You can use it with a valid string.
2494
+ */
2378
2495
  query?: string;
2379
2496
  }
2380
2497
  interface RuleRuleActionTrafficLimitConfig {
2498
+ /**
2499
+ * The number of requests per second for a single IP address. Value range: 1~1000000. Note: If the QPS parameter is also configured, the value of the PerIpQps parameter must be smaller than the value of the QPS parameter.
2500
+ */
2381
2501
  perIpQps?: number;
2502
+ /**
2503
+ * The Number of requests per second. Valid values: `1` to `100000`.
2504
+ */
2382
2505
  qps?: number;
2383
2506
  }
2384
2507
  interface RuleRuleActionTrafficMirrorConfig {
2508
+ /**
2509
+ * The Traffic is mirrored to the server group. See `mirrorGroupConfig` below.
2510
+ */
2385
2511
  mirrorGroupConfig?: outputs.alb.RuleRuleActionTrafficMirrorConfigMirrorGroupConfig;
2512
+ /**
2513
+ * The Mirror target type.
2514
+ */
2386
2515
  targetType?: string;
2387
2516
  }
2388
2517
  interface RuleRuleActionTrafficMirrorConfigMirrorGroupConfig {
2518
+ /**
2519
+ * The destination server group to which requests are forwarded. See `serverGroupTuples` below.
2520
+ */
2389
2521
  serverGroupTuples?: outputs.alb.RuleRuleActionTrafficMirrorConfigMirrorGroupConfigServerGroupTuple[];
2390
2522
  }
2391
2523
  interface RuleRuleActionTrafficMirrorConfigMirrorGroupConfigServerGroupTuple {
2524
+ /**
2525
+ * The ID of the destination server group to which requests are forwarded.
2526
+ */
2392
2527
  serverGroupId?: string;
2393
2528
  }
2394
2529
  interface RuleRuleCondition {
@@ -2443,6 +2578,9 @@ export declare namespace alb {
2443
2578
  type: string;
2444
2579
  }
2445
2580
  interface RuleRuleConditionCookieConfig {
2581
+ /**
2582
+ * Add one or more IP addresses or IP address segments. You can add up to 5 forwarding rules in a SourceIp.
2583
+ */
2446
2584
  values?: outputs.alb.RuleRuleConditionCookieConfigValue[];
2447
2585
  }
2448
2586
  interface RuleRuleConditionCookieConfigValue {
@@ -2451,18 +2589,33 @@ export declare namespace alb {
2451
2589
  }
2452
2590
  interface RuleRuleConditionHeaderConfig {
2453
2591
  key?: string;
2592
+ /**
2593
+ * Add one or more IP addresses or IP address segments. You can add up to 5 forwarding rules in a SourceIp.
2594
+ */
2454
2595
  values?: string[];
2455
2596
  }
2456
2597
  interface RuleRuleConditionHostConfig {
2598
+ /**
2599
+ * Add one or more IP addresses or IP address segments. You can add up to 5 forwarding rules in a SourceIp.
2600
+ */
2457
2601
  values?: string[];
2458
2602
  }
2459
2603
  interface RuleRuleConditionMethodConfig {
2604
+ /**
2605
+ * Add one or more IP addresses or IP address segments. You can add up to 5 forwarding rules in a SourceIp.
2606
+ */
2460
2607
  values?: string[];
2461
2608
  }
2462
2609
  interface RuleRuleConditionPathConfig {
2610
+ /**
2611
+ * Add one or more IP addresses or IP address segments. You can add up to 5 forwarding rules in a SourceIp.
2612
+ */
2463
2613
  values?: string[];
2464
2614
  }
2465
2615
  interface RuleRuleConditionQueryStringConfig {
2616
+ /**
2617
+ * Add one or more IP addresses or IP address segments. You can add up to 5 forwarding rules in a SourceIp.
2618
+ */
2466
2619
  values?: outputs.alb.RuleRuleConditionQueryStringConfigValue[];
2467
2620
  }
2468
2621
  interface RuleRuleConditionQueryStringConfigValue {
@@ -2471,12 +2624,21 @@ export declare namespace alb {
2471
2624
  }
2472
2625
  interface RuleRuleConditionResponseHeaderConfig {
2473
2626
  key?: string;
2627
+ /**
2628
+ * Add one or more IP addresses or IP address segments. You can add up to 5 forwarding rules in a SourceIp.
2629
+ */
2474
2630
  values?: string[];
2475
2631
  }
2476
2632
  interface RuleRuleConditionResponseStatusCodeConfig {
2633
+ /**
2634
+ * Add one or more IP addresses or IP address segments. You can add up to 5 forwarding rules in a SourceIp.
2635
+ */
2477
2636
  values?: string[];
2478
2637
  }
2479
2638
  interface RuleRuleConditionSourceIpConfig {
2639
+ /**
2640
+ * Add one or more IP addresses or IP address segments. You can add up to 5 forwarding rules in a SourceIp.
2641
+ */
2480
2642
  values?: string[];
2481
2643
  }
2482
2644
  interface ServerGroupHealthCheckConfig {
@@ -3262,11 +3424,33 @@ export declare namespace arms {
3262
3424
  labelMatchExpressionGroups: outputs.arms.DispatchRuleLabelMatchExpressionGridLabelMatchExpressionGroup[];
3263
3425
  }
3264
3426
  interface DispatchRuleLabelMatchExpressionGridLabelMatchExpressionGroup {
3427
+ /**
3428
+ * Sets the dispatch rule. See `labelMatchExpressions` below.
3429
+ */
3265
3430
  labelMatchExpressions: outputs.arms.DispatchRuleLabelMatchExpressionGridLabelMatchExpressionGroupLabelMatchExpression[];
3266
3431
  }
3267
3432
  interface DispatchRuleLabelMatchExpressionGridLabelMatchExpressionGroupLabelMatchExpression {
3433
+ /**
3434
+ * The key of the tag of the dispatch rule. Valid values:
3435
+ * * _aliyun_arms_userid: user ID
3436
+ * * _aliyun_arms_involvedObject_kind: type of the associated object
3437
+ * * _aliyun_arms_involvedObject_id: ID of the associated object
3438
+ * * _aliyun_arms_involvedObject_name: name of the associated object
3439
+ * * _aliyun_arms_alert_name: alert name
3440
+ * * _aliyun_arms_alert_rule_id: alert rule ID
3441
+ * * _aliyun_arms_alert_type: alert type
3442
+ * * _aliyun_arms_alert_level: alert severity
3443
+ */
3268
3444
  key: string;
3445
+ /**
3446
+ * The operator used in the dispatch rule. Valid values:
3447
+ * * eq: equals to.
3448
+ * * re: matches a regular expression.
3449
+ */
3269
3450
  operator: string;
3451
+ /**
3452
+ * The value of the tag.
3453
+ */
3270
3454
  value: string;
3271
3455
  }
3272
3456
  interface DispatchRuleNotifyRule {
@@ -3280,8 +3464,17 @@ export declare namespace arms {
3280
3464
  notifyObjects: outputs.arms.DispatchRuleNotifyRuleNotifyObject[];
3281
3465
  }
3282
3466
  interface DispatchRuleNotifyRuleNotifyObject {
3467
+ /**
3468
+ * The name of the contact or contact group.
3469
+ */
3283
3470
  name: string;
3471
+ /**
3472
+ * The ID of the contact or contact group.
3473
+ */
3284
3474
  notifyObjectId: string;
3475
+ /**
3476
+ * The type of the alert contact. Valid values: ARMS_CONTACT: contact. ARMS_CONTACT_GROUP: contact group.
3477
+ */
3285
3478
  notifyType: string;
3286
3479
  }
3287
3480
  interface GetAlertContactGroupsGroup {
@@ -3421,6 +3614,9 @@ export declare namespace arms {
3421
3614
  value: string;
3422
3615
  }
3423
3616
  interface GetDispatchRulesRuleNotifyRule {
3617
+ /**
3618
+ * The notification method.
3619
+ */
3424
3620
  notifyChannels: string[];
3425
3621
  /**
3426
3622
  * Sets the notification object.
@@ -3835,12 +4031,29 @@ export declare namespace arms {
3835
4031
  xtraceRegion?: string;
3836
4032
  }
3837
4033
  interface SyntheticTaskCommonSettingCustomHost {
4034
+ /**
4035
+ * The host list. See `hosts` below.
4036
+ */
3838
4037
  hosts: outputs.arms.SyntheticTaskCommonSettingCustomHostHost[];
4038
+ /**
4039
+ * Selection method:
4040
+ * - 0: Random
4041
+ * - 1: Polling.
4042
+ */
3839
4043
  selectType: number;
3840
4044
  }
3841
4045
  interface SyntheticTaskCommonSettingCustomHostHost {
4046
+ /**
4047
+ * Domain Name.
4048
+ */
3842
4049
  domain: string;
4050
+ /**
4051
+ * IpType.
4052
+ */
3843
4053
  ipType: number;
4054
+ /**
4055
+ * The IP list.
4056
+ */
3844
4057
  ips: string[];
3845
4058
  }
3846
4059
  interface SyntheticTaskCustomPeriod {
@@ -3898,100 +4111,342 @@ export declare namespace arms {
3898
4111
  website?: outputs.arms.SyntheticTaskMonitorConfWebsite;
3899
4112
  }
3900
4113
  interface SyntheticTaskMonitorConfApiHttp {
4114
+ /**
4115
+ * Connection timeout, in ms. Default 5000. Optional range: 1000-300000ms.
4116
+ */
3901
4117
  connectTimeout?: number;
4118
+ /**
4119
+ * HTTP method, GET or POST.
4120
+ */
3902
4121
  method?: string;
4122
+ /**
4123
+ * HTTP request body. See `requestBody` below.
4124
+ */
3903
4125
  requestBody?: outputs.arms.SyntheticTaskMonitorConfApiHttpRequestBody;
4126
+ /**
4127
+ * HTTP request header.
4128
+ */
3904
4129
  requestHeaders?: {
3905
4130
  [key: string]: any;
3906
4131
  };
4132
+ /**
4133
+ * The target URL.
4134
+ */
3907
4135
  targetUrl: string;
4136
+ /**
4137
+ * TCP dial test timeout. The unit is milliseconds (ms), the minimum value is 1000, the maximum value is 300000, and the default value is 20000.
4138
+ */
3908
4139
  timeout?: number;
3909
4140
  }
3910
4141
  interface SyntheticTaskMonitorConfApiHttpRequestBody {
4142
+ /**
4143
+ * The request body content, in JSON string format. When the type is text/plain,application/json,application/xml,text/html, the content can be converted to a JSON string.
4144
+ */
3911
4145
  content?: string;
3912
4146
  type?: string;
3913
4147
  }
3914
4148
  interface SyntheticTaskMonitorConfFileDownload {
4149
+ /**
4150
+ * Connection timeout time, in ms. Default 5000. Optional range: 1000-120000ms.
4151
+ */
3915
4152
  connectionTimeout?: number;
4153
+ /**
4154
+ * Custom header, in JSON Map format.
4155
+ */
3916
4156
  customHeaderContent?: {
3917
4157
  [key: string]: any;
3918
4158
  };
4159
+ /**
4160
+ * Download the kernel.
4161
+ * - 1:curl
4162
+ * - 0:WinInet
4163
+ * Default 1.
4164
+ */
3919
4165
  downloadKernel?: number;
4166
+ /**
4167
+ * Ignore CA Certificate authorization error 0: Do not ignore, 1: ignore, default 1.
4168
+ */
3920
4169
  ignoreCertificateAuthError?: number;
4170
+ /**
4171
+ * Ignore certificate revocation error 0: Do not ignore, 1: ignore, default 1.
4172
+ */
3921
4173
  ignoreCertificateCanceledError?: number;
4174
+ /**
4175
+ * Ignore certificate expiration error 0: not ignored, 1: Ignored, default 1.
4176
+ */
3922
4177
  ignoreCertificateOutOfDateError?: number;
4178
+ /**
4179
+ * The certificate status error is ignored. 0: Do not ignore, 1: IGNORE. The default value is 1.
4180
+ */
3923
4181
  ignoreCertificateStatusError?: number;
4182
+ /**
4183
+ * The certificate cannot be trusted and ignored. 0: Do not ignore, 1: IGNORE. The default value is 1.
4184
+ */
3924
4185
  ignoreCertificateUntrustworthyError?: number;
4186
+ /**
4187
+ * Ignore certificate usage error 0: Do not ignore, 1: ignore, default 1.
4188
+ */
3925
4189
  ignoreCertificateUsingError?: number;
4190
+ /**
4191
+ * Invalid host error ignored, 0: not ignored, 1: Ignored, default 1.
4192
+ */
3926
4193
  ignoreInvalidHostError?: number;
4194
+ /**
4195
+ * Monitoring timeout, in ms. Not required, 20000 by default.
4196
+ */
3927
4197
  monitorTimeout?: number;
4198
+ /**
4199
+ * Quick agreement
4200
+ * - 1:http1
4201
+ * - 2:http2
4202
+ * - 3:http3
4203
+ * Default 1.
4204
+ */
3928
4205
  quickProtocol?: number;
4206
+ /**
4207
+ * When redirection occurs, whether to continue browsing, 0-No, 1-Yes, the default is 1.
4208
+ */
3929
4209
  redirection?: number;
4210
+ /**
4211
+ * The target URL.
4212
+ */
3930
4213
  targetUrl: string;
4214
+ /**
4215
+ * The transmission size, in KB. The default value is 2048KB. The transmission size of the downloaded file must be between 1 and 20480KB.
4216
+ */
3931
4217
  transmissionSize?: number;
4218
+ /**
4219
+ * Verify keywords.
4220
+ */
3932
4221
  validateKeywords?: string;
4222
+ /**
4223
+ * The verification method.
4224
+ * - 0: Do not validate
4225
+ * - 1: Validation string
4226
+ * - 2:MD5 validation.
4227
+ */
3933
4228
  verifyWay?: number;
4229
+ /**
4230
+ * DNS hijack whitelist. Match rules support IP, IP wildcard, subnet mask, and CNAME. Multiple match rules can be filled in. Multiple match rules are separated by vertical bars (|). For example, www.aliyun.com:203.0.3.55 | 203.3.44.67 indicates that all other IP addresses under the www.aliyun.com domain except 203.0.3.55 and 203.3.44.67 are hijacked.
4231
+ */
3934
4232
  whiteList?: string;
3935
4233
  }
3936
4234
  interface SyntheticTaskMonitorConfNetDns {
4235
+ /**
4236
+ * The IP address type of the DNS server.
4237
+ * - 0 (default):ipv4
4238
+ * - 1:ipv6
4239
+ * 2: Automatic.
4240
+ */
3937
4241
  dnsServerIpType?: number;
4242
+ /**
4243
+ * The IP address of the NS server. The default value is 114.114.114.114.
4244
+ */
3938
4245
  nsServer?: string;
4246
+ /**
4247
+ * DNS query method.
4248
+ * - 0 (default): Recursive
4249
+ * - 1: Iteration.
4250
+ */
3939
4251
  queryMethod?: number;
4252
+ /**
4253
+ * The target URL.
4254
+ */
3940
4255
  targetUrl: string;
4256
+ /**
4257
+ * TCP dial test timeout. The unit is milliseconds (ms), the minimum value is 1000, the maximum value is 300000, and the default value is 20000.
4258
+ */
3941
4259
  timeout?: number;
3942
4260
  }
3943
4261
  interface SyntheticTaskMonitorConfNetIcmp {
4262
+ /**
4263
+ * The interval between TCP connections. The unit is milliseconds (ms), the minimum value is 200, the maximum value is 10000, and the default value is 200.
4264
+ */
3944
4265
  interval?: number;
4266
+ /**
4267
+ * Number of ICMP(Ping) packets sent. The minimum value is 1, the maximum value is 50, and the default is 4.
4268
+ */
3945
4269
  packageNum?: number;
4270
+ /**
4271
+ * The size of the sent ICMP(Ping) packet. The unit is byte. The ICMP(PING) packet size is limited to 32, 64, 128, 256, 512, 1024, 1080, and 1450.
4272
+ */
3946
4273
  packageSize?: number;
4274
+ /**
4275
+ * Whether to split ICMP(Ping) packets. The default is true.
4276
+ */
3947
4277
  splitPackage?: boolean;
4278
+ /**
4279
+ * The target URL.
4280
+ */
3948
4281
  targetUrl: string;
4282
+ /**
4283
+ * TCP dial test timeout. The unit is milliseconds (ms), the minimum value is 1000, the maximum value is 300000, and the default value is 20000.
4284
+ */
3949
4285
  timeout?: number;
4286
+ /**
4287
+ * Whether to enable tracert. The default is true.
4288
+ */
3950
4289
  tracertEnable?: boolean;
4290
+ /**
4291
+ * The maximum number of hops for tracert. The minimum value is 1, the maximum value is 128, and the default value is 20.
4292
+ */
3951
4293
  tracertNumMax?: number;
4294
+ /**
4295
+ * The time-out of tracert. The unit is milliseconds (ms), the minimum value is 1000, the maximum value is 300000, and the default value is 60000.
4296
+ */
3952
4297
  tracertTimeout?: number;
3953
4298
  }
3954
4299
  interface SyntheticTaskMonitorConfNetTcp {
4300
+ /**
4301
+ * The number of TCP connections established. The minimum value is 1, the maximum value is 16, and the default is 4.
4302
+ */
3955
4303
  connectTimes?: number;
4304
+ /**
4305
+ * The interval between TCP connections. The unit is milliseconds (ms), the minimum value is 200, the maximum value is 10000, and the default value is 200.
4306
+ */
3956
4307
  interval?: number;
4308
+ /**
4309
+ * The target URL.
4310
+ */
3957
4311
  targetUrl: string;
4312
+ /**
4313
+ * TCP dial test timeout. The unit is milliseconds (ms), the minimum value is 1000, the maximum value is 300000, and the default value is 20000.
4314
+ */
3958
4315
  timeout?: number;
4316
+ /**
4317
+ * Whether to enable tracert. The default is true.
4318
+ */
3959
4319
  tracertEnable?: boolean;
4320
+ /**
4321
+ * The maximum number of hops for tracert. The minimum value is 1, the maximum value is 128, and the default value is 20.
4322
+ */
3960
4323
  tracertNumMax?: number;
4324
+ /**
4325
+ * The time-out of tracert. The unit is milliseconds (ms), the minimum value is 1000, the maximum value is 300000, and the default value is 60000.
4326
+ */
3961
4327
  tracertTimeout?: number;
3962
4328
  }
3963
4329
  interface SyntheticTaskMonitorConfStream {
4330
+ /**
4331
+ * Custom header, in JSON Map format.
4332
+ */
3964
4333
  customHeaderContent?: {
3965
4334
  [key: string]: any;
3966
4335
  };
4336
+ /**
4337
+ * Player, do not pass the default 12.
4338
+ * - 12:VLC
4339
+ * - 2:FlashPlayer.
4340
+ */
3967
4341
  playerType?: number;
4342
+ /**
4343
+ * Resource address type:
4344
+ * - 1: Resource address.
4345
+ * - 0: page address, not 0 by default.
4346
+ */
3968
4347
  streamAddressType?: number;
4348
+ /**
4349
+ * Monitoring duration, in seconds, up to 60s, not 60 by default.
4350
+ */
3969
4351
  streamMonitorTimeout?: number;
4352
+ /**
4353
+ * Audio and video flags: 0-video, 1-audio.
4354
+ */
3970
4355
  streamType?: number;
4356
+ /**
4357
+ * The target URL.
4358
+ */
3971
4359
  targetUrl?: string;
4360
+ /**
4361
+ * DNS hijack whitelist. Match rules support IP, IP wildcard, subnet mask, and CNAME. Multiple match rules can be filled in. Multiple match rules are separated by vertical bars (|). For example, www.aliyun.com:203.0.3.55 | 203.3.44.67 indicates that all other IP addresses under the www.aliyun.com domain except 203.0.3.55 and 203.3.44.67 are hijacked.
4362
+ */
3972
4363
  whiteList?: string;
3973
4364
  }
3974
4365
  interface SyntheticTaskMonitorConfWebsite {
4366
+ /**
4367
+ * Whether to support automatic scrolling screen, loading page.
4368
+ * - 0 (default): No
4369
+ * 1: Yes.
4370
+ */
3975
4371
  automaticScrolling?: number;
4372
+ /**
4373
+ * Custom header.
4374
+ * - 0 (default): Off
4375
+ * - 1: Modify the first package
4376
+ * - 2: Modify all packages.
4377
+ */
3976
4378
  customHeader?: number;
4379
+ /**
4380
+ * Custom header, in JSON Map format.
4381
+ */
3977
4382
  customHeaderContent?: {
3978
4383
  [key: string]: any;
3979
4384
  };
4385
+ /**
4386
+ * Whether to disable caching.
4387
+ * - 0: not disabled
4388
+ * - 1 (default): Disabled.
4389
+ */
3980
4390
  disableCache?: number;
4391
+ /**
4392
+ * The Accept-Encoding field is used to determine whether to Accept compressed files. 0-do not disable, 1-disable, the default is 0.
4393
+ */
3981
4394
  disableCompression?: number;
4395
+ /**
4396
+ * When a domain name (such as www.aliyun.com) is resolved, if the resolved IP address or CNAME is not in the DNS hijacking white list, the user will fail to access or return a target IP address that is not Aliyun. If the IP or CNAME in the resolution result is in the DNS white list, it will be determined that DNS hijacking has not occurred. Fill in the format: Domain name: matching rules. Match rules support IP, IP wildcard, subnet mask, and CNAME. Multiple match rules can be filled in. Multiple match rules are separated by vertical bars (|). For example, www.aliyun.com:203.0.3.55 | 203.3.44.67 indicates that all other IP addresses under the www.aliyun.com domain except 203.0.3.55 and 203.3.44.67 are hijacked.
4397
+ */
3982
4398
  dnsHijackWhitelist?: string;
4399
+ /**
4400
+ * If an element configured in the element blacklist appears during page loading, the element is not requested to be loaded.
4401
+ */
3983
4402
  elementBlacklist?: string;
4403
+ /**
4404
+ * Whether to filter invalid IP parameters. 0: filter, 1: do not filter. The default value is 0.
4405
+ */
3984
4406
  filterInvalidIp?: number;
4407
+ /**
4408
+ * Identify elements: Set the total number of elements on the Browse page.
4409
+ */
3985
4410
  flowHijackJumpTimes?: number;
4411
+ /**
4412
+ * Hijacking ID: Set the matching key information. Enter the hijacking keyword or key element, with an asterisk (*) allowed.
4413
+ */
3986
4414
  flowHijackLogo?: string;
4415
+ /**
4416
+ * Whether to ignore certificate errors during certificate verification in SSL Handshake and continue browsing. 0-do not ignore, 1-ignore. The default value is 1.
4417
+ */
3987
4418
  ignoreCertificateError?: number;
4419
+ /**
4420
+ * Monitoring timeout, in ms. Not required, 20000 by default.
4421
+ */
3988
4422
  monitorTimeout?: number;
4423
+ /**
4424
+ * Monitoring the page appears to be tampered with elements other than the domain settings that belong to the page. Common manifestations are pop-up advertisements, floating advertisements, jumps, etc. Fill in the format: Domain name: Element. You can fill multiple elements separated by a vertical bar (|). For example, www.aliyun.com:|/cc/bb/a.gif |/vv/bb/cc.jpg indicates that all the other elements of the www.aliyun.com domain name except the basic document,/cc/bb/a.gif, and/vv/bb/cc.jpg are tampered.
4425
+ */
3989
4426
  pageTamper?: string;
4427
+ /**
4428
+ * When redirection occurs, whether to continue browsing, 0-No, 1-Yes, the default is 1.
4429
+ */
3990
4430
  redirection?: number;
4431
+ /**
4432
+ * The slow element threshold, in ms, is 5000 by default and can be selected from 1 to 300000ms.
4433
+ */
3991
4434
  slowElementThreshold?: number;
4435
+ /**
4436
+ * The target URL.
4437
+ */
3992
4438
  targetUrl: string;
4439
+ /**
4440
+ * The verification string is an arbitrary string in the source code of the monitoring page. If the source code returned by the client contains any of the blacklisted strings, 650 error is returned. Multiple strings are separated by a vertical bar (|).
4441
+ */
3993
4442
  verifyStringBlacklist?: string;
4443
+ /**
4444
+ * The verification string is an arbitrary string in the source code of the monitoring page. The source code returned by the client must contain all the strings in the whitelist. Otherwise, 650 error is returned. Multiple strings are separated by a vertical bar (|).
4445
+ */
3994
4446
  verifyStringWhitelist?: string;
4447
+ /**
4448
+ * The maximum waiting time, in ms, is 5000 by default and can be selected from 5000 ms to 300000ms.
4449
+ */
3995
4450
  waitCompletionTime?: number;
3996
4451
  }
3997
4452
  }
@@ -4398,8 +4853,17 @@ export declare namespace bp {
4398
4853
  topoUrl: string;
4399
4854
  }
4400
4855
  interface StudioApplicationInstance {
4856
+ /**
4857
+ * The id of the instance.
4858
+ */
4401
4859
  id?: string;
4860
+ /**
4861
+ * The name of the instance.
4862
+ */
4402
4863
  nodeName?: string;
4864
+ /**
4865
+ * The type of the instance.
4866
+ */
4403
4867
  nodeType?: string;
4404
4868
  }
4405
4869
  }
@@ -4679,6 +5143,9 @@ export declare namespace cas {
4679
5143
  * The cert's Issuer.
4680
5144
  */
4681
5145
  issuer: string;
5146
+ /**
5147
+ * The cert's Keye.
5148
+ */
4682
5149
  key: string;
4683
5150
  /**
4684
5151
  * @deprecated Field 'name' has been deprecated from provider version 1.129.0 and it will be removed in the future version. Please use the new attribute 'certificate_name' instead.
@@ -5035,6 +5502,9 @@ export declare namespace cddc {
5035
5502
  placeHolder: string;
5036
5503
  }
5037
5504
  interface GetDedicatedHostGroupsGroupZoneIdList {
5505
+ /**
5506
+ * The ZoneIDList of the Dedicated Host Group.
5507
+ */
5038
5508
  zoneIdLists: string[];
5039
5509
  }
5040
5510
  interface GetDedicatedHostsHost {
@@ -6612,7 +7082,13 @@ export declare namespace cfg {
6612
7082
  managedRuleIdentifier: string;
6613
7083
  }
6614
7084
  interface AggregateCompliancePackConfigRuleConfigRuleParameter {
7085
+ /**
7086
+ * The Parameter Name.
7087
+ */
6615
7088
  parameterName?: string;
7089
+ /**
7090
+ * The Parameter Value.
7091
+ */
6616
7092
  parameterValue?: string;
6617
7093
  }
6618
7094
  interface AggregateCompliancePackConfigRuleId {
@@ -6646,7 +7122,13 @@ export declare namespace cfg {
6646
7122
  managedRuleIdentifier: string;
6647
7123
  }
6648
7124
  interface CompliancePackConfigRuleConfigRuleParameter {
7125
+ /**
7126
+ * The parameter name.
7127
+ */
6649
7128
  parameterName?: string;
7129
+ /**
7130
+ * The parameter value.
7131
+ */
6650
7132
  parameterValue?: string;
6651
7133
  }
6652
7134
  interface CompliancePackConfigRuleId {
@@ -7356,6 +7838,9 @@ export declare namespace clickhouse {
7356
7838
  * Instance family values include: Basic: Basic edition; HighAvailability: high availability edition.
7357
7839
  */
7358
7840
  category: string;
7841
+ /**
7842
+ * The Commodity Code of the DBCluster.
7843
+ */
7359
7844
  commodityCode: string;
7360
7845
  /**
7361
7846
  * Connection string.
@@ -7719,11 +8204,23 @@ export declare namespace cloudfirewall {
7719
8204
  vpcName: string;
7720
8205
  }
7721
8206
  interface FirewallVpcFirewallLocalVpcLocalVpcCidrTableList {
8207
+ /**
8208
+ * The list of route entries of the local VPC. See `localRouteEntryList` below.
8209
+ */
7722
8210
  localRouteEntryLists: outputs.cloudfirewall.FirewallVpcFirewallLocalVpcLocalVpcCidrTableListLocalRouteEntryList[];
8211
+ /**
8212
+ * The ID of the route table of the local VPC.
8213
+ */
7723
8214
  localRouteTableId: string;
7724
8215
  }
7725
8216
  interface FirewallVpcFirewallLocalVpcLocalVpcCidrTableListLocalRouteEntryList {
8217
+ /**
8218
+ * The target network segment of the local VPC.
8219
+ */
7726
8220
  localDestinationCidr: string;
8221
+ /**
8222
+ * The ID of the next-hop instance in the local VPC.
8223
+ */
7727
8224
  localNextHopInstanceId: string;
7728
8225
  }
7729
8226
  interface FirewallVpcFirewallPeerVpc {
@@ -7757,11 +8254,23 @@ export declare namespace cloudfirewall {
7757
8254
  vpcName: string;
7758
8255
  }
7759
8256
  interface FirewallVpcFirewallPeerVpcPeerVpcCidrTableList {
8257
+ /**
8258
+ * Peer VPC route entry list information. See `peerRouteEntryList` below.
8259
+ */
7760
8260
  peerRouteEntryLists: outputs.cloudfirewall.FirewallVpcFirewallPeerVpcPeerVpcCidrTableListPeerRouteEntryList[];
8261
+ /**
8262
+ * The ID of the route table of the peer VPC.
8263
+ */
7761
8264
  peerRouteTableId: string;
7762
8265
  }
7763
8266
  interface FirewallVpcFirewallPeerVpcPeerVpcCidrTableListPeerRouteEntryList {
8267
+ /**
8268
+ * The target network segment of the peer VPC.
8269
+ */
7764
8270
  peerDestinationCidr: string;
8271
+ /**
8272
+ * The ID of the next-hop instance in the peer VPC.
8273
+ */
7765
8274
  peerNextHopInstanceId: string;
7766
8275
  }
7767
8276
  interface GetAddressBooksBook {
@@ -8388,9 +8897,21 @@ export declare namespace cloudmonitor {
8388
8897
  webhook?: string;
8389
8898
  }
8390
8899
  interface ServiceGroupMonitoringAgentProcessAlertConfigTargetList {
8900
+ /**
8901
+ * The Alibaba Cloud Resource Name (ARN) of the resource.
8902
+ */
8391
8903
  arn?: string;
8904
+ /**
8905
+ * The parameters of the alert callback. Specify the parameters in the JSON format.
8906
+ */
8392
8907
  jsonParams?: string;
8908
+ /**
8909
+ * The alert level. Valid values: `CRITICAL`, `WARN`, `INFO`.
8910
+ */
8393
8911
  level?: string;
8912
+ /**
8913
+ * The ID of the resource for which alerts are triggered.
8914
+ */
8394
8915
  targetListId?: string;
8395
8916
  }
8396
8917
  interface ServiceGroupMonitoringAgentProcessMatchExpress {
@@ -10143,8 +10664,17 @@ export declare namespace cms {
10143
10664
  }
10144
10665
  interface GetHybridMonitorSlsTasksTaskSlsProcessConfig {
10145
10666
  expresses: outputs.cms.GetHybridMonitorSlsTasksTaskSlsProcessConfigExpress[];
10667
+ /**
10668
+ * The conditions that are used to filter logs imported from Log Service.
10669
+ */
10146
10670
  filters: outputs.cms.GetHybridMonitorSlsTasksTaskSlsProcessConfigFilter[];
10671
+ /**
10672
+ * The dimension based on which data is aggregated. This parameter is equivalent to the GROUP BY clause in SQL.
10673
+ */
10147
10674
  groupBies: outputs.cms.GetHybridMonitorSlsTasksTaskSlsProcessConfigGroupBy[];
10675
+ /**
10676
+ * The method that is used to aggregate logs imported from Log Service.
10677
+ */
10148
10678
  statistics: outputs.cms.GetHybridMonitorSlsTasksTaskSlsProcessConfigStatistic[];
10149
10679
  }
10150
10680
  interface GetHybridMonitorSlsTasksTaskSlsProcessConfigExpress {
@@ -10152,10 +10682,19 @@ export declare namespace cms {
10152
10682
  express: string;
10153
10683
  }
10154
10684
  interface GetHybridMonitorSlsTasksTaskSlsProcessConfigFilter {
10685
+ /**
10686
+ * The conditions that are used to filter logs imported from Log Service.
10687
+ */
10155
10688
  filters: outputs.cms.GetHybridMonitorSlsTasksTaskSlsProcessConfigFilterFilter[];
10689
+ /**
10690
+ * The relationship between multiple filter conditions.
10691
+ */
10156
10692
  relation: string;
10157
10693
  }
10158
10694
  interface GetHybridMonitorSlsTasksTaskSlsProcessConfigFilterFilter {
10695
+ /**
10696
+ * The method that is used to filter logs imported from Log Service.
10697
+ */
10159
10698
  operator: string;
10160
10699
  slsKeyName: string;
10161
10700
  value: string;
@@ -10167,7 +10706,13 @@ export declare namespace cms {
10167
10706
  interface GetHybridMonitorSlsTasksTaskSlsProcessConfigStatistic {
10168
10707
  alias: string;
10169
10708
  function: string;
10709
+ /**
10710
+ * The value of the function that is used to aggregate logs imported from Log Service.
10711
+ */
10170
10712
  parameterOne: string;
10713
+ /**
10714
+ * The value of the function that is used to aggregate logs imported from Log Service.
10715
+ */
10171
10716
  parameterTwo: string;
10172
10717
  slsKeyName: string;
10173
10718
  }
@@ -10538,21 +11083,57 @@ export declare namespace cms {
10538
11083
  warn?: outputs.cms.GroupMetricRuleEscalationsWarn;
10539
11084
  }
10540
11085
  interface GroupMetricRuleEscalationsCritical {
11086
+ /**
11087
+ * The comparison operator of the threshold for warn-level alerts.
11088
+ */
10541
11089
  comparisonOperator?: string;
11090
+ /**
11091
+ * The statistical aggregation method for warn-level alerts.
11092
+ */
10542
11093
  statistics?: string;
11094
+ /**
11095
+ * The threshold for warn-level alerts.
11096
+ */
10543
11097
  threshold?: string;
11098
+ /**
11099
+ * The consecutive number of times for which the metric value is measured before a warn-level alert is triggered.
11100
+ */
10544
11101
  times?: number;
10545
11102
  }
10546
11103
  interface GroupMetricRuleEscalationsInfo {
11104
+ /**
11105
+ * The comparison operator of the threshold for warn-level alerts.
11106
+ */
10547
11107
  comparisonOperator?: string;
11108
+ /**
11109
+ * The statistical aggregation method for warn-level alerts.
11110
+ */
10548
11111
  statistics?: string;
11112
+ /**
11113
+ * The threshold for warn-level alerts.
11114
+ */
10549
11115
  threshold?: string;
11116
+ /**
11117
+ * The consecutive number of times for which the metric value is measured before a warn-level alert is triggered.
11118
+ */
10550
11119
  times?: number;
10551
11120
  }
10552
11121
  interface GroupMetricRuleEscalationsWarn {
11122
+ /**
11123
+ * The comparison operator of the threshold for warn-level alerts.
11124
+ */
10553
11125
  comparisonOperator?: string;
11126
+ /**
11127
+ * The statistical aggregation method for warn-level alerts.
11128
+ */
10554
11129
  statistics?: string;
11130
+ /**
11131
+ * The threshold for warn-level alerts.
11132
+ */
10555
11133
  threshold?: string;
11134
+ /**
11135
+ * The consecutive number of times for which the metric value is measured before a warn-level alert is triggered.
11136
+ */
10556
11137
  times?: number;
10557
11138
  }
10558
11139
  interface GroupMetricRuleTarget {
@@ -10603,27 +11184,68 @@ export declare namespace cms {
10603
11184
  statistics?: outputs.cms.HybridMonitorSlsTaskSlsProcessConfigStatistic[];
10604
11185
  }
10605
11186
  interface HybridMonitorSlsTaskSlsProcessConfigExpress {
11187
+ /**
11188
+ * The alias of the extended field that specifies the result of basic operations that are performed on aggregation results.
11189
+ */
10606
11190
  alias?: string;
11191
+ /**
11192
+ * The extended field that specifies the result of basic operations that are performed on aggregation results.
11193
+ */
10607
11194
  express?: string;
10608
11195
  }
10609
11196
  interface HybridMonitorSlsTaskSlsProcessConfigFilter {
11197
+ /**
11198
+ * The conditions that are used to filter logs imported from Log Service. See `filters` below.
11199
+ */
10610
11200
  filters?: outputs.cms.HybridMonitorSlsTaskSlsProcessConfigFilterFilter[];
11201
+ /**
11202
+ * The relationship between multiple filter conditions. Valid values: `and`(default value), `or`.
11203
+ */
10611
11204
  relation?: string;
10612
11205
  }
10613
11206
  interface HybridMonitorSlsTaskSlsProcessConfigFilterFilter {
11207
+ /**
11208
+ * The method that is used to filter logs imported from Log Service. Valid values: `>`, `>=`, `=`, `<=`, `<`, `!=`, `contain`, `notContain`.
11209
+ */
10614
11210
  operator?: string;
11211
+ /**
11212
+ * The name of the key that is used to filter logs imported from Log Service.
11213
+ */
10615
11214
  slsKeyName?: string;
10616
11215
  value?: string;
10617
11216
  }
10618
11217
  interface HybridMonitorSlsTaskSlsProcessConfigGroupBy {
11218
+ /**
11219
+ * The alias of the extended field that specifies the result of basic operations that are performed on aggregation results.
11220
+ */
10619
11221
  alias?: string;
11222
+ /**
11223
+ * The name of the key that is used to filter logs imported from Log Service.
11224
+ */
10620
11225
  slsKeyName?: string;
10621
11226
  }
10622
11227
  interface HybridMonitorSlsTaskSlsProcessConfigStatistic {
11228
+ /**
11229
+ * The alias of the extended field that specifies the result of basic operations that are performed on aggregation results.
11230
+ */
10623
11231
  alias?: string;
11232
+ /**
11233
+ * The function that is used to aggregate log data within a statistical period. Valid values: `count`, `sum`, `avg`, `max`, `min`, `value`, `countps`, `sumps`, `distinct`, `distribution`, `percentile`.
11234
+ */
10624
11235
  function?: string;
11236
+ /**
11237
+ * The value of the function that is used to aggregate logs imported from Log Service.
11238
+ * - If you set the `function` parameter to `distribution`, this parameter specifies the lower limit of the statistical interval. For example, if you want to calculate the number of HTTP requests whose status code is 2XX, set this parameter to 200.
11239
+ * - If you set the `function` parameter to `percentile`, this parameter specifies the percentile at which the expected value is. For example, 0.5 specifies P50.
11240
+ */
10625
11241
  parameterOne?: string;
11242
+ /**
11243
+ * The value of the function that is used to aggregate logs imported from Log Service. **Note:** This parameter is required only if the `function` parameter is set to `distribution`. This parameter specifies the upper limit of the statistical interval.
11244
+ */
10626
11245
  parameterTwo?: string;
11246
+ /**
11247
+ * The name of the key that is used to filter logs imported from Log Service.
11248
+ */
10627
11249
  slsKeyName?: string;
10628
11250
  }
10629
11251
  interface MetricRuleBlackListMetric {
@@ -10667,26 +11289,71 @@ export declare namespace cms {
10667
11289
  webhook?: string;
10668
11290
  }
10669
11291
  interface MetricRuleTemplateAlertTemplateEscalations {
11292
+ /**
11293
+ * The condition for triggering critical-level alerts. See `critical` below.
11294
+ */
10670
11295
  critical?: outputs.cms.MetricRuleTemplateAlertTemplateEscalationsCritical;
11296
+ /**
11297
+ * The condition for triggering info-level alerts. See `info` below.
11298
+ */
10671
11299
  info?: outputs.cms.MetricRuleTemplateAlertTemplateEscalationsInfo;
11300
+ /**
11301
+ * The condition for triggering warn-level alerts. See `warn` below.
11302
+ */
10672
11303
  warn?: outputs.cms.MetricRuleTemplateAlertTemplateEscalationsWarn;
10673
11304
  }
10674
11305
  interface MetricRuleTemplateAlertTemplateEscalationsCritical {
11306
+ /**
11307
+ * The comparison operator of the threshold for critical-level alerts. Valid values: `GreaterThanOrEqualToThreshold`, `GreaterThanThreshold`, `LessThanOrEqualToThreshold`, `LessThanThreshold`, `NotEqualToThreshold`, `GreaterThanYesterday`, `LessThanYesterday`, `GreaterThanLastWeek`, `LessThanLastWeek`, `GreaterThanLastPeriod`, `LessThanLastPeriod`.
11308
+ */
10675
11309
  comparisonOperator?: string;
11310
+ /**
11311
+ * The statistical aggregation method for critical-level alerts.
11312
+ */
10676
11313
  statistics?: string;
11314
+ /**
11315
+ * The threshold for critical-level alerts.
11316
+ */
10677
11317
  threshold?: string;
11318
+ /**
11319
+ * The consecutive number of times for which the metric value is measured before a critical-level alert is triggered.
11320
+ */
10678
11321
  times?: string;
10679
11322
  }
10680
11323
  interface MetricRuleTemplateAlertTemplateEscalationsInfo {
11324
+ /**
11325
+ * The comparison operator of the threshold for critical-level alerts. Valid values: `GreaterThanOrEqualToThreshold`, `GreaterThanThreshold`, `LessThanOrEqualToThreshold`, `LessThanThreshold`, `NotEqualToThreshold`, `GreaterThanYesterday`, `LessThanYesterday`, `GreaterThanLastWeek`, `LessThanLastWeek`, `GreaterThanLastPeriod`, `LessThanLastPeriod`.
11326
+ */
10681
11327
  comparisonOperator?: string;
11328
+ /**
11329
+ * The statistical aggregation method for critical-level alerts.
11330
+ */
10682
11331
  statistics?: string;
11332
+ /**
11333
+ * The threshold for critical-level alerts.
11334
+ */
10683
11335
  threshold?: string;
11336
+ /**
11337
+ * The consecutive number of times for which the metric value is measured before a critical-level alert is triggered.
11338
+ */
10684
11339
  times?: string;
10685
11340
  }
10686
11341
  interface MetricRuleTemplateAlertTemplateEscalationsWarn {
11342
+ /**
11343
+ * The comparison operator of the threshold for critical-level alerts. Valid values: `GreaterThanOrEqualToThreshold`, `GreaterThanThreshold`, `LessThanOrEqualToThreshold`, `LessThanThreshold`, `NotEqualToThreshold`, `GreaterThanYesterday`, `LessThanYesterday`, `GreaterThanLastWeek`, `LessThanLastWeek`, `GreaterThanLastPeriod`, `LessThanLastPeriod`.
11344
+ */
10687
11345
  comparisonOperator?: string;
11346
+ /**
11347
+ * The statistical aggregation method for critical-level alerts.
11348
+ */
10688
11349
  statistics?: string;
11350
+ /**
11351
+ * The threshold for critical-level alerts.
11352
+ */
10689
11353
  threshold?: string;
11354
+ /**
11355
+ * The consecutive number of times for which the metric value is measured before a critical-level alert is triggered.
11356
+ */
10690
11357
  times?: string;
10691
11358
  }
10692
11359
  interface MonitorGroupInstancesInstance {
@@ -10742,6 +11409,9 @@ export declare namespace compute {
10742
11409
  * The name of the service.
10743
11410
  */
10744
11411
  name?: string;
11412
+ /**
11413
+ * Set of values that are accepted for the given field.
11414
+ */
10745
11415
  values?: string[];
10746
11416
  }
10747
11417
  interface GetNestServiceInstancesServiceInstance {
@@ -13194,13 +13864,25 @@ export declare namespace cs {
13194
13864
  surgePercentage?: number;
13195
13865
  }
13196
13866
  interface NodePoolManagementAutoRepairPolicy {
13867
+ /**
13868
+ * Specifies whether to automatically restart nodes after patching CVE vulnerabilities. Valid values: `true`, `false`.
13869
+ */
13197
13870
  restartNode: boolean;
13198
13871
  }
13199
13872
  interface NodePoolManagementAutoUpgradePolicy {
13873
+ /**
13874
+ * Specifies whether to automatically update the kubelet. Valid values: `true`: yes; `false`: no.
13875
+ */
13200
13876
  autoUpgradeKubelet: boolean;
13201
13877
  }
13202
13878
  interface NodePoolManagementAutoVulFixPolicy {
13879
+ /**
13880
+ * Specifies whether to automatically restart nodes after patching CVE vulnerabilities. Valid values: `true`, `false`.
13881
+ */
13203
13882
  restartNode: boolean;
13883
+ /**
13884
+ * The severity levels of vulnerabilities that is allowed to automatically patch. Multiple severity levels are separated by commas (,).
13885
+ */
13204
13886
  vulLevel: string;
13205
13887
  }
13206
13888
  interface NodePoolPrivatePoolOptions {
@@ -13581,15 +14263,45 @@ export declare namespace databasegateway {
13581
14263
  userId: string;
13582
14264
  }
13583
14265
  interface GetGatewaysGatewayGatewayInstance {
14266
+ /**
14267
+ * The connection type of Gateway instance.
14268
+ */
13584
14269
  connectEndpointType: string;
14270
+ /**
14271
+ * The process of version number of Gateway instance.
14272
+ */
13585
14273
  currentDaemonVersion: string;
14274
+ /**
14275
+ * The version of Gateway instance.
14276
+ */
13586
14277
  currentVersion: string;
14278
+ /**
14279
+ * The endpoint address of Gateway instance.
14280
+ */
13587
14281
  endPoint: string;
14282
+ /**
14283
+ * The id of Gateway instance.
14284
+ */
13588
14285
  gatewayInstanceId: string;
14286
+ /**
14287
+ * The status of Gateway instance. Valid values: `EXCEPTION`, `NEW`, `RUNNING`, `STOPPED`.
14288
+ */
13589
14289
  gatewayInstanceStatus: string;
14290
+ /**
14291
+ * The last Updated time stamp of Gateway instance.
14292
+ */
13590
14293
  lastUpdateTime: string;
14294
+ /**
14295
+ * The Local IP ADDRESS of Gateway instance.
14296
+ */
13591
14297
  localIp: string;
14298
+ /**
14299
+ * The prompt information of Gateway instance.
14300
+ */
13592
14301
  message: string;
14302
+ /**
14303
+ * The host of Gateway instance.
14304
+ */
13593
14305
  outputIp: string;
13594
14306
  }
13595
14307
  }
@@ -13735,28 +14447,25 @@ export declare namespace dcdn {
13735
14447
  }
13736
14448
  interface DomainSource {
13737
14449
  /**
13738
- * The origin address.
14450
+ * The address of the source station.
13739
14451
  */
13740
- content: string;
14452
+ content?: string;
13741
14453
  /**
13742
14454
  * The port number. Valid values: `443` and `80`. Default to `80`.
13743
14455
  */
13744
- port?: number;
14456
+ port: number;
13745
14457
  /**
13746
14458
  * The priority of the origin if multiple origins are specified. Default to `20`.
13747
14459
  */
13748
- priority?: string;
14460
+ priority: string;
13749
14461
  /**
13750
14462
  * The type of the origin. Valid values:
13751
- * `ipaddr`: The origin is configured using an IP address.
13752
- * `domain`: The origin is configured using a domain name.
13753
- * `oss`: The origin is configured using the Internet domain name of an Alibaba Cloud Object Storage Service (OSS) bucket.
13754
14463
  */
13755
- type: string;
14464
+ type?: string;
13756
14465
  /**
13757
14466
  * The weight of the origin if multiple origins are specified. Default to `10`.
13758
14467
  */
13759
- weight?: string;
14468
+ weight: string;
13760
14469
  }
13761
14470
  interface ErEnvConf {
13762
14471
  /**
@@ -13909,188 +14618,521 @@ export declare namespace dcdn {
13909
14618
  staging: outputs.dcdn.ErEnvConfStaging;
13910
14619
  }
13911
14620
  interface ErEnvConfPresetCanaryAnhui {
14621
+ /**
14622
+ * Allowed DCDN domain names.
14623
+ */
13912
14624
  allowedHosts: string[];
14625
+ /**
14626
+ * The version number of the code.
14627
+ */
13913
14628
  codeRev?: string;
14629
+ /**
14630
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14631
+ */
13914
14632
  specName: string;
13915
14633
  }
13916
14634
  interface ErEnvConfPresetCanaryBeijing {
14635
+ /**
14636
+ * Allowed DCDN domain names.
14637
+ */
13917
14638
  allowedHosts: string[];
14639
+ /**
14640
+ * The version number of the code.
14641
+ */
13918
14642
  codeRev?: string;
14643
+ /**
14644
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14645
+ */
13919
14646
  specName: string;
13920
14647
  }
13921
14648
  interface ErEnvConfPresetCanaryChongqing {
14649
+ /**
14650
+ * Allowed DCDN domain names.
14651
+ */
13922
14652
  allowedHosts: string[];
14653
+ /**
14654
+ * The version number of the code.
14655
+ */
13923
14656
  codeRev?: string;
14657
+ /**
14658
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14659
+ */
13924
14660
  specName: string;
13925
14661
  }
13926
14662
  interface ErEnvConfPresetCanaryFujian {
14663
+ /**
14664
+ * Allowed DCDN domain names.
14665
+ */
13927
14666
  allowedHosts: string[];
14667
+ /**
14668
+ * The version number of the code.
14669
+ */
13928
14670
  codeRev?: string;
14671
+ /**
14672
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14673
+ */
13929
14674
  specName: string;
13930
14675
  }
13931
14676
  interface ErEnvConfPresetCanaryGansu {
14677
+ /**
14678
+ * Allowed DCDN domain names.
14679
+ */
13932
14680
  allowedHosts: string[];
14681
+ /**
14682
+ * The version number of the code.
14683
+ */
13933
14684
  codeRev?: string;
14685
+ /**
14686
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14687
+ */
13934
14688
  specName: string;
13935
14689
  }
13936
14690
  interface ErEnvConfPresetCanaryGuangdong {
14691
+ /**
14692
+ * Allowed DCDN domain names.
14693
+ */
13937
14694
  allowedHosts: string[];
14695
+ /**
14696
+ * The version number of the code.
14697
+ */
13938
14698
  codeRev?: string;
14699
+ /**
14700
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14701
+ */
13939
14702
  specName: string;
13940
14703
  }
13941
14704
  interface ErEnvConfPresetCanaryGuangxi {
14705
+ /**
14706
+ * Allowed DCDN domain names.
14707
+ */
13942
14708
  allowedHosts: string[];
14709
+ /**
14710
+ * The version number of the code.
14711
+ */
13943
14712
  codeRev?: string;
14713
+ /**
14714
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14715
+ */
13944
14716
  specName: string;
13945
14717
  }
13946
14718
  interface ErEnvConfPresetCanaryGuizhou {
14719
+ /**
14720
+ * Allowed DCDN domain names.
14721
+ */
13947
14722
  allowedHosts: string[];
14723
+ /**
14724
+ * The version number of the code.
14725
+ */
13948
14726
  codeRev?: string;
14727
+ /**
14728
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14729
+ */
13949
14730
  specName: string;
13950
14731
  }
13951
14732
  interface ErEnvConfPresetCanaryHainan {
14733
+ /**
14734
+ * Allowed DCDN domain names.
14735
+ */
13952
14736
  allowedHosts: string[];
14737
+ /**
14738
+ * The version number of the code.
14739
+ */
13953
14740
  codeRev?: string;
14741
+ /**
14742
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14743
+ */
13954
14744
  specName: string;
13955
14745
  }
13956
14746
  interface ErEnvConfPresetCanaryHebei {
14747
+ /**
14748
+ * Allowed DCDN domain names.
14749
+ */
13957
14750
  allowedHosts: string[];
14751
+ /**
14752
+ * The version number of the code.
14753
+ */
13958
14754
  codeRev?: string;
14755
+ /**
14756
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14757
+ */
13959
14758
  specName: string;
13960
14759
  }
13961
14760
  interface ErEnvConfPresetCanaryHeilongjiang {
14761
+ /**
14762
+ * Allowed DCDN domain names.
14763
+ */
13962
14764
  allowedHosts: string[];
14765
+ /**
14766
+ * The version number of the code.
14767
+ */
13963
14768
  codeRev?: string;
14769
+ /**
14770
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14771
+ */
13964
14772
  specName: string;
13965
14773
  }
13966
14774
  interface ErEnvConfPresetCanaryHenan {
14775
+ /**
14776
+ * Allowed DCDN domain names.
14777
+ */
13967
14778
  allowedHosts: string[];
14779
+ /**
14780
+ * The version number of the code.
14781
+ */
13968
14782
  codeRev?: string;
14783
+ /**
14784
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14785
+ */
13969
14786
  specName: string;
13970
14787
  }
13971
14788
  interface ErEnvConfPresetCanaryHongKong {
14789
+ /**
14790
+ * Allowed DCDN domain names.
14791
+ */
13972
14792
  allowedHosts: string[];
14793
+ /**
14794
+ * The version number of the code.
14795
+ */
13973
14796
  codeRev?: string;
14797
+ /**
14798
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14799
+ */
13974
14800
  specName: string;
13975
14801
  }
13976
14802
  interface ErEnvConfPresetCanaryHubei {
14803
+ /**
14804
+ * Allowed DCDN domain names.
14805
+ */
13977
14806
  allowedHosts: string[];
14807
+ /**
14808
+ * The version number of the code.
14809
+ */
13978
14810
  codeRev?: string;
14811
+ /**
14812
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14813
+ */
13979
14814
  specName: string;
13980
14815
  }
13981
14816
  interface ErEnvConfPresetCanaryHunan {
14817
+ /**
14818
+ * Allowed DCDN domain names.
14819
+ */
13982
14820
  allowedHosts: string[];
14821
+ /**
14822
+ * The version number of the code.
14823
+ */
13983
14824
  codeRev?: string;
14825
+ /**
14826
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14827
+ */
13984
14828
  specName: string;
13985
14829
  }
13986
14830
  interface ErEnvConfPresetCanaryJiangsu {
14831
+ /**
14832
+ * Allowed DCDN domain names.
14833
+ */
13987
14834
  allowedHosts: string[];
14835
+ /**
14836
+ * The version number of the code.
14837
+ */
13988
14838
  codeRev?: string;
14839
+ /**
14840
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14841
+ */
13989
14842
  specName: string;
13990
14843
  }
13991
14844
  interface ErEnvConfPresetCanaryJiangxi {
14845
+ /**
14846
+ * Allowed DCDN domain names.
14847
+ */
13992
14848
  allowedHosts: string[];
14849
+ /**
14850
+ * The version number of the code.
14851
+ */
13993
14852
  codeRev?: string;
14853
+ /**
14854
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14855
+ */
13994
14856
  specName: string;
13995
14857
  }
13996
14858
  interface ErEnvConfPresetCanaryJilin {
14859
+ /**
14860
+ * Allowed DCDN domain names.
14861
+ */
13997
14862
  allowedHosts: string[];
14863
+ /**
14864
+ * The version number of the code.
14865
+ */
13998
14866
  codeRev?: string;
14867
+ /**
14868
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14869
+ */
13999
14870
  specName: string;
14000
14871
  }
14001
14872
  interface ErEnvConfPresetCanaryLiaoning {
14873
+ /**
14874
+ * Allowed DCDN domain names.
14875
+ */
14002
14876
  allowedHosts: string[];
14877
+ /**
14878
+ * The version number of the code.
14879
+ */
14003
14880
  codeRev?: string;
14881
+ /**
14882
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14883
+ */
14004
14884
  specName: string;
14005
14885
  }
14006
14886
  interface ErEnvConfPresetCanaryMacau {
14887
+ /**
14888
+ * Allowed DCDN domain names.
14889
+ */
14007
14890
  allowedHosts: string[];
14891
+ /**
14892
+ * The version number of the code.
14893
+ */
14008
14894
  codeRev?: string;
14895
+ /**
14896
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14897
+ */
14009
14898
  specName: string;
14010
14899
  }
14011
14900
  interface ErEnvConfPresetCanaryNeimenggu {
14901
+ /**
14902
+ * Allowed DCDN domain names.
14903
+ */
14012
14904
  allowedHosts: string[];
14905
+ /**
14906
+ * The version number of the code.
14907
+ */
14013
14908
  codeRev?: string;
14909
+ /**
14910
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14911
+ */
14014
14912
  specName: string;
14015
14913
  }
14016
14914
  interface ErEnvConfPresetCanaryNingxia {
14915
+ /**
14916
+ * Allowed DCDN domain names.
14917
+ */
14017
14918
  allowedHosts: string[];
14919
+ /**
14920
+ * The version number of the code.
14921
+ */
14018
14922
  codeRev?: string;
14923
+ /**
14924
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14925
+ */
14019
14926
  specName: string;
14020
14927
  }
14021
14928
  interface ErEnvConfPresetCanaryOverseas {
14929
+ /**
14930
+ * Allowed DCDN domain names.
14931
+ */
14022
14932
  allowedHosts: string[];
14933
+ /**
14934
+ * The version number of the code.
14935
+ */
14023
14936
  codeRev?: string;
14937
+ /**
14938
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14939
+ */
14024
14940
  specName: string;
14025
14941
  }
14026
14942
  interface ErEnvConfPresetCanaryQinghai {
14943
+ /**
14944
+ * Allowed DCDN domain names.
14945
+ */
14027
14946
  allowedHosts: string[];
14947
+ /**
14948
+ * The version number of the code.
14949
+ */
14028
14950
  codeRev?: string;
14951
+ /**
14952
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14953
+ */
14029
14954
  specName: string;
14030
14955
  }
14031
14956
  interface ErEnvConfPresetCanaryShaanxi {
14957
+ /**
14958
+ * Allowed DCDN domain names.
14959
+ */
14032
14960
  allowedHosts: string[];
14961
+ /**
14962
+ * The version number of the code.
14963
+ */
14033
14964
  codeRev?: string;
14965
+ /**
14966
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14967
+ */
14034
14968
  specName: string;
14035
14969
  }
14036
14970
  interface ErEnvConfPresetCanaryShandong {
14971
+ /**
14972
+ * Allowed DCDN domain names.
14973
+ */
14037
14974
  allowedHosts: string[];
14975
+ /**
14976
+ * The version number of the code.
14977
+ */
14038
14978
  codeRev?: string;
14979
+ /**
14980
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14981
+ */
14039
14982
  specName: string;
14040
14983
  }
14041
14984
  interface ErEnvConfPresetCanaryShanghai {
14985
+ /**
14986
+ * Allowed DCDN domain names.
14987
+ */
14042
14988
  allowedHosts: string[];
14989
+ /**
14990
+ * The version number of the code.
14991
+ */
14043
14992
  codeRev?: string;
14993
+ /**
14994
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
14995
+ */
14044
14996
  specName: string;
14045
14997
  }
14046
14998
  interface ErEnvConfPresetCanaryShanxi {
14999
+ /**
15000
+ * Allowed DCDN domain names.
15001
+ */
14047
15002
  allowedHosts: string[];
15003
+ /**
15004
+ * The version number of the code.
15005
+ */
14048
15006
  codeRev?: string;
15007
+ /**
15008
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
15009
+ */
14049
15010
  specName: string;
14050
15011
  }
14051
15012
  interface ErEnvConfPresetCanarySichuan {
15013
+ /**
15014
+ * Allowed DCDN domain names.
15015
+ */
14052
15016
  allowedHosts: string[];
15017
+ /**
15018
+ * The version number of the code.
15019
+ */
14053
15020
  codeRev?: string;
15021
+ /**
15022
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
15023
+ */
14054
15024
  specName: string;
14055
15025
  }
14056
15026
  interface ErEnvConfPresetCanaryTaiwan {
15027
+ /**
15028
+ * Allowed DCDN domain names.
15029
+ */
14057
15030
  allowedHosts: string[];
15031
+ /**
15032
+ * The version number of the code.
15033
+ */
14058
15034
  codeRev?: string;
15035
+ /**
15036
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
15037
+ */
14059
15038
  specName: string;
14060
15039
  }
14061
15040
  interface ErEnvConfPresetCanaryTianjin {
15041
+ /**
15042
+ * Allowed DCDN domain names.
15043
+ */
14062
15044
  allowedHosts: string[];
15045
+ /**
15046
+ * The version number of the code.
15047
+ */
14063
15048
  codeRev?: string;
15049
+ /**
15050
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
15051
+ */
14064
15052
  specName: string;
14065
15053
  }
14066
15054
  interface ErEnvConfPresetCanaryXinjiang {
15055
+ /**
15056
+ * Allowed DCDN domain names.
15057
+ */
14067
15058
  allowedHosts: string[];
15059
+ /**
15060
+ * The version number of the code.
15061
+ */
14068
15062
  codeRev?: string;
15063
+ /**
15064
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
15065
+ */
14069
15066
  specName: string;
14070
15067
  }
14071
15068
  interface ErEnvConfPresetCanaryXizang {
15069
+ /**
15070
+ * Allowed DCDN domain names.
15071
+ */
14072
15072
  allowedHosts: string[];
15073
+ /**
15074
+ * The version number of the code.
15075
+ */
14073
15076
  codeRev?: string;
15077
+ /**
15078
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
15079
+ */
14074
15080
  specName: string;
14075
15081
  }
14076
15082
  interface ErEnvConfPresetCanaryYunnan {
15083
+ /**
15084
+ * Allowed DCDN domain names.
15085
+ */
14077
15086
  allowedHosts: string[];
15087
+ /**
15088
+ * The version number of the code.
15089
+ */
14078
15090
  codeRev?: string;
15091
+ /**
15092
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
15093
+ */
14079
15094
  specName: string;
14080
15095
  }
14081
15096
  interface ErEnvConfPresetCanaryZhejiang {
15097
+ /**
15098
+ * Allowed DCDN domain names.
15099
+ */
14082
15100
  allowedHosts: string[];
15101
+ /**
15102
+ * The version number of the code.
15103
+ */
14083
15104
  codeRev?: string;
15105
+ /**
15106
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
15107
+ */
14084
15108
  specName: string;
14085
15109
  }
14086
15110
  interface ErEnvConfProduction {
15111
+ /**
15112
+ * Allowed DCDN domain names.
15113
+ */
14087
15114
  allowedHosts: string[];
15115
+ /**
15116
+ * The version number of the code.
15117
+ */
14088
15118
  codeRev?: string;
15119
+ /**
15120
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
15121
+ */
14089
15122
  specName: string;
14090
15123
  }
14091
15124
  interface ErEnvConfStaging {
15125
+ /**
15126
+ * Allowed DCDN domain names.
15127
+ */
14092
15128
  allowedHosts: string[];
15129
+ /**
15130
+ * The version number of the code.
15131
+ */
14093
15132
  codeRev?: string;
15133
+ /**
15134
+ * The specification of the CPU time slice. Valid values: `5ms`, `50ms`, `100ms`.
15135
+ */
14094
15136
  specName: string;
14095
15137
  }
14096
15138
  interface GetDomainsDomain {
@@ -14510,8 +15552,17 @@ export declare namespace dcdn {
14510
15552
  ttl?: number;
14511
15553
  }
14512
15554
  interface WafRuleRateLimitStatus {
15555
+ /**
15556
+ * The HTTP status code returned.
15557
+ */
14513
15558
  code?: string;
15559
+ /**
15560
+ * The number of times that the HTTP status code that was returned. Valid values: 2 to 50000. You can configure only one of the `ratio` and `count` fields.
15561
+ */
14514
15562
  count?: number;
15563
+ /**
15564
+ * The percentage of HTTP status codes. Valid values: 1 to 100. You can configure only one of the `ratio` and `count` fields.
15565
+ */
14515
15566
  ratio?: number;
14516
15567
  }
14517
15568
  }
@@ -14575,47 +15626,149 @@ export declare namespace ddos {
14575
15626
  whitenGfbrNets?: boolean;
14576
15627
  }
14577
15628
  interface BgpPolicyContentFingerPrintRuleList {
15629
+ /**
15630
+ * End of destination port 0-65535.
15631
+ */
14578
15632
  dstPortEnd: number;
15633
+ /**
15634
+ * Destination Port start 0-65535.
15635
+ */
14579
15636
  dstPortStart: number;
15637
+ /**
15638
+ * The UUID of the rule is required to be deleted and modified, and it is not required to be created.
15639
+ */
14580
15640
  fingerPrintRuleId?: string;
15641
+ /**
15642
+ * Action. Currently, only drop is supported.
15643
+ */
14581
15644
  matchAction: string;
15645
+ /**
15646
+ * Maximum bag length.
15647
+ */
14582
15648
  maxPktLen: number;
15649
+ /**
15650
+ * Minimum package length.
15651
+ */
14583
15652
  minPktLen: number;
15653
+ /**
15654
+ * Offset.
15655
+ */
14584
15656
  offset?: number;
15657
+ /**
15658
+ * Load match, hexadecimal string; Similar to 'abcd'.
15659
+ */
14585
15660
  payloadBytes?: string;
15661
+ /**
15662
+ * Protocol, tcp or udp.
15663
+ */
14586
15664
  protocol: string;
15665
+ /**
15666
+ * Speed limit value 1-100000.
15667
+ */
14587
15668
  rateValue?: number;
15669
+ /**
15670
+ * Serial number 1-100 ● Affects the order issued by the bottom layer ● The larger the number, the lower it is.
15671
+ */
14588
15672
  seqNo: number;
15673
+ /**
15674
+ * Source Port end 0-65535.
15675
+ */
14589
15676
  srcPortEnd: number;
15677
+ /**
15678
+ * Source port start 0-65535.
15679
+ */
14590
15680
  srcPortStart: number;
14591
15681
  }
14592
15682
  interface BgpPolicyContentLayer4RuleList {
15683
+ /**
15684
+ * 1 for observation 2 for blocking.
15685
+ */
14593
15686
  action: string;
15687
+ /**
15688
+ * Matching Condition. See `conditionList` below.
15689
+ */
14594
15690
  conditionLists: outputs.ddos.BgpPolicyContentLayer4RuleListConditionList[];
15691
+ /**
15692
+ * .
15693
+ */
14595
15694
  limited: number;
15695
+ /**
15696
+ * 0 indicates that the condition is not met 1 indicates that the condition is met.
15697
+ */
14596
15698
  match: string;
15699
+ /**
15700
+ * Char indicates a string match hex match.
15701
+ */
14597
15702
  method: string;
15703
+ /**
15704
+ * Rule Name.
15705
+ */
14598
15706
  name: string;
15707
+ /**
15708
+ * 1-100, priority, the lower the number, the higher the priority.
15709
+ */
14599
15710
  priority: number;
14600
15711
  }
14601
15712
  interface BgpPolicyContentLayer4RuleListConditionList {
15713
+ /**
15714
+ * Matching target character.
15715
+ */
14602
15716
  arg: string;
15717
+ /**
15718
+ * Depth of Matching.
15719
+ */
14603
15720
  depth: number;
15721
+ /**
15722
+ * Position to start matching, starting from 0.
15723
+ */
14604
15724
  position: number;
14605
15725
  }
14606
15726
  interface BgpPolicyContentPortRuleList {
15727
+ /**
15728
+ * End of destination port 0-65535.
15729
+ */
14607
15730
  dstPortEnd: number;
15731
+ /**
15732
+ * Destination Port start 0-65535.
15733
+ */
14608
15734
  dstPortStart: number;
15735
+ /**
15736
+ * Action. Currently, only drop is supported.
15737
+ */
14609
15738
  matchAction: string;
15739
+ /**
15740
+ * Rule UUID is required to be deleted and modified, and is not required to be created.
15741
+ */
14610
15742
  portRuleId?: string;
15743
+ /**
15744
+ * Protocol, tcp or udp.
15745
+ */
14611
15746
  protocol: string;
15747
+ /**
15748
+ * Serial number 1-100 ● Affects the order issued by the bottom layer ● The larger the number, the lower it is.
15749
+ */
14612
15750
  seqNo: number;
15751
+ /**
15752
+ * Source Port end 0-65535.
15753
+ */
14613
15754
  srcPortEnd: number;
15755
+ /**
15756
+ * Source port start 0-65535.
15757
+ */
14614
15758
  srcPortStart: number;
14615
15759
  }
14616
15760
  interface BgpPolicyContentSourceBlockList {
15761
+ /**
15762
+ * Statistical cycle range 60-1200.
15763
+ */
14617
15764
  blockExpireSeconds: number;
15765
+ /**
15766
+ * The time (unit second) for automatically releasing the black after triggering the speed limit is 60~2592000.
15767
+ */
14618
15768
  everySeconds: number;
15769
+ /**
15770
+ * The number of times the speed limit is exceeded in a statistical period ranges from 1 to 1200.
15771
+ */
14619
15772
  exceedLimitTimes: number;
14620
15773
  /**
14621
15774
  * Type
@@ -14623,9 +15776,21 @@ export declare namespace ddos {
14623
15776
  type: number;
14624
15777
  }
14625
15778
  interface BgpPolicyContentSourceLimit {
15779
+ /**
15780
+ * bps range 1024~268435456.
15781
+ */
14626
15782
  bps?: number;
15783
+ /**
15784
+ * Pps range 32~500000.
15785
+ */
14627
15786
  pps?: number;
15787
+ /**
15788
+ * SynBps range 1024~268435456.
15789
+ */
14628
15790
  synBps?: number;
15791
+ /**
15792
+ * SynPps range 1~100000.
15793
+ */
14629
15794
  synPps?: number;
14630
15795
  }
14631
15796
  interface DomainResourceProxyType {
@@ -15176,15 +16341,15 @@ export declare namespace dfs {
15176
16341
  export declare namespace directmail {
15177
16342
  interface GetDomainsDomain {
15178
16343
  /**
15179
- * Track verification.
16344
+ * Indicates whether your ownership of the domain is verified.
15180
16345
  */
15181
16346
  cnameAuthStatus: string;
15182
16347
  /**
15183
- * Indicates whether the CNAME record is successfully verified. Valid values: `0` and `1`. `0`: indicates the verification is successful. `1`: indicates that the verification fails.
16348
+ * Indicates whether the CNAME record is successfully verified. **Note:** `cnameConfirmStatus` takes effect only if `enableDetails` is set to `true`.
15184
16349
  */
15185
16350
  cnameConfirmStatus: string;
15186
16351
  /**
15187
- * The value of the CNAME record.
16352
+ * The value of the CNAME record. **Note:** `cnameRecord` takes effect only if `enableDetails` is set to `true`.
15188
16353
  */
15189
16354
  cnameRecord: string;
15190
16355
  /**
@@ -15192,19 +16357,47 @@ export declare namespace directmail {
15192
16357
  */
15193
16358
  createTime: string;
15194
16359
  /**
15195
- * The default domain name.
16360
+ * The default domain name. **Note:** `defaultDomain` takes effect only if `enableDetails` is set to `true`.
15196
16361
  */
15197
16362
  defaultDomain: string;
15198
16363
  /**
15199
- * The value of the MX record.
16364
+ * (Available since v1.227.1) The DKIM validation flag. **Note:** `dkimAuthStatus` takes effect only if `enableDetails` is set to `true`.
16365
+ */
16366
+ dkimAuthStatus: string;
16367
+ /**
16368
+ * (Available since v1.227.1) The DKIM public key. **Note:** `dkimPublicKey` takes effect only if `enableDetails` is set to `true`.
16369
+ */
16370
+ dkimPublicKey: string;
16371
+ /**
16372
+ * (Available since v1.227.1) The DKIM Host Record. **Note:** `dkimRr` takes effect only if `enableDetails` is set to `true`.
16373
+ */
16374
+ dkimRr: string;
16375
+ /**
16376
+ * (Available since v1.227.1) The DMARC validation flag. **Note:** `dmarcAuthStatus` takes effect only if `enableDetails` is set to `true`.
16377
+ */
16378
+ dmarcAuthStatus: string;
16379
+ /**
16380
+ * (Available since v1.227.1) The DMARC Host Record. **Note:** `dmarcHostRecord` takes effect only if `enableDetails` is set to `true`.
16381
+ */
16382
+ dmarcHostRecord: string;
16383
+ /**
16384
+ * (Available since v1.227.1) The DMARC record. **Note:** `dmarcRecord` takes effect only if `enableDetails` is set to `true`.
16385
+ */
16386
+ dmarcRecord: string;
16387
+ /**
16388
+ * (Available since v1.227.1) The DMARC record value resolved through public DNS. **Note:** `dnsDmarc` takes effect only if `enableDetails` is set to `true`.
16389
+ */
16390
+ dnsDmarc: string;
16391
+ /**
16392
+ * The MX record value resolved through public DNS. **Note:** `dnsMx` takes effect only if `enableDetails` is set to `true`.
15200
16393
  */
15201
16394
  dnsMx: string;
15202
16395
  /**
15203
- * The value of the SPF record.
16396
+ * The SPF record value resolved through public DNS. **Note:** `dnsSpf` takes effect only if `enableDetails` is set to `true`.
15204
16397
  */
15205
16398
  dnsSpf: string;
15206
16399
  /**
15207
- * The value of the TXT ownership record.
16400
+ * The TXT record value resolved through public DNS. **Note:** `dnsTxt` takes effect only if `enableDetails` is set to `true`.
15208
16401
  */
15209
16402
  dnsTxt: string;
15210
16403
  /**
@@ -15216,11 +16409,19 @@ export declare namespace directmail {
15216
16409
  */
15217
16410
  domainName: string;
15218
16411
  /**
15219
- * The type of the domain.
16412
+ * (Available since v1.227.1) The value of the Domain record.
16413
+ */
16414
+ domainRecord: string;
16415
+ /**
16416
+ * The type of the domain. **Note:** `domainType` takes effect only if `enableDetails` is set to `true`.
15220
16417
  */
15221
16418
  domainType: string;
15222
16419
  /**
15223
- * The status of ICP filing. Valid values: `0` and `1`. `0`: indicates that the domain name is not filed. `1`: indicates that the domain name is filed.
16420
+ * (Available since v1.227.1) The value of the host record. **Note:** `hostRecord` takes effect only if `enableDetails` is set to `true`.
16421
+ */
16422
+ hostRecord: string;
16423
+ /**
16424
+ * The status of ICP filing.
15224
16425
  */
15225
16426
  icpStatus: string;
15226
16427
  /**
@@ -15228,31 +16429,31 @@ export declare namespace directmail {
15228
16429
  */
15229
16430
  id: string;
15230
16431
  /**
15231
- * Indicates whether the MX record is successfully verified. Valid values: `0` and `1`. `0`: indicates the verification is successful. `1`: indicates that the verification fails.
16432
+ * Indicates whether the MX record is successfully verified.
15232
16433
  */
15233
16434
  mxAuthStatus: string;
15234
16435
  /**
15235
- * The MX verification record provided by Alibaba Cloud DNS.
16436
+ * The MX verification record provided by the Direct Mail console. **Note:** `mxRecord` takes effect only if `enableDetails` is set to `true`.
15236
16437
  */
15237
16438
  mxRecord: string;
15238
16439
  /**
15239
- * Indicates whether the SPF record is successfully verified. Valid values: `0` and `1`. `0`: indicates the verification is successful. `1`: indicates that the verification fails.
16440
+ * Indicates whether the SPF record is successfully verified.
15240
16441
  */
15241
16442
  spfAuthStatus: string;
15242
16443
  /**
15243
- * The SPF verification record provided by Alibaba Cloud DNS.
16444
+ * The SPF verification record provided by the Direct Mail console. **Note:** `spfRecord` takes effect only if `enableDetails` is set to `true`.
15244
16445
  */
15245
16446
  spfRecord: string;
15246
16447
  /**
15247
- * The status of the domain name. Valid values:`0` to `4`. `0`:Available, Passed. `1`: Unavailable, No passed. `2`: Available, cname no passed, icp no passed. `3`: Available, icp no passed. `4`: Available, cname no passed.
16448
+ * The status of the domain name. Valid values:
15248
16449
  */
15249
16450
  status: string;
15250
16451
  /**
15251
- * The primary domain name.
16452
+ * The primary domain name. **Note:** `tlDomainName` takes effect only if `enableDetails` is set to `true`.
15252
16453
  */
15253
16454
  tlDomainName: string;
15254
16455
  /**
15255
- * The CNAME verification record provided by Alibaba Cloud DNS.
16456
+ * The CNAME verification record provided by the Direct Mail console. **Note:** `tracefRecord` takes effect only if `enableDetails` is set to `true`.
15256
16457
  */
15257
16458
  tracefRecord: string;
15258
16459
  }
@@ -17133,7 +18334,13 @@ export declare namespace ebs {
17133
18334
  regions?: outputs.ebs.EnterpriseSnapshotPolicyCrossRegionCopyInfoRegion[];
17134
18335
  }
17135
18336
  interface EnterpriseSnapshotPolicyCrossRegionCopyInfoRegion {
18337
+ /**
18338
+ * Destination region ID.
18339
+ */
17136
18340
  regionId?: string;
18341
+ /**
18342
+ * Number of days of snapshot retention for replication.
18343
+ */
17137
18344
  retainDays?: number;
17138
18345
  }
17139
18346
  interface EnterpriseSnapshotPolicyRetainRule {
@@ -17169,6 +18376,12 @@ export declare namespace ebs {
17169
18376
  rules?: outputs.ebs.EnterpriseSnapshotPolicySpecialRetainRulesRule[];
17170
18377
  }
17171
18378
  interface EnterpriseSnapshotPolicySpecialRetainRulesRule {
18379
+ /**
18380
+ * The cycle unit of the special reserved snapshot. If the value is set to WEEKS, the first snapshot of each week is reserved. The retention time is determined by TimeUnit and TimeInterval. The value range is:
18381
+ * - WEEKS
18382
+ * - MONTHS
18383
+ * - YEARS.
18384
+ */
17172
18385
  specialPeriodUnit?: string;
17173
18386
  timeInterval?: number;
17174
18387
  timeUnit?: string;
@@ -17493,13 +18706,39 @@ export declare namespace eci {
17493
18706
  fieldPath?: string;
17494
18707
  }
17495
18708
  interface ContainerGroupContainerLivenessProbe {
18709
+ /**
18710
+ * Health check using command line method. See `exec` below.
18711
+ */
17496
18712
  execs?: outputs.eci.ContainerGroupContainerLivenessProbeExec[];
18713
+ /**
18714
+ * Threshold for the number of checks that are determined to have failed since the last successful check (must be consecutive failures), default is 3.
18715
+ */
17497
18716
  failureThreshold?: number;
18717
+ /**
18718
+ * Health check using HTTP request method. See `httpGet` below.
18719
+ *
18720
+ * > **NOTE:** When you configure `readinessProbe`, you can select only one of the `exec`, `tcpSocket`, `httpGet`.
18721
+ */
17498
18722
  httpGets?: outputs.eci.ContainerGroupContainerLivenessProbeHttpGet[];
18723
+ /**
18724
+ * Check the time to start execution, calculated from the completion of container startup.
18725
+ */
17499
18726
  initialDelaySeconds?: number;
18727
+ /**
18728
+ * Buffer time for the program to handle operations before closing.
18729
+ */
17500
18730
  periodSeconds?: number;
18731
+ /**
18732
+ * The check count threshold for re-identifying successful checks since the last failed check (must be consecutive successes), default is 1. Current must be 1.
18733
+ */
17501
18734
  successThreshold?: number;
18735
+ /**
18736
+ * Health check using TCP socket method. See `tcpSocket` below.
18737
+ */
17502
18738
  tcpSockets?: outputs.eci.ContainerGroupContainerLivenessProbeTcpSocket[];
18739
+ /**
18740
+ * Check the timeout, the default is 1 second, the minimum is 1 second.
18741
+ */
17503
18742
  timeoutSeconds?: number;
17504
18743
  }
17505
18744
  interface ContainerGroupContainerLivenessProbeExec {
@@ -17508,6 +18747,9 @@ export declare namespace eci {
17508
18747
  interface ContainerGroupContainerLivenessProbeHttpGet {
17509
18748
  path?: string;
17510
18749
  port?: number;
18750
+ /**
18751
+ * The protocol type corresponding to the HTTP Get request when using the HTTP request method for health checks. Valid values: `HTTP`, `HTTPS`.
18752
+ */
17511
18753
  scheme?: string;
17512
18754
  }
17513
18755
  interface ContainerGroupContainerLivenessProbeTcpSocket {
@@ -17518,13 +18760,39 @@ export declare namespace eci {
17518
18760
  protocol?: string;
17519
18761
  }
17520
18762
  interface ContainerGroupContainerReadinessProbe {
18763
+ /**
18764
+ * Health check using command line method. See `exec` below.
18765
+ */
17521
18766
  execs?: outputs.eci.ContainerGroupContainerReadinessProbeExec[];
18767
+ /**
18768
+ * Threshold for the number of checks that are determined to have failed since the last successful check (must be consecutive failures), default is 3.
18769
+ */
17522
18770
  failureThreshold?: number;
18771
+ /**
18772
+ * Health check using HTTP request method. See `httpGet` below.
18773
+ *
18774
+ * > **NOTE:** When you configure `readinessProbe`, you can select only one of the `exec`, `tcpSocket`, `httpGet`.
18775
+ */
17523
18776
  httpGets?: outputs.eci.ContainerGroupContainerReadinessProbeHttpGet[];
18777
+ /**
18778
+ * Check the time to start execution, calculated from the completion of container startup.
18779
+ */
17524
18780
  initialDelaySeconds?: number;
18781
+ /**
18782
+ * Buffer time for the program to handle operations before closing.
18783
+ */
17525
18784
  periodSeconds?: number;
18785
+ /**
18786
+ * The check count threshold for re-identifying successful checks since the last failed check (must be consecutive successes), default is 1. Current must be 1.
18787
+ */
17526
18788
  successThreshold?: number;
18789
+ /**
18790
+ * Health check using TCP socket method. See `tcpSocket` below.
18791
+ */
17527
18792
  tcpSockets?: outputs.eci.ContainerGroupContainerReadinessProbeTcpSocket[];
18793
+ /**
18794
+ * Check the timeout, the default is 1 second, the minimum is 1 second.
18795
+ */
17528
18796
  timeoutSeconds?: number;
17529
18797
  }
17530
18798
  interface ContainerGroupContainerReadinessProbeExec {
@@ -17533,6 +18801,9 @@ export declare namespace eci {
17533
18801
  interface ContainerGroupContainerReadinessProbeHttpGet {
17534
18802
  path?: string;
17535
18803
  port?: number;
18804
+ /**
18805
+ * The protocol type corresponding to the HTTP Get request when using the HTTP request method for health checks. Valid values: `HTTP`, `HTTPS`.
18806
+ */
17536
18807
  scheme?: string;
17537
18808
  }
17538
18809
  interface ContainerGroupContainerReadinessProbeTcpSocket {
@@ -17540,6 +18811,9 @@ export declare namespace eci {
17540
18811
  }
17541
18812
  interface ContainerGroupContainerSecurityContext {
17542
18813
  capabilities?: outputs.eci.ContainerGroupContainerSecurityContextCapability[];
18814
+ /**
18815
+ * Specifies whether to give extended privileges to this container. Default value: `false`. Valid values: `true` and `false`.
18816
+ */
17543
18817
  privileged?: boolean;
17544
18818
  runAsUser?: number;
17545
18819
  }
@@ -17737,6 +19011,9 @@ export declare namespace eci {
17737
19011
  type?: string;
17738
19012
  }
17739
19013
  interface ContainerGroupVolumeConfigFileVolumeConfigFileToPath {
19014
+ /**
19015
+ * The content of the configuration file. Maximum size: 32 KB.
19016
+ */
17740
19017
  content?: string;
17741
19018
  path?: string;
17742
19019
  }
@@ -18495,10 +19772,25 @@ export declare namespace ecp {
18495
19772
  }
18496
19773
  export declare namespace ecs {
18497
19774
  interface AutoProvisioningGroupLaunchTemplateConfig {
19775
+ /**
19776
+ * The instance type of the Nth extended configurations of the launch template.
19777
+ */
18498
19778
  instanceType?: string;
19779
+ /**
19780
+ * The maximum price of the instance type specified in the Nth extended configurations of the launch template.
19781
+ */
18499
19782
  maxPrice: string;
19783
+ /**
19784
+ * The priority of the instance type specified in the Nth extended configurations of the launch template. A value of 0 indicates the highest priority.
19785
+ */
18500
19786
  priority: string;
19787
+ /**
19788
+ * The ID of the VSwitch in the Nth extended configurations of the launch template.
19789
+ */
18501
19790
  vswitchId: string;
19791
+ /**
19792
+ * The weight of the instance type specified in the Nth extended configurations of the launch template.
19793
+ */
18502
19794
  weightedCapacity: string;
18503
19795
  }
18504
19796
  interface DedicatedHostNetworkAttribute {
@@ -19745,30 +21037,63 @@ export declare namespace ecs {
19745
21037
  * The finger print of the key pair.
19746
21038
  */
19747
21039
  fingerPrint: string;
21040
+ /**
21041
+ * The ID of the Key Pair.
21042
+ */
19748
21043
  id: string;
21044
+ /**
21045
+ * A list of ECS instances that has been bound this key pair.
21046
+ */
19749
21047
  instances: outputs.ecs.GetEcsKeyPairsKeyPairInstance[];
21048
+ /**
21049
+ * The Key Pair Name.
21050
+ */
19750
21051
  keyName: string;
19751
21052
  keyPairName: string;
19752
21053
  /**
19753
21054
  * The resource group Id.
19754
21055
  */
19755
21056
  resourceGroupId: string;
21057
+ /**
21058
+ * The tags.
21059
+ */
19756
21060
  tags: {
19757
21061
  [key: string]: any;
19758
21062
  };
19759
21063
  }
19760
21064
  interface GetEcsKeyPairsKeyPairInstance {
21065
+ /**
21066
+ * The ID of the availability zone where the ECS instance is located.
21067
+ */
19761
21068
  availabilityZone: string;
19762
21069
  description: string;
19763
21070
  imageId: string;
21071
+ /**
21072
+ * The ID of the ECS instance.
21073
+ */
19764
21074
  instanceId: string;
21075
+ /**
21076
+ * The name of the ECS instance.
21077
+ */
19765
21078
  instanceName: string;
19766
21079
  instanceType: string;
21080
+ /**
21081
+ * The Key Pair Name.
21082
+ */
19767
21083
  keyName: string;
21084
+ /**
21085
+ * The private IP address of the ECS instance.
21086
+ */
19768
21087
  privateIp: string;
21088
+ /**
21089
+ * The public IP address or EIP of the ECS instance.
21090
+ */
19769
21091
  publicIp: string;
19770
21092
  regionId: string;
19771
21093
  status: string;
21094
+ /**
21095
+ * The ID of the VSwitch attached to the ECS instance.
21096
+ */
19772
21097
  vswitchId: string;
19773
21098
  }
19774
21099
  interface GetEcsKeyPairsPair {
@@ -19780,6 +21105,9 @@ export declare namespace ecs {
19780
21105
  * The ID of the Key Pair.
19781
21106
  */
19782
21107
  id: string;
21108
+ /**
21109
+ * A list of ECS instances that has been bound this key pair.
21110
+ */
19783
21111
  instances: outputs.ecs.GetEcsKeyPairsPairInstance[];
19784
21112
  /**
19785
21113
  * The Key Pair Name.
@@ -19798,17 +21126,38 @@ export declare namespace ecs {
19798
21126
  };
19799
21127
  }
19800
21128
  interface GetEcsKeyPairsPairInstance {
21129
+ /**
21130
+ * The ID of the availability zone where the ECS instance is located.
21131
+ */
19801
21132
  availabilityZone: string;
19802
21133
  description: string;
19803
21134
  imageId: string;
21135
+ /**
21136
+ * The ID of the ECS instance.
21137
+ */
19804
21138
  instanceId: string;
21139
+ /**
21140
+ * The name of the ECS instance.
21141
+ */
19805
21142
  instanceName: string;
19806
21143
  instanceType: string;
21144
+ /**
21145
+ * The Key Pair Name.
21146
+ */
19807
21147
  keyName: string;
21148
+ /**
21149
+ * The private IP address of the ECS instance.
21150
+ */
19808
21151
  privateIp: string;
21152
+ /**
21153
+ * The public IP address or EIP of the ECS instance.
21154
+ */
19809
21155
  publicIp: string;
19810
21156
  regionId: string;
19811
21157
  status: string;
21158
+ /**
21159
+ * The ID of the VSwitch attached to the ECS instance.
21160
+ */
19812
21161
  vswitchId: string;
19813
21162
  }
19814
21163
  interface GetEcsLaunchTemplatesTemplate {
@@ -20255,6 +21604,9 @@ export declare namespace ecs {
20255
21604
  }
20256
21605
  interface GetEcsPrefixListsListEntry {
20257
21606
  cidr: string;
21607
+ /**
21608
+ * The description of the prefix list.
21609
+ */
20258
21610
  description: string;
20259
21611
  }
20260
21612
  interface GetEcsSnapshotGroupsGroup {
@@ -20560,12 +21912,30 @@ export declare namespace ecs {
20560
21912
  };
20561
21913
  }
20562
21914
  interface GetEipAddressesEip {
21915
+ /**
21916
+ * The maximum bandwidth of the EIP. Unit: Mbit/s.
21917
+ */
20563
21918
  bandwidth: string;
20564
21919
  creationTime: string;
21920
+ /**
21921
+ * Indicates whether deletion protection is enabled.
21922
+ */
20565
21923
  deletionProtection: boolean;
21924
+ /**
21925
+ * The ID of the Address.
21926
+ */
20566
21927
  id: string;
21928
+ /**
21929
+ * The ID of the instance with which the EIP is associated.
21930
+ */
20567
21931
  instanceId: string;
21932
+ /**
21933
+ * The type of the instance with which the EIP is associated.
21934
+ */
20568
21935
  instanceType: string;
21936
+ /**
21937
+ * The metering method of the EIP.
21938
+ */
20569
21939
  internetChargeType: string;
20570
21940
  /**
20571
21941
  * The eip address.
@@ -21638,21 +23008,29 @@ export declare namespace ecs {
21638
23008
  }
21639
23009
  interface InstanceNetworkInterfaces {
21640
23010
  /**
21641
- * The ID of the secondary ENI.
23011
+ * The index of the network card for Secondary ENI.
23012
+ */
23013
+ networkCardIndex: number;
23014
+ /**
23015
+ * The ID of the Secondary ENI.
21642
23016
  */
21643
23017
  networkInterfaceId: string;
21644
23018
  /**
21645
- * The communication mode of the ENI. Default value: `Standard`. Valid values:
23019
+ * The communication mode of the Secondary ENI. Default value: `Standard`. Valid values:
21646
23020
  * - `Standard`: Uses the TCP communication mode.
21647
23021
  * - `HighPerformance`: Uses the remote direct memory access (RDMA) communication mode with Elastic RDMA Interface (ERI) enabled.
21648
23022
  */
21649
23023
  networkInterfaceTrafficMode: string;
21650
23024
  /**
21651
- * The ID of security group N to which to assign ENI N.
23025
+ * The number of queues supported by the ERI.
23026
+ */
23027
+ queuePairNumber: number;
23028
+ /**
23029
+ * The ID of security group N to which to assign Secondary ENI N.
21652
23030
  */
21653
23031
  securityGroupIds: string[];
21654
23032
  /**
21655
- * The ID of the vSwitch to which to connect ENI N.
23033
+ * The ID of the vSwitch to which to connect Secondary ENI N.
21656
23034
  */
21657
23035
  vswitchId: string;
21658
23036
  }
@@ -21726,12 +23104,32 @@ export declare namespace ecs {
21726
23104
  vswitchId?: string;
21727
23105
  }
21728
23106
  interface LaunchTemplateSystemDisk {
23107
+ /**
23108
+ * The category of the disk:
23109
+ * - cloud: Basic cloud disk.
23110
+ * - cloud_efficiency: Ultra cloud disk.
23111
+ * - cloud_ssd: SSD cloud Disks.
23112
+ * - ephemeral_ssd: local SSD Disks
23113
+ * - cloud_essd: ESSD cloud Disks.
23114
+ *
23115
+ * Default to `cloudEfficiency`.
23116
+ */
21729
23117
  category: string;
23118
+ /**
23119
+ * Delete this data disk when the instance is destroyed. It only works on cloud, cloud_efficiency, cloudSsd and cloudEssd disk. If the category of this data disk was ephemeral_ssd, please don't set this param.
23120
+ *
23121
+ * Default to true
23122
+ */
21730
23123
  deleteWithInstance?: boolean;
21731
23124
  /**
21732
23125
  * Description of instance launch template version 1. It can be [2, 256] characters in length. It cannot start with "http://" or "https://". The default value is null.
21733
23126
  */
21734
23127
  description: string;
23128
+ /**
23129
+ * Encrypted the data in this disk.
23130
+ *
23131
+ * Default to false
23132
+ */
21735
23133
  encrypted?: boolean;
21736
23134
  iops?: string;
21737
23135
  /**
@@ -21739,6 +23137,14 @@ export declare namespace ecs {
21739
23137
  */
21740
23138
  name: string;
21741
23139
  performanceLevel: string;
23140
+ /**
23141
+ * The size of the data disk.
23142
+ * - cloud:[5, 2000]
23143
+ * - cloud_efficiency:[20, 32768]
23144
+ * - cloud_ssd:[20, 32768]
23145
+ * - cloud_essd:[20, 32768]
23146
+ * - ephemeral_ssd: [5, 800]
23147
+ */
21742
23148
  size: number;
21743
23149
  }
21744
23150
  interface ReservedInstanceOperationLock {
@@ -21932,13 +23338,31 @@ export declare namespace edas {
21932
23338
  type: string;
21933
23339
  }
21934
23340
  interface K8sSlbAttachmentSlbConfigPortMapping {
23341
+ /**
23342
+ * The ID of your tls certification, this is used for 'HTTPS' protocol only.
23343
+ */
21935
23344
  certId?: string;
23345
+ /**
23346
+ * The protocol of SLB instance configuration, values can be 'TCP', 'HTTP' or 'HTTPS'.
23347
+ */
21936
23348
  loadbalancerProtocol: string;
23349
+ /**
23350
+ * The backend k8s service configuration for SLB instance, which is supported for multiple configurations. See `servicePort` below.
23351
+ */
21937
23352
  servicePort: outputs.edas.K8sSlbAttachmentSlbConfigPortMappingServicePort;
21938
23353
  }
21939
23354
  interface K8sSlbAttachmentSlbConfigPortMappingServicePort {
23355
+ /**
23356
+ * The port of k8s service, values should be within range [1, 65535].
23357
+ */
21940
23358
  port: number;
23359
+ /**
23360
+ * The protocol of k8s service, values can be 'TCP' or 'UDP'.
23361
+ */
21941
23362
  protocol: string;
23363
+ /**
23364
+ * The port of k8s pod, values should be within range [1, 65535].
23365
+ */
21942
23366
  targetPort: number;
21943
23367
  }
21944
23368
  }
@@ -23313,6 +24737,9 @@ export declare namespace ehpc {
23313
24737
  volumeType?: string;
23314
24738
  }
23315
24739
  interface ClusterAdditionalVolumeRole {
24740
+ /**
24741
+ * The type of the nodes to which the additional file system is attached.
24742
+ */
23316
24743
  name?: string;
23317
24744
  }
23318
24745
  interface ClusterApplication {
@@ -23655,59 +25082,155 @@ export declare namespace elasticsearch {
23655
25082
  }
23656
25083
  export declare namespace emr {
23657
25084
  interface ClusterBootstrapAction {
25085
+ /**
25086
+ * bootstrap action args, e.g. "--a=b".
25087
+ */
23658
25088
  arg?: string;
25089
+ /**
25090
+ * bootstrap action execution fail strategy, ’FAILED_BLOCKED’ or ‘FAILED_CONTINUE’ . Default value: "FAILED_BLOCKED
25091
+ */
23659
25092
  executionFailStrategy?: string;
25093
+ /**
25094
+ * bootstrap action execution moment, ’BEFORE_INSTALL’ or ‘AFTER_STARTED’ . Default value: "BEFORE_INSTALL".
25095
+ */
23660
25096
  executionMoment?: string;
25097
+ /**
25098
+ * bootstrap action execution target, you can specify the host group name, e.g. "coreGroup". If this is not specified, the bootstrap action execution target is whole cluster.
25099
+ */
23661
25100
  executionTarget?: string;
23662
25101
  /**
23663
25102
  * The name of emr cluster. The name length must be less than 64. Supported characters: chinese character, english character, number, "-", "_".
23664
25103
  */
23665
25104
  name?: string;
25105
+ /**
25106
+ * bootstrap action path, e.g. "oss://bucket/path".
25107
+ */
23666
25108
  path?: string;
23667
25109
  }
23668
25110
  interface ClusterConfig {
25111
+ /**
25112
+ * Custom configuration service config key, e.g. ’dfs.replication’.
25113
+ */
23669
25114
  configKey: string;
25115
+ /**
25116
+ * Custom configuration service config value, e.g. ’3’.
25117
+ */
23670
25118
  configValue: string;
25119
+ /**
25120
+ * Custom configuration service file name, e.g. ’hdfs-site’.
25121
+ */
23671
25122
  fileName: string;
23672
25123
  serviceName: string;
23673
25124
  }
23674
25125
  interface ClusterHostGroup {
25126
+ /**
25127
+ * Auto renew for prepaid, ’true’ or ‘false’ . Default value: false.
25128
+ */
23675
25129
  autoRenew?: boolean;
23676
25130
  /**
23677
25131
  * Charge Type for this cluster. Supported value: PostPaid or PrePaid. Default value: PostPaid.
23678
25132
  */
23679
25133
  chargeType?: string;
25134
+ /**
25135
+ * Graceful decommission timeout, unit: seconds.
25136
+ */
23680
25137
  decommissionTimeout: number;
25138
+ /**
25139
+ * Data disk capacity.
25140
+ */
23681
25141
  diskCapacity?: string;
25142
+ /**
25143
+ * Data disk count.
25144
+ */
23682
25145
  diskCount?: string;
25146
+ /**
25147
+ * Data disk type. Supported value: cloud,cloud_efficiency,cloud_ssd,local_disk,cloud_essd.
25148
+ */
23683
25149
  diskType?: string;
25150
+ /**
25151
+ * Enable hadoop cluster of task node graceful decommission, ’true’ or ‘false’ . Default value: false.
25152
+ */
23684
25153
  enableGracefulDecommission: boolean;
23685
25154
  gpuDriver?: string;
25155
+ /**
25156
+ * host group name.
25157
+ */
23686
25158
  hostGroupName?: string;
25159
+ /**
25160
+ * host group type, supported value: MASTER, CORE or TASK, supported 'GATEWAY' available in 1.61.0+.
25161
+ */
23687
25162
  hostGroupType?: string;
25163
+ /**
25164
+ * Instance list for cluster scale down. This value follows the json format, e.g. ["instanceId1","instanceId2"]. escape character for " is \".
25165
+ */
23688
25166
  instanceList?: string;
25167
+ /**
25168
+ * Host Ecs instance type.
25169
+ */
23689
25170
  instanceType?: string;
25171
+ /**
25172
+ * Host number in this group.
25173
+ */
23690
25174
  nodeCount?: string;
23691
25175
  /**
23692
25176
  * If charge type is PrePaid, this should be specified, unit is month. Supported value: 1、2、3、4、5、6、7、8、9、12、24、36.
23693
25177
  */
23694
25178
  period: number;
25179
+ /**
25180
+ * System disk capacity.
25181
+ */
23695
25182
  sysDiskCapacity?: string;
25183
+ /**
25184
+ * System disk type. Supported value: cloud,cloud_efficiency,cloud_ssd,cloud_essd.
25185
+ */
23696
25186
  sysDiskType?: string;
23697
25187
  }
23698
25188
  interface ClusterMetaStoreConf {
25189
+ /**
25190
+ * Custom rds database password.
25191
+ */
23699
25192
  dbPassword: string;
25193
+ /**
25194
+ * Custom rds database connection url.
25195
+ */
23700
25196
  dbUrl: string;
25197
+ /**
25198
+ * Custom rds database user name.
25199
+ */
23701
25200
  dbUserName: string;
23702
25201
  }
23703
25202
  interface ClusterModifyClusterServiceConfig {
25203
+ /**
25204
+ * Cluster service configuration modification comment, e.g. "Modify tez configuration".
25205
+ */
23704
25206
  comment?: string;
25207
+ /**
25208
+ * Cluster service configuration modification params, e.g. ’{"hdfs-site":{"dfs.replication":"3"}}’.
25209
+ */
23705
25210
  configParams: string;
25211
+ /**
25212
+ * Cluster service configuration modification type.
25213
+ */
23706
25214
  configType?: string;
25215
+ /**
25216
+ * Cluster service configuration modification custom params, e.g. ’{"tez-site":{"key":{"Value":"value"}}}’.
25217
+ */
23707
25218
  customConfigParams?: string;
25219
+ /**
25220
+ * Cluster service configuration modification related gateway cluster id list.
25221
+ */
23708
25222
  gatewayClusterIdLists?: string[];
25223
+ /**
25224
+ * Cluster service configuration modification node group id, e.g. ’G-XXX’.
25225
+ */
23709
25226
  groupId?: string;
25227
+ /**
25228
+ * Cluster service configuration modification host instance id, e.g. ’i-bp146tnrkq4tcxxxxx’.
25229
+ */
23710
25230
  hostInstanceId?: string;
25231
+ /**
25232
+ * Cluster service configuration modification refresh host config, ’true’ or ’false’.
25233
+ */
23711
25234
  refreshHostConfig?: boolean;
23712
25235
  serviceName: string;
23713
25236
  }
@@ -23860,6 +25383,9 @@ export declare namespace emr {
23860
25383
  tags: {
23861
25384
  [key: string]: any;
23862
25385
  };
25386
+ /**
25387
+ * Disk type.
25388
+ */
23863
25389
  type: string;
23864
25390
  /**
23865
25391
  * The EMR permission name used.
@@ -23889,7 +25415,13 @@ export declare namespace emr {
23889
25415
  zkLinks: outputs.emr.GetClustersClusterAccessInfoZkLink[];
23890
25416
  }
23891
25417
  interface GetClustersClusterAccessInfoZkLink {
25418
+ /**
25419
+ * The access link address of ZooKeeper.
25420
+ */
23892
25421
  link: string;
25422
+ /**
25423
+ * The port of ZooKeeper.
25424
+ */
23893
25425
  port: string;
23894
25426
  }
23895
25427
  interface GetClustersClusterBootstrapActionList {
@@ -24211,14 +25743,29 @@ export declare namespace emrv2 {
24211
25743
  * @deprecated Field 'node_group_id' has been deprecated from provider version 1.227.0. New field 'node_group_ids' replaces it.
24212
25744
  */
24213
25745
  nodeGroupId?: string;
25746
+ /**
25747
+ * The bootstrap scripts execution target node group ids.
25748
+ */
24214
25749
  nodeGroupIds?: string[];
24215
25750
  /**
24216
25751
  * @deprecated Field 'node_group_name' has been deprecated from provider version 1.227.0. New field 'node_group_names' replaces it.
24217
25752
  */
24218
25753
  nodeGroupName?: string;
25754
+ /**
25755
+ * The bootstrap scripts execution target node group names.
25756
+ */
24219
25757
  nodeGroupNames?: string[];
25758
+ /**
25759
+ * The bootstrap scripts execution target node group types.
25760
+ */
24220
25761
  nodeGroupTypes?: string[];
25762
+ /**
25763
+ * The bootstrap scripts execution target node names.
25764
+ */
24221
25765
  nodeNames?: string[];
25766
+ /**
25767
+ * The bootstrap scripts execution target node select type. Supported value: NODE, NODEGROUP or CLUSTER.
25768
+ */
24222
25769
  nodeSelectType: string;
24223
25770
  }
24224
25771
  interface ClusterNodeAttribute {
@@ -24326,70 +25873,193 @@ export declare namespace emrv2 {
24326
25873
  withPublicIp: boolean;
24327
25874
  }
24328
25875
  interface ClusterNodeGroupAutoScalingPolicy {
25876
+ /**
25877
+ * The constraints of auto scaling policy. See `constraints` below.
25878
+ */
24329
25879
  constraints?: outputs.emrv2.ClusterNodeGroupAutoScalingPolicyConstraints;
25880
+ /**
25881
+ * The scaling rules of auto scaling policy. See `scalingRules` below.
25882
+ */
24330
25883
  scalingRules?: outputs.emrv2.ClusterNodeGroupAutoScalingPolicyScalingRule[];
24331
25884
  }
24332
25885
  interface ClusterNodeGroupAutoScalingPolicyConstraints {
25886
+ /**
25887
+ * The maximum capacity of constraints for emr node group auto scaling policy.
25888
+ */
24333
25889
  maxCapacity?: number;
25890
+ /**
25891
+ * The minimum capacity of constraints for emr node group auto scaling policy.
25892
+ */
24334
25893
  minCapacity?: number;
24335
25894
  }
24336
25895
  interface ClusterNodeGroupAutoScalingPolicyScalingRule {
25896
+ /**
25897
+ * The activity type of auto scaling policy. Valid values: `SCALE_OUT` and `SCALE_IN`.
25898
+ */
24337
25899
  activityType: string;
25900
+ /**
25901
+ * The adjustment type of auto scaling policy. Valid values: `CHANGE_IN_CAPACITY` and `EXACT_CAPACITY`.
25902
+ */
24338
25903
  adjustmentType?: string;
25904
+ /**
25905
+ * The adjustment value of auto scaling policy. The value should between 1 and 5000.
25906
+ */
24339
25907
  adjustmentValue: number;
25908
+ /**
25909
+ * The trigger metrics of scaling rules for emr node group auto scaling policy. See `metricsTrigger` below.
25910
+ */
24340
25911
  metricsTrigger?: outputs.emrv2.ClusterNodeGroupAutoScalingPolicyScalingRuleMetricsTrigger;
25912
+ /**
25913
+ * The minimum adjustment value of auto scaling policy.
25914
+ */
24341
25915
  minAdjustmentValue?: number;
25916
+ /**
25917
+ * The rule name of auto scaling policy.
25918
+ */
24342
25919
  ruleName: string;
25920
+ /**
25921
+ * The trigger time of scaling rules for emr node group auto scaling policy. See `timeTrigger` below.
25922
+ */
24343
25923
  timeTrigger?: outputs.emrv2.ClusterNodeGroupAutoScalingPolicyScalingRuleTimeTrigger;
25924
+ /**
25925
+ * The trigger type of auto scaling policy. Valid values: `TIME_TRIGGER` and `METRICS_TRIGGER`.
25926
+ */
24344
25927
  triggerType: string;
24345
25928
  }
24346
25929
  interface ClusterNodeGroupAutoScalingPolicyScalingRuleMetricsTrigger {
25930
+ /**
25931
+ * The condition logic operator for this scaling rule specific metrics trigger. Valid values: `And` and `Or`.
25932
+ */
24347
25933
  conditionLogicOperator?: string;
25934
+ /**
25935
+ * The conditions for this scaling rule specific metrics trigger. See `conditions` below.
25936
+ */
24348
25937
  conditions?: outputs.emrv2.ClusterNodeGroupAutoScalingPolicyScalingRuleMetricsTriggerCondition[];
25938
+ /**
25939
+ * The time of cool down interval for this scaling rule specific metrics trigger.
25940
+ */
24349
25941
  coolDownInterval?: number;
25942
+ /**
25943
+ * The evaluation count for this scaling rule specific metrics trigger.
25944
+ */
24350
25945
  evaluationCount: number;
25946
+ /**
25947
+ * The time constraints for this scaling rule specific metrics trigger. See `timeConstraints` below.
25948
+ */
24351
25949
  timeConstraints?: outputs.emrv2.ClusterNodeGroupAutoScalingPolicyScalingRuleMetricsTriggerTimeConstraint[];
25950
+ /**
25951
+ * The time window for this scaling rule specific metrics trigger.
25952
+ */
24352
25953
  timeWindow: number;
24353
25954
  }
24354
25955
  interface ClusterNodeGroupAutoScalingPolicyScalingRuleMetricsTriggerCondition {
25956
+ /**
25957
+ * The comparison operator for this scaling rule specific metrics trigger. Invalid values: `EQ`, `NE`, `GT`, `LT`, `GE`, `LE`.
25958
+ */
24355
25959
  comparisonOperator: string;
25960
+ /**
25961
+ * The metric name for this scaling rule specific metrics trigger.
25962
+ */
24356
25963
  metricName: string;
25964
+ /**
25965
+ * The statistics for this scaling rule specific metrics trigger.
25966
+ */
24357
25967
  statistics: string;
24358
25968
  /**
24359
25969
  * A mapping of tags to assign to the resource.
24360
25970
  */
24361
25971
  tags?: outputs.emrv2.ClusterNodeGroupAutoScalingPolicyScalingRuleMetricsTriggerConditionTag[];
25972
+ /**
25973
+ * The threshold for this scaling rule specific metrics trigger.
25974
+ */
24362
25975
  threshold: number;
24363
25976
  }
24364
25977
  interface ClusterNodeGroupAutoScalingPolicyScalingRuleMetricsTriggerConditionTag {
25978
+ /**
25979
+ * The tag key for this scaling rule specific metrics trigger.
25980
+ */
24365
25981
  key: string;
25982
+ /**
25983
+ * The tag value for this scaling rule specific metrics trigger.
25984
+ */
24366
25985
  value?: string;
24367
25986
  }
24368
25987
  interface ClusterNodeGroupAutoScalingPolicyScalingRuleMetricsTriggerTimeConstraint {
25988
+ /**
25989
+ * The end time for this scaling rule specific metrics trigger.
25990
+ */
24369
25991
  endTime?: string;
25992
+ /**
25993
+ * The start time for this scaling rule specific metrics trigger.
25994
+ */
24370
25995
  startTime?: string;
24371
25996
  }
24372
25997
  interface ClusterNodeGroupAutoScalingPolicyScalingRuleTimeTrigger {
25998
+ /**
25999
+ * The end time for this scaling rule specific metrics trigger.
26000
+ */
24373
26001
  endTime?: string;
26002
+ /**
26003
+ * The launch expiration time for this scaling rule specific time trigger. The value should between 0 and 3600.
26004
+ */
24374
26005
  launchExpirationTime?: number;
26006
+ /**
26007
+ * The launch time for this scaling rule specific time trigger.
26008
+ */
24375
26009
  launchTime: string;
26010
+ /**
26011
+ * The recurrence type for this scaling rule specific time trigger. Valid values: `MINUTELY`, `HOURLY`, `DAILY`, `WEEKLY`, `MONTHLY`.
26012
+ */
24376
26013
  recurrenceType?: string;
26014
+ /**
26015
+ * The recurrence value for this scaling rule specific time trigger.
26016
+ */
24377
26017
  recurrenceValue?: string;
26018
+ /**
26019
+ * The start time for this scaling rule specific metrics trigger.
26020
+ */
24378
26021
  startTime?: string;
24379
26022
  }
24380
26023
  interface ClusterNodeGroupCostOptimizedConfig {
26024
+ /**
26025
+ * The cost optimized configuration which on demand based capacity.
26026
+ */
24381
26027
  onDemandBaseCapacity: number;
26028
+ /**
26029
+ * The cost optimized configuration which on demand percentage above based capacity.
26030
+ */
24382
26031
  onDemandPercentageAboveBaseCapacity: number;
26032
+ /**
26033
+ * The cost optimized configuration with spot instance pools.
26034
+ */
24383
26035
  spotInstancePools: number;
24384
26036
  }
24385
26037
  interface ClusterNodeGroupDataDisk {
26038
+ /**
26039
+ * The type of the data disk. Valid values: `cloudEfficiency` and `cloudEssd`.
26040
+ */
24386
26041
  category: string;
26042
+ /**
26043
+ * The count of a data disk.
26044
+ */
24387
26045
  count: number;
26046
+ /**
26047
+ * Worker node data disk performance level, when `category` values `cloudEssd`, the optional values are `PL0`, `PL1`, `PL2` or `PL3`, but the specific performance level is related to the disk capacity.
26048
+ */
24388
26049
  performanceLevel: string;
26050
+ /**
26051
+ * The size of a data disk, at least 40. Unit: GiB.
26052
+ */
24389
26053
  size: number;
24390
26054
  }
24391
26055
  interface ClusterNodeGroupSpotBidPrice {
26056
+ /**
26057
+ * The spot bid price of a PayAsYouGo instance.
26058
+ */
24392
26059
  bidPrice: number;
26060
+ /**
26061
+ * Host Ecs instance type.
26062
+ */
24393
26063
  instanceType: string;
24394
26064
  }
24395
26065
  interface ClusterNodeGroupSubscriptionConfig {
@@ -24419,9 +26089,21 @@ export declare namespace emrv2 {
24419
26089
  paymentDurationUnit: string;
24420
26090
  }
24421
26091
  interface ClusterNodeGroupSystemDisk {
26092
+ /**
26093
+ * The type of the data disk. Valid values: `cloudEfficiency` and `cloudEssd`.
26094
+ */
24422
26095
  category: string;
26096
+ /**
26097
+ * The count of a data disk.
26098
+ */
24423
26099
  count: number;
26100
+ /**
26101
+ * Worker node data disk performance level, when `category` values `cloudEssd`, the optional values are `PL0`, `PL1`, `PL2` or `PL3`, but the specific performance level is related to the disk capacity.
26102
+ */
24424
26103
  performanceLevel: string;
26104
+ /**
26105
+ * The size of a data disk, at least 40. Unit: GiB.
26106
+ */
24425
26107
  size: number;
24426
26108
  }
24427
26109
  interface ClusterSubscriptionConfig {
@@ -24938,7 +26620,13 @@ export declare namespace ess {
24938
26620
  type?: string;
24939
26621
  }
24940
26622
  interface EciScalingConfigurationVolumeConfigFileVolumeConfigFileToPath {
26623
+ /**
26624
+ * The content of the configuration file. Maximum size: 32 KB.
26625
+ */
24941
26626
  content?: string;
26627
+ /**
26628
+ * The relative file path.
26629
+ */
24942
26630
  path?: string;
24943
26631
  }
24944
26632
  interface GetAlarmsAlarm {
@@ -25514,8 +27202,17 @@ export declare namespace ess {
25514
27202
  vserverAttributes: outputs.ess.ScalingGroupVServerGroupsVserverGroupVserverAttribute[];
25515
27203
  }
25516
27204
  interface ScalingGroupVServerGroupsVserverGroupVserverAttribute {
27205
+ /**
27206
+ * The port will be used for VServer Group backend server.
27207
+ */
25517
27208
  port: number;
27209
+ /**
27210
+ * ID of VServer Group.
27211
+ */
25518
27212
  vserverGroupId: string;
27213
+ /**
27214
+ * The weight of an ECS instance attached to the VServer Group.
27215
+ */
25519
27216
  weight: number;
25520
27217
  }
25521
27218
  interface ScalingRuleAlarmDimension {
@@ -25573,41 +27270,107 @@ export declare namespace eventbridge {
25573
27270
  oauthParameters?: outputs.eventbridge.ConnectionAuthParametersOauthParameters;
25574
27271
  }
25575
27272
  interface ConnectionAuthParametersApiKeyAuthParameters {
27273
+ /**
27274
+ * The name of the API key.
27275
+ */
25576
27276
  apiKeyName?: string;
27277
+ /**
27278
+ * The value of the API key.
27279
+ */
25577
27280
  apiKeyValue?: string;
25578
27281
  }
25579
27282
  interface ConnectionAuthParametersBasicAuthParameters {
27283
+ /**
27284
+ * The password for basic authentication.
27285
+ */
25580
27286
  password?: string;
27287
+ /**
27288
+ * The username for basic authentication.
27289
+ */
25581
27290
  username?: string;
25582
27291
  }
25583
27292
  interface ConnectionAuthParametersOauthParameters {
27293
+ /**
27294
+ * The IP address of the authorized endpoint.
27295
+ */
25584
27296
  authorizationEndpoint?: string;
27297
+ /**
27298
+ * The parameters that are configured for the client. See `clientParameters` below.
27299
+ */
25585
27300
  clientParameters?: outputs.eventbridge.ConnectionAuthParametersOauthParametersClientParameters;
27301
+ /**
27302
+ * The HTTP request method. Valid values: `GET`, `POST`, `HEAD`, `DELETE`, `PUT`, `PATCH`.
27303
+ */
25586
27304
  httpMethod?: string;
27305
+ /**
27306
+ * The request parameters that are configured for OAuth authentication. See `oauthHttpParameters` below.
27307
+ */
25587
27308
  oauthHttpParameters?: outputs.eventbridge.ConnectionAuthParametersOauthParametersOauthHttpParameters;
25588
27309
  }
25589
27310
  interface ConnectionAuthParametersOauthParametersClientParameters {
27311
+ /**
27312
+ * The ID of the client.
27313
+ */
25590
27314
  clientId?: string;
27315
+ /**
27316
+ * The AccessKey secret of the client.
27317
+ */
25591
27318
  clientSecret?: string;
25592
27319
  }
25593
27320
  interface ConnectionAuthParametersOauthParametersOauthHttpParameters {
27321
+ /**
27322
+ * The parameters that are configured for the request body. See `bodyParameters` below.
27323
+ */
25594
27324
  bodyParameters?: outputs.eventbridge.ConnectionAuthParametersOauthParametersOauthHttpParametersBodyParameter[];
27325
+ /**
27326
+ * The parameters that are configured for the request header. See `headerParameters` below.
27327
+ */
25595
27328
  headerParameters?: outputs.eventbridge.ConnectionAuthParametersOauthParametersOauthHttpParametersHeaderParameter[];
27329
+ /**
27330
+ * The parameters that are configured for the request path. See `queryStringParameters` below.
27331
+ */
25596
27332
  queryStringParameters?: outputs.eventbridge.ConnectionAuthParametersOauthParametersOauthHttpParametersQueryStringParameter[];
25597
27333
  }
25598
27334
  interface ConnectionAuthParametersOauthParametersOauthHttpParametersBodyParameter {
27335
+ /**
27336
+ * Specifies whether to enable authentication.
27337
+ */
25599
27338
  isValueSecret?: string;
27339
+ /**
27340
+ * The key of the request path.
27341
+ */
25600
27342
  key?: string;
27343
+ /**
27344
+ * The key of the request path.
27345
+ */
25601
27346
  value?: string;
25602
27347
  }
25603
27348
  interface ConnectionAuthParametersOauthParametersOauthHttpParametersHeaderParameter {
27349
+ /**
27350
+ * Specifies whether to enable authentication.
27351
+ */
25604
27352
  isValueSecret?: string;
27353
+ /**
27354
+ * The key of the request path.
27355
+ */
25605
27356
  key?: string;
27357
+ /**
27358
+ * The key of the request path.
27359
+ */
25606
27360
  value?: string;
25607
27361
  }
25608
27362
  interface ConnectionAuthParametersOauthParametersOauthHttpParametersQueryStringParameter {
27363
+ /**
27364
+ * Specifies whether to enable authentication.
27365
+ */
25609
27366
  isValueSecret?: string;
27367
+ /**
27368
+ * The key of the request path.
27369
+ */
25610
27370
  key?: string;
27371
+ /**
27372
+ * The key of the request path.
27373
+ */
25611
27374
  value?: string;
25612
27375
  }
25613
27376
  interface ConnectionNetworkParameters {
@@ -25749,12 +27512,41 @@ export declare namespace eventbridge {
25749
27512
  type: string;
25750
27513
  }
25751
27514
  interface RuleTargetDeadLetterQueue {
27515
+ /**
27516
+ * The Alibaba Cloud Resource Name (ARN) of the dead letter queue. Events that are not processed or whose maximum retries are exceeded are written to the dead-letter queue. The ARN feature is supported by the following queue types: MNS and Message Queue for Apache RocketMQ.
27517
+ */
25752
27518
  arn?: string;
25753
27519
  }
25754
27520
  interface RuleTargetParamList {
27521
+ /**
27522
+ * The format of the event target parameter. Valid values: `ORIGINAL`, `TEMPLATE`, `JSONPATH`, `CONSTANT`.
27523
+ */
25755
27524
  form: string;
27525
+ /**
27526
+ * The resource parameter of the event target. For more information, see [How to use it](https://www.alibabacloud.com/help/en/eventbridge/latest/event-target-parameters)
27527
+ */
25756
27528
  resourceKey: string;
27529
+ /**
27530
+ * The template of the event target parameter.
27531
+ */
25757
27532
  template?: string;
27533
+ /**
27534
+ * The value of the event target parameter.
27535
+ *
27536
+ * > **NOTE:** There exists a potential diff error that the backend service will return a default param as following:
27537
+ *
27538
+ * ```
27539
+ * param_list {
27540
+ * resource_key = "IsBase64Encode"
27541
+ * form = "CONSTANT"
27542
+ * value = "false"
27543
+ * template = ""
27544
+ * }
27545
+ * ```
27546
+ *
27547
+ * In order to fix the diff, from version 1.160.0, this resource has removed the param which `resourceKey = "IsBase64Encode"` and `value = "false"`.
27548
+ * If you want to set `resourceKey = "IsBase64Encode"`, please avoid to set `value = "false"`.
27549
+ */
25758
27550
  value?: string;
25759
27551
  }
25760
27552
  }
@@ -26145,7 +27937,14 @@ export declare namespace expressconnect {
26145
27937
  vlanId: number;
26146
27938
  }
26147
27939
  interface GetVirtualBorderRoutersFilter {
27940
+ /**
27941
+ * The key of the field to filter by, as defined by
27942
+ * [Alibaba Cloud API](https://www.alibabacloud.com/help/en/doc-detail/124791.htm).
27943
+ */
26148
27944
  key?: string;
27945
+ /**
27946
+ * Set of values that are accepted for the given field.
27947
+ */
26149
27948
  values?: string[];
26150
27949
  }
26151
27950
  interface GetVirtualBorderRoutersRouter {
@@ -26465,9 +28264,15 @@ export declare namespace fc {
26465
28264
  onSuccess?: outputs.fc.FunctionAsyncInvokeConfigDestinationConfigOnSuccess;
26466
28265
  }
26467
28266
  interface FunctionAsyncInvokeConfigDestinationConfigOnFailure {
28267
+ /**
28268
+ * Alicloud Resource Name (ARN) of the destination resource. See the [Developer Guide](https://www.alibabacloud.com/help/doc-detail/181866.htm) for acceptable resource types and associated RAM permissions.
28269
+ */
26468
28270
  destination: string;
26469
28271
  }
26470
28272
  interface FunctionAsyncInvokeConfigDestinationConfigOnSuccess {
28273
+ /**
28274
+ * Alicloud Resource Name (ARN) of the destination resource. See the [Developer Guide](https://www.alibabacloud.com/help/doc-detail/181866.htm) for acceptable resource types and associated RAM permissions.
28275
+ */
26471
28276
  destination: string;
26472
28277
  }
26473
28278
  interface FunctionCustomContainerConfig {
@@ -26807,7 +28612,13 @@ export declare namespace fc {
26807
28612
  userId: number;
26808
28613
  }
26809
28614
  interface ServiceNasConfigMountPoint {
28615
+ /**
28616
+ * The local address where to mount your remote NAS directory.
28617
+ */
26810
28618
  mountDir: string;
28619
+ /**
28620
+ * The address of the remote NAS directory.
28621
+ */
26811
28622
  serverAddr: string;
26812
28623
  }
26813
28624
  interface ServiceTracingConfig {
@@ -26887,7 +28698,13 @@ export declare namespace fc {
26887
28698
  searches?: string[];
26888
28699
  }
26889
28700
  interface V2FunctionCustomDnsDnsOption {
28701
+ /**
28702
+ * DNS option name.
28703
+ */
26890
28704
  name?: string;
28705
+ /**
28706
+ * DNS option value.
28707
+ */
26891
28708
  value?: string;
26892
28709
  }
26893
28710
  interface V2FunctionCustomHealthCheckConfig {
@@ -27141,9 +28958,15 @@ export declare namespace ga {
27141
28958
  ruleActionValue?: string;
27142
28959
  }
27143
28960
  interface ForwardingRuleRuleActionForwardGroupConfig {
28961
+ /**
28962
+ * The information about the endpoint group. See `serverGroupTuples` below.
28963
+ */
27144
28964
  serverGroupTuples: outputs.ga.ForwardingRuleRuleActionForwardGroupConfigServerGroupTuple[];
27145
28965
  }
27146
28966
  interface ForwardingRuleRuleActionForwardGroupConfigServerGroupTuple {
28967
+ /**
28968
+ * The ID of the endpoint group.
28969
+ */
27147
28970
  endpointGroupId: string;
27148
28971
  }
27149
28972
  interface ForwardingRuleRuleCondition {
@@ -27161,9 +28984,15 @@ export declare namespace ga {
27161
28984
  ruleConditionType: string;
27162
28985
  }
27163
28986
  interface ForwardingRuleRuleConditionHostConfig {
28987
+ /**
28988
+ * The domain name is 3-128 characters long, which can contain letters, numbers, dashes (-) and width period (.), and supports the use of asterisk (*) and width question mark (?) as wildcard characters.
28989
+ */
27164
28990
  values?: string[];
27165
28991
  }
27166
28992
  interface ForwardingRuleRuleConditionPathConfig {
28993
+ /**
28994
+ * The domain name is 3-128 characters long, which can contain letters, numbers, dashes (-) and width period (.), and supports the use of asterisk (*) and width question mark (?) as wildcard characters.
28995
+ */
27167
28996
  values?: string[];
27168
28997
  }
27169
28998
  interface GetAcceleratorSpareIpAttachmentsAttachment {
@@ -28128,21 +29957,51 @@ export declare namespace gpdb {
28128
29957
  scaleOut?: outputs.gpdb.DbInstancePlanPlanConfigScaleOut;
28129
29958
  }
28130
29959
  interface DbInstancePlanPlanConfigPause {
29960
+ /**
29961
+ * The executed time of the Plan.
29962
+ */
28131
29963
  executeTime: string;
29964
+ /**
29965
+ * The Cron Time of the plan.
29966
+ */
28132
29967
  planCronTime?: string;
28133
29968
  }
28134
29969
  interface DbInstancePlanPlanConfigResume {
29970
+ /**
29971
+ * The executed time of the Plan.
29972
+ */
28135
29973
  executeTime: string;
29974
+ /**
29975
+ * The Cron Time of the plan.
29976
+ */
28136
29977
  planCronTime?: string;
28137
29978
  }
28138
29979
  interface DbInstancePlanPlanConfigScaleIn {
29980
+ /**
29981
+ * The executed time of the Plan.
29982
+ */
28139
29983
  executeTime: string;
29984
+ /**
29985
+ * The Cron Time of the plan.
29986
+ */
28140
29987
  planCronTime?: string;
29988
+ /**
29989
+ * The segment Node Num of the Plan.
29990
+ */
28141
29991
  segmentNodeNum?: string;
28142
29992
  }
28143
29993
  interface DbInstancePlanPlanConfigScaleOut {
29994
+ /**
29995
+ * The executed time of the Plan.
29996
+ */
28144
29997
  executeTime: string;
29998
+ /**
29999
+ * The Cron Time of the plan.
30000
+ */
28145
30001
  planCronTime?: string;
30002
+ /**
30003
+ * The segment Node Num of the Plan.
30004
+ */
28146
30005
  segmentNodeNum?: string;
28147
30006
  }
28148
30007
  interface GetAccountsAccount {
@@ -28307,7 +30166,13 @@ export declare namespace gpdb {
28307
30166
  */
28308
30167
  createTime: string;
28309
30168
  creationTime: string;
30169
+ /**
30170
+ * The db instance category. Valid values: `HighAvailability`, `Basic`.
30171
+ */
28310
30172
  dbInstanceCategory: string;
30173
+ /**
30174
+ * The db instance class.
30175
+ */
28311
30176
  dbInstanceClass: string;
28312
30177
  /**
28313
30178
  * The db instance id.
@@ -28361,6 +30226,9 @@ export declare namespace gpdb {
28361
30226
  * The billing method of the instance. Valid values: `Subscription`, `PayAsYouGo`.
28362
30227
  */
28363
30228
  paymentType: string;
30229
+ /**
30230
+ * Region ID the instance belongs to.
30231
+ */
28364
30232
  regionId: string;
28365
30233
  /**
28366
30234
  * Calculate the number of nodes. The value range of the high-availability version of the storage elastic mode is 4 to 512, and the value must be a multiple of 4. The value range of the basic version of the storage elastic mode is 2 to 512, and the value must be a multiple of 2. The-Serverless version has a value range of 2 to 512. The value must be a multiple of 2.
@@ -28815,8 +30683,19 @@ export declare namespace hbase {
28815
30683
  }
28816
30684
  export declare namespace hbr {
28817
30685
  interface GetBackupJobsFilter {
30686
+ /**
30687
+ * The key of the field to filter. Valid values: `PlanId`, `VaultId`, `InstanceId`, `Bucket`, `FileSystemId`, `CompleteTime`.
30688
+ */
28818
30689
  key?: string;
30690
+ /**
30691
+ * The operator of the field to filter. Valid values: `EQUAL`, `NOT_EQUAL`, `GREATER_THAN`, `GREATER_THAN_OR_EQUAL`, `LESS_THAN`, `LESS_THAN_OR_EQUAL`, `BETWEEN`, `IN`.
30692
+ */
28819
30693
  operator?: string;
30694
+ /**
30695
+ * Set of values that are accepted for the given field.
30696
+ *
30697
+ * > **NOTE:** Numeric types such as `CompleteTime` do not support `IN` operations for the time being.
30698
+ */
28820
30699
  values?: string[];
28821
30700
  }
28822
30701
  interface GetBackupJobsJob {
@@ -29662,7 +31541,13 @@ export declare namespace hbr {
29662
31541
  vaultId: string;
29663
31542
  }
29664
31543
  interface GetServerBackupPlansFilter {
31544
+ /**
31545
+ * The key of the field to filter. Valid values: `planId`, `instanceId`, `planName`.
31546
+ */
29665
31547
  key?: string;
31548
+ /**
31549
+ * Set of values that are accepted for the given field.
31550
+ */
29666
31551
  values?: string[];
29667
31552
  }
29668
31553
  interface GetServerBackupPlansPlan {
@@ -29958,6 +31843,9 @@ export declare namespace hbr {
29958
31843
  vaultType: string;
29959
31844
  }
29960
31845
  interface OtsBackupPlanOtsDetail {
31846
+ /**
31847
+ * The names of the destination tables in the Tablestore instance. **Note:** Required while sourceType equals `OTS_TABLE`.
31848
+ */
29961
31849
  tableNames?: string[];
29962
31850
  }
29963
31851
  interface OtsBackupPlanRule {
@@ -29973,6 +31861,9 @@ export declare namespace hbr {
29973
31861
  * Backup retention days, the minimum is 1.
29974
31862
  */
29975
31863
  retention?: string;
31864
+ /**
31865
+ * The name of the backup rule.**Note:** Required while sourceType equals `OTS_TABLE`. `ruleName` should be unique for the specific user.
31866
+ */
29976
31867
  ruleName?: string;
29977
31868
  /**
29978
31869
  * Backup strategy. Optional format: `I|{startTime}|{interval}`. It means to execute a backup task every `{interval}` starting from `{startTime}`. The backup task for the elapsed time will not be compensated. If the last backup task has not completed yet, the next backup task will not be triggered.
@@ -29987,8 +31878,17 @@ export declare namespace hbr {
29987
31878
  udmDetail: outputs.hbr.PolicyBindingAdvancedOptionsUdmDetail;
29988
31879
  }
29989
31880
  interface PolicyBindingAdvancedOptionsUdmDetail {
31881
+ /**
31882
+ * Custom KMS key ID of encrypted copy.
31883
+ */
29990
31884
  destinationKmsKeyId?: string;
31885
+ /**
31886
+ * The list of backup disks. If it is empty, all disks are backed up.
31887
+ */
29991
31888
  diskIdLists?: string[];
31889
+ /**
31890
+ * List of cloud disk IDs that are not backed up.
31891
+ */
29992
31892
  excludeDiskIdLists?: string[];
29993
31893
  }
29994
31894
  interface PolicyRule {
@@ -30034,10 +31934,19 @@ export declare namespace hbr {
30034
31934
  vaultId?: string;
30035
31935
  }
30036
31936
  interface PolicyRuleRetentionRule {
31937
+ /**
31938
+ * Valid values: **annually**, **MONTHLY**, and **WEEKLY**:- **annually**: the first backup of each year. - **MONTHLY**: The first backup of the month. - **WEEKLY**: The first backup of the week.
31939
+ */
30037
31940
  advancedRetentionType?: string;
31941
+ /**
31942
+ * Retention time, in days.
31943
+ */
30038
31944
  retention?: number;
30039
31945
  }
30040
31946
  interface RestoreJobOtsDetail {
31947
+ /**
31948
+ * Whether to overwrite the existing table storage recovery task. Valid values: `true`, `false`.
31949
+ */
30041
31950
  overwriteExisting: boolean;
30042
31951
  }
30043
31952
  interface ServerBackupPlanDetail {
@@ -30157,7 +32066,15 @@ export declare namespace imm {
30157
32066
  }
30158
32067
  export declare namespace imp {
30159
32068
  interface AppTemplateConfigList {
32069
+ /**
32070
+ * Configuration item key. Valid values: ["config.appCallbackAuthKey","config.appCallbackUrl","config.callbackClass.live","config.callbackClass.user","config.livePullDomain","config.livePushDomain","config.multipleClientsLogin","config.regionId","config.streamChangeCallbackUrl"].
32071
+ */
30160
32072
  key: string;
32073
+ /**
32074
+ * Configuration item content.
32075
+ *
32076
+ * > **NOTE:** By default, the attribute `configList` will return all of nine keys with empty value. If you want to set one or more of the key's value, you had better also set other keys, otherwise, there will be a diff.
32077
+ */
30161
32078
  value: string;
30162
32079
  }
30163
32080
  interface GetAppTemplatesTemplate {
@@ -31224,8 +33141,17 @@ export declare namespace log {
31224
33141
  userCmkInfo: outputs.log.StoreEncryptConfUserCmkInfo;
31225
33142
  }
31226
33143
  interface StoreEncryptConfUserCmkInfo {
33144
+ /**
33145
+ * Role arn.
33146
+ */
31227
33147
  arn: string;
33148
+ /**
33149
+ * User master key id.
33150
+ */
31228
33151
  cmkKeyId: string;
33152
+ /**
33153
+ * Region id where the user master key id is located.
33154
+ */
31229
33155
  regionId: string;
31230
33156
  }
31231
33157
  interface StoreIndexFieldSearch {
@@ -31589,99 +33515,112 @@ export declare namespace maxcompute {
31589
33515
  }
31590
33516
  interface ProjectIpWhiteList {
31591
33517
  /**
31592
- * Classic network IP white list.
33518
+ * Set the IP address whitelist in the classic network. Only devices in the whitelist are allowed to access the project.> **NOTE:** If you only configure a classic network IP address whitelist, access to the classic network is restricted and all access to the VPC is prohibited.
31593
33519
  */
31594
33520
  ipList?: string;
31595
33521
  /**
31596
- * VPC network whitelist.
33522
+ * Set the IP address whitelist in the VPC network to allow only devices in the whitelist to access the project space.> **NOTE:** If you only configure a VPC network IP address whitelist, access to the VPC network is restricted and access to the classic network is prohibited.
31597
33523
  */
31598
33524
  vpcIpList?: string;
31599
33525
  }
31600
33526
  interface ProjectProperties {
31601
33527
  /**
31602
- * Whether to allow full table scan.
33528
+ * Whether to allow full table scan. Default: false.
31603
33529
  */
31604
- allowFullScan: boolean;
33530
+ allowFullScan?: boolean;
31605
33531
  /**
31606
33532
  * Whether to turn on Decimal2.0.
31607
33533
  */
31608
- enableDecimal2: boolean;
33534
+ enableDecimal2?: boolean;
31609
33535
  /**
31610
- * Whether encryption is turned on. See `encryption` below.
33536
+ * Storage encryption. For details, see [Storage Encryption](https://www.alibabacloud.com/help/en/maxcompute/security-and-compliance/storage-encryption)
33537
+ * > **NOTE :**: To enable storage encryption, you need to modify the parameters of the basic attributes of the MaxCompute project. This operation permission is authenticated by RAM, and you need to have the Super_Administrator role permission of the corresponding project. To configure the permissions and IP whitelist parameters of the MaxCompute project, you must have the management permissions (Admin) of the corresponding project, including Super_Administrator, Admin, or custom management permissions. For more information, see the project management permissions list. You can turn on storage encryption only for projects that have not turned on storage encryption. For projects that have turned on storage encryption, you cannot turn off storage encryption or change the encryption algorithm. See `encryption` below.
31611
33538
  */
31612
- encryption: outputs.maxcompute.ProjectPropertiesEncryption;
33539
+ encryption?: outputs.maxcompute.ProjectPropertiesEncryption;
31613
33540
  /**
31614
- * Job default retention time.
33541
+ * Set the number of days to retain backup data. During this time, you can restore the current version to any backup version. The value range of days is [0,30], and the default value is 1. 0 means backup is turned off. The effective policy after adjusting the backup cycle is: Extend the backup cycle: The new backup cycle takes effect on the same day. Shorten the backup cycle: The system will automatically delete backup data that has exceeded the retention cycle.
31615
33542
  */
31616
- retentionDays: number;
33543
+ retentionDays?: number;
31617
33544
  /**
31618
- * SQL charge limit.
33545
+ * Set the maximum threshold of single SQL consumption, that is, set the ODPS. SQL. metering.value.max attribute. For details, see [Consumption Monitoring Alarm](https://www.alibabacloud.com/help/en/maxcompute/product-overview/consumption-control). Unit: scan volume (GB)* complexity. .
31619
33546
  */
31620
- sqlMeteringMax: string;
33547
+ sqlMeteringMax?: string;
31621
33548
  /**
31622
- * Life cycle of tables. See `tableLifecycle` below.
33549
+ * Set whether the lifecycle of the table in the project needs to be configured, that is, set the ODPS. table.lifecycle property,. See `tableLifecycle` below.
31623
33550
  */
31624
33551
  tableLifecycle: outputs.maxcompute.ProjectPropertiesTableLifecycle;
31625
33552
  /**
31626
- * Project time zone.
33553
+ * Project time zone, example value: Asia/Shanghai.
31627
33554
  */
31628
33555
  timezone: string;
31629
33556
  /**
31630
- * Type system.
33557
+ * Data type version. Value:(1/2/hive) 1: The original MaxCompute type system. 2: New type system introduced by MaxCompute 2.0. hive: the type system of the Hive compatibility mode introduced by MaxCompute 2.0.
31631
33558
  */
31632
- typeSystem: string;
33559
+ typeSystem?: string;
31633
33560
  }
31634
33561
  interface ProjectPropertiesEncryption {
31635
- algorithm: string;
31636
- enable: boolean;
31637
- key: string;
33562
+ /**
33563
+ * The encryption algorithm supported by the key, including AES256, AESCTR, and RC4.
33564
+ */
33565
+ algorithm?: string;
33566
+ /**
33567
+ * Only enable function is supported. Value: (true).
33568
+ */
33569
+ enable?: boolean;
33570
+ /**
33571
+ * The encryption algorithm Key, the Key type used by the project, including the Default Key (MaxCompute Default Key) and the self-contained Key (BYOK). The MaxCompute Default Key is the Default Key created inside MaxCompute.
33572
+ */
33573
+ key?: string;
31638
33574
  }
31639
33575
  interface ProjectPropertiesTableLifecycle {
31640
33576
  /**
31641
33577
  * Project type
31642
33578
  */
31643
33579
  type: string;
33580
+ /**
33581
+ * The value of the life cycle, in days. The value range is 1~37231, and the default value is 37231.
33582
+ */
31644
33583
  value: string;
31645
33584
  }
31646
33585
  interface ProjectSecurityProperties {
31647
33586
  /**
31648
- * Whether to enable download permission check.
33587
+ * Set whether to enable the [Download permission control function](https://www.alibabacloud.com/help/en/maxcompute/user-guide/download-control), that is, set the ODPS. security.enabledownloadprivilege property.
31649
33588
  */
31650
- enableDownloadPrivilege: boolean;
33589
+ enableDownloadPrivilege?: boolean;
31651
33590
  /**
31652
- * Label authorization.
33591
+ * Set whether to use the [Label permission control function](https://www.alibabacloud.com/help/en/maxcompute/user-guide/label-based-access-control), that is, set the LabelSecurity attribute, which is not used by default.
31653
33592
  */
31654
- labelSecurity: boolean;
33593
+ labelSecurity?: boolean;
31655
33594
  /**
31656
- * Project creator permissions.
33595
+ * Sets whether to allow the creator of the object to have access to the object, I .e. sets the attribute. The default is the allowed state.
31657
33596
  */
31658
- objectCreatorHasAccessPermission: boolean;
33597
+ objectCreatorHasAccessPermission?: boolean;
31659
33598
  /**
31660
- * Does the project creator have authorization rights.
33599
+ * The ObjectCreatorHasGrantPermission attribute is set to allow the object creator to have the authorization permission on the object. The default is the allowed state.
31661
33600
  */
31662
- objectCreatorHasGrantPermission: boolean;
33601
+ objectCreatorHasGrantPermission?: boolean;
31663
33602
  /**
31664
33603
  * Project protection. See `projectProtection` below.
31665
33604
  */
31666
- projectProtection: outputs.maxcompute.ProjectSecurityPropertiesProjectProtection;
33605
+ projectProtection?: outputs.maxcompute.ProjectSecurityPropertiesProjectProtection;
31667
33606
  /**
31668
- * Whether to turn on ACL.
33607
+ * Set whether to use the [ACL permission control function](https://www.alibabacloud.com/help/en/maxcompute/user-guide/maxcompute-permissions), that is, set the CheckPermissionUsingACL attribute, which is in use by default.
31669
33608
  */
31670
- usingAcl: boolean;
33609
+ usingAcl?: boolean;
31671
33610
  /**
31672
- * Whether to enable Policy.
33611
+ * Set whether to use the Policy permission control function (https://www.alibabacloud.com/help/en/maxcompute/user-guide/policy-based-access-control-1), that is, set the CheckPermissionUsingACL attribute, which is in use by default.
31673
33612
  */
31674
- usingPolicy: boolean;
33613
+ usingPolicy?: boolean;
31675
33614
  }
31676
33615
  interface ProjectSecurityPropertiesProjectProtection {
31677
33616
  /**
31678
- * Exclusion policy.
33617
+ * Set [Exceptions or Trusted Items](https://www.alibabacloud.com/help/en/maxcompute/security-and-compliance/project-data-protection).
31679
33618
  */
31680
- exceptionPolicy: string;
33619
+ exceptionPolicy?: string;
31681
33620
  /**
31682
- * Is it turned on.
33621
+ * Whether enabled, value:(true/false).
31683
33622
  */
31684
- protected: boolean;
33623
+ protected?: boolean;
31685
33624
  }
31686
33625
  }
31687
33626
  export declare namespace message {
@@ -32400,8 +34339,17 @@ export declare namespace mongodb {
32400
34339
  vswitchId: string;
32401
34340
  }
32402
34341
  interface ServerlessInstanceSecurityIpGroup {
34342
+ /**
34343
+ * The attribute of the IP whitelist. This parameter is empty by default.
34344
+ */
32403
34345
  securityIpGroupAttribute?: string;
34346
+ /**
34347
+ * The name of the IP whitelist.
34348
+ */
32404
34349
  securityIpGroupName?: string;
34350
+ /**
34351
+ * The IP addresses in the whitelist.
34352
+ */
32405
34353
  securityIpList?: string;
32406
34354
  }
32407
34355
  interface ShardingInstanceConfigServerList {
@@ -34566,34 +36514,87 @@ export declare namespace oss {
34566
36514
  transitions?: outputs.oss.BucketLifecycleRuleTransition[];
34567
36515
  }
34568
36516
  interface BucketLifecycleRuleAbortMultipartUpload {
36517
+ /**
36518
+ * Specifies the time before which the rules take effect. The date must conform to the ISO8601 format and always be UTC 00:00. For example: 2002-10-11T00:00:00.000Z indicates that parts created before 2002-10-11T00:00:00.000Z are deleted, and parts created after this time (including this time) are not deleted.
36519
+ */
34569
36520
  createdBeforeDate?: string;
36521
+ /**
36522
+ * Specifies the number of days noncurrent object versions transition.
36523
+ */
34570
36524
  days?: number;
34571
36525
  }
34572
36526
  interface BucketLifecycleRuleExpiration {
36527
+ /**
36528
+ * Specifies the time before which the rules take effect. The date must conform to the ISO8601 format and always be UTC 00:00. For example: 2002-10-11T00:00:00.000Z indicates that parts created before 2002-10-11T00:00:00.000Z are deleted, and parts created after this time (including this time) are not deleted.
36529
+ */
34573
36530
  createdBeforeDate?: string;
36531
+ /**
36532
+ * Specifies the date after which you want the corresponding action to take effect. The value obeys ISO8601 format like `2017-03-09`.
36533
+ */
34574
36534
  date?: string;
36535
+ /**
36536
+ * Specifies the number of days noncurrent object versions transition.
36537
+ */
34575
36538
  days?: number;
36539
+ /**
36540
+ * On a versioned bucket (versioning-enabled or versioning-suspended bucket), you can add this element in the lifecycle configuration to direct OSS to delete expired object delete markers. This cannot be specified with Days, Date or CreatedBeforeDate in a Lifecycle Expiration Policy.
36541
+ *
36542
+ * `NOTE`: One and only one of "date", "days", "createdBeforeDate" and "expiredObjectDeleteMarker" can be specified in one expiration configuration.
36543
+ */
34576
36544
  expiredObjectDeleteMarker?: boolean;
34577
36545
  }
34578
36546
  interface BucketLifecycleRuleFilter {
36547
+ /**
36548
+ * The condition that is matched by objects to which the lifecycle rule does not apply. See `not` below.
36549
+ */
34579
36550
  not?: outputs.oss.BucketLifecycleRuleFilterNot;
36551
+ /**
36552
+ * Minimum object size (in bytes) to which the rule applies.
36553
+ */
34580
36554
  objectSizeGreaterThan?: number;
36555
+ /**
36556
+ * Maximum object size (in bytes) to which the rule applies.
36557
+ */
34581
36558
  objectSizeLessThan?: number;
34582
36559
  }
34583
36560
  interface BucketLifecycleRuleFilterNot {
36561
+ /**
36562
+ * The prefix in the names of the objects to which the lifecycle rule does not apply.
36563
+ */
34584
36564
  prefix?: string;
36565
+ /**
36566
+ * The tag of the objects to which the lifecycle rule does not apply. See `tag` below.
36567
+ */
34585
36568
  tag?: outputs.oss.BucketLifecycleRuleFilterNotTag;
34586
36569
  }
34587
36570
  interface BucketLifecycleRuleFilterNotTag {
36571
+ /**
36572
+ * The key of the tag that is specified for the objects.
36573
+ */
34588
36574
  key: string;
36575
+ /**
36576
+ * The value of the tag that is specified for the objects.
36577
+ */
34589
36578
  value: string;
34590
36579
  }
34591
36580
  interface BucketLifecycleRuleNoncurrentVersionExpiration {
36581
+ /**
36582
+ * Specifies the number of days noncurrent object versions transition.
36583
+ */
34592
36584
  days: number;
34593
36585
  }
34594
36586
  interface BucketLifecycleRuleNoncurrentVersionTransition {
36587
+ /**
36588
+ * Specifies the number of days noncurrent object versions transition.
36589
+ */
34595
36590
  days: number;
36591
+ /**
36592
+ * Specifies whether the lifecycle rule applies to objects based on their last access time. If set to `true`, the rule applies to objects based on their last access time; if set to `false`, the rule applies to objects based on their last modified time. If configure the rule based on the last access time, please enable `accessMonitor` first.
36593
+ */
34596
36594
  isAccessTime?: boolean;
36595
+ /**
36596
+ * Specifies whether to convert the storage class of non-Standard objects back to Standard after the objects are accessed. It takes effect only when the IsAccessTime parameter is set to true. If set to `true`, converts the storage class of the objects to Standard; if set to `false`, does not convert the storage class of the objects to Standard.
36597
+ */
34597
36598
  returnToStdWhenVisit?: boolean;
34598
36599
  /**
34599
36600
  * The [storage class](https://www.alibabacloud.com/help/doc-detail/51374.htm) to apply. Can be "Standard", "IA", "Archive", "ColdArchive" and "DeepColdArchive". Defaults to "Standard". "ColdArchive" is available since 1.203.0. "DeepColdArchive" is available since 1.209.0.
@@ -34601,9 +36602,21 @@ export declare namespace oss {
34601
36602
  storageClass: string;
34602
36603
  }
34603
36604
  interface BucketLifecycleRuleTransition {
36605
+ /**
36606
+ * Specifies the time before which the rules take effect. The date must conform to the ISO8601 format and always be UTC 00:00. For example: 2002-10-11T00:00:00.000Z indicates that parts created before 2002-10-11T00:00:00.000Z are deleted, and parts created after this time (including this time) are not deleted.
36607
+ */
34604
36608
  createdBeforeDate?: string;
36609
+ /**
36610
+ * Specifies the number of days noncurrent object versions transition.
36611
+ */
34605
36612
  days?: number;
36613
+ /**
36614
+ * Specifies whether the lifecycle rule applies to objects based on their last access time. If set to `true`, the rule applies to objects based on their last access time; if set to `false`, the rule applies to objects based on their last modified time. If configure the rule based on the last access time, please enable `accessMonitor` first.
36615
+ */
34606
36616
  isAccessTime?: boolean;
36617
+ /**
36618
+ * Specifies whether to convert the storage class of non-Standard objects back to Standard after the objects are accessed. It takes effect only when the IsAccessTime parameter is set to true. If set to `true`, converts the storage class of the objects to Standard; if set to `false`, does not convert the storage class of the objects to Standard.
36619
+ */
34607
36620
  returnToStdWhenVisit?: boolean;
34608
36621
  /**
34609
36622
  * The [storage class](https://www.alibabacloud.com/help/doc-detail/51374.htm) to apply. Can be "Standard", "IA", "Archive", "ColdArchive" and "DeepColdArchive". Defaults to "Standard". "ColdArchive" is available since 1.203.0. "DeepColdArchive" is available since 1.209.0.
@@ -35400,24 +37413,63 @@ export declare namespace ots {
35400
37413
  indexSorts?: outputs.ots.SearchIndexSchemaIndexSort[];
35401
37414
  }
35402
37415
  interface SearchIndexSchemaFieldSchema {
37416
+ /**
37417
+ * Specifies the type of the analyzer that you want to use. If fieldType is set to Text, you can configure this parameter. Otherwise, the default analyzer type single-word tokenization is used.
37418
+ */
35403
37419
  analyzer?: string;
37420
+ /**
37421
+ * Specifies whether to enable sorting and aggregation. Type: Boolean. Sorting can be enabled only for fields for which enableSortAndAgg is set to true.
37422
+ */
35404
37423
  enableSortAndAgg?: boolean;
37424
+ /**
37425
+ * The name of the field that is used to sort data. only required if sorterType is FieldSort.
37426
+ */
35405
37427
  fieldName: string;
37428
+ /**
37429
+ * Specifies the type of the field. Use FieldType.XXX to set the type.
37430
+ */
35406
37431
  fieldType: string;
37432
+ /**
37433
+ * Specifies whether to enable indexing for the column. Type: Boolean.
37434
+ */
35407
37435
  index?: boolean;
37436
+ /**
37437
+ * Specifies whether the value is an array. Type: Boolean.
37438
+ */
35408
37439
  isArray?: boolean;
37440
+ /**
37441
+ * Specifies whether to store the value of the field in the search index. Type: Boolean. If you set store to true, you can read the value of the field from the search index without querying the data table. This improves query performance.
37442
+ */
35409
37443
  store?: boolean;
35410
37444
  }
35411
37445
  interface SearchIndexSchemaIndexSetting {
37446
+ /**
37447
+ * Specifies custom routing fields. You can specify some primary key columns as routing fields. Tablestore distributes data that is written to a search index across different partitions based on the specified routing fields. The data whose routing field values are the same is distributed to the same partition.
37448
+ */
35412
37449
  routingFields?: string[];
35413
37450
  }
35414
37451
  interface SearchIndexSchemaIndexSort {
37452
+ /**
37453
+ * Specifies the presorting method for the search index. PrimaryKeySort and FieldSort are supported. See `sorter` below.
37454
+ */
35415
37455
  sorters: outputs.ots.SearchIndexSchemaIndexSortSorter[];
35416
37456
  }
35417
37457
  interface SearchIndexSchemaIndexSortSorter {
37458
+ /**
37459
+ * The name of the field that is used to sort data. only required if sorterType is FieldSort.
37460
+ */
35418
37461
  fieldName?: string;
37462
+ /**
37463
+ * The sorting method that is used when the field contains multiple values. valid values: `Min`, `Max`, `Avg`. only required if sorterType is FieldSort.
37464
+ */
35419
37465
  mode?: string;
37466
+ /**
37467
+ * The sort order. Data can be sorted in ascending(`Asc`) or descending(`Desc`) order. Default value: `Asc`.
37468
+ */
35420
37469
  order?: string;
37470
+ /**
37471
+ * Data is sorted by Which fields or keys. valid values: `PrimaryKeySort`, `FieldSort`.
37472
+ */
35421
37473
  sorterType?: string;
35422
37474
  }
35423
37475
  interface TableDefinedColumn {
@@ -35895,7 +37947,13 @@ export declare namespace polardb {
35895
37947
  multiZoneIds: string[];
35896
37948
  }
35897
37949
  interface ParameterGroupParameter {
37950
+ /**
37951
+ * The name of a parameter in the parameter template.
37952
+ */
35898
37953
  paramName: string;
37954
+ /**
37955
+ * The value of a parameter in the parameter template.
37956
+ */
35899
37957
  paramValue: string;
35900
37958
  }
35901
37959
  }
@@ -36187,9 +38245,21 @@ export declare namespace pvtz {
36187
38245
  zoneName: string;
36188
38246
  }
36189
38247
  interface GetRulesRuleBindVpc {
38248
+ /**
38249
+ * The region ID of the vpc.
38250
+ */
36190
38251
  regionId: string;
38252
+ /**
38253
+ * The Region Name of the vpc.
38254
+ */
36191
38255
  regionName: string;
38256
+ /**
38257
+ * The ID of the VPC.
38258
+ */
36192
38259
  vpcId: string;
38260
+ /**
38261
+ * The Name of the VPC.
38262
+ */
36193
38263
  vpcName: string;
36194
38264
  }
36195
38265
  interface GetRulesRuleForwardIp {
@@ -36560,7 +38630,13 @@ export declare namespace quotas {
36560
38630
  value?: string;
36561
38631
  }
36562
38632
  interface GetQuotasDimension {
38633
+ /**
38634
+ * The key of dimensions.
38635
+ */
36563
38636
  key?: string;
38637
+ /**
38638
+ * The value of dimensions.
38639
+ */
36564
38640
  value?: string;
36565
38641
  }
36566
38642
  interface GetQuotasQuota {
@@ -36899,12 +38975,27 @@ export declare namespace ram {
36899
38975
  resources?: string[];
36900
38976
  }
36901
38977
  interface GetPolicyDocumentStatementCondition {
38978
+ /**
38979
+ * The operator of the condition.
38980
+ */
36902
38981
  operator: string;
38982
+ /**
38983
+ * The values of the condition.
38984
+ */
36903
38985
  values: string[];
38986
+ /**
38987
+ * The variable of the condition.
38988
+ */
36904
38989
  variable: string;
36905
38990
  }
36906
38991
  interface GetPolicyDocumentStatementPrincipal {
38992
+ /**
38993
+ * The trusted entity. Valid values: `RAM`, `Service` and `Federated`.
38994
+ */
36907
38995
  entity: string;
38996
+ /**
38997
+ * The identifiers of the principal.
38998
+ */
36908
38999
  identifiers: string[];
36909
39000
  }
36910
39001
  interface GetRolesRole {
@@ -38115,6 +40206,9 @@ export declare namespace realtimecompute {
38115
40206
  oss: outputs.realtimecompute.VvpInstanceStorageOss;
38116
40207
  }
38117
40208
  interface VvpInstanceStorageOss {
40209
+ /**
40210
+ * OSS Bucket name.
40211
+ */
38118
40212
  bucket: string;
38119
40213
  }
38120
40214
  }
@@ -38790,13 +40884,35 @@ export declare namespace rocketmq {
38790
40884
  ipWhiteLists: string[];
38791
40885
  }
38792
40886
  interface RocketMQInstanceNetworkInfoInternetInfo {
40887
+ /**
40888
+ * Public network bandwidth specification. Unit: Mb/s.This field should only be filled when the public network billing type is set to payByBandwidth.The value range is [1 - 1000].
40889
+ */
38793
40890
  flowOutBandwidth?: number;
40891
+ /**
40892
+ * Public network billing type. The parameter values are as follows:
40893
+ * - payByBandwidth: Fixed bandwidth billing. Set this value when enabling public network access.
40894
+ * - uninvolved: Not involved. Set this value when disabling public network access.
40895
+ */
38794
40896
  flowOutType: string;
40897
+ /**
40898
+ * Whether to enable public network access. Instances by default support VPC access. If public network access is enabled, Alibaba Cloud Message Queue RocketMQ version will incur charges for public network outbound bandwidth. For specific billing information, please refer to [Public Network Access Fees](https://help.aliyun.com/zh/apsaramq-for-rocketmq/cloud-message-queue-rocketmq-5-x-series/product-overview/internet-access-fee). The parameter values are as follows:
40899
+ * - enable: Enable public network access
40900
+ * - disable: Disable public network access
40901
+ */
38795
40902
  internetSpec: string;
40903
+ /**
40904
+ * internet ip whitelist.
40905
+ */
38796
40906
  ipWhitelists?: string[];
38797
40907
  }
38798
40908
  interface RocketMQInstanceNetworkInfoVpcInfo {
40909
+ /**
40910
+ * Proprietary Network.
40911
+ */
38799
40912
  vpcId: string;
40913
+ /**
40914
+ * VPC network switch.
40915
+ */
38800
40916
  vswitchId: string;
38801
40917
  }
38802
40918
  interface RocketMQInstanceProductInfo {
@@ -38838,7 +40954,13 @@ export declare namespace rocketmq {
38838
40954
  }
38839
40955
  export declare namespace ros {
38840
40956
  interface ChangeSetParameter {
40957
+ /**
40958
+ * The parameter key.
40959
+ */
38841
40960
  parameterKey: string;
40961
+ /**
40962
+ * The parameter value.
40963
+ */
38842
40964
  parameterValue: string;
38843
40965
  }
38844
40966
  interface GetChangeSetsSet {
@@ -39253,30 +41375,66 @@ export declare namespace ros {
39253
41375
  templateVersion: string;
39254
41376
  }
39255
41377
  interface StackGroupParameter {
41378
+ /**
41379
+ * The parameter key.
41380
+ */
39256
41381
  parameterKey?: string;
41382
+ /**
41383
+ * The parameter value.
41384
+ */
39257
41385
  parameterValue?: string;
39258
41386
  }
39259
41387
  interface StackInstanceParameterOverride {
41388
+ /**
41389
+ * The key of override parameter. If you do not specify the key and value of the parameter, ROS uses the key and value that you specified when you created the stack group.
41390
+ */
39260
41391
  parameterKey?: string;
41392
+ /**
41393
+ * The value of override parameter. If you do not specify the key and value of the parameter, ROS uses the key and value that you specified when you created the stack group.
41394
+ */
39261
41395
  parameterValue?: string;
39262
41396
  }
39263
41397
  interface StackParameter {
41398
+ /**
41399
+ * The parameter key.
41400
+ */
39264
41401
  parameterKey?: string;
41402
+ /**
41403
+ * The parameter value.
41404
+ */
39265
41405
  parameterValue: string;
39266
41406
  }
39267
41407
  interface TemplateScratchPreferenceParameter {
41408
+ /**
41409
+ * Priority parameter key. For more information about values, see [supplementary instructions for request parameters](https://www.alibabacloud.com/help/zh/doc-detail/358846.html#h2-url-4).
41410
+ */
39268
41411
  parameterKey: string;
41412
+ /**
41413
+ * Priority parameter value. For more information about values, see [supplementary instructions for request parameters](https://www.alibabacloud.com/help/zh/doc-detail/358846.html#h2-url-4).
41414
+ */
39269
41415
  parameterValue: string;
39270
41416
  }
39271
41417
  interface TemplateScratchSourceResource {
41418
+ /**
41419
+ * The ID of the Source Resource.
41420
+ */
39272
41421
  resourceId: string;
41422
+ /**
41423
+ * The type of the Source resource.
41424
+ */
39273
41425
  resourceType: string;
39274
41426
  }
39275
41427
  interface TemplateScratchSourceResourceGroup {
41428
+ /**
41429
+ * The ID of the Source Resource Group.
41430
+ */
39276
41431
  resourceGroupId: string;
39277
41432
  resourceTypeFilters?: string[];
39278
41433
  }
39279
41434
  interface TemplateScratchSourceTag {
41435
+ /**
41436
+ * Source label. **NOTE:** A maximum of 10 source labels can be configured.
41437
+ */
39280
41438
  resourceTags: {
39281
41439
  [key: string]: any;
39282
41440
  };
@@ -39462,6 +41620,9 @@ export declare namespace sae {
39462
41620
  }
39463
41621
  interface ApplicationPvtzDiscoverySvcPortProtocol {
39464
41622
  port?: number;
41623
+ /**
41624
+ * The protocol. Valid values: `TCP` and `UDP`.
41625
+ */
39465
41626
  protocol?: string;
39466
41627
  }
39467
41628
  interface ApplicationReadinessV2 {
@@ -39529,21 +41690,67 @@ export declare namespace sae {
39529
41690
  scaleUpRules?: outputs.sae.ApplicationScalingRuleScalingRuleMetricScaleUpRules;
39530
41691
  }
39531
41692
  interface ApplicationScalingRuleScalingRuleMetricMetric {
41693
+ /**
41694
+ * According to different `metricType`, set the target value of the corresponding monitoring index.
41695
+ */
39532
41696
  metricTargetAverageUtilization?: number;
41697
+ /**
41698
+ * Monitoring indicator trigger condition. Valid values: `CPU`, `MEMORY`, `tcpActiveConn`, `QPS`, `RT`, `SLB_QPS`, `SLB_RT`, `INTRANET_SLB_QPS` and `INTRANET_SLB_RT`. The values are described as follows:
41699
+ * - CPU: CPU usage.
41700
+ * - MEMORY: MEMORY usage.
41701
+ * - tcpActiveConn: The average number of TCP active connections for a single instance in 30 seconds.
41702
+ * - QPS: The average QPS of a single instance within 1 minute of JAVA application.
41703
+ * - RT: The average response time of all service interfaces within 1 minute of JAVA application.
41704
+ * - SLB_QPS: The average public network SLB QPS of a single instance within 15 seconds.
41705
+ * - SLB_RT: The average response time of public network SLB within 15 seconds.
41706
+ * - INTRANET_SLB_QPS: The average private network SLB QPS of a single instance within 15 seconds.
41707
+ * - INTRANET_SLB_RT: The average response time of private network SLB within 15 seconds.
41708
+ * **NOTE:** From version 1.206.0, `metricType` can be set to `QPS`, `RT`, `INTRANET_SLB_QPS`, `INTRANET_SLB_RT`.
41709
+ */
39533
41710
  metricType?: string;
41711
+ /**
41712
+ * SLB ID.
41713
+ */
39534
41714
  slbId?: string;
41715
+ /**
41716
+ * The log store of the Log Service.
41717
+ */
39535
41718
  slbLogStore?: string;
41719
+ /**
41720
+ * The project of the Log Service.
41721
+ */
39536
41722
  slbProject?: string;
41723
+ /**
41724
+ * SLB listening port.
41725
+ */
39537
41726
  vport?: string;
39538
41727
  }
39539
41728
  interface ApplicationScalingRuleScalingRuleMetricScaleDownRules {
41729
+ /**
41730
+ * Whether shrinkage is prohibited.
41731
+ */
39540
41732
  disabled?: boolean;
41733
+ /**
41734
+ * Cooling time for expansion or contraction. Valid values: `0` to `3600`. Unit: seconds. The default is `0` seconds.
41735
+ */
39541
41736
  stabilizationWindowSeconds?: number;
41737
+ /**
41738
+ * Elastic expansion or contraction step size. the maximum number of instances to be scaled in per unit time.
41739
+ */
39542
41740
  step?: number;
39543
41741
  }
39544
41742
  interface ApplicationScalingRuleScalingRuleMetricScaleUpRules {
41743
+ /**
41744
+ * Whether shrinkage is prohibited.
41745
+ */
39545
41746
  disabled?: boolean;
41747
+ /**
41748
+ * Cooling time for expansion or contraction. Valid values: `0` to `3600`. Unit: seconds. The default is `0` seconds.
41749
+ */
39546
41750
  stabilizationWindowSeconds?: number;
41751
+ /**
41752
+ * Elastic expansion or contraction step size. the maximum number of instances to be scaled in per unit time.
41753
+ */
39547
41754
  step?: number;
39548
41755
  }
39549
41756
  interface ApplicationScalingRuleScalingRuleTimer {
@@ -39565,9 +41772,15 @@ export declare namespace sae {
39565
41772
  schedules?: outputs.sae.ApplicationScalingRuleScalingRuleTimerSchedule[];
39566
41773
  }
39567
41774
  interface ApplicationScalingRuleScalingRuleTimerSchedule {
41775
+ /**
41776
+ * Trigger point in time. When supporting format: minutes, for example: `08:00`.
41777
+ */
39568
41778
  atTime?: string;
39569
41779
  maxReplicas?: number;
39570
41780
  minReplicas?: number;
41781
+ /**
41782
+ * This parameter can specify the number of instances to be applied or the minimum number of surviving instances per deployment. value range [1,50]. > **NOTE:** The attribute is valid when the attribute `scalingRuleType` is `timing`.
41783
+ */
39571
41784
  targetReplicas?: number;
39572
41785
  }
39573
41786
  interface ApplicationTomcatConfigV2 {
@@ -39603,11 +41816,17 @@ export declare namespace sae {
39603
41816
  type: string;
39604
41817
  }
39605
41818
  interface ApplicationUpdateStrategyV2BatchUpdate {
41819
+ /**
41820
+ * The number of batches in which you want to release the instances.
41821
+ */
39606
41822
  batch: number;
39607
41823
  /**
39608
41824
  * The batch wait time.
39609
41825
  */
39610
41826
  batchWaitTime: number;
41827
+ /**
41828
+ * The processing method for the batches. Valid values: `auto` and `manual`.
41829
+ */
39611
41830
  releaseType: string;
39612
41831
  }
39613
41832
  interface GetApplicationScalingRulesRule {
@@ -40288,7 +42507,13 @@ export declare namespace sae {
40288
42507
  }
40289
42508
  interface GreyTagRouteDubboRuleItem {
40290
42509
  cond?: string;
42510
+ /**
42511
+ * The parameter value gets the expression.
42512
+ */
40291
42513
  expr?: string;
42514
+ /**
42515
+ * The parameter number.
42516
+ */
40292
42517
  index?: number;
40293
42518
  operator?: string;
40294
42519
  value?: string;
@@ -40309,8 +42534,14 @@ export declare namespace sae {
40309
42534
  }
40310
42535
  interface GreyTagRouteScRuleItem {
40311
42536
  cond?: string;
42537
+ /**
42538
+ * The name of the parameter.
42539
+ */
40312
42540
  name?: string;
40313
42541
  operator?: string;
42542
+ /**
42543
+ * The compare types. Valid values: `param`, `cookie`, `header`.
42544
+ */
40314
42545
  type?: string;
40315
42546
  value?: string;
40316
42547
  }
@@ -40475,10 +42706,28 @@ export declare namespace sag {
40475
42706
  }
40476
42707
  export declare namespace scdn {
40477
42708
  interface DomainCertInfo {
42709
+ /**
42710
+ * If You Enable HTTPS Here Certificate Name.
42711
+ */
40478
42712
  certName?: string;
42713
+ /**
42714
+ * Certificate Type. Value Range:
42715
+ * * upload: Certificate
42716
+ * * cas: Certificate Authority Certificate.
42717
+ * * free: Free Certificate.
42718
+ */
40479
42719
  certType?: string;
42720
+ /**
42721
+ * Private Key. Do Not Enable Certificate without Entering a User Name and Configure Certificates Enter Private Key.
42722
+ */
40480
42723
  sslPri?: string;
42724
+ /**
42725
+ * Whether to Enable SSL Certificate. Valid Values: on, off. Valid values: `on`, `off`.
42726
+ */
40481
42727
  sslProtocol?: string;
42728
+ /**
42729
+ * If You Enable HTTPS Here Key.
42730
+ */
40482
42731
  sslPub?: string;
40483
42732
  }
40484
42733
  interface DomainConfigFunctionArg {
@@ -40492,10 +42741,28 @@ export declare namespace scdn {
40492
42741
  argValue: string;
40493
42742
  }
40494
42743
  interface DomainSource {
42744
+ /**
42745
+ * The Back-to-Source Address.
42746
+ */
40495
42747
  content: string;
42748
+ /**
42749
+ * The source status. Valid values: online, offline.
42750
+ */
40496
42751
  enabled: string;
42752
+ /**
42753
+ * Port.
42754
+ */
40497
42755
  port: number;
42756
+ /**
42757
+ * Priority.
42758
+ */
40498
42759
  priority: string;
42760
+ /**
42761
+ * The Origin Server Type. Valid Values:
42762
+ * * ipaddr: IP Source Station
42763
+ * * domain: the Domain Name
42764
+ * * oss: OSS Bucket as a Source Station.
42765
+ */
40499
42766
  type: string;
40500
42767
  }
40501
42768
  interface GetDomainsDomain {
@@ -41276,7 +43543,13 @@ export declare namespace servicecatalog {
41276
43543
  outputValue: string;
41277
43544
  }
41278
43545
  interface ProvisionedProductParameter {
43546
+ /**
43547
+ * The name of the parameter defined in the template.
43548
+ */
41279
43549
  parameterKey?: string;
43550
+ /**
43551
+ * The Template parameter value entered by the user.
43552
+ */
41280
43553
  parameterValue?: string;
41281
43554
  }
41282
43555
  }
@@ -41640,6 +43913,9 @@ export declare namespace servicemesh {
41640
43913
  * - Pro: Professional Edition
41641
43914
  */
41642
43915
  edition: string;
43916
+ /**
43917
+ * The ASM version id. It formats as `<edition>:<version>`.
43918
+ */
41643
43919
  id: string;
41644
43920
  /**
41645
43921
  * A list of Service Mesh Service Meshes. Each element contains the following attributes:
@@ -41733,23 +44009,59 @@ export declare namespace servicemesh {
41733
44009
  tracing?: boolean;
41734
44010
  }
41735
44011
  interface ServiceMeshMeshConfigAccessLog {
44012
+ /**
44013
+ * Enable CNI.
44014
+ */
41736
44015
  enabled?: boolean;
44016
+ /**
44017
+ * Whether collect AccessLog of ASM Gateway to Alibaba Cloud SLS.
44018
+ */
41737
44019
  gatewayEnabled?: boolean;
44020
+ /**
44021
+ * Lifecycle of AccessLog of ASM Gateways which have been collected to Alibaba Cloud SLS.
44022
+ */
41738
44023
  gatewayLifecycle: number;
44024
+ /**
44025
+ * The name of the SLS Project to which the control plane logs are collected.
44026
+ */
41739
44027
  project?: string;
44028
+ /**
44029
+ * Whether collect AccessLog of ASM Gateway to Alibaba Cloud SLS.
44030
+ */
41740
44031
  sidecarEnabled?: boolean;
44032
+ /**
44033
+ * Lifecycle of AccessLog of ASM Sidecars which have been collected to Alibaba Cloud SLS.
44034
+ */
41741
44035
  sidecarLifecycle: number;
41742
44036
  }
41743
44037
  interface ServiceMeshMeshConfigAudit {
44038
+ /**
44039
+ * Enable CNI.
44040
+ */
41744
44041
  enabled: boolean;
44042
+ /**
44043
+ * The name of the SLS Project to which the control plane logs are collected.
44044
+ */
41745
44045
  project: string;
41746
44046
  }
41747
44047
  interface ServiceMeshMeshConfigControlPlaneLog {
44048
+ /**
44049
+ * Enable CNI.
44050
+ */
41748
44051
  enabled: boolean;
44052
+ /**
44053
+ * Lifecycle of logs has been collected to Alibaba Cloud SLS.
44054
+ */
41749
44055
  logTtlInDay: number;
44056
+ /**
44057
+ * The name of the SLS Project to which the control plane logs are collected.
44058
+ */
41750
44059
  project?: string;
41751
44060
  }
41752
44061
  interface ServiceMeshMeshConfigKiali {
44062
+ /**
44063
+ * Enable CNI.
44064
+ */
41753
44065
  enabled?: boolean;
41754
44066
  /**
41755
44067
  * Kiali service address.
@@ -41757,15 +44069,39 @@ export declare namespace servicemesh {
41757
44069
  url: string;
41758
44070
  }
41759
44071
  interface ServiceMeshMeshConfigOpa {
44072
+ /**
44073
+ * Enable CNI.
44074
+ */
41760
44075
  enabled?: boolean;
44076
+ /**
44077
+ * Sidecar injector Pods on the throttle.
44078
+ */
41761
44079
  limitCpu?: string;
44080
+ /**
44081
+ * Sidecar injector Pods on the throttle.
44082
+ */
41762
44083
  limitMemory?: string;
44084
+ /**
44085
+ * OPA proxy container log level.
44086
+ */
41763
44087
  logLevel?: string;
44088
+ /**
44089
+ * Sidecar injector Pods on the requested resource.
44090
+ */
41764
44091
  requestCpu?: string;
44092
+ /**
44093
+ * Sidecar injector Pods on the requested resource.
44094
+ */
41765
44095
  requestMemory?: string;
41766
44096
  }
41767
44097
  interface ServiceMeshMeshConfigPilot {
44098
+ /**
44099
+ * Whether to support the HTTP1.0.
44100
+ */
41768
44101
  http10Enabled?: boolean;
44102
+ /**
44103
+ * Link trace sampling percentage.
44104
+ */
41769
44105
  traceSampling?: number;
41770
44106
  }
41771
44107
  interface ServiceMeshMeshConfigPrometheus {
@@ -41779,19 +44115,55 @@ export declare namespace servicemesh {
41779
44115
  useExternal: boolean;
41780
44116
  }
41781
44117
  interface ServiceMeshMeshConfigProxy {
44118
+ /**
44119
+ * Cluster domain name.
44120
+ */
41782
44121
  clusterDomain: string;
44122
+ /**
44123
+ * Sidecar injector Pods on the throttle.
44124
+ */
41783
44125
  limitCpu?: string;
44126
+ /**
44127
+ * Sidecar injector Pods on the throttle.
44128
+ */
41784
44129
  limitMemory?: string;
44130
+ /**
44131
+ * Sidecar injector Pods on the requested resource.
44132
+ */
41785
44133
  requestCpu?: string;
44134
+ /**
44135
+ * Sidecar injector Pods on the requested resource.
44136
+ */
41786
44137
  requestMemory?: string;
41787
44138
  }
41788
44139
  interface ServiceMeshMeshConfigSidecarInjector {
44140
+ /**
44141
+ * Whether to enable by Pod Annotations automatic injection Sidecar.
44142
+ */
41789
44143
  autoInjectionPolicyEnabled?: boolean;
44144
+ /**
44145
+ * Whether it is the all namespaces you turn on the auto injection capabilities.
44146
+ */
41790
44147
  enableNamespacesByDefault?: boolean;
44148
+ /**
44149
+ * CNI configuration. See `initCniConfiguration` below.
44150
+ */
41791
44151
  initCniConfiguration: outputs.servicemesh.ServiceMeshMeshConfigSidecarInjectorInitCniConfiguration;
44152
+ /**
44153
+ * Sidecar injector Pods on the throttle.
44154
+ */
41792
44155
  limitCpu?: string;
44156
+ /**
44157
+ * Sidecar injector Pods on the throttle.
44158
+ */
41793
44159
  limitMemory?: string;
44160
+ /**
44161
+ * Sidecar injector Pods on the requested resource.
44162
+ */
41794
44163
  requestCpu?: string;
44164
+ /**
44165
+ * Sidecar injector Pods on the requested resource.
44166
+ */
41795
44167
  requestMemory?: string;
41796
44168
  /**
41797
44169
  * Other automatic injection Sidecar configuration (in YAML format).
@@ -41799,7 +44171,13 @@ export declare namespace servicemesh {
41799
44171
  sidecarInjectorWebhookAsYaml: string;
41800
44172
  }
41801
44173
  interface ServiceMeshMeshConfigSidecarInjectorInitCniConfiguration {
44174
+ /**
44175
+ * Enable CNI.
44176
+ */
41802
44177
  enabled?: boolean;
44178
+ /**
44179
+ * The excluded namespace.
44180
+ */
41803
44181
  excludeNamespaces?: string;
41804
44182
  }
41805
44183
  interface ServiceMeshNetwork {
@@ -43013,19 +45391,19 @@ export declare namespace slb {
43013
45391
  }
43014
45392
  interface ServerGroupServer {
43015
45393
  /**
43016
- * The port used by the backend server. Valid value range: [1-65535].
45394
+ * The port used by the backend server. Valid values: `1` to `65535`.
43017
45395
  */
43018
45396
  port: number;
43019
45397
  /**
43020
- * A list backend server ID (ECS instance ID).
45398
+ * The list of Elastic Compute Service (ECS) Ids or Elastic Network Interface (ENI) Ids.
43021
45399
  */
43022
45400
  serverIds: string[];
43023
45401
  /**
43024
- * Type of the backend server. Valid value ecs, eni. Default to eni.
45402
+ * Specify the type of the backend server. Default value: `ecs`. Valid values: `ecs`, `eni`.
43025
45403
  */
43026
45404
  type?: string;
43027
45405
  /**
43028
- * Weight of the backend server. Valid value range: [0-100]. Default to 100.
45406
+ * Weight of the backend server. Default value: `100`. Valid values: `0` to `100`.
43029
45407
  */
43030
45408
  weight?: number;
43031
45409
  }
@@ -43122,76 +45500,196 @@ export declare namespace sls {
43122
45500
  version?: string;
43123
45501
  }
43124
45502
  interface AlertConfigurationAnnotation {
45503
+ /**
45504
+ * Field name.
45505
+ */
43125
45506
  key?: string;
45507
+ /**
45508
+ * Field value.
45509
+ */
43126
45510
  value?: string;
43127
45511
  }
43128
45512
  interface AlertConfigurationConditionConfiguration {
45513
+ /**
45514
+ * Data matching expression. When the data content does not need to be determined, set it to an empty string. In other cases, it needs to be set as an expression, for example, errCnt> 10.
45515
+ */
43129
45516
  condition?: string;
45517
+ /**
45518
+ * The number of pieces of data to determine the number of pieces of data to indicate how many pieces of data meet the conditions. If data exists, it is satisfied. Set it to an empty string. In other cases, it needs to be set as an expression, such as__count__> 3.
45519
+ */
43130
45520
  countCondition?: string;
43131
45521
  }
43132
45522
  interface AlertConfigurationGroupConfiguration {
45523
+ /**
45524
+ * The field used for grouping evaluation. When type is set to custom, fields must be set.
45525
+ */
43133
45526
  fields?: string[];
43134
45527
  type?: string;
43135
45528
  }
43136
45529
  interface AlertConfigurationJoinConfiguration {
45530
+ /**
45531
+ * Data matching expression. When the data content does not need to be determined, set it to an empty string. In other cases, it needs to be set as an expression, for example, errCnt> 10.
45532
+ */
43137
45533
  condition?: string;
43138
45534
  type?: string;
43139
45535
  }
43140
45536
  interface AlertConfigurationLabel {
45537
+ /**
45538
+ * Field name.
45539
+ */
43141
45540
  key?: string;
45541
+ /**
45542
+ * Field value.
45543
+ */
43142
45544
  value?: string;
43143
45545
  }
43144
45546
  interface AlertConfigurationPolicyConfiguration {
45547
+ /**
45548
+ * The ID of the action policy used. If the alert policy is in advanced mode and the selected alert policy is not configured with a dynamic action policy, set the actionPolicyId to an empty string.
45549
+ */
43145
45550
  actionPolicyId?: string;
45551
+ /**
45552
+ * Alarm policy ID. If it is in simple mode or normal mode, set it to sls.builtin.dynamic (dynamic alarm policy built into the system). For advanced mode, set it to the specified alarm policy ID.
45553
+ */
43146
45554
  alertPolicyId?: string;
45555
+ /**
45556
+ * Repeat the waiting time. For example, 5m, 1H, etc.
45557
+ */
43147
45558
  repeatInterval?: string;
43148
45559
  }
43149
45560
  interface AlertConfigurationQueryList {
45561
+ /**
45562
+ * Chart Name.
45563
+ */
43150
45564
  chartTitle?: string;
45565
+ /**
45566
+ * Dashboard ID.
45567
+ */
43151
45568
  dashboardId?: string;
45569
+ /**
45570
+ * End time. When storeType is set to log or metric, end must be set.
45571
+ */
43152
45572
  end?: string;
45573
+ /**
45574
+ * Whether to use exclusive SQL. The value is as follows: auto: automatic switching. enable: Starts. disable: disable.
45575
+ */
43153
45576
  powerSqlMode?: string;
45577
+ /**
45578
+ * Project Name.
45579
+ */
43154
45580
  project?: string;
45581
+ /**
45582
+ * Query and analysis statements. When storeType is set to log or metric, query is set to the query analysis statement. When storeType is set to meta, set query to an empty string.
45583
+ */
43155
45584
  query?: string;
45585
+ /**
45586
+ * Region of the target Project.
45587
+ */
43156
45588
  region?: string;
45589
+ /**
45590
+ * Roles used to write alarm data to the event Library.
45591
+ */
43157
45592
  roleArn?: string;
45593
+ /**
45594
+ * Start time. When storeType is set to log or metric, start must be set.
45595
+ */
43158
45596
  start?: string;
45597
+ /**
45598
+ * Query the Logstore, Metricstore, or resource data associated with the statistics. When storeType is set to log, store is set to the target Logstore. When storeType is set to metric, store is set to the target Metricstore. When storeType is set to meta, store is set to the target resource data name.
45599
+ */
43159
45600
  store?: string;
45601
+ /**
45602
+ * Query the data source type. The value is as follows: log: Logstore. metric: Time series Library. meta: resource data.
45603
+ */
43160
45604
  storeType?: string;
45605
+ /**
45606
+ * Time Type.
45607
+ */
43161
45608
  timeSpanType?: string;
45609
+ /**
45610
+ * Use of specific scene alarm front end.
45611
+ */
43162
45612
  ui?: string;
43163
45613
  }
43164
45614
  interface AlertConfigurationSeverityConfiguration {
45615
+ /**
45616
+ * Trigger condition. See `evalCondition` below.
45617
+ */
43165
45618
  evalCondition?: outputs.sls.AlertConfigurationSeverityConfigurationEvalCondition;
45619
+ /**
45620
+ * Alarm severity.
45621
+ */
43166
45622
  severity?: number;
43167
45623
  }
43168
45624
  interface AlertConfigurationSeverityConfigurationEvalCondition {
45625
+ /**
45626
+ * Data matching expression. When the data content does not need to be determined, set it to an empty string. In other cases, it needs to be set as an expression, for example, errCnt> 10.
45627
+ */
43169
45628
  condition?: string;
45629
+ /**
45630
+ * The number of pieces of data to determine the number of pieces of data to indicate how many pieces of data meet the conditions. If data exists, it is satisfied. Set it to an empty string. In other cases, it needs to be set as an expression, such as__count__> 3.
45631
+ */
43170
45632
  countCondition?: string;
43171
45633
  }
43172
45634
  interface AlertConfigurationSinkAlerthub {
45635
+ /**
45636
+ * Open.
45637
+ */
43173
45638
  enabled?: boolean;
43174
45639
  }
43175
45640
  interface AlertConfigurationSinkCms {
45641
+ /**
45642
+ * Open.
45643
+ */
43176
45644
  enabled?: boolean;
43177
45645
  }
43178
45646
  interface AlertConfigurationSinkEventStore {
45647
+ /**
45648
+ * Open.
45649
+ */
43179
45650
  enabled?: boolean;
45651
+ /**
45652
+ * SLS service endpoint.
45653
+ */
43180
45654
  endpoint?: string;
45655
+ /**
45656
+ * Event Library Name.
45657
+ */
43181
45658
  eventStore?: string;
45659
+ /**
45660
+ * Project Name.
45661
+ */
43182
45662
  project?: string;
45663
+ /**
45664
+ * Roles used to write alarm data to the event Library.
45665
+ */
43183
45666
  roleArn?: string;
43184
45667
  }
43185
45668
  interface AlertConfigurationTemplateConfiguration {
45669
+ /**
45670
+ * Template Annotations.
45671
+ */
43186
45672
  annotations?: {
43187
45673
  [key: string]: any;
43188
45674
  };
45675
+ /**
45676
+ * Template Language.
45677
+ */
43189
45678
  lang?: string;
45679
+ /**
45680
+ * Template ID.
45681
+ */
43190
45682
  templateId?: string;
45683
+ /**
45684
+ * Template Variables.
45685
+ */
43191
45686
  tokens?: {
43192
45687
  [key: string]: any;
43193
45688
  };
43194
45689
  type?: string;
45690
+ /**
45691
+ * Template Version.
45692
+ */
43195
45693
  version?: string;
43196
45694
  }
43197
45695
  interface AlertSchedule {
@@ -43783,14 +46281,35 @@ export declare namespace threatdetection {
43783
46281
  trojanGit?: string;
43784
46282
  }
43785
46283
  interface HoneypotProbeHoneypotBindList {
46284
+ /**
46285
+ * List of listening ports.See the following `Block BindPortList`.
46286
+ */
43786
46287
  bindPortLists?: outputs.threatdetection.HoneypotProbeHoneypotBindListBindPortList[];
46288
+ /**
46289
+ * Honeypot ID.
46290
+ */
43787
46291
  honeypotId?: string;
43788
46292
  }
43789
46293
  interface HoneypotProbeHoneypotBindListBindPortList {
46294
+ /**
46295
+ * Whether to bind the port.
46296
+ */
43790
46297
  bindPort: boolean;
46298
+ /**
46299
+ * End port.
46300
+ */
43791
46301
  endPort: number;
46302
+ /**
46303
+ * Whether the port is fixed.
46304
+ */
43792
46305
  fixed: boolean;
46306
+ /**
46307
+ * Start port.
46308
+ */
43793
46309
  startPort: number;
46310
+ /**
46311
+ * Destination port.
46312
+ */
43794
46313
  targetPort: number;
43795
46314
  }
43796
46315
  interface SasTrailServiceTrail {
@@ -43980,9 +46499,21 @@ export declare namespace videosurveillance {
43980
46499
  }
43981
46500
  export declare namespace vod {
43982
46501
  interface DomainSource {
46502
+ /**
46503
+ * The address of the origin server. You can specify an IP address or a domain name.
46504
+ */
43983
46505
  sourceContent: string;
46506
+ /**
46507
+ * The port number. You can specify port 443 or 80. **Default value: 80**. If you specify port 443, Alibaba Cloud CDN communicates with the origin server over HTTPS. You can also customize a port.
46508
+ */
43984
46509
  sourcePort: string;
46510
+ /**
46511
+ * The priority of the origin server if multiple origin servers are specified. Valid values: `20` and `30`. **Default value: 20**. A value of 20 indicates that the origin server is the primary origin server. A value of 30 indicates that the origin server is a secondary origin server.
46512
+ */
43985
46513
  sourcePriority: string;
46514
+ /**
46515
+ * The type of the origin server. Valid values:
46516
+ */
43986
46517
  sourceType: string;
43987
46518
  }
43988
46519
  interface GetDomainsDomain {
@@ -45854,7 +48385,13 @@ export declare namespace vpc {
45854
48385
  trafficType: string;
45855
48386
  }
45856
48387
  interface NetworkAclAttachmentResource {
48388
+ /**
48389
+ * The resource id that the network acl will associate with.
48390
+ */
45857
48391
  resourceId: string;
48392
+ /**
48393
+ * The resource id that the network acl will associate with. Only support `VSwitch` now.
48394
+ */
45858
48395
  resourceType: string;
45859
48396
  }
45860
48397
  interface NetworkAclEgressAclEntry {
@@ -45900,6 +48437,9 @@ export declare namespace vpc {
45900
48437
  }
45901
48438
  interface NetworkAclEntriesEgress {
45902
48439
  description: string;
48440
+ /**
48441
+ * The destination ip of the egress entry.
48442
+ */
45903
48443
  destinationCidrIp: string;
45904
48444
  entryType: string;
45905
48445
  name: string;
@@ -45914,6 +48454,9 @@ export declare namespace vpc {
45914
48454
  policy: string;
45915
48455
  port: string;
45916
48456
  protocol: string;
48457
+ /**
48458
+ * The source ip of the ingress entry.
48459
+ */
45917
48460
  sourceCidrIp: string;
45918
48461
  }
45919
48462
  interface NetworkAclIngressAclEntry {
@@ -45973,21 +48516,30 @@ export declare namespace vpc {
45973
48516
  }
45974
48517
  interface NetworkIpv6CidrBlock {
45975
48518
  /**
45976
- * The IPv6 CIDR block of the VPC.
48519
+ * The IPv6 CIDR block of the default VPC.
48520
+ *
48521
+ * > **NOTE:** When `EnableIpv6` is set to `true`, this parameter is required.
45977
48522
  */
45978
48523
  ipv6CidrBlock: string;
45979
48524
  /**
45980
48525
  * The IPv6 address segment type of the VPC. Value:
45981
- * - **BGP** (default): Alibaba Cloud BGP IPv6.
45982
- * - **ChinaMobile**: China Mobile (single line).
45983
- * - **ChinaUnicom**: China Unicom (single line).
45984
- * - **ChinaTelecom**: China Telecom (single line).
45985
- * > **NOTE:** If a single-line bandwidth whitelist is enabled, this field can be set to **ChinaTelecom** (China Telecom), **ChinaUnicom** (China Unicom), or **ChinaMobile** (China Mobile).
48526
+ * - `BGP` (default): Alibaba Cloud BGP IPv6.
48527
+ * - `ChinaMobile`: China Mobile (single line).
48528
+ * - `ChinaUnicom`: China Unicom (single line).
48529
+ * - `ChinaTelecom`: China Telecom (single line).
48530
+ *
48531
+ * > **NOTE:** If a single-line bandwidth whitelist is enabled, this field can be set to `ChinaTelecom` (China Telecom), `ChinaUnicom` (China Unicom), or `ChinaMobile` (China Mobile).
45986
48532
  */
45987
48533
  ipv6Isp: string;
45988
48534
  }
45989
48535
  interface PrefixListEntry {
48536
+ /**
48537
+ * The CIDR address block of the prefix list.
48538
+ */
45990
48539
  cidr?: string;
48540
+ /**
48541
+ * The description of the cidr entry. It must be 2 to 256 characters in length and must start with a letter or Chinese, but cannot start with `http://` or `https://`.
48542
+ */
45991
48543
  description?: string;
45992
48544
  }
45993
48545
  interface PrefixListPrefixListAssociation {
@@ -46220,8 +48772,14 @@ export declare namespace vpn {
46220
48772
  ikeMode?: string;
46221
48773
  ikePfs?: string;
46222
48774
  ikeVersion?: string;
48775
+ /**
48776
+ * The local Id.
48777
+ */
46223
48778
  localId?: string;
46224
48779
  psk?: string;
48780
+ /**
48781
+ * Remote ID.
48782
+ */
46225
48783
  remoteId?: string;
46226
48784
  }
46227
48785
  interface ConnectionTunnelOptionsSpecificationTunnelIpsecConfig {
@@ -46717,6 +49275,9 @@ export declare namespace vpn {
46717
49275
  * Configuration negotiated in the second stage.
46718
49276
  */
46719
49277
  ikeConfigs: outputs.vpn.GetGatewayVpnAttachmentsAttachmentIkeConfig[];
49278
+ /**
49279
+ * The internet ip of the resource. The alicloud.cen.TransitRouterVpnAttachment resource will not have a value until after it is created.
49280
+ */
46720
49281
  internetIp: string;
46721
49282
  /**
46722
49283
  * The configuration of Phase 2 negotiations.
@@ -47310,7 +49871,13 @@ export declare namespace wafv3 {
47310
49871
  writeTimeout?: number;
47311
49872
  }
47312
49873
  interface DomainRedirectRequestHeader {
49874
+ /**
49875
+ * The traffic tag field and value of the domain name, which is used to mark the traffic processed by WAF. the format of this parameter value is **[{" k ":"_key_"," v ":"_value_"}]**. whereKeyRepresents the specified custom request header field, andValueRepresents the value set for this field.By specifying the custom request header field and the corresponding value, when the access traffic of the domain name passes through WAF, WAF automatically adds the specified custom field value to the request header as the traffic mark, which is convenient for backend service statistics.Explain that if the custom header field already exists in the request, the system will overwrite the value of the custom field in the request with the set traffic tag value.
49876
+ */
47313
49877
  key?: string;
49878
+ /**
49879
+ * The traffic tag field and value of the domain name, which is used to mark the traffic processed by WAF. the format of this parameter value is **[{" k ":"_key_"," v ":"_value_"}]**. whereKeyRepresents the specified custom request header field, andValueRepresents the value set for this field.By specifying the custom request header field and the corresponding value, when the access traffic of the domain name passes through WAF, WAF automatically adds the specified custom field value to the request header as the traffic mark, which is convenient for backend service statistics.Explain that if the custom header field already exists in the request, the system will overwrite the value of the custom field in the request with the set traffic tag value.
49880
+ */
47314
49881
  value?: string;
47315
49882
  }
47316
49883
  interface GetDomainsDomain {