@alicloud/ess20220222 1.7.0 → 1.8.0

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/dist/client.d.ts CHANGED
@@ -1448,6 +1448,73 @@ export declare class CreateAlarmResponse extends $tea.Model {
1448
1448
  [key: string]: any;
1449
1449
  });
1450
1450
  }
1451
+ export declare class CreateDiagnoseReportRequest extends $tea.Model {
1452
+ /**
1453
+ * @remarks
1454
+ * This parameter is required.
1455
+ *
1456
+ * @example
1457
+ * cn-hangzhou
1458
+ */
1459
+ regionId?: string;
1460
+ /**
1461
+ * @remarks
1462
+ * This parameter is required.
1463
+ *
1464
+ * @example
1465
+ * asg-bp1f2f6oxc2*******
1466
+ */
1467
+ scalingGroupId?: string;
1468
+ static names(): {
1469
+ [key: string]: string;
1470
+ };
1471
+ static types(): {
1472
+ [key: string]: any;
1473
+ };
1474
+ constructor(map?: {
1475
+ [key: string]: any;
1476
+ });
1477
+ }
1478
+ export declare class CreateDiagnoseReportResponseBody extends $tea.Model {
1479
+ /**
1480
+ * @example
1481
+ * dr-uf6enpbnri1xhcy9qc7s
1482
+ */
1483
+ reportId?: string;
1484
+ /**
1485
+ * @remarks
1486
+ * Id of the request
1487
+ *
1488
+ * @example
1489
+ * 0189C6CB-07BA-5AFE-B533-D93892324774
1490
+ */
1491
+ requestId?: string;
1492
+ static names(): {
1493
+ [key: string]: string;
1494
+ };
1495
+ static types(): {
1496
+ [key: string]: any;
1497
+ };
1498
+ constructor(map?: {
1499
+ [key: string]: any;
1500
+ });
1501
+ }
1502
+ export declare class CreateDiagnoseReportResponse extends $tea.Model {
1503
+ headers?: {
1504
+ [key: string]: string;
1505
+ };
1506
+ statusCode?: number;
1507
+ body?: CreateDiagnoseReportResponseBody;
1508
+ static names(): {
1509
+ [key: string]: string;
1510
+ };
1511
+ static types(): {
1512
+ [key: string]: any;
1513
+ };
1514
+ constructor(map?: {
1515
+ [key: string]: any;
1516
+ });
1517
+ }
1451
1518
  export declare class CreateEciScalingConfigurationRequest extends $tea.Model {
1452
1519
  /**
1453
1520
  * @remarks
@@ -2278,6 +2345,8 @@ export declare class CreateScalingConfigurationRequest extends $tea.Model {
2278
2345
  * hpc-clusterid
2279
2346
  */
2280
2347
  hpcClusterId?: string;
2348
+ httpEndpoint?: string;
2349
+ httpTokens?: string;
2281
2350
  /**
2282
2351
  * @remarks
2283
2352
  * The name of the image family. If you specify this parameter, the most recent custom images that are available in the specified image family are returned. You can use the images to create instances. If you specify ImageId, you cannot specify ImageFamily.
@@ -2764,6 +2833,8 @@ export declare class CreateScalingConfigurationShrinkRequest extends $tea.Model
2764
2833
  * hpc-clusterid
2765
2834
  */
2766
2835
  hpcClusterId?: string;
2836
+ httpEndpoint?: string;
2837
+ httpTokens?: string;
2767
2838
  /**
2768
2839
  * @remarks
2769
2840
  * The name of the image family. If you specify this parameter, the most recent custom images that are available in the specified image family are returned. You can use the images to create instances. If you specify ImageId, you cannot specify ImageFamily.
@@ -3575,6 +3646,17 @@ export declare class CreateScalingGroupRequest extends $tea.Model {
3575
3646
  */
3576
3647
  spotInstanceRemedy?: boolean;
3577
3648
  /**
3649
+ * @remarks
3650
+ * The period of time required by the ECS instance to enter the Stopped state. Unit: seconds. Valid values: 30 to 240.
3651
+ *
3652
+ * >
3653
+ *
3654
+ * * This parameter takes effect only if you set ScalingPolicy to release.
3655
+ *
3656
+ * * If you specify this parameter, the system will wait for the ECS instance to enter the Stopped state for the specified period of time before continuing with the scale-in operation, regardless of the status of the ECS instance.
3657
+ *
3658
+ * * If you do not specify this parameter, the system will wait for the ECS instance to stop before continuing with the scale-in operation. If the ECS instance is not successfully stopped, the scale-in process will be rolled back and considered failed.
3659
+ *
3578
3660
  * @example
3579
3661
  * 60
3580
3662
  */
@@ -5066,6 +5148,95 @@ export declare class DescribeAlertConfigurationResponse extends $tea.Model {
5066
5148
  [key: string]: any;
5067
5149
  });
5068
5150
  }
5151
+ export declare class DescribeDiagnoseReportsRequest extends $tea.Model {
5152
+ /**
5153
+ * @example
5154
+ * 1
5155
+ */
5156
+ pageNumber?: number;
5157
+ /**
5158
+ * @example
5159
+ * 10
5160
+ */
5161
+ pageSize?: number;
5162
+ /**
5163
+ * @remarks
5164
+ * This parameter is required.
5165
+ *
5166
+ * @example
5167
+ * cn-shenzhen
5168
+ */
5169
+ regionId?: string;
5170
+ reportIds?: string[];
5171
+ /**
5172
+ * @remarks
5173
+ * This parameter is required.
5174
+ *
5175
+ * @example
5176
+ * asg-2vcis7yglxtm*****
5177
+ */
5178
+ scalingGroupId?: string;
5179
+ static names(): {
5180
+ [key: string]: string;
5181
+ };
5182
+ static types(): {
5183
+ [key: string]: any;
5184
+ };
5185
+ constructor(map?: {
5186
+ [key: string]: any;
5187
+ });
5188
+ }
5189
+ export declare class DescribeDiagnoseReportsResponseBody extends $tea.Model {
5190
+ /**
5191
+ * @example
5192
+ * 1
5193
+ */
5194
+ pageNumber?: number;
5195
+ /**
5196
+ * @example
5197
+ * 10
5198
+ */
5199
+ pageSize?: number;
5200
+ reports?: DescribeDiagnoseReportsResponseBodyReports[];
5201
+ /**
5202
+ * @remarks
5203
+ * Id of the request
5204
+ *
5205
+ * @example
5206
+ * ECA123C6-107B-5F70-A177-740A7224C996
5207
+ */
5208
+ requestId?: string;
5209
+ /**
5210
+ * @example
5211
+ * 5
5212
+ */
5213
+ totalCount?: number;
5214
+ static names(): {
5215
+ [key: string]: string;
5216
+ };
5217
+ static types(): {
5218
+ [key: string]: any;
5219
+ };
5220
+ constructor(map?: {
5221
+ [key: string]: any;
5222
+ });
5223
+ }
5224
+ export declare class DescribeDiagnoseReportsResponse extends $tea.Model {
5225
+ headers?: {
5226
+ [key: string]: string;
5227
+ };
5228
+ statusCode?: number;
5229
+ body?: DescribeDiagnoseReportsResponseBody;
5230
+ static names(): {
5231
+ [key: string]: string;
5232
+ };
5233
+ static types(): {
5234
+ [key: string]: any;
5235
+ };
5236
+ constructor(map?: {
5237
+ [key: string]: any;
5238
+ });
5239
+ }
5069
5240
  export declare class DescribeEciScalingConfigurationDetailRequest extends $tea.Model {
5070
5241
  /**
5071
5242
  * @remarks
@@ -5316,14 +5487,29 @@ export declare class DescribeEciScalingConfigurationsResponse extends $tea.Model
5316
5487
  });
5317
5488
  }
5318
5489
  export declare class DescribeElasticStrengthRequest extends $tea.Model {
5490
+ /**
5491
+ * @remarks
5492
+ * The instance types. The instance types specified by this parameter overwrite the instance types specified in the scaling configuration.
5493
+ */
5319
5494
  instanceTypes?: string[];
5320
5495
  /**
5496
+ * @remarks
5497
+ * The preemption policy that you want to apply to pay-as-you-go instances. The preemption policy specified by this parameter overwrites the preemption policy specified in the scaling configuration. Valid values:
5498
+ *
5499
+ * * NoSpot: The instances are created as regular pay-as-you-go instances.
5500
+ * * SpotWithPriceLimit: The instances are created as preemptible instances that have a user-defined maximum hourly price.
5501
+ * * SpotAsPriceGo: The instances are created as preemptible instances for which the market price at the time of purchase is automatically used as the bidding price.
5502
+ *
5503
+ * Default value: NoSpot.
5504
+ *
5321
5505
  * @example
5322
5506
  * NoSpot
5323
5507
  */
5324
5508
  priorityStrategy?: string;
5325
5509
  /**
5326
5510
  * @remarks
5511
+ * The region ID of the scaling group.
5512
+ *
5327
5513
  * This parameter is required.
5328
5514
  *
5329
5515
  * @example
@@ -5331,11 +5517,27 @@ export declare class DescribeElasticStrengthRequest extends $tea.Model {
5331
5517
  */
5332
5518
  regionId?: string;
5333
5519
  /**
5520
+ * @remarks
5521
+ * The ID of the scaling group.
5522
+ *
5334
5523
  * @example
5335
5524
  * asg-bp18p2yfxow2dloq****
5336
5525
  */
5337
5526
  scalingGroupId?: string;
5527
+ /**
5528
+ * @remarks
5529
+ * The IDs of the scaling groups that you want to query.
5530
+ */
5338
5531
  scalingGroupIds?: string[];
5532
+ /**
5533
+ * @remarks
5534
+ * The categories of the system disks. The categories of the system disks specified by this parameter overwrite the categories of the system disks specified in the scaling configuration. Valid values:
5535
+ *
5536
+ * * cloud: basic disk.
5537
+ * * cloud_efficiency: ultra disk.
5538
+ * * cloud_ssd: standard SSD.
5539
+ * * cloud_essd: Enterprise SSD (ESSD).
5540
+ */
5339
5541
  systemDiskCategories?: string[];
5340
5542
  static names(): {
5341
5543
  [key: string]: string;
@@ -5348,14 +5550,28 @@ export declare class DescribeElasticStrengthRequest extends $tea.Model {
5348
5550
  });
5349
5551
  }
5350
5552
  export declare class DescribeElasticStrengthResponseBody extends $tea.Model {
5553
+ /**
5554
+ * @remarks
5555
+ * The scaling strength models.
5556
+ */
5351
5557
  elasticStrengthModels?: DescribeElasticStrengthResponseBodyElasticStrengthModels[];
5352
5558
  /**
5559
+ * @remarks
5560
+ * The request ID.
5561
+ *
5353
5562
  * @example
5354
5563
  * 73469C7-AA6F-4DC5-B3DB-A3DC0DE3****
5355
5564
  */
5356
5565
  requestId?: string;
5566
+ /**
5567
+ * @remarks
5568
+ * The resource pools.
5569
+ */
5357
5570
  resourcePools?: DescribeElasticStrengthResponseBodyResourcePools[];
5358
5571
  /**
5572
+ * @remarks
5573
+ * The scaling strength of the scaling group. Each combination of instance type + zone is scored from 0 to 1 based on its availability, with 0 being the weakest scaling strength and 1 being the strongest. The scaling strength of the scaling group is measured by the combined scores of all the combinations of instance type + zone.
5574
+ *
5359
5575
  * @example
5360
5576
  * 1.5
5361
5577
  */
@@ -6900,6 +7116,69 @@ export declare class DescribeScalingGroupDetailResponse extends $tea.Model {
6900
7116
  [key: string]: any;
6901
7117
  });
6902
7118
  }
7119
+ export declare class DescribeScalingGroupDiagnoseDetailsRequest extends $tea.Model {
7120
+ /**
7121
+ * @remarks
7122
+ * This parameter is required.
7123
+ *
7124
+ * @example
7125
+ * cn-qingdao
7126
+ */
7127
+ regionId?: string;
7128
+ /**
7129
+ * @remarks
7130
+ * This parameter is required.
7131
+ *
7132
+ * @example
7133
+ * asg-bp18p2yfxow2dloq****
7134
+ */
7135
+ scalingGroupId?: string;
7136
+ static names(): {
7137
+ [key: string]: string;
7138
+ };
7139
+ static types(): {
7140
+ [key: string]: any;
7141
+ };
7142
+ constructor(map?: {
7143
+ [key: string]: any;
7144
+ });
7145
+ }
7146
+ export declare class DescribeScalingGroupDiagnoseDetailsResponseBody extends $tea.Model {
7147
+ details?: DescribeScalingGroupDiagnoseDetailsResponseBodyDetails[];
7148
+ /**
7149
+ * @remarks
7150
+ * Id of the request
7151
+ *
7152
+ * @example
7153
+ * 688B18B8-FB1E-42EB-A1ED-7F55B090****
7154
+ */
7155
+ requestId?: string;
7156
+ static names(): {
7157
+ [key: string]: string;
7158
+ };
7159
+ static types(): {
7160
+ [key: string]: any;
7161
+ };
7162
+ constructor(map?: {
7163
+ [key: string]: any;
7164
+ });
7165
+ }
7166
+ export declare class DescribeScalingGroupDiagnoseDetailsResponse extends $tea.Model {
7167
+ headers?: {
7168
+ [key: string]: string;
7169
+ };
7170
+ statusCode?: number;
7171
+ body?: DescribeScalingGroupDiagnoseDetailsResponseBody;
7172
+ static names(): {
7173
+ [key: string]: string;
7174
+ };
7175
+ static types(): {
7176
+ [key: string]: any;
7177
+ };
7178
+ constructor(map?: {
7179
+ [key: string]: any;
7180
+ });
7181
+ }
6903
7182
  export declare class DescribeScalingGroupsRequest extends $tea.Model {
6904
7183
  /**
6905
7184
  * @remarks
@@ -10434,6 +10713,8 @@ export declare class ModifyScalingConfigurationRequest extends $tea.Model {
10434
10713
  * hpc-clusterid
10435
10714
  */
10436
10715
  hpcClusterId?: string;
10716
+ httpEndpoint?: string;
10717
+ httpTokens?: string;
10437
10718
  /**
10438
10719
  * @remarks
10439
10720
  * The name of the image family. If you specify this parameter, the latest custom images that are available in the specified image family are returned. Then, you can use the images to create instances. If you specify ImageId, you cannot specify ImageFamily.
@@ -10506,6 +10787,7 @@ export declare class ModifyScalingConfigurationRequest extends $tea.Model {
10506
10787
  * PayByBandwidth
10507
10788
  */
10508
10789
  internetChargeType?: string;
10790
+ internetMaxBandwidthIn?: number;
10509
10791
  /**
10510
10792
  * @remarks
10511
10793
  * The maximum outbound public bandwidth. Unit: Mbit/s. Valid values:
@@ -10892,6 +11174,8 @@ export declare class ModifyScalingConfigurationShrinkRequest extends $tea.Model
10892
11174
  * hpc-clusterid
10893
11175
  */
10894
11176
  hpcClusterId?: string;
11177
+ httpEndpoint?: string;
11178
+ httpTokens?: string;
10895
11179
  /**
10896
11180
  * @remarks
10897
11181
  * The name of the image family. If you specify this parameter, the latest custom images that are available in the specified image family are returned. Then, you can use the images to create instances. If you specify ImageId, you cannot specify ImageFamily.
@@ -10964,6 +11248,7 @@ export declare class ModifyScalingConfigurationShrinkRequest extends $tea.Model
10964
11248
  * PayByBandwidth
10965
11249
  */
10966
11250
  internetChargeType?: string;
11251
+ internetMaxBandwidthIn?: number;
10967
11252
  /**
10968
11253
  * @remarks
10969
11254
  * The maximum outbound public bandwidth. Unit: Mbit/s. Valid values:
@@ -11566,6 +11851,17 @@ export declare class ModifyScalingGroupRequest extends $tea.Model {
11566
11851
  */
11567
11852
  spotInstanceRemedy?: boolean;
11568
11853
  /**
11854
+ * @remarks
11855
+ * The period of time that is required by the Elastic Compute Service (ECS) instance to enter the Stopped state during the scale-in process. Unit: seconds. Valid values: 30 to 240.
11856
+ *
11857
+ * >
11858
+ *
11859
+ * * This parameter takes effect only if you set ScalingPolicy to release.\\
11860
+ * If you specify this parameter, the system proceeds with the scale-in process only after the period of time specified by StopInstanceTimeout ends. In this case, the scale-in operation continues regardless of whether the ECS instance enters the Stopped state or not.\\
11861
+ * If you do not specify this parameter, the system proceeds with the scale-in process only after the ECS instance enters the Stopped state. If the ECS instance fails to enter the Stopped state, the scale-in process rolls back, and the scale-in operation is considered as failed.
11862
+ *
11863
+ * * When you call the ModifyScalingGroup operation, you can set the value to 0. In this case, the system ignores this parameter.
11864
+ *
11569
11865
  * @example
11570
11866
  * 60
11571
11867
  */
@@ -12318,6 +12614,17 @@ export declare class RemoveInstancesRequest extends $tea.Model {
12318
12614
  */
12319
12615
  scalingGroupId?: string;
12320
12616
  /**
12617
+ * @remarks
12618
+ * The period of time that is required by the Elastic Compute Service (ECS) instance to enter the Stopped state during the scale-in process. Unit: seconds. Valid values: 30 to 240.
12619
+ *
12620
+ * >
12621
+ *
12622
+ * * By default, this parameter inherits the value of StopInstanceTimeout specified in the CreateScalingGroup or ModifyScalingGroup operation. You can also specify a different value for this parameter in the RemoveInstances operation.
12623
+ *
12624
+ * * This parameter takes effect only if you set RemovePolicy to release.\\
12625
+ * If you specify this parameter, the system proceeds with the scale-in process only after the period of time specified by StopInstanceTimeout ends. In this case, the scale-in operation continues regardless of whether the ECS instance enters the Stopped state or not.\\
12626
+ * If you do not specify this parameter, the system proceeds with the scale-in process only after the ECS instance enters the Stopped state. If the ECS instance fails to enter the Stopped state, the scale-in process rolls back, and the scale-in operation is considered as failed.
12627
+ *
12321
12628
  * @example
12322
12629
  * 60
12323
12630
  */
@@ -16787,7 +17094,7 @@ export declare class CreateScalingGroupRequestLifecycleHooks extends $tea.Model
16787
17094
  * @remarks
16788
17095
  * The action that Auto Scaling performs when the lifecycle hook times out. Valid values:
16789
17096
  *
16790
- * * CONTINUE: Auto Scaling continues to respond to a scale-in or scale-out request.
17097
+ * * CONTINUE: Auto Scaling continues to respond to the scaling request.
16791
17098
  * * ABANDON: Auto Scaling releases ECS instances that are created during scale-out events, or removes ECS instances from the scaling group during scale-in events.
16792
17099
  *
16793
17100
  * If multiple lifecycle hooks in the scaling group are triggered during scale-in events, and you set DefaultResult to ABANDON for one of the lifecycle hooks, Auto Scaling immediately performs the action after the lifecycle hook whose DefaultResult is set to ABANDON times out. In this case, other lifecycle hooks time out ahead of schedule. In other cases, Auto Scaling performs the action only after all lifecycle hooks time out. The action that Auto Scaling performs is determined by the value of DefaultResult that you specify for the lifecycle hook that most recently times out.
@@ -16802,7 +17109,7 @@ export declare class CreateScalingGroupRequestLifecycleHooks extends $tea.Model
16802
17109
  * @remarks
16803
17110
  * The period of time before the lifecycle hook times out. When the lifecycle hook times out, Auto Scaling performs the action that is specified by DefaultResult. Valid values: 30 to 21600. Unit: seconds.
16804
17111
  *
16805
- * After you create a lifecycle hook, you can call the RecordLifecycleActionHeartbeat operation to extend the timeout period of the lifecycle hook. You can also call the CompleteLifecycleAction operation to end the timeout period of the lifecycle hook ahead of scheduled.
17112
+ * After you create a lifecycle hook, you can call the RecordLifecycleActionHeartbeat operation to extend the timeout period of the lifecycle hook. You can also call the CompleteLifecycleAction operation to end the timeout period of the lifecycle hook ahead of schedule.
16806
17113
  *
16807
17114
  * Default value: 600.
16808
17115
  *
@@ -16833,15 +17140,15 @@ export declare class CreateScalingGroupRequestLifecycleHooks extends $tea.Model
16833
17140
  lifecycleTransition?: string;
16834
17141
  /**
16835
17142
  * @remarks
16836
- * The identifier of the notification recipient party when the lifecycle hook takes effect. You can specify a Message Service (MNS) topic or queue as the notification recipient party. Specify the value in the acs:ess:{region}:{account-id}:{resource-relative-id} format.
17143
+ * The Alibaba Cloud Resource Name (ARN) of the notification recipient party. You can specify a Simple Message Queue (SMQ, formerly MNS) topic or queue as the recipient party. The value is in the acs:ess:{region}:{account-id}:{resource-relative-id} format.
16837
17144
  *
16838
17145
  * * region: the region ID of the scaling group
16839
17146
  * * account-id: the ID of your Alibaba Cloud account.
16840
17147
  *
16841
17148
  * Examples:
16842
17149
  *
16843
- * * MNS queue: acs:ess:{region}:{account-id}:queue/{queuename}
16844
- * * MNS topic: acs:ess:{region}:{account-id}:topic/{topicname}
17150
+ * * SMQ queue: acs:ess:{region}:{account-id}:queue/{queuename}
17151
+ * * SMQ topic: acs:ess:{region}:{account-id}:topic/{topicname}
16845
17152
  *
16846
17153
  * @example
16847
17154
  * acs:ess:cn-hangzhou:1111111111:queue/queue2
@@ -16849,7 +17156,7 @@ export declare class CreateScalingGroupRequestLifecycleHooks extends $tea.Model
16849
17156
  notificationArn?: string;
16850
17157
  /**
16851
17158
  * @remarks
16852
- * The fixed string that you want to include in a notification. When a lifecycle hook takes effect, Auto Scaling sends a notification. The fixed string can contain up to 4,096 characters in length. When Auto Scaling sends a notification to the recipient party, it includes predefined notification metadata into the notification. This helps in managing and labeling notifications of different categories. notificationmetadata takes effect only if you specify notificationarn.
17159
+ * The fixed string that you want to include in notifications. When a lifecycle hook takes effect, Auto Scaling sends a notification. The fixed string can contain up to 4,096 characters in length. When Auto Scaling sends a notification to the recipient party, it includes predefined notification metadata into the notification. This helps in managing and labeling notifications of different categories. NotificationMetadata takes effect only if you specify NotificationArn.
16853
17160
  *
16854
17161
  * @example
16855
17162
  * Test
@@ -17510,6 +17817,84 @@ export declare class DescribeAlarmsResponseBodyAlarmList extends $tea.Model {
17510
17817
  [key: string]: any;
17511
17818
  });
17512
17819
  }
17820
+ export declare class DescribeDiagnoseReportsResponseBodyReportsDetails extends $tea.Model {
17821
+ /**
17822
+ * @example
17823
+ * AccountArrearage
17824
+ */
17825
+ diagnoseType?: string;
17826
+ /**
17827
+ * @example
17828
+ * VSwitchIdNotFound
17829
+ */
17830
+ errorCode?: string;
17831
+ /**
17832
+ * @example
17833
+ * sg-280ih****
17834
+ */
17835
+ resourceId?: string;
17836
+ /**
17837
+ * @example
17838
+ * Normal
17839
+ */
17840
+ status?: string;
17841
+ static names(): {
17842
+ [key: string]: string;
17843
+ };
17844
+ static types(): {
17845
+ [key: string]: any;
17846
+ };
17847
+ constructor(map?: {
17848
+ [key: string]: any;
17849
+ });
17850
+ }
17851
+ export declare class DescribeDiagnoseReportsResponseBodyReports extends $tea.Model {
17852
+ /**
17853
+ * @example
17854
+ * 2024-08-23T02:22:30Z
17855
+ */
17856
+ creationTime?: string;
17857
+ details?: DescribeDiagnoseReportsResponseBodyReportsDetails[];
17858
+ /**
17859
+ * @example
17860
+ * Normal
17861
+ */
17862
+ diagnoseStatus?: string;
17863
+ /**
17864
+ * @example
17865
+ * Finished
17866
+ */
17867
+ processStatus?: string;
17868
+ /**
17869
+ * @example
17870
+ * cn-qingdao
17871
+ */
17872
+ regionId?: string;
17873
+ /**
17874
+ * @example
17875
+ * dr-bp14p0cjp7wvjob5l6hk
17876
+ */
17877
+ reportId?: string;
17878
+ /**
17879
+ * @example
17880
+ * asg-bp124uve5iph3*****
17881
+ */
17882
+ scalingGroupId?: string;
17883
+ /**
17884
+ * @example
17885
+ * 161456884*******
17886
+ */
17887
+ userId?: string;
17888
+ static names(): {
17889
+ [key: string]: string;
17890
+ };
17891
+ static types(): {
17892
+ [key: string]: any;
17893
+ };
17894
+ constructor(map?: {
17895
+ [key: string]: any;
17896
+ });
17897
+ }
17513
17898
  export declare class DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationAcrRegistryInfos extends $tea.Model {
17514
17899
  /**
17515
17900
  * @remarks
@@ -20683,27 +21068,46 @@ export declare class DescribeEciScalingConfigurationsResponseBodyScalingConfigur
20683
21068
  }
20684
21069
  export declare class DescribeElasticStrengthResponseBodyElasticStrengthModelsResourcePools extends $tea.Model {
20685
21070
  /**
21071
+ * @remarks
21072
+ * The error code returned when the scaling strength is the weakest.
21073
+ *
20686
21074
  * @example
20687
21075
  * InstanceTypesOrDiskTypesNotSupported
20688
21076
  */
20689
21077
  code?: string;
20690
21078
  /**
21079
+ * @remarks
21080
+ * The instance type of the resource pool.
21081
+ *
20691
21082
  * @example
20692
21083
  * ecs.r7.large
20693
21084
  */
20694
21085
  instanceType?: string;
20695
21086
  /**
21087
+ * @remarks
21088
+ * The error message returned when the scaling strength is the weakest.
21089
+ *
20696
21090
  * @example
20697
21091
  * The instanceTypes or diskTypes are not supported.
20698
21092
  */
20699
21093
  msg?: string;
20700
21094
  /**
21095
+ * @remarks
21096
+ * The scaling strength of the resource pool.
21097
+ *
20701
21098
  * @example
20702
21099
  * 0.6
20703
21100
  */
20704
21101
  strength?: number;
21102
+ /**
21103
+ * @remarks
21104
+ * The IDs of the vSwitches in the zones of the resource pool.
21105
+ */
20705
21106
  vSwitchIds?: string[];
20706
21107
  /**
21108
+ * @remarks
21109
+ * The zone ID of the resource pool.
21110
+ *
20707
21111
  * @example
20708
21112
  * cn-hangzhou-g
20709
21113
  */
@@ -20719,9 +21123,23 @@ export declare class DescribeElasticStrengthResponseBodyElasticStrengthModelsRes
20719
21123
  });
20720
21124
  }
20721
21125
  export declare class DescribeElasticStrengthResponseBodyElasticStrengthModels extends $tea.Model {
21126
+ /**
21127
+ * @remarks
21128
+ * The resource pools.
21129
+ */
20722
21130
  resourcePools?: DescribeElasticStrengthResponseBodyElasticStrengthModelsResourcePools[];
21131
+ /**
21132
+ * @remarks
21133
+ * The ID of the scaling group.
21134
+ *
21135
+ * @example
21136
+ * asg-wz98mnj7nblv9gc****
21137
+ */
20723
21138
  scalingGroupId?: string;
20724
21139
  /**
21140
+ * @remarks
21141
+ * The scaling strength of the scaling group. Each combination of instance type + zone is scored from 0 to 1 based on its availability, with 0 being the weakest scaling strength and 1 being the strongest. The scaling strength of the scaling group is measured by the combined scores of all the combinations of instance type + zone.
21142
+ *
20725
21143
  * @example
20726
21144
  * 1.5
20727
21145
  */
@@ -20738,27 +21156,46 @@ export declare class DescribeElasticStrengthResponseBodyElasticStrengthModels ex
20738
21156
  }
20739
21157
  export declare class DescribeElasticStrengthResponseBodyResourcePools extends $tea.Model {
20740
21158
  /**
21159
+ * @remarks
21160
+ * The error code returned when the scaling strength is the weakest.
21161
+ *
20741
21162
  * @example
20742
21163
  * IMG_NOT_SUPPORTED
20743
21164
  */
20744
21165
  code?: string;
20745
21166
  /**
21167
+ * @remarks
21168
+ * The instance type of the resource pool.
21169
+ *
20746
21170
  * @example
20747
21171
  * ecs.c7t.xlarge
20748
21172
  */
20749
21173
  instanceType?: string;
20750
21174
  /**
21175
+ * @remarks
21176
+ * The error message returned when the scaling strength is the weakest.
21177
+ *
20751
21178
  * @example
20752
21179
  * The instanceType does not support the image in the configuration.
20753
21180
  */
20754
21181
  msg?: string;
20755
21182
  /**
21183
+ * @remarks
21184
+ * The scaling strength of the resource pool.
21185
+ *
20756
21186
  * @example
20757
21187
  * 0.6
20758
21188
  */
20759
21189
  strength?: number;
21190
+ /**
21191
+ * @remarks
21192
+ * The IDs of the vSwitches in the zones of the resource pool.
21193
+ */
20760
21194
  vSwitchIds?: string[];
20761
21195
  /**
21196
+ * @remarks
21197
+ * The zone ID of the resource pool.
21198
+ *
20762
21199
  * @example
20763
21200
  * cn-hangzhou-g
20764
21201
  */
@@ -21961,10 +22398,9 @@ export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurati
21961
22398
  export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurationsSecurityOptions extends $tea.Model {
21962
22399
  /**
21963
22400
  * @remarks
21964
- * The confidential computing mode. Valid values:
21965
- *
21966
- * * Enclave: An enclave-based confidential computing environment is built on the instance. For more information, see [Build a confidential computing environment by using Enclave](https://help.aliyun.com/document_detail/203433.html).
21967
- * * TDX: A Trust Domain Extensions (TDX) confidential computing environment is built on the instance. For more information, see [Build a TDX confidential computing environment](https://help.aliyun.com/document_detail/479090.html).
22401
+ * 机密计算模式。可能值:
22402
+ * - Enclave:表示ECS实例使用Enclave构建机密计算环境。更多信息,请参见[使用Enclave构建机密计算环境](https://help.aliyun.com/document_detail/203433.html)。
22403
+ * - TDX:表示构建TDX机密计算环境。更多信息,请参见[构建TDX机密计算环境](https://help.aliyun.com/document_detail/479090.html)
21968
22404
  *
21969
22405
  * @example
21970
22406
  * TDX
@@ -22154,6 +22590,8 @@ export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurati
22154
22590
  * hpc-clus****
22155
22591
  */
22156
22592
  hpcClusterId?: string;
22593
+ httpEndpoint?: string;
22594
+ httpTokens?: string;
22157
22595
  /**
22158
22596
  * @remarks
22159
22597
  * The name of the image family. You can specify this parameter to obtain the latest available images in the current image family for instance creation. If you specify ImageId, you cannot specify `ImageFamily`.
@@ -22228,7 +22666,7 @@ export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurati
22228
22666
  instanceName?: string;
22229
22667
  /**
22230
22668
  * @remarks
22231
- * The information about the intelligent configuration settings, which determine the available instance types.
22669
+ * The intelligent configuration settings, which determine the available instance types.
22232
22670
  */
22233
22671
  instancePatternInfos?: DescribeScalingConfigurationsResponseBodyScalingConfigurationsInstancePatternInfos[];
22234
22672
  /**
@@ -22426,7 +22864,7 @@ export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurati
22426
22864
  securityGroupIds?: string[];
22427
22865
  /**
22428
22866
  * @remarks
22429
- * The security options.
22867
+ * 安全选项。
22430
22868
  */
22431
22869
  securityOptions?: DescribeScalingConfigurationsResponseBodyScalingConfigurationsSecurityOptions;
22432
22870
  /**
@@ -23407,6 +23845,37 @@ export declare class DescribeScalingGroupDetailResponseBodyScalingGroup extends
23407
23845
  [key: string]: any;
23408
23846
  });
23409
23847
  }
23848
+ export declare class DescribeScalingGroupDiagnoseDetailsResponseBodyDetails extends $tea.Model {
23849
+ /**
23850
+ * @example
23851
+ * SecurityGroup
23852
+ */
23853
+ diagnoseType?: string;
23854
+ /**
23855
+ * @example
23856
+ * AccountArrearage
23857
+ */
23858
+ errorCode?: string;
23859
+ /**
23860
+ * @example
23861
+ * sg-280ih****
23862
+ */
23863
+ resourceId?: string;
23864
+ /**
23865
+ * @example
23866
+ * Normal
23867
+ */
23868
+ status?: string;
23869
+ static names(): {
23870
+ [key: string]: string;
23871
+ };
23872
+ static types(): {
23873
+ [key: string]: any;
23874
+ };
23875
+ constructor(map?: {
23876
+ [key: string]: any;
23877
+ });
23878
+ }
23410
23879
  export declare class DescribeScalingGroupsRequestTags extends $tea.Model {
23411
23880
  /**
23412
23881
  * @remarks
@@ -24157,6 +24626,9 @@ export declare class DescribeScalingGroupsResponseBodyScalingGroups extends $tea
24157
24626
  */
24158
24627
  standbyCapacity?: number;
24159
24628
  /**
24629
+ * @remarks
24630
+ * The period of time that is required by the Elastic Compute Service (ECS) instance to enter the Stopped state during the scale-in process. Unit: seconds.
24631
+ *
24160
24632
  * @example
24161
24633
  * 60
24162
24634
  */
@@ -28842,6 +29314,21 @@ export default class Client extends OpenApi {
28842
29314
  * @returns CreateAlarmResponse
28843
29315
  */
28844
29316
  createAlarm(request: CreateAlarmRequest): Promise<CreateAlarmResponse>;
29317
+ /**
29318
+ * CreateDiagnoseReport
29319
+ *
29320
+ * @param request - CreateDiagnoseReportRequest
29321
+ * @param runtime - runtime options for this request RuntimeOptions
29322
+ * @returns CreateDiagnoseReportResponse
29323
+ */
29324
+ createDiagnoseReportWithOptions(request: CreateDiagnoseReportRequest, runtime: $Util.RuntimeOptions): Promise<CreateDiagnoseReportResponse>;
29325
+ /**
29326
+ * CreateDiagnoseReport
29327
+ *
29328
+ * @param request - CreateDiagnoseReportRequest
29329
+ * @returns CreateDiagnoseReportResponse
29330
+ */
29331
+ createDiagnoseReport(request: CreateDiagnoseReportRequest): Promise<CreateDiagnoseReportResponse>;
28845
29332
  /**
28846
29333
  * Creates a scaling configuration of the Elastic Container Instance type. Auto Scaling uses the scaling configuration as a template to create elastic container instances to meet your business requirements during scale-out events.
28847
29334
  *
@@ -29318,6 +29805,21 @@ export default class Client extends OpenApi {
29318
29805
  * @returns DescribeAlertConfigurationResponse
29319
29806
  */
29320
29807
  describeAlertConfiguration(request: DescribeAlertConfigurationRequest): Promise<DescribeAlertConfigurationResponse>;
29808
+ /**
29809
+ * DescribeDiagnoseReports
29810
+ *
29811
+ * @param request - DescribeDiagnoseReportsRequest
29812
+ * @param runtime - runtime options for this request RuntimeOptions
29813
+ * @returns DescribeDiagnoseReportsResponse
29814
+ */
29815
+ describeDiagnoseReportsWithOptions(request: DescribeDiagnoseReportsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiagnoseReportsResponse>;
29816
+ /**
29817
+ * DescribeDiagnoseReports
29818
+ *
29819
+ * @param request - DescribeDiagnoseReportsRequest
29820
+ * @returns DescribeDiagnoseReportsResponse
29821
+ */
29822
+ describeDiagnoseReports(request: DescribeDiagnoseReportsRequest): Promise<DescribeDiagnoseReportsResponse>;
29321
29823
  /**
29322
29824
  * Queries the details of a scaling configuration. You can query a scaling configuration by its ID to learn about its details such as the temporary storage size, number of IPv6 addresses, and bandwidth of the elastic IP address (EIP). The scaling configuration details can be obtained as a YAML file.
29323
29825
  *
@@ -29579,6 +30081,21 @@ export default class Client extends OpenApi {
29579
30081
  * @returns DescribeScalingGroupDetailResponse
29580
30082
  */
29581
30083
  describeScalingGroupDetail(request: DescribeScalingGroupDetailRequest): Promise<DescribeScalingGroupDetailResponse>;
30084
+ /**
30085
+ * DescribeScalingGroupDiagnoseDetails
30086
+ *
30087
+ * @param request - DescribeScalingGroupDiagnoseDetailsRequest
30088
+ * @param runtime - runtime options for this request RuntimeOptions
30089
+ * @returns DescribeScalingGroupDiagnoseDetailsResponse
30090
+ */
30091
+ describeScalingGroupDiagnoseDetailsWithOptions(request: DescribeScalingGroupDiagnoseDetailsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeScalingGroupDiagnoseDetailsResponse>;
30092
+ /**
30093
+ * DescribeScalingGroupDiagnoseDetails
30094
+ *
30095
+ * @param request - DescribeScalingGroupDiagnoseDetailsRequest
30096
+ * @returns DescribeScalingGroupDiagnoseDetailsResponse
30097
+ */
30098
+ describeScalingGroupDiagnoseDetails(request: DescribeScalingGroupDiagnoseDetailsRequest): Promise<DescribeScalingGroupDiagnoseDetailsResponse>;
29582
30099
  /**
29583
30100
  * Queries information about scaling groups, such as the basic information, instances, and scaling configurations.
29584
30101
  *