@alicloud/ecs20140526 4.2.0 → 4.4.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
@@ -631,7 +631,7 @@ export declare class AllocatePublicIpAddressRequest extends $tea.Model {
631
631
  * The public IP address. If you leave this parameter empty, the system randomly assigns a public IP address to the instance.
632
632
  *
633
633
  * @example
634
- * 112.124.\*\*.**
634
+ * ``112.124.**.**``
635
635
  */
636
636
  ipAddress?: string;
637
637
  ownerAccount?: string;
@@ -664,7 +664,7 @@ export declare class AllocatePublicIpAddressResponseBody extends $tea.Model {
664
664
  * The public IP address.
665
665
  *
666
666
  * @example
667
- * 112.124.\*\*.**
667
+ * ``112.124.**.**``
668
668
  */
669
669
  ipAddress?: string;
670
670
  /**
@@ -963,7 +963,7 @@ export declare class AssignPrivateIpAddressesRequest extends $tea.Model {
963
963
  * To assign secondary private IP addresses to the ENI, you must specify `PrivateIpAddress.N` or `SecondaryPrivateIpAddressCount` but not both.
964
964
  *
965
965
  * @example
966
- * 10.1.\*\*.**
966
+ * ``10.1.**.**``
967
967
  */
968
968
  privateIpAddress?: string[];
969
969
  /**
@@ -3249,7 +3249,7 @@ export declare class CreateAutoProvisioningGroupRequest extends $tea.Model {
3249
3249
  * Specifies whether to release scaled-in instances when the real-time capacity of the auto provisioning group exceeds the target capacity and the group is triggered to scale in. Valid values:
3250
3250
  *
3251
3251
  * * termination: releases the scaled-in instances in the auto provisioning group.
3252
- * * no-termination: only removes the scaled-in instances from the auto provisioning group but does not release the instances.
3252
+ * * no-termination: removes the scaled-in instances from the auto provisioning group but does not release the instances.
3253
3253
  *
3254
3254
  * Default value: no-termination.
3255
3255
  *
@@ -4410,7 +4410,7 @@ export declare class CreateDeploymentSetRequest extends $tea.Model {
4410
4410
  clientToken?: string;
4411
4411
  /**
4412
4412
  * @remarks
4413
- * The name of the deployment set. The name must be 2 to 128 characters in length and can contain Unicode characters under the Decimal Number category and the categories whose names contain Letter. The name can also contain colons (:), underscores (_), periods (.), and hyphens (-).
4413
+ * The name of the deployment set. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with `http://` or `https://`. The name can contain digits, letters, colons (:), underscores (_), and hyphens (-).
4414
4414
  *
4415
4415
  * @example
4416
4416
  * testDeploymentSetName
@@ -4935,12 +4935,12 @@ export declare class CreateDiskRequest extends $tea.Model {
4935
4935
  *
4936
4936
  * * Valid values when DiskCategory is set to cloud_essd: vary based on the `PerformanceLevel` value.
4937
4937
  *
4938
- * * Valid values when PerformanceLevel is set to PL0: 1 to 32768.
4939
- * * Valid values when PerformanceLevel is set to PL1: 20 to 32768.
4940
- * * Valid values when PerformanceLevel is set to PL2: 461 to 32768.
4941
- * * Valid values when PerformanceLevel is set to PL3: 1261 to 32768.
4938
+ * * Valid values when PerformanceLevel is set to PL0: 1 to 65536.
4939
+ * * Valid values when PerformanceLevel is set to PL1: 20 to 65536.
4940
+ * * Valid values when PerformanceLevel is set to PL2: 461 to 65536.
4941
+ * * Valid values when PerformanceLevel is set to PL3: 1261 to 65536.
4942
4942
  *
4943
- * * Valid values when DiskCategory is set to cloud_auto: 1 to 32768.
4943
+ * * Valid values when DiskCategory is set to cloud_auto: 1 to 65536.
4944
4944
  *
4945
4945
  * * Valid values when DiskCategory is set to cloud_essd_entry: 10 to 32768.
4946
4946
  *
@@ -4950,7 +4950,7 @@ export declare class CreateDiskRequest extends $tea.Model {
4950
4950
  *
4951
4951
  * If `SnapshotId` is specified, the following limits apply to `SnapshotId` and `Size`:
4952
4952
  *
4953
- * * If the size of the snapshot specified by `SnapshotId` is larger than the value of `Size`, the size of the created disk is equal to the specified snapshot size.
4953
+ * * If the size of the snapshot specified by `SnapshotId` is larger than the value of `Size`, the size of the created disk is equal to the size of the snapshot.
4954
4954
  * * If the size of the snapshot specified by `SnapshotId` is smaller than the value of `Size`, the size of the created disk is equal to the value of `Size`.
4955
4955
  *
4956
4956
  * @example
@@ -6333,7 +6333,7 @@ export declare class CreateInstanceRequest extends $tea.Model {
6333
6333
  * The internal IP address to assign to the instance.
6334
6334
  *
6335
6335
  * @example
6336
- * 192.168.\*\*.**
6336
+ * ``192.168.**.**``
6337
6337
  */
6338
6338
  innerIpAddress?: string;
6339
6339
  /**
@@ -6555,7 +6555,15 @@ export declare class CreateInstanceRequest extends $tea.Model {
6555
6555
  spotDuration?: number;
6556
6556
  /**
6557
6557
  * @remarks
6558
- * The interruption mode of the preemptible instance. The value can only be Terminate, which specifies that the instance is released.
6558
+ * The interruption mode of the preemptible instance. Valid values:
6559
+ *
6560
+ * * Terminate: The instance is released.
6561
+ *
6562
+ * * Stop: The instance is stopped in economical mode.
6563
+ *
6564
+ * For information about the economical mode, see [Economical mode](https://help.aliyun.com/document_detail/63353.html).
6565
+ *
6566
+ * Default value: Terminate.
6559
6567
  *
6560
6568
  * @example
6561
6569
  * Terminate
@@ -6599,7 +6607,7 @@ export declare class CreateInstanceRequest extends $tea.Model {
6599
6607
  storageSetPartitionNumber?: number;
6600
6608
  /**
6601
6609
  * @remarks
6602
- * The tags.
6610
+ * The tags to add to the instance.
6603
6611
  */
6604
6612
  tag?: CreateInstanceRequestTag[];
6605
6613
  /**
@@ -6860,13 +6868,15 @@ export declare class CreateLaunchTemplateRequest extends $tea.Model {
6860
6868
  autoReleaseTime?: string;
6861
6869
  /**
6862
6870
  * @remarks
6863
- * Specifies whether to enable auto-renewal for the instance. This parameter is valid only if `InstanceChargeType` is set to `PrePaid`. Valid values:
6871
+ * Specifies whether to enable auto-renewal. Valid values:
6864
6872
  *
6865
6873
  * * true
6866
6874
  * * false
6867
6875
  *
6868
6876
  * Default value: false.
6869
6877
  *
6878
+ * > This parameter takes effect only if you set `InstanceChargeType` to `PrePaid`.
6879
+ *
6870
6880
  * @example
6871
6881
  * true
6872
6882
  */
@@ -7127,7 +7137,7 @@ export declare class CreateLaunchTemplateRequest extends $tea.Model {
7127
7137
  * To assign a private IP address to an instance that resides in a VPC, make sure that the IP address is an idle IP address within the CIDR block of the vSwitch specified by the `VSwitchId` parameter.
7128
7138
  *
7129
7139
  * @example
7130
- * 10.1.\*\*.**
7140
+ * ``10.1.**.**``
7131
7141
  */
7132
7142
  privateIpAddress?: string;
7133
7143
  /**
@@ -7226,7 +7236,11 @@ export declare class CreateLaunchTemplateRequest extends $tea.Model {
7226
7236
  spotStrategy?: string;
7227
7237
  /**
7228
7238
  * @remarks
7229
- * The tags to add to the instance, disks, and primary ENI.
7239
+ * The tags to add to the instance, disks, and primary ENI that are created from the launch template.
7240
+ *
7241
+ * **Scenario**
7242
+ *
7243
+ * If you created a launch template by calling the CreateLaunchTemplate operation and use the default version that is automatically generated for the launch template to create instances, the specified tags are automatically added to the created instances, disks, and primary ENIs. For more information about the default versions of launch templates, see [xxxx]\\(url).
7230
7244
  */
7231
7245
  tag?: CreateLaunchTemplateRequestTag[];
7232
7246
  /**
@@ -7240,6 +7254,8 @@ export declare class CreateLaunchTemplateRequest extends $tea.Model {
7240
7254
  /**
7241
7255
  * @remarks
7242
7256
  * The tags to add to the launch template.
7257
+ *
7258
+ * > You can add tags to or query the tags of launch templates by calling API operations. You cannot add tags to or query the tags of launch templates in the ECS console.
7243
7259
  */
7244
7260
  templateTag?: CreateLaunchTemplateRequestTemplateTag[];
7245
7261
  /**
@@ -7490,7 +7506,7 @@ export declare class CreateLaunchTemplateVersionRequest extends $tea.Model {
7490
7506
  instanceName?: string;
7491
7507
  /**
7492
7508
  * @remarks
7493
- * The instance type. For more information, see [Instance families](https://help.aliyun.com/document_detail/25378.html) or call the [DescribeInstanceTypes](https://help.aliyun.com/document_detail/25620.html) operation to query the most recent instance type list.
7509
+ * The instance type. For more information, see [Overview of instance families](https://help.aliyun.com/document_detail/25378.html). You can also call the [DescribeInstanceTypes](https://help.aliyun.com/document_detail/25620.html) operation to query the most recent list of instance types.
7494
7510
  *
7495
7511
  * @example
7496
7512
  * ecs.g5.large
@@ -7632,7 +7648,7 @@ export declare class CreateLaunchTemplateVersionRequest extends $tea.Model {
7632
7648
  * To assign a private IP address to an instance of the VPC type, make sure that the IP address is an idle IP address within the CIDR block of the vSwitch specified by the `VSwitchId` parameter.
7633
7649
  *
7634
7650
  * @example
7635
- * 10.1.\*\*.**
7651
+ * ``10.1.**.**``
7636
7652
  */
7637
7653
  privateIpAddress?: string;
7638
7654
  /**
@@ -7676,9 +7692,9 @@ export declare class CreateLaunchTemplateVersionRequest extends $tea.Model {
7676
7692
  securityEnhancementStrategy?: string;
7677
7693
  /**
7678
7694
  * @remarks
7679
- * The ID of the security group to which to assign the instance. Instances within the same security group can access each other.
7695
+ * The ID of the security group to which to assign the ECS instance created based on the launch template version. Instances in the same security group can access each other.
7680
7696
  *
7681
- * > The `SecurityGroupId` parameter and the `SecurityGroupIds.N` parameter are mutually exclusive.
7697
+ * > You cannot specify `SecurityGroupId` and `SecurityGroupIds.N` in the same request.
7682
7698
  *
7683
7699
  * @example
7684
7700
  * sg-bp15ed6xe1yxeycg****
@@ -7731,7 +7747,7 @@ export declare class CreateLaunchTemplateVersionRequest extends $tea.Model {
7731
7747
  spotStrategy?: string;
7732
7748
  /**
7733
7749
  * @remarks
7734
- * The tags to add to the instance, disks, and primary ENI.
7750
+ * The tags to add to the ECS instance, disks, and primary elastic network interface (ENI) created based on the launch template version.
7735
7751
  */
7736
7752
  tag?: CreateLaunchTemplateVersionRequestTag[];
7737
7753
  /**
@@ -7760,7 +7776,7 @@ export declare class CreateLaunchTemplateVersionRequest extends $tea.Model {
7760
7776
  versionDescription?: string;
7761
7777
  /**
7762
7778
  * @remarks
7763
- * The ID of the virtual private cloud (VPC).
7779
+ * The ID of the virtual private cloud (VPC) in which to create the ECS instance.
7764
7780
  *
7765
7781
  * @example
7766
7782
  * vpc-bp12433upq1y5scen****
@@ -7797,7 +7813,7 @@ export declare class CreateLaunchTemplateVersionResponseBody extends $tea.Model
7797
7813
  launchTemplateId?: string;
7798
7814
  /**
7799
7815
  * @remarks
7800
- * The version number of the launch template.
7816
+ * The number of the created version of the launch template.
7801
7817
  *
7802
7818
  * @example
7803
7819
  * 2
@@ -8057,7 +8073,7 @@ export declare class CreateNetworkInterfaceRequest extends $tea.Model {
8057
8073
  * The specified IP address must be an idle IP address within the CIDR block of the vSwitch with which to associate the ENI. If this parameter is not specified, an idle IP address is assigned from within the vSwitch CIDR block at random.
8058
8074
  *
8059
8075
  * @example
8060
- * 172.17.\*\*.**
8076
+ * ``172.17.**.**``
8061
8077
  */
8062
8078
  primaryIpAddress?: string;
8063
8079
  /**
@@ -8067,7 +8083,7 @@ export declare class CreateNetworkInterfaceRequest extends $tea.Model {
8067
8083
  * > To assign secondary private IP addresses to the ENI, you can specify the `PrivateIpAddress.N` or `SecondaryPrivateIpAddressCount` parameter, but not both.
8068
8084
  *
8069
8085
  * @example
8070
- * 172.17.\*\*.**
8086
+ * ``172.17.**.**``
8071
8087
  */
8072
8088
  privateIpAddress?: string[];
8073
8089
  /**
@@ -8258,7 +8274,7 @@ export declare class CreateNetworkInterfaceResponseBody extends $tea.Model {
8258
8274
  * The private IP address of the ENI.
8259
8275
  *
8260
8276
  * @example
8261
- * 172.17.\*\*.**
8277
+ * ``172.17.**.**``
8262
8278
  */
8263
8279
  privateIpAddress?: string;
8264
8280
  /**
@@ -10322,7 +10338,7 @@ export declare class DeleteDemandResponse extends $tea.Model {
10322
10338
  export declare class DeleteDeploymentSetRequest extends $tea.Model {
10323
10339
  /**
10324
10340
  * @remarks
10325
- * The ID of the deployment set. You cannot delete a deployment set if the deployment set contains instances.
10341
+ * The ID of the deployment set that you want to delete.
10326
10342
  *
10327
10343
  * This parameter is required.
10328
10344
  *
@@ -10357,7 +10373,7 @@ export declare class DeleteDeploymentSetRequest extends $tea.Model {
10357
10373
  export declare class DeleteDeploymentSetResponseBody extends $tea.Model {
10358
10374
  /**
10359
10375
  * @remarks
10360
- * The request ID.
10376
+ * The ID of the request.
10361
10377
  *
10362
10378
  * @example
10363
10379
  * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
@@ -11428,7 +11444,7 @@ export declare class DeleteLaunchTemplateVersionRequest extends $tea.Model {
11428
11444
  export declare class DeleteLaunchTemplateVersionResponseBody extends $tea.Model {
11429
11445
  /**
11430
11446
  * @remarks
11431
- * The versions of the launch template.
11447
+ * The deleted launch template versions.
11432
11448
  */
11433
11449
  launchTemplateVersions?: DeleteLaunchTemplateVersionResponseBodyLaunchTemplateVersions;
11434
11450
  /**
@@ -15539,7 +15555,7 @@ export declare class DescribeDeploymentSetSupportedInstanceTypeFamilyRequest ext
15539
15555
  export declare class DescribeDeploymentSetSupportedInstanceTypeFamilyResponseBody extends $tea.Model {
15540
15556
  /**
15541
15557
  * @remarks
15542
- * The instance families that support deployment sets.
15558
+ * The instance families that support the deployment strategy.
15543
15559
  *
15544
15560
  * @example
15545
15561
  * ecs.i2g,ecs.i1,ecs.i2ne,ecs.i2gne
@@ -15582,7 +15598,7 @@ export declare class DescribeDeploymentSetSupportedInstanceTypeFamilyResponse ex
15582
15598
  export declare class DescribeDeploymentSetsRequest extends $tea.Model {
15583
15599
  /**
15584
15600
  * @remarks
15585
- * The IDs of deployment sets. The value can be a JSON array that consists of up to 100 deployment set IDs in the format of `["ds-xxxxxxxxx", "ds-yyyyyyyyy", "ds-zzzzzzzzz"]`. Separate multiple deployment set IDs with commas (,).
15601
+ * The IDs of deployment sets. The value can be a JSON array that consists of deployment set IDs in the format of `["ds-xxxxxxxxx", "ds-yyyyyyyyy", ... "ds-zzzzzzzzz"]`. You can specify up to 100 deployment set IDs in each request. Separate the deployment set IDs with commas (,).
15586
15602
  *
15587
15603
  * @example
15588
15604
  * ["ds-bp67acfmxazb4ph****", "ds-bp67acfmxazb4pi****", … "ds-bp67acfmxazb4pj****"]
@@ -15590,7 +15606,7 @@ export declare class DescribeDeploymentSetsRequest extends $tea.Model {
15590
15606
  deploymentSetIds?: string;
15591
15607
  /**
15592
15608
  * @remarks
15593
- * The name of the deployment set. The name must be 2 to 128 characters in length. It must start with a letter and cannot start with `http://` or `https://`. It can contain letters, digits, colons (:), underscores (_), and hyphens (-).
15609
+ * The name of the deployment set. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with `http://` or `https://`. The name can contain digits, letters, colons (:), underscores (_), and hyphens (-).
15594
15610
  *
15595
15611
  * @example
15596
15612
  * testDeploymentSetName
@@ -15598,7 +15614,7 @@ export declare class DescribeDeploymentSetsRequest extends $tea.Model {
15598
15614
  deploymentSetName?: string;
15599
15615
  /**
15600
15616
  * @remarks
15601
- * > The parameter is deprecated.
15617
+ * > This parameter is deprecated.
15602
15618
  *
15603
15619
  * @example
15604
15620
  * null
@@ -15606,7 +15622,7 @@ export declare class DescribeDeploymentSetsRequest extends $tea.Model {
15606
15622
  domain?: string;
15607
15623
  /**
15608
15624
  * @remarks
15609
- * > The parameter is deprecated.
15625
+ * > This parameter is deprecated.
15610
15626
  *
15611
15627
  * @example
15612
15628
  * null
@@ -15614,7 +15630,7 @@ export declare class DescribeDeploymentSetsRequest extends $tea.Model {
15614
15630
  granularity?: string;
15615
15631
  /**
15616
15632
  * @remarks
15617
- * > The parameter is deprecated.
15633
+ * > This parameter is deprecated.
15618
15634
  *
15619
15635
  * @example
15620
15636
  * null
@@ -15624,7 +15640,7 @@ export declare class DescribeDeploymentSetsRequest extends $tea.Model {
15624
15640
  ownerId?: number;
15625
15641
  /**
15626
15642
  * @remarks
15627
- * The number of the page to return.
15643
+ * The page number.
15628
15644
  *
15629
15645
  * Pages start from page 1.
15630
15646
  *
@@ -15636,9 +15652,9 @@ export declare class DescribeDeploymentSetsRequest extends $tea.Model {
15636
15652
  pageNumber?: number;
15637
15653
  /**
15638
15654
  * @remarks
15639
- * The number of entries to return on each page.
15655
+ * The number of entries per page.
15640
15656
  *
15641
- * Maximum value: 50.
15657
+ * Valid values: 1 to 50.
15642
15658
  *
15643
15659
  * Default value: 10.
15644
15660
  *
@@ -15662,8 +15678,8 @@ export declare class DescribeDeploymentSetsRequest extends $tea.Model {
15662
15678
  * @remarks
15663
15679
  * The deployment strategy. Valid values:
15664
15680
  *
15665
- * * Availability: high availability strategy.
15666
- * * AvailabilityGroup: high availability group strategy.
15681
+ * * Availability: high availability strategy
15682
+ * * AvailabilityGroup: high availability group strategy
15667
15683
  *
15668
15684
  * @example
15669
15685
  * Availability
@@ -15687,7 +15703,7 @@ export declare class DescribeDeploymentSetsResponseBody extends $tea.Model {
15687
15703
  deploymentSets?: DescribeDeploymentSetsResponseBodyDeploymentSets;
15688
15704
  /**
15689
15705
  * @remarks
15690
- * The page number of the returned page.
15706
+ * The page number.
15691
15707
  *
15692
15708
  * @example
15693
15709
  * 1
@@ -15695,7 +15711,7 @@ export declare class DescribeDeploymentSetsResponseBody extends $tea.Model {
15695
15711
  pageNumber?: number;
15696
15712
  /**
15697
15713
  * @remarks
15698
- * The number of entries returned per page.
15714
+ * The number of entries per page.
15699
15715
  *
15700
15716
  * @example
15701
15717
  * 1
@@ -15703,7 +15719,7 @@ export declare class DescribeDeploymentSetsResponseBody extends $tea.Model {
15703
15719
  pageSize?: number;
15704
15720
  /**
15705
15721
  * @remarks
15706
- * The region ID of the deployment set.
15722
+ * The ID of the region.
15707
15723
  *
15708
15724
  * @example
15709
15725
  * cn-hangzhou
@@ -15711,7 +15727,7 @@ export declare class DescribeDeploymentSetsResponseBody extends $tea.Model {
15711
15727
  regionId?: string;
15712
15728
  /**
15713
15729
  * @remarks
15714
- * The ID of the request.
15730
+ * The request ID.
15715
15731
  *
15716
15732
  * @example
15717
15733
  * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
@@ -15719,7 +15735,7 @@ export declare class DescribeDeploymentSetsResponseBody extends $tea.Model {
15719
15735
  requestId?: string;
15720
15736
  /**
15721
15737
  * @remarks
15722
- * The total number of deployment sets returned.
15738
+ * The total number of queried deployment sets.
15723
15739
  *
15724
15740
  * @example
15725
15741
  * 1
@@ -16267,6 +16283,141 @@ export declare class DescribeDiagnosticReportsResponse extends $tea.Model {
16267
16283
  [key: string]: any;
16268
16284
  });
16269
16285
  }
16286
+ export declare class DescribeDiskDefaultKMSKeyIdRequest extends $tea.Model {
16287
+ /**
16288
+ * @remarks
16289
+ * The ID of the region. You can call the DescribeRegions operation to query the most recent region list.
16290
+ *
16291
+ * This parameter is required.
16292
+ *
16293
+ * @example
16294
+ * cn-hangzhou
16295
+ */
16296
+ regionId?: string;
16297
+ resourceOwnerId?: number;
16298
+ static names(): {
16299
+ [key: string]: string;
16300
+ };
16301
+ static types(): {
16302
+ [key: string]: any;
16303
+ };
16304
+ constructor(map?: {
16305
+ [key: string]: any;
16306
+ });
16307
+ }
16308
+ export declare class DescribeDiskDefaultKMSKeyIdResponseBody extends $tea.Model {
16309
+ /**
16310
+ * @remarks
16311
+ * The ID of the KMS key.
16312
+ *
16313
+ * @example
16314
+ * 0e478b7a-4262-4802-b8cb-00d3fb40****
16315
+ */
16316
+ KMSKeyId?: string;
16317
+ /**
16318
+ * @remarks
16319
+ * The request ID.
16320
+ *
16321
+ * @example
16322
+ * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3****
16323
+ */
16324
+ requestId?: string;
16325
+ static names(): {
16326
+ [key: string]: string;
16327
+ };
16328
+ static types(): {
16329
+ [key: string]: any;
16330
+ };
16331
+ constructor(map?: {
16332
+ [key: string]: any;
16333
+ });
16334
+ }
16335
+ export declare class DescribeDiskDefaultKMSKeyIdResponse extends $tea.Model {
16336
+ headers?: {
16337
+ [key: string]: string;
16338
+ };
16339
+ statusCode?: number;
16340
+ body?: DescribeDiskDefaultKMSKeyIdResponseBody;
16341
+ static names(): {
16342
+ [key: string]: string;
16343
+ };
16344
+ static types(): {
16345
+ [key: string]: any;
16346
+ };
16347
+ constructor(map?: {
16348
+ [key: string]: any;
16349
+ });
16350
+ }
16351
+ export declare class DescribeDiskEncryptionByDefaultStatusRequest extends $tea.Model {
16352
+ /**
16353
+ * @remarks
16354
+ * The ID of the region. You can call the DescribeRegions operation to query the most recent region list.
16355
+ *
16356
+ * This parameter is required.
16357
+ *
16358
+ * @example
16359
+ * cn-hangzhou
16360
+ */
16361
+ regionId?: string;
16362
+ resourceOwnerId?: number;
16363
+ static names(): {
16364
+ [key: string]: string;
16365
+ };
16366
+ static types(): {
16367
+ [key: string]: any;
16368
+ };
16369
+ constructor(map?: {
16370
+ [key: string]: any;
16371
+ });
16372
+ }
16373
+ export declare class DescribeDiskEncryptionByDefaultStatusResponseBody extends $tea.Model {
16374
+ /**
16375
+ * @remarks
16376
+ * Indicates whether account-level default encryption of EBS resources is enabled in the region. Valid values:
16377
+ *
16378
+ * * true
16379
+ * * false
16380
+ *
16381
+ * Default value: false.
16382
+ *
16383
+ * @example
16384
+ * false
16385
+ */
16386
+ encrypted?: boolean;
16387
+ /**
16388
+ * @remarks
16389
+ * The request ID.
16390
+ *
16391
+ * @example
16392
+ * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
16393
+ */
16394
+ requestId?: string;
16395
+ static names(): {
16396
+ [key: string]: string;
16397
+ };
16398
+ static types(): {
16399
+ [key: string]: any;
16400
+ };
16401
+ constructor(map?: {
16402
+ [key: string]: any;
16403
+ });
16404
+ }
16405
+ export declare class DescribeDiskEncryptionByDefaultStatusResponse extends $tea.Model {
16406
+ headers?: {
16407
+ [key: string]: string;
16408
+ };
16409
+ statusCode?: number;
16410
+ body?: DescribeDiskEncryptionByDefaultStatusResponseBody;
16411
+ static names(): {
16412
+ [key: string]: string;
16413
+ };
16414
+ static types(): {
16415
+ [key: string]: any;
16416
+ };
16417
+ constructor(map?: {
16418
+ [key: string]: any;
16419
+ });
16420
+ }
16270
16421
  export declare class DescribeDiskMonitorDataRequest extends $tea.Model {
16271
16422
  /**
16272
16423
  * @remarks
@@ -18650,7 +18801,7 @@ export declare class DescribeImagesRequest extends $tea.Model {
18650
18801
  imageOwnerAlias?: string;
18651
18802
  /**
18652
18803
  * @remarks
18653
- * The ID of the Alibaba Cloud account to which the image belongs. This parameter takes effect only when you query shared images or community images.
18804
+ * The ID of the Alibaba Cloud account to which the image belongs. This parameter takes effect only if you query shared images or community images.
18654
18805
  *
18655
18806
  * @example
18656
18807
  * 1234567890
@@ -18778,7 +18929,7 @@ export declare class DescribeImagesRequest extends $tea.Model {
18778
18929
  * * Waiting: The image is waiting to be processed.
18779
18930
  * * Available: The image is available.
18780
18931
  * * UnAvailable: The image is unavailable.
18781
- * * CreateFailed: The image fails to be created.
18932
+ * * CreateFailed: The image failed to be created.
18782
18933
  * * Deprecated: The image is deprecated.
18783
18934
  *
18784
18935
  * Default value: Available. You can specify multiple values for this parameter. Separate the values with commas (,).
@@ -22517,7 +22668,10 @@ export declare class DescribeLaunchTemplateVersionsResponse extends $tea.Model {
22517
22668
  export declare class DescribeLaunchTemplatesRequest extends $tea.Model {
22518
22669
  /**
22519
22670
  * @remarks
22520
- * The IDs of launch templates. You can specify up to 100 launch template IDs. You must specify LaunchTemplateId or LaunchTemplateName to determine a launch template.
22671
+ * The IDs of launch templates.
22672
+ *
22673
+ * * You can query up to 100 launch templates.
22674
+ * * You must specify LaunchTemplateId or LaunchTemplateName to specify a launch template.
22521
22675
  *
22522
22676
  * @example
22523
22677
  * lt-m5e3ofjr1zn1aw7q****
@@ -22525,7 +22679,10 @@ export declare class DescribeLaunchTemplatesRequest extends $tea.Model {
22525
22679
  launchTemplateId?: string[];
22526
22680
  /**
22527
22681
  * @remarks
22528
- * The names of launch templates. You can specify up to 100 launch template names.
22682
+ * The names of launch templates.
22683
+ *
22684
+ * * You can query up to 100 launch templates.
22685
+ * * You must specify LaunchTemplateId or LaunchTemplateName to specify a launch template.
22529
22686
  *
22530
22687
  * @example
22531
22688
  * wd-152630748****
@@ -22575,7 +22732,9 @@ export declare class DescribeLaunchTemplatesRequest extends $tea.Model {
22575
22732
  templateResourceGroupId?: string;
22576
22733
  /**
22577
22734
  * @remarks
22578
- * The tag of the launch template.
22735
+ * The tags of the launch template.
22736
+ *
22737
+ * > You can only call API operations to add tags to and query the tags of a launch template. You cannot add tags to or view the tags of a launch template in the Elastic Compute Service (ECS) console.
22579
22738
  */
22580
22739
  templateTag?: DescribeLaunchTemplatesRequestTemplateTag[];
22581
22740
  static names(): {
@@ -22591,7 +22750,7 @@ export declare class DescribeLaunchTemplatesRequest extends $tea.Model {
22591
22750
  export declare class DescribeLaunchTemplatesResponseBody extends $tea.Model {
22592
22751
  /**
22593
22752
  * @remarks
22594
- * The information about the launch template.
22753
+ * The queried launch templates.
22595
22754
  */
22596
22755
  launchTemplateSets?: DescribeLaunchTemplatesResponseBodyLaunchTemplateSets;
22597
22756
  /**
@@ -22724,7 +22883,7 @@ export declare class DescribeManagedInstancesRequest extends $tea.Model {
22724
22883
  * The internal or public IP address of the managed instance.
22725
22884
  *
22726
22885
  * @example
22727
- * 192.168.\*\*.**
22886
+ * ``192.168.**.**``
22728
22887
  */
22729
22888
  instanceIp?: string;
22730
22889
  /**
@@ -23143,7 +23302,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBody extends $tea.
23143
23302
  * The private IP address of the ENI.
23144
23303
  *
23145
23304
  * @example
23146
- * 10.1.\*\*.**
23305
+ * ``10.1.**.**``
23147
23306
  */
23148
23307
  privateIpAddress?: string;
23149
23308
  /**
@@ -23225,6 +23384,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBody extends $tea.
23225
23384
  * > This parameter is in invitational preview and unavailable for general users.
23226
23385
  */
23227
23386
  slaveInterfaceSpecification?: DescribeNetworkInterfaceAttributeResponseBodySlaveInterfaceSpecification;
23387
+ sourceDestCheck?: boolean;
23228
23388
  /**
23229
23389
  * @remarks
23230
23390
  * The state of the ENI. Valid values:
@@ -23539,7 +23699,7 @@ export declare class DescribeNetworkInterfacesRequest extends $tea.Model {
23539
23699
  * The primary private IPv4 address of the ENI.
23540
23700
  *
23541
23701
  * @example
23542
- * 192.168.\*\*.**
23702
+ * ``192.168.**.**``
23543
23703
  */
23544
23704
  primaryIpAddress?: string;
23545
23705
  /**
@@ -23547,7 +23707,7 @@ export declare class DescribeNetworkInterfacesRequest extends $tea.Model {
23547
23707
  * An array that consists of the secondary private IPv4 addresses of the ENI. You can specify multiple secondary private IPv4 addresses. Valid values of N: 1 to 100.
23548
23708
  *
23549
23709
  * @example
23550
- * 192.168.\*\*.**
23710
+ * ``192.168.**.**``
23551
23711
  */
23552
23712
  privateIpAddress?: string[];
23553
23713
  /**
@@ -24800,10 +24960,12 @@ export declare class DescribeRegionsRequest extends $tea.Model {
24800
24960
  acceptLanguage?: string;
24801
24961
  /**
24802
24962
  * @remarks
24803
- * The billing method of instances. For more information, see [Billing overview](https://help.aliyun.com/document_detail/25398.html). Valid values:
24963
+ * The billing method of the instance. For more information, see [Billing overview](https://help.aliyun.com/document_detail/25398.html). Valid values:
24804
24964
  *
24805
24965
  * * PrePaid: subscription. If you set this parameter to PrePaid, make sure that you have sufficient balance or credits in your account. Otherwise, the InvalidPayMethod error code is returned.
24806
24966
  * * PostPaid: pay-as-you-go.
24967
+ * * SpotWithPriceLimit: preemptible instance for which a maximum hourly price is specified.
24968
+ * * SpotAsPriceGo: preemptible instance for which the market price at the time of purchase is automatically used as the bid price. The market price can be up to the pay-as-you-go price.
24807
24969
  *
24808
24970
  * Default value: PostPaid.
24809
24971
  *
@@ -24817,7 +24979,7 @@ export declare class DescribeRegionsRequest extends $tea.Model {
24817
24979
  resourceOwnerId?: number;
24818
24980
  /**
24819
24981
  * @remarks
24820
- * The resource type. Valid value:
24982
+ * The type of resource. Valid values:
24821
24983
  *
24822
24984
  * * instance: Elastic Compute Service (ECS) instance
24823
24985
  * * disk: disk
@@ -24843,7 +25005,7 @@ export declare class DescribeRegionsRequest extends $tea.Model {
24843
25005
  export declare class DescribeRegionsResponseBody extends $tea.Model {
24844
25006
  /**
24845
25007
  * @remarks
24846
- * The queried regions.
25008
+ * The information of the regions.
24847
25009
  */
24848
25010
  regions?: DescribeRegionsResponseBodyRegions;
24849
25011
  /**
@@ -29965,6 +30127,63 @@ export declare class DisableActivationResponse extends $tea.Model {
29965
30127
  [key: string]: any;
29966
30128
  });
29967
30129
  }
30130
+ export declare class DisableDiskEncryptionByDefaultRequest extends $tea.Model {
30131
+ /**
30132
+ * @remarks
30133
+ * The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
30134
+ *
30135
+ * This parameter is required.
30136
+ *
30137
+ * @example
30138
+ * cn-hangzhou
30139
+ */
30140
+ regionId?: string;
30141
+ resourceOwnerId?: number;
30142
+ static names(): {
30143
+ [key: string]: string;
30144
+ };
30145
+ static types(): {
30146
+ [key: string]: any;
30147
+ };
30148
+ constructor(map?: {
30149
+ [key: string]: any;
30150
+ });
30151
+ }
30152
+ export declare class DisableDiskEncryptionByDefaultResponseBody extends $tea.Model {
30153
+ /**
30154
+ * @remarks
30155
+ * The request ID, which uniquely identifies the request.
30156
+ *
30157
+ * @example
30158
+ * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
30159
+ */
30160
+ requestId?: string;
30161
+ static names(): {
30162
+ [key: string]: string;
30163
+ };
30164
+ static types(): {
30165
+ [key: string]: any;
30166
+ };
30167
+ constructor(map?: {
30168
+ [key: string]: any;
30169
+ });
30170
+ }
30171
+ export declare class DisableDiskEncryptionByDefaultResponse extends $tea.Model {
30172
+ headers?: {
30173
+ [key: string]: string;
30174
+ };
30175
+ statusCode?: number;
30176
+ body?: DisableDiskEncryptionByDefaultResponseBody;
30177
+ static names(): {
30178
+ [key: string]: string;
30179
+ };
30180
+ static types(): {
30181
+ [key: string]: any;
30182
+ };
30183
+ constructor(map?: {
30184
+ [key: string]: any;
30185
+ });
30186
+ }
29968
30187
  export declare class EipFillParamsRequest extends $tea.Model {
29969
30188
  clientToken?: string;
29970
30189
  ownerAccount?: string;
@@ -30127,6 +30346,66 @@ export declare class EipNotifyPaidResponse extends $tea.Model {
30127
30346
  [key: string]: any;
30128
30347
  });
30129
30348
  }
30349
+ export declare class EnableDiskEncryptionByDefaultRequest extends $tea.Model {
30350
+ ownerAccount?: string;
30351
+ ownerId?: number;
30352
+ /**
30353
+ * @remarks
30354
+ * The region ID. You can call the DescribeRegions operation to query the most recent region list.
30355
+ *
30356
+ * This parameter is required.
30357
+ *
30358
+ * @example
30359
+ * cn-hangzhou
30360
+ */
30361
+ regionId?: string;
30362
+ resourceOwnerAccount?: string;
30363
+ resourceOwnerId?: number;
30364
+ static names(): {
30365
+ [key: string]: string;
30366
+ };
30367
+ static types(): {
30368
+ [key: string]: any;
30369
+ };
30370
+ constructor(map?: {
30371
+ [key: string]: any;
30372
+ });
30373
+ }
30374
+ export declare class EnableDiskEncryptionByDefaultResponseBody extends $tea.Model {
30375
+ /**
30376
+ * @remarks
30377
+ * The request ID.
30378
+ *
30379
+ * @example
30380
+ * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
30381
+ */
30382
+ requestId?: string;
30383
+ static names(): {
30384
+ [key: string]: string;
30385
+ };
30386
+ static types(): {
30387
+ [key: string]: any;
30388
+ };
30389
+ constructor(map?: {
30390
+ [key: string]: any;
30391
+ });
30392
+ }
30393
+ export declare class EnableDiskEncryptionByDefaultResponse extends $tea.Model {
30394
+ headers?: {
30395
+ [key: string]: string;
30396
+ };
30397
+ statusCode?: number;
30398
+ body?: EnableDiskEncryptionByDefaultResponseBody;
30399
+ static names(): {
30400
+ [key: string]: string;
30401
+ };
30402
+ static types(): {
30403
+ [key: string]: any;
30404
+ };
30405
+ constructor(map?: {
30406
+ [key: string]: any;
30407
+ });
30408
+ }
30130
30409
  export declare class EnablePhysicalConnectionRequest extends $tea.Model {
30131
30410
  /**
30132
30411
  * @remarks
@@ -33699,7 +33978,7 @@ export declare class ModifyDeploymentSetAttributeRequest extends $tea.Model {
33699
33978
  deploymentSetId?: string;
33700
33979
  /**
33701
33980
  * @remarks
33702
- * The new name of the deployment set. The name must be 2 to 128 characters in length. It must start with a letter and cannot start with http:// or https://. It can contain letters, digits, colons (:), underscores (_), and hyphens (-).
33981
+ * The new name of the deployment set. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), periods (.), and hyphens (-).
33703
33982
  *
33704
33983
  * @example
33705
33984
  * DeploymentSetTestName
@@ -33713,15 +33992,7 @@ export declare class ModifyDeploymentSetAttributeRequest extends $tea.Model {
33713
33992
  * TestDescription
33714
33993
  */
33715
33994
  description?: string;
33716
- /**
33717
- * @example
33718
- * ECSforCloud@Alibaba.com
33719
- */
33720
33995
  ownerAccount?: string;
33721
- /**
33722
- * @example
33723
- * 155780923770
33724
- */
33725
33996
  ownerId?: number;
33726
33997
  /**
33727
33998
  * @remarks
@@ -33733,15 +34004,7 @@ export declare class ModifyDeploymentSetAttributeRequest extends $tea.Model {
33733
34004
  * cn-hangzhou
33734
34005
  */
33735
34006
  regionId?: string;
33736
- /**
33737
- * @example
33738
- * ECSforCloud
33739
- */
33740
34007
  resourceOwnerAccount?: string;
33741
- /**
33742
- * @example
33743
- * 155780923770
33744
- */
33745
34008
  resourceOwnerId?: number;
33746
34009
  static names(): {
33747
34010
  [key: string]: string;
@@ -33756,7 +34019,7 @@ export declare class ModifyDeploymentSetAttributeRequest extends $tea.Model {
33756
34019
  export declare class ModifyDeploymentSetAttributeResponseBody extends $tea.Model {
33757
34020
  /**
33758
34021
  * @remarks
33759
- * The ID of the request.
34022
+ * The request ID.
33760
34023
  *
33761
34024
  * @example
33762
34025
  * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
@@ -34142,6 +34405,73 @@ export declare class ModifyDiskChargeTypeResponse extends $tea.Model {
34142
34405
  [key: string]: any;
34143
34406
  });
34144
34407
  }
34408
+ export declare class ModifyDiskDefaultKMSKeyIdRequest extends $tea.Model {
34409
+ /**
34410
+ * @remarks
34411
+ * The ID of the new KMS key.
34412
+ *
34413
+ * This parameter is required.
34414
+ *
34415
+ * @example
34416
+ * 0e478b7a-4262-4802-b8cb-00d3fb40****
34417
+ */
34418
+ KMSKeyId?: string;
34419
+ /**
34420
+ * @remarks
34421
+ * The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
34422
+ *
34423
+ * This parameter is required.
34424
+ *
34425
+ * @example
34426
+ * cn-hangzhou
34427
+ */
34428
+ regionId?: string;
34429
+ resourceOwnerId?: number;
34430
+ static names(): {
34431
+ [key: string]: string;
34432
+ };
34433
+ static types(): {
34434
+ [key: string]: any;
34435
+ };
34436
+ constructor(map?: {
34437
+ [key: string]: any;
34438
+ });
34439
+ }
34440
+ export declare class ModifyDiskDefaultKMSKeyIdResponseBody extends $tea.Model {
34441
+ /**
34442
+ * @remarks
34443
+ * The request ID.
34444
+ *
34445
+ * @example
34446
+ * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
34447
+ */
34448
+ requestId?: string;
34449
+ static names(): {
34450
+ [key: string]: string;
34451
+ };
34452
+ static types(): {
34453
+ [key: string]: any;
34454
+ };
34455
+ constructor(map?: {
34456
+ [key: string]: any;
34457
+ });
34458
+ }
34459
+ export declare class ModifyDiskDefaultKMSKeyIdResponse extends $tea.Model {
34460
+ headers?: {
34461
+ [key: string]: string;
34462
+ };
34463
+ statusCode?: number;
34464
+ body?: ModifyDiskDefaultKMSKeyIdResponseBody;
34465
+ static names(): {
34466
+ [key: string]: string;
34467
+ };
34468
+ static types(): {
34469
+ [key: string]: any;
34470
+ };
34471
+ constructor(map?: {
34472
+ [key: string]: any;
34473
+ });
34474
+ }
34145
34475
  export declare class ModifyDiskDeploymentRequest extends $tea.Model {
34146
34476
  /**
34147
34477
  * @remarks
@@ -34459,6 +34789,7 @@ export declare class ModifyEipAddressAttributeResponse extends $tea.Model {
34459
34789
  }
34460
34790
  export declare class ModifyElasticityAssuranceRequest extends $tea.Model {
34461
34791
  privatePoolOptions?: ModifyElasticityAssuranceRequestPrivatePoolOptions;
34792
+ clientToken?: string;
34462
34793
  /**
34463
34794
  * @remarks
34464
34795
  * The description of the elasticity assurance. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.
@@ -34467,6 +34798,7 @@ export declare class ModifyElasticityAssuranceRequest extends $tea.Model {
34467
34798
  * This is description.
34468
34799
  */
34469
34800
  description?: string;
34801
+ instanceAmount?: number;
34470
34802
  ownerAccount?: string;
34471
34803
  ownerId?: number;
34472
34804
  /**
@@ -36274,14 +36606,14 @@ export declare class ModifyInstanceSpecRequest extends $tea.Model {
36274
36606
  temporary?: ModifyInstanceSpecRequestTemporary;
36275
36607
  /**
36276
36608
  * @remarks
36277
- * Specifies whether cross-cluster instance type upgrades are supported.
36609
+ * Specifies whether cross-cluster instance type upgrades are supported. Valid values:
36278
36610
  *
36279
36611
  * * true
36280
36612
  * * false
36281
36613
  *
36282
36614
  * Default value: false.
36283
36615
  *
36284
- * When `AllowMigrateAcrossZone` is set to true and you upgrade the instance based on the returned information, take note of the following items:
36616
+ * When you set `AllowMigrateAcrossZone` to true and upgrade the instance based on the returned information, take note of the following items:
36285
36617
  *
36286
36618
  * Instance that resides in the classic network:
36287
36619
  *
@@ -36527,7 +36859,7 @@ export declare class ModifyInstanceVpcAttributeRequest extends $tea.Model {
36527
36859
  * By default, if this parameter is not specified, a private IP address is randomly assigned from the CIDR block of the specified vSwitch.
36528
36860
  *
36529
36861
  * @example
36530
- * 172.17.\*\*.**
36862
+ * ``172.17.**.**``
36531
36863
  */
36532
36864
  privateIpAddress?: string;
36533
36865
  resourceOwnerAccount?: string;
@@ -37024,7 +37356,7 @@ export declare class ModifyLaunchTemplateDefaultVersionRequest extends $tea.Mode
37024
37356
  export declare class ModifyLaunchTemplateDefaultVersionResponseBody extends $tea.Model {
37025
37357
  /**
37026
37358
  * @remarks
37027
- * The ID of the launch template. For more information, see [DescribeLaunchTemplates](https://help.aliyun.com/document_detail/73759.html). You must specify `LaunchTemplateId` or `LaunchTemplateName` to specify a launch template.
37359
+ * The ID of the launch template. For more information, see [DescribeLaunchTemplates](https://help.aliyun.com/document_detail/73759.html).
37028
37360
  *
37029
37361
  * @example
37030
37362
  * lt-bp1apo0bbbkuy0rj****
@@ -37253,6 +37585,7 @@ export declare class ModifyNetworkInterfaceAttributeRequest extends $tea.Model {
37253
37585
  * * The new security groups take effect after a short delay.
37254
37586
  */
37255
37587
  securityGroupId?: string[];
37588
+ sourceDestCheck?: boolean;
37256
37589
  /**
37257
37590
  * @remarks
37258
37591
  * The Tx queue depth of the ENI.
@@ -39435,12 +39768,85 @@ export declare class ModifyVpcAttributeResponse extends $tea.Model {
39435
39768
  [key: string]: any;
39436
39769
  });
39437
39770
  }
39771
+ export declare class PurchaseElasticityAssuranceRequest extends $tea.Model {
39772
+ privatePoolOptions?: PurchaseElasticityAssuranceRequestPrivatePoolOptions;
39773
+ /**
39774
+ * @example
39775
+ * 123e4567-e89b-12d3-a456-426655440000
39776
+ */
39777
+ clientToken?: string;
39778
+ /**
39779
+ * @example
39780
+ * 1
39781
+ */
39782
+ period?: number;
39783
+ /**
39784
+ * @example
39785
+ * Month
39786
+ */
39787
+ periodUnit?: string;
39788
+ /**
39789
+ * @remarks
39790
+ * This parameter is required.
39791
+ *
39792
+ * @example
39793
+ * cn-hangzhou
39794
+ */
39795
+ regionId?: string;
39796
+ /**
39797
+ * @example
39798
+ * 2024-06-18T00:00Z
39799
+ */
39800
+ startTime?: string;
39801
+ static names(): {
39802
+ [key: string]: string;
39803
+ };
39804
+ static types(): {
39805
+ [key: string]: any;
39806
+ };
39807
+ constructor(map?: {
39808
+ [key: string]: any;
39809
+ });
39810
+ }
39811
+ export declare class PurchaseElasticityAssuranceResponseBody extends $tea.Model {
39812
+ /**
39813
+ * @example
39814
+ * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
39815
+ */
39816
+ requestId?: string;
39817
+ static names(): {
39818
+ [key: string]: string;
39819
+ };
39820
+ static types(): {
39821
+ [key: string]: any;
39822
+ };
39823
+ constructor(map?: {
39824
+ [key: string]: any;
39825
+ });
39826
+ }
39827
+ export declare class PurchaseElasticityAssuranceResponse extends $tea.Model {
39828
+ headers?: {
39829
+ [key: string]: string;
39830
+ };
39831
+ statusCode?: number;
39832
+ body?: PurchaseElasticityAssuranceResponseBody;
39833
+ static names(): {
39834
+ [key: string]: string;
39835
+ };
39836
+ static types(): {
39837
+ [key: string]: any;
39838
+ };
39839
+ constructor(map?: {
39840
+ [key: string]: any;
39841
+ });
39842
+ }
39438
39843
  export declare class PurchaseReservedInstancesOfferingRequest extends $tea.Model {
39439
39844
  /**
39440
39845
  * @remarks
39441
- * Specifies whether to enable auto-renewal for the reserved instance. Default value: false. Valid values:
39846
+ * Specifies whether to enable auto-renewal for the reserved instance. Valid values:
39442
39847
  *
39443
- * true: enables auto-renewal for the reserved instance. false: does not enable auto-renewal for the reserved instance.
39848
+ * * true
39849
+ * * false (default)
39444
39850
  *
39445
39851
  * @example
39446
39852
  * true
@@ -39591,6 +39997,9 @@ export declare class PurchaseReservedInstancesOfferingRequest extends $tea.Model
39591
39997
  */
39592
39998
  scope?: string;
39593
39999
  /**
40000
+ * @remarks
40001
+ * The time when the reserved instance takes effect. Specify the time in the [ISO 8601 standard](https://help.aliyun.com/document_detail/25696.html) in the `yyyy-MM-ddTHHZ` format. The time must be in UTC.
40002
+ *
39594
40003
  * @example
39595
40004
  * 2024-07-04T15Z
39596
40005
  */
@@ -40619,7 +41028,7 @@ export declare class ReleasePublicIpAddressRequest extends $tea.Model {
40619
41028
  * This parameter is required.
40620
41029
  *
40621
41030
  * @example
40622
- * 121.40.\*\*.**
41031
+ * ``121.40.**.**``
40623
41032
  */
40624
41033
  publicIpAddress?: string;
40625
41034
  /**
@@ -40948,11 +41357,24 @@ export declare class RenewDedicatedHostsResponse extends $tea.Model {
40948
41357
  export declare class RenewElasticityAssurancesRequest extends $tea.Model {
40949
41358
  privatePoolOptions?: RenewElasticityAssurancesRequestPrivatePoolOptions;
40950
41359
  /**
41360
+ * @remarks
41361
+ * Specifies whether to enable automatic payment. Valid values:
41362
+ *
41363
+ * * true
41364
+ * * false
41365
+ *
41366
+ * Default value: true.
41367
+ *
40951
41368
  * @example
40952
41369
  * true
40953
41370
  */
40954
41371
  autoPay?: boolean;
40955
41372
  /**
41373
+ * @remarks
41374
+ * The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests.
41375
+ *
41376
+ * The `token` can contain only ASCII characters and cannot exceed 64 characters in length. For more information, see [How to ensure idempotence](https://help.aliyun.com/document_detail/25693.html).
41377
+ *
40956
41378
  * @example
40957
41379
  * 123e4567-e89b-12d3-a456-426655440000
40958
41380
  */
@@ -40960,16 +41382,37 @@ export declare class RenewElasticityAssurancesRequest extends $tea.Model {
40960
41382
  ownerAccount?: string;
40961
41383
  ownerId?: number;
40962
41384
  /**
41385
+ * @remarks
41386
+ * The renewal duration. The unit of the renewal duration is determined by the `PeriodUnit` value. Valid values:
41387
+ *
41388
+ * * Valid values if you set `PeriodUnit` to `Month`: 1, 2, 3, 4, 5, 6, 7, 8, and 9.
41389
+ * * Valid values if you set `PeriodUnit` to `Year`: 1, 2, and 3.
41390
+ *
41391
+ * Default value: 1.
41392
+ *
40963
41393
  * @example
40964
41394
  * 1
40965
41395
  */
40966
41396
  period?: number;
40967
41397
  /**
41398
+ * @remarks
41399
+ * The unit of the renewal duration. Valid values:
41400
+ *
41401
+ * * Month
41402
+ * * Year
41403
+ *
41404
+ * Default value: Year.
41405
+ *
40968
41406
  * @example
40969
41407
  * Year
40970
41408
  */
40971
41409
  periodUnit?: string;
40972
41410
  /**
41411
+ * @remarks
41412
+ * The region ID of the elasticity assurance.
41413
+ *
41414
+ * You can call the [DescribeRegions](https://help.aliyun.com/document_detail/2680071.html) operation to query the most recent region list.
41415
+ *
40973
41416
  * @example
40974
41417
  * cn-hangzhou
40975
41418
  */
@@ -40988,12 +41431,22 @@ export declare class RenewElasticityAssurancesRequest extends $tea.Model {
40988
41431
  }
40989
41432
  export declare class RenewElasticityAssurancesResponseBody extends $tea.Model {
40990
41433
  /**
41434
+ * @remarks
41435
+ * The ID of the renewal order.
41436
+ *
40991
41437
  * @example
40992
41438
  * 182372800****
40993
41439
  */
40994
41440
  orderId?: string;
41441
+ /**
41442
+ * @remarks
41443
+ * The IDs of the elasticity assurances.
41444
+ */
40995
41445
  privatePoolOptionsIdSet?: RenewElasticityAssurancesResponseBodyPrivatePoolOptionsIdSet;
40996
41446
  /**
41447
+ * @remarks
41448
+ * The request ID.
41449
+ *
40997
41450
  * @example
40998
41451
  * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
40999
41452
  */
@@ -41704,6 +42157,63 @@ export declare class ResetDiskResponse extends $tea.Model {
41704
42157
  [key: string]: any;
41705
42158
  });
41706
42159
  }
42160
+ export declare class ResetDiskDefaultKMSKeyIdRequest extends $tea.Model {
42161
+ /**
42162
+ * @remarks
42163
+ * The ID of the region. You can call the DescribeRegions operation to query the most recent region list.
42164
+ *
42165
+ * This parameter is required.
42166
+ *
42167
+ * @example
42168
+ * cn-hangzhou
42169
+ */
42170
+ regionId?: string;
42171
+ resourceOwnerId?: number;
42172
+ static names(): {
42173
+ [key: string]: string;
42174
+ };
42175
+ static types(): {
42176
+ [key: string]: any;
42177
+ };
42178
+ constructor(map?: {
42179
+ [key: string]: any;
42180
+ });
42181
+ }
42182
+ export declare class ResetDiskDefaultKMSKeyIdResponseBody extends $tea.Model {
42183
+ /**
42184
+ * @remarks
42185
+ * The request ID.
42186
+ *
42187
+ * @example
42188
+ * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
42189
+ */
42190
+ requestId?: string;
42191
+ static names(): {
42192
+ [key: string]: string;
42193
+ };
42194
+ static types(): {
42195
+ [key: string]: any;
42196
+ };
42197
+ constructor(map?: {
42198
+ [key: string]: any;
42199
+ });
42200
+ }
42201
+ export declare class ResetDiskDefaultKMSKeyIdResponse extends $tea.Model {
42202
+ headers?: {
42203
+ [key: string]: string;
42204
+ };
42205
+ statusCode?: number;
42206
+ body?: ResetDiskDefaultKMSKeyIdResponseBody;
42207
+ static names(): {
42208
+ [key: string]: string;
42209
+ };
42210
+ static types(): {
42211
+ [key: string]: any;
42212
+ };
42213
+ constructor(map?: {
42214
+ [key: string]: any;
42215
+ });
42216
+ }
41707
42217
  export declare class ResetDisksRequest extends $tea.Model {
41708
42218
  /**
41709
42219
  * @remarks
@@ -41864,10 +42374,10 @@ export declare class ResizeDiskRequest extends $tea.Model {
41864
42374
  resourceOwnerId?: number;
41865
42375
  /**
41866
42376
  * @remarks
41867
- * The method that you want to use to resize the disk. Default value: offline. Valid values:
42377
+ * The method that you want to use to resize the disk. Valid values:
41868
42378
  *
41869
- * * offline: resizes the disk offline. After you resize a disk offline, you must restart the associated instance in the ECS console or by calling the [RebootInstance](https://help.aliyun.com/document_detail/25502.html) operation for the resizing operation to take effect. For information about how to restart an ECS instance in the ECS console, see [Restart an instance](https://help.aliyun.com/document_detail/25440.html).
41870
- * * online: resizes the disk online. After you resize a disk online, the resizing operation immediately takes effect. You do not need to restart the associated instance. You can resize ultra disks, standard SSDs, ESSDs, and elastic ephemeral disks online.
42379
+ * * offline (default): resizes the disk offline. After you resize a disk offline, you must restart the associated instance in the ECS console or by calling the [RebootInstance](https://help.aliyun.com/document_detail/25502.html) operation for the resizing operation to take effect. For information about how to restart an ECS instance in the ECS console, see [Restart an instance](https://help.aliyun.com/document_detail/25440.html).
42380
+ * * online: resizes the disk online. After you resize a disk online, the resizing operation immediately takes effect. You do not need to restart the associated instance. You can resize ultra disks, standard SSDs, Enterprise SSDs (ESSDs), and elastic ephemeral disks online.
41871
42381
  *
41872
42382
  * @example
41873
42383
  * offline
@@ -43737,7 +44247,7 @@ export declare class RunInstancesRequest extends $tea.Model {
43737
44247
  * > The first IP address and last three IP addresses of each vSwitch CIDR block are reserved. You cannot specify the IP addresses. For example, if a vSwitch CIDR block is 192.168.1.0/24, the IP addresses 192.168.1.0, 192.168.1.253, 192.168.1.254, and 192.168.1.255 are reserved.
43738
44248
  *
43739
44249
  * @example
43740
- * 10.1.\*\*.**
44250
+ * ``10.1.**.**``
43741
44251
  */
43742
44252
  privateIpAddress?: string;
43743
44253
  /**
@@ -45269,7 +45779,7 @@ export declare class UnassignPrivateIpAddressesRequest extends $tea.Model {
45269
45779
  * The secondary private IP addresses to unassign.
45270
45780
  *
45271
45781
  * @example
45272
- * 192.168.\*\*.**
45782
+ * ``192.168.**.**``
45273
45783
  */
45274
45784
  privateIpAddress?: string[];
45275
45785
  /**
@@ -46449,7 +46959,7 @@ export declare class CreateActivationRequestTag extends $tea.Model {
46449
46959
  export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationArn extends $tea.Model {
46450
46960
  /**
46451
46961
  * @remarks
46452
- * This parameter is not publicly available.
46962
+ * > This parameter is in invitational preview and is not publicly available.
46453
46963
  *
46454
46964
  * @example
46455
46965
  * 123456789012****
@@ -46457,7 +46967,7 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationArn ex
46457
46967
  assumeRoleFor?: number;
46458
46968
  /**
46459
46969
  * @remarks
46460
- * This parameter is not publicly available.
46970
+ * > This parameter is in invitational preview and is not publicly available.
46461
46971
  *
46462
46972
  * @example
46463
46973
  * 34458433936495****:alice
@@ -46465,7 +46975,7 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationArn ex
46465
46975
  roleType?: string;
46466
46976
  /**
46467
46977
  * @remarks
46468
- * This parameter is not publicly available.
46978
+ * > This parameter is in invitational preview and is not publicly available.
46469
46979
  *
46470
46980
  * @example
46471
46981
  * acs:ram::123456789012****:role/adminrole
@@ -46482,15 +46992,27 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationArn ex
46482
46992
  });
46483
46993
  }
46484
46994
  export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationDataDisk extends $tea.Model {
46995
+ /**
46996
+ * @remarks
46997
+ * Specifies whether to enable the performance burst feature for data disk N. Valid values:
46998
+ *
46999
+ * * true
47000
+ * * false
47001
+ *
47002
+ * > This parameter is available only if you set LaunchConfiguration.DataDisk.N.Category to cloud_auto. For more information, see [ESSD AutoPL disks](https://help.aliyun.com/document_detail/368372.html).
47003
+ *
47004
+ * @example
47005
+ * false
47006
+ */
46485
47007
  burstingEnabled?: boolean;
46486
47008
  /**
46487
47009
  * @remarks
46488
47010
  * The category of data disk N. Valid values of N: 1 to 16. Valid values:
46489
47011
  *
46490
- * * cloud_efficiency: ultra disk
46491
- * * cloud_ssd: standard SSD
46492
- * * cloud_essd: ESSD
46493
- * * cloud: basic disk
47012
+ * * cloud_efficiency: ultra disk.
47013
+ * * cloud_ssd: standard SSD.
47014
+ * * cloud_essd: ESSD.
47015
+ * * cloud: basic disk.
46494
47016
  *
46495
47017
  * For I/O optimized instances, the default value is cloud_efficiency. For non-I/O optimized instances, the default value is cloud.
46496
47018
  *
@@ -46535,7 +47057,7 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationDataDi
46535
47057
  * @remarks
46536
47058
  * The name of data disk N. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with `http://` or `https://`. The name can contain letters, digits, periods (.), colons (:), underscores (_), and hyphens (-).
46537
47059
  *
46538
- * By default, this parameter is left empty.
47060
+ * This parameter is left empty by default.
46539
47061
  *
46540
47062
  * When both LaunchTemplateId and LaunchConfiguration.\\* parameters are specified, LaunchTemplateId takes precedence.
46541
47063
  *
@@ -46543,6 +47065,13 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationDataDi
46543
47065
  * cloud_ssdData
46544
47066
  */
46545
47067
  diskName?: string;
47068
+ /**
47069
+ * @remarks
47070
+ * > This parameter is not publicly available.
47071
+ *
47072
+ * @example
47073
+ * null
47074
+ */
46546
47075
  encryptAlgorithm?: string;
46547
47076
  /**
46548
47077
  * @remarks
@@ -46569,14 +47098,14 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationDataDi
46569
47098
  kmsKeyId?: string;
46570
47099
  /**
46571
47100
  * @remarks
46572
- * The performance level of the ESSD to use as data disk N. The value of N in this parameter must be the same as the value of N in `LaunchConfiguration.DataDisk.N.Category`. Valid values:
47101
+ * The performance level of the Enterprise SSD (ESSD) to use as data disk N. The value of N in this parameter must be the same as the value of N in `LaunchConfiguration.DataDisk.N.Category`. Valid values:
46573
47102
  *
46574
47103
  * * PL0: A single ESSD can deliver up to 10,000 random read/write IOPS.
46575
47104
  * * PL1 (default): A single ESSD can deliver up to 50,000 random read/write IOPS.
46576
47105
  * * PL2: A single ESSD can deliver up to 100,000 random read/write IOPS.
46577
47106
  * * PL3: A single ESSD can deliver up to 1,000,000 random read/write IOPS.
46578
47107
  *
46579
- * For information about ESSD performance levels, see [ESSDs](https://help.aliyun.com/document_detail/122389.html).
47108
+ * For more information about ESSD performance levels, see [ESSDs](https://help.aliyun.com/document_detail/122389.html).
46580
47109
  *
46581
47110
  * When both LaunchTemplateId and LaunchConfiguration.\\* parameters are specified, LaunchTemplateId takes precedence.
46582
47111
  *
@@ -46584,6 +47113,17 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationDataDi
46584
47113
  * PL1
46585
47114
  */
46586
47115
  performanceLevel?: string;
47116
+ /**
47117
+ * @remarks
47118
+ * The provisioned read/write IOPS of the ESSD AutoPL disk to use as data disk N. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}.
47119
+ *
47120
+ * Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}.
47121
+ *
47122
+ * > This parameter is available only if you set LaunchConfiguration.DataDisk.N.Category to cloud_auto. For more information, see [ESSD AutoPL disks](https://help.aliyun.com/document_detail/368372.html).
47123
+ *
47124
+ * @example
47125
+ * 40000
47126
+ */
46587
47127
  provisionedIops?: number;
46588
47128
  /**
46589
47129
  * @remarks
@@ -46614,7 +47154,7 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationDataDi
46614
47154
  * @remarks
46615
47155
  * The ID of the snapshot to use to create data disk N. Valid values of N: 1 to 16.
46616
47156
  *
46617
- * After this parameter is specified, `LaunchConfiguration.DataDisk.N.Size` is ignored. The size of data disk N is the same as that of the snapshot specified by this parameter. Use snapshots created on or after July 15, 2013. Otherwise, an error is returned and your request is rejected.
47157
+ * If you specify this parameter, `LaunchConfiguration.DataDisk.N.Size` is ignored. The size of data disk N is the same as that of the snapshot specified by this parameter. Use snapshots created after July 15, 2013. Otherwise, an error is returned and your request is rejected.
46618
47158
  *
46619
47159
  * When both LaunchTemplateId and LaunchConfiguration.\\* parameters are specified, LaunchTemplateId takes precedence.
46620
47160
  *
@@ -46633,10 +47173,22 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationDataDi
46633
47173
  });
46634
47174
  }
46635
47175
  export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationSystemDisk extends $tea.Model {
47176
+ /**
47177
+ * @remarks
47178
+ * Specifies whether to enable the performance burst feature for the system disk. Valid values:
47179
+ *
47180
+ * * true
47181
+ * * false
47182
+ *
47183
+ * > This parameter is available only if you set `LaunchConfiguration.SystemDisk.Category` to `cloud_auto`. For more information, see [ESSD AutoPL disks](https://help.aliyun.com/document_detail/368372.html).
47184
+ *
47185
+ * @example
47186
+ * false
47187
+ */
46636
47188
  burstingEnabled?: boolean;
46637
47189
  /**
46638
47190
  * @remarks
46639
- * The algorithm to use to encrypt system disk N. Valid values:
47191
+ * The algorithm to use to encrypt the system disk. Valid values:
46640
47192
  *
46641
47193
  * * aes-256
46642
47194
  * * sm4-128
@@ -46645,13 +47197,15 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationSystem
46645
47197
  *
46646
47198
  * When both LaunchTemplateId and LaunchConfiguration.\\* parameters are specified, LaunchTemplateId takes precedence.
46647
47199
  *
47200
+ * > This parameter is not publicly available.
47201
+ *
46648
47202
  * @example
46649
47203
  * aes-256
46650
47204
  */
46651
47205
  encryptAlgorithm?: string;
46652
47206
  /**
46653
47207
  * @remarks
46654
- * Specifies whether to encrypt system disk N. Valid values:
47208
+ * Specifies whether to encrypt the system disk. Valid values:
46655
47209
  *
46656
47210
  * * true
46657
47211
  * * false
@@ -46666,7 +47220,7 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationSystem
46666
47220
  encrypted?: string;
46667
47221
  /**
46668
47222
  * @remarks
46669
- * The ID of the KMS key to use for system disk N.
47223
+ * The ID of the KMS key to use for the system disk.
46670
47224
  *
46671
47225
  * When both LaunchTemplateId and LaunchConfiguration.\\* parameters are specified, LaunchTemplateId takes precedence.
46672
47226
  *
@@ -46674,6 +47228,17 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationSystem
46674
47228
  * 0e478b7a-4262-4802-b8cb-00d3fb40****
46675
47229
  */
46676
47230
  KMSKeyId?: string;
47231
+ /**
47232
+ * @remarks
47233
+ * The provisioned read/write IOPS of the ESSD AutoPL disk to use as the system disk. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}.
47234
+ *
47235
+ * Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}.
47236
+ *
47237
+ * > This parameter is available only if you set LaunchConfiguration.SystemDisk.Category to cloud_auto. For more information, see [ESSD AutoPL disks](https://help.aliyun.com/document_detail/368372.html).
47238
+ *
47239
+ * @example
47240
+ * 40000
47241
+ */
46677
47242
  provisionedIops?: number;
46678
47243
  static names(): {
46679
47244
  [key: string]: string;
@@ -46715,7 +47280,7 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationTag ex
46715
47280
  export declare class CreateAutoProvisioningGroupRequestLaunchConfiguration extends $tea.Model {
46716
47281
  /**
46717
47282
  * @remarks
46718
- * This parameter is unavailable for public use.
47283
+ * > This parameter is in invitational preview and is not publicly available.
46719
47284
  */
46720
47285
  arn?: CreateAutoProvisioningGroupRequestLaunchConfigurationArn[];
46721
47286
  /**
@@ -47224,7 +47789,7 @@ export declare class CreateAutoProvisioningGroupRequestTag extends $tea.Model {
47224
47789
  * @remarks
47225
47790
  * The key of tag N to add to the auto provisioning group.
47226
47791
  *
47227
- * Valid values of N: 1 to 20. The tag key cannot be an empty string. The tag key can be up to 128 characters in length and cannot contain http:// or https://. The tag key cannot start with acs: or aliyun.
47792
+ * Valid values of N: 1 to 20. The tag key cannot be an empty string. The tag key can be up to 128 characters in length. It cannot start with aliyun or acs: and cannot contain http:// or https://.
47228
47793
  *
47229
47794
  * @example
47230
47795
  * TestKey
@@ -48000,7 +48565,7 @@ export declare class CreateInstanceRequestDataDisk extends $tea.Model {
48000
48565
  * @remarks
48001
48566
  * The category of data disk N. Valid values:
48002
48567
  *
48003
- * * cloud_efficiency: ultra disk.
48568
+ * * cloud_efficiency: utra disk.
48004
48569
  *
48005
48570
  * * cloud_ssd: standard SSD.
48006
48571
  *
@@ -48051,7 +48616,7 @@ export declare class CreateInstanceRequestDataDisk extends $tea.Model {
48051
48616
  * @remarks
48052
48617
  * The mount point of data disk N.
48053
48618
  *
48054
- * > This parameter is applicable to scenarios in which a full image is used to create instances. A full image is an image that contains an operating system, application software, and business data. For these scenarios, you can set the parameter to the mount point of data disk N contained in the full image and modify `DataDisk.N.Size` and `DataDisk.N.Category` to change the category and size of data disk N created based on the image.
48619
+ * > This parameter is applicable to scenarios in which a full image is used to create instances. A full image is an image that contains an operating system, application software, and business data. For these scenarios, you can set this parameter to the mount point of data disk N contained in the full image and modify the `DataDisk.N.Size` and `DataDisk.N.Category` parameters to change the category and size of data disk N created based on the image.
48055
48620
  *
48056
48621
  * @example
48057
48622
  * /dev/xvdb
@@ -48113,20 +48678,20 @@ export declare class CreateInstanceRequestDataDisk extends $tea.Model {
48113
48678
  * @remarks
48114
48679
  * The size of data disk N. Valid values of N: 1 to 16. Unit: GiB. Valid values:
48115
48680
  *
48116
- * * Valid values when DataDisk.N.Category is set to cloud_efficiency: 20 to 32768.
48681
+ * * Valid values if you set DataDisk.N.Category to cloud_efficiency: 20 to 32768.
48117
48682
  *
48118
- * * Valid values when DataDisk.N.Category is set to cloud_ssd: 20 to 32768.
48683
+ * * Valid values if you set DataDisk.N.Category to cloud_ssd: 20 to 32768.
48119
48684
  *
48120
- * * Valid values when DataDisk.N.Category is set to cloud_essd: vary based on the `DataDisk.N.PerformanceLevel` value.
48685
+ * * Valid values if you set DataDisk.N.Category to cloud_essd: vary based on the `DataDisk.N.PerformanceLevel` value.
48121
48686
  *
48122
- * * Valid values when DataDisk.N.PerformanceLevel is set to PL0: 1 to 32768.
48123
- * * Valid values when DataDisk.N.PerformanceLevel is set to PL1: 20 to 32768.
48124
- * * Valid values when DataDisk.N.PerformanceLevel is set to PL2: 461 to 32768.
48125
- * * Valid values when DataDisk.N.PerformanceLevel is set to PL3: 1261 to 32768.
48687
+ * * Valid values when DataDisk.N.PerformanceLevel is set to PL0: 1 to 65536.
48688
+ * * Valid values when DataDisk.N.PerformanceLevel is set to PL1: 20 to 65536.
48689
+ * * Valid values when DataDisk.N.PerformanceLevel is set to PL2: 461 to 65536.
48690
+ * * Valid values when DataDisk.N.PerformanceLevel is set to PL3: 1261 to 65536.
48126
48691
  *
48127
- * * Valid values when DataDisk.N.Category is set to cloud: 5 to 2000.
48692
+ * * Valid values if you set DataDisk.N.Category to cloud: 5 to 2000.
48128
48693
  *
48129
- * > The value of this parameter must be greater than or equal to the size of the snapshot specified by `DataDisk.N.SnapshotId`.
48694
+ * > The value of this parameter must be greater than or equal to the size of the snapshot specified by `SnapshotId`.
48130
48695
  *
48131
48696
  * @example
48132
48697
  * 2000
@@ -48137,7 +48702,7 @@ export declare class CreateInstanceRequestDataDisk extends $tea.Model {
48137
48702
  * The ID of the snapshot to use to create data disk N. Valid values of N: 1 to 16.
48138
48703
  *
48139
48704
  * * If `DataDisk.N.SnapshotId` is specified, `DataDisk.N.Size` is ignored. The data disk is created based on the size of the specified snapshot.
48140
- * * Use snapshots created after July 15, 2013. Otherwise, an error is returned and your request is rejected.
48705
+ * * Use snapshots created on or after July 15, 2013. Otherwise, an error is returned and your request is rejected.
48141
48706
  *
48142
48707
  * @example
48143
48708
  * s-bp17441ohwka0yuh****
@@ -48145,7 +48710,7 @@ export declare class CreateInstanceRequestDataDisk extends $tea.Model {
48145
48710
  snapshotId?: string;
48146
48711
  /**
48147
48712
  * @remarks
48148
- * The ID of the dedicated block storage cluster to which data disk N belongs. If you want to use a disk in a dedicated block storage cluster as data disk N when you create the instance, you must specify this parameter.
48713
+ * The ID of the dedicated block storage cluster to which data disk N belongs. If you want to use a disk in a dedicated block storage cluster as data disk N when you create the instance, specify this parameter.
48149
48714
  *
48150
48715
  * @example
48151
48716
  * dbsc-j5e1sf2vaf5he8m2****
@@ -48164,7 +48729,7 @@ export declare class CreateInstanceRequestDataDisk extends $tea.Model {
48164
48729
  export declare class CreateInstanceRequestTag extends $tea.Model {
48165
48730
  /**
48166
48731
  * @remarks
48167
- * The key of tag N to add to the instance, disks, and primary elastic network interface (ENI). Valid values of N: 1 to 20. The tag key cannot be an empty string. It can be up to 128 characters in length and cannot start with `acs:` or `aliyun`. It cannot contain `http://` or `https://`.
48732
+ * The key of tag N to add to the instance, disks, and primary ENI. Valid values of N: 1 to 20. The tag key cannot be an empty string. The tag key can be up to 128 characters in length and cannot start with `acs:` or `aliyun`. It cannot contain `http://` or `https://`.
48168
48733
  *
48169
48734
  * @example
48170
48735
  * TestKey
@@ -48172,7 +48737,7 @@ export declare class CreateInstanceRequestTag extends $tea.Model {
48172
48737
  key?: string;
48173
48738
  /**
48174
48739
  * @remarks
48175
- * The value of tag N to add to the instance, disks, and primary ENI. Valid values of N: 1 to 20. The tag value can be an empty string. It can be up to 128 characters in length and cannot start with `acs:`. It cannot contain `http://` or `https://`.
48740
+ * The value of tag N to add to the instance, disks, and primary ENI. Valid values of N: 1 to 20. The tag value can be an empty string. The tag value can be up to 128 characters in length and cannot contain `http://` or `https://`.
48176
48741
  *
48177
48742
  * @example
48178
48743
  * TestValue
@@ -48378,12 +48943,12 @@ export declare class CreateLaunchTemplateRequestDataDisk extends $tea.Model {
48378
48943
  * @remarks
48379
48944
  * The category of data disk N. Valid values:
48380
48945
  *
48381
- * * cloud: basic disk
48382
- * * cloud_efficiency: ultra disk
48383
- * * cloud_ssd: standard SSD
48384
- * * cloud_essd: ESSD
48946
+ * * cloud: basic disk.
48947
+ * * cloud_efficiency: ultra disk.
48948
+ * * cloud_ssd: standard SSD.
48949
+ * * cloud_essd: ESSD.
48385
48950
  * * cloud_auto: ESSD AutoPL disk
48386
- * * cloud_essd_entry: ESSD Entry disk
48951
+ * * cloud_essd_entry: ESSD Entry disk.
48387
48952
  *
48388
48953
  * For I/O optimized instances, the default value is cloud_efficiency. For non-I/O optimized instances, the default value is cloud.
48389
48954
  *
@@ -48414,7 +48979,12 @@ export declare class CreateLaunchTemplateRequestDataDisk extends $tea.Model {
48414
48979
  description?: string;
48415
48980
  /**
48416
48981
  * @remarks
48417
- * > This parameter will be removed in the future. We recommend that you do not use this parameter to ensure future compatibility.
48982
+ * The mount point of data disk N. The mount points are named based on the number of data disks:
48983
+ *
48984
+ * * 1st to 25th data disks: /dev/xvd`[b-z]`.
48985
+ * * From the 26th data disk on: /dev/xvd`[aa-zz]`. For example, the 26th data disk is named /dev/xvdaa, the 27th data disk is named /dev/xvdab, and so on.
48986
+ *
48987
+ * > This parameter is applicable to scenarios in which a full image is used to create instances. A full image is an image that contains an operating system, application software, and business data. For these scenarios, you can set the parameter to the mount point of data disk N contained in the full image and modify `DataDisk.N.Size` and `DataDisk.N.Category` to change the category and size of data disk N created based on the image.
48418
48988
  *
48419
48989
  * @example
48420
48990
  * null
@@ -48422,7 +48992,7 @@ export declare class CreateLaunchTemplateRequestDataDisk extends $tea.Model {
48422
48992
  device?: string;
48423
48993
  /**
48424
48994
  * @remarks
48425
- * The name of data disk N. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with `http://` or `https://`. The name can contain letters, digits, colons (:), underscores (_), and hyphens (-).
48995
+ * The name of data disk N. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with `http://` or `https://`. The name can contain digits, letters, colons (:), underscores (_), and hyphens (-).
48426
48996
  *
48427
48997
  * @example
48428
48998
  * testDataDiskName
@@ -48457,7 +49027,7 @@ export declare class CreateLaunchTemplateRequestDataDisk extends $tea.Model {
48457
49027
  *
48458
49028
  * Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}.
48459
49029
  *
48460
- * > This parameter is available only if you set DataDisk.N.Category to cloud_auto. For more information, see [ESSD AutoPL disks](https://help.aliyun.com/document_detail/368372.html) and [Modify the performance configurations of an ESSD AutoPL disk](https://help.aliyun.com/document_detail/413275.html).
49030
+ * > This parameter is available only if you set DiskCategory to cloud_auto. For more information, see [ESSD AutoPL disks](https://help.aliyun.com/document_detail/368372.html) and [Modify the performance configurations of an ESSD AutoPL disk](https://help.aliyun.com/document_detail/413275.html).
48461
49031
  *
48462
49032
  * @example
48463
49033
  * 50000
@@ -48484,7 +49054,7 @@ export declare class CreateLaunchTemplateRequestDataDisk extends $tea.Model {
48484
49054
  *
48485
49055
  * * Valid values if you set DataDisk.N.Category to cloud_essd_entry: 10 to 32768.
48486
49056
  *
48487
- * The value of this parameter must be greater than or equal to the size of the snapshot specified by `DataDisk.N.SnapshotId`.
49057
+ * The value of this parameter must be greater than or equal to the size of the snapshot specified by `SnapshotId`.
48488
49058
  *
48489
49059
  * @example
48490
49060
  * 2000
@@ -48576,7 +49146,7 @@ export declare class CreateLaunchTemplateRequestNetworkInterface extends $tea.Mo
48576
49146
  * > You can attach only a single secondary ENI when you create an instance. After the instance is created, you can call the [CreateNetworkInterface](https://help.aliyun.com/document_detail/58504.html) and [AttachNetworkInterface](https://help.aliyun.com/document_detail/58515.html) operations to attach more secondary ENIs.
48577
49147
  *
48578
49148
  * @example
48579
- * 192.168.\*\*.**
49149
+ * ``192.168.**.**``
48580
49150
  */
48581
49151
  primaryIpAddress?: string;
48582
49152
  /**
@@ -48636,7 +49206,7 @@ export declare class CreateLaunchTemplateRequestNetworkInterface extends $tea.Mo
48636
49206
  export declare class CreateLaunchTemplateRequestTag extends $tea.Model {
48637
49207
  /**
48638
49208
  * @remarks
48639
- * The key of tag N to add to the instance, disks, and primary ENI. Valid values of N: 1 to 20. The tag key cannot be an empty string. The tag key can be up to 128 characters in length and cannot contain http:// or https://. The tag key cannot start with acs: or aliyun.
49209
+ * The key of tag N to add to the instance, disks, and primary ENI that are created from the launch template. Valid values of N: 1 to 20. The tag key cannot be an empty string. The tag key can be up to 128 characters in length and cannot contain http:// or https://. The tag key cannot start with acs: or aliyun.
48640
49210
  *
48641
49211
  * @example
48642
49212
  * TestKey
@@ -48644,7 +49214,7 @@ export declare class CreateLaunchTemplateRequestTag extends $tea.Model {
48644
49214
  key?: string;
48645
49215
  /**
48646
49216
  * @remarks
48647
- * The value of tag N to add to the instance, disks, and primary ENI. Valid values of N: 1 to 20. The tag value can be an empty string. The tag value can be up to 128 characters in length and cannot contain http:// or https://.
49217
+ * The value of tag N to add to the instance, disks, and primary ENI that are created from the launch template. Valid values of N: 1 to 20. The tag value can be an empty string. The tag value can be up to 128 characters in length and cannot contain http:// or https://.
48648
49218
  *
48649
49219
  * @example
48650
49220
  * TestValue
@@ -48850,12 +49420,12 @@ export declare class CreateLaunchTemplateVersionRequestDataDisk extends $tea.Mod
48850
49420
  * @remarks
48851
49421
  * The category of data disk N. Valid values:
48852
49422
  *
48853
- * * cloud: basic disk
48854
- * * cloud_efficiency: ultra disk
48855
- * * cloud_ssd: standard SSD
48856
- * * cloud_auto: ESSD AutoPL disk
48857
- * * cloud_essd: ESSD
48858
- * * cloud_essd_entry: ESSD Entry disk
49423
+ * * cloud: basic disk.
49424
+ * * cloud_efficiency: ultra disk.
49425
+ * * cloud_ssd: standard SSD.
49426
+ * * cloud_auto: ESSD AutoPL disk.
49427
+ * * cloud_essd: ESSD.
49428
+ * * cloud_essd_entry: ESSD Entry disk.
48859
49429
  *
48860
49430
  * For I/O optimized instances, the default value is cloud_efficiency. For non-I/O optimized instances, the default value is cloud.
48861
49431
  *
@@ -48886,7 +49456,12 @@ export declare class CreateLaunchTemplateVersionRequestDataDisk extends $tea.Mod
48886
49456
  description?: string;
48887
49457
  /**
48888
49458
  * @remarks
48889
- * > This parameter will be removed in the future. We recommend that you use other parameters to ensure future compatibility.
49459
+ * The mount point of data disk N. The mount points are named based on the number of data disks:
49460
+ *
49461
+ * * 1st to 25th data disks: /dev/xvd`[b-z]`.
49462
+ * * From the 26th data disk on: /dev/xvd`[aa-zz]`. For example, the 26th data disk is named /dev/xvdaa, the 27th data disk is named /dev/xvdab, and so on.
49463
+ *
49464
+ * > This parameter is applicable to scenarios in which a full image is used to create instances. A full image is an image that contains an operating system, application software, and business data. For these scenarios, you can set the parameter to the mount point of data disk N contained in the full image and modify `DataDisk.N.Size` and `DataDisk.N.Category` to change the category and size of data disk N created based on the image.
48890
49465
  *
48891
49466
  * @example
48892
49467
  * null
@@ -48894,7 +49469,7 @@ export declare class CreateLaunchTemplateVersionRequestDataDisk extends $tea.Mod
48894
49469
  device?: string;
48895
49470
  /**
48896
49471
  * @remarks
48897
- * The name of data disk N. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with `http://` or `https://`. The name can contain letters, digits, colons (:), underscores (_), and hyphens (-).
49472
+ * The name of data disk N. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with `http://` or `https://`. The name can contain digits, letters, colons (:), underscores (_), and hyphens (-).
48898
49473
  *
48899
49474
  * @example
48900
49475
  * testDataDiskName
@@ -48925,11 +49500,11 @@ export declare class CreateLaunchTemplateVersionRequestDataDisk extends $tea.Mod
48925
49500
  performanceLevel?: string;
48926
49501
  /**
48927
49502
  * @remarks
48928
- * The provisioned read/write IOPS of the ESSD AutoPL disk. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}
49503
+ * The provisioned read/write IOPS of the ESSD AutoPL disk. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}.
48929
49504
  *
48930
- * Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}
49505
+ * Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}.
48931
49506
  *
48932
- * > This parameter is available only if you set DataDisk.N.Category to cloud_auto. For more information, see [ESSD AutoPL disks](https://help.aliyun.com/document_detail/368372.html) and [Modify the performance configurations of an ESSD AutoPL disk](https://help.aliyun.com/document_detail/413275.html).
49507
+ * > This parameter is available only if you set DiskCategory to cloud_auto. For more information, see [ESSD AutoPL disks](https://help.aliyun.com/document_detail/368372.html) and [Modify the performance configurations of an ESSD AutoPL disk](https://help.aliyun.com/document_detail/413275.html).
48933
49508
  *
48934
49509
  * @example
48935
49510
  * 50000
@@ -48956,7 +49531,7 @@ export declare class CreateLaunchTemplateVersionRequestDataDisk extends $tea.Mod
48956
49531
  *
48957
49532
  * * Valid values if you set DataDisk.N.Category to cloud_essd_entry: 10 to 32768.
48958
49533
  *
48959
- * The value of this parameter must be greater than or equal to the size of the snapshot specified by `DataDisk.N.SnapshotId`.
49534
+ * The value of this parameter must be greater than or equal to the size of the snapshot specified by `SnapshotId`.
48960
49535
  *
48961
49536
  * @example
48962
49537
  * 2000
@@ -48966,7 +49541,7 @@ export declare class CreateLaunchTemplateVersionRequestDataDisk extends $tea.Mod
48966
49541
  * @remarks
48967
49542
  * The ID of the snapshot to use to create data disk N. Valid values of N: 1 to 16. When `DataDisk.N.SnapshotId` is specified, `DataDisk.N.Size` is ignored. The data disk is created with the size of the specified snapshot.
48968
49543
  *
48969
- * Use snapshots created on or after July 15, 2013. Otherwise, an error is returned and your request is rejected.
49544
+ * Use snapshots created after July 15, 2013. Otherwise, an error is returned and your request is rejected.
48970
49545
  *
48971
49546
  * @example
48972
49547
  * s-bp17441ohwka0yuh****
@@ -49030,7 +49605,7 @@ export declare class CreateLaunchTemplateVersionRequestNetworkInterface extends
49030
49605
  * The primary private IP address of the secondary ENI. The value of N in `NetworkInterface.N` cannot be greater than 1.
49031
49606
  *
49032
49607
  * @example
49033
- * 192.168.\*\*.**
49608
+ * ``192.168.**.**``
49034
49609
  */
49035
49610
  primaryIpAddress?: string;
49036
49611
  /**
@@ -49074,7 +49649,7 @@ export declare class CreateLaunchTemplateVersionRequestNetworkInterface extends
49074
49649
  export declare class CreateLaunchTemplateVersionRequestTag extends $tea.Model {
49075
49650
  /**
49076
49651
  * @remarks
49077
- * The key of tag N to add to the instance, disks, and primary ENI. Valid values of N: 1 to 20. The tag key cannot be an empty string. The tag key can be up to 128 characters in length and cannot contain http:// or https://. The tag key cannot start with acs: or aliyun.
49652
+ * The key of tag N to add to the ECS instance, disks, and primary ENI created based on the launch template version. Valid values of N: 1 to 20. The tag key cannot be an empty string. The tag key can be up to 128 characters in length and cannot contain http:// or https://. The tag key cannot start with acs: or aliyun.
49078
49653
  *
49079
49654
  * @example
49080
49655
  * TestKey
@@ -49082,7 +49657,7 @@ export declare class CreateLaunchTemplateVersionRequestTag extends $tea.Model {
49082
49657
  key?: string;
49083
49658
  /**
49084
49659
  * @remarks
49085
- * The value of tag N to add to the instance, disks, and primary ENI. Valid values of N: 1 to 20. The tag value can be an empty string. The tag value can be up to 128 characters in length and cannot contain http:// or https://.
49660
+ * The value of tag N to add to the ECS instance, disks, and primary ENI created based on the launch template version. Valid values of N: 1 to 20. The tag value can be an empty string. The tag value can be up to 128 characters in length and cannot contain http:// or https://.
49086
49661
  *
49087
49662
  * @example
49088
49663
  * TestValue
@@ -49375,7 +49950,7 @@ export declare class CreateNetworkInterfaceResponseBodyPrivateIpSetsPrivateIpSet
49375
49950
  * The private IP address of the instance.
49376
49951
  *
49377
49952
  * @example
49378
- * 172.17.\*\*.**
49953
+ * ``172.17.**.**``
49379
49954
  */
49380
49955
  privateIpAddress?: string;
49381
49956
  static names(): {
@@ -49949,7 +50524,7 @@ export declare class DeregisterManagedInstanceResponseBodyInstance extends $tea.
49949
50524
  * The public IP address of the managed instance.
49950
50525
  *
49951
50526
  * @example
49952
- * 47.8.\*\*.**
50527
+ * ``47.8.**.**``
49953
50528
  */
49954
50529
  internetIp?: string;
49955
50530
  /**
@@ -49957,7 +50532,7 @@ export declare class DeregisterManagedInstanceResponseBodyInstance extends $tea.
49957
50532
  * The internal IP address of the managed instance.
49958
50533
  *
49959
50534
  * @example
49960
- * 10.0.\*\*.**
50535
+ * ``10.0.**.**``
49961
50536
  */
49962
50537
  intranetIp?: string;
49963
50538
  /**
@@ -54310,7 +54885,7 @@ export declare class DescribeDeploymentSetsResponseBodyDeploymentSetsDeploymentS
54310
54885
  availableAmount?: number;
54311
54886
  /**
54312
54887
  * @remarks
54313
- * The number of ECS instances that belong to the zone in the deployment set.
54888
+ * The number of ECS instances that reside in the zone in the deployment set.
54314
54889
  *
54315
54890
  * @example
54316
54891
  * 2
@@ -54361,7 +54936,7 @@ export declare class DescribeDeploymentSetsResponseBodyDeploymentSetsDeploymentS
54361
54936
  export declare class DescribeDeploymentSetsResponseBodyDeploymentSetsDeploymentSet extends $tea.Model {
54362
54937
  /**
54363
54938
  * @remarks
54364
- * Details of the capacities of the deployment set. This parameter is valid only when the deployment set contains Elastic Compute Service (ECS) instances. The value contains the capacities of the deployment set in different zones.
54939
+ * Details of the capacities of the deployment set. This parameter is valid only when the deployment set contains ECS instances. The value contains information about the capacities of the deployment set in different zones.
54365
54940
  */
54366
54941
  capacities?: DescribeDeploymentSetsResponseBodyDeploymentSetsDeploymentSetCapacities;
54367
54942
  /**
@@ -54398,7 +54973,7 @@ export declare class DescribeDeploymentSetsResponseBodyDeploymentSetsDeploymentS
54398
54973
  deploymentSetName?: string;
54399
54974
  /**
54400
54975
  * @remarks
54401
- * The deployment strategy. The value of this response parameter is that of the `Strategy` request parameter.
54976
+ * The deployment strategy. The return value of this parameter is the value of the `Strategy` request parameter.
54402
54977
  *
54403
54978
  * @example
54404
54979
  * Availability
@@ -54440,7 +55015,7 @@ export declare class DescribeDeploymentSetsResponseBodyDeploymentSetsDeploymentS
54440
55015
  instanceAmount?: number;
54441
55016
  /**
54442
55017
  * @remarks
54443
- * The IDs of the instances in the deployment set.
55018
+ * The IDs of the Elastic Compute Service (ECS) instances in the deployment set.
54444
55019
  */
54445
55020
  instanceIds?: DescribeDeploymentSetsResponseBodyDeploymentSetsDeploymentSetInstanceIds;
54446
55021
  /**
@@ -58049,6 +58624,9 @@ export declare class DescribeImagesResponseBodyImagesImage extends $tea.Model {
58049
58624
  *
58050
58625
  * * BIOS: Basic Input/Output System (BIOS)
58051
58626
  * * UEFI: Unified Extensible Firmware Interface (UEFI)
58627
+ * * UEFI-Preferred: BIOS and UEFI
58628
+ *
58629
+ * For information about the image boot modes, see [Image boot modes](~~2244655#b9caa9b8bb1wf~~).
58052
58630
  *
58053
58631
  * @example
58054
58632
  * BIOS
@@ -58263,6 +58841,8 @@ export declare class DescribeImagesResponseBodyImagesImage extends $tea.Model {
58263
58841
  * @remarks
58264
58842
  * The size of the image. Unit: GiB.
58265
58843
  *
58844
+ * > If the image contains data disk snapshots, this parameter indicates only the size of the system disk snapshot contained in the image.
58845
+ *
58266
58846
  * @example
58267
58847
  * 60
58268
58848
  */
@@ -58439,7 +59019,7 @@ export declare class DescribeInstanceAttributeResponseBodyEipAddress extends $te
58439
59019
  * The ID of the elastic IP address (EIP).
58440
59020
  *
58441
59021
  * @example
58442
- * 30.21.\*\*.**
59022
+ * ``30.21.**.**``
58443
59023
  */
58444
59024
  ipAddress?: string;
58445
59025
  static names(): {
@@ -58543,7 +59123,7 @@ export declare class DescribeInstanceAttributeResponseBodyVpcAttributes extends
58543
59123
  * The NAT IP address of the instance. It is used by ECS instances in different VPCs for communication.
58544
59124
  *
58545
59125
  * @example
58546
- * 172.17.\*\*.**
59126
+ * ``172.17.**.**``
58547
59127
  */
58548
59128
  natIpAddress?: string;
58549
59129
  /**
@@ -58920,7 +59500,7 @@ export declare class DescribeInstanceHistoryEventsResponseBodyInstanceSystemEven
58920
59500
  hostType?: string;
58921
59501
  /**
58922
59502
  * @remarks
58923
- * The inactive disks that have been released and whose data must be cleared.
59503
+ * The inactive disks that were released and whose data must be cleared.
58924
59504
  */
58925
59505
  inactiveDisks?: DescribeInstanceHistoryEventsResponseBodyInstanceSystemEventSetInstanceSystemEventTypeExtendedAttributeInactiveDisks;
58926
59506
  /**
@@ -59055,12 +59635,19 @@ export declare class DescribeInstanceHistoryEventsResponseBodyInstanceSystemEven
59055
59635
  notBefore?: string;
59056
59636
  /**
59057
59637
  * @remarks
59058
- * The reason why the system event was scheduled.
59638
+ * The reason why the system event occurred.
59059
59639
  *
59060
59640
  * @example
59061
59641
  * System maintenance is scheduled due to ***.
59062
59642
  */
59063
59643
  reason?: string;
59644
+ /**
59645
+ * @remarks
59646
+ * The reason code category for the system event.
59647
+ *
59648
+ * @example
59649
+ * VPCMigrationEcs
59650
+ */
59064
59651
  reasonCode?: string;
59065
59652
  /**
59066
59653
  * @remarks
@@ -59757,9 +60344,6 @@ export declare class DescribeInstanceTypeFamiliesResponseBodyInstanceTypeFamilie
59757
60344
  export declare class DescribeInstanceTypesResponseBodyInstanceTypesInstanceTypeEnhancedNetwork extends $tea.Model {
59758
60345
  /**
59759
60346
  * @remarks
59760
- * *
59761
- * *
59762
- *
59763
60347
  * > This parameter is not publicly available.
59764
60348
  *
59765
60349
  * @example
@@ -60430,7 +61014,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceEipAddress ex
60430
61014
  * The EIP.
60431
61015
  *
60432
61016
  * @example
60433
- * 42.112.\*\*.**
61017
+ * ``42.112.**.**``
60434
61018
  */
60435
61019
  ipAddress?: string;
60436
61020
  /**
@@ -60660,7 +61244,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceNetworkInterf
60660
61244
  * The private IP address of the ENI.
60661
61245
  *
60662
61246
  * @example
60663
- * 172.17.\*\*.**
61247
+ * ``172.17.**.**``
60664
61248
  */
60665
61249
  privateIpAddress?: string;
60666
61250
  static names(): {
@@ -60722,7 +61306,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceNetworkInterf
60722
61306
  * The primary private IP address of the ENI.
60723
61307
  *
60724
61308
  * @example
60725
- * 172.17.\*\*.***
61309
+ * ``172.17.**.**``*
60726
61310
  */
60727
61311
  primaryIpAddress?: string;
60728
61312
  /**
@@ -60952,7 +61536,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceVpcAttributes
60952
61536
  * The NAT IP address of the instance. The NAT IP address is used by ECS instances in different VPCs for communication.
60953
61537
  *
60954
61538
  * @example
60955
- * 172.17.\*\*.**
61539
+ * ``172.17.**.**``
60956
61540
  */
60957
61541
  natIpAddress?: string;
60958
61542
  /**
@@ -63078,9 +63662,12 @@ export declare class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVer
63078
63662
  description?: string;
63079
63663
  /**
63080
63664
  * @remarks
63081
- * The device name of the data disk.
63665
+ * The mount point of the data disk. The mount points are named based on the number of data disks:
63082
63666
  *
63083
- * > This parameter will be removed in the future. To ensure future compatibility, we recommend that you do not use this parameter.
63667
+ * * 1st to 25th data disks: /dev/xvd`[b-z]`.
63668
+ * * From the 26th data disk on: /dev/xvd`[aa-zz]`. For example, the 26th data disk is named /dev/xvdaa, the 27th data disk is named /dev/xvdab, and so on.
63669
+ *
63670
+ * > This parameter is applicable to scenarios in which a full image is used to create instances. A full image is an image that contains an operating system, application software, and business data. For these scenarios, you can set the parameter to the mount point of data disk N contained in the full image and modify `DataDisk.N.Size` and `DataDisk.N.Category` to change the category and size of data disk N created based on the image.
63084
63671
  *
63085
63672
  * @example
63086
63673
  * /dev/xvda
@@ -63560,7 +64147,7 @@ export declare class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVer
63560
64147
  * The private IP address to assign to the instance.
63561
64148
  *
63562
64149
  * @example
63563
- * 10.1.\*\*.**
64150
+ * ``10.1.**.**``
63564
64151
  */
63565
64152
  privateIpAddress?: string;
63566
64153
  /**
@@ -63781,7 +64368,9 @@ export declare class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVer
63781
64368
  export declare class DescribeLaunchTemplatesRequestTemplateTag extends $tea.Model {
63782
64369
  /**
63783
64370
  * @remarks
63784
- * The value of tag N of the launch template. Valid values of N: 1 to 20.
64371
+ * The key of tag N of the launch template. Valid values of N: 1 to 20.
64372
+ *
64373
+ * If you specify a single tag to query resources, up to 1,000 resources to which the tag is added are returned. If you specify multiple tags to query resources, up to 1,000 resources to which all specified tags are added are returned. To query more than 1,000 resources that have specified tags added, call the [ListTagResources](https://help.aliyun.com/document_detail/110425.html) operation.
63785
64374
  *
63786
64375
  * @example
63787
64376
  * TestKey
@@ -63789,9 +64378,7 @@ export declare class DescribeLaunchTemplatesRequestTemplateTag extends $tea.Mode
63789
64378
  key?: string;
63790
64379
  /**
63791
64380
  * @remarks
63792
- * The number of the page to return. Pages start from page 1.
63793
- *
63794
- * Default value: 1.
64381
+ * The value of tag N of the launch template. Valid values of N: 1 to 20.
63795
64382
  *
63796
64383
  * @example
63797
64384
  * TestValue
@@ -63809,13 +64396,16 @@ export declare class DescribeLaunchTemplatesRequestTemplateTag extends $tea.Mode
63809
64396
  }
63810
64397
  export declare class DescribeLaunchTemplatesResponseBodyLaunchTemplateSetsLaunchTemplateSetTagsTag extends $tea.Model {
63811
64398
  /**
64399
+ * @remarks
64400
+ * The tag value of the launch template.
64401
+ *
63812
64402
  * @example
63813
64403
  * TestKey
63814
64404
  */
63815
64405
  tagKey?: string;
63816
64406
  /**
63817
64407
  * @remarks
63818
- * The key of tag N of the launch template.
64408
+ * The tag key of the launch template.
63819
64409
  *
63820
64410
  * @example
63821
64411
  * TestValue
@@ -63846,7 +64436,9 @@ export declare class DescribeLaunchTemplatesResponseBodyLaunchTemplateSetsLaunch
63846
64436
  export declare class DescribeLaunchTemplatesResponseBodyLaunchTemplateSetsLaunchTemplateSet extends $tea.Model {
63847
64437
  /**
63848
64438
  * @remarks
63849
- * The ID of the resource group to which the launch template belongs.
64439
+ * The time when the launch template was created.
64440
+ *
64441
+ * The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
63850
64442
  *
63851
64443
  * @example
63852
64444
  * 2018-05-14T14:18:00Z
@@ -63854,7 +64446,7 @@ export declare class DescribeLaunchTemplatesResponseBodyLaunchTemplateSetsLaunch
63854
64446
  createTime?: string;
63855
64447
  /**
63856
64448
  * @remarks
63857
- * The latest version number of the launch template.
64449
+ * The ID of the Alibaba Cloud account that created the launch template.
63858
64450
  *
63859
64451
  * @example
63860
64452
  * 1234567890
@@ -63894,7 +64486,9 @@ export declare class DescribeLaunchTemplatesResponseBodyLaunchTemplateSetsLaunch
63894
64486
  launchTemplateName?: string;
63895
64487
  /**
63896
64488
  * @remarks
63897
- * The ID of the launch template.
64489
+ * The time when a version was added to or deleted from the launch template.
64490
+ *
64491
+ * The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
63898
64492
  *
63899
64493
  * @example
63900
64494
  * 2018-05-14T14:18:00Z
@@ -63910,7 +64504,9 @@ export declare class DescribeLaunchTemplatesResponseBodyLaunchTemplateSetsLaunch
63910
64504
  resourceGroupId?: string;
63911
64505
  /**
63912
64506
  * @remarks
63913
- * The tag of the launch template.
64507
+ * The tags of the launch template.
64508
+ *
64509
+ * > You can only call API operations to add tags to and query the tags of a launch template. You cannot add tags to or view the tags of a launch template in the ECS console.
63914
64510
  */
63915
64511
  tags?: DescribeLaunchTemplatesResponseBodyLaunchTemplateSetsLaunchTemplateSetTags;
63916
64512
  static names(): {
@@ -64058,7 +64654,7 @@ export declare class DescribeManagedInstancesResponseBodyInstances extends $tea.
64058
64654
  * The public IP address of the managed instance.
64059
64655
  *
64060
64656
  * @example
64061
- * 40.65.\*\*.**
64657
+ * ``40.65.**.**``
64062
64658
  */
64063
64659
  internetIp?: string;
64064
64660
  /**
@@ -64066,7 +64662,7 @@ export declare class DescribeManagedInstancesResponseBodyInstances extends $tea.
64066
64662
  * The internal IP address of the managed instance.
64067
64663
  *
64068
64664
  * @example
64069
- * 10.0.\*\*.**
64665
+ * ``10.0.**.**``
64070
64666
  */
64071
64667
  intranetIp?: string;
64072
64668
  /**
@@ -64240,7 +64836,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBodyAssociatedPubl
64240
64836
  * The EIP.
64241
64837
  *
64242
64838
  * @example
64243
- * 116.62.\*\*.**
64839
+ * ``116.62.**.**``
64244
64840
  */
64245
64841
  publicIpAddress?: string;
64246
64842
  static names(): {
@@ -64580,7 +65176,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBodyPrivateIpSetsP
64580
65176
  * The EIP.
64581
65177
  *
64582
65178
  * @example
64583
- * 116.62.\*\*.**
65179
+ * ``116.62.**.**``
64584
65180
  */
64585
65181
  publicIpAddress?: string;
64586
65182
  static names(): {
@@ -64615,7 +65211,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBodyPrivateIpSetsP
64615
65211
  * The private IP address of the ENI.
64616
65212
  *
64617
65213
  * @example
64618
- * 172.17.\*\*.**
65214
+ * ``172.17.**.**``
64619
65215
  */
64620
65216
  privateIpAddress?: string;
64621
65217
  static names(): {
@@ -64845,7 +65441,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
64845
65441
  * The EIP.
64846
65442
  *
64847
65443
  * @example
64848
- * 116.62.\*\*.**
65444
+ * ``116.62.**.**``
64849
65445
  */
64850
65446
  publicIpAddress?: string;
64851
65447
  static names(): {
@@ -65011,7 +65607,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
65011
65607
  * The EIP.
65012
65608
  *
65013
65609
  * @example
65014
- * 116.62.\*\*.**
65610
+ * ``116.62.**.**``
65015
65611
  */
65016
65612
  publicIpAddress?: string;
65017
65613
  static names(): {
@@ -65054,7 +65650,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
65054
65650
  * The private IP address of the ENI.
65055
65651
  *
65056
65652
  * @example
65057
- * 172.17.\*\*.**
65653
+ * ``172.17.**.**``
65058
65654
  */
65059
65655
  privateIpAddress?: string;
65060
65656
  static names(): {
@@ -65243,7 +65839,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
65243
65839
  * The primary private IP address of the ENI.
65244
65840
  *
65245
65841
  * @example
65246
- * 172.17.\*\*.**
65842
+ * ``172.17.**.**``
65247
65843
  */
65248
65844
  privateIpAddress?: string;
65249
65845
  /**
@@ -65301,6 +65897,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
65301
65897
  * true
65302
65898
  */
65303
65899
  serviceManaged?: boolean;
65900
+ sourceDestCheck?: boolean;
65304
65901
  /**
65305
65902
  * @remarks
65306
65903
  * The state of the ENI.
@@ -66280,7 +66877,7 @@ export declare class DescribeRegionsResponseBodyRegionsRegion extends $tea.Model
66280
66877
  regionEndpoint?: string;
66281
66878
  /**
66282
66879
  * @remarks
66283
- * The region ID.
66880
+ * The ID of the region.
66284
66881
  *
66285
66882
  * @example
66286
66883
  * cn-qingdao-et2-bo1
@@ -67836,6 +68433,7 @@ export declare class DescribeSecurityGroupsResponseBodySecurityGroupsSecurityGro
67836
68433
  * 0
67837
68434
  */
67838
68435
  ecsCount?: number;
68436
+ groupToGroupRuleCount?: number;
67839
68437
  /**
67840
68438
  * @remarks
67841
68439
  * The ID of the resource group to which the security group belongs.
@@ -67844,6 +68442,7 @@ export declare class DescribeSecurityGroupsResponseBodySecurityGroupsSecurityGro
67844
68442
  * rg-bp67acfmxazb4p****
67845
68443
  */
67846
68444
  resourceGroupId?: string;
68445
+ ruleCount?: number;
67847
68446
  /**
67848
68447
  * @remarks
67849
68448
  * The ID of the security group.
@@ -72705,6 +73304,30 @@ export declare class ModifyReservedInstancesResponseBodyReservedInstanceIdSets e
72705
73304
  [key: string]: any;
72706
73305
  });
72707
73306
  }
73307
+ export declare class PurchaseElasticityAssuranceRequestPrivatePoolOptions extends $tea.Model {
73308
+ /**
73309
+ * @remarks
73310
+ * This parameter is required.
73311
+ *
73312
+ * @example
73313
+ * eap-bp67acfmxazb4****
73314
+ */
73315
+ id?: string;
73316
+ /**
73317
+ * @example
73318
+ * Open
73319
+ */
73320
+ matchCriteria?: string;
73321
+ static names(): {
73322
+ [key: string]: string;
73323
+ };
73324
+ static types(): {
73325
+ [key: string]: any;
73326
+ };
73327
+ constructor(map?: {
73328
+ [key: string]: any;
73329
+ });
73330
+ }
72708
73331
  export declare class PurchaseReservedInstancesOfferingRequestTag extends $tea.Model {
72709
73332
  /**
72710
73333
  * @remarks
@@ -72895,6 +73518,14 @@ export declare class RemoveTagsRequestTag extends $tea.Model {
72895
73518
  });
72896
73519
  }
72897
73520
  export declare class RenewElasticityAssurancesRequestPrivatePoolOptions extends $tea.Model {
73521
+ /**
73522
+ * @remarks
73523
+ * The IDs of elasticity assurances.
73524
+ *
73525
+ * **Limits**: You can renew up to 20 elasticity assurances at a time.
73526
+ *
73527
+ * You can call the [DescribeElasticityAssurances](https://help.aliyun.com/document_detail/2679748.html) operation to query the elasticity assurances that you purchased.
73528
+ */
72898
73529
  id?: string[];
72899
73530
  static names(): {
72900
73531
  [key: string]: string;
@@ -74331,10 +74962,10 @@ export declare class RunInstancesRequestImageOptions extends $tea.Model {
74331
74962
  export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
74332
74963
  /**
74333
74964
  * @remarks
74334
- * Specifies whether to retain ENI N when the associated instance is released. Valid values:
74965
+ * Specifies whether to release ENI N when the associated instance is released. Valid values:
74335
74966
  *
74336
- * * true: releases the ENI when the associated instance is released.
74337
- * * false: retains the ENI when the associated instance is released.
74967
+ * * true
74968
+ * * false
74338
74969
  *
74339
74970
  * Default value: true.
74340
74971
  *
@@ -74348,11 +74979,11 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
74348
74979
  * @remarks
74349
74980
  * The description of ENI N.
74350
74981
  *
74351
- * Take note of the following items:
74982
+ * When you specify this parameter, take note of the following items:
74352
74983
  *
74353
- * * Valid values of N: 1 and 2. If the value of N is 1, you can configure a primary or secondary ENI. If the value of N is 2, you must configure a primary ENI and a secondary ENI.
74984
+ * * The value of N cannot exceed the maximum number of ENIs per instance that the instance type supports. For the maximum number of ENIs per instance that an instance type supports, see [Overview of instance families](https://help.aliyun.com/document_detail/25378.html) or call the [DescribeInstanceTypes](https://help.aliyun.com/document_detail/2679699.html) operation.
74354
74985
  * * The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.
74355
- * * If `NetworkInterface.N.InstanceType` is set to `Primary`, you do not need to specify this parameter.
74986
+ * * If you set `NetworkInterface.N.InstanceType` to `Primary`, you do not need to specify this parameter.
74356
74987
  *
74357
74988
  * @example
74358
74989
  * Network_Description
@@ -74360,12 +74991,12 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
74360
74991
  description?: string;
74361
74992
  /**
74362
74993
  * @remarks
74363
- * The type of ENI N. Valid values of N: 1 and 2. If the value of N is 1, you can configure a primary or secondary ENI. If the value of N is 2, you must configure a primary ENI and a secondary ENI.
74994
+ * The type of ENI N. The value of N cannot exceed the maximum number of ENIs per instance that the instance type supports. For the maximum number of ENIs per instance that an instance type supports, see [Overview of instance families](https://help.aliyun.com/document_detail/25378.html) or call the [DescribeInstanceTypes](https://help.aliyun.com/document_detail/2679699.html) operation.
74364
74995
  *
74365
74996
  * Valid values:
74366
74997
  *
74367
- * * Primary: the primary ENI.
74368
- * * Secondary: the secondary ENI.
74998
+ * * Primary: primary ENI.
74999
+ * * Secondary: secondary ENI.
74369
75000
  *
74370
75001
  * Default value: Secondary.
74371
75002
  *
@@ -74375,13 +75006,13 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
74375
75006
  instanceType?: string;
74376
75007
  /**
74377
75008
  * @remarks
74378
- * IPv6 address N to assign to the primary ENI. You can assign up to 10 IPv6 addresses to the primary ENI. Valid values of the second N: 1 to 10.
75009
+ * The IPv6 addresses to assign to the primary ENI. You can assign up to 10 IPv6 addresses to the primary ENI. Valid values of the second N: 1 to 10.
74379
75010
  *
74380
75011
  * Example: `Ipv6Address.1=2001:db8:1234:1a00::***`.
74381
75012
  *
74382
- * Take note of the following items:
75013
+ * When you specify this parameter, take note of the following items:
74383
75014
  *
74384
- * * This parameter is valid only when `NetworkInterface.N.InstanceType` is set to `Primary`. If `NetworkInterface.N.InstanceType` is set to `Secondary` or left empty, you cannot specify this parameter.
75015
+ * * This parameter is valid only when `NetworkInterface.N.InstanceType` is set to `Primary`. If you set `NetworkInterface.N.InstanceType` to `Secondary` or leave NetworkInterface.N.InstanceType empty, you cannot specify this parameter.
74385
75016
  * * If you specify this parameter, you must set `Amount` to 1 and cannot specify `Ipv6AddressCount`, `Ipv6Address.N`, or `NetworkInterface.N.Ipv6AddressCount`.
74386
75017
  */
74387
75018
  ipv6Address?: string[];
@@ -74389,10 +75020,10 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
74389
75020
  * @remarks
74390
75021
  * The number of IPv6 addresses to randomly generate for the primary ENI. Valid values: 1 to 10.
74391
75022
  *
74392
- * Take note of the following items:
75023
+ * When you specify this parameter, take note of the following items:
74393
75024
  *
74394
- * * This parameter is valid only when `NetworkInterface.N.InstanceType` is set to `Primary`. If `NetworkInterface.N.InstanceType` is set to `Secondary` or left empty, you cannot specify this parameter.
74395
- * * If this parameter is specified, you cannot specify `Ipv6AddressCount`, `Ipv6Address.N`, or `NetworkInterface.N.Ipv6Address.N`.
75025
+ * * This parameter is valid only when `NetworkInterface.N.InstanceType` is set to `Primary`. If you set `NetworkInterface.N.InstanceType` to `Secondary` or leave NetworkInterface.N.InstanceType empty, you cannot specify this parameter.
75026
+ * * If you specify this parameter, you cannot specify `Ipv6AddressCount`, `Ipv6Address.N`, or `NetworkInterface.N.Ipv6Address.N`.
74396
75027
  *
74397
75028
  * @example
74398
75029
  * 1
@@ -74402,11 +75033,11 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
74402
75033
  * @remarks
74403
75034
  * The index of the network card for ENI N.
74404
75035
  *
74405
- * Take note of the following items:
75036
+ * When you specify this parameter, take note of the following items:
74406
75037
  *
74407
75038
  * * You can specify network card indexes only for instances of specific instance types.
74408
- * * When NetworkInterface.N.InstanceType is set to Primary, you can set NetworkInterface.N.NetworkCardIndex only to 0 for instance types that support network cards.
74409
- * * When NetworkInterface.N.InstanceType is set to Secondary or left empty, you can specify NetworkInterface.N.NetworkCardIndex based on instance types if the instance types support network cards. For more information, see [Overview of instance families](https://help.aliyun.com/document_detail/25378.html).
75039
+ * * If you set NetworkInterface.N.InstanceType to Primary, you can set NetworkInterface.N.NetworkCardIndex only to 0 for instance types that support network cards.
75040
+ * * If you set NetworkInterface.N.InstanceType to Secondary or do not specify the parameter, you can specify NetworkInterface.N.NetworkCardIndex based on instance types if the instance types support network cards. For more information, see [Overview of instance families](https://help.aliyun.com/document_detail/25378.html).
74410
75041
  *
74411
75042
  * @example
74412
75043
  * 0
@@ -74426,10 +75057,10 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
74426
75057
  * @remarks
74427
75058
  * The name of ENI N. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), periods (.), and hyphens (-).
74428
75059
  *
74429
- * Take note of the following items:
75060
+ * When you specify this parameter, take note of the following items:
74430
75061
  *
74431
- * * Valid values of N: 1 and 2. If the value of N is 1, you can configure a primary or secondary ENI. If the value of N is 2, you must configure a primary ENI and a secondary ENI.
74432
- * * If `NetworkInterface.N.InstanceType` is set to `Primary`, you do not need to specify this parameter.
75062
+ * * The value of N cannot exceed the maximum number of ENIs per instance that the instance type supports. For the maximum number of ENIs per instance that an instance type supports, see [Overview of instance families](https://help.aliyun.com/document_detail/25378.html) or call the [DescribeInstanceTypes](https://help.aliyun.com/document_detail/2679699.html) operation.
75063
+ * * If you set `NetworkInterface.N.InstanceType` to `Primary`, you do not need to specify this parameter.
74433
75064
  *
74434
75065
  * @example
74435
75066
  * Network_Name
@@ -74454,37 +75085,35 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
74454
75085
  * @remarks
74455
75086
  * The primary IP address to assign to ENI N.
74456
75087
  *
74457
- * Take note of the following items:
75088
+ * When you specify this parameter, take note of the following items:
74458
75089
  *
74459
- * * Valid values of N: 1 and 2.
75090
+ * * The value of N cannot exceed the maximum number of ENIs per instance that the instance type supports. For the maximum number of ENIs per instance that an instance type supports, see [Overview of instance families](https://help.aliyun.com/document_detail/25378.html) or call the [DescribeInstanceTypes](https://help.aliyun.com/document_detail/2679699.html) operation.
74460
75091
  *
74461
- * * If the value of N is 1, you can configure a primary or secondary ENI. If this parameter is specified, `Amount` is set to a numeric value greater than 1, and NetworkInterface.N.InstanceType is set to Primary, the specified number of instances are created and consecutive primary IP addresses starting from the specified IP address are assigned to the instances. In this case, you cannot attach secondary ENIs to the instances.
74462
- * * If the value of N is 2, you can configure a primary ENI and a secondary ENI. If this parameter is specified, `Amount` is set to a numeric value greater than 1, and NetworkInterface.N.InstanceType is set to Primary, you cannot set `NetworkInterface.2.InstanceType` to Secondary to attach a secondary ENI.
75092
+ * * If the value of N is 1, you can configure a primary or secondary ENI. If you specify this parameter, set `Amount` to a numeric value greater than 1, and set NetworkInterface.N.InstanceType to Primary, the specified number of instances are created and consecutive primary IP addresses starting from the specified IP address are assigned to the instances. In this case, you cannot attach secondary ENIs to the instances.
75093
+ * * If you specify this parameter, set `Amount` to a numeric value greater than 1, and set NetworkInterface.N.InstanceType to Primary, you cannot set `NetworkInterface.2.InstanceType` to Secondary to attach a secondary ENI.
74463
75094
  *
74464
- * * If `NetworkInterface.N.InstanceType` is set to `Primary`, this parameter is equivalent to `PrivateIpAddress`. You cannot specify both this parameter and `PrivateIpAddress` in the same request.
75095
+ * * If you set `NetworkInterface.N.InstanceType` to `Primary`, this parameter is equivalent to `PrivateIpAddress`. You cannot specify both this parameter and `PrivateIpAddress` in the same request.
74465
75096
  *
74466
- * * If `NetworkInterface.N.InstanceType` is set to `Secondary` or left empty, the specified primary IP address is assigned to the secondary ENI. The default value is an IP address that is randomly selected from within the CIDR block of the vSwitch to which to connect the secondary ENI.
75097
+ * * If you set `NetworkInterface.N.InstanceType` to `Secondary` or leave NetworkInterface.N.InstanceType empty, the specified primary IP address is assigned to the secondary ENI. The default value is an IP address that is randomly selected from within the CIDR block of the vSwitch to which to connect the secondary ENI.
74467
75098
  *
74468
75099
  * >
74469
75100
  *
74470
- * * You can attach only a single secondary ENI when you create an ECS instance. After the instance is created, you can call the [CreateNetworkInterface](https://help.aliyun.com/document_detail/58504.html) and [AttachNetworkInterface](https://help.aliyun.com/document_detail/58515.html) operations to attach more secondary ENIs.
74471
- *
74472
75101
  * * The first IP address and last three IP addresses of each vSwitch CIDR block are reserved. You cannot specify the IP addresses. For example, if a vSwitch CIDR block is 192.168.1.0/24, the following IP addresses are reserved: 192.168.1.0, 192.168.1.253, 192.168.1.254, and 192.168.1.255.
74473
75102
  *
74474
75103
  * @example
74475
- * 172.16.\*\*.**
75104
+ * ``172.16.**.**``
74476
75105
  */
74477
75106
  primaryIpAddress?: string;
74478
75107
  /**
74479
75108
  * @remarks
74480
75109
  * The number of queues supported by ENI N.
74481
75110
  *
74482
- * Take note of the following items:
75111
+ * When you specify this parameter, take note of the following items:
74483
75112
  *
74484
- * * Valid values of N: 1 and 2. If the value of N is 1, you can configure a primary or secondary ENI. If the value of N is 2, you must configure a primary ENI and a secondary ENI.
75113
+ * * The value of N cannot exceed the maximum number of ENIs per instance that the instance type supports. For the maximum number of ENIs per instance that an instance type supports, see [Overview of instance families](https://help.aliyun.com/document_detail/25378.html) or call the [DescribeInstanceTypes](https://help.aliyun.com/document_detail/2679699.html) operation.
74485
75114
  * * The value of this parameter cannot exceed the maximum number of queues allowed per ENI.
74486
75115
  * * The total number of queues for all ENIs on the instance cannot exceed the queue quota for the instance type. To query the maximum number of queues per ENI and the queue quota for an instance type, you can call the [DescribeInstanceTypes](https://help.aliyun.com/document_detail/25620.html) operation and check the `MaximumQueueNumberPerEni` and `TotalEniQueueQuantity` values in the response.
74487
- * * If this parameter is set and `NetworkInterface.N.InstanceType` is set to `Primary`, you cannot specify `NetworkInterfaceQueueNumber`.
75116
+ * * If you specify this parameter and set `NetworkInterface.N.InstanceType` to `Primary`, you cannot specify `NetworkInterfaceQueueNumber`.
74488
75117
  *
74489
75118
  * @example
74490
75119
  * 8
@@ -74502,7 +75131,7 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
74502
75131
  * @remarks
74503
75132
  * The receive (Rx) queue depth of ENI N.
74504
75133
  *
74505
- * Take note of the following items:
75134
+ * When you specify this parameter, take note of the following items:
74506
75135
  *
74507
75136
  * * The Rx queue depth of an ENI must be the same as the transmit (Tx) queue depth of the ENI. Valid values: powers of 2 in the range of 8192 to 16384.
74508
75137
  * * A larger Rx queue depth yields higher inbound throughput but consumes more memory.
@@ -74515,11 +75144,11 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
74515
75144
  * @remarks
74516
75145
  * The ID of the security group to which to assign ENI N.
74517
75146
  *
74518
- * Take note of the following items:
75147
+ * When you specify this parameter, take note of the following items:
74519
75148
  *
74520
- * * Valid values of N: 1 and 2. If the value of N is 1, you can configure a primary or secondary ENI. If the value of N is 2, you must configure a primary ENI and a secondary ENI.
74521
- * * If `NetworkInterface.N.InstanceType` is set to `Primary`, you must specify this parameter. In this case, this parameter is equivalent to `SecurityGroupId`. You cannot specify `SecurityGroupId`, `SecurityGroupIds.N`, or `NetworkInterface.N.SecurityGroupIds.N`.
74522
- * * If `NetworkInterface.N.InstanceType` is set to `Secondary` or left empty, you do not need to specify this parameter. The default value is the ID of the security group to which to assign the instance.
75149
+ * * The value of N cannot exceed the maximum number of ENIs per instance that the instance type supports. For the maximum number of ENIs per instance that an instance type supports, see [Overview of instance families](https://help.aliyun.com/document_detail/25378.html) or call the [DescribeInstanceTypes](https://help.aliyun.com/document_detail/2679699.html) operation.
75150
+ * * If you set `NetworkInterface.N.InstanceType` to `Primary`, you must specify this parameter. In this case, this parameter is equivalent to `SecurityGroupId` and you cannot specify `SecurityGroupId`, `SecurityGroupIds.N`, or `NetworkInterface.N.SecurityGroupIds.N`.
75151
+ * * If you set `NetworkInterface.N.InstanceType` to `Secondary` or leave NetworkInterface.N.InstanceType empty, you do not need to specify this parameter. The default value is the ID of the security group to which to assign the instance.
74523
75152
  *
74524
75153
  * @example
74525
75154
  * sg-bp67acfmxazb4p****
@@ -74527,15 +75156,15 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
74527
75156
  securityGroupId?: string;
74528
75157
  /**
74529
75158
  * @remarks
74530
- * The ID of security group N to which to assign ENI N.
75159
+ * The IDs of security groups to which to assign ENI N.
74531
75160
  *
74532
- * * Valid values of the first N: 1 and 2. If the value of N is 1, you can configure a primary or secondary ENI. If the value of N is 2, you must configure a primary ENI and a secondary ENI.
74533
- * * The second N indicates that one or more security group IDs can be specified. The valid values of N vary based on the maximum number of security groups to which an instance can belong. For more information, see the [Security group limits](~~25412#SecurityGroupQuota1~~) section of the "Limits" topic.
75161
+ * * The value of the first N cannot exceed the maximum number of ENIs per instance that the instance type supports. For the maximum number of ENIs per instance that an instance type supports, see [Overview of instance families](https://help.aliyun.com/document_detail/25378.html) or call the [DescribeInstanceTypes](https://help.aliyun.com/document_detail/2679699.html) operation.
75162
+ * * The second N indicates that one or more security group IDs can be specified. The valid values of the second N vary based on the maximum number of security groups to which an instance can belong. For more information, see the [Security group limits](~~25412#SecurityGroupQuota1~~) section of the "Limits" topic.
74534
75163
  *
74535
- * Take note of the following items:
75164
+ * When you specify this parameter, take note of the following items:
74536
75165
  *
74537
- * * If `NetworkInterface.N.InstanceType` is set to `Primary`, you must specify this parameter or `NetworkInterface.N.SecurityGroupId`. In this case, this parameter is equivalent to `SecurityGroupIds.N`. You cannot specify `SecurityGroupId`, `SecurityGroupIds.N`, or `NetworkInterface.N.SecurityGroupId`.
74538
- * * If `NetworkInterface.N.InstanceType` is set to `Secondary` or left empty, you do not need to specify this parameter. The default value is the ID of the security group to which to assign the instance.
75166
+ * * If you set `NetworkInterface.N.InstanceType` to `Primary`, you must specify this parameter or `NetworkInterface.N.SecurityGroupId`. In this case, this parameter is equivalent to `SecurityGroupIds.N`, and you cannot specify `SecurityGroupId`, `SecurityGroupIds.N`, or `NetworkInterface.N.SecurityGroupId`.
75167
+ * * If you set `NetworkInterface.N.InstanceType` to `Secondary` or leave NetworkInterface.N.InstanceType empty, you do not need to specify this parameter. The default value is the ID of the security group to which to assign the instance.
74539
75168
  *
74540
75169
  * @example
74541
75170
  * sg-bp15ed6xe1yxeycg7****
@@ -74545,7 +75174,7 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
74545
75174
  * @remarks
74546
75175
  * The Tx queue depth of ENI N.
74547
75176
  *
74548
- * Take note of the following items:
75177
+ * When you specify this parameter, take note of the following items:
74549
75178
  *
74550
75179
  * * The Tx queue depth of an ENI must be the same as the Rx queue depth of the ENI. Valid values: powers of 2 in the range of 8192 to 16384.
74551
75180
  * * A larger Tx queue depth yields higher outbound throughput but consumes more memory.
@@ -74558,11 +75187,11 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
74558
75187
  * @remarks
74559
75188
  * The ID of the vSwitch to which to connect ENI N.
74560
75189
  *
74561
- * Take note of the following items:
75190
+ * When you specify this parameter, take note of the following items:
74562
75191
  *
74563
- * * Valid values of N: 1 and 2. If the value of N is 1, you can configure a primary or secondary ENI. If the value of N is 2, you must configure a primary ENI and a secondary ENI.
74564
- * * If `NetworkInterface.N.InstanceType` is set to `Primary`, you must specify this parameter. In this case, this parameter is equivalent to `VSwitchId`. You cannot specify both NetworkInterface.N.VSwitchId and `VSwitchId` in the same request.
74565
- * * If `NetworkInterface.N.InstanceType` is set to `Secondary` or left empty, you do not need to specify this parameter. The default value is the VSwitchId value.
75192
+ * * The value of N cannot exceed the maximum number of ENIs per instance that the instance type supports. For the maximum number of ENIs per instance that an instance type supports, see [Overview of instance families](https://help.aliyun.com/document_detail/25378.html) or call the [DescribeInstanceTypes](https://help.aliyun.com/document_detail/2679699.html) operation.
75193
+ * * If you set `NetworkInterface.N.InstanceType` to `Primary`, you must specify this parameter. In this case, this parameter is equivalent to `VSwitchId`. You cannot specify both NetworkInterface.N.VSwitchId and `VSwitchId` in the same request.
75194
+ * * If you set `NetworkInterface.N.InstanceType` to `Secondary` or leave NetworkInterface.N.InstanceType empty, you do not need to specify this parameter. The default value is the VSwitchId value.
74566
75195
  *
74567
75196
  * @example
74568
75197
  * vsw-bp67acfmxazb4p****
@@ -76001,7 +76630,7 @@ export default class Client extends OpenApi {
76001
76630
  */
76002
76631
  createDemand(request: CreateDemandRequest): Promise<CreateDemandResponse>;
76003
76632
  /**
76004
- * The name of the deployment set. The name must be 2 to 128 characters in length, It must start with a letter and cannot start with \\`http://\\` or \\`https://\\`. It can contain letters, digits, colons (:), underscores (\\_), and hyphens (-).
76633
+ * Creates a deployment set in a region.
76005
76634
  *
76006
76635
  * @param request - CreateDeploymentSetRequest
76007
76636
  * @param runtime - runtime options for this request RuntimeOptions
@@ -76009,7 +76638,7 @@ export default class Client extends OpenApi {
76009
76638
  */
76010
76639
  createDeploymentSetWithOptions(request: CreateDeploymentSetRequest, runtime: $Util.RuntimeOptions): Promise<CreateDeploymentSetResponse>;
76011
76640
  /**
76012
- * The name of the deployment set. The name must be 2 to 128 characters in length, It must start with a letter and cannot start with \\`http://\\` or \\`https://\\`. It can contain letters, digits, colons (:), underscores (\\_), and hyphens (-).
76641
+ * Creates a deployment set in a region.
76013
76642
  *
76014
76643
  * @param request - CreateDeploymentSetRequest
76015
76644
  * @returns CreateDeploymentSetResponse
@@ -76046,7 +76675,7 @@ export default class Client extends OpenApi {
76046
76675
  */
76047
76676
  createDiagnosticReport(request: CreateDiagnosticReportRequest): Promise<CreateDiagnosticReportResponse>;
76048
76677
  /**
76049
- * Creates a pay-as-you-go or subscription data disk.
76678
+ * Creates a pay-as-you-go or subscription data disk. When you call this operation, you can specify parameters, such as ZoneId, SnapshotId, Size, and DiskCategory, in the request.
76050
76679
  *
76051
76680
  * @remarks
76052
76681
  * ## [](#)Usage notes
@@ -76064,7 +76693,7 @@ export default class Client extends OpenApi {
76064
76693
  */
76065
76694
  createDiskWithOptions(request: CreateDiskRequest, runtime: $Util.RuntimeOptions): Promise<CreateDiskResponse>;
76066
76695
  /**
76067
- * Creates a pay-as-you-go or subscription data disk.
76696
+ * Creates a pay-as-you-go or subscription data disk. When you call this operation, you can specify parameters, such as ZoneId, SnapshotId, Size, and DiskCategory, in the request.
76068
76697
  *
76069
76698
  * @remarks
76070
76699
  * ## [](#)Usage notes
@@ -76153,7 +76782,7 @@ export default class Client extends OpenApi {
76153
76782
  */
76154
76783
  createHpcCluster(request: CreateHpcClusterRequest): Promise<CreateHpcClusterResponse>;
76155
76784
  /**
76156
- * Creates a custom image. After you call this operation to create a custom image, you can call the RunInstances operation to create Elastic Compute Service (ECS) instances from the created custom image or call the ReplaceSystemDisk operation to replace system disks by using the custom image.
76785
+ * Creates a custom image. After you call this operation to create a custom image, you can call the RunInstances operation to create Elastic Compute Service (ECS) instances from the custom image or call the ReplaceSystemDisk operation to replace system disks by using the custom image.
76157
76786
  *
76158
76787
  * @remarks
76159
76788
  * ## [](#)Usage notes
@@ -76177,7 +76806,7 @@ export default class Client extends OpenApi {
76177
76806
  */
76178
76807
  createImageWithOptions(request: CreateImageRequest, runtime: $Util.RuntimeOptions): Promise<CreateImageResponse>;
76179
76808
  /**
76180
- * Creates a custom image. After you call this operation to create a custom image, you can call the RunInstances operation to create Elastic Compute Service (ECS) instances from the created custom image or call the ReplaceSystemDisk operation to replace system disks by using the custom image.
76809
+ * Creates a custom image. After you call this operation to create a custom image, you can call the RunInstances operation to create Elastic Compute Service (ECS) instances from the custom image or call the ReplaceSystemDisk operation to replace system disks by using the custom image.
76181
76810
  *
76182
76811
  * @remarks
76183
76812
  * ## [](#)Usage notes
@@ -76268,7 +76897,7 @@ export default class Client extends OpenApi {
76268
76897
  */
76269
76898
  createImagePipeline(request: CreateImagePipelineRequest): Promise<CreateImagePipelineResponse>;
76270
76899
  /**
76271
- * Creates a subscription or pay-as-you-go Elastic Compute Service (ECS) instance.
76900
+ * Creates a subscription or pay-as-you-go Elastic Compute Service (ECS) instance. When you call this operation, you can specify parameters, such as ImageId, InstanceType, SecurityGroupId, and InternetChargeType, in the request.
76272
76901
  *
76273
76902
  * @remarks
76274
76903
  * ## [](#)Usage notes
@@ -76316,7 +76945,7 @@ export default class Client extends OpenApi {
76316
76945
  */
76317
76946
  createInstanceWithOptions(request: CreateInstanceRequest, runtime: $Util.RuntimeOptions): Promise<CreateInstanceResponse>;
76318
76947
  /**
76319
- * Creates a subscription or pay-as-you-go Elastic Compute Service (ECS) instance.
76948
+ * Creates a subscription or pay-as-you-go Elastic Compute Service (ECS) instance. When you call this operation, you can specify parameters, such as ImageId, InstanceType, SecurityGroupId, and InternetChargeType, in the request.
76320
76949
  *
76321
76950
  * @remarks
76322
76951
  * ## [](#)Usage notes
@@ -76389,13 +77018,12 @@ export default class Client extends OpenApi {
76389
77018
  * Creates a launch template. When you call this operation, you can specify parameters, such as TemplateTag, LaunchTemplateName, and ImageId, in the request. A launch template eliminates the need to configure a large number of parameters every time you create an Elastic Compute Service (ECS) instance.
76390
77019
  *
76391
77020
  * @remarks
76392
- * ## Description
76393
- * Launch templates contain preset configurations used to create instances, such as the region, image ID, instance type, security group ID, and public bandwidth settings. If a specific parameter is not included in a launch template, you must manually specify the parameter when you use the launch template to create an instance.
76394
- * After you create a launch template (`CreateLaunchTemplate`), its version number is set to 1 by default. You can create multiple versions (`CreateLaunchTemplateVersion`) for the launch template. Version numbers start from 1 and increment by one. If you do not specify a template version number when you use a launch template to create instances ([RunInstances](https://help.aliyun.com/document_detail/63440.html)), the default version is used.
76395
- * When you call this operation, take note of the following items:
76396
- * * You can create up to 30 launch templates in each region. Each launch template can have up to 30 versions.
76397
- * * Most parameters in launch templates are optional. When you create a launch template, ECS does not verify the existence or validity of specified parameter values. The validity of the parameter values are verified only when you use the launch template to create instances.
76398
- * * If you set a specific parameter in a launch template, you cannot filter out this parameter when you use the launch template to create instances ([RunInstances](https://help.aliyun.com/document_detail/63440.html)). For example, if you set the `HostName` parameter to LocalHost in a launch template and do not set the `HostName` parameter when you call the `RunInstances` operation to create instances from the launch template, the created instance still has a hostname of `LocalHost`. If you want to overwrite the `LocalHost` value of HostName provided by the launch template, you can set `HostName` to MyHost or another value when you call the `RunInstances` operation.
77021
+ * After you create a launch template by calling the CreateLaunchTemplate operation, a default version that has a version number of 1 is automatically generated for the launch template. You can call the `CreateLaunchTemplateVersion` operation to create additional versions for the launch template. Version numbers start from 1 and increment by 1. If you specify a launch template but do not specify a launch template version number when you call the [RunInstances](https://help.aliyun.com/document_detail/63440.html) operation to create instances, the default version of the launch template is used.
77022
+ * Launch templates contain preset configurations that are used to create instances, such as the region ID, image ID, instance type, security group ID, and public bandwidth settings. If a specific parameter is not included in a launch template, you need to manually specify the parameter when you use the launch template to create instances.
77023
+ * Take note of the following items:
77024
+ * * You can retain up to 30 launch templates in each region in your Alibaba Cloud account. Each launch template can have up to 30 versions.
77025
+ * * Most parameters in launch templates are optional. When you create a launch template, ECS does not verify the existence or validity of specified parameter values. The parameter values are verified only when you use the launch template to create instances.
77026
+ * * If you configured a specific parameter in a launch template, you cannot filter out the parameter when you call the [RunInstances](https://help.aliyun.com/document_detail/63440.html) operation to create instances from the launch template. For example, if you set `HostName` to LocalHost in a launch template but do not specify `HostName` when you call the `RunInstances` operation to create instances from the launch template, the hostname of the created instances is `LocalHost`. If you want to overwrite `LocalHost`, which is the value of HostName in the launch template, you can set `HostName` to MyHost or a different value when you call the `RunInstances` operation.
76399
77027
  *
76400
77028
  * @param request - CreateLaunchTemplateRequest
76401
77029
  * @param runtime - runtime options for this request RuntimeOptions
@@ -76406,20 +77034,19 @@ export default class Client extends OpenApi {
76406
77034
  * Creates a launch template. When you call this operation, you can specify parameters, such as TemplateTag, LaunchTemplateName, and ImageId, in the request. A launch template eliminates the need to configure a large number of parameters every time you create an Elastic Compute Service (ECS) instance.
76407
77035
  *
76408
77036
  * @remarks
76409
- * ## Description
76410
- * Launch templates contain preset configurations used to create instances, such as the region, image ID, instance type, security group ID, and public bandwidth settings. If a specific parameter is not included in a launch template, you must manually specify the parameter when you use the launch template to create an instance.
76411
- * After you create a launch template (`CreateLaunchTemplate`), its version number is set to 1 by default. You can create multiple versions (`CreateLaunchTemplateVersion`) for the launch template. Version numbers start from 1 and increment by one. If you do not specify a template version number when you use a launch template to create instances ([RunInstances](https://help.aliyun.com/document_detail/63440.html)), the default version is used.
76412
- * When you call this operation, take note of the following items:
76413
- * * You can create up to 30 launch templates in each region. Each launch template can have up to 30 versions.
76414
- * * Most parameters in launch templates are optional. When you create a launch template, ECS does not verify the existence or validity of specified parameter values. The validity of the parameter values are verified only when you use the launch template to create instances.
76415
- * * If you set a specific parameter in a launch template, you cannot filter out this parameter when you use the launch template to create instances ([RunInstances](https://help.aliyun.com/document_detail/63440.html)). For example, if you set the `HostName` parameter to LocalHost in a launch template and do not set the `HostName` parameter when you call the `RunInstances` operation to create instances from the launch template, the created instance still has a hostname of `LocalHost`. If you want to overwrite the `LocalHost` value of HostName provided by the launch template, you can set `HostName` to MyHost or another value when you call the `RunInstances` operation.
77037
+ * After you create a launch template by calling the CreateLaunchTemplate operation, a default version that has a version number of 1 is automatically generated for the launch template. You can call the `CreateLaunchTemplateVersion` operation to create additional versions for the launch template. Version numbers start from 1 and increment by 1. If you specify a launch template but do not specify a launch template version number when you call the [RunInstances](https://help.aliyun.com/document_detail/63440.html) operation to create instances, the default version of the launch template is used.
77038
+ * Launch templates contain preset configurations that are used to create instances, such as the region ID, image ID, instance type, security group ID, and public bandwidth settings. If a specific parameter is not included in a launch template, you need to manually specify the parameter when you use the launch template to create instances.
77039
+ * Take note of the following items:
77040
+ * * You can retain up to 30 launch templates in each region in your Alibaba Cloud account. Each launch template can have up to 30 versions.
77041
+ * * Most parameters in launch templates are optional. When you create a launch template, ECS does not verify the existence or validity of specified parameter values. The parameter values are verified only when you use the launch template to create instances.
77042
+ * * If you configured a specific parameter in a launch template, you cannot filter out the parameter when you call the [RunInstances](https://help.aliyun.com/document_detail/63440.html) operation to create instances from the launch template. For example, if you set `HostName` to LocalHost in a launch template but do not specify `HostName` when you call the `RunInstances` operation to create instances from the launch template, the hostname of the created instances is `LocalHost`. If you want to overwrite `LocalHost`, which is the value of HostName in the launch template, you can set `HostName` to MyHost or a different value when you call the `RunInstances` operation.
76416
77043
  *
76417
77044
  * @param request - CreateLaunchTemplateRequest
76418
77045
  * @returns CreateLaunchTemplateResponse
76419
77046
  */
76420
77047
  createLaunchTemplate(request: CreateLaunchTemplateRequest): Promise<CreateLaunchTemplateResponse>;
76421
77048
  /**
76422
- * Creates a version for a launch template. When you call this operation, you can specify parameters, such as LaunchTemplateId, VersionDescription, and Tag, in the request.
77049
+ * Creates a version for a launch template. You can use the created version to create Elastic Compute Service (ECS) instances, scaling groups, or auto provisioning groups. When you call this operation, you can specify parameters, such as LaunchTemplateId, VersionDescription, and Tag, in the request.
76423
77050
  *
76424
77051
  * @remarks
76425
77052
  * ## [](#)Usage notes
@@ -76431,7 +77058,7 @@ export default class Client extends OpenApi {
76431
77058
  */
76432
77059
  createLaunchTemplateVersionWithOptions(request: CreateLaunchTemplateVersionRequest, runtime: $Util.RuntimeOptions): Promise<CreateLaunchTemplateVersionResponse>;
76433
77060
  /**
76434
- * Creates a version for a launch template. When you call this operation, you can specify parameters, such as LaunchTemplateId, VersionDescription, and Tag, in the request.
77061
+ * Creates a version for a launch template. You can use the created version to create Elastic Compute Service (ECS) instances, scaling groups, or auto provisioning groups. When you call this operation, you can specify parameters, such as LaunchTemplateId, VersionDescription, and Tag, in the request.
76435
77062
  *
76436
77063
  * @remarks
76437
77064
  * ## [](#)Usage notes
@@ -76974,7 +77601,10 @@ export default class Client extends OpenApi {
76974
77601
  */
76975
77602
  deleteDemand(request: DeleteDemandRequest): Promise<DeleteDemandResponse>;
76976
77603
  /**
76977
- * Deletes a deployment set in a region. Make sure that no instances exist in the deployment set that you want to delete. If instances exist in the deployment set, move the instances to a different deployment set or release the instances before you delete the deployment set.
77604
+ * Deletes a deployment set in a region. When you call this operation, specify parameters such as RegionId and DeploymentSetId in the request.
77605
+ *
77606
+ * @remarks
77607
+ * Before you delete a deployment set, make sure that no instances exist in the deployment set. If instances exist in the deployment set, move the instances to a different deployment set or release the instances before you delete the deployment set. For more information, see [Change the deployment set of an instance](https://help.aliyun.com/document_detail/108407.html) and [Release an ECS instance](https://help.aliyun.com/document_detail/25442.html).
76978
77608
  *
76979
77609
  * @param request - DeleteDeploymentSetRequest
76980
77610
  * @param runtime - runtime options for this request RuntimeOptions
@@ -76982,7 +77612,10 @@ export default class Client extends OpenApi {
76982
77612
  */
76983
77613
  deleteDeploymentSetWithOptions(request: DeleteDeploymentSetRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDeploymentSetResponse>;
76984
77614
  /**
76985
- * Deletes a deployment set in a region. Make sure that no instances exist in the deployment set that you want to delete. If instances exist in the deployment set, move the instances to a different deployment set or release the instances before you delete the deployment set.
77615
+ * Deletes a deployment set in a region. When you call this operation, specify parameters such as RegionId and DeploymentSetId in the request.
77616
+ *
77617
+ * @remarks
77618
+ * Before you delete a deployment set, make sure that no instances exist in the deployment set. If instances exist in the deployment set, move the instances to a different deployment set or release the instances before you delete the deployment set. For more information, see [Change the deployment set of an instance](https://help.aliyun.com/document_detail/108407.html) and [Release an ECS instance](https://help.aliyun.com/document_detail/25442.html).
76986
77619
  *
76987
77620
  * @param request - DeleteDeploymentSetRequest
76988
77621
  * @returns DeleteDeploymentSetResponse
@@ -77195,7 +77828,7 @@ export default class Client extends OpenApi {
77195
77828
  */
77196
77829
  deleteInstance(request: DeleteInstanceRequest): Promise<DeleteInstanceResponse>;
77197
77830
  /**
77198
- * Releases pay-as-you-go instances or expired subscription instances.
77831
+ * Releases one or more pay-as-you-go Elastic Compute Service (ECS) instances or expired subscription ECS instances.
77199
77832
  *
77200
77833
  * @remarks
77201
77834
  * ## [](#)Usage notes
@@ -77214,7 +77847,7 @@ export default class Client extends OpenApi {
77214
77847
  */
77215
77848
  deleteInstancesWithOptions(request: DeleteInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteInstancesResponse>;
77216
77849
  /**
77217
- * Releases pay-as-you-go instances or expired subscription instances.
77850
+ * Releases one or more pay-as-you-go Elastic Compute Service (ECS) instances or expired subscription ECS instances.
77218
77851
  *
77219
77852
  * @remarks
77220
77853
  * ## [](#)Usage notes
@@ -77259,6 +77892,11 @@ export default class Client extends OpenApi {
77259
77892
  /**
77260
77893
  * Deletes a launch template. You can use the LaunchTemplateId or LaunchTemplateName parameter to specify the launch template that you want to delete from the specified region.
77261
77894
  *
77895
+ * @remarks
77896
+ * Take note of the following items:
77897
+ * * After you delete a launch template, Elastic Compute Service (ECS) instances created based on the launch template are not affected.
77898
+ * * After you delete a launch template, all versions of the launch template are deleted and cannot be restored. If you want to delete only a specific version of the launch template, call the [DeleteLaunchTemplateVersion](https://help.aliyun.com/document_detail/2679735.html) operation.
77899
+ *
77262
77900
  * @param request - DeleteLaunchTemplateRequest
77263
77901
  * @param runtime - runtime options for this request RuntimeOptions
77264
77902
  * @returns DeleteLaunchTemplateResponse
@@ -77267,12 +77905,23 @@ export default class Client extends OpenApi {
77267
77905
  /**
77268
77906
  * Deletes a launch template. You can use the LaunchTemplateId or LaunchTemplateName parameter to specify the launch template that you want to delete from the specified region.
77269
77907
  *
77908
+ * @remarks
77909
+ * Take note of the following items:
77910
+ * * After you delete a launch template, Elastic Compute Service (ECS) instances created based on the launch template are not affected.
77911
+ * * After you delete a launch template, all versions of the launch template are deleted and cannot be restored. If you want to delete only a specific version of the launch template, call the [DeleteLaunchTemplateVersion](https://help.aliyun.com/document_detail/2679735.html) operation.
77912
+ *
77270
77913
  * @param request - DeleteLaunchTemplateRequest
77271
77914
  * @returns DeleteLaunchTemplateResponse
77272
77915
  */
77273
77916
  deleteLaunchTemplate(request: DeleteLaunchTemplateRequest): Promise<DeleteLaunchTemplateResponse>;
77274
77917
  /**
77275
- * Deletes the versions of a launch template. You cannot call this operation to delete the default version of a launch template. To delete the default version, you must call the DeleteLaunchTemplate operation to delete the launch template and all versions of the launch template.
77918
+ * Deletes versions of a launch template. When you call this operation, you can specify parameters, such as LaunchTemplateId and DeleteVersion, in the request.
77919
+ *
77920
+ * @remarks
77921
+ * Take note of the following items:
77922
+ * * You cannot delete the default version of a launch template by calling this operation. To delete the default version of a launch template, you must delete the launch template.
77923
+ * * If the version of a launch template that you want to delete is the default version, call the [ModifyLaunchTemplateDefaultVersion](https://help.aliyun.com/document_detail/2679734.html) operation or go to the **Launch Templates** page in the Elastic Compute Service (ECS) console to change the default version to a different version, and then delete the original default version.
77924
+ * * After you delete a version of a launch template, the ECS instances that were created based on the version are not affected.
77276
77925
  *
77277
77926
  * @param request - DeleteLaunchTemplateVersionRequest
77278
77927
  * @param runtime - runtime options for this request RuntimeOptions
@@ -77280,7 +77929,13 @@ export default class Client extends OpenApi {
77280
77929
  */
77281
77930
  deleteLaunchTemplateVersionWithOptions(request: DeleteLaunchTemplateVersionRequest, runtime: $Util.RuntimeOptions): Promise<DeleteLaunchTemplateVersionResponse>;
77282
77931
  /**
77283
- * Deletes the versions of a launch template. You cannot call this operation to delete the default version of a launch template. To delete the default version, you must call the DeleteLaunchTemplate operation to delete the launch template and all versions of the launch template.
77932
+ * Deletes versions of a launch template. When you call this operation, you can specify parameters, such as LaunchTemplateId and DeleteVersion, in the request.
77933
+ *
77934
+ * @remarks
77935
+ * Take note of the following items:
77936
+ * * You cannot delete the default version of a launch template by calling this operation. To delete the default version of a launch template, you must delete the launch template.
77937
+ * * If the version of a launch template that you want to delete is the default version, call the [ModifyLaunchTemplateDefaultVersion](https://help.aliyun.com/document_detail/2679734.html) operation or go to the **Launch Templates** page in the Elastic Compute Service (ECS) console to change the default version to a different version, and then delete the original default version.
77938
+ * * After you delete a version of a launch template, the ECS instances that were created based on the version are not affected.
77284
77939
  *
77285
77940
  * @param request - DeleteLaunchTemplateVersionRequest
77286
77941
  * @returns DeleteLaunchTemplateVersionResponse
@@ -78028,7 +78683,7 @@ export default class Client extends OpenApi {
78028
78683
  */
78029
78684
  describeDemands(request: DescribeDemandsRequest): Promise<DescribeDemandsResponse>;
78030
78685
  /**
78031
- * Queries the instance families that support deployment sets.
78686
+ * Queries the instance families that support different deployment strategies. When you call this operation, specify parameters, such as RegionId and Strategy, in the request.
78032
78687
  *
78033
78688
  * @remarks
78034
78689
  * ## [](#)Usage notes
@@ -78040,7 +78695,7 @@ export default class Client extends OpenApi {
78040
78695
  */
78041
78696
  describeDeploymentSetSupportedInstanceTypeFamilyWithOptions(request: DescribeDeploymentSetSupportedInstanceTypeFamilyRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDeploymentSetSupportedInstanceTypeFamilyResponse>;
78042
78697
  /**
78043
- * Queries the instance families that support deployment sets.
78698
+ * Queries the instance families that support different deployment strategies. When you call this operation, specify parameters, such as RegionId and Strategy, in the request.
78044
78699
  *
78045
78700
  * @remarks
78046
78701
  * ## [](#)Usage notes
@@ -78051,7 +78706,7 @@ export default class Client extends OpenApi {
78051
78706
  */
78052
78707
  describeDeploymentSetSupportedInstanceTypeFamily(request: DescribeDeploymentSetSupportedInstanceTypeFamilyRequest): Promise<DescribeDeploymentSetSupportedInstanceTypeFamilyResponse>;
78053
78708
  /**
78054
- * Queries the attributes of one or more deployment sets.
78709
+ * Queries the details of one or more deployment sets. When you call this operation, you can specify parameters, such as DeploymentSetIds, Strategy, and DeploymentSetName, in the request.
78055
78710
  *
78056
78711
  * @param request - DescribeDeploymentSetsRequest
78057
78712
  * @param runtime - runtime options for this request RuntimeOptions
@@ -78059,7 +78714,7 @@ export default class Client extends OpenApi {
78059
78714
  */
78060
78715
  describeDeploymentSetsWithOptions(request: DescribeDeploymentSetsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDeploymentSetsResponse>;
78061
78716
  /**
78062
- * Queries the attributes of one or more deployment sets.
78717
+ * Queries the details of one or more deployment sets. When you call this operation, you can specify parameters, such as DeploymentSetIds, Strategy, and DeploymentSetName, in the request.
78063
78718
  *
78064
78719
  * @param request - DescribeDeploymentSetsRequest
78065
78720
  * @returns DescribeDeploymentSetsResponse
@@ -78126,15 +78781,45 @@ export default class Client extends OpenApi {
78126
78781
  */
78127
78782
  describeDiagnosticReports(request: DescribeDiagnosticReportsRequest): Promise<DescribeDiagnosticReportsResponse>;
78128
78783
  /**
78129
- * Queries the monitoring data of a disk in a specific period of time.
78784
+ * Queries the Key Management Service (KMS) key used for account-level default encryption of Elastic Block Storage (EBS) resources in a region.
78785
+ *
78786
+ * @param request - DescribeDiskDefaultKMSKeyIdRequest
78787
+ * @param runtime - runtime options for this request RuntimeOptions
78788
+ * @returns DescribeDiskDefaultKMSKeyIdResponse
78789
+ */
78790
+ describeDiskDefaultKMSKeyIdWithOptions(request: DescribeDiskDefaultKMSKeyIdRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiskDefaultKMSKeyIdResponse>;
78791
+ /**
78792
+ * Queries the Key Management Service (KMS) key used for account-level default encryption of Elastic Block Storage (EBS) resources in a region.
78793
+ *
78794
+ * @param request - DescribeDiskDefaultKMSKeyIdRequest
78795
+ * @returns DescribeDiskDefaultKMSKeyIdResponse
78796
+ */
78797
+ describeDiskDefaultKMSKeyId(request: DescribeDiskDefaultKMSKeyIdRequest): Promise<DescribeDiskDefaultKMSKeyIdResponse>;
78798
+ /**
78799
+ * Queries whether account-level default encryption of Elastic Block Storage (EBS) resources is enabled in a region.
78800
+ *
78801
+ * @param request - DescribeDiskEncryptionByDefaultStatusRequest
78802
+ * @param runtime - runtime options for this request RuntimeOptions
78803
+ * @returns DescribeDiskEncryptionByDefaultStatusResponse
78804
+ */
78805
+ describeDiskEncryptionByDefaultStatusWithOptions(request: DescribeDiskEncryptionByDefaultStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiskEncryptionByDefaultStatusResponse>;
78806
+ /**
78807
+ * Queries whether account-level default encryption of Elastic Block Storage (EBS) resources is enabled in a region.
78808
+ *
78809
+ * @param request - DescribeDiskEncryptionByDefaultStatusRequest
78810
+ * @returns DescribeDiskEncryptionByDefaultStatusResponse
78811
+ */
78812
+ describeDiskEncryptionByDefaultStatus(request: DescribeDiskEncryptionByDefaultStatusRequest): Promise<DescribeDiskEncryptionByDefaultStatusResponse>;
78813
+ /**
78814
+ * Queries the monitoring data of a disk in a specific period of time. When you call this operation, you can specify parameters, such as DiskId, StartTime, and EndTime, in the request.
78130
78815
  *
78131
78816
  * @remarks
78132
78817
  * ## [](#)Usage notes
78133
78818
  * You can query the following monitoring data of a disk: the read IOPS, write IOPS, read bandwidth (byte/s), write bandwidth (byte/s), read latency (microseconds), and write latency (microseconds).
78134
78819
  * Take note of the following items:
78135
- * * You can query the monitoring data only of the disks that are in the In Use (`In_use`) state. For more information, see [Disk states](https://help.aliyun.com/document_detail/25689.html).
78820
+ * * Monitoring data of only disks that are in the In Use (`In_use`) state can be queried. For more information, see [Disk states](https://help.aliyun.com/document_detail/25689.html).
78136
78821
  * **
78137
- * **Note** Some information may be missing from the monitoring data of a disk because the disk is not in the In Use (`In_use`) state and the system cannot obtain the relevant information.
78822
+ * **Note** Some information may be missing from the monitoring data of a disk because the disk is not in the In Use `(In_use)` state and the system cannot obtain the relevant information.
78138
78823
  * * Up to 400 monitoring data entries can be returned at a time. Make sure that the `TotalCount` value does not exceed 400. The value is calculated by using the following formula: `TotalCount = (EndTime - StartTime)/Period`. If the TotalCount value is greater than 400, the `InvalidParameter.TooManyDataQueried` error is returned.
78139
78824
  * * You can query the monitoring data in the last 30 days. If the value of `StartTime` is more than 30 days earlier than the current time, an error is returned.
78140
78825
  *
@@ -78144,15 +78829,15 @@ export default class Client extends OpenApi {
78144
78829
  */
78145
78830
  describeDiskMonitorDataWithOptions(request: DescribeDiskMonitorDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiskMonitorDataResponse>;
78146
78831
  /**
78147
- * Queries the monitoring data of a disk in a specific period of time.
78832
+ * Queries the monitoring data of a disk in a specific period of time. When you call this operation, you can specify parameters, such as DiskId, StartTime, and EndTime, in the request.
78148
78833
  *
78149
78834
  * @remarks
78150
78835
  * ## [](#)Usage notes
78151
78836
  * You can query the following monitoring data of a disk: the read IOPS, write IOPS, read bandwidth (byte/s), write bandwidth (byte/s), read latency (microseconds), and write latency (microseconds).
78152
78837
  * Take note of the following items:
78153
- * * You can query the monitoring data only of the disks that are in the In Use (`In_use`) state. For more information, see [Disk states](https://help.aliyun.com/document_detail/25689.html).
78838
+ * * Monitoring data of only disks that are in the In Use (`In_use`) state can be queried. For more information, see [Disk states](https://help.aliyun.com/document_detail/25689.html).
78154
78839
  * **
78155
- * **Note** Some information may be missing from the monitoring data of a disk because the disk is not in the In Use (`In_use`) state and the system cannot obtain the relevant information.
78840
+ * **Note** Some information may be missing from the monitoring data of a disk because the disk is not in the In Use `(In_use)` state and the system cannot obtain the relevant information.
78156
78841
  * * Up to 400 monitoring data entries can be returned at a time. Make sure that the `TotalCount` value does not exceed 400. The value is calculated by using the following formula: `TotalCount = (EndTime - StartTime)/Period`. If the TotalCount value is greater than 400, the `InvalidParameter.TooManyDataQueried` error is returned.
78157
78842
  * * You can query the monitoring data in the last 30 days. If the value of `StartTime` is more than 30 days earlier than the current time, an error is returned.
78158
78843
  *
@@ -78477,7 +79162,7 @@ export default class Client extends OpenApi {
78477
79162
  */
78478
79163
  describeImageSupportInstanceTypes(request: DescribeImageSupportInstanceTypesRequest): Promise<DescribeImageSupportInstanceTypesResponse>;
78479
79164
  /**
78480
- * Queries available images.
79165
+ * Queries available images. When you call this operation, you can specify parameters, such as ImageId, ImageFamily, and InstanceType, in the request.
78481
79166
  *
78482
79167
  * @remarks
78483
79168
  * ## [](#)Usage notes
@@ -78492,7 +79177,7 @@ export default class Client extends OpenApi {
78492
79177
  */
78493
79178
  describeImagesWithOptions(request: DescribeImagesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeImagesResponse>;
78494
79179
  /**
78495
- * Queries available images.
79180
+ * Queries available images. When you call this operation, you can specify parameters, such as ImageId, ImageFamily, and InstanceType, in the request.
78496
79181
  *
78497
79182
  * @remarks
78498
79183
  * ## [](#)Usage notes
@@ -78567,7 +79252,7 @@ export default class Client extends OpenApi {
78567
79252
  */
78568
79253
  describeInstanceAutoRenewAttribute(request: DescribeInstanceAutoRenewAttributeRequest): Promise<DescribeInstanceAutoRenewAttributeResponse>;
78569
79254
  /**
78570
- * Queries the system events of Elastic Compute Service (ECS) instances. By default, non-active system events are queried.
79255
+ * Queries the system events of Elastic Compute Service (ECS) instances. When you call this operation, you can specify parameters, such as InstanceId and EventType, in the request. By default, non-active system events are queried.
78571
79256
  *
78572
79257
  * @remarks
78573
79258
  * You can query system events that were completed within the last 30 days. No limits apply to the time range for querying uncompleted system events.
@@ -78579,7 +79264,7 @@ export default class Client extends OpenApi {
78579
79264
  */
78580
79265
  describeInstanceHistoryEventsWithOptions(request: DescribeInstanceHistoryEventsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceHistoryEventsResponse>;
78581
79266
  /**
78582
- * Queries the system events of Elastic Compute Service (ECS) instances. By default, non-active system events are queried.
79267
+ * Queries the system events of Elastic Compute Service (ECS) instances. When you call this operation, you can specify parameters, such as InstanceId and EventType, in the request. By default, non-active system events are queried.
78583
79268
  *
78584
79269
  * @remarks
78585
79270
  * You can query system events that were completed within the last 30 days. No limits apply to the time range for querying uncompleted system events.
@@ -78694,7 +79379,7 @@ export default class Client extends OpenApi {
78694
79379
  */
78695
79380
  describeInstanceRamRole(request: DescribeInstanceRamRoleRequest): Promise<DescribeInstanceRamRoleResponse>;
78696
79381
  /**
78697
- * Queries the status information of multiple Elastic Compute Service (ECS) instances.
79382
+ * Queries the status of one or more Elastic Compute Service (ECS) instances.
78698
79383
  *
78699
79384
  * @remarks
78700
79385
  * For information about the lifecycle states of an ECS instance, see [Instance states](https://help.aliyun.com/document_detail/25687.html).
@@ -78706,7 +79391,7 @@ export default class Client extends OpenApi {
78706
79391
  */
78707
79392
  describeInstanceStatusWithOptions(request: DescribeInstanceStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceStatusResponse>;
78708
79393
  /**
78709
- * Queries the status information of multiple Elastic Compute Service (ECS) instances.
79394
+ * Queries the status of one or more Elastic Compute Service (ECS) instances.
78710
79395
  *
78711
79396
  * @remarks
78712
79397
  * For information about the lifecycle states of an ECS instance, see [Instance states](https://help.aliyun.com/document_detail/25687.html).
@@ -79015,7 +79700,7 @@ export default class Client extends OpenApi {
79015
79700
  */
79016
79701
  describeLaunchTemplateVersions(request: DescribeLaunchTemplateVersionsRequest): Promise<DescribeLaunchTemplateVersionsResponse>;
79017
79702
  /**
79018
- * Queries the information of one or more available launch templates, such as the total number of launch templates, launch template names, and launch template IDs. When you call this operation, you can specify parameters, such as TemplateTag, TemplateResourceGroupId, and LaunchTemplateId, in the request.
79703
+ * Queries the information of one or more launch templates, such as the total number of launch templates, the creation time of each launch template, and the latest version number of each launch template. When you can this operation, you can specify parameters, such as TemplateTag, TemplateResourceGroupId, and LaunchTemplateId, in the request.
79019
79704
  *
79020
79705
  * @param request - DescribeLaunchTemplatesRequest
79021
79706
  * @param runtime - runtime options for this request RuntimeOptions
@@ -79023,7 +79708,7 @@ export default class Client extends OpenApi {
79023
79708
  */
79024
79709
  describeLaunchTemplatesWithOptions(request: DescribeLaunchTemplatesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLaunchTemplatesResponse>;
79025
79710
  /**
79026
- * Queries the information of one or more available launch templates, such as the total number of launch templates, launch template names, and launch template IDs. When you call this operation, you can specify parameters, such as TemplateTag, TemplateResourceGroupId, and LaunchTemplateId, in the request.
79711
+ * Queries the information of one or more launch templates, such as the total number of launch templates, the creation time of each launch template, and the latest version number of each launch template. When you can this operation, you can specify parameters, such as TemplateTag, TemplateResourceGroupId, and LaunchTemplateId, in the request.
79027
79712
  *
79028
79713
  * @param request - DescribeLaunchTemplatesRequest
79029
79714
  * @returns DescribeLaunchTemplatesResponse
@@ -79382,7 +80067,7 @@ export default class Client extends OpenApi {
79382
80067
  */
79383
80068
  describeResourceByTags(request: DescribeResourceByTagsRequest): Promise<DescribeResourceByTagsResponse>;
79384
80069
  /**
79385
- * Queries available resources in a specific zone when you upgrade or downgrade Elastic Compute Service (ECS) instance types or replace system disks.
80070
+ * Queries available instance types or system disk categories in a specific zone before you change the instance type or system disk category of an Elastic Compute Service (ECS) instance.
79386
80071
  *
79387
80072
  * @remarks
79388
80073
  * ## Debugging
@@ -79394,7 +80079,7 @@ export default class Client extends OpenApi {
79394
80079
  */
79395
80080
  describeResourcesModificationWithOptions(request: DescribeResourcesModificationRequest, runtime: $Util.RuntimeOptions): Promise<DescribeResourcesModificationResponse>;
79396
80081
  /**
79397
- * Queries available resources in a specific zone when you upgrade or downgrade Elastic Compute Service (ECS) instance types or replace system disks.
80082
+ * Queries available instance types or system disk categories in a specific zone before you change the instance type or system disk category of an Elastic Compute Service (ECS) instance.
79398
80083
  *
79399
80084
  * @remarks
79400
80085
  * ## Debugging
@@ -80171,6 +80856,27 @@ export default class Client extends OpenApi {
80171
80856
  * @returns DisableActivationResponse
80172
80857
  */
80173
80858
  disableActivation(request: DisableActivationRequest): Promise<DisableActivationResponse>;
80859
+ /**
80860
+ * Disables account-level default encryption of Elastic Block Storage (EBS) resources in a region. After you disable account-level default encryption of EBS resources in a region, the encryption status of existing disks in the region does not change. When you create a disk, you can still choose to encrypt the disk.
80861
+ *
80862
+ * @remarks
80863
+ * You can use only an Alibaba Cloud account to call this operation.
80864
+ *
80865
+ * @param request - DisableDiskEncryptionByDefaultRequest
80866
+ * @param runtime - runtime options for this request RuntimeOptions
80867
+ * @returns DisableDiskEncryptionByDefaultResponse
80868
+ */
80869
+ disableDiskEncryptionByDefaultWithOptions(request: DisableDiskEncryptionByDefaultRequest, runtime: $Util.RuntimeOptions): Promise<DisableDiskEncryptionByDefaultResponse>;
80870
+ /**
80871
+ * Disables account-level default encryption of Elastic Block Storage (EBS) resources in a region. After you disable account-level default encryption of EBS resources in a region, the encryption status of existing disks in the region does not change. When you create a disk, you can still choose to encrypt the disk.
80872
+ *
80873
+ * @remarks
80874
+ * You can use only an Alibaba Cloud account to call this operation.
80875
+ *
80876
+ * @param request - DisableDiskEncryptionByDefaultRequest
80877
+ * @returns DisableDiskEncryptionByDefaultResponse
80878
+ */
80879
+ disableDiskEncryptionByDefault(request: DisableDiskEncryptionByDefaultRequest): Promise<DisableDiskEncryptionByDefaultResponse>;
80174
80880
  /**
80175
80881
  * @deprecated OpenAPI EipFillParams is deprecated
80176
80882
  *
@@ -80216,6 +80922,31 @@ export default class Client extends OpenApi {
80216
80922
  * @returns EipNotifyPaidResponse
80217
80923
  */
80218
80924
  eipNotifyPaid(request: EipNotifyPaidRequest): Promise<EipNotifyPaidResponse>;
80925
+ /**
80926
+ * Enables account-level default encryption of Elastic Block Storage (EBS) resources in a region. After you enable account-level default encryption of EBS resources in a region, new pay-as-you-go and subscription cloud disks in the region must be encrypted. You can use the default Key Management Service (KMS) key ID for account-level default encryption of EBS resources or specify other KMS key IDs to encrypt the cloud disks. The first time you enable account-level default encryption of EBS resources in a region, the service key in the region is automatically used to encrypt EBS resources. You can call the ModifyDiskDefaultKMSKeyId or ResetDiskDefaultKMSKeyId operation to change the KMS key ID used for account-level default encryption of EBS resources.
80927
+ *
80928
+ * @remarks
80929
+ * You can use only an Alibaba Cloud account to call the EnableDiskEncryptionByDefault operation.
80930
+ * * Before you call the EnableDiskEncryptionByDefault operation, you must activate KMS.
80931
+ * * After you enable the account-level default encryption feature of EBS resources, you can purchase only encrypted cloud disks. For more information, see the [Limits](https://help.aliyun.com/zh/ecs/user-guide/encryption-overview?#59e20ff07fko1) section of the "Encrypt cloud disks" topic.
80932
+ *
80933
+ * @param request - EnableDiskEncryptionByDefaultRequest
80934
+ * @param runtime - runtime options for this request RuntimeOptions
80935
+ * @returns EnableDiskEncryptionByDefaultResponse
80936
+ */
80937
+ enableDiskEncryptionByDefaultWithOptions(request: EnableDiskEncryptionByDefaultRequest, runtime: $Util.RuntimeOptions): Promise<EnableDiskEncryptionByDefaultResponse>;
80938
+ /**
80939
+ * Enables account-level default encryption of Elastic Block Storage (EBS) resources in a region. After you enable account-level default encryption of EBS resources in a region, new pay-as-you-go and subscription cloud disks in the region must be encrypted. You can use the default Key Management Service (KMS) key ID for account-level default encryption of EBS resources or specify other KMS key IDs to encrypt the cloud disks. The first time you enable account-level default encryption of EBS resources in a region, the service key in the region is automatically used to encrypt EBS resources. You can call the ModifyDiskDefaultKMSKeyId or ResetDiskDefaultKMSKeyId operation to change the KMS key ID used for account-level default encryption of EBS resources.
80940
+ *
80941
+ * @remarks
80942
+ * You can use only an Alibaba Cloud account to call the EnableDiskEncryptionByDefault operation.
80943
+ * * Before you call the EnableDiskEncryptionByDefault operation, you must activate KMS.
80944
+ * * After you enable the account-level default encryption feature of EBS resources, you can purchase only encrypted cloud disks. For more information, see the [Limits](https://help.aliyun.com/zh/ecs/user-guide/encryption-overview?#59e20ff07fko1) section of the "Encrypt cloud disks" topic.
80945
+ *
80946
+ * @param request - EnableDiskEncryptionByDefaultRequest
80947
+ * @returns EnableDiskEncryptionByDefaultResponse
80948
+ */
80949
+ enableDiskEncryptionByDefault(request: EnableDiskEncryptionByDefaultRequest): Promise<EnableDiskEncryptionByDefaultResponse>;
80219
80950
  /**
80220
80951
  * @deprecated OpenAPI EnablePhysicalConnection is deprecated
80221
80952
  *
@@ -80238,7 +80969,7 @@ export default class Client extends OpenApi {
80238
80969
  * ## [](#)Usage notes
80239
80970
  * Before you export images, take note of the following items:
80240
80971
  * * Make sure that you are familiar with the prerequisites and considerations. For more information, see [Export a custom image](https://help.aliyun.com/document_detail/58181.html).
80241
- * * The `ImageFormat` parameter is available only for the following regions: India (Mumbai) Closing Down, Japan (Tokyo), Australia (Sydney), Indonesia (Jakarta), Germany (Frankfurt), UAE (Dubai), US (Virginia), UK (London), Singapore, Malaysia (Kuala Lumpur), and US (Silicon Valley). Alibaba Cloud services will be discontinued in the India (Mumbai) region. By default, custom images are exported in the RAW format in regions where the ImageFormat parameter is unsupported.
80972
+ * * The `ImageFormat` parameter is available only for the following regions: Japan (Tokyo), Australia (Sydney), Indonesia (Jakarta), Germany (Frankfurt), UAE (Dubai), US (Virginia), UK (London), Singapore, Malaysia (Kuala Lumpur), and US (Silicon Valley). Alibaba Cloud services will be discontinued in the India (Mumbai) region. By default, custom images are exported in the RAW format in regions where the ImageFormat parameter is unsupported.
80242
80973
  * * Use Resource Access Management (RAM) to authorize Elastic Compute Service (ECS) to write data to OSS. To complete the authorization, perform the following operations:
80243
80974
  * * Create a role named `AliyunECSImageExportDefaultRole` and attach the following policy to the role:
80244
80975
  * {
@@ -80290,7 +81021,7 @@ export default class Client extends OpenApi {
80290
81021
  * ## [](#)Usage notes
80291
81022
  * Before you export images, take note of the following items:
80292
81023
  * * Make sure that you are familiar with the prerequisites and considerations. For more information, see [Export a custom image](https://help.aliyun.com/document_detail/58181.html).
80293
- * * The `ImageFormat` parameter is available only for the following regions: India (Mumbai) Closing Down, Japan (Tokyo), Australia (Sydney), Indonesia (Jakarta), Germany (Frankfurt), UAE (Dubai), US (Virginia), UK (London), Singapore, Malaysia (Kuala Lumpur), and US (Silicon Valley). Alibaba Cloud services will be discontinued in the India (Mumbai) region. By default, custom images are exported in the RAW format in regions where the ImageFormat parameter is unsupported.
81024
+ * * The `ImageFormat` parameter is available only for the following regions: Japan (Tokyo), Australia (Sydney), Indonesia (Jakarta), Germany (Frankfurt), UAE (Dubai), US (Virginia), UK (London), Singapore, Malaysia (Kuala Lumpur), and US (Silicon Valley). Alibaba Cloud services will be discontinued in the India (Mumbai) region. By default, custom images are exported in the RAW format in regions where the ImageFormat parameter is unsupported.
80294
81025
  * * Use Resource Access Management (RAM) to authorize Elastic Compute Service (ECS) to write data to OSS. To complete the authorization, perform the following operations:
80295
81026
  * * Create a role named `AliyunECSImageExportDefaultRole` and attach the following policy to the role:
80296
81027
  * {
@@ -80737,7 +81468,7 @@ export default class Client extends OpenApi {
80737
81468
  */
80738
81469
  joinResourceGroup(request: JoinResourceGroupRequest): Promise<JoinResourceGroupResponse>;
80739
81470
  /**
80740
- * Adds an Elastic Compute Service (ECS) instance or an elastic network interface (ENI) to a security group.
81471
+ * Adds an Elastic Compute Service (ECS) instance or an elastic network interface (ENI) to a security group. When you call this operation, you can specify parameters, such as SecurityGroupId, InstanceId, and NetworkInterfaceId, in the request.
80741
81472
  *
80742
81473
  * @remarks
80743
81474
  * ## [](#)Usage notes
@@ -80745,11 +81476,12 @@ export default class Client extends OpenApi {
80745
81476
  * Take note of the following items:
80746
81477
  * * Before you add an instance to a security group, the instance must be in the **Stopped** (Stopped) or **Running** (Running) state.
80747
81478
  * * An instance can be added to up to five security groups by default.
80748
- * * To add an instance to more security groups, [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex). An instance can be added to up to 16 security groups.
81479
+ * * You can [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex) to change the maximum number of security groups to which an instance can be added to 4 or 10.
80749
81480
  * * A basic security group can contain up to 2,000 instances. An advanced security group can contain up to 65,536 instances.
80750
81481
  * * The security group and the instance must reside in the same region.
80751
- * * The security group and the instance must be of the same network type. If the network type is virtual private cloud (VPC), the security group and the instance must reside in the same VPC.
81482
+ * * The security group and the instance must be of the same network type. If the network type is Virtual Private Cloud (VPC), the security group and the instance must reside in the same VPC.
80752
81483
  * * An instance and an ENI cannot be added to a security group at the same time. You cannot specify `InstanceId` and `NetworkInterfaceId` at the same time in a request.
81484
+ * For more information, see [Limits](https://help.aliyun.com/document_detail/25412.html).
80753
81485
  *
80754
81486
  * @param request - JoinSecurityGroupRequest
80755
81487
  * @param runtime - runtime options for this request RuntimeOptions
@@ -80757,7 +81489,7 @@ export default class Client extends OpenApi {
80757
81489
  */
80758
81490
  joinSecurityGroupWithOptions(request: JoinSecurityGroupRequest, runtime: $Util.RuntimeOptions): Promise<JoinSecurityGroupResponse>;
80759
81491
  /**
80760
- * Adds an Elastic Compute Service (ECS) instance or an elastic network interface (ENI) to a security group.
81492
+ * Adds an Elastic Compute Service (ECS) instance or an elastic network interface (ENI) to a security group. When you call this operation, you can specify parameters, such as SecurityGroupId, InstanceId, and NetworkInterfaceId, in the request.
80761
81493
  *
80762
81494
  * @remarks
80763
81495
  * ## [](#)Usage notes
@@ -80765,18 +81497,19 @@ export default class Client extends OpenApi {
80765
81497
  * Take note of the following items:
80766
81498
  * * Before you add an instance to a security group, the instance must be in the **Stopped** (Stopped) or **Running** (Running) state.
80767
81499
  * * An instance can be added to up to five security groups by default.
80768
- * * To add an instance to more security groups, [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex). An instance can be added to up to 16 security groups.
81500
+ * * You can [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex) to change the maximum number of security groups to which an instance can be added to 4 or 10.
80769
81501
  * * A basic security group can contain up to 2,000 instances. An advanced security group can contain up to 65,536 instances.
80770
81502
  * * The security group and the instance must reside in the same region.
80771
- * * The security group and the instance must be of the same network type. If the network type is virtual private cloud (VPC), the security group and the instance must reside in the same VPC.
81503
+ * * The security group and the instance must be of the same network type. If the network type is Virtual Private Cloud (VPC), the security group and the instance must reside in the same VPC.
80772
81504
  * * An instance and an ENI cannot be added to a security group at the same time. You cannot specify `InstanceId` and `NetworkInterfaceId` at the same time in a request.
81505
+ * For more information, see [Limits](https://help.aliyun.com/document_detail/25412.html).
80773
81506
  *
80774
81507
  * @param request - JoinSecurityGroupRequest
80775
81508
  * @returns JoinSecurityGroupResponse
80776
81509
  */
80777
81510
  joinSecurityGroup(request: JoinSecurityGroupRequest): Promise<JoinSecurityGroupResponse>;
80778
81511
  /**
80779
- * Removes an Elastic Compute Service (ECS) instance or an elastic network interface (ENI) from a security group.
81512
+ * Removes an Elastic Compute Service (ECS) instance or an elastic network interface (ENI) from a security group. To remove an ECS instance from a security group, specify SecurityGroupId and InstanceId in the request. To remove an ENI from a security group, specify SecurityGroupId and NetworkInterfaceId in the request.
80780
81513
  *
80781
81514
  * @remarks
80782
81515
  * ## [](#)Usage notes
@@ -80794,7 +81527,7 @@ export default class Client extends OpenApi {
80794
81527
  */
80795
81528
  leaveSecurityGroupWithOptions(request: LeaveSecurityGroupRequest, runtime: $Util.RuntimeOptions): Promise<LeaveSecurityGroupResponse>;
80796
81529
  /**
80797
- * Removes an Elastic Compute Service (ECS) instance or an elastic network interface (ENI) from a security group.
81530
+ * Removes an Elastic Compute Service (ECS) instance or an elastic network interface (ENI) from a security group. To remove an ECS instance from a security group, specify SecurityGroupId and InstanceId in the request. To remove an ENI from a security group, specify SecurityGroupId and NetworkInterfaceId in the request.
80798
81531
  *
80799
81532
  * @remarks
80800
81533
  * ## [](#)Usage notes
@@ -80949,7 +81682,7 @@ export default class Client extends OpenApi {
80949
81682
  */
80950
81683
  modifyBandwidthPackageSpec(request: ModifyBandwidthPackageSpecRequest): Promise<ModifyBandwidthPackageSpecResponse>;
80951
81684
  /**
80952
- * Modifies the information about a capacity reservation, including the name, description, release mode, and the total number of Elastic Compute Service (ECS) instances for which capacity is reserved.
81685
+ * Modifies the information of a capacity reservation, including the name, description, release mode, and the total number of Elastic Compute Service (ECS) instances for which capacity is reserved.
80953
81686
  *
80954
81687
  * @param request - ModifyCapacityReservationRequest
80955
81688
  * @param runtime - runtime options for this request RuntimeOptions
@@ -80957,7 +81690,7 @@ export default class Client extends OpenApi {
80957
81690
  */
80958
81691
  modifyCapacityReservationWithOptions(request: ModifyCapacityReservationRequest, runtime: $Util.RuntimeOptions): Promise<ModifyCapacityReservationResponse>;
80959
81692
  /**
80960
- * Modifies the information about a capacity reservation, including the name, description, release mode, and the total number of Elastic Compute Service (ECS) instances for which capacity is reserved.
81693
+ * Modifies the information of a capacity reservation, including the name, description, release mode, and the total number of Elastic Compute Service (ECS) instances for which capacity is reserved.
80961
81694
  *
80962
81695
  * @param request - ModifyCapacityReservationRequest
80963
81696
  * @returns ModifyCapacityReservationResponse
@@ -81130,12 +81863,16 @@ export default class Client extends OpenApi {
81130
81863
  */
81131
81864
  modifyDemand(request: ModifyDemandRequest): Promise<ModifyDemandResponse>;
81132
81865
  /**
81866
+ * Modifies the name and description of a deployment set. When you call this operation, you can specify parameters, such as DeploymentSetId and DeploymentSetName, in the request.
81867
+ *
81133
81868
  * @param request - ModifyDeploymentSetAttributeRequest
81134
81869
  * @param runtime - runtime options for this request RuntimeOptions
81135
81870
  * @returns ModifyDeploymentSetAttributeResponse
81136
81871
  */
81137
81872
  modifyDeploymentSetAttributeWithOptions(request: ModifyDeploymentSetAttributeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDeploymentSetAttributeResponse>;
81138
81873
  /**
81874
+ * Modifies the name and description of a deployment set. When you call this operation, you can specify parameters, such as DeploymentSetId and DeploymentSetName, in the request.
81875
+ *
81139
81876
  * @param request - ModifyDeploymentSetAttributeRequest
81140
81877
  * @returns ModifyDeploymentSetAttributeResponse
81141
81878
  */
@@ -81213,6 +81950,31 @@ export default class Client extends OpenApi {
81213
81950
  * @returns ModifyDiskChargeTypeResponse
81214
81951
  */
81215
81952
  modifyDiskChargeType(request: ModifyDiskChargeTypeRequest): Promise<ModifyDiskChargeTypeResponse>;
81953
+ /**
81954
+ * Changes the Key Management Service (KMS) key used for account-level default encryption in a region.
81955
+ *
81956
+ * @remarks
81957
+ * Only Alibaba Cloud accounts can call this operation.
81958
+ * * Before you can call this operation in a region, you must enable account-level default encryption of Elastic Block Storage (EBS) resources in the region.
81959
+ * * The first time you use a custom master key (CMK), you must use the AliyunECSDiskEncryptDefaultRole role to grant Elastic Compute Service (ECS) access to KMS resources. For more information, see [Grant access to KMS keys through RAM roles](https://help.aliyun.com/zh/ecs/access-ecs-encrypted-resources-through-the-ram-role?#b82bf8fbd42t8).
81960
+ *
81961
+ * @param request - ModifyDiskDefaultKMSKeyIdRequest
81962
+ * @param runtime - runtime options for this request RuntimeOptions
81963
+ * @returns ModifyDiskDefaultKMSKeyIdResponse
81964
+ */
81965
+ modifyDiskDefaultKMSKeyIdWithOptions(request: ModifyDiskDefaultKMSKeyIdRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDiskDefaultKMSKeyIdResponse>;
81966
+ /**
81967
+ * Changes the Key Management Service (KMS) key used for account-level default encryption in a region.
81968
+ *
81969
+ * @remarks
81970
+ * Only Alibaba Cloud accounts can call this operation.
81971
+ * * Before you can call this operation in a region, you must enable account-level default encryption of Elastic Block Storage (EBS) resources in the region.
81972
+ * * The first time you use a custom master key (CMK), you must use the AliyunECSDiskEncryptDefaultRole role to grant Elastic Compute Service (ECS) access to KMS resources. For more information, see [Grant access to KMS keys through RAM roles](https://help.aliyun.com/zh/ecs/access-ecs-encrypted-resources-through-the-ram-role?#b82bf8fbd42t8).
81973
+ *
81974
+ * @param request - ModifyDiskDefaultKMSKeyIdRequest
81975
+ * @returns ModifyDiskDefaultKMSKeyIdResponse
81976
+ */
81977
+ modifyDiskDefaultKMSKeyId(request: ModifyDiskDefaultKMSKeyIdRequest): Promise<ModifyDiskDefaultKMSKeyIdResponse>;
81216
81978
  /**
81217
81979
  * Migrates disks to or from a dedicated block storage cluster, or migrates disks between different dedicated block storage clusters.
81218
81980
  *
@@ -81369,7 +82131,7 @@ export default class Client extends OpenApi {
81369
82131
  */
81370
82132
  modifyHpcClusterAttribute(request: ModifyHpcClusterAttributeRequest): Promise<ModifyHpcClusterAttributeResponse>;
81371
82133
  /**
81372
- * Modifies the name, description, status, or image family of a custom image.
82134
+ * Modifies the attributes of a custom image, such as the image family, name, boot mode, and status and whether the image supports the Non-Volatile Memory Express (NVMe) protocol. When you call this operation, you can specify parameters, such as ImageId and ImageFamily, in the request.
81373
82135
  *
81374
82136
  * @param request - ModifyImageAttributeRequest
81375
82137
  * @param runtime - runtime options for this request RuntimeOptions
@@ -81377,7 +82139,7 @@ export default class Client extends OpenApi {
81377
82139
  */
81378
82140
  modifyImageAttributeWithOptions(request: ModifyImageAttributeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyImageAttributeResponse>;
81379
82141
  /**
81380
- * Modifies the name, description, status, or image family of a custom image.
82142
+ * Modifies the attributes of a custom image, such as the image family, name, boot mode, and status and whether the image supports the Non-Volatile Memory Express (NVMe) protocol. When you call this operation, you can specify parameters, such as ImageId and ImageFamily, in the request.
81381
82143
  *
81382
82144
  * @param request - ModifyImageAttributeRequest
81383
82145
  * @returns ModifyImageAttributeResponse
@@ -81921,7 +82683,7 @@ export default class Client extends OpenApi {
81921
82683
  */
81922
82684
  modifyInvocationAttribute(request: ModifyInvocationAttributeRequest): Promise<ModifyInvocationAttributeResponse>;
81923
82685
  /**
81924
- * Changes the default version of a launch template. If you do not specify a version number for a launch template when you create instances by calling the RunInstances operation, the default version of the launch template is used.
82686
+ * Changes the default version of a launch template. When you call this operation, you can specify DefaultVersionNumber in the request. If you do not specify a version when you create Elastic Compute Service (ECS) instances based on a launch template, the default version of the launch template is used.
81925
82687
  *
81926
82688
  * @remarks
81927
82689
  * ## Debugging
@@ -81933,7 +82695,7 @@ export default class Client extends OpenApi {
81933
82695
  */
81934
82696
  modifyLaunchTemplateDefaultVersionWithOptions(request: ModifyLaunchTemplateDefaultVersionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyLaunchTemplateDefaultVersionResponse>;
81935
82697
  /**
81936
- * Changes the default version of a launch template. If you do not specify a version number for a launch template when you create instances by calling the RunInstances operation, the default version of the launch template is used.
82698
+ * Changes the default version of a launch template. When you call this operation, you can specify DefaultVersionNumber in the request. If you do not specify a version when you create Elastic Compute Service (ECS) instances based on a launch template, the default version of the launch template is used.
81937
82699
  *
81938
82700
  * @remarks
81939
82701
  * ## Debugging
@@ -82397,7 +83159,22 @@ export default class Client extends OpenApi {
82397
83159
  */
82398
83160
  modifyVpcAttribute(request: ModifyVpcAttributeRequest): Promise<ModifyVpcAttributeResponse>;
82399
83161
  /**
82400
- * Purchases a reserved instance. Reserved instances can be automatically matched to pay-as-you-go instances to offset the fees of the pay-as-you-go instances.
83162
+ * 购买一个准备完毕的弹性保障包
83163
+ *
83164
+ * @param request - PurchaseElasticityAssuranceRequest
83165
+ * @param runtime - runtime options for this request RuntimeOptions
83166
+ * @returns PurchaseElasticityAssuranceResponse
83167
+ */
83168
+ purchaseElasticityAssuranceWithOptions(request: PurchaseElasticityAssuranceRequest, runtime: $Util.RuntimeOptions): Promise<PurchaseElasticityAssuranceResponse>;
83169
+ /**
83170
+ * 购买一个准备完毕的弹性保障包
83171
+ *
83172
+ * @param request - PurchaseElasticityAssuranceRequest
83173
+ * @returns PurchaseElasticityAssuranceResponse
83174
+ */
83175
+ purchaseElasticityAssurance(request: PurchaseElasticityAssuranceRequest): Promise<PurchaseElasticityAssuranceResponse>;
83176
+ /**
83177
+ * Purchases a reserved instance. When you call this operation, you can specify parameters, such as InstanceType and Scope, in the request. Reserved instances can be applied to automatically offset fees for pay-as-you-go Elastic Compute Service (ECS) instances.
82401
83178
  *
82402
83179
  * @remarks
82403
83180
  * ## [](#)Usage notes
@@ -82410,7 +83187,7 @@ export default class Client extends OpenApi {
82410
83187
  */
82411
83188
  purchaseReservedInstancesOfferingWithOptions(request: PurchaseReservedInstancesOfferingRequest, runtime: $Util.RuntimeOptions): Promise<PurchaseReservedInstancesOfferingResponse>;
82412
83189
  /**
82413
- * Purchases a reserved instance. Reserved instances can be automatically matched to pay-as-you-go instances to offset the fees of the pay-as-you-go instances.
83190
+ * Purchases a reserved instance. When you call this operation, you can specify parameters, such as InstanceType and Scope, in the request. Reserved instances can be applied to automatically offset fees for pay-as-you-go Elastic Compute Service (ECS) instances.
82414
83191
  *
82415
83192
  * @remarks
82416
83193
  * ## [](#)Usage notes
@@ -82789,7 +83566,7 @@ export default class Client extends OpenApi {
82789
83566
  */
82790
83567
  renewDedicatedHosts(request: RenewDedicatedHostsRequest): Promise<RenewDedicatedHostsResponse>;
82791
83568
  /**
82792
- * 续费
83569
+ * Renews one or more elasticity assurances that you purchased. When you call this operation, you can specify parameters, such as PrivatePoolOptionsId and Period, in the request.
82793
83570
  *
82794
83571
  * @param request - RenewElasticityAssurancesRequest
82795
83572
  * @param runtime - runtime options for this request RuntimeOptions
@@ -82797,7 +83574,7 @@ export default class Client extends OpenApi {
82797
83574
  */
82798
83575
  renewElasticityAssurancesWithOptions(request: RenewElasticityAssurancesRequest, runtime: $Util.RuntimeOptions): Promise<RenewElasticityAssurancesResponse>;
82799
83576
  /**
82800
- * 续费
83577
+ * Renews one or more elasticity assurances that you purchased. When you call this operation, you can specify parameters, such as PrivatePoolOptionsId and Period, in the request.
82801
83578
  *
82802
83579
  * @param request - RenewElasticityAssurancesRequest
82803
83580
  * @returns RenewElasticityAssurancesResponse
@@ -82942,6 +83719,29 @@ export default class Client extends OpenApi {
82942
83719
  * @returns ResetDiskResponse
82943
83720
  */
82944
83721
  resetDisk(request: ResetDiskRequest): Promise<ResetDiskResponse>;
83722
+ /**
83723
+ * Resets the Key Management Service (KMS) key used for account-level default encryption in a region to the service key.
83724
+ *
83725
+ * @remarks
83726
+ * Only Alibaba Cloud accounts can call this operation.
83727
+ * * Before you can call this operation in a region, you must enable account-level default encryption of Elastic Block Storage (EBS) resources in the region.
83728
+ *
83729
+ * @param request - ResetDiskDefaultKMSKeyIdRequest
83730
+ * @param runtime - runtime options for this request RuntimeOptions
83731
+ * @returns ResetDiskDefaultKMSKeyIdResponse
83732
+ */
83733
+ resetDiskDefaultKMSKeyIdWithOptions(request: ResetDiskDefaultKMSKeyIdRequest, runtime: $Util.RuntimeOptions): Promise<ResetDiskDefaultKMSKeyIdResponse>;
83734
+ /**
83735
+ * Resets the Key Management Service (KMS) key used for account-level default encryption in a region to the service key.
83736
+ *
83737
+ * @remarks
83738
+ * Only Alibaba Cloud accounts can call this operation.
83739
+ * * Before you can call this operation in a region, you must enable account-level default encryption of Elastic Block Storage (EBS) resources in the region.
83740
+ *
83741
+ * @param request - ResetDiskDefaultKMSKeyIdRequest
83742
+ * @returns ResetDiskDefaultKMSKeyIdResponse
83743
+ */
83744
+ resetDiskDefaultKMSKeyId(request: ResetDiskDefaultKMSKeyIdRequest): Promise<ResetDiskDefaultKMSKeyIdResponse>;
82945
83745
  /**
82946
83746
  * Rolls back one or more disks by using an instance snapshot.
82947
83747
  *