@alicloud/ecs20140526 5.1.0 → 6.0.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
@@ -1496,6 +1496,10 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfiguration exten
1496
1496
  * ZWNobyBoZWxsbyBlY3Mh
1497
1497
  */
1498
1498
  userData?: string;
1499
+ autoRenew?: boolean;
1500
+ autoRenewPeriod?: number;
1501
+ period?: number;
1502
+ periodUnit?: string;
1499
1503
  static names(): {
1500
1504
  [key: string]: string;
1501
1505
  };
@@ -1650,6 +1654,33 @@ export declare class CreateAutoProvisioningGroupRequestLaunchTemplateConfig exte
1650
1654
  [key: string]: any;
1651
1655
  });
1652
1656
  }
1657
+ export declare class CreateAutoProvisioningGroupRequestPrePaidOptionsSpecifyCapacityDistribution extends $dara.Model {
1658
+ instanceTypes?: string[];
1659
+ minTargetCapacity?: number;
1660
+ static names(): {
1661
+ [key: string]: string;
1662
+ };
1663
+ static types(): {
1664
+ [key: string]: any;
1665
+ };
1666
+ validate(): void;
1667
+ constructor(map?: {
1668
+ [key: string]: any;
1669
+ });
1670
+ }
1671
+ export declare class CreateAutoProvisioningGroupRequestPrePaidOptions extends $dara.Model {
1672
+ specifyCapacityDistribution?: CreateAutoProvisioningGroupRequestPrePaidOptionsSpecifyCapacityDistribution[];
1673
+ static names(): {
1674
+ [key: string]: string;
1675
+ };
1676
+ static types(): {
1677
+ [key: string]: any;
1678
+ };
1679
+ validate(): void;
1680
+ constructor(map?: {
1681
+ [key: string]: any;
1682
+ });
1683
+ }
1653
1684
  export declare class CreateAutoProvisioningGroupRequestResourcePoolOptions extends $dara.Model {
1654
1685
  /**
1655
1686
  * @remarks
@@ -2396,6 +2427,10 @@ export declare class CreateAutoProvisioningGroupShrinkRequestLaunchConfiguration
2396
2427
  * ZWNobyBoZWxsbyBlY3Mh
2397
2428
  */
2398
2429
  userData?: string;
2430
+ autoRenew?: boolean;
2431
+ autoRenewPeriod?: number;
2432
+ period?: number;
2433
+ periodUnit?: string;
2399
2434
  static names(): {
2400
2435
  [key: string]: string;
2401
2436
  };
@@ -2550,6 +2585,33 @@ export declare class CreateAutoProvisioningGroupShrinkRequestLaunchTemplateConfi
2550
2585
  [key: string]: any;
2551
2586
  });
2552
2587
  }
2588
+ export declare class CreateAutoProvisioningGroupShrinkRequestPrePaidOptionsSpecifyCapacityDistribution extends $dara.Model {
2589
+ instanceTypes?: string[];
2590
+ minTargetCapacity?: number;
2591
+ static names(): {
2592
+ [key: string]: string;
2593
+ };
2594
+ static types(): {
2595
+ [key: string]: any;
2596
+ };
2597
+ validate(): void;
2598
+ constructor(map?: {
2599
+ [key: string]: any;
2600
+ });
2601
+ }
2602
+ export declare class CreateAutoProvisioningGroupShrinkRequestPrePaidOptions extends $dara.Model {
2603
+ specifyCapacityDistribution?: CreateAutoProvisioningGroupShrinkRequestPrePaidOptionsSpecifyCapacityDistribution[];
2604
+ static names(): {
2605
+ [key: string]: string;
2606
+ };
2607
+ static types(): {
2608
+ [key: string]: any;
2609
+ };
2610
+ validate(): void;
2611
+ constructor(map?: {
2612
+ [key: string]: any;
2613
+ });
2614
+ }
2553
2615
  export declare class CreateAutoProvisioningGroupShrinkRequestSystemDiskConfig extends $dara.Model {
2554
2616
  /**
2555
2617
  * @remarks
@@ -2902,7 +2964,7 @@ export declare class CreateCommandRequestTag extends $dara.Model {
2902
2964
  export declare class CreateDedicatedHostClusterRequestTag extends $dara.Model {
2903
2965
  /**
2904
2966
  * @remarks
2905
- * The key of tag N to add to the dedicated host cluster. Valid values of N: 1 to 20. The tag key cannot be an empty string. The tag key can be up to 64 characters in length and cannot contain `http://` or `https://`. The tag key cannot start with `acs:` or `aliyun`.
2967
+ * The tag key. Valid values of N: 1 to 20. The tag key cannot be an empty string. It can be no more than 64 characters in length, and can neither contain `http://` or `https://` nor start with `acs:` or `aliyun`.
2906
2968
  *
2907
2969
  * @example
2908
2970
  * TestKey
@@ -2910,7 +2972,7 @@ export declare class CreateDedicatedHostClusterRequestTag extends $dara.Model {
2910
2972
  key?: string;
2911
2973
  /**
2912
2974
  * @remarks
2913
- * The value of tag N to add to the dedicated host cluster. Valid values of N: 1 to 20. The tag value cannot be an empty string. The tag value can be up to 64 characters in length and cannot contain `http://` or `https://`.
2975
+ * The tag value. Valid values of N: 1 to 20. The tag value cannot be an empty string. It can be no more than 64 characters in length and cannot contain `http://` or `https://`.
2914
2976
  *
2915
2977
  * @example
2916
2978
  * TestValue
@@ -3191,6 +3253,20 @@ export declare class CreateImageComponentRequestTag extends $dara.Model {
3191
3253
  });
3192
3254
  }
3193
3255
  export declare class CreateImagePipelineRequestAdvancedOptions extends $dara.Model {
3256
+ /**
3257
+ * @remarks
3258
+ * Specifies whether to retain Cloud Assistant Agent that is installed during the image building process. During the image building process, the system automatically installs Cloud Assistant Agent on the intermediate instance to run commands. You can choose whether to retain Cloud Assistant Agent that is installed during the image building process in the new image. Valid values:
3259
+ *
3260
+ * * true: retains Cloud Assistant Agent that is installed during the image building process in the new image.
3261
+ * * false: does not retain Cloud Assistant Agent that is installed during the image building process in the new image.
3262
+ *
3263
+ * Default value: false.
3264
+ *
3265
+ * > The setting of this parameter does not affect Cloud Assistant Agent that comes with your image.
3266
+ *
3267
+ * @example
3268
+ * true
3269
+ */
3194
3270
  retainCloudAssistant?: boolean;
3195
3271
  static names(): {
3196
3272
  [key: string]: string;
@@ -3204,9 +3280,50 @@ export declare class CreateImagePipelineRequestAdvancedOptions extends $dara.Mod
3204
3280
  });
3205
3281
  }
3206
3282
  export declare class CreateImagePipelineRequestImportImageOptionsDiskDeviceMappings extends $dara.Model {
3283
+ /**
3284
+ * @remarks
3285
+ * The size of disk N in the custom image after the source image is imported.
3286
+ *
3287
+ * You can use this parameter to specify the sizes of the system disk and data disks in the custom image. When you specify the size of the system disk, make sure that the specified size is greater than or equal to the size of the source image file. Unit: GiB. Valid values:
3288
+ *
3289
+ * * When the N value is 1, this parameter specifies the size of the system disk in the custom image. Valid values: 1 to 2048.
3290
+ * * When the N value is an integer in the range of 2 to 17, this parameter specifies the size of a data disk in the custom image. Valid values: 1 to 2048.
3291
+ *
3292
+ * After the image file is uploaded to an OSS bucket, you can view the size of the image file in the OSS bucket.
3293
+ *
3294
+ * @example
3295
+ * 40
3296
+ */
3207
3297
  diskImageSize?: number;
3298
+ /**
3299
+ * @remarks
3300
+ * The format of the image. Valid values:
3301
+ *
3302
+ * * RAW
3303
+ * * VHD
3304
+ * * QCOW2
3305
+ *
3306
+ * This parameter is empty by default, which indicates that the system checks the format of the image and uses the check result as the value of this parameter.
3307
+ *
3308
+ * @example
3309
+ * RAW
3310
+ */
3208
3311
  format?: string;
3312
+ /**
3313
+ * @remarks
3314
+ * The OSS bucket where the image file is stored.
3315
+ *
3316
+ * @example
3317
+ * ecsimageos
3318
+ */
3209
3319
  OSSBucket?: string;
3320
+ /**
3321
+ * @remarks
3322
+ * The name (key) of the object that the uploaded image is stored as in the OSS bucket.
3323
+ *
3324
+ * @example
3325
+ * CentOS_5.4_32.raw
3326
+ */
3210
3327
  OSSObject?: string;
3211
3328
  static names(): {
3212
3329
  [key: string]: string;
@@ -3220,6 +3337,18 @@ export declare class CreateImagePipelineRequestImportImageOptionsDiskDeviceMappi
3220
3337
  });
3221
3338
  }
3222
3339
  export declare class CreateImagePipelineRequestImportImageOptionsFeatures extends $dara.Model {
3340
+ /**
3341
+ * @remarks
3342
+ * Specifies whether the imported original image supports the Non-Volatile Memory Express (NVMe) protocol. Valid values:
3343
+ *
3344
+ * * supported: The image supports the NVMe protocol. Instances created from the image also support the NVMe protocol.
3345
+ * * unsupported: The image does not support the NVMe protocol. Instances created from the image do not support the NVMe protocol.
3346
+ *
3347
+ * Default value: unsupported.
3348
+ *
3349
+ * @example
3350
+ * supported
3351
+ */
3223
3352
  nvmeSupport?: string;
3224
3353
  static names(): {
3225
3354
  [key: string]: string;
@@ -3233,13 +3362,124 @@ export declare class CreateImagePipelineRequestImportImageOptionsFeatures extend
3233
3362
  });
3234
3363
  }
3235
3364
  export declare class CreateImagePipelineRequestImportImageOptions extends $dara.Model {
3365
+ /**
3366
+ * @remarks
3367
+ * The system architecture of the system disk. If you specify a data disk snapshot to create the system disk of the image, use Architecture to specify the system architecture of the system disk. Valid values:
3368
+ *
3369
+ * * x86_64
3370
+ * * arm64
3371
+ *
3372
+ * Default value: x86_64.
3373
+ *
3374
+ * @example
3375
+ * x86_64
3376
+ */
3236
3377
  architecture?: string;
3378
+ /**
3379
+ * @remarks
3380
+ * The new boot mode of the image. Valid values:
3381
+ *
3382
+ * * BIOS: BIOS mode
3383
+ * * UEFI: Unified Extensible Firmware Interface (UEFI) mode
3384
+ *
3385
+ * Default value: BIOS. If you set Architecture to `arm64`, set the value to UEFI.
3386
+ *
3387
+ * > Before you specify this parameter, make sure that you are familiar with the boot modes supported by the image. If you specify a boot mode that is not supported by the image, ECS instances created from the image cannot start as expected. For information about the boot modes of images, see the [Boot modes of images](~~2244655#b9caa9b8bb1wf~~) section of the "Best practices for ECS instance boot modes" topic.
3388
+ *
3389
+ * @example
3390
+ * BIOS
3391
+ */
3237
3392
  bootMode?: string;
3393
+ /**
3394
+ * @remarks
3395
+ * The information of disks from which the custom images are created.
3396
+ *
3397
+ * * When the N value is 1, this parameter creates a custom image from the system disk.
3398
+ * * When the N value is an integer in the range of 2 to 17, this parameter creates a custom image from a data disk.
3399
+ */
3238
3400
  diskDeviceMappings?: CreateImagePipelineRequestImportImageOptionsDiskDeviceMappings[];
3401
+ /**
3402
+ * @remarks
3403
+ * The attributes of the image.
3404
+ */
3239
3405
  features?: CreateImagePipelineRequestImportImageOptionsFeatures;
3406
+ /**
3407
+ * @remarks
3408
+ * The type of the license to use to activate the operating system after the image is imported. Valid values:
3409
+ *
3410
+ * * Auto: ECS detects the operating system of the image and allocates a license to the operating system. In this mode, the system first checks whether a license allocated by an official Alibaba Cloud channel is available for the operating system version specified by `Platform`. If a license allocated by an official Alibaba Cloud channel is available for the operating system version, the system allocates the license to the imported image. If no such license is available, the Bring Your Own License (BYOL) mode is used.
3411
+ * * Aliyun: The license allocated by an official Alibaba Cloud channel for the operating system version specified by `Platform` is used.
3412
+ * * BYOL: The license that comes with the source operating system is used. When you use the BYOL license, make sure that your license key is supported by Alibaba Cloud.
3413
+ *
3414
+ * Default value: Auto.
3415
+ *
3416
+ * @example
3417
+ * Auto
3418
+ */
3240
3419
  licenseType?: string;
3420
+ /**
3421
+ * @remarks
3422
+ * The operating system type. Valid values:
3423
+ *
3424
+ * * windows: Windows operating systems
3425
+ * * linux: Linux operating systems
3426
+ *
3427
+ * Default value: linux.
3428
+ *
3429
+ * @example
3430
+ * linux
3431
+ */
3241
3432
  OSType?: string;
3433
+ /**
3434
+ * @remarks
3435
+ * The version of the operating system. Valid values:
3436
+ *
3437
+ * * Aliyun
3438
+ * * Anolis
3439
+ * * CentOS
3440
+ * * Ubuntu
3441
+ * * CoreOS
3442
+ * * SUSE
3443
+ * * Debian
3444
+ * * OpenSUSE
3445
+ * * FreeBSD
3446
+ * * RedHat
3447
+ * * Kylin
3448
+ * * UOS
3449
+ * * Fedora
3450
+ * * Fedora CoreOS
3451
+ * * CentOS Stream
3452
+ * * AlmaLinux
3453
+ * * Rocky Linux
3454
+ * * Gentoo
3455
+ * * Customized Linux
3456
+ * * Others Linux
3457
+ * * Windows Server 2022
3458
+ * * Windows Server 2019
3459
+ * * Windows Server 2016
3460
+ * * Windows Server 2012
3461
+ * * Windows Server 2008
3462
+ * * Windows Server 2003
3463
+ * * Other Windows
3464
+ *
3465
+ * Default value: Others Linux when the operating system type is linux, and Other Windows when the operating system type is windows.
3466
+ *
3467
+ * @example
3468
+ * Aliyun
3469
+ */
3242
3470
  platform?: string;
3471
+ /**
3472
+ * @remarks
3473
+ * Specifies whether to retain the imported original image. After the import is complete, the system automatically deletes the imported original image to prevent unnecessary storage fees. You can also choose to retain the imported original image. Valid values:
3474
+ *
3475
+ * * true: retains the imported original image. After the import is complete, the imported original image is not deleted even if the image building task is canceled or fails.
3476
+ * * false: does not retain the imported original image.
3477
+ *
3478
+ * Default value: false.
3479
+ *
3480
+ * @example
3481
+ * false
3482
+ */
3243
3483
  retainImportedImage?: boolean;
3244
3484
  static names(): {
3245
3485
  [key: string]: string;
@@ -4630,7 +4870,11 @@ export declare class CreateNatGatewayResponseBodyForwardTableIds extends $dara.M
4630
4870
  export declare class CreateNetworkInterfaceRequestConnectionTrackingConfiguration extends $dara.Model {
4631
4871
  /**
4632
4872
  * @remarks
4633
- * > This parameter is not publicly available.
4873
+ * The timeout period for TCP connections in the TIME_WAIT or CLOSE_WAIT state. Unit: seconds. Valid values: integers from 3 to 15.
4874
+ *
4875
+ * Default value: 3.
4876
+ *
4877
+ * > If the associated Elastic Compute Service (ECS) instance is used with a Network Load Balancer (NLB) or Classic Load Balancer (CLB) instance, the default timeout period for TCP connections in the `TIME_WAIT` state is 15 seconds.
4634
4878
  *
4635
4879
  * @example
4636
4880
  * 3
@@ -4638,7 +4882,9 @@ export declare class CreateNetworkInterfaceRequestConnectionTrackingConfiguratio
4638
4882
  tcpClosedAndTimeWaitTimeout?: number;
4639
4883
  /**
4640
4884
  * @remarks
4641
- * > This parameter is not publicly available.
4885
+ * The timeout period for TCP connections in the ESTABLISHED state. Unit: seconds. Valid values: 30, 60, 80, 100, 200, 300, 500, 700, and 910.
4886
+ *
4887
+ * Default value: 910.
4642
4888
  *
4643
4889
  * @example
4644
4890
  * 910
@@ -4646,7 +4892,11 @@ export declare class CreateNetworkInterfaceRequestConnectionTrackingConfiguratio
4646
4892
  tcpEstablishedTimeout?: number;
4647
4893
  /**
4648
4894
  * @remarks
4649
- * > This parameter is not publicly available.
4895
+ * The timeout period for UDP flows. Unit: seconds. Valid values: 10, 20, 30, 60, 80, and 100.
4896
+ *
4897
+ * Default value: 30.
4898
+ *
4899
+ * > If the associated ECS instance is used with an NLB or CLB instance, the default timeout period for UDP flows is 100 seconds.
4650
4900
  *
4651
4901
  * @example
4652
4902
  * 30
@@ -4664,6 +4914,13 @@ export declare class CreateNetworkInterfaceRequestConnectionTrackingConfiguratio
4664
4914
  });
4665
4915
  }
4666
4916
  export declare class CreateNetworkInterfaceRequestEnhancedNetwork extends $dara.Model {
4917
+ /**
4918
+ * @remarks
4919
+ * > This parameter is not publicly available.
4920
+ *
4921
+ * @example
4922
+ * true
4923
+ */
4667
4924
  enableRss?: boolean;
4668
4925
  /**
4669
4926
  * @remarks
@@ -8499,9 +8756,9 @@ export declare class DescribeDedicatedHostAutoRenewResponseBodyDedicatedHostRene
8499
8756
  export declare class DescribeDedicatedHostClustersRequestTag extends $dara.Model {
8500
8757
  /**
8501
8758
  * @remarks
8502
- * The key of tag N of the dedicated host cluster. Valid values of N: 1 to 20. The tag key cannot be an empty string. The tag key can be up to 64 characters in length and cannot contain `http://` or `https://`. The tag key cannot start with `acs:` or `aliyun`.
8759
+ * The tag key. Valid values of N: 1 to 20. The tag key cannot be an empty string. It can be up to 64 characters in length, and can neither contain `http://` or `https://` nor `acs:` or `aliyun`.
8503
8760
  *
8504
- * 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.
8761
+ * You can filter no more than 1,000 host groups, regardless of how many tags are used. To query more than 1,000 host groups, call the [ListTagResources](https://help.aliyun.com/document_detail/110425.html) API operation.
8505
8762
  *
8506
8763
  * @example
8507
8764
  * TestKey
@@ -8509,7 +8766,7 @@ export declare class DescribeDedicatedHostClustersRequestTag extends $dara.Model
8509
8766
  key?: string;
8510
8767
  /**
8511
8768
  * @remarks
8512
- * The value of tag N of the dedicated host cluster. Valid values of N: 1 to 20. The tag value cannot be an empty string. The tag value can be up to 64 characters in length and cannot contain `http://` or `https://`. The tag value cannot start with `acs:` or `aliyun`.
8769
+ * The tag value. Valid values of N: 1 to 20. The tag value cannot be an empty string. It can be up to 64 characters in length and cannot contain `http://` or `https://`.
8513
8770
  *
8514
8771
  * @example
8515
8772
  * TestValue
@@ -8625,7 +8882,7 @@ export declare class DescribeDedicatedHostClustersResponseBodyDedicatedHostClust
8625
8882
  export declare class DescribeDedicatedHostClustersResponseBodyDedicatedHostClustersDedicatedHostClusterDedicatedHostClusterCapacity extends $dara.Model {
8626
8883
  /**
8627
8884
  * @remarks
8628
- * The available capacity of the Elastic Compute Service (ECS) instance types in the dedicated host cluster.
8885
+ * The available capacity of ECS instances in the host group.
8629
8886
  */
8630
8887
  availableInstanceTypes?: DescribeDedicatedHostClustersResponseBodyDedicatedHostClustersDedicatedHostClusterDedicatedHostClusterCapacityAvailableInstanceTypes;
8631
8888
  /**
@@ -8692,7 +8949,7 @@ export declare class DescribeDedicatedHostClustersResponseBodyDedicatedHostClust
8692
8949
  export declare class DescribeDedicatedHostClustersResponseBodyDedicatedHostClustersDedicatedHostClusterTagsTag extends $dara.Model {
8693
8950
  /**
8694
8951
  * @remarks
8695
- * The tag key of the dedicated host cluster.
8952
+ * The tag key.
8696
8953
  *
8697
8954
  * @example
8698
8955
  * TestKey
@@ -8700,7 +8957,7 @@ export declare class DescribeDedicatedHostClustersResponseBodyDedicatedHostClust
8700
8957
  tagKey?: string;
8701
8958
  /**
8702
8959
  * @remarks
8703
- * The tag value of the dedicated host cluster.
8960
+ * The tag value.
8704
8961
  *
8705
8962
  * @example
8706
8963
  * TestValue
@@ -8733,12 +8990,12 @@ export declare class DescribeDedicatedHostClustersResponseBodyDedicatedHostClust
8733
8990
  export declare class DescribeDedicatedHostClustersResponseBodyDedicatedHostClustersDedicatedHostCluster extends $dara.Model {
8734
8991
  /**
8735
8992
  * @remarks
8736
- * The capacity of the dedicated host cluster.
8993
+ * The capacity of the host group.
8737
8994
  */
8738
8995
  dedicatedHostClusterCapacity?: DescribeDedicatedHostClustersResponseBodyDedicatedHostClustersDedicatedHostClusterDedicatedHostClusterCapacity;
8739
8996
  /**
8740
8997
  * @remarks
8741
- * The ID of the dedicated host cluster.
8998
+ * The ID of the host group.
8742
8999
  *
8743
9000
  * @example
8744
9001
  * dc-bp12wlf6am0vz9v2****
@@ -8746,7 +9003,7 @@ export declare class DescribeDedicatedHostClustersResponseBodyDedicatedHostClust
8746
9003
  dedicatedHostClusterId?: string;
8747
9004
  /**
8748
9005
  * @remarks
8749
- * The name of the dedicated host cluster.
9006
+ * The name of the host group.
8750
9007
  *
8751
9008
  * @example
8752
9009
  * myDDHCluster
@@ -8754,12 +9011,12 @@ export declare class DescribeDedicatedHostClustersResponseBodyDedicatedHostClust
8754
9011
  dedicatedHostClusterName?: string;
8755
9012
  /**
8756
9013
  * @remarks
8757
- * The IDs of dedicated hosts in the dedicated host cluster.
9014
+ * The IDs of dedicated hosts in the host group.
8758
9015
  */
8759
9016
  dedicatedHostIds?: DescribeDedicatedHostClustersResponseBodyDedicatedHostClustersDedicatedHostClusterDedicatedHostIds;
8760
9017
  /**
8761
9018
  * @remarks
8762
- * The description of the dedicated host cluster.
9019
+ * The description of the host group.
8763
9020
  *
8764
9021
  * @example
8765
9022
  * This-is-my-DDHCluster
@@ -8767,7 +9024,7 @@ export declare class DescribeDedicatedHostClustersResponseBodyDedicatedHostClust
8767
9024
  description?: string;
8768
9025
  /**
8769
9026
  * @remarks
8770
- * The region ID of the dedicated host cluster.
9027
+ * The region ID of the host group.
8771
9028
  *
8772
9029
  * @example
8773
9030
  * cn-hangzhou
@@ -8775,7 +9032,7 @@ export declare class DescribeDedicatedHostClustersResponseBodyDedicatedHostClust
8775
9032
  regionId?: string;
8776
9033
  /**
8777
9034
  * @remarks
8778
- * The ID of the resource group to which the dedicated host cluster belongs.
9035
+ * The resource group ID of the host group.
8779
9036
  *
8780
9037
  * @example
8781
9038
  * rg-bp67acfmxazb4p****
@@ -8783,12 +9040,12 @@ export declare class DescribeDedicatedHostClustersResponseBodyDedicatedHostClust
8783
9040
  resourceGroupId?: string;
8784
9041
  /**
8785
9042
  * @remarks
8786
- * The tags of the dedicated host cluster.
9043
+ * The tags of the host group.
8787
9044
  */
8788
9045
  tags?: DescribeDedicatedHostClustersResponseBodyDedicatedHostClustersDedicatedHostClusterTags;
8789
9046
  /**
8790
9047
  * @remarks
8791
- * The zone ID of the dedicated host cluster.
9048
+ * The zone ID of the host group.
8792
9049
  *
8793
9050
  * @example
8794
9051
  * cn-hangzhou-f
@@ -9710,7 +9967,7 @@ export declare class DescribeDemandsResponseBodyDemandsDemandSupplyInfosSupplyIn
9710
9967
  amount?: number;
9711
9968
  /**
9712
9969
  * @remarks
9713
- * 需求单对应的私有池ID
9970
+ * The ID of the private pool that corresponds to the demand.
9714
9971
  *
9715
9972
  * @example
9716
9973
  * crp-bp1fv8sbhelbzjwx****
@@ -10198,19 +10455,15 @@ export declare class DescribeDiagnosticMetricSetsResponseBodyMetricSets extends
10198
10455
  export declare class DescribeDiagnosticMetricsResponseBodyMetrics extends $dara.Model {
10199
10456
  /**
10200
10457
  * @remarks
10201
- * CPU diagnostic
10458
+ * The description of the diagnostic metric.
10202
10459
  *
10203
10460
  * @example
10204
- * The resource type supported by the diagnostic metric.
10461
+ * CPU diagnostic
10205
10462
  */
10206
10463
  description?: string;
10207
10464
  /**
10208
10465
  * @remarks
10209
- * The operating system type supported by the diagnostic metric. Valid values:
10210
- *
10211
- * * Windows
10212
- * * Linux
10213
- * * All: both Windows and Linux
10466
+ * Indicates whether the diagnostic metric needs to be assessed by running a Cloud Assistant command in a guest operating system.
10214
10467
  *
10215
10468
  * @example
10216
10469
  * true
@@ -10218,7 +10471,7 @@ export declare class DescribeDiagnosticMetricsResponseBodyMetrics extends $dara.
10218
10471
  guestMetric?: boolean;
10219
10472
  /**
10220
10473
  * @remarks
10221
- * The description of the diagnostic metric.
10474
+ * The category of the diagnostic metric.
10222
10475
  *
10223
10476
  * @example
10224
10477
  * CPU
@@ -10226,7 +10479,7 @@ export declare class DescribeDiagnosticMetricsResponseBodyMetrics extends $dara.
10226
10479
  metricCategory?: string;
10227
10480
  /**
10228
10481
  * @remarks
10229
- * The name of the diagnostic metric.
10482
+ * The ID of the diagnostic metric.
10230
10483
  *
10231
10484
  * @example
10232
10485
  * GuestOS.WinFirewall
@@ -10234,21 +10487,28 @@ export declare class DescribeDiagnosticMetricsResponseBodyMetrics extends $dara.
10234
10487
  metricId?: string;
10235
10488
  /**
10236
10489
  * @remarks
10237
- * CPU diagnostic
10490
+ * The name of the diagnostic metric.
10238
10491
  *
10239
10492
  * @example
10240
- * The category of the diagnostic metric.
10493
+ * CPU diagnostic
10241
10494
  */
10242
10495
  metricName?: string;
10243
10496
  /**
10244
10497
  * @remarks
10245
- * Indicates whether the diagnostic metric needs to be assessed by running a Cloud Assistant command in a guest operating system.
10498
+ * The resource type supported by the diagnostic metric.
10246
10499
  *
10247
10500
  * @example
10248
10501
  * instance
10249
10502
  */
10250
10503
  resourceType?: string;
10251
10504
  /**
10505
+ * @remarks
10506
+ * The operating system type supported by the diagnostic metric. Valid values:
10507
+ *
10508
+ * * Windows
10509
+ * * Linux
10510
+ * * All: Windows and Linux
10511
+ *
10252
10512
  * @example
10253
10513
  * ALL
10254
10514
  */
@@ -10410,7 +10670,7 @@ export declare class DescribeDiagnosticReportAttributesResponseBodyMetricResults
10410
10670
  export declare class DescribeDiagnosticReportsResponseBodyReportsReportIssuesIssue extends $dara.Model {
10411
10671
  /**
10412
10672
  * @remarks
10413
- * The unique ID of the diagnosed issue.
10673
+ * The ID of the diagnosed issue, which is the unique identifier of the issue.
10414
10674
  *
10415
10675
  * @example
10416
10676
  * GuestOS.CPU.HighUtiliz*****
@@ -10479,7 +10739,7 @@ export declare class DescribeDiagnosticReportsResponseBodyReportsReport extends
10479
10739
  creationTime?: string;
10480
10740
  /**
10481
10741
  * @remarks
10482
- * The end of the reporting period of the diagnostic report. The value is the EndTime value that was passed in when you called the [CreateDiagnosticReport](https://help.aliyun.com/document_detail/442490.html) operation to create the diagnostic report.
10742
+ * The end of the time range during which data was queried. The value is the EndTime value that was passed in when you called the [CreateDiagnosticReport](https://help.aliyun.com/document_detail/442490.html) operation to create the diagnostic report.
10483
10743
  *
10484
10744
  * @example
10485
10745
  * 2022-07-11T14:00:00Z
@@ -10495,7 +10755,7 @@ export declare class DescribeDiagnosticReportsResponseBodyReportsReport extends
10495
10755
  finishedTime?: string;
10496
10756
  /**
10497
10757
  * @remarks
10498
- * The list of issues.
10758
+ * The diagnosed issues.
10499
10759
  */
10500
10760
  issues?: DescribeDiagnosticReportsResponseBodyReportsReportIssues;
10501
10761
  /**
@@ -10534,7 +10794,7 @@ export declare class DescribeDiagnosticReportsResponseBodyReportsReport extends
10534
10794
  * @remarks
10535
10795
  * The severity level of the diagnostic report. Valid values:
10536
10796
  *
10537
- * * Unknown: The diagnostic has not started, failed to run, or exited unexpectedly without a diagnosis.
10797
+ * * Unknown: The diagnostic did not start, failed to run, or unexpectedly exited without a diagnosis.
10538
10798
  * * Normal: No exceptions were detected.
10539
10799
  * * Info: Diagnostic information was recorded and may be related to exceptions.
10540
10800
  * * Warn: Diagnostic information was recorded and may indicate exceptions.
@@ -10546,7 +10806,7 @@ export declare class DescribeDiagnosticReportsResponseBodyReportsReport extends
10546
10806
  severity?: string;
10547
10807
  /**
10548
10808
  * @remarks
10549
- * The beginning of the reporting period of the diagnostic report. The value is the StartTime value that was passed in when you called the [CreateDiagnosticReport](https://help.aliyun.com/document_detail/442490.html) operation to create the diagnostic report.
10809
+ * The beginning of the time range during which data was queried. The value is the StartTime value that was passed in when you called the [CreateDiagnosticReport](https://help.aliyun.com/document_detail/442490.html) operation to create the diagnostic report.
10550
10810
  *
10551
10811
  * @example
10552
10812
  * 2022-07-11T12:00:00Z
@@ -10554,7 +10814,7 @@ export declare class DescribeDiagnosticReportsResponseBodyReportsReport extends
10554
10814
  startTime?: string;
10555
10815
  /**
10556
10816
  * @remarks
10557
- * The state of the diagnostic report.
10817
+ * The status of the diagnostic report.
10558
10818
  *
10559
10819
  * @example
10560
10820
  * Finished
@@ -13257,6 +13517,18 @@ export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelin
13257
13517
  });
13258
13518
  }
13259
13519
  export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetAdvancedOptions extends $dara.Model {
13520
+ /**
13521
+ * @remarks
13522
+ * Indicates whether to retain Cloud Assistant. During the image building process, the system automatically installs Cloud Assistant in the intermediate instance to run commands. You can choose whether to retain Cloud Assistant in the new image created based on the image template. Valid values:
13523
+ *
13524
+ * * true: retains Cloud Assistant.
13525
+ * * false: does not retain Cloud Assistant.
13526
+ *
13527
+ * > This parameter does not affect Cloud Assistant that comes with your image.
13528
+ *
13529
+ * @example
13530
+ * true
13531
+ */
13260
13532
  retainCloudAssistant?: boolean;
13261
13533
  static names(): {
13262
13534
  [key: string]: string;
@@ -13270,9 +13542,48 @@ export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelin
13270
13542
  });
13271
13543
  }
13272
13544
  export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetImportImageOptionsDiskDeviceMappingsDiskDeviceMapping extends $dara.Model {
13545
+ /**
13546
+ * @remarks
13547
+ * The size of disk N in the custom image after the image is imported.
13548
+ *
13549
+ * You can use this parameter to specify the sizes of the system disk and data disks in the custom image. When you specify the size of the system disk, make sure that the specified size is greater than or equal to the size of the source image file. Unit: GiB. Valid values:
13550
+ *
13551
+ * * When N is set to 1, this parameter indicates the size of the system disk in the custom image. Valid values: 1 to 2048.
13552
+ * * When N is set to an integer in the range of 2 to 17, this parameter indicates the size of a data disk in the custom image. Valid values: 1 to 2048.
13553
+ *
13554
+ * After the image file is uploaded to an OSS bucket, you can view the size of the image file in the OSS bucket.
13555
+ *
13556
+ * @example
13557
+ * 40
13558
+ */
13273
13559
  diskImageSize?: number;
13560
+ /**
13561
+ * @remarks
13562
+ * The format of the image. Valid values:
13563
+ *
13564
+ * * RAW
13565
+ * * VHD
13566
+ * * QCOW2
13567
+ *
13568
+ * @example
13569
+ * RAW
13570
+ */
13274
13571
  format?: string;
13572
+ /**
13573
+ * @remarks
13574
+ * The Object Storage Service (OSS) bucket where the image file is stored.
13575
+ *
13576
+ * @example
13577
+ * ecsimageos
13578
+ */
13275
13579
  OSSBucket?: string;
13580
+ /**
13581
+ * @remarks
13582
+ * The name (key) of the object that the image file is stored as in the OSS bucket.
13583
+ *
13584
+ * @example
13585
+ * CentOS_5.4_32.raw
13586
+ */
13276
13587
  OSSObject?: string;
13277
13588
  static names(): {
13278
13589
  [key: string]: string;
@@ -13299,6 +13610,16 @@ export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelin
13299
13610
  });
13300
13611
  }
13301
13612
  export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetImportImageOptionsFeatures extends $dara.Model {
13613
+ /**
13614
+ * @remarks
13615
+ * Indicates whether the image supports the NVMe protocol. Valid values:
13616
+ *
13617
+ * * supported: The image supports the NVMe protocol. Instances created from the image also support the NVMe protocol.
13618
+ * * unsupported: The image does not support the NVMe protocol. Instances created from the image do not support the NVMe protocol.
13619
+ *
13620
+ * @example
13621
+ * supported
13622
+ */
13302
13623
  nvmeSupport?: string;
13303
13624
  static names(): {
13304
13625
  [key: string]: string;
@@ -13312,13 +13633,110 @@ export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelin
13312
13633
  });
13313
13634
  }
13314
13635
  export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetImportImageOptions extends $dara.Model {
13636
+ /**
13637
+ * @remarks
13638
+ * The operating system architecture. Valid values:
13639
+ *
13640
+ * * x86_64
13641
+ * * arm64
13642
+ *
13643
+ * @example
13644
+ * x86_64
13645
+ */
13315
13646
  architecture?: string;
13647
+ /**
13648
+ * @remarks
13649
+ * The boot mode of the image. Valid values:
13650
+ *
13651
+ * * BIOS: BIOS mode
13652
+ * * UEFI: Unified Extensible Firmware Interface (UEFI) mode
13653
+ *
13654
+ * @example
13655
+ * BIOS
13656
+ */
13316
13657
  bootMode?: string;
13658
+ /**
13659
+ * @remarks
13660
+ * The information of disk N from which a custom image is created.
13661
+ *
13662
+ * * When N is set to 1, a custom image is created from the system disk.
13663
+ * * When N is set to an integer in the range of 2 to 17, a custom image is created from a data disk.
13664
+ */
13317
13665
  diskDeviceMappings?: DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetImportImageOptionsDiskDeviceMappings;
13666
+ /**
13667
+ * @remarks
13668
+ * The attributes of the custom image.
13669
+ */
13318
13670
  features?: DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetImportImageOptionsFeatures;
13671
+ /**
13672
+ * @remarks
13673
+ * The type of the license to use to activate the operating system after the image is imported. Valid values:
13674
+ *
13675
+ * * Auto: ECS detects the operating system of the image and allocates a license to the operating system In this mode, the system first checks whether a license allocated by an official Alibaba Cloud channel is specified in the `Platform`. If a license allocated by an official Alibaba Cloud channel is specified, the system allocates the license to the imported image. If no such license is specified, the Bring Your Own License (BYOL) mode is used.
13676
+ * * Aliyun: The license allocated through an official Alibaba Cloud channel is used for the operating system distribution specified by `Platform`.
13677
+ * * BYOL: The license that comes with the source operating system is used. When you use the BYOL license, make sure that your license key is supported by Alibaba Cloud.
13678
+ *
13679
+ * @example
13680
+ * Auto
13681
+ */
13319
13682
  licenseType?: string;
13683
+ /**
13684
+ * @remarks
13685
+ * The operating system type. Valid values:
13686
+ *
13687
+ * * windows: Windows operating systems
13688
+ * * linux: Linux operating systems
13689
+ *
13690
+ * @example
13691
+ * linux
13692
+ */
13320
13693
  OSType?: string;
13694
+ /**
13695
+ * @remarks
13696
+ * The version of the operating system. Valid values:
13697
+ *
13698
+ * * Aliyun
13699
+ * * Anolis
13700
+ * * CentOS
13701
+ * * Ubuntu
13702
+ * * CoreOS
13703
+ * * SUSE
13704
+ * * Debian
13705
+ * * OpenSUSE
13706
+ * * FreeBSD
13707
+ * * RedHat
13708
+ * * Kylin
13709
+ * * UOS
13710
+ * * Fedora
13711
+ * * Fedora CoreOS
13712
+ * * CentOS Stream
13713
+ * * AlmaLinux
13714
+ * * Rocky Linux
13715
+ * * Gentoo
13716
+ * * Customized Linux
13717
+ * * Others Linux
13718
+ * * Windows Server 2022
13719
+ * * Windows Server 2019
13720
+ * * Windows Server 2016
13721
+ * * Windows Server 2012
13722
+ * * Windows Server 2008
13723
+ * * Windows Server 2003
13724
+ * * Other Windows
13725
+ *
13726
+ * @example
13727
+ * Aliyun
13728
+ */
13321
13729
  platform?: string;
13730
+ /**
13731
+ * @remarks
13732
+ * Indicates whether to retain the imported image. After the image is imported, the system automatically deletes the source image to prevent unnecessary storage costs. You can also choose whether to retain it. Valid values:
13733
+ *
13734
+ * * true: retains the image. After the image is imported, the source image is not deleted even if the image building task is canceled or fails.
13735
+ * * false: does not retain the image.
13736
+ *
13737
+ * @example
13738
+ * false
13739
+ */
13322
13740
  retainImportedImage?: boolean;
13323
13741
  static names(): {
13324
13742
  [key: string]: string;
@@ -13391,6 +13809,10 @@ export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelin
13391
13809
  * The IDs of Alibaba Cloud accounts to which to share the image that will be created based on the image template.
13392
13810
  */
13393
13811
  addAccounts?: DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetAddAccounts;
13812
+ /**
13813
+ * @remarks
13814
+ * The advanced settings.
13815
+ */
13394
13816
  advancedOptions?: DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetAdvancedOptions;
13395
13817
  /**
13396
13818
  * @remarks
@@ -13470,6 +13892,10 @@ export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelin
13470
13892
  * ip-2ze5tsl5bp6nf2b3****
13471
13893
  */
13472
13894
  imagePipelineId?: string;
13895
+ /**
13896
+ * @remarks
13897
+ * The properties and settings of the image template that you import.
13898
+ */
13473
13899
  importImageOptions?: DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetImportImageOptions;
13474
13900
  /**
13475
13901
  * @remarks
@@ -13495,6 +13921,17 @@ export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelin
13495
13921
  * testImagePipeline
13496
13922
  */
13497
13923
  name?: string;
13924
+ /**
13925
+ * @remarks
13926
+ * Indicates whether the image created based on the image template supports Non-Volatile Memory Express (NVMe). Valid values:
13927
+ *
13928
+ * * supported: The image supports the NVMe protocol. Instances created from the image also support the NVMe protocol.
13929
+ * * unsupported: The image does not support the NVMe protocol. Instances created from the image do not support the NVMe protocol.
13930
+ * * auto: The system automatically checks whether the image supports the NVMe protocol. The system automatically checks whether the NVMe driver is installed on your image before the image is built. If you install or uninstall the NVMe driver during the image building task, the check result may be incorrect. We recommend that you set the value to supported or unsupported based on the image building content.
13931
+ *
13932
+ * @example
13933
+ * auto
13934
+ */
13498
13935
  nvmeSupport?: string;
13499
13936
  /**
13500
13937
  * @remarks
@@ -13898,6 +14335,9 @@ export declare class DescribeImagesResponseBodyImagesImageDiskDeviceMappingsDisk
13898
14335
  */
13899
14336
  device?: string;
13900
14337
  /**
14338
+ * @remarks
14339
+ * > This parameter is in invitational preview.
14340
+ *
13901
14341
  * @example
13902
14342
  * true
13903
14343
  */
@@ -13994,6 +14434,12 @@ export declare class DescribeImagesResponseBodyImagesImageFeatures extends $dara
13994
14434
  cpuOnlineDowngrade?: string;
13995
14435
  cpuOnlineUpgrade?: string;
13996
14436
  /**
14437
+ * @remarks
14438
+ * The image metadata access mode. Valid values:
14439
+ *
14440
+ * * v1: You cannot set the image metadata access mode to security hardening when you create instances from the image.
14441
+ * * v2: You can set the image metadata access mode to security hardening when you create instances from the image.
14442
+ *
13997
14443
  * @example
13998
14444
  * v2
13999
14445
  */
@@ -15919,14 +16365,44 @@ export declare class DescribeInstanceTypesResponseBodyInstanceTypesInstanceTypeC
15919
16365
  });
15920
16366
  }
15921
16367
  export declare class DescribeInstanceTypesResponseBodyInstanceTypesInstanceTypeCpuOptions extends $dara.Model {
16368
+ /**
16369
+ * @remarks
16370
+ * CPU core.
16371
+ *
16372
+ * @example
16373
+ * 2
16374
+ */
15922
16375
  core?: number;
16376
+ /**
16377
+ * @remarks
16378
+ * CPU core factor.
16379
+ *
16380
+ * @example
16381
+ * 2
16382
+ */
15923
16383
  coreFactor?: number;
16384
+ /**
16385
+ * @remarks
16386
+ * Indicates whether Hyper-Threading is adjustable.
16387
+ *
16388
+ * @example
16389
+ * true
16390
+ */
15924
16391
  hyperThreadingAdjustable?: boolean;
15925
16392
  /**
15926
16393
  * @remarks
15927
16394
  * The CPU topology types of the instance type.
15928
16395
  */
15929
16396
  supportedTopologyTypes?: DescribeInstanceTypesResponseBodyInstanceTypesInstanceTypeCpuOptionsSupportedTopologyTypes;
16397
+ /**
16398
+ * @remarks
16399
+ * CPU threads per core.
16400
+ *
16401
+ * > `CpuOptions.ThreadsPerCore=1` indicates the shutdown of CPU Hyper-Threading.
16402
+ *
16403
+ * @example
16404
+ * 2
16405
+ */
15930
16406
  threadsPerCore?: number;
15931
16407
  static names(): {
15932
16408
  [key: string]: string;
@@ -15940,6 +16416,13 @@ export declare class DescribeInstanceTypesResponseBodyInstanceTypesInstanceTypeC
15940
16416
  });
15941
16417
  }
15942
16418
  export declare class DescribeInstanceTypesResponseBodyInstanceTypesInstanceTypeEnhancedNetwork extends $dara.Model {
16419
+ /**
16420
+ * @remarks
16421
+ * > This parameter is not publicly available.
16422
+ *
16423
+ * @example
16424
+ * true
16425
+ */
15943
16426
  rssSupport?: boolean;
15944
16427
  /**
15945
16428
  * @remarks
@@ -16247,6 +16730,13 @@ export declare class DescribeInstanceTypesResponseBodyInstanceTypesInstanceType
16247
16730
  * ecs.g6.large
16248
16731
  */
16249
16732
  instanceTypeId?: string;
16733
+ /**
16734
+ * @remarks
16735
+ * Indicates whether jumbo frames are supported.
16736
+ *
16737
+ * @example
16738
+ * true
16739
+ */
16250
16740
  jumboFrameSupport?: boolean;
16251
16741
  /**
16252
16742
  * @remarks
@@ -16887,7 +17377,9 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceNetworkInterf
16887
17377
  primary?: boolean;
16888
17378
  /**
16889
17379
  * @remarks
16890
- * > This parameter is in invitational preview and is not publicly available.
17380
+ * The private domain name of the instance.
17381
+ *
17382
+ * > This parameter has a value in a specific format only if `HostnameType` is set to `IpBased` or `InstanceIdBased`.
16891
17383
  *
16892
17384
  * @example
16893
17385
  * dnsTestName
@@ -17055,7 +17547,12 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceOperationLock
17055
17547
  export declare class DescribeInstancesResponseBodyInstancesInstancePrivateDnsNameOptions extends $dara.Model {
17056
17548
  /**
17057
17549
  * @remarks
17058
- * > This parameter is in invitational preview and is not publicly available.
17550
+ * Indicates whether DNS Resolution from the Instance ID-based Hostname to the Instance Primary Private IPv6 Address (AAAA Record) is enabled. Valid values:
17551
+ *
17552
+ * * true
17553
+ * * false
17554
+ *
17555
+ * Default value: false.
17059
17556
  *
17060
17557
  * @example
17061
17558
  * false
@@ -17063,7 +17560,12 @@ export declare class DescribeInstancesResponseBodyInstancesInstancePrivateDnsNam
17063
17560
  enableInstanceIdDnsAAAARecord?: boolean;
17064
17561
  /**
17065
17562
  * @remarks
17066
- * > This parameter is in invitational preview and is not publicly available.
17563
+ * Indicates whether DNS Resolution from the Instance ID-based Hostname to the Instance Primary Private IPv4 Address (A Record) is enabled. Valid values:
17564
+ *
17565
+ * * true
17566
+ * * false
17567
+ *
17568
+ * Default value: false.
17067
17569
  *
17068
17570
  * @example
17069
17571
  * false
@@ -17071,7 +17573,12 @@ export declare class DescribeInstancesResponseBodyInstancesInstancePrivateDnsNam
17071
17573
  enableInstanceIdDnsARecord?: boolean;
17072
17574
  /**
17073
17575
  * @remarks
17074
- * > This parameter is in invitational preview and is not publicly available.
17576
+ * Indicates whether DNS Resolution from the IP Address-based Hostname to the Instance Primary Private IPv4 Address (A Record) is enabled. Valid values:
17577
+ *
17578
+ * * true
17579
+ * * false
17580
+ *
17581
+ * Default value: false.
17075
17582
  *
17076
17583
  * @example
17077
17584
  * true
@@ -17079,7 +17586,12 @@ export declare class DescribeInstancesResponseBodyInstancesInstancePrivateDnsNam
17079
17586
  enableIpDnsARecord?: boolean;
17080
17587
  /**
17081
17588
  * @remarks
17082
- * > This parameter is in invitational preview and is not publicly available.
17589
+ * Indicates whether Reverse DNS Resolution from the Instance Primary Private IPv4 Address to the IP Address-based Hostname (PTR Record) is enabled. Valid values:
17590
+ *
17591
+ * * true
17592
+ * * false
17593
+ *
17594
+ * Default value: false.
17083
17595
  *
17084
17596
  * @example
17085
17597
  * true
@@ -17087,7 +17599,13 @@ export declare class DescribeInstancesResponseBodyInstancesInstancePrivateDnsNam
17087
17599
  enableIpDnsPtrRecord?: boolean;
17088
17600
  /**
17089
17601
  * @remarks
17090
- * > This parameter is in invitational preview and is not publicly available.
17602
+ * The type of hostname. Valid values:
17603
+ *
17604
+ * * Custom: custom hostname
17605
+ * * IpBased: IP address-based hostname
17606
+ * * InstanceIdBased: instance ID-based hostname
17607
+ *
17608
+ * Default value: Custom.
17091
17609
  *
17092
17610
  * @example
17093
17611
  * Custom
@@ -17601,7 +18119,9 @@ export declare class DescribeInstancesResponseBodyInstancesInstance extends $dar
17601
18119
  operationLocks?: DescribeInstancesResponseBodyInstancesInstanceOperationLocks;
17602
18120
  /**
17603
18121
  * @remarks
17604
- * > This parameter is in invitational preview and is not publicly available.
18122
+ * The private domain name options of the instance.
18123
+ *
18124
+ * For information about the resolution of ECS private domain names, see [ECS private DNS resolution](https://help.aliyun.com/document_detail/2844797.html).
17605
18125
  */
17606
18126
  privateDnsNameOptions?: DescribeInstancesResponseBodyInstancesInstancePrivateDnsNameOptions;
17607
18127
  /**
@@ -19080,6 +19600,7 @@ export declare class DescribeInvocationsResponseBodyInvocationsInvocation extend
19080
19600
  * * Period: The command is run on a schedule.
19081
19601
  * * NextRebootOnly: The command is run the next time the instances start.
19082
19602
  * * EveryReboot: The command is run every time the instances start.
19603
+ * * DryRun: The system performs only a dry run, without running the actual command. The system checks the request parameters, the execution environments on the instances, and the status of Cloud Assistant Agent.
19083
19604
  *
19084
19605
  * @example
19085
19606
  * Once
@@ -20761,7 +21282,9 @@ export declare class DescribeNetworkInterfaceAttributeResponseBodyBondInterfaceS
20761
21282
  export declare class DescribeNetworkInterfaceAttributeResponseBodyConnectionTrackingConfiguration extends $dara.Model {
20762
21283
  /**
20763
21284
  * @remarks
20764
- * > This parameter is not publicly available.
21285
+ * The timeout period for TCP connections in the TIME_WAIT or CLOSE_WAIT state. Unit: seconds. Valid values: integers from 3 to 15.
21286
+ *
21287
+ * > If the associated Elastic Compute Service (ECS) instance is used with a Network Load Balancer (NLB) or Classic Load Balancer (CLB) instance, the default timeout period for TCP connections in the `TIME_WAIT` state is 15 seconds.
20765
21288
  *
20766
21289
  * @example
20767
21290
  * 3
@@ -20769,7 +21292,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBodyConnectionTrac
20769
21292
  tcpClosedAndTimeWaitTimeout?: number;
20770
21293
  /**
20771
21294
  * @remarks
20772
- * > This parameter is not publicly available.
21295
+ * The timeout period for TCP connections in the ESTABLISHED state. Unit: seconds. Valid values: 30, 60, 80, 100, 200, 300, 500, 700, and 910.
20773
21296
  *
20774
21297
  * @example
20775
21298
  * 910
@@ -20777,7 +21300,9 @@ export declare class DescribeNetworkInterfaceAttributeResponseBodyConnectionTrac
20777
21300
  tcpEstablishedTimeout?: number;
20778
21301
  /**
20779
21302
  * @remarks
20780
- * > This parameter is not publicly available.
21303
+ * The timeout period for UDP flows. Unit: seconds. Valid values: 10, 20, 30, 60, 80, and 100.
21304
+ *
21305
+ * > If the associated ECS instance is used with an NLB or CLB instance, the default timeout period for UDP flows is 100 seconds.
20781
21306
  *
20782
21307
  * @example
20783
21308
  * 30
@@ -20795,6 +21320,13 @@ export declare class DescribeNetworkInterfaceAttributeResponseBodyConnectionTrac
20795
21320
  });
20796
21321
  }
20797
21322
  export declare class DescribeNetworkInterfaceAttributeResponseBodyEnhancedNetwork extends $dara.Model {
21323
+ /**
21324
+ * @remarks
21325
+ * > This parameter is not publicly available.
21326
+ *
21327
+ * @example
21328
+ * true
21329
+ */
20798
21330
  enableRss?: boolean;
20799
21331
  /**
20800
21332
  * @remarks
@@ -21446,7 +21978,9 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
21446
21978
  primary?: boolean;
21447
21979
  /**
21448
21980
  * @remarks
21449
- * > This parameter is in invitational preview and is not publicly available.
21981
+ * The private domain name of the ECS instance.
21982
+ *
21983
+ * > A private domain name can be returned in a specific format only when `HostnameType` is set to `IP` or `InstanceId`.
21450
21984
  *
21451
21985
  * @example
21452
21986
  * DnsTestName
@@ -21914,13 +22448,16 @@ export declare class DescribePrefixListAssociationsResponseBodyPrefixListAssocia
21914
22448
  }
21915
22449
  export declare class DescribePrefixListAttributesResponseBodyEntriesEntry extends $dara.Model {
21916
22450
  /**
22451
+ * @remarks
22452
+ * The CIDR block in entry N.
22453
+ *
21917
22454
  * @example
21918
22455
  * 192.168.1.0/24
21919
22456
  */
21920
22457
  cidr?: string;
21921
22458
  /**
21922
22459
  * @remarks
21923
- * The CIDR block in the entry in the prefix list.
22460
+ * The description in entry N.
21924
22461
  *
21925
22462
  * @example
21926
22463
  * Description Sample 01
@@ -22713,34 +23250,28 @@ export declare class DescribeRecommendInstanceTypeResponseBodyData extends $dara
22713
23250
  export declare class DescribeRegionsResponseBodyRegionsRegion extends $dara.Model {
22714
23251
  /**
22715
23252
  * @remarks
22716
- * The name of the region.
23253
+ * cn-qingdao-et2-bo1
22717
23254
  *
22718
23255
  * @example
22719
- * China (Qingdao)
23256
+ * DescribeRegions
22720
23257
  */
22721
23258
  localName?: string;
22722
23259
  /**
22723
23260
  * @remarks
22724
- * The endpoint of the region.
23261
+ * The ID of the region.
22725
23262
  *
22726
23263
  * @example
22727
- * ecs.aliyuncs.com
23264
+ * ecs.cn-qingdao.aliyuncs.com
22728
23265
  */
22729
23266
  regionEndpoint?: string;
22730
23267
  /**
22731
- * @remarks
22732
- * The ID of the region.
22733
- *
22734
23268
  * @example
22735
- * cn-qingdao-et2-bo1
23269
+ * cn-qingdao
22736
23270
  */
22737
23271
  regionId?: string;
22738
23272
  /**
22739
23273
  * @remarks
22740
- * Indicates whether clusters are sold out. Valid values:
22741
- *
22742
- * * available
22743
- * * soldOut
23274
+ * China (Qingdao)
22744
23275
  *
22745
23276
  * @example
22746
23277
  * available
@@ -22770,7 +23301,7 @@ export declare class DescribeRegionsResponseBodyRegions extends $dara.Model {
22770
23301
  [key: string]: any;
22771
23302
  });
22772
23303
  }
22773
- export declare class DescribeRenewalPriceResponseBodyPriceInfoPriceDetailInfosResourcePriceModelSubRulesRule extends $dara.Model {
23304
+ export declare class DescribeRenewalPriceResponseBodyPriceInfoPriceDetailInfosDetailInfoSubRulesRule extends $dara.Model {
22774
23305
  /**
22775
23306
  * @remarks
22776
23307
  * The description of the pricing rule.
@@ -22798,8 +23329,8 @@ export declare class DescribeRenewalPriceResponseBodyPriceInfoPriceDetailInfosRe
22798
23329
  [key: string]: any;
22799
23330
  });
22800
23331
  }
22801
- export declare class DescribeRenewalPriceResponseBodyPriceInfoPriceDetailInfosResourcePriceModelSubRules extends $dara.Model {
22802
- rule?: DescribeRenewalPriceResponseBodyPriceInfoPriceDetailInfosResourcePriceModelSubRulesRule[];
23332
+ export declare class DescribeRenewalPriceResponseBodyPriceInfoPriceDetailInfosDetailInfoSubRules extends $dara.Model {
23333
+ rule?: DescribeRenewalPriceResponseBodyPriceInfoPriceDetailInfosDetailInfoSubRulesRule[];
22803
23334
  static names(): {
22804
23335
  [key: string]: string;
22805
23336
  };
@@ -22811,7 +23342,7 @@ export declare class DescribeRenewalPriceResponseBodyPriceInfoPriceDetailInfosRe
22811
23342
  [key: string]: any;
22812
23343
  });
22813
23344
  }
22814
- export declare class DescribeRenewalPriceResponseBodyPriceInfoPriceDetailInfosResourcePriceModel extends $dara.Model {
23345
+ export declare class DescribeRenewalPriceResponseBodyPriceInfoPriceDetailInfosDetailInfo extends $dara.Model {
22815
23346
  /**
22816
23347
  * @remarks
22817
23348
  * The discount.
@@ -22840,7 +23371,7 @@ export declare class DescribeRenewalPriceResponseBodyPriceInfoPriceDetailInfosRe
22840
23371
  * @remarks
22841
23372
  * The pricing rules.
22842
23373
  */
22843
- subRules?: DescribeRenewalPriceResponseBodyPriceInfoPriceDetailInfosResourcePriceModelSubRules;
23374
+ subRules?: DescribeRenewalPriceResponseBodyPriceInfoPriceDetailInfosDetailInfoSubRules;
22844
23375
  /**
22845
23376
  * @remarks
22846
23377
  * The transaction price.
@@ -22861,7 +23392,7 @@ export declare class DescribeRenewalPriceResponseBodyPriceInfoPriceDetailInfosRe
22861
23392
  });
22862
23393
  }
22863
23394
  export declare class DescribeRenewalPriceResponseBodyPriceInfoPriceDetailInfos extends $dara.Model {
22864
- resourcePriceModel?: DescribeRenewalPriceResponseBodyPriceInfoPriceDetailInfosResourcePriceModel[];
23395
+ detailInfo?: DescribeRenewalPriceResponseBodyPriceInfoPriceDetailInfosDetailInfo[];
22865
23396
  static names(): {
22866
23397
  [key: string]: string;
22867
23398
  };
@@ -25931,7 +26462,7 @@ export declare class DescribeSpotPriceHistoryResponseBodySpotPrices extends $dar
25931
26462
  export declare class DescribeStorageCapacityUnitsRequestTag extends $dara.Model {
25932
26463
  /**
25933
26464
  * @remarks
25934
- * The key of tag N of the SCU. N is the identifier for the tag, which you can use to set and query the tag. Valid values of N: 1 to 20.
26465
+ * The key of tag N to be added to the SCU.
25935
26466
  *
25936
26467
  * @example
25937
26468
  * TestKey
@@ -25939,7 +26470,7 @@ export declare class DescribeStorageCapacityUnitsRequestTag extends $dara.Model
25939
26470
  key?: string;
25940
26471
  /**
25941
26472
  * @remarks
25942
- * The value of tag N of the SCU. N is the identifier for the tag, which you can use to set and query the tag. The value of N must coincide with `Tag.N.Key`. Valid values of N: 1 to 20.
26473
+ * The value of tag N to be added to the SCU.
25943
26474
  *
25944
26475
  * @example
25945
26476
  * TestValue
@@ -26067,7 +26598,12 @@ export declare class DescribeStorageCapacityUnitsResponseBodyStorageCapacityUnit
26067
26598
  startTime?: string;
26068
26599
  /**
26069
26600
  * @remarks
26070
- * The state of the SCU.
26601
+ * The status of the SCU. Valid values:
26602
+ *
26603
+ * * Creating: The SCUs are being created.
26604
+ * * Active: The SCUs are in effect.
26605
+ * * Expired: The SCUs have expired.
26606
+ * * Pending: The SCUs have not taken effect.
26071
26607
  *
26072
26608
  * @example
26073
26609
  * Active
@@ -27549,6 +28085,9 @@ export declare class DetachKeyPairResponseBodyResults extends $dara.Model {
27549
28085
  }
27550
28086
  export declare class DisableActivationResponseBodyActivation extends $dara.Model {
27551
28087
  /**
28088
+ * @remarks
28089
+ * The ID of the activation code.
28090
+ *
27552
28091
  * @example
27553
28092
  * 4ECEEE12-56F1-4FBC-9AB1-890F1234****
27554
28093
  */
@@ -28807,7 +29346,12 @@ export declare class ModifyInstanceAttributeRequestCpuOptions extends $dara.Mode
28807
29346
  export declare class ModifyInstanceAttributeRequestPrivateDnsNameOptions extends $dara.Model {
28808
29347
  /**
28809
29348
  * @remarks
28810
- * > This parameter is in invitational preview and is not publicly available.
29349
+ * Specifies whether DNS Resolution from the Instance ID-based Hostname to the Instance Primary Private IPv6 Address (AAAA Record) is enabled. Valid values:
29350
+ *
29351
+ * * true
29352
+ * * false
29353
+ *
29354
+ * Default value: false.
28811
29355
  *
28812
29356
  * @example
28813
29357
  * false
@@ -28815,7 +29359,12 @@ export declare class ModifyInstanceAttributeRequestPrivateDnsNameOptions extends
28815
29359
  enableInstanceIdDnsAAAARecord?: boolean;
28816
29360
  /**
28817
29361
  * @remarks
28818
- * > This parameter is in invitational preview and is not publicly available.
29362
+ * Specifies whether DNS Resolution from the Instance ID-based Hostname to the Instance Primary Private IPv4 Address (A Record) is enabled. Valid values:
29363
+ *
29364
+ * * true
29365
+ * * false
29366
+ *
29367
+ * Default value: false.
28819
29368
  *
28820
29369
  * @example
28821
29370
  * false
@@ -28823,7 +29372,12 @@ export declare class ModifyInstanceAttributeRequestPrivateDnsNameOptions extends
28823
29372
  enableInstanceIdDnsARecord?: boolean;
28824
29373
  /**
28825
29374
  * @remarks
28826
- * > This parameter is in invitational preview and is not publicly available.
29375
+ * Specifies whether DNS Resolution from the IP Address-based Hostname to the Instance Primary Private IPv4 Address (A Record) is enabled. Valid values:
29376
+ *
29377
+ * * true
29378
+ * * false
29379
+ *
29380
+ * Default value: false.
28827
29381
  *
28828
29382
  * @example
28829
29383
  * false
@@ -28831,7 +29385,12 @@ export declare class ModifyInstanceAttributeRequestPrivateDnsNameOptions extends
28831
29385
  enableIpDnsARecord?: boolean;
28832
29386
  /**
28833
29387
  * @remarks
28834
- * > This parameter is in invitational preview and is not publicly available.
29388
+ * Specifies whether Reverse DNS Resolution from the Instance Primary Private IPv4 Address to the IP Address-based Hostname (PTR Record) is enabled. Valid values:
29389
+ *
29390
+ * * true
29391
+ * * false
29392
+ *
29393
+ * Default value: false.
28835
29394
  *
28836
29395
  * @example
28837
29396
  * false
@@ -28839,7 +29398,13 @@ export declare class ModifyInstanceAttributeRequestPrivateDnsNameOptions extends
28839
29398
  enableIpDnsPtrRecord?: boolean;
28840
29399
  /**
28841
29400
  * @remarks
28842
- * > This parameter is in invitational preview and is not publicly available.
29401
+ * The type of the hostname. Valid values:
29402
+ *
29403
+ * * Custom: custom hostname.
29404
+ * * IpBased: IP address-based hostname.
29405
+ * * InstanceIdBased: instance ID-based hostname.
29406
+ *
29407
+ * Default value: Custom.
28843
29408
  *
28844
29409
  * @example
28845
29410
  * Custom
@@ -29055,6 +29620,9 @@ export declare class ModifyInstanceSpecRequestDisk extends $dara.Model {
29055
29620
  }
29056
29621
  export declare class ModifyManagedInstanceResponseBodyInstance extends $dara.Model {
29057
29622
  /**
29623
+ * @remarks
29624
+ * The managed instance ID.
29625
+ *
29058
29626
  * @example
29059
29627
  * mi-hz01nmcf****
29060
29628
  */
@@ -29081,7 +29649,11 @@ export declare class ModifyManagedInstanceResponseBodyInstance extends $dara.Mod
29081
29649
  export declare class ModifyNetworkInterfaceAttributeRequestConnectionTrackingConfiguration extends $dara.Model {
29082
29650
  /**
29083
29651
  * @remarks
29084
- * > This parameter is in invitational preview and is not publicly available.
29652
+ * The timeout period for TCP connections in the TIME_WAIT or CLOSE_WAIT state. Unit: seconds. Valid values: integers from 3 to 15.
29653
+ *
29654
+ * Default value: 3.
29655
+ *
29656
+ * > If the associated ECS instance is used together with a Network Load Balancer (NLB) or Classic Load Balancer (CLB) instance, the default timeout period for TCP connections in the `TIME_WAIT` state is 15 seconds.
29085
29657
  *
29086
29658
  * @example
29087
29659
  * 3
@@ -29089,7 +29661,9 @@ export declare class ModifyNetworkInterfaceAttributeRequestConnectionTrackingCon
29089
29661
  tcpClosedAndTimeWaitTimeout?: number;
29090
29662
  /**
29091
29663
  * @remarks
29092
- * > This parameter is in invitational preview and is not publicly available.
29664
+ * The timeout period for TCP connections in the ESTABLISHED state. Unit: seconds. Valid values: 30, 60, 80, 100, 200, 300, 500, 700, and 910.
29665
+ *
29666
+ * Default value: 910.
29093
29667
  *
29094
29668
  * @example
29095
29669
  * 910
@@ -29097,7 +29671,11 @@ export declare class ModifyNetworkInterfaceAttributeRequestConnectionTrackingCon
29097
29671
  tcpEstablishedTimeout?: number;
29098
29672
  /**
29099
29673
  * @remarks
29100
- * > This parameter is in invitational preview and is not publicly available.
29674
+ * The timeout period for UDP flows. Unit: seconds. Valid values: 10, 20, 30, 60, 80, and 100.
29675
+ *
29676
+ * Default value: 30.
29677
+ *
29678
+ * > If the associated ECS instance is used together with an NLB or CLB instance, the default timeout period for UDP flows is 100 seconds.
29101
29679
  *
29102
29680
  * @example
29103
29681
  * 30
@@ -29115,6 +29693,10 @@ export declare class ModifyNetworkInterfaceAttributeRequestConnectionTrackingCon
29115
29693
  });
29116
29694
  }
29117
29695
  export declare class ModifyNetworkInterfaceAttributeRequestEnhancedNetwork extends $dara.Model {
29696
+ /**
29697
+ * @example
29698
+ * false
29699
+ */
29118
29700
  enableRss?: boolean;
29119
29701
  /**
29120
29702
  * @remarks
@@ -31092,7 +31674,7 @@ export declare class RunInstancesRequestNetworkInterface extends $dara.Model {
31092
31674
  description?: string;
31093
31675
  /**
31094
31676
  * @remarks
31095
- * The type of ENI N. The value of the first N in this parameter 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.
31677
+ * 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.
31096
31678
  *
31097
31679
  * Valid values:
31098
31680
  *
@@ -31138,7 +31720,7 @@ export declare class RunInstancesRequestNetworkInterface extends $dara.Model {
31138
31720
  *
31139
31721
  * * You can specify network card indexes only for instances of specific instance types.
31140
31722
  * * If you set NetworkInterface.N.InstanceType to Primary, you can set NetworkInterface.N.NetworkCardIndex only to 0 for instance types that support network cards.
31141
- * * If you set NetworkInterface.N.InstanceType to Secondary or leave the parameter 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).
31723
+ * * If you set NetworkInterface.N.InstanceType to Secondary or leave NetworkInterface.N.InstanceType 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).
31142
31724
  *
31143
31725
  * @example
31144
31726
  * 0
@@ -31224,7 +31806,11 @@ export declare class RunInstancesRequestNetworkInterface extends $dara.Model {
31224
31806
  queueNumber?: number;
31225
31807
  /**
31226
31808
  * @remarks
31227
- * The number of queues supported by the ERI.
31809
+ * The number of queue pairs (QPs) supported by the ERI.
31810
+ *
31811
+ * If you want to attach multiple ERIs to a created instance, we recommend that you specify QueuePairNumber for each ERI based on the value of `QueuePairNumber` supported by the instance type and the number of ERIs that you want to use. Make sure that the total number of QPs of all ERIs does not exceed the maximum number of QPs supported by the instance type. For information about the maximum number of QPs supported by an instance type, see [DescribeInstanceTypes](https://help.aliyun.com/document_detail/2679699.html).
31812
+ *
31813
+ * > If you do not specify QueuePairNumber for an ERI, the maximum number of QPs supported by the instance type is used as the number of QPs supported by the ERI. In this case, you cannot attach an additional ERI to the instance. However, you can attach other types of ENIs to the instance.
31228
31814
  *
31229
31815
  * @example
31230
31816
  * 0
@@ -31273,6 +31859,13 @@ export declare class RunInstancesRequestNetworkInterface extends $dara.Model {
31273
31859
  * sg-bp15ed6xe1yxeycg7****
31274
31860
  */
31275
31861
  securityGroupIds?: string[];
31862
+ /**
31863
+ * @remarks
31864
+ * > This parameter is in invitational preview and is not publicly available.
31865
+ *
31866
+ * @example
31867
+ * false
31868
+ */
31276
31869
  sourceDestCheck?: boolean;
31277
31870
  /**
31278
31871
  * @remarks
@@ -31468,11 +32061,17 @@ export declare class SendFileRequestTag extends $dara.Model {
31468
32061
  }
31469
32062
  export declare class StartImagePipelineExecutionRequestTag extends $dara.Model {
31470
32063
  /**
32064
+ * @remarks
32065
+ * The key of tag N. 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`. The tag key cannot contain `http://` or `https://`.
32066
+ *
31471
32067
  * @example
31472
32068
  * TestKey
31473
32069
  */
31474
32070
  key?: string;
31475
32071
  /**
32072
+ * @remarks
32073
+ * The value of tag N. 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. The tag value cannot start with `acs:` or contain `http://` or `https://`.
32074
+ *
31476
32075
  * @example
31477
32076
  * TestValue
31478
32077
  */
@@ -32317,7 +32916,9 @@ export declare class AllocatePublicIpAddressRequest extends $dara.Model {
32317
32916
  instanceId?: string;
32318
32917
  /**
32319
32918
  * @remarks
32320
- * The public IP address. If you leave this parameter empty, the system randomly assigns a public IP address to the instance.
32919
+ * The static public IP address that you want to assign to the instance. This parameter is empty by default, which indicates that a static public IP address is randomly assigned by the system.
32920
+ *
32921
+ * > Only users in the whitelist can specify this parameter.
32321
32922
  *
32322
32923
  * @example
32323
32924
  * ``112.124.**.**``
@@ -34880,7 +35481,7 @@ export declare class CreateActivationRequest extends $dara.Model {
34880
35481
  tag?: CreateActivationRequestTag[];
34881
35482
  /**
34882
35483
  * @remarks
34883
- * The validity period of the activation code. After the validity period ends, you can no longer use the activation code to register managed instances. Unit: hours. Valid values: 1 to 876576. 876576 hours is equal to 100 years.
35484
+ * The validity period of the activation code. After the validity period ends, you can no longer use the activation code to register managed instances. Unit: hours.
34884
35485
  *
34885
35486
  * Default value: 4.
34886
35487
  *
@@ -35099,6 +35700,7 @@ export declare class CreateAutoProvisioningGroupRequest extends $dara.Model {
35099
35700
  * 30
35100
35701
  */
35101
35702
  payAsYouGoTargetCapacity?: string;
35703
+ prePaidOptions?: CreateAutoProvisioningGroupRequestPrePaidOptions;
35102
35704
  /**
35103
35705
  * @remarks
35104
35706
  * The ID of the region in which to create the auto provisioning group. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
@@ -35402,6 +36004,7 @@ export declare class CreateAutoProvisioningGroupShrinkRequest extends $dara.Mode
35402
36004
  * 30
35403
36005
  */
35404
36006
  payAsYouGoTargetCapacity?: string;
36007
+ prePaidOptions?: CreateAutoProvisioningGroupShrinkRequestPrePaidOptions;
35405
36008
  /**
35406
36009
  * @remarks
35407
36010
  * The ID of the region in which to create the auto provisioning group. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
@@ -36188,7 +36791,7 @@ export declare class CreateCommandResponse extends $dara.Model {
36188
36791
  export declare class CreateDedicatedHostClusterRequest extends $dara.Model {
36189
36792
  /**
36190
36793
  * @remarks
36191
- * The name of the dedicated host cluster. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), periods (.), and hyphens (-).
36794
+ * The name of the host group. It must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), periods (.), and hyphens (-).
36192
36795
  *
36193
36796
  * This parameter is left empty by default.
36194
36797
  *
@@ -36198,7 +36801,7 @@ export declare class CreateDedicatedHostClusterRequest extends $dara.Model {
36198
36801
  dedicatedHostClusterName?: string;
36199
36802
  /**
36200
36803
  * @remarks
36201
- * The description of the dedicated host cluster. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.
36804
+ * The description of the host group. It must be 2 to 256 characters in length, and cannot start with `http://` or `https://`.
36202
36805
  *
36203
36806
  * This parameter is left empty by default.
36204
36807
  *
@@ -36223,7 +36826,7 @@ export declare class CreateDedicatedHostClusterRequest extends $dara.Model {
36223
36826
  ownerId?: number;
36224
36827
  /**
36225
36828
  * @remarks
36226
- * The ID of the region in which to create the dedicated host cluster. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
36829
+ * The region ID of the host group. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
36227
36830
  *
36228
36831
  * This parameter is required.
36229
36832
  *
@@ -36233,7 +36836,7 @@ export declare class CreateDedicatedHostClusterRequest extends $dara.Model {
36233
36836
  regionId?: string;
36234
36837
  /**
36235
36838
  * @remarks
36236
- * The ID of the resource group to which to assign the dedicated host cluster.
36839
+ * The resource group ID of the host group.
36237
36840
  *
36238
36841
  * @example
36239
36842
  * rg-bp67acfmxazb4p****
@@ -36243,12 +36846,12 @@ export declare class CreateDedicatedHostClusterRequest extends $dara.Model {
36243
36846
  resourceOwnerId?: number;
36244
36847
  /**
36245
36848
  * @remarks
36246
- * The tags to add to the dedicated host cluster.
36849
+ * The tags of the host group.
36247
36850
  */
36248
36851
  tag?: CreateDedicatedHostClusterRequestTag[];
36249
36852
  /**
36250
36853
  * @remarks
36251
- * The ID of the zone in which to create the dedicated host cluster. You can call the [DescribeZones](https://help.aliyun.com/document_detail/25610.html) operation to query the most recent zone list.
36854
+ * The zone ID of the host group. You can call the [DescribeZones](https://help.aliyun.com/document_detail/25610.html) operation to query the most recent zone list.
36252
36855
  *
36253
36856
  * This parameter is required.
36254
36857
  *
@@ -36270,7 +36873,7 @@ export declare class CreateDedicatedHostClusterRequest extends $dara.Model {
36270
36873
  export declare class CreateDedicatedHostClusterResponseBody extends $dara.Model {
36271
36874
  /**
36272
36875
  * @remarks
36273
- * The ID of the dedicated host cluster.
36876
+ * The ID of the host group.
36274
36877
  *
36275
36878
  * @example
36276
36879
  * dc-bp12wlf6bw0vz9v2****
@@ -36658,7 +37261,7 @@ export declare class CreateDeploymentSetResponse extends $dara.Model {
36658
37261
  export declare class CreateDiagnosticMetricSetRequest extends $dara.Model {
36659
37262
  /**
36660
37263
  * @remarks
36661
- * testDescription
37264
+ * The description of the diagnostic metric set.
36662
37265
  *
36663
37266
  * @example
36664
37267
  * The ID of the request.
@@ -36666,14 +37269,14 @@ export declare class CreateDiagnosticMetricSetRequest extends $dara.Model {
36666
37269
  description?: string;
36667
37270
  /**
36668
37271
  * @remarks
36669
- * The ID of diagnostic metric.
37272
+ * The IDs of diagnostic metrics. You can specify up to 100 diagnostic metric IDs.
36670
37273
  *
36671
37274
  * This parameter is required.
36672
37275
  */
36673
37276
  metricIds?: string[];
36674
37277
  /**
36675
37278
  * @remarks
36676
- * my_dms
37279
+ * The name of the diagnostic metric set.
36677
37280
  *
36678
37281
  * @example
36679
37282
  * The IDs of diagnostic metrics. You can specify up to 100 diagnostic metric IDs.
@@ -36681,9 +37284,7 @@ export declare class CreateDiagnosticMetricSetRequest extends $dara.Model {
36681
37284
  metricSetName?: string;
36682
37285
  /**
36683
37286
  * @remarks
36684
- * The type of the resource.
36685
- *
36686
- * Default value: instance.
37287
+ * The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
36687
37288
  *
36688
37289
  * This parameter is required.
36689
37290
  *
@@ -36693,7 +37294,9 @@ export declare class CreateDiagnosticMetricSetRequest extends $dara.Model {
36693
37294
  regionId?: string;
36694
37295
  /**
36695
37296
  * @remarks
36696
- * The name of the diagnostic metric set.
37297
+ * The type of the resource.
37298
+ *
37299
+ * Default value: instance.
36697
37300
  *
36698
37301
  * This parameter is required.
36699
37302
  *
@@ -36714,13 +37317,16 @@ export declare class CreateDiagnosticMetricSetRequest extends $dara.Model {
36714
37317
  }
36715
37318
  export declare class CreateDiagnosticMetricSetResponseBody extends $dara.Model {
36716
37319
  /**
37320
+ * @remarks
37321
+ * The ID of the diagnostic metric set, which is the unique identifier of the set.
37322
+ *
36717
37323
  * @example
36718
37324
  * dms-o7ymuutup5l*****
36719
37325
  */
36720
37326
  metricSetId?: string;
36721
37327
  /**
36722
37328
  * @remarks
36723
- * The ID of the diagnostic metric set, which is the unique identifier of the set.
37329
+ * The request ID.
36724
37330
  *
36725
37331
  * @example
36726
37332
  * 473469C7-AA6F-4DC5-B3DB-A3DC0DE*****
@@ -36757,7 +37363,7 @@ export declare class CreateDiagnosticMetricSetResponse extends $dara.Model {
36757
37363
  export declare class CreateDiagnosticReportRequest extends $dara.Model {
36758
37364
  /**
36759
37365
  * @remarks
36760
- * The end of the reporting period. This parameter takes effect only for diagnostic metrics that do not need to be assessed by running Cloud Assistant commands in guest operating systems.
37366
+ * The end time. This parameter takes effect only for diagnostic metrics that do not need to be assessed by running Cloud Assistant commands in guest operating systems.
36761
37367
  *
36762
37368
  * @example
36763
37369
  * 2022-07-11T14:00:00Z
@@ -36773,7 +37379,7 @@ export declare class CreateDiagnosticReportRequest extends $dara.Model {
36773
37379
  metricSetId?: string;
36774
37380
  /**
36775
37381
  * @remarks
36776
- * The ID of the region in which to create a diagnostic report. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
37382
+ * The region ID of the security group. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
36777
37383
  *
36778
37384
  * This parameter is required.
36779
37385
  *
@@ -36783,7 +37389,7 @@ export declare class CreateDiagnosticReportRequest extends $dara.Model {
36783
37389
  regionId?: string;
36784
37390
  /**
36785
37391
  * @remarks
36786
- * The ID of the resource.
37392
+ * The ID of resource N.
36787
37393
  *
36788
37394
  * This parameter is required.
36789
37395
  *
@@ -36793,7 +37399,7 @@ export declare class CreateDiagnosticReportRequest extends $dara.Model {
36793
37399
  resourceId?: string;
36794
37400
  /**
36795
37401
  * @remarks
36796
- * The beginning of the reporting period. This parameter takes effect only for diagnostic metrics that do not need to be assessed by running Cloud Assistant commands in guest operating systems.
37402
+ * The start time. This parameter takes effect only for diagnostic metrics that do not need to be assessed by running Cloud Assistant commands in guest operating systems.
36797
37403
  *
36798
37404
  * @example
36799
37405
  * 2022-07-11T12:00:00Z
@@ -36813,7 +37419,7 @@ export declare class CreateDiagnosticReportRequest extends $dara.Model {
36813
37419
  export declare class CreateDiagnosticReportResponseBody extends $dara.Model {
36814
37420
  /**
36815
37421
  * @remarks
36816
- * The ID of the diagnostic report, which is the unique identifier of the report.
37422
+ * The unique ID of the diagnostic report.
36817
37423
  *
36818
37424
  * @example
36819
37425
  * dr-uf6i0tv2refv8wz*****
@@ -36821,7 +37427,7 @@ export declare class CreateDiagnosticReportResponseBody extends $dara.Model {
36821
37427
  reportId?: string;
36822
37428
  /**
36823
37429
  * @remarks
36824
- * The ID of the request.
37430
+ * The request ID.
36825
37431
  *
36826
37432
  * @example
36827
37433
  * 473469C7-AA6F-4DC5-B3DB-A3DC0DE*****
@@ -37214,6 +37820,8 @@ export declare class CreateElasticityAssuranceRequest extends $dara.Model {
37214
37820
  * Unlimited
37215
37821
  */
37216
37822
  assuranceTimes?: string;
37823
+ autoRenew?: boolean;
37824
+ autoRenewPeriod?: number;
37217
37825
  /**
37218
37826
  * @remarks
37219
37827
  * The client token that you want to use 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. 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).
@@ -38064,13 +38672,18 @@ export declare class CreateImagePipelineRequest extends $dara.Model {
38064
38672
  * 1234567890
38065
38673
  */
38066
38674
  addAccount?: number[];
38675
+ /**
38676
+ * @remarks
38677
+ * The advanced settings.
38678
+ */
38067
38679
  advancedOptions?: CreateImagePipelineRequestAdvancedOptions;
38068
38680
  /**
38069
38681
  * @remarks
38070
38682
  * The source image.
38071
38683
  *
38072
- * * If you set `BaseImageType` to IMAGE, set the BaseImage parameter to the ID of a custom image.
38073
- * * If you set `BaseImageType` to IMAGE_FAMILY, set the BaseImage parameter to the name of an image family.
38684
+ * * If you set `BaseImageType` to IMAGE, set BaseImage to the ID of a custom image.
38685
+ * * If you set `BaseImageType` to IMAGE_FAMILY, set BaseImage to the name of an image family.
38686
+ * * If you set `BaseImageType` to OSS, you do not need to specify BaseImage.
38074
38687
  *
38075
38688
  * @example
38076
38689
  * m-bp67acfmxazb4p****
@@ -38082,6 +38695,7 @@ export declare class CreateImagePipelineRequest extends $dara.Model {
38082
38695
  *
38083
38696
  * * IMAGE: image
38084
38697
  * * IMAGE_FAMILY: image family
38698
+ * * OSS: Object Storage Service (OSS) object
38085
38699
  *
38086
38700
  * This parameter is required.
38087
38701
  *
@@ -38146,6 +38760,10 @@ export declare class CreateImagePipelineRequest extends $dara.Model {
38146
38760
  * testImageName
38147
38761
  */
38148
38762
  imageName?: string;
38763
+ /**
38764
+ * @remarks
38765
+ * The attributes and settings of the image that you want to import. If you set `BaseImageType` to OSS, you must specify this parameter.
38766
+ */
38149
38767
  importImageOptions?: CreateImagePipelineRequestImportImageOptions;
38150
38768
  /**
38151
38769
  * @remarks
@@ -38177,6 +38795,17 @@ export declare class CreateImagePipelineRequest extends $dara.Model {
38177
38795
  * testImagePipeline
38178
38796
  */
38179
38797
  name?: string;
38798
+ /**
38799
+ * @remarks
38800
+ * Specifies whether the image created based on the image template supports the NVMe protocol. Valid values:
38801
+ *
38802
+ * * supported: The image supports the NVMe protocol. Instances created from the image also support the NVMe protocol.
38803
+ * * unsupported: The image does not support the NVMe protocol. Instances created from the image do not support the NVMe protocol.
38804
+ * * auto: The system automatically detects whether the image supports the NVMe protocol. The system automatically detects whether the NVMe driver is installed on your image before the new image is built. If you install or uninstall the NVMe driver during the image building process, the detection result may be incorrect. We recommend that you set the value to supported or unsupported based on the image building content.
38805
+ *
38806
+ * @example
38807
+ * auto
38808
+ */
38180
38809
  nvmeSupport?: string;
38181
38810
  ownerAccount?: string;
38182
38811
  ownerId?: number;
@@ -40244,7 +40873,9 @@ export declare class CreateNetworkInterfaceRequest extends $dara.Model {
40244
40873
  clientToken?: string;
40245
40874
  /**
40246
40875
  * @remarks
40247
- * > This parameter is not publicly available.
40876
+ * The connection tracking configurations of the ENI.
40877
+ *
40878
+ * Before you use this parameter, learn about how to manage connection timeout periods. For more information, see [Manage connection timeout periods](https://help.aliyun.com/document_detail/2865958.html).
40248
40879
  */
40249
40880
  connectionTrackingConfiguration?: CreateNetworkInterfaceRequestConnectionTrackingConfiguration;
40250
40881
  /**
@@ -40270,7 +40901,7 @@ export declare class CreateNetworkInterfaceRequest extends $dara.Model {
40270
40901
  description?: string;
40271
40902
  /**
40272
40903
  * @remarks
40273
- * > This parameter is unavailable.
40904
+ * > This parameter is not publicly available.
40274
40905
  */
40275
40906
  enhancedNetwork?: CreateNetworkInterfaceRequestEnhancedNetwork;
40276
40907
  /**
@@ -42593,7 +43224,7 @@ export declare class DeleteCommandResponse extends $dara.Model {
42593
43224
  export declare class DeleteDedicatedHostClusterRequest extends $dara.Model {
42594
43225
  /**
42595
43226
  * @remarks
42596
- * The ID of the dedicated host cluster.
43227
+ * The ID of the host group.
42597
43228
  *
42598
43229
  * This parameter is required.
42599
43230
  *
@@ -42605,7 +43236,7 @@ export declare class DeleteDedicatedHostClusterRequest extends $dara.Model {
42605
43236
  ownerId?: number;
42606
43237
  /**
42607
43238
  * @remarks
42608
- * The region ID of the dedicated host cluster. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
43239
+ * The region ID of the host group. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
42609
43240
  *
42610
43241
  * This parameter is required.
42611
43242
  *
@@ -42828,14 +43459,14 @@ export declare class DeleteDeploymentSetResponse extends $dara.Model {
42828
43459
  export declare class DeleteDiagnosticMetricSetsRequest extends $dara.Model {
42829
43460
  /**
42830
43461
  * @remarks
42831
- * The ID of diagnostic metric set.
43462
+ * The IDs of diagnostic metric sets. You can specify up to 10 set IDs.
42832
43463
  *
42833
43464
  * This parameter is required.
42834
43465
  */
42835
43466
  metricSetIds?: string[];
42836
43467
  /**
42837
43468
  * @remarks
42838
- * The IDs of diagnostic metric sets. You can specify up to 10 set IDs.
43469
+ * The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
42839
43470
  *
42840
43471
  * This parameter is required.
42841
43472
  *
@@ -42856,6 +43487,9 @@ export declare class DeleteDiagnosticMetricSetsRequest extends $dara.Model {
42856
43487
  }
42857
43488
  export declare class DeleteDiagnosticMetricSetsResponseBody extends $dara.Model {
42858
43489
  /**
43490
+ * @remarks
43491
+ * The request ID.
43492
+ *
42859
43493
  * @example
42860
43494
  * 473469C7-AA6F-4DC5-B3DB-A3DC0DE*****
42861
43495
  */
@@ -42891,7 +43525,7 @@ export declare class DeleteDiagnosticMetricSetsResponse extends $dara.Model {
42891
43525
  export declare class DeleteDiagnosticReportsRequest extends $dara.Model {
42892
43526
  /**
42893
43527
  * @remarks
42894
- * The region ID of the diagnostic report. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
43528
+ * The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
42895
43529
  *
42896
43530
  * This parameter is required.
42897
43531
  *
@@ -42901,7 +43535,7 @@ export declare class DeleteDiagnosticReportsRequest extends $dara.Model {
42901
43535
  regionId?: string;
42902
43536
  /**
42903
43537
  * @remarks
42904
- * The IDs of diagnostic reports. You can specify up to 100 report IDs.
43538
+ * The IDs of the diagnostic reports. You can specify up to 100 resource IDs.
42905
43539
  *
42906
43540
  * This parameter is required.
42907
43541
  */
@@ -42920,7 +43554,7 @@ export declare class DeleteDiagnosticReportsRequest extends $dara.Model {
42920
43554
  export declare class DeleteDiagnosticReportsResponseBody extends $dara.Model {
42921
43555
  /**
42922
43556
  * @remarks
42923
- * The ID of the request.
43557
+ * The request ID.
42924
43558
  *
42925
43559
  * @example
42926
43560
  * 473469C7-AA6F-4DC5-B3DB-A3DC0DE*****
@@ -45359,7 +45993,7 @@ export declare class DescribeAutoProvisioningGroupHistoryRequest extends $dara.M
45359
45993
  pageNumber?: number;
45360
45994
  /**
45361
45995
  * @remarks
45362
- * The number of entries returned per page. Maximum value: 100.
45996
+ * The number of entries per page. Valid values: 1 to 100.
45363
45997
  *
45364
45998
  * Default value: 10.
45365
45999
  *
@@ -45792,7 +46426,7 @@ export declare class DescribeAutoSnapshotPolicyExRequest extends $dara.Model {
45792
46426
  *
45793
46427
  * Pages start from page 1.
45794
46428
  *
45795
- * Default value: 1
46429
+ * Default value: 1.
45796
46430
  *
45797
46431
  * @example
45798
46432
  * 1
@@ -45804,7 +46438,7 @@ export declare class DescribeAutoSnapshotPolicyExRequest extends $dara.Model {
45804
46438
  *
45805
46439
  * Valid values: 1 to 100.
45806
46440
  *
45807
- * Default value: 10
46441
+ * Default value: 10.
45808
46442
  *
45809
46443
  * @example
45810
46444
  * 10
@@ -47404,7 +48038,7 @@ export declare class DescribeDedicatedHostAutoRenewResponse extends $dara.Model
47404
48038
  export declare class DescribeDedicatedHostClustersRequest extends $dara.Model {
47405
48039
  /**
47406
48040
  * @remarks
47407
- * The IDs of dedicated host clusters. The value can be a JSON array that consists of up to 100 dedicated host cluster IDs in the format of `["dc-xxxxxxxxx", "dc-yyyyyyyyy", ... "dc-zzzzzzzzz"]`. Separate the IDs with commas (,).
48041
+ * The list of host group IDs. The value can be a JSON array consisting of multiple IDs in the `["dc-xxxxxxxxx", "dc-yyyyyyyyy",..., "dc-zzzzzzzzz"]` format. Separate the IDs with commas (,).
47408
48042
  *
47409
48043
  * @example
47410
48044
  * ["dc-bp12wlf6am0vz9v2****", "dc-bp12wlf6am0vz9v3****"]
@@ -47412,7 +48046,7 @@ export declare class DescribeDedicatedHostClustersRequest extends $dara.Model {
47412
48046
  dedicatedHostClusterIds?: string;
47413
48047
  /**
47414
48048
  * @remarks
47415
- * The name of the dedicated host cluster.
48049
+ * The name of the host group.
47416
48050
  *
47417
48051
  * @example
47418
48052
  * myDDHCluster
@@ -47434,7 +48068,7 @@ export declare class DescribeDedicatedHostClustersRequest extends $dara.Model {
47434
48068
  *
47435
48069
  * Pages start from page 1.
47436
48070
  *
47437
- * Default value: 1.
48071
+ * Default value: 1
47438
48072
  *
47439
48073
  * @example
47440
48074
  * 1
@@ -47444,7 +48078,7 @@ export declare class DescribeDedicatedHostClustersRequest extends $dara.Model {
47444
48078
  * @remarks
47445
48079
  * The number of entries per page.
47446
48080
  *
47447
- * Valid values: 1 to 100.
48081
+ * Maximum value: 100.
47448
48082
  *
47449
48083
  * Default value: 10.
47450
48084
  *
@@ -47454,7 +48088,7 @@ export declare class DescribeDedicatedHostClustersRequest extends $dara.Model {
47454
48088
  pageSize?: number;
47455
48089
  /**
47456
48090
  * @remarks
47457
- * The region ID of the dedicated host cluster. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
48091
+ * The region ID of the host group. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
47458
48092
  *
47459
48093
  * This parameter is required.
47460
48094
  *
@@ -47464,9 +48098,9 @@ export declare class DescribeDedicatedHostClustersRequest extends $dara.Model {
47464
48098
  regionId?: string;
47465
48099
  /**
47466
48100
  * @remarks
47467
- * The ID of the resource group to which the dedicated host cluster belongs. If this parameter is specified to query resources, up to 1,000 resources that belong to the specified resource group can be displayed in the response.
48101
+ * The resource group ID of the host group. You can use a resource group ID to filter no more than 1,000 host groups.
47468
48102
  *
47469
- * > Resources in the default resource group are displayed in the response regardless of how this parameter is set.
48103
+ * > A default resource group is not supported.
47470
48104
  *
47471
48105
  * @example
47472
48106
  * rg-bp67acfmxazb4p****
@@ -47484,12 +48118,12 @@ export declare class DescribeDedicatedHostClustersRequest extends $dara.Model {
47484
48118
  status?: string;
47485
48119
  /**
47486
48120
  * @remarks
47487
- * The tags of the dedicated host cluster.
48121
+ * The tags of the host group.
47488
48122
  */
47489
48123
  tag?: DescribeDedicatedHostClustersRequestTag[];
47490
48124
  /**
47491
48125
  * @remarks
47492
- * The zone ID of the dedicated host cluster. You can call the [DescribeZones](https://help.aliyun.com/document_detail/25610.html) operation to query the most recent zone list.
48126
+ * The zone ID of the host group. You can call the [DescribeZones](https://help.aliyun.com/document_detail/25610.html) operation to query the most recent zone list.
47493
48127
  *
47494
48128
  * @example
47495
48129
  * cn-hangzhou-f
@@ -47509,7 +48143,7 @@ export declare class DescribeDedicatedHostClustersRequest extends $dara.Model {
47509
48143
  export declare class DescribeDedicatedHostClustersResponseBody extends $dara.Model {
47510
48144
  /**
47511
48145
  * @remarks
47512
- * Details about the dedicated host clusters.
48146
+ * An array consisting of host group information.
47513
48147
  */
47514
48148
  dedicatedHostClusters?: DescribeDedicatedHostClustersResponseBodyDedicatedHostClusters;
47515
48149
  /**
@@ -47978,7 +48612,7 @@ export declare class DescribeDemandsRequest extends $dara.Model {
47978
48612
  pageNumber?: number;
47979
48613
  /**
47980
48614
  * @remarks
47981
- * The number of entries per page. Maximum value: 100.
48615
+ * The number of entries per page. Valid values: 1 to 100.
47982
48616
  *
47983
48617
  * Default value: 10.
47984
48618
  *
@@ -48359,12 +48993,12 @@ export declare class DescribeDeploymentSetsResponse extends $dara.Model {
48359
48993
  export declare class DescribeDiagnosticMetricSetsRequest extends $dara.Model {
48360
48994
  /**
48361
48995
  * @remarks
48362
- * The maximum number of entries to return on each page. Maximum value: 100.
48996
+ * The number of entries per page. Valid values: 1 to 100.
48363
48997
  *
48364
48998
  * Default value:
48365
48999
  *
48366
49000
  * * If this parameter is left empty, the default value is 10.
48367
- * * If this parameter is set to a value greater than 100, the default value is 100.
49001
+ * * If you set this parameter to a value that is greater than 100, the default value is 100.
48368
49002
  *
48369
49003
  * @example
48370
49004
  * 10
@@ -48372,12 +49006,12 @@ export declare class DescribeDiagnosticMetricSetsRequest extends $dara.Model {
48372
49006
  maxResults?: number;
48373
49007
  /**
48374
49008
  * @remarks
48375
- * The ID of diagnostic metric set N.
49009
+ * The IDs of diagnostic metric sets.
48376
49010
  */
48377
49011
  metricSetIds?: string[];
48378
49012
  /**
48379
49013
  * @remarks
48380
- * The query token. Set the value to the `NextToken` value returned in the last call to the DescribeDiagnosticMetricSets operation. Leave this parameter empty the first time you call this operation.
49014
+ * The pagination token that is used in the request to retrieve a new page of results. You do not need to specify this parameter for the first request. You must specify the token that is obtained from the previous query as the value of `NextToken`.
48381
49015
  *
48382
49016
  * @example
48383
49017
  * caeba0bbb2be03f84eb48b699f0a4883
@@ -48408,7 +49042,7 @@ export declare class DescribeDiagnosticMetricSetsRequest extends $dara.Model {
48408
49042
  * * User: user-defined diagnostic metric set
48409
49043
  * * Common: common diagnostic metric set
48410
49044
  *
48411
- * Default value: user.
49045
+ * Default value: User.
48412
49046
  *
48413
49047
  * @example
48414
49048
  * User
@@ -48428,12 +49062,12 @@ export declare class DescribeDiagnosticMetricSetsRequest extends $dara.Model {
48428
49062
  export declare class DescribeDiagnosticMetricSetsResponseBody extends $dara.Model {
48429
49063
  /**
48430
49064
  * @remarks
48431
- * A collection of diagnostic metrics.
49065
+ * The diagnostic metric sets.
48432
49066
  */
48433
49067
  metricSets?: DescribeDiagnosticMetricSetsResponseBodyMetricSets[];
48434
49068
  /**
48435
49069
  * @remarks
48436
- * The query token returned in this call.
49070
+ * A pagination token. It can be used in the next request to retrieve a new page of results.
48437
49071
  *
48438
49072
  * @example
48439
49073
  * caeba0bbb2be03f84eb48b699f0a4883
@@ -48441,7 +49075,7 @@ export declare class DescribeDiagnosticMetricSetsResponseBody extends $dara.Mode
48441
49075
  nextToken?: string;
48442
49076
  /**
48443
49077
  * @remarks
48444
- * The ID of the request.
49078
+ * The request ID.
48445
49079
  *
48446
49080
  * @example
48447
49081
  * 473469C7-AA6F-4DC5-B3DB-A3DC0DE*****
@@ -48478,7 +49112,12 @@ export declare class DescribeDiagnosticMetricSetsResponse extends $dara.Model {
48478
49112
  export declare class DescribeDiagnosticMetricsRequest extends $dara.Model {
48479
49113
  /**
48480
49114
  * @remarks
48481
- * The ID of the request.
49115
+ * The number of entries per page. Valid values: 1 to 100.
49116
+ *
49117
+ * Default value:
49118
+ *
49119
+ * * If this parameter is left empty, the default value is 10.
49120
+ * * If you set this parameter to a value that is greater than 100, the default value is 100.
48482
49121
  *
48483
49122
  * @example
48484
49123
  * 10
@@ -48486,17 +49125,12 @@ export declare class DescribeDiagnosticMetricsRequest extends $dara.Model {
48486
49125
  maxResults?: number;
48487
49126
  /**
48488
49127
  * @remarks
48489
- * The ID of diagnostic metric.
49128
+ * The ID of diagnostic metrics.
48490
49129
  */
48491
49130
  metricIds?: string[];
48492
49131
  /**
48493
49132
  * @remarks
48494
- * The maximum number of entries to return on each page. Maximum value: 100.
48495
- *
48496
- * Default value:
48497
- *
48498
- * * If this parameter is left empty, the default value is 10.
48499
- * * If this parameter is set to a value greater than 100, the default value is 100.
49133
+ * The pagination token that is used in the request to retrieve a new page of results. You do not need to specify this parameter for the first request. You must specify the token that is obtained from the previous query as the value of `NextToken`.
48500
49134
  *
48501
49135
  * @example
48502
49136
  * caeba0bbb2be03f84eb48b699f0a4883
@@ -48504,7 +49138,7 @@ export declare class DescribeDiagnosticMetricsRequest extends $dara.Model {
48504
49138
  nextToken?: string;
48505
49139
  /**
48506
49140
  * @remarks
48507
- * The IDs of diagnostic metrics.
49141
+ * The region ID pf the diagnostic metric. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
48508
49142
  *
48509
49143
  * This parameter is required.
48510
49144
  *
@@ -48514,7 +49148,7 @@ export declare class DescribeDiagnosticMetricsRequest extends $dara.Model {
48514
49148
  regionId?: string;
48515
49149
  /**
48516
49150
  * @remarks
48517
- * The query token. Set the value to the `NextToken` value returned in the last call to the DescribeDiagnosticMetrics operation. Leave this parameter empty the first time you call this operation.
49151
+ * The resource type supported by the diagnostic metric.
48518
49152
  *
48519
49153
  * @example
48520
49154
  * instance
@@ -48534,12 +49168,12 @@ export declare class DescribeDiagnosticMetricsRequest extends $dara.Model {
48534
49168
  export declare class DescribeDiagnosticMetricsResponseBody extends $dara.Model {
48535
49169
  /**
48536
49170
  * @remarks
48537
- * The ID of the diagnostic metric.
49171
+ * The diagnostic metrics.
48538
49172
  */
48539
49173
  metrics?: DescribeDiagnosticMetricsResponseBodyMetrics[];
48540
49174
  /**
48541
49175
  * @remarks
48542
- * The list of diagnostic metrics.
49176
+ * A pagination token. It can be used in the next request to retrieve a new page of results.
48543
49177
  *
48544
49178
  * @example
48545
49179
  * caeba0bbb2be03f84eb48b699f0a4883
@@ -48547,7 +49181,7 @@ export declare class DescribeDiagnosticMetricsResponseBody extends $dara.Model {
48547
49181
  nextToken?: string;
48548
49182
  /**
48549
49183
  * @remarks
48550
- * The query token returned in this call.
49184
+ * The request ID.
48551
49185
  *
48552
49186
  * @example
48553
49187
  * 473469C7-AA6F-4DC5-B3DB-A3DC0DE*****
@@ -48758,12 +49392,12 @@ export declare class DescribeDiagnosticReportAttributesResponse extends $dara.Mo
48758
49392
  export declare class DescribeDiagnosticReportsRequest extends $dara.Model {
48759
49393
  /**
48760
49394
  * @remarks
48761
- * The maximum number of entries to return on each page. Maximum value: 100.
49395
+ * The number of entries per page. Valid values: 1 to 100.
48762
49396
  *
48763
49397
  * Default value:
48764
49398
  *
48765
49399
  * * If this parameter is left empty, the default value is 10.
48766
- * * If this parameter is set to a value greater than 100, the default value is 100.
49400
+ * * If you set this parameter to a value that is greater than 100, the default value is 100.
48767
49401
  *
48768
49402
  * @example
48769
49403
  * 10
@@ -48771,7 +49405,7 @@ export declare class DescribeDiagnosticReportsRequest extends $dara.Model {
48771
49405
  maxResults?: number;
48772
49406
  /**
48773
49407
  * @remarks
48774
- * The query token. Set the value to the `NextToken` value returned in the last call to the DescribeDiagnosticReports operation. Leave this parameter empty the first time you call this operation.
49408
+ * The pagination token that is used in the request to retrieve a new page of results. You do not need to specify this parameter for the first request. You must specify the token that is obtained from the previous query as the value of `NextToken`.
48775
49409
  *
48776
49410
  * @example
48777
49411
  * caeba0bbb2be03f84eb48b699f0a4883
@@ -48779,7 +49413,7 @@ export declare class DescribeDiagnosticReportsRequest extends $dara.Model {
48779
49413
  nextToken?: string;
48780
49414
  /**
48781
49415
  * @remarks
48782
- * The region ID of the diagnostic report. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
49416
+ * The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
48783
49417
  *
48784
49418
  * This parameter is required.
48785
49419
  *
@@ -48789,7 +49423,7 @@ export declare class DescribeDiagnosticReportsRequest extends $dara.Model {
48789
49423
  regionId?: string;
48790
49424
  /**
48791
49425
  * @remarks
48792
- * The IDs of diagnostic reports. You can specify up to 100 report IDs.
49426
+ * The IDs of diagnostic reports.
48793
49427
  */
48794
49428
  reportIds?: string[];
48795
49429
  /**
@@ -48801,11 +49435,11 @@ export declare class DescribeDiagnosticReportsRequest extends $dara.Model {
48801
49435
  * @remarks
48802
49436
  * The severity level of the diagnostic report. Valid values:
48803
49437
  *
48804
- * * Unknown: The diagnostic has not started, failed to run, or exited unexpectedly without a diagnosis.
48805
- * * Normal: No exceptions are detected.
48806
- * * Info: Diagnostic information is recorded and may be related to exceptions.
48807
- * * Warn: Diagnostic information is recorded and may indicate exceptions.
48808
- * * Critical: Critical exceptions are detected.
49438
+ * * Unknown: The diagnostic does not start, fails to run, or unexpectedly exits without a diagnosis.
49439
+ * * Normal: No exceptions are detected.
49440
+ * * Info: Diagnostic information is recorded and may be related to exceptions.
49441
+ * * Warn: Diagnostic information is recorded and may indicate exceptions.
49442
+ * * Critical: Critical exceptions are detected.
48809
49443
  *
48810
49444
  * @example
48811
49445
  * Normal
@@ -48813,11 +49447,11 @@ export declare class DescribeDiagnosticReportsRequest extends $dara.Model {
48813
49447
  severity?: string;
48814
49448
  /**
48815
49449
  * @remarks
48816
- * The state of the diagnostic report. Valid values:
49450
+ * The status of the diagnostic report. Valid values:
48817
49451
  *
48818
- * * InProgress: The diagnostic is in progress.
48819
- * * Failed: The diagnostic failed.
48820
- * * Finished: The diagnostic is complete.
49452
+ * * InProgress
49453
+ * * Failed
49454
+ * * Finished
48821
49455
  *
48822
49456
  * @example
48823
49457
  * Finished
@@ -48837,7 +49471,7 @@ export declare class DescribeDiagnosticReportsRequest extends $dara.Model {
48837
49471
  export declare class DescribeDiagnosticReportsResponseBody extends $dara.Model {
48838
49472
  /**
48839
49473
  * @remarks
48840
- * The query token returned in this call.
49474
+ * A pagination token. It can be used in the next request to retrieve a new page of results.
48841
49475
  *
48842
49476
  * @example
48843
49477
  * caeba0bbb2be03f84eb48b699f0a4883
@@ -48845,12 +49479,12 @@ export declare class DescribeDiagnosticReportsResponseBody extends $dara.Model {
48845
49479
  nextToken?: string;
48846
49480
  /**
48847
49481
  * @remarks
48848
- * The list of reports.
49482
+ * The diagnostic reports.
48849
49483
  */
48850
49484
  reports?: DescribeDiagnosticReportsResponseBodyReports;
48851
49485
  /**
48852
49486
  * @remarks
48853
- * The ID of the request.
49487
+ * The request ID.
48854
49488
  *
48855
49489
  * @example
48856
49490
  * 473469C7-AA6F-4DC5-B3DB-A3DC0DE*****
@@ -50995,7 +51629,7 @@ export declare class DescribeImagePipelinesRequest extends $dara.Model {
50995
51629
  imagePipelineId?: string[];
50996
51630
  /**
50997
51631
  * @remarks
50998
- * The number of entries per page. Valid values: 1 to 500
51632
+ * The maximum number of entries per page. Valid values: 1 to 500.
50999
51633
  *
51000
51634
  * Default value: 50.
51001
51635
  *
@@ -53085,7 +53719,7 @@ export declare class DescribeInstanceStatusRequest extends $dara.Model {
53085
53719
  *
53086
53720
  * Pages start from page 1.
53087
53721
  *
53088
- * Default value: 1.
53722
+ * Default value: 1
53089
53723
  *
53090
53724
  * @example
53091
53725
  * 1
@@ -53093,9 +53727,9 @@ export declare class DescribeInstanceStatusRequest extends $dara.Model {
53093
53727
  pageNumber?: number;
53094
53728
  /**
53095
53729
  * @remarks
53096
- * The number of entries per page. Valid values: 1 to 50.
53730
+ * The number of entries per page. Valid values: 1 to 50
53097
53731
  *
53098
- * Default value: 10.
53732
+ * Default value: 10
53099
53733
  *
53100
53734
  * @example
53101
53735
  * 10
@@ -53961,7 +54595,7 @@ export declare class DescribeInstancesRequest extends $dara.Model {
53961
54595
  filter?: DescribeInstancesRequestFilter[];
53962
54596
  /**
53963
54597
  * @remarks
53964
- * Additional instance attributes.
54598
+ * The additional instance attributes.
53965
54599
  *
53966
54600
  * @example
53967
54601
  * META_OPTIONS
@@ -55869,11 +56503,13 @@ export declare class DescribeNatGatewaysResponse extends $dara.Model {
55869
56503
  export declare class DescribeNetworkInterfaceAttributeRequest extends $dara.Model {
55870
56504
  /**
55871
56505
  * @remarks
55872
- * The attribute of the ENI. Valid value:
56506
+ * The attribute of the ENI. Valid values:
55873
56507
  *
55874
- * attachment: attachment information about the ENI
56508
+ * attachment: member ENI attachment information of the trunk ENI. This value is in invitational preview and is not publicly available.
55875
56509
  *
55876
- * > This parameter is in invitational preview and is not publicly available.
56510
+ * connectionTrackingConfiguration: connection tracking configuration.
56511
+ *
56512
+ * Default value:
55877
56513
  *
55878
56514
  * @example
55879
56515
  * attachment
@@ -55937,7 +56573,11 @@ export declare class DescribeNetworkInterfaceAttributeResponseBody extends $dara
55937
56573
  bondInterfaceSpecification?: DescribeNetworkInterfaceAttributeResponseBodyBondInterfaceSpecification;
55938
56574
  /**
55939
56575
  * @remarks
55940
- * > This parameter is not publicly available.
56576
+ * The connection tracking configurations of the ENI.
56577
+ *
56578
+ * Before you use this parameter, learn about how to manage connection timeout periods. For more information, see [Manage connection timeout periods](https://help.aliyun.com/document_detail/2865958.html).
56579
+ *
56580
+ * > This parameter is returned only if `Attribute` is set to `connectionTrackingConfiguration`.
55941
56581
  */
55942
56582
  connectionTrackingConfiguration?: DescribeNetworkInterfaceAttributeResponseBodyConnectionTrackingConfiguration;
55943
56583
  /**
@@ -56889,7 +57529,7 @@ export declare class DescribePrefixListAttributesRequest extends $dara.Model {
56889
57529
  ownerId?: number;
56890
57530
  /**
56891
57531
  * @remarks
56892
- * The time when the prefix list was created.
57532
+ * The ID of the prefix list.
56893
57533
  *
56894
57534
  * This parameter is required.
56895
57535
  *
@@ -56899,7 +57539,7 @@ export declare class DescribePrefixListAttributesRequest extends $dara.Model {
56899
57539
  prefixListId?: string;
56900
57540
  /**
56901
57541
  * @remarks
56902
- * The ID of the prefix list.
57542
+ * The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
56903
57543
  *
56904
57544
  * This parameter is required.
56905
57545
  *
@@ -56923,7 +57563,10 @@ export declare class DescribePrefixListAttributesRequest extends $dara.Model {
56923
57563
  export declare class DescribePrefixListAttributesResponseBody extends $dara.Model {
56924
57564
  /**
56925
57565
  * @remarks
56926
- * The name of the prefix list.
57566
+ * The IP address family of the prefix list. Valid values:
57567
+ *
57568
+ * * IPv4
57569
+ * * IPv6
56927
57570
  *
56928
57571
  * @example
56929
57572
  * IPv4
@@ -56931,7 +57574,7 @@ export declare class DescribePrefixListAttributesResponseBody extends $dara.Mode
56931
57574
  addressFamily?: string;
56932
57575
  /**
56933
57576
  * @remarks
56934
- * The maximum number of entries that the prefix list can contain.
57577
+ * The time when the prefix list was created.
56935
57578
  *
56936
57579
  * @example
56937
57580
  * 2021-02-20T07:11Z
@@ -56939,10 +57582,7 @@ export declare class DescribePrefixListAttributesResponseBody extends $dara.Mode
56939
57582
  creationTime?: string;
56940
57583
  /**
56941
57584
  * @remarks
56942
- * The IP address family of the prefix list. Valid values:
56943
- *
56944
- * * IPv4
56945
- * * IPv6
57585
+ * The description of the prefix list.
56946
57586
  *
56947
57587
  * @example
56948
57588
  * This is description.
@@ -56950,12 +57590,12 @@ export declare class DescribePrefixListAttributesResponseBody extends $dara.Mode
56950
57590
  description?: string;
56951
57591
  /**
56952
57592
  * @remarks
56953
- * The description of the entry in the prefix list.
57593
+ * Details about the entries in the prefix list.
56954
57594
  */
56955
57595
  entries?: DescribePrefixListAttributesResponseBodyEntries;
56956
57596
  /**
56957
57597
  * @remarks
56958
- * The ID of the request.
57598
+ * The maximum number of entries in the prefix list.
56959
57599
  *
56960
57600
  * @example
56961
57601
  * 10
@@ -56963,7 +57603,7 @@ export declare class DescribePrefixListAttributesResponseBody extends $dara.Mode
56963
57603
  maxEntries?: number;
56964
57604
  /**
56965
57605
  * @remarks
56966
- * Details about the entries in the prefix list.
57606
+ * The ID of the prefix list.
56967
57607
  *
56968
57608
  * @example
56969
57609
  * pl-x1j1k5ykzqlixdcy****
@@ -56971,7 +57611,7 @@ export declare class DescribePrefixListAttributesResponseBody extends $dara.Mode
56971
57611
  prefixListId?: string;
56972
57612
  /**
56973
57613
  * @remarks
56974
- * The ID of the prefix list.
57614
+ * The name of the prefix list.
56975
57615
  *
56976
57616
  * @example
56977
57617
  * PrefixListNameSample
@@ -56979,7 +57619,7 @@ export declare class DescribePrefixListAttributesResponseBody extends $dara.Mode
56979
57619
  prefixListName?: string;
56980
57620
  /**
56981
57621
  * @remarks
56982
- * The description of the prefix list.
57622
+ * The request ID.
56983
57623
  *
56984
57624
  * @example
56985
57625
  * 38793DB8-A4B2-4AEC-BFD3-111234E9188D
@@ -57016,7 +57656,7 @@ export declare class DescribePrefixListAttributesResponse extends $dara.Model {
57016
57656
  export declare class DescribePrefixListsRequest extends $dara.Model {
57017
57657
  /**
57018
57658
  * @remarks
57019
- * The IP address family of the prefix list. Valid values:
57659
+ * The IP address family. Valid values:
57020
57660
  *
57021
57661
  * * IPv4
57022
57662
  * * IPv6
@@ -57029,9 +57669,9 @@ export declare class DescribePrefixListsRequest extends $dara.Model {
57029
57669
  addressFamily?: string;
57030
57670
  /**
57031
57671
  * @remarks
57032
- * The number of entries to return on each page.
57672
+ * The number of entries per page.
57033
57673
  *
57034
- * Maximum value: 100.
57674
+ * Valid values: 1 to 100.
57035
57675
  *
57036
57676
  * Default value: 10.
57037
57677
  *
@@ -57041,7 +57681,7 @@ export declare class DescribePrefixListsRequest extends $dara.Model {
57041
57681
  maxResults?: number;
57042
57682
  /**
57043
57683
  * @remarks
57044
- * The query token. Set the value to the `NextToken` value returned in the previous call to the DescribePrefixLists operation. Leave this parameter empty the first time you call this operation.
57684
+ * The pagination token that is used in the request to retrieve a new page of results. Set the value to the `NextToken` value returned in the last call to this operation. Leave this parameter empty the first time you call this operation.
57045
57685
  *
57046
57686
  * @example
57047
57687
  * AAAAAdDWBF2****
@@ -57051,7 +57691,7 @@ export declare class DescribePrefixListsRequest extends $dara.Model {
57051
57691
  ownerId?: number;
57052
57692
  /**
57053
57693
  * @remarks
57054
- * The IDs of prefix list.
57694
+ * The IDs of prefix lists. Valid values of N: 0 to 100.
57055
57695
  *
57056
57696
  * @example
57057
57697
  * pl-x1j1k5ykzqlixdcy****
@@ -57091,7 +57731,7 @@ export declare class DescribePrefixListsRequest extends $dara.Model {
57091
57731
  export declare class DescribePrefixListsResponseBody extends $dara.Model {
57092
57732
  /**
57093
57733
  * @remarks
57094
- * The query token returned in this call. If the return value is empty, no more data is returned.
57734
+ * The query token that is returned in this call. If the return value is empty, no more data is returned.
57095
57735
  *
57096
57736
  * @example
57097
57737
  * AAAAAdDWBF2****
@@ -57104,7 +57744,7 @@ export declare class DescribePrefixListsResponseBody extends $dara.Model {
57104
57744
  prefixLists?: DescribePrefixListsResponseBodyPrefixLists;
57105
57745
  /**
57106
57746
  * @remarks
57107
- * The ID of the request.
57747
+ * The request ID.
57108
57748
  *
57109
57749
  * @example
57110
57750
  * 38793DB8-A4B2-4AEC-BFD3-111234E9188D
@@ -57732,13 +58372,7 @@ export declare class DescribeRecommendInstanceTypeResponse extends $dara.Model {
57732
58372
  export declare class DescribeRegionsRequest extends $dara.Model {
57733
58373
  /**
57734
58374
  * @remarks
57735
- * The natural language that is used to filter responses. For more information, see [RFC 7231](https://tools.ietf.org/html/rfc7231). Valid values:
57736
- *
57737
- * * zh-CN: Chinese
57738
- * * en-US: English
57739
- * * ja: Japanese
57740
- *
57741
- * Default value: zh-CN.
58375
+ * The endpoint of the region.
57742
58376
  *
57743
58377
  * @example
57744
58378
  * zh-CN
@@ -57746,14 +58380,7 @@ export declare class DescribeRegionsRequest extends $dara.Model {
57746
58380
  acceptLanguage?: string;
57747
58381
  /**
57748
58382
  * @remarks
57749
- * The billing method of the instance. For more information, see [Billing overview](https://help.aliyun.com/document_detail/25398.html). Valid values:
57750
- *
57751
- * * 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.
57752
- * * PostPaid: pay-as-you-go.
57753
- * * SpotWithPriceLimit: preemptible instance for which a maximum hourly price is specified.
57754
- * * 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.
57755
- *
57756
- * Default value: PostPaid.
58383
+ * The information of the regions.
57757
58384
  *
57758
58385
  * @example
57759
58386
  * PrePaid
@@ -57765,14 +58392,10 @@ export declare class DescribeRegionsRequest extends $dara.Model {
57765
58392
  resourceOwnerId?: number;
57766
58393
  /**
57767
58394
  * @remarks
57768
- * The type of resource. Valid values:
57769
- *
57770
- * * instance: Elastic Compute Service (ECS) instance
57771
- * * disk: disk
57772
- * * reservedinstance: reserved instance
57773
- * * scu: storage capacity unit (SCU)
58395
+ * Indicates whether clusters are sold out. Valid values:
57774
58396
  *
57775
- * Default value: instance.
58397
+ * * available
58398
+ * * soldOut
57776
58399
  *
57777
58400
  * @example
57778
58401
  * instance
@@ -57792,12 +58415,12 @@ export declare class DescribeRegionsRequest extends $dara.Model {
57792
58415
  export declare class DescribeRegionsResponseBody extends $dara.Model {
57793
58416
  /**
57794
58417
  * @remarks
57795
- * The information of the regions.
58418
+ * The name of the region.
57796
58419
  */
57797
58420
  regions?: DescribeRegionsResponseBodyRegions;
57798
58421
  /**
57799
58422
  * @remarks
57800
- * The request ID.
58423
+ * ecs.aliyuncs.com
57801
58424
  *
57802
58425
  * @example
57803
58426
  * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
@@ -58113,7 +58736,7 @@ export declare class DescribeReservedInstancesRequest extends $dara.Model {
58113
58736
  pageSize?: number;
58114
58737
  /**
58115
58738
  * @remarks
58116
- * The region ID of the instances. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
58739
+ * The region ID of the reserved instance. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
58117
58740
  *
58118
58741
  * This parameter is required.
58119
58742
  *
@@ -59929,7 +60552,9 @@ export declare class DescribeSnapshotPackageRequest extends $dara.Model {
59929
60552
  ownerId?: number;
59930
60553
  /**
59931
60554
  * @remarks
59932
- * The region ID of the snapshot. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
60555
+ * The page number. Pages start from page 1.
60556
+ *
60557
+ * Default value: 1.
59933
60558
  *
59934
60559
  * @example
59935
60560
  * 1
@@ -59937,7 +60562,9 @@ export declare class DescribeSnapshotPackageRequest extends $dara.Model {
59937
60562
  pageNumber?: number;
59938
60563
  /**
59939
60564
  * @remarks
59940
- * The number of entries returned per page.
60565
+ * The number of entries per page. Valid values: 1 to 100.
60566
+ *
60567
+ * Default value: 10.
59941
60568
  *
59942
60569
  * @example
59943
60570
  * 10
@@ -60827,12 +61454,7 @@ export declare class DescribeStorageCapacityUnitsRequest extends $dara.Model {
60827
61454
  resourceOwnerId?: number;
60828
61455
  /**
60829
61456
  * @remarks
60830
- * The state of SCUs. You can specify 1 to 4 types of state. Valid values:
60831
- *
60832
- * * Creating: The SCUs are being created.
60833
- * * Active: The SCUs are in effect.
60834
- * * Expired: The SCUs have expired.
60835
- * * Pending: The SCUs have not taken effect.
61457
+ * The states of SCUs. The array is 1 to 4 in length.
60836
61458
  *
60837
61459
  * @example
60838
61460
  * Active
@@ -60840,7 +61462,7 @@ export declare class DescribeStorageCapacityUnitsRequest extends $dara.Model {
60840
61462
  status?: string[];
60841
61463
  /**
60842
61464
  * @remarks
60843
- * One or multiple SCU IDs. You can specify 1 to 100 SCU IDs.
61465
+ * The IDs of the SCUs. You can specify 1 to 100 SCU IDs.
60844
61466
  *
60845
61467
  * @example
60846
61468
  * scu-bp67acfmxazb4p****
@@ -60848,7 +61470,7 @@ export declare class DescribeStorageCapacityUnitsRequest extends $dara.Model {
60848
61470
  storageCapacityUnitId?: string[];
60849
61471
  /**
60850
61472
  * @remarks
60851
- * The tags of the SCUs.
61473
+ * The tags to add to the SCU. You can add up to 20 tags.
60852
61474
  */
60853
61475
  tag?: DescribeStorageCapacityUnitsRequestTag[];
60854
61476
  static names(): {
@@ -63233,6 +63855,8 @@ export declare class EndTerminalSessionRequest extends $dara.Model {
63233
63855
  ownerId?: number;
63234
63856
  /**
63235
63857
  * @remarks
63858
+ * The region ID of the session.
63859
+ *
63236
63860
  * This parameter is required.
63237
63861
  *
63238
63862
  * @example
@@ -63243,6 +63867,8 @@ export declare class EndTerminalSessionRequest extends $dara.Model {
63243
63867
  resourceOwnerId?: number;
63244
63868
  /**
63245
63869
  * @remarks
63870
+ * The session ID.
63871
+ *
63246
63872
  * This parameter is required.
63247
63873
  *
63248
63874
  * @example
@@ -63262,6 +63888,9 @@ export declare class EndTerminalSessionRequest extends $dara.Model {
63262
63888
  }
63263
63889
  export declare class EndTerminalSessionResponseBody extends $dara.Model {
63264
63890
  /**
63891
+ * @remarks
63892
+ * The ID of the request.
63893
+ *
63265
63894
  * @example
63266
63895
  * 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
63267
63896
  */
@@ -64282,19 +64911,20 @@ export declare class InvokeCommandRequest extends $dara.Model {
64282
64911
  regionId?: string;
64283
64912
  /**
64284
64913
  * @remarks
64285
- * The mode in which you want to run the command. Valid values:
64914
+ * Specifies how to run the command. Valid values:
64286
64915
  *
64287
- * * Once: runs the command immediately.
64916
+ * * Once: immediately runs the command.
64288
64917
  * * Period: runs the command based on a schedule. If you set this parameter to `Period`, you must also configure the `Frequency` parameter.
64289
64918
  * * NextRebootOnly: runs the command the next time the instance is started.
64290
- * * EveryReboot: runs the command every time the instance is started.
64919
+ * * EveryReboot: The command is run every time the instances start.
64920
+ * * DryRun: Specifies whether to perform only a dry run, without performing the actual request. The command does not take effect. The system checks the request, including the request parameters, instance execution environment, and Cloud Assistant Agent running status.
64291
64921
  *
64292
- * Default values:
64922
+ * Default value:
64293
64923
  *
64294
64924
  * * If you do not specify `Frequency`, the default value is `Once`.
64295
- * * If you specify `Frequency`, `Period` is used as the value of RepeatMode regardless of whether RepeatMode is set to Period.
64925
+ * * If you specify the `Frequency` parameter, `Period` is used as the value of RepeatMode regardless of whether RepeatMode is set to Period.
64296
64926
  *
64297
- * Take note of the following items:
64927
+ * Take note of the following items when you specify this property:
64298
64928
  *
64299
64929
  * * You can call the [StopInvocation](https://help.aliyun.com/document_detail/64838.html) operation to stop the pending or scheduled executions of the command.
64300
64930
  * * If you set this parameter to `Period` or `EveryReboot`, you can call the [DescribeInvocationResults](https://help.aliyun.com/document_detail/64845.html) operation with `IncludeHistory` set to true to query the results of historical scheduled executions.
@@ -64533,19 +65163,20 @@ export declare class InvokeCommandShrinkRequest extends $dara.Model {
64533
65163
  regionId?: string;
64534
65164
  /**
64535
65165
  * @remarks
64536
- * The mode in which you want to run the command. Valid values:
65166
+ * Specifies how to run the command. Valid values:
64537
65167
  *
64538
- * * Once: runs the command immediately.
65168
+ * * Once: immediately runs the command.
64539
65169
  * * Period: runs the command based on a schedule. If you set this parameter to `Period`, you must also configure the `Frequency` parameter.
64540
65170
  * * NextRebootOnly: runs the command the next time the instance is started.
64541
- * * EveryReboot: runs the command every time the instance is started.
65171
+ * * EveryReboot: The command is run every time the instances start.
65172
+ * * DryRun: Specifies whether to perform only a dry run, without performing the actual request. The command does not take effect. The system checks the request, including the request parameters, instance execution environment, and Cloud Assistant Agent running status.
64542
65173
  *
64543
- * Default values:
65174
+ * Default value:
64544
65175
  *
64545
65176
  * * If you do not specify `Frequency`, the default value is `Once`.
64546
- * * If you specify `Frequency`, `Period` is used as the value of RepeatMode regardless of whether RepeatMode is set to Period.
65177
+ * * If you specify the `Frequency` parameter, `Period` is used as the value of RepeatMode regardless of whether RepeatMode is set to Period.
64547
65178
  *
64548
- * Take note of the following items:
65179
+ * Take note of the following items when you specify this property:
64549
65180
  *
64550
65181
  * * You can call the [StopInvocation](https://help.aliyun.com/document_detail/64838.html) operation to stop the pending or scheduled executions of the command.
64551
65182
  * * If you set this parameter to `Period` or `EveryReboot`, you can call the [DescribeInvocationResults](https://help.aliyun.com/document_detail/64845.html) operation with `IncludeHistory` set to true to query the results of historical scheduled executions.
@@ -65421,60 +66052,6 @@ export declare class ModifyAutoProvisioningGroupResponse extends $dara.Model {
65421
66052
  [key: string]: any;
65422
66053
  });
65423
66054
  }
65424
- export declare class ModifyAutoSnapshotPolicyRequest extends $dara.Model {
65425
- dataDiskPolicyEnabled?: boolean;
65426
- dataDiskPolicyRetentionDays?: number;
65427
- dataDiskPolicyRetentionLastWeek?: boolean;
65428
- dataDiskPolicyTimePeriod?: number;
65429
- ownerAccount?: string;
65430
- ownerId?: number;
65431
- resourceOwnerAccount?: string;
65432
- resourceOwnerId?: number;
65433
- systemDiskPolicyEnabled?: boolean;
65434
- systemDiskPolicyRetentionDays?: number;
65435
- systemDiskPolicyRetentionLastWeek?: boolean;
65436
- systemDiskPolicyTimePeriod?: number;
65437
- static names(): {
65438
- [key: string]: string;
65439
- };
65440
- static types(): {
65441
- [key: string]: any;
65442
- };
65443
- validate(): void;
65444
- constructor(map?: {
65445
- [key: string]: any;
65446
- });
65447
- }
65448
- export declare class ModifyAutoSnapshotPolicyResponseBody extends $dara.Model {
65449
- requestId?: string;
65450
- static names(): {
65451
- [key: string]: string;
65452
- };
65453
- static types(): {
65454
- [key: string]: any;
65455
- };
65456
- validate(): void;
65457
- constructor(map?: {
65458
- [key: string]: any;
65459
- });
65460
- }
65461
- export declare class ModifyAutoSnapshotPolicyResponse extends $dara.Model {
65462
- headers?: {
65463
- [key: string]: string;
65464
- };
65465
- statusCode?: number;
65466
- body?: ModifyAutoSnapshotPolicyResponseBody;
65467
- static names(): {
65468
- [key: string]: string;
65469
- };
65470
- static types(): {
65471
- [key: string]: any;
65472
- };
65473
- validate(): void;
65474
- constructor(map?: {
65475
- [key: string]: any;
65476
- });
65477
- }
65478
66055
  export declare class ModifyAutoSnapshotPolicyExRequest extends $dara.Model {
65479
66056
  /**
65480
66057
  * @remarks
@@ -65845,8 +66422,9 @@ export declare class ModifyCloudAssistantSettingsRequest extends $dara.Model {
65845
66422
  * @remarks
65846
66423
  * The Cloud Assistant feature. Valid values:
65847
66424
  *
65848
- * * SessionManagerDelivery: the Session Record Delivery feature
65849
- * * InvocationDelivery: the Operation Content and Result Delivery feature
66425
+ * * SessionManagerDelivery: the Session Record Delivery configurations.
66426
+ * * InvocationDelivery: the Operation Content and Result Delivery configurations.
66427
+ * * AgentUpgradeConfig: the Cloud Assistant Agent Upgrade configurations.
65850
66428
  *
65851
66429
  * This parameter is required.
65852
66430
  *
@@ -65899,8 +66477,9 @@ export declare class ModifyCloudAssistantSettingsShrinkRequest extends $dara.Mod
65899
66477
  * @remarks
65900
66478
  * The Cloud Assistant feature. Valid values:
65901
66479
  *
65902
- * * SessionManagerDelivery: the Session Record Delivery feature
65903
- * * InvocationDelivery: the Operation Content and Result Delivery feature
66480
+ * * SessionManagerDelivery: the Session Record Delivery configurations.
66481
+ * * InvocationDelivery: the Operation Content and Result Delivery configurations.
66482
+ * * AgentUpgradeConfig: the Cloud Assistant Agent Upgrade configurations.
65904
66483
  *
65905
66484
  * This parameter is required.
65906
66485
  *
@@ -66453,7 +67032,7 @@ export declare class ModifyDedicatedHostAutoRenewAttributeResponse extends $dara
66453
67032
  export declare class ModifyDedicatedHostClusterAttributeRequest extends $dara.Model {
66454
67033
  /**
66455
67034
  * @remarks
66456
- * The ID of the dedicated host cluster.
67035
+ * The ID of the host group.
66457
67036
  *
66458
67037
  * This parameter is required.
66459
67038
  *
@@ -66463,7 +67042,7 @@ export declare class ModifyDedicatedHostClusterAttributeRequest extends $dara.Mo
66463
67042
  dedicatedHostClusterId?: string;
66464
67043
  /**
66465
67044
  * @remarks
66466
- * The new name of the dedicated host cluster. The name must be 2 to 128 characters in length, and can contain letters, digits, periods (.), underscores (_), and hyphens (-). The name must start with a letter. The name cannot contain `http://` or `https://`.
67045
+ * The name of the host group. It must be 2 to 128 characters in length and start with a letter. It can contain letters, digits, periods (.), underscores (_), and hyphens (-), and cannot contain `http://` or `https://`.
66467
67046
  *
66468
67047
  * @example
66469
67048
  * newClusterName
@@ -66471,7 +67050,7 @@ export declare class ModifyDedicatedHostClusterAttributeRequest extends $dara.Mo
66471
67050
  dedicatedHostClusterName?: string;
66472
67051
  /**
66473
67052
  * @remarks
66474
- * The description of the dedicated host cluster. It must be 2 to 256 characters in length. It cannot start with `http://` or `https://`.
67053
+ * The description of the host group. It must be 2 to 256 characters in length, and cannot start with `http://` or `https://`.
66475
67054
  *
66476
67055
  * @example
66477
67056
  * newClusterDescription
@@ -66481,7 +67060,7 @@ export declare class ModifyDedicatedHostClusterAttributeRequest extends $dara.Mo
66481
67060
  ownerId?: number;
66482
67061
  /**
66483
67062
  * @remarks
66484
- * The region ID of the dedicated host cluster. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
67063
+ * The region ID of the host group. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
66485
67064
  *
66486
67065
  * This parameter is required.
66487
67066
  *
@@ -66544,12 +67123,12 @@ export declare class ModifyDedicatedHostsChargeTypeRequest extends $dara.Model {
66544
67123
  * @remarks
66545
67124
  * Specifies whether to automatically complete the payment. Valid values:
66546
67125
  *
66547
- * * true: The payment is automatically completed. Make sure that your account balance is sufficient. Otherwise, your order becomes invalid and will be canceled.
67126
+ * * true: The payment is automatically completed. Make sure that your account balance is sufficient. Otherwise, your order becomes invalid and must be canceled.
66548
67127
  * * false: An order is generated but no payment is made.
66549
67128
  *
66550
67129
  * Default value: true.
66551
67130
  *
66552
- * > If you do not have sufficient balance in your account, you can set `AutoPay` to `false` to generate an unpaid order. Then, you can pay for the order.
67131
+ * > If you do not have sufficient balance in your account, you can set `AutoPay` to `false` to generate an unpaid order. Then, you can pay for the order.
66553
67132
  *
66554
67133
  * @example
66555
67134
  * false
@@ -66565,7 +67144,7 @@ export declare class ModifyDedicatedHostsChargeTypeRequest extends $dara.Model {
66565
67144
  clientToken?: string;
66566
67145
  /**
66567
67146
  * @remarks
66568
- * The new billing method of the dedicated hosts. Valid values:
67147
+ * The new billing method for the dedicated host. Valid values:
66569
67148
  *
66570
67149
  * * PrePaid: changes the billing method from pay-as-you-go to subscription.
66571
67150
  * * PostPaid: changes the billing method from subscription to pay-as-you-go.
@@ -66600,7 +67179,7 @@ export declare class ModifyDedicatedHostsChargeTypeRequest extends $dara.Model {
66600
67179
  * @remarks
66601
67180
  * Specifies whether to perform only a dry run, without performing the actual request. Valid values:
66602
67181
  *
66603
- * * true: performs only a dry run. The system checks your AccessKey pair, the permissions of the RAM user, and the required parameters. If the request fails the dry run, an error message is returned. If the request passes the dry run, the `DryRunOperation` error code is returned.
67182
+ * * true: performs only a dry run. The system checks the request for potential issues, including invalid AccessKey pairs, unauthorized RAM users, and missing parameter values. If the request fails the dry run, an error message is returned. If the request passes the dry run, the `DryRunOperation` error code is returned.
66604
67183
  * * false: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
66605
67184
  *
66606
67185
  * Default value: false.
@@ -66987,7 +67566,7 @@ export declare class ModifyDeploymentSetAttributeResponse extends $dara.Model {
66987
67566
  export declare class ModifyDiagnosticMetricSetRequest extends $dara.Model {
66988
67567
  /**
66989
67568
  * @remarks
66990
- * The new description of the diagnostic metric set.
67569
+ * The description of the diagnostic metric set.
66991
67570
  *
66992
67571
  * @example
66993
67572
  * connection diagnostics
@@ -66995,12 +67574,12 @@ export declare class ModifyDiagnosticMetricSetRequest extends $dara.Model {
66995
67574
  description?: string;
66996
67575
  /**
66997
67576
  * @remarks
66998
- * The ID of diagnostic metric N.
67577
+ * The IDs of diagnostic metrics.
66999
67578
  */
67000
67579
  metricIds?: string[];
67001
67580
  /**
67002
67581
  * @remarks
67003
- * The ID of the diagnostic metric set.
67582
+ * The IDs of the diagnostic metric sets.
67004
67583
  *
67005
67584
  * This parameter is required.
67006
67585
  *
@@ -67010,7 +67589,7 @@ export declare class ModifyDiagnosticMetricSetRequest extends $dara.Model {
67010
67589
  metricSetId?: string;
67011
67590
  /**
67012
67591
  * @remarks
67013
- * The new name of the diagnostic metric set.
67592
+ * The name of the diagnostic metric set.
67014
67593
  *
67015
67594
  * @example
67016
67595
  * remoteConnectError
@@ -67018,7 +67597,7 @@ export declare class ModifyDiagnosticMetricSetRequest extends $dara.Model {
67018
67597
  metricSetName?: string;
67019
67598
  /**
67020
67599
  * @remarks
67021
- * The region ID of the diagnostic metric set. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
67600
+ * The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
67022
67601
  *
67023
67602
  * This parameter is required.
67024
67603
  *
@@ -67028,7 +67607,7 @@ export declare class ModifyDiagnosticMetricSetRequest extends $dara.Model {
67028
67607
  regionId?: string;
67029
67608
  /**
67030
67609
  * @remarks
67031
- * The type of the resource.
67610
+ * The resource type.
67032
67611
  *
67033
67612
  * @example
67034
67613
  * instance
@@ -67048,7 +67627,7 @@ export declare class ModifyDiagnosticMetricSetRequest extends $dara.Model {
67048
67627
  export declare class ModifyDiagnosticMetricSetResponseBody extends $dara.Model {
67049
67628
  /**
67050
67629
  * @remarks
67051
- * The ID of the request.
67630
+ * The request ID.
67052
67631
  *
67053
67632
  * @example
67054
67633
  * 473469C7-AA6F-4DC5-B3DB-A3DC0DE*****
@@ -68587,7 +69166,9 @@ export declare class ModifyInstanceAttributeRequest extends $dara.Model {
68587
69166
  password?: string;
68588
69167
  /**
68589
69168
  * @remarks
68590
- * > This parameter is in invitational preview and is not publicly available.
69169
+ * The private domain name options of the ECS instance.
69170
+ *
69171
+ * For information about private domain name resolution, see [ECS private DNS resolution](https://help.aliyun.com/document_detail/2844797.html).
68591
69172
  */
68592
69173
  privateDnsNameOptions?: ModifyInstanceAttributeRequestPrivateDnsNameOptions;
68593
69174
  /**
@@ -68914,7 +69495,7 @@ export declare class ModifyInstanceChargeTypeRequest extends $dara.Model {
68914
69495
  * @remarks
68915
69496
  * Specifies whether to perform only a dry run, without performing the actual request. Valid values:
68916
69497
  *
68917
- * * true: performs only a dry run. The system checks the request for potential issues, including invalid AccessKey pairs, unauthorized Resource Access Management (RAM) users, and missing parameter values. If the request fails the dry run, an error message is returned. If the request passes the dry run, the `DryRunOperation` error code is returned.
69498
+ * * true: performs only a dry run. The system checks the request for potential issues, including invalid AccessKey pairs, unauthorized RAM users, and missing parameter values. If the request fails the dry run, an error message is returned. If the request passes the dry run, the `DryRunOperation` error code is returned.
68918
69499
  * * false: performs a dry run and performs the actual request. If the request passes the dry run, a 2xx HTTP status code is returned and the operation is performed.
68919
69500
  *
68920
69501
  * Default value: false.
@@ -68938,7 +69519,7 @@ export declare class ModifyInstanceChargeTypeRequest extends $dara.Model {
68938
69519
  includeDataDisks?: boolean;
68939
69520
  /**
68940
69521
  * @remarks
68941
- * The new billing method. Valid values:
69522
+ * The new billing method of the instance. Valid values:
68942
69523
  *
68943
69524
  * * PrePaid: subscription
68944
69525
  * * PostPaid: pay-as-you-go
@@ -69663,7 +70244,7 @@ export declare class ModifyInstanceSpecRequest extends $dara.Model {
69663
70244
  temporary?: ModifyInstanceSpecRequestTemporary;
69664
70245
  /**
69665
70246
  * @remarks
69666
- * Specifies whether to allow cross-cluster instance type upgrade.
70247
+ * Specifies whether to allow cross-cluster instance type upgrade. Valid values:
69667
70248
  *
69668
70249
  * * true
69669
70250
  * * false
@@ -69761,11 +70342,6 @@ export declare class ModifyInstanceSpecRequest extends $dara.Model {
69761
70342
  * @remarks
69762
70343
  * > This parameter is not publicly available.
69763
70344
  *
69764
- * Valid values:
69765
- *
69766
- * * Online
69767
- * * Offline
69768
- *
69769
70345
  * @example
69770
70346
  * null
69771
70347
  */
@@ -70567,7 +71143,7 @@ export declare class ModifyManagedInstanceResponse extends $dara.Model {
70567
71143
  export declare class ModifyNetworkInterfaceAttributeRequest extends $dara.Model {
70568
71144
  /**
70569
71145
  * @remarks
70570
- * > This parameter is in invitational preview and is not publicly available.
71146
+ * The connection tracking configuration of the ENI.
70571
71147
  */
70572
71148
  connectionTrackingConfiguration?: ModifyNetworkInterfaceAttributeRequestConnectionTrackingConfiguration;
70573
71149
  /**
@@ -70627,9 +71203,8 @@ export declare class ModifyNetworkInterfaceAttributeRequest extends $dara.Model
70627
71203
  * @remarks
70628
71204
  * The number of queues supported by the ENI. Valid values: 1 to 2048.
70629
71205
  *
70630
- * * You can change only the number of queues supported by the secondary ENI.
70631
- * * You can change the number of queues supported by the secondary ENI only when the ENI is in the `Available` state or the ENI is attached (`InUse`) to an instance that is in the `Stopped` state.
70632
- * * The number of queues supported by the secondary ENI cannot exceed the maximum number of queues that the instance allows for each ENI. The total number of queues for all ENIs on the instance cannot exceed the queue quota that the instance allows. 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 values of `MaximumQueueNumberPerEni` and `TotalEniQueueQuantity` in the response.
71206
+ * * You can change the number of queues supported by an ENI only when the ENI is in the `Available` state or the ENI is attached (`InUse`) to an instance that is in the `Stopped` state.
71207
+ * * The number of queues supported by the ENI cannot exceed the maximum number of queues that the instance type allows for each ENI. The total number of queues on all ENIs on an instance cannot exceed the queue quota that the instance type supports. 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.
70633
71208
  *
70634
71209
  * @example
70635
71210
  * 8
@@ -72339,6 +72914,99 @@ export declare class ModifySnapshotAttributeResponse extends $dara.Model {
72339
72914
  [key: string]: any;
72340
72915
  });
72341
72916
  }
72917
+ export declare class ModifySnapshotCategoryRequest extends $dara.Model {
72918
+ /**
72919
+ * @remarks
72920
+ * The new type of the snapshot.
72921
+ *
72922
+ * * Archive: archive snapshot
72923
+ *
72924
+ * @example
72925
+ * Archive
72926
+ */
72927
+ category?: string;
72928
+ ownerAccount?: string;
72929
+ ownerId?: number;
72930
+ resourceOwnerAccount?: string;
72931
+ resourceOwnerId?: number;
72932
+ /**
72933
+ * @remarks
72934
+ * The retention period of the snapshot. Unit: days. The retention period started at the point in time when the snapshot was created. After the snapshot is archived, the minimum retention period (also called minimum archive period) is 60 days. If you delete the snapshot within 60 days after the snapshot is archived, you are charged archive tier storage fees for the snapshot for 60 days. For more information about the billing of snapshots, see [Snapshots](https://help.aliyun.com/document_detail/56159.html).
72935
+ *
72936
+ * Valid values: 60 to 65536.
72937
+ *
72938
+ * > If you do not specify this parameter, the snapshot is permanently retained.
72939
+ *
72940
+ * @example
72941
+ * 60
72942
+ */
72943
+ retentionDays?: number;
72944
+ /**
72945
+ * @remarks
72946
+ * The ID of the snapshot.
72947
+ *
72948
+ * This parameter is required.
72949
+ *
72950
+ * @example
72951
+ * s-123**sd
72952
+ */
72953
+ snapshotId?: string;
72954
+ static names(): {
72955
+ [key: string]: string;
72956
+ };
72957
+ static types(): {
72958
+ [key: string]: any;
72959
+ };
72960
+ validate(): void;
72961
+ constructor(map?: {
72962
+ [key: string]: any;
72963
+ });
72964
+ }
72965
+ export declare class ModifySnapshotCategoryResponseBody extends $dara.Model {
72966
+ /**
72967
+ * @remarks
72968
+ * The request ID.
72969
+ *
72970
+ * @example
72971
+ * B48A12CD-1295-4A38-A8F0-0E92C937****
72972
+ */
72973
+ requestId?: string;
72974
+ /**
72975
+ * @remarks
72976
+ * The ID of the archive task. You can call the DescribeTasks operation to query the status and progress of the archive task.
72977
+ *
72978
+ * @example
72979
+ * t-dxh34xds**d
72980
+ */
72981
+ taskId?: string;
72982
+ static names(): {
72983
+ [key: string]: string;
72984
+ };
72985
+ static types(): {
72986
+ [key: string]: any;
72987
+ };
72988
+ validate(): void;
72989
+ constructor(map?: {
72990
+ [key: string]: any;
72991
+ });
72992
+ }
72993
+ export declare class ModifySnapshotCategoryResponse extends $dara.Model {
72994
+ headers?: {
72995
+ [key: string]: string;
72996
+ };
72997
+ statusCode?: number;
72998
+ body?: ModifySnapshotCategoryResponseBody;
72999
+ static names(): {
73000
+ [key: string]: string;
73001
+ };
73002
+ static types(): {
73003
+ [key: string]: any;
73004
+ };
73005
+ validate(): void;
73006
+ constructor(map?: {
73007
+ [key: string]: any;
73008
+ });
73009
+ }
72342
73010
  export declare class ModifySnapshotGroupRequest extends $dara.Model {
72343
73011
  /**
72344
73012
  * @remarks
@@ -72951,7 +73619,7 @@ export declare class PurchaseElasticityAssuranceRequest extends $dara.Model {
72951
73619
  * * When the PeriodUnit parameter is set to Month, valid values are 1, 2, 3, 4, 5, 6, 7, 8, and 9.
72952
73620
  * * When the PeriodUnit parameter is set to Year, valid values are 1, 2, 3, 4, and 5.
72953
73621
  *
72954
- * Default value: 1.
73622
+ * Default value: 1
72955
73623
  *
72956
73624
  * @example
72957
73625
  * 1
@@ -72972,7 +73640,7 @@ export declare class PurchaseElasticityAssuranceRequest extends $dara.Model {
72972
73640
  periodUnit?: string;
72973
73641
  /**
72974
73642
  * @remarks
72975
- * The region ID of the elasticity assurance. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/2679950.html) operation to query the most recent region list.
73643
+ * The ID of the region in which to purchase the elasticity assurance. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/2679950.html) operation to query the most recent region list.
72976
73644
  *
72977
73645
  * This parameter is required.
72978
73646
  *
@@ -74632,6 +75300,8 @@ export declare class RenewElasticityAssurancesRequest extends $dara.Model {
74632
75300
  * true
74633
75301
  */
74634
75302
  autoPay?: boolean;
75303
+ autoRenew?: boolean;
75304
+ autoRenewPeriod?: number;
74635
75305
  /**
74636
75306
  * @remarks
74637
75307
  * 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.
@@ -75446,7 +76116,7 @@ export declare class ResetDiskResponse extends $dara.Model {
75446
76116
  export declare class ResetDiskDefaultKMSKeyIdRequest extends $dara.Model {
75447
76117
  /**
75448
76118
  * @remarks
75449
- * The ID of the region. You can call the DescribeRegions operation to query the most recent region list.
76119
+ * The ID of the region for which you want to disable Account-level EBS Default Encryption. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/2679950.html) operation to query the most recent region list.
75450
76120
  *
75451
76121
  * This parameter is required.
75452
76122
  *
@@ -76436,11 +77106,26 @@ export declare class RunCommandRequest extends $dara.Model {
76436
77106
  * Specifies how to run the command. Valid values:
76437
77107
  *
76438
77108
  * * Once: immediately runs the command.
76439
- * * Period: runs the command on a schedule. If you set this parameter to `Period`, you must specify `Frequency`.
76440
- * * NextRebootOnly: runs the command the next time the instance is started.
76441
- * * EveryReboot: runs the command every time the instance is started.
77109
+ * * Period: runs the command on a schedule. If you set this parameter to `Period`, you must also configure the `Frequency` parameter.
77110
+ * * NextRebootOnly: runs the command the next time the instances start.
77111
+ * * EveryReboot: runs the command every time the instances start. Specifies how to run the command. Valid values:
77112
+ * * Once: immediately runs the command.
77113
+ * * Period: runs the command on a schedule. If you set this parameter to `Period`, you must also configure the `Frequency` parameter.
77114
+ * * NextRebootOnly: runs the command the next time the instances start.
77115
+ * * EveryReboot: runs the command every time the instances start.
77116
+ * * DryRun: performs only a dry run, without running the actual command. The system checks the request parameters, the execution environments on the instances, and the status of Cloud Assistant Agent.
76442
77117
  *
76443
- * Default values:
77118
+ * Default value:
77119
+ *
77120
+ * * If you do not specify the `Frequency` parameter, the default value is `Once`.
77121
+ * * If you specify the `Frequency` parameter, `Period` is used as the value of RepeatMode regardless of whether RepeatMode is set to Period.
77122
+ *
77123
+ * Take note of the following items:
77124
+ *
77125
+ * * You can call the [StopInvocation](https://help.aliyun.com/document_detail/64838.html) operation to stop the pending or scheduled executions of the command.
77126
+ * * If you set this parameter to `Period` or `EveryReboot`, you can call the [DescribeInvocationResults](https://help.aliyun.com/document_detail/64845.html) operation with `IncludeHistory` set to true to query the results of historical scheduled executions.
77127
+ *
77128
+ * Default value:
76444
77129
  *
76445
77130
  * * If you do not specify the `Frequency` parameter, the default value is `Once`.
76446
77131
  * * If you specify the `Frequency` parameter, `Period` is used as the value of RepeatMode regardless of whether RepeatMode is set to Period.
@@ -76792,11 +77477,26 @@ export declare class RunCommandShrinkRequest extends $dara.Model {
76792
77477
  * Specifies how to run the command. Valid values:
76793
77478
  *
76794
77479
  * * Once: immediately runs the command.
76795
- * * Period: runs the command on a schedule. If you set this parameter to `Period`, you must specify `Frequency`.
76796
- * * NextRebootOnly: runs the command the next time the instance is started.
76797
- * * EveryReboot: runs the command every time the instance is started.
77480
+ * * Period: runs the command on a schedule. If you set this parameter to `Period`, you must also configure the `Frequency` parameter.
77481
+ * * NextRebootOnly: runs the command the next time the instances start.
77482
+ * * EveryReboot: runs the command every time the instances start. Specifies how to run the command. Valid values:
77483
+ * * Once: immediately runs the command.
77484
+ * * Period: runs the command on a schedule. If you set this parameter to `Period`, you must also configure the `Frequency` parameter.
77485
+ * * NextRebootOnly: runs the command the next time the instances start.
77486
+ * * EveryReboot: runs the command every time the instances start.
77487
+ * * DryRun: performs only a dry run, without running the actual command. The system checks the request parameters, the execution environments on the instances, and the status of Cloud Assistant Agent.
76798
77488
  *
76799
- * Default values:
77489
+ * Default value:
77490
+ *
77491
+ * * If you do not specify the `Frequency` parameter, the default value is `Once`.
77492
+ * * If you specify the `Frequency` parameter, `Period` is used as the value of RepeatMode regardless of whether RepeatMode is set to Period.
77493
+ *
77494
+ * Take note of the following items:
77495
+ *
77496
+ * * You can call the [StopInvocation](https://help.aliyun.com/document_detail/64838.html) operation to stop the pending or scheduled executions of the command.
77497
+ * * If you set this parameter to `Period` or `EveryReboot`, you can call the [DescribeInvocationResults](https://help.aliyun.com/document_detail/64845.html) operation with `IncludeHistory` set to true to query the results of historical scheduled executions.
77498
+ *
77499
+ * Default value:
76800
77500
  *
76801
77501
  * * If you do not specify the `Frequency` parameter, the default value is `Once`.
76802
77502
  * * If you specify the `Frequency` parameter, `Period` is used as the value of RepeatMode regardless of whether RepeatMode is set to Period.
@@ -78068,6 +78768,10 @@ export declare class StartImagePipelineExecutionRequest extends $dara.Model {
78068
78768
  regionId?: string;
78069
78769
  resourceOwnerAccount?: string;
78070
78770
  resourceOwnerId?: number;
78771
+ /**
78772
+ * @remarks
78773
+ * The tags.
78774
+ */
78071
78775
  tag?: StartImagePipelineExecutionRequestTag[];
78072
78776
  /**
78073
78777
  * @remarks
@@ -79569,12 +80273,15 @@ export default class Client extends OpenApi {
79569
80273
  */
79570
80274
  allocateEipAddress(request: AllocateEipAddressRequest): Promise<AllocateEipAddressResponse>;
79571
80275
  /**
79572
- * Assigns a static public IP address (also called system-assigned public IP address or auto-assigned public IP address) to an Elastic Compute Service (ECS) instance. Only users that are included in a whitelist can call this operation.
80276
+ * Assigns a static public IP address (also called system-assigned public IP address or auto-assigned public IP address) to an Elastic Compute Service (ECS) instance.
79573
80277
  *
79574
80278
  * @remarks
79575
- * Take note of the following items:
79576
- * * The instance to which you want to assign a static public IP address must be in the **Running** (`Running`) or **Stopped** (`Stopped`) state.
79577
- * * If `OperationLocks` in the response of the DescribeInstances operation contains `"LockReason" : "security"` for an instance, the instance is [locked for security reasons](https://help.aliyun.com/document_detail/25695.html) and cannot be assigned a static public IP address.
80279
+ * ### [](#)Precautions
80280
+ * * The ECS instance to which you want to assign a static public IP address must be in the **Running** (`Running`) or **Stopped** (`Stopped`) state.
80281
+ * * If `OperationLocks` in the response of the DescribeInstances operation contains `"LockReason" : "security"` for an ECS instance, the instance is [locked for security reasons](https://help.aliyun.com/document_detail/25695.html) and cannot be assigned a static public IP address.
80282
+ * * When you call the AllocatePublicIpAddress operation for an ECS instance, make sure that the public bandwidth of the instance is greater than 0 Mbit/s. You can call the [ModifyInstanceNetworkSpec](https://help.aliyun.com/document_detail/2679879.html) operation to change the public bandwidth.
80283
+ * ### [](#)Considerations
80284
+ * * Only users in the whitelist can specify `IpAddress` in the AllocatePublicIpAddress operation. If the public bandwidth of your ECS instance is greater than 0 Mbit/s, you can specify the ID of the instance (`InstanceId`) to randomly assign a static public IP address to the instance. If the public bandwidth of your ECS instance is 0 Mbit/s, you must call the [ModifyInstanceNetworkSpec](https://help.aliyun.com/document_detail/2679879.html) operation to increase the public bandwidth of the instance before you call the AllocatePublicIpAddress operation.
79578
80285
  * * You can assign only one static public IP address to an ECS instance. If the instance already has a static public IP address, the static public IP address is returned for the `IpAddress` response parameter.
79579
80286
  * * After you assign a static public IP address to an ECS instance, you must restart the instance ([RebootInstance](https://help.aliyun.com/document_detail/25502.html)) or start the instance ([StartInstance](https://help.aliyun.com/document_detail/25500.html)) for the public IP address to take effect.
79580
80287
  * If an ECS instance resides in a virtual private cloud (VPC), you can assign a static public IP address to the instance or associate an elastic IP address (EIP) with the instance. For more information, see [AssociateEipAddress](https://help.aliyun.com/document_detail/2518064.html).
@@ -79585,12 +80292,15 @@ export default class Client extends OpenApi {
79585
80292
  */
79586
80293
  allocatePublicIpAddressWithOptions(request: AllocatePublicIpAddressRequest, runtime: $dara.RuntimeOptions): Promise<AllocatePublicIpAddressResponse>;
79587
80294
  /**
79588
- * Assigns a static public IP address (also called system-assigned public IP address or auto-assigned public IP address) to an Elastic Compute Service (ECS) instance. Only users that are included in a whitelist can call this operation.
80295
+ * Assigns a static public IP address (also called system-assigned public IP address or auto-assigned public IP address) to an Elastic Compute Service (ECS) instance.
79589
80296
  *
79590
80297
  * @remarks
79591
- * Take note of the following items:
79592
- * * The instance to which you want to assign a static public IP address must be in the **Running** (`Running`) or **Stopped** (`Stopped`) state.
79593
- * * If `OperationLocks` in the response of the DescribeInstances operation contains `"LockReason" : "security"` for an instance, the instance is [locked for security reasons](https://help.aliyun.com/document_detail/25695.html) and cannot be assigned a static public IP address.
80298
+ * ### [](#)Precautions
80299
+ * * The ECS instance to which you want to assign a static public IP address must be in the **Running** (`Running`) or **Stopped** (`Stopped`) state.
80300
+ * * If `OperationLocks` in the response of the DescribeInstances operation contains `"LockReason" : "security"` for an ECS instance, the instance is [locked for security reasons](https://help.aliyun.com/document_detail/25695.html) and cannot be assigned a static public IP address.
80301
+ * * When you call the AllocatePublicIpAddress operation for an ECS instance, make sure that the public bandwidth of the instance is greater than 0 Mbit/s. You can call the [ModifyInstanceNetworkSpec](https://help.aliyun.com/document_detail/2679879.html) operation to change the public bandwidth.
80302
+ * ### [](#)Considerations
80303
+ * * Only users in the whitelist can specify `IpAddress` in the AllocatePublicIpAddress operation. If the public bandwidth of your ECS instance is greater than 0 Mbit/s, you can specify the ID of the instance (`InstanceId`) to randomly assign a static public IP address to the instance. If the public bandwidth of your ECS instance is 0 Mbit/s, you must call the [ModifyInstanceNetworkSpec](https://help.aliyun.com/document_detail/2679879.html) operation to increase the public bandwidth of the instance before you call the AllocatePublicIpAddress operation.
79594
80304
  * * You can assign only one static public IP address to an ECS instance. If the instance already has a static public IP address, the static public IP address is returned for the `IpAddress` response parameter.
79595
80305
  * * After you assign a static public IP address to an ECS instance, you must restart the instance ([RebootInstance](https://help.aliyun.com/document_detail/25502.html)) or start the instance ([StartInstance](https://help.aliyun.com/document_detail/25500.html)) for the public IP address to take effect.
79596
80306
  * If an ECS instance resides in a virtual private cloud (VPC), you can assign a static public IP address to the instance or associate an elastic IP address (EIP) with the instance. For more information, see [AssociateEipAddress](https://help.aliyun.com/document_detail/2518064.html).
@@ -80316,19 +81026,19 @@ export default class Client extends OpenApi {
80316
81026
  *
80317
81027
  * @remarks
80318
81028
  * ## [](#)Usage notes
80319
- * After you use an activation code to register a server that is not provided by Alibaba Cloud as an Alibaba Cloud managed instance, you can use a variety of online services provided by Alibaba Cloud, such as Cloud Assistant, CloudOps Orchestration Service (OOS), and Apsara Devops on the managed instance.
81029
+ * After you use an activation code to register a server that is not provided by Alibaba Cloud as an Alibaba Cloud managed instance, you can use various online services of Alibaba Cloud, such as Cloud Assistant, CloudOps Orchestration Service (OOS), and Apsara Devops, on the managed instance.
80320
81030
  * If a server is not provided by Alibaba Cloud, you can register the server as an Alibaba Cloud managed instance only if the server has Internet connectivity and runs one of the following operating systems:
80321
- * * Alibaba Cloud Linux 2 and Alibaba Cloud Linux 3 and later
80322
- * * CentOS 6, CentOS 7, and CentOS 8 and later
80323
- * * Debian 8, Debian 9, and Debian 10 and later
80324
- * * Ubuntu 12, Ubuntu 14, Ubuntu 16, and Ubuntu 18 and later
81031
+ * * Alibaba Cloud Linux 2, Alibaba Cloud Linux 3, or later
81032
+ * * CentOS 6, CentOS 7, CentOS 8, or later
81033
+ * * Debian 8, Debian 9, Debian 10, or later
81034
+ * * Ubuntu 12, Ubuntu 14, Ubuntu 16, Ubuntu 18, or later
80325
81035
  * * CoreOS
80326
81036
  * * OpenSUSE
80327
- * * Red Hat 5, Red Hat 6, and Red Hat 7 and later
80328
- * * SUSE Linux Enterprise Server 11, SUSE Linux Enterprise Server 12, and SUSE Linux Enterprise Server 15 and later
80329
- * * Windows Server 2012, Windows Server 2016, and Windows Server 2019 and later
81037
+ * * Red Hat 5, Red Hat 6, Red Hat 7, or later
81038
+ * * SUSE Linux Enterprise Server 11, SUSE Linux Enterprise Server 12, SUSE Linux Enterprise Server 15, or later
81039
+ * * Windows Server 2012, Windows Server 2016, Windows Server 2019, or later
80330
81040
  * You can have up to 5,000 activation codes per Alibaba Cloud region. When the number of activation codes exceeds 1,000, the usage of the activation codes must be greater than 50% before you can create additional activation codes.
80331
- * > To obtain the usage of activation codes, go to the **ECS Cloud Assistant** page, click the **Manage Instances** tab, and then click **Register Instance**.
81041
+ * > To obtain the usage of activation codes, go to the **ECS Cloud Assistant** page in the Elastic Compute Service (ECS) console, click the **Manage Instances** tab, and then click **Register Instance**.
80332
81042
  *
80333
81043
  * @param request - CreateActivationRequest
80334
81044
  * @param runtime - runtime options for this request RuntimeOptions
@@ -80340,19 +81050,19 @@ export default class Client extends OpenApi {
80340
81050
  *
80341
81051
  * @remarks
80342
81052
  * ## [](#)Usage notes
80343
- * After you use an activation code to register a server that is not provided by Alibaba Cloud as an Alibaba Cloud managed instance, you can use a variety of online services provided by Alibaba Cloud, such as Cloud Assistant, CloudOps Orchestration Service (OOS), and Apsara Devops on the managed instance.
81053
+ * After you use an activation code to register a server that is not provided by Alibaba Cloud as an Alibaba Cloud managed instance, you can use various online services of Alibaba Cloud, such as Cloud Assistant, CloudOps Orchestration Service (OOS), and Apsara Devops, on the managed instance.
80344
81054
  * If a server is not provided by Alibaba Cloud, you can register the server as an Alibaba Cloud managed instance only if the server has Internet connectivity and runs one of the following operating systems:
80345
- * * Alibaba Cloud Linux 2 and Alibaba Cloud Linux 3 and later
80346
- * * CentOS 6, CentOS 7, and CentOS 8 and later
80347
- * * Debian 8, Debian 9, and Debian 10 and later
80348
- * * Ubuntu 12, Ubuntu 14, Ubuntu 16, and Ubuntu 18 and later
81055
+ * * Alibaba Cloud Linux 2, Alibaba Cloud Linux 3, or later
81056
+ * * CentOS 6, CentOS 7, CentOS 8, or later
81057
+ * * Debian 8, Debian 9, Debian 10, or later
81058
+ * * Ubuntu 12, Ubuntu 14, Ubuntu 16, Ubuntu 18, or later
80349
81059
  * * CoreOS
80350
81060
  * * OpenSUSE
80351
- * * Red Hat 5, Red Hat 6, and Red Hat 7 and later
80352
- * * SUSE Linux Enterprise Server 11, SUSE Linux Enterprise Server 12, and SUSE Linux Enterprise Server 15 and later
80353
- * * Windows Server 2012, Windows Server 2016, and Windows Server 2019 and later
81061
+ * * Red Hat 5, Red Hat 6, Red Hat 7, or later
81062
+ * * SUSE Linux Enterprise Server 11, SUSE Linux Enterprise Server 12, SUSE Linux Enterprise Server 15, or later
81063
+ * * Windows Server 2012, Windows Server 2016, Windows Server 2019, or later
80354
81064
  * You can have up to 5,000 activation codes per Alibaba Cloud region. When the number of activation codes exceeds 1,000, the usage of the activation codes must be greater than 50% before you can create additional activation codes.
80355
- * > To obtain the usage of activation codes, go to the **ECS Cloud Assistant** page, click the **Manage Instances** tab, and then click **Register Instance**.
81065
+ * > To obtain the usage of activation codes, go to the **ECS Cloud Assistant** page in the Elastic Compute Service (ECS) console, click the **Manage Instances** tab, and then click **Register Instance**.
80356
81066
  *
80357
81067
  * @param request - CreateActivationRequest
80358
81068
  * @returns CreateActivationResponse
@@ -80497,7 +81207,7 @@ export default class Client extends OpenApi {
80497
81207
  */
80498
81208
  createCommand(request: CreateCommandRequest): Promise<CreateCommandResponse>;
80499
81209
  /**
80500
- * Creates a dedicated host cluster. When you call this operation, you can specify parameters, such as ResourceGroupId, DedicatedHostClusterName, and ZoneId, in the request.
81210
+ * Creates a dedicated host group.
80501
81211
  *
80502
81212
  * @param request - CreateDedicatedHostClusterRequest
80503
81213
  * @param runtime - runtime options for this request RuntimeOptions
@@ -80505,7 +81215,7 @@ export default class Client extends OpenApi {
80505
81215
  */
80506
81216
  createDedicatedHostClusterWithOptions(request: CreateDedicatedHostClusterRequest, runtime: $dara.RuntimeOptions): Promise<CreateDedicatedHostClusterResponse>;
80507
81217
  /**
80508
- * Creates a dedicated host cluster. When you call this operation, you can specify parameters, such as ResourceGroupId, DedicatedHostClusterName, and ZoneId, in the request.
81218
+ * Creates a dedicated host group.
80509
81219
  *
80510
81220
  * @param request - CreateDedicatedHostClusterRequest
80511
81221
  * @returns CreateDedicatedHostClusterResponse
@@ -80556,7 +81266,7 @@ export default class Client extends OpenApi {
80556
81266
  */
80557
81267
  createDeploymentSet(request: CreateDeploymentSetRequest): Promise<CreateDeploymentSetResponse>;
80558
81268
  /**
80559
- * The operation that you want to perform. Set the value to **CreateDiagnosticMetricSet**.
81269
+ * Creates a diagnostic metric set. You can group diagnostic metrics into diagnostic metric sets.
80560
81270
  *
80561
81271
  * @param request - CreateDiagnosticMetricSetRequest
80562
81272
  * @param runtime - runtime options for this request RuntimeOptions
@@ -80564,14 +81274,14 @@ export default class Client extends OpenApi {
80564
81274
  */
80565
81275
  createDiagnosticMetricSetWithOptions(request: CreateDiagnosticMetricSetRequest, runtime: $dara.RuntimeOptions): Promise<CreateDiagnosticMetricSetResponse>;
80566
81276
  /**
80567
- * The operation that you want to perform. Set the value to **CreateDiagnosticMetricSet**.
81277
+ * Creates a diagnostic metric set. You can group diagnostic metrics into diagnostic metric sets.
80568
81278
  *
80569
81279
  * @param request - CreateDiagnosticMetricSetRequest
80570
81280
  * @returns CreateDiagnosticMetricSetResponse
80571
81281
  */
80572
81282
  createDiagnosticMetricSet(request: CreateDiagnosticMetricSetRequest): Promise<CreateDiagnosticMetricSetResponse>;
80573
81283
  /**
80574
- * 创建诊断报告
81284
+ * Creates a diagnostic report for a resource. When you call this operation, you can configure the MetricSetId parameter to create a diagnostic report based on the specified diagnostic metric set. Then, you can call the DescribeDiagnosticReportAttributes operation based on the returned diagnostic report ID to view the details of the diagnostic report.
80575
81285
  *
80576
81286
  * @param request - CreateDiagnosticReportRequest
80577
81287
  * @param runtime - runtime options for this request RuntimeOptions
@@ -80579,7 +81289,7 @@ export default class Client extends OpenApi {
80579
81289
  */
80580
81290
  createDiagnosticReportWithOptions(request: CreateDiagnosticReportRequest, runtime: $dara.RuntimeOptions): Promise<CreateDiagnosticReportResponse>;
80581
81291
  /**
80582
- * 创建诊断报告
81292
+ * Creates a diagnostic report for a resource. When you call this operation, you can configure the MetricSetId parameter to create a diagnostic report based on the specified diagnostic metric set. Then, you can call the DescribeDiagnosticReportAttributes operation based on the returned diagnostic report ID to view the details of the diagnostic report.
80583
81293
  *
80584
81294
  * @param request - CreateDiagnosticReportRequest
80585
81295
  * @returns CreateDiagnosticReportResponse
@@ -80811,24 +81521,22 @@ export default class Client extends OpenApi {
80811
81521
  * Creates a subscription or pay-as-you-go Elastic Compute Service (ECS) instance. When you call this operation, you can specify different parameters to create instances based on your business requirements.
80812
81522
  *
80813
81523
  * @remarks
80814
- * ## [](#)Usage notes
80815
81524
  * > This operation is no longer iterated or updated. We recommend that you call the [RunInstances](https://help.aliyun.com/document_detail/2679677.html) operation instead.
80816
- * **Before you call this operation, familiarize yourself with the billing and [pricing](https://www.alibabacloud.com/zh/pricing-calculator#/commodity/vm_intl) of ECS resources.**
81525
+ * **Before you call this operation, familiarize yourself with the billing rules and [pricing](https://www.alibabacloud.com/zh/pricing-calculator#/commodity/vm_intl) of ECS resources.**
80817
81526
  * This operation is an asynchronous operation. After a request to create an ECS instance is sent, an ECS instance ID is immediately returned but the instance may be still being created. You can call the [DescribeInstanceStatus](https://help.aliyun.com/document_detail/2679688.html) operation to query the status of the instance. If the status of the instance is `Stopped` in the DescribeInstanceStatus response, the instance is created. In this case, you can call the [StartInstance](https://help.aliyun.com/document_detail/2679679.html) operation to start the instance.
80818
- * * **Prerequisites**
80819
- * * Make sure that you are familiar with the ECS billing methods because you may be charged for the resources that are used by the instance. For more information, see [Billing overview](https://help.aliyun.com/document_detail/25398.html).
80820
- * * Make sure that the number of ECS instances you create or the number of vCPUs on ECS instances of all instance types you create does not exceed the corresponding quota. Go to the [Quota Center](https://quotas.console.aliyun.com/products/ecs/quotas) to view the quotas.
80821
- * * Before you create ECS instances of the Virtual Private Cloud (VPC) type in a region, create a VPC in the region. For more information, see [Create a VPC](https://help.aliyun.com/document_detail/65430.html).
80822
- * * **Considerations**:
80823
- * * If you create a subscription instance (`PrePaid`), available coupons in your account are used by default.
80824
- * * If you want to create instances with 512 MiB of memory, you cannot use Windows Server images except for Windows Server Semi-Annual Channel images. If you want to create instances with 4 GiB or more of memory, you cannot use 32-bit OS image.
80825
- * * If you call the CreateInstance operation to create an instance, no public IP address is automatically assigned to the instance. You can call the [AllocatePublicIpAddress](https://help.aliyun.com/document_detail/25544.html) operation to assign a public IP address to the instance.
80826
- * **
80827
- * **Note** Starting November 27, 2020, when you create ECS instances or change ECS instance configurations, the maximum bandwidth value that you can specify is subject to the throttling policy of your account. To increase the maximum bandwidth value, submit a ticket. The throttling policy imposes the following constraints: In a single region, the total maximum bandwidth value of all instances that use the pay-by-traffic billing method for network usage cannot exceed 5 Gbit/s and the total bandwidth value of all instances that use the pay-by-bandwidth billing method for network usage cannot exceed 50 Gbit/s.
80828
- * * **Suggestions**:
80829
- * * Instance type selection: 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 performance data of instance types, or see [Best practices for instance type selection](https://help.aliyun.com/document_detail/58291.html) to learn about how to select instance types.
80830
- * * Query of available resources: Call the [DescribeAvailableResource](https://help.aliyun.com/document_detail/66186.html) operation to query resources available in a specific region or zone.
80831
- * * [User data](https://help.aliyun.com/document_detail/49121.html): If the instance type supports user data, you can use the UserData parameter to pass in user data. User data is encoded in Base64. We recommend that you do not pass in confidential information (such as passwords or private keys) in plaintext as user data. This is because the system does not encrypt `UserData` values when API requests are transmitted. If you must pass in confidential information, we recommend that you encrypt and encode the information in Base64 before you pass in the information. Then decode and decrypt the information in the same way within the instance.
81527
+ * ### [](#)Prerequisites
81528
+ * * Make sure that you are familiar with the ECS billing methods because you may be charged for the resources that are used by the instance. For more information, see [Billing overview](https://help.aliyun.com/document_detail/25398.html).
81529
+ * * Make sure that the number of ECS instances you create or the number of vCPUs on ECS instances of all instance types you create does not exceed the corresponding quota. Go to the [Quota Center](https://quotas.console.aliyun.com/products/ecs/quotas) to view the quotas.
81530
+ * * Before you create ECS instances of the Virtual Private Cloud (VPC) type in a region, create a VPC in the region. For more information, see [Create a VPC](https://help.aliyun.com/document_detail/65430.html).
81531
+ * ### [](#)Considerations
81532
+ * * If you create a subscription instance (`PrePaid`), available coupons in your account are automatically used.
81533
+ * * If you want to create instances with 512 MiB of memory, you cannot use Windows Server images except for Windows Server Semi-Annual Channel images. If you want to create instances with 4 GiB or more of memory, you cannot use 32-bit OS image.
81534
+ * * If you call the CreateInstance operation to create an instance, no public IP address is automatically assigned to the instance. If the InternetMaxBandwidthOut value of the instance is greater than 0 Mbit/s, call the [AllocatePublicIpAddress](https://help.aliyun.com/document_detail/25544.html) operation to assign a public IP address to the instance. If the InternetMaxBandwidthOut value of the instance is 0 Mbit/s, call the [ModifyInstanceNetworkSpec](https://help.aliyun.com/document_detail/2679879.html) operation to set InternetMaxBandwidthOut to a value greater than 0 Mbit/s and then call the [AllocatePublicIpAddress](https://help.aliyun.com/document_detail/25544.html) operation to assign a public IP address to the instance.
81535
+ * > For the limits on the sum of maximum public bandwidths of ECS instances that use the pay-by-bandwidth billing method for network usage per region per Alibaba Cloud account, see the [Public bandwidth limits](~~25412#BandwidthQuota~~) section of the "Limits" topic.
81536
+ * ### [](#)Suggestions
81537
+ * * **Instance type selection**: See [Overview of 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 performance data of instance types, or see [Instance type selection](https://help.aliyun.com/document_detail/58291.html) to learn about how to select instance types.
81538
+ * * **Query of available resources**: Call the [DescribeAvailableResource](https://help.aliyun.com/document_detail/66186.html) operation to query resources available in a specific region or zone.
81539
+ * * **User data**: If the instance type supports [user data](https://help.aliyun.com/document_detail/49121.html), you can use UserData to pass in user data. We recommend that you do not pass in confidential information, such as passwords or private keys, in plaintext as user data. This is because the system does not encrypt `UserData` values when API requests are sent. If you must pass in confidential information as user data, we recommend that you encrypt and encode the information in Base64 before you pass in the information. Then, decode and decrypt the information within the instance for subsequent use.
80832
81540
  *
80833
81541
  * @param request - CreateInstanceRequest
80834
81542
  * @param runtime - runtime options for this request RuntimeOptions
@@ -80839,24 +81547,22 @@ export default class Client extends OpenApi {
80839
81547
  * Creates a subscription or pay-as-you-go Elastic Compute Service (ECS) instance. When you call this operation, you can specify different parameters to create instances based on your business requirements.
80840
81548
  *
80841
81549
  * @remarks
80842
- * ## [](#)Usage notes
80843
81550
  * > This operation is no longer iterated or updated. We recommend that you call the [RunInstances](https://help.aliyun.com/document_detail/2679677.html) operation instead.
80844
- * **Before you call this operation, familiarize yourself with the billing and [pricing](https://www.alibabacloud.com/zh/pricing-calculator#/commodity/vm_intl) of ECS resources.**
81551
+ * **Before you call this operation, familiarize yourself with the billing rules and [pricing](https://www.alibabacloud.com/zh/pricing-calculator#/commodity/vm_intl) of ECS resources.**
80845
81552
  * This operation is an asynchronous operation. After a request to create an ECS instance is sent, an ECS instance ID is immediately returned but the instance may be still being created. You can call the [DescribeInstanceStatus](https://help.aliyun.com/document_detail/2679688.html) operation to query the status of the instance. If the status of the instance is `Stopped` in the DescribeInstanceStatus response, the instance is created. In this case, you can call the [StartInstance](https://help.aliyun.com/document_detail/2679679.html) operation to start the instance.
80846
- * * **Prerequisites**
80847
- * * Make sure that you are familiar with the ECS billing methods because you may be charged for the resources that are used by the instance. For more information, see [Billing overview](https://help.aliyun.com/document_detail/25398.html).
80848
- * * Make sure that the number of ECS instances you create or the number of vCPUs on ECS instances of all instance types you create does not exceed the corresponding quota. Go to the [Quota Center](https://quotas.console.aliyun.com/products/ecs/quotas) to view the quotas.
80849
- * * Before you create ECS instances of the Virtual Private Cloud (VPC) type in a region, create a VPC in the region. For more information, see [Create a VPC](https://help.aliyun.com/document_detail/65430.html).
80850
- * * **Considerations**:
80851
- * * If you create a subscription instance (`PrePaid`), available coupons in your account are used by default.
80852
- * * If you want to create instances with 512 MiB of memory, you cannot use Windows Server images except for Windows Server Semi-Annual Channel images. If you want to create instances with 4 GiB or more of memory, you cannot use 32-bit OS image.
80853
- * * If you call the CreateInstance operation to create an instance, no public IP address is automatically assigned to the instance. You can call the [AllocatePublicIpAddress](https://help.aliyun.com/document_detail/25544.html) operation to assign a public IP address to the instance.
80854
- * **
80855
- * **Note** Starting November 27, 2020, when you create ECS instances or change ECS instance configurations, the maximum bandwidth value that you can specify is subject to the throttling policy of your account. To increase the maximum bandwidth value, submit a ticket. The throttling policy imposes the following constraints: In a single region, the total maximum bandwidth value of all instances that use the pay-by-traffic billing method for network usage cannot exceed 5 Gbit/s and the total bandwidth value of all instances that use the pay-by-bandwidth billing method for network usage cannot exceed 50 Gbit/s.
80856
- * * **Suggestions**:
80857
- * * Instance type selection: 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 performance data of instance types, or see [Best practices for instance type selection](https://help.aliyun.com/document_detail/58291.html) to learn about how to select instance types.
80858
- * * Query of available resources: Call the [DescribeAvailableResource](https://help.aliyun.com/document_detail/66186.html) operation to query resources available in a specific region or zone.
80859
- * * [User data](https://help.aliyun.com/document_detail/49121.html): If the instance type supports user data, you can use the UserData parameter to pass in user data. User data is encoded in Base64. We recommend that you do not pass in confidential information (such as passwords or private keys) in plaintext as user data. This is because the system does not encrypt `UserData` values when API requests are transmitted. If you must pass in confidential information, we recommend that you encrypt and encode the information in Base64 before you pass in the information. Then decode and decrypt the information in the same way within the instance.
81553
+ * ### [](#)Prerequisites
81554
+ * * Make sure that you are familiar with the ECS billing methods because you may be charged for the resources that are used by the instance. For more information, see [Billing overview](https://help.aliyun.com/document_detail/25398.html).
81555
+ * * Make sure that the number of ECS instances you create or the number of vCPUs on ECS instances of all instance types you create does not exceed the corresponding quota. Go to the [Quota Center](https://quotas.console.aliyun.com/products/ecs/quotas) to view the quotas.
81556
+ * * Before you create ECS instances of the Virtual Private Cloud (VPC) type in a region, create a VPC in the region. For more information, see [Create a VPC](https://help.aliyun.com/document_detail/65430.html).
81557
+ * ### [](#)Considerations
81558
+ * * If you create a subscription instance (`PrePaid`), available coupons in your account are automatically used.
81559
+ * * If you want to create instances with 512 MiB of memory, you cannot use Windows Server images except for Windows Server Semi-Annual Channel images. If you want to create instances with 4 GiB or more of memory, you cannot use 32-bit OS image.
81560
+ * * If you call the CreateInstance operation to create an instance, no public IP address is automatically assigned to the instance. If the InternetMaxBandwidthOut value of the instance is greater than 0 Mbit/s, call the [AllocatePublicIpAddress](https://help.aliyun.com/document_detail/25544.html) operation to assign a public IP address to the instance. If the InternetMaxBandwidthOut value of the instance is 0 Mbit/s, call the [ModifyInstanceNetworkSpec](https://help.aliyun.com/document_detail/2679879.html) operation to set InternetMaxBandwidthOut to a value greater than 0 Mbit/s and then call the [AllocatePublicIpAddress](https://help.aliyun.com/document_detail/25544.html) operation to assign a public IP address to the instance.
81561
+ * > For the limits on the sum of maximum public bandwidths of ECS instances that use the pay-by-bandwidth billing method for network usage per region per Alibaba Cloud account, see the [Public bandwidth limits](~~25412#BandwidthQuota~~) section of the "Limits" topic.
81562
+ * ### [](#)Suggestions
81563
+ * * **Instance type selection**: See [Overview of 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 performance data of instance types, or see [Instance type selection](https://help.aliyun.com/document_detail/58291.html) to learn about how to select instance types.
81564
+ * * **Query of available resources**: Call the [DescribeAvailableResource](https://help.aliyun.com/document_detail/66186.html) operation to query resources available in a specific region or zone.
81565
+ * * **User data**: If the instance type supports [user data](https://help.aliyun.com/document_detail/49121.html), you can use UserData to pass in user data. We recommend that you do not pass in confidential information, such as passwords or private keys, in plaintext as user data. This is because the system does not encrypt `UserData` values when API requests are sent. If you must pass in confidential information as user data, we recommend that you encrypt and encode the information in Base64 before you pass in the information. Then, decode and decrypt the information within the instance for subsequent use.
80860
81566
  *
80861
81567
  * @param request - CreateInstanceRequest
80862
81568
  * @returns CreateInstanceResponse
@@ -81446,7 +82152,7 @@ export default class Client extends OpenApi {
81446
82152
  */
81447
82153
  deleteCommand(request: DeleteCommandRequest): Promise<DeleteCommandResponse>;
81448
82154
  /**
81449
- * Deletes a dedicated host cluster. Before you call this operation, migrate the dedicated hosts in the dedicated host cluster that you want to delete to another dedicated host cluster. When you call this operation, you can specify RegionId and DedicatedHostClusterId in the request.
82155
+ * Deletes a dedicated host group. Before you call the API operation, you must migrate the dedicated hosts in the host group to another host group.
81450
82156
  *
81451
82157
  * @param request - DeleteDedicatedHostClusterRequest
81452
82158
  * @param runtime - runtime options for this request RuntimeOptions
@@ -81454,7 +82160,7 @@ export default class Client extends OpenApi {
81454
82160
  */
81455
82161
  deleteDedicatedHostClusterWithOptions(request: DeleteDedicatedHostClusterRequest, runtime: $dara.RuntimeOptions): Promise<DeleteDedicatedHostClusterResponse>;
81456
82162
  /**
81457
- * Deletes a dedicated host cluster. Before you call this operation, migrate the dedicated hosts in the dedicated host cluster that you want to delete to another dedicated host cluster. When you call this operation, you can specify RegionId and DedicatedHostClusterId in the request.
82163
+ * Deletes a dedicated host group. Before you call the API operation, you must migrate the dedicated hosts in the host group to another host group.
81458
82164
  *
81459
82165
  * @param request - DeleteDedicatedHostClusterRequest
81460
82166
  * @returns DeleteDedicatedHostClusterResponse
@@ -81511,7 +82217,7 @@ export default class Client extends OpenApi {
81511
82217
  */
81512
82218
  deleteDeploymentSet(request: DeleteDeploymentSetRequest): Promise<DeleteDeploymentSetResponse>;
81513
82219
  /**
81514
- * The operation that you want to perform. Set the value to **DeleteDiagnosticMetricSets**.
82220
+ * Deletes diagnostic metric sets.
81515
82221
  *
81516
82222
  * @param request - DeleteDiagnosticMetricSetsRequest
81517
82223
  * @param runtime - runtime options for this request RuntimeOptions
@@ -81519,7 +82225,7 @@ export default class Client extends OpenApi {
81519
82225
  */
81520
82226
  deleteDiagnosticMetricSetsWithOptions(request: DeleteDiagnosticMetricSetsRequest, runtime: $dara.RuntimeOptions): Promise<DeleteDiagnosticMetricSetsResponse>;
81521
82227
  /**
81522
- * The operation that you want to perform. Set the value to **DeleteDiagnosticMetricSets**.
82228
+ * Deletes diagnostic metric sets.
81523
82229
  *
81524
82230
  * @param request - DeleteDiagnosticMetricSetsRequest
81525
82231
  * @returns DeleteDiagnosticMetricSetsResponse
@@ -81688,11 +82394,14 @@ export default class Client extends OpenApi {
81688
82394
  *
81689
82395
  * @remarks
81690
82396
  * *
81691
- * **Warning** After an instance is released, all physical resources used by the instance are recycled. Relevant data is erased and cannot be restored.
81692
- * After you release an instance, the manual snapshots of the cloud disks attached to the instance are retained. Whether the cloud disks and the automatic snapshots of the disks are released is determined by the options that you configured when you created the instance and disks. Before you release the instance, you can call the [DescribeDisks](https://help.aliyun.com/document_detail/2679767.html) operation to query the parameter settings for the cloud disks attached to the instance and the automatic snapshots.
81693
- * * The cloud disks for which `DeleteWithInstance` is set to false are retained as pay-as-you-go disks after the instance is released. The cloud disks for which DeleteWithInstance is set to true are released along with the instance.
81694
- * * If `DeleteAutoSnapshot` is set to false for a cloud disk attached to the instance, the automatic snapshots of the cloud disk are retained when the instance is released. If DeleteAutoSnapshot is set to true for the cloud disk, the automatic snapshots of the disk are released along with the instance.
81695
- * > When you release an instance that is locked for security reasons, the cloud disks attached to the instance are released even if DeleteWithInstance is set to false.
82397
+ * **Warning** After you release an instance, the physical resources used by the instance are recycled. Relevant data is erased and cannot be restored.
82398
+ * * After you release an instance, manual snapshots of the cloud disks attached to the instance are retained and continue to be billed. You can call the [DeleteSnapshot](https://help.aliyun.com/document_detail/2679824.html) operation to delete the snapshots.
82399
+ * * After you release an instance, whether the cloud disks attached to the instance and the automatic snapshots of the disks are released is determined by the disk attributes. Before you release an instance, you can call the [DescribeDisks](https://help.aliyun.com/document_detail/2679767.html) and [ModifyDiskAttribute](https://help.aliyun.com/document_detail/2679770.html) operations to query and modify disk attributes.
82400
+ * * If `DeleteWithInstance` is set to false for a cloud disk attached to the instance, the cloud disk is changed to a pay-as-you-go disk and retained after the instance is released. If DeleteWithInstance is set to true for the cloud disk, the disk is released together with the instance.
82401
+ * * If `DeleteAutoSnapshot` is set to false for a cloud disk attached to the instance, the automatic snapshots of the disk are retained when the instance is released. If DeleteAutoSnapshot is set to true for the cloud disk, the automatic snapshots of the disk are released together with the instance.
82402
+ * * Elastic IP addresses (EIPs) are not released together with instances. You can call the [ReleaseEipAddress](https://help.aliyun.com/document_detail/448702.html) operation to release EIPs.
82403
+ * **
82404
+ * **Note** When you release an instance that is locked for security reasons, the cloud disks attached to the instance are released together with the instance even if DeleteWithInstance is set to false for the disks.
81696
82405
  *
81697
82406
  * @param request - DeleteInstanceRequest
81698
82407
  * @param runtime - runtime options for this request RuntimeOptions
@@ -81704,11 +82413,14 @@ export default class Client extends OpenApi {
81704
82413
  *
81705
82414
  * @remarks
81706
82415
  * *
81707
- * **Warning** After an instance is released, all physical resources used by the instance are recycled. Relevant data is erased and cannot be restored.
81708
- * After you release an instance, the manual snapshots of the cloud disks attached to the instance are retained. Whether the cloud disks and the automatic snapshots of the disks are released is determined by the options that you configured when you created the instance and disks. Before you release the instance, you can call the [DescribeDisks](https://help.aliyun.com/document_detail/2679767.html) operation to query the parameter settings for the cloud disks attached to the instance and the automatic snapshots.
81709
- * * The cloud disks for which `DeleteWithInstance` is set to false are retained as pay-as-you-go disks after the instance is released. The cloud disks for which DeleteWithInstance is set to true are released along with the instance.
81710
- * * If `DeleteAutoSnapshot` is set to false for a cloud disk attached to the instance, the automatic snapshots of the cloud disk are retained when the instance is released. If DeleteAutoSnapshot is set to true for the cloud disk, the automatic snapshots of the disk are released along with the instance.
81711
- * > When you release an instance that is locked for security reasons, the cloud disks attached to the instance are released even if DeleteWithInstance is set to false.
82416
+ * **Warning** After you release an instance, the physical resources used by the instance are recycled. Relevant data is erased and cannot be restored.
82417
+ * * After you release an instance, manual snapshots of the cloud disks attached to the instance are retained and continue to be billed. You can call the [DeleteSnapshot](https://help.aliyun.com/document_detail/2679824.html) operation to delete the snapshots.
82418
+ * * After you release an instance, whether the cloud disks attached to the instance and the automatic snapshots of the disks are released is determined by the disk attributes. Before you release an instance, you can call the [DescribeDisks](https://help.aliyun.com/document_detail/2679767.html) and [ModifyDiskAttribute](https://help.aliyun.com/document_detail/2679770.html) operations to query and modify disk attributes.
82419
+ * * If `DeleteWithInstance` is set to false for a cloud disk attached to the instance, the cloud disk is changed to a pay-as-you-go disk and retained after the instance is released. If DeleteWithInstance is set to true for the cloud disk, the disk is released together with the instance.
82420
+ * * If `DeleteAutoSnapshot` is set to false for a cloud disk attached to the instance, the automatic snapshots of the disk are retained when the instance is released. If DeleteAutoSnapshot is set to true for the cloud disk, the automatic snapshots of the disk are released together with the instance.
82421
+ * * Elastic IP addresses (EIPs) are not released together with instances. You can call the [ReleaseEipAddress](https://help.aliyun.com/document_detail/448702.html) operation to release EIPs.
82422
+ * **
82423
+ * **Note** When you release an instance that is locked for security reasons, the cloud disks attached to the instance are released together with the instance even if DeleteWithInstance is set to false for the disks.
81712
82424
  *
81713
82425
  * @param request - DeleteInstanceRequest
81714
82426
  * @returns DeleteInstanceResponse
@@ -81719,11 +82431,14 @@ export default class Client extends OpenApi {
81719
82431
  *
81720
82432
  * @remarks
81721
82433
  * *
81722
- * **Warning** After an ECS instance is released, all physical resources used by the instance are reclaimed. Relevant data is erased and cannot be restored.
81723
- * After an ECS instance is released, the manual snapshots of the disks attached to the instance are retained. Whether the disks and the automatic snapshots of the disks are released is determined by the options that you configured when you created the instance and disks. Before you release an ECS instance, you can call the [DescribeDisks](https://help.aliyun.com/document_detail/2679767.html) operation to query the parameters of the disks attached to the instance and the automatic snapshots.
81724
- * * If `DeleteWithInstance` is set to false, the disks are changed to pay-as-you-go disks and retained. If DeleteWithInstance is set to true, the disks are released along with the instance.
81725
- * * If `DeleteAutoSnapshot` is set to false, the automatic snapshots are retained. If DeleteAutoSnapshot is set to true, the automatic snapshots are released along with the instance.
81726
- * > If an ECS instance is locked for security reasons, the disks attached to the instance are released along with the instance even if DeleteWithInstance is set to false for the disks.
82434
+ * **Warning** After you release an instance, the physical resources used by the instance are recycled. Relevant data is erased and cannot be restored.
82435
+ * * After you release an instance, manual snapshots of the cloud disks attached to the instance are retained and continue to be billed. You can call the [DeleteSnapshot](https://help.aliyun.com/document_detail/2679824.html) operation to delete the snapshots.
82436
+ * * After you release an instance, whether the cloud disks attached to the instance and the automatic snapshots of the disks are released is determined by the disk attributes. Before you release an instance, you can call the [DescribeDisks](https://help.aliyun.com/document_detail/2679767.html) and [ModifyDiskAttribute](https://help.aliyun.com/document_detail/2679770.html) operations to query and modify disk attributes.
82437
+ * * If `DeleteWithInstance` is set to false for a cloud disk attached to the instance, the cloud disk is changed to a pay-as-you-go disk and retained after the instance is released. If DeleteWithInstance is set to true for the cloud disk, the disk is released together with the instance.
82438
+ * * If `DeleteAutoSnapshot` is set to false for a cloud disk attached to the instance, the automatic snapshots of the disk are retained when the instance is released. If DeleteAutoSnapshot is set to true for the cloud disk, the automatic snapshots of the disk are released together with the instance.
82439
+ * * Elastic IP addresses (EIPs) are not released together with instances. You can call the [ReleaseEipAddress](https://help.aliyun.com/document_detail/448702.html) operation to release EIPs.
82440
+ * **
82441
+ * **Note** When you release an instance that is locked for security reasons, the cloud disks attached to the instance are released together with the instance even if DeleteWithInstance is set to false for the disks.
81727
82442
  *
81728
82443
  * @param request - DeleteInstancesRequest
81729
82444
  * @param runtime - runtime options for this request RuntimeOptions
@@ -81735,11 +82450,14 @@ export default class Client extends OpenApi {
81735
82450
  *
81736
82451
  * @remarks
81737
82452
  * *
81738
- * **Warning** After an ECS instance is released, all physical resources used by the instance are reclaimed. Relevant data is erased and cannot be restored.
81739
- * After an ECS instance is released, the manual snapshots of the disks attached to the instance are retained. Whether the disks and the automatic snapshots of the disks are released is determined by the options that you configured when you created the instance and disks. Before you release an ECS instance, you can call the [DescribeDisks](https://help.aliyun.com/document_detail/2679767.html) operation to query the parameters of the disks attached to the instance and the automatic snapshots.
81740
- * * If `DeleteWithInstance` is set to false, the disks are changed to pay-as-you-go disks and retained. If DeleteWithInstance is set to true, the disks are released along with the instance.
81741
- * * If `DeleteAutoSnapshot` is set to false, the automatic snapshots are retained. If DeleteAutoSnapshot is set to true, the automatic snapshots are released along with the instance.
81742
- * > If an ECS instance is locked for security reasons, the disks attached to the instance are released along with the instance even if DeleteWithInstance is set to false for the disks.
82453
+ * **Warning** After you release an instance, the physical resources used by the instance are recycled. Relevant data is erased and cannot be restored.
82454
+ * * After you release an instance, manual snapshots of the cloud disks attached to the instance are retained and continue to be billed. You can call the [DeleteSnapshot](https://help.aliyun.com/document_detail/2679824.html) operation to delete the snapshots.
82455
+ * * After you release an instance, whether the cloud disks attached to the instance and the automatic snapshots of the disks are released is determined by the disk attributes. Before you release an instance, you can call the [DescribeDisks](https://help.aliyun.com/document_detail/2679767.html) and [ModifyDiskAttribute](https://help.aliyun.com/document_detail/2679770.html) operations to query and modify disk attributes.
82456
+ * * If `DeleteWithInstance` is set to false for a cloud disk attached to the instance, the cloud disk is changed to a pay-as-you-go disk and retained after the instance is released. If DeleteWithInstance is set to true for the cloud disk, the disk is released together with the instance.
82457
+ * * If `DeleteAutoSnapshot` is set to false for a cloud disk attached to the instance, the automatic snapshots of the disk are retained when the instance is released. If DeleteAutoSnapshot is set to true for the cloud disk, the automatic snapshots of the disk are released together with the instance.
82458
+ * * Elastic IP addresses (EIPs) are not released together with instances. You can call the [ReleaseEipAddress](https://help.aliyun.com/document_detail/448702.html) operation to release EIPs.
82459
+ * **
82460
+ * **Note** When you release an instance that is locked for security reasons, the cloud disks attached to the instance are released together with the instance even if DeleteWithInstance is set to false for the disks.
81743
82461
  *
81744
82462
  * @param request - DeleteInstancesRequest
81745
82463
  * @returns DeleteInstancesResponse
@@ -82470,7 +83188,7 @@ export default class Client extends OpenApi {
82470
83188
  */
82471
83189
  describeDedicatedHostAutoRenew(request: DescribeDedicatedHostAutoRenewRequest): Promise<DescribeDedicatedHostAutoRenewResponse>;
82472
83190
  /**
82473
- * Queries the information about one or more dedicated host clusters.
83191
+ * Queries the details of one or more dedicated host groups.
82474
83192
  *
82475
83193
  * @remarks
82476
83194
  * ## [](#)Usage notes
@@ -82482,7 +83200,7 @@ export default class Client extends OpenApi {
82482
83200
  */
82483
83201
  describeDedicatedHostClustersWithOptions(request: DescribeDedicatedHostClustersRequest, runtime: $dara.RuntimeOptions): Promise<DescribeDedicatedHostClustersResponse>;
82484
83202
  /**
82485
- * Queries the information about one or more dedicated host clusters.
83203
+ * Queries the details of one or more dedicated host groups.
82486
83204
  *
82487
83205
  * @remarks
82488
83206
  * ## [](#)Usage notes
@@ -82617,7 +83335,7 @@ export default class Client extends OpenApi {
82617
83335
  */
82618
83336
  describeDiagnosticMetricSets(request: DescribeDiagnosticMetricSetsRequest): Promise<DescribeDiagnosticMetricSetsResponse>;
82619
83337
  /**
82620
- * The operation that you want to perform. Set the value to **DescribeDiagnosticMetrics**.
83338
+ * Queries diagnostic metrics.
82621
83339
  *
82622
83340
  * @param request - DescribeDiagnosticMetricsRequest
82623
83341
  * @param runtime - runtime options for this request RuntimeOptions
@@ -82625,7 +83343,7 @@ export default class Client extends OpenApi {
82625
83343
  */
82626
83344
  describeDiagnosticMetricsWithOptions(request: DescribeDiagnosticMetricsRequest, runtime: $dara.RuntimeOptions): Promise<DescribeDiagnosticMetricsResponse>;
82627
83345
  /**
82628
- * The operation that you want to perform. Set the value to **DescribeDiagnosticMetrics**.
83346
+ * Queries diagnostic metrics.
82629
83347
  *
82630
83348
  * @param request - DescribeDiagnosticMetricsRequest
82631
83349
  * @returns DescribeDiagnosticMetricsResponse
@@ -82647,7 +83365,7 @@ export default class Client extends OpenApi {
82647
83365
  */
82648
83366
  describeDiagnosticReportAttributes(request: DescribeDiagnosticReportAttributesRequest): Promise<DescribeDiagnosticReportAttributesResponse>;
82649
83367
  /**
82650
- * Queries diagnostic reports.
83368
+ * Queries resource diagnostic reports.
82651
83369
  *
82652
83370
  * @param request - DescribeDiagnosticReportsRequest
82653
83371
  * @param runtime - runtime options for this request RuntimeOptions
@@ -82655,7 +83373,7 @@ export default class Client extends OpenApi {
82655
83373
  */
82656
83374
  describeDiagnosticReportsWithOptions(request: DescribeDiagnosticReportsRequest, runtime: $dara.RuntimeOptions): Promise<DescribeDiagnosticReportsResponse>;
82657
83375
  /**
82658
- * Queries diagnostic reports.
83376
+ * Queries resource diagnostic reports.
82659
83377
  *
82660
83378
  * @param request - DescribeDiagnosticReportsRequest
82661
83379
  * @returns DescribeDiagnosticReportsResponse
@@ -83276,9 +83994,9 @@ export default class Client extends OpenApi {
83276
83994
  * "RegionID": "cn-hangzhou"
83277
83995
  * * Query the ECS instances and the status of the instances in a **zone** of a **specific region**. Sample request:
83278
83996
  * <!---->
83279
- * "RegionID": "cn-hangzhou",
83280
- * "ZoneID": "cn-hangzhou-a"
83281
- * * Query the status of an ECS instance based on the **instance ID** in a **specific region**. Sample request:
83997
+ * "RegionID": "cn-hangzhou",
83998
+ * "ZoneID": "cn-hangzhou-a"
83999
+ * * Query the status of an ECS instance in a **specific region** based on the **instance ID**. Sample request:
83282
84000
  * <!---->
83283
84001
  * "RegionID": "cn-hangzhou",
83284
84002
  * "InstancesID": ["i-bp1f7c1zqp999zvp****", "i-bp1dqjv36biueg61****"]
@@ -83299,9 +84017,9 @@ export default class Client extends OpenApi {
83299
84017
  * "RegionID": "cn-hangzhou"
83300
84018
  * * Query the ECS instances and the status of the instances in a **zone** of a **specific region**. Sample request:
83301
84019
  * <!---->
83302
- * "RegionID": "cn-hangzhou",
83303
- * "ZoneID": "cn-hangzhou-a"
83304
- * * Query the status of an ECS instance based on the **instance ID** in a **specific region**. Sample request:
84020
+ * "RegionID": "cn-hangzhou",
84021
+ * "ZoneID": "cn-hangzhou-a"
84022
+ * * Query the status of an ECS instance in a **specific region** based on the **instance ID**. Sample request:
83305
84023
  * <!---->
83306
84024
  * "RegionID": "cn-hangzhou",
83307
84025
  * "InstancesID": ["i-bp1f7c1zqp999zvp****", "i-bp1dqjv36biueg61****"]
@@ -83769,7 +84487,7 @@ export default class Client extends OpenApi {
83769
84487
  */
83770
84488
  describePrefixListAssociations(request: DescribePrefixListAssociationsRequest): Promise<DescribePrefixListAssociationsResponse>;
83771
84489
  /**
83772
- * The operation that you want to perform. Set the value to **DescribePrefixListAttributes**.
84490
+ * Queries the details of a prefix list, including the name, address family, maximum number of entries, and details of the entries.
83773
84491
  *
83774
84492
  * @param request - DescribePrefixListAttributesRequest
83775
84493
  * @param runtime - runtime options for this request RuntimeOptions
@@ -83777,7 +84495,7 @@ export default class Client extends OpenApi {
83777
84495
  */
83778
84496
  describePrefixListAttributesWithOptions(request: DescribePrefixListAttributesRequest, runtime: $dara.RuntimeOptions): Promise<DescribePrefixListAttributesResponse>;
83779
84497
  /**
83780
- * The operation that you want to perform. Set the value to **DescribePrefixListAttributes**.
84498
+ * Queries the details of a prefix list, including the name, address family, maximum number of entries, and details of the entries.
83781
84499
  *
83782
84500
  * @param request - DescribePrefixListAttributesRequest
83783
84501
  * @returns DescribePrefixListAttributesResponse
@@ -83787,8 +84505,7 @@ export default class Client extends OpenApi {
83787
84505
  * Queries the information of one or more prefix lists.
83788
84506
  *
83789
84507
  * @remarks
83790
- * ## Description
83791
- * You can specify the `AddressFamily`, `PrefixListId.N`, and `PrefixListName` request parameters to be queried. Specified parameters have logical AND relations. Only the specified parameters are included in the filter conditions.
84508
+ * You can specify the `AddressFamily`, `PrefixListId.N`, and `PrefixListName` request parameters in the request. Specified parameters have logical AND relations. Only the parameters that you set are included in the filter conditions.
83792
84509
  *
83793
84510
  * @param request - DescribePrefixListsRequest
83794
84511
  * @param runtime - runtime options for this request RuntimeOptions
@@ -83799,8 +84516,7 @@ export default class Client extends OpenApi {
83799
84516
  * Queries the information of one or more prefix lists.
83800
84517
  *
83801
84518
  * @remarks
83802
- * ## Description
83803
- * You can specify the `AddressFamily`, `PrefixListId.N`, and `PrefixListName` request parameters to be queried. Specified parameters have logical AND relations. Only the specified parameters are included in the filter conditions.
84519
+ * You can specify the `AddressFamily`, `PrefixListId.N`, and `PrefixListName` request parameters in the request. Specified parameters have logical AND relations. Only the parameters that you set are included in the filter conditions.
83804
84520
  *
83805
84521
  * @param request - DescribePrefixListsRequest
83806
84522
  * @returns DescribePrefixListsResponse
@@ -83861,10 +84577,7 @@ export default class Client extends OpenApi {
83861
84577
  */
83862
84578
  describeRecommendInstanceType(request: DescribeRecommendInstanceTypeRequest): Promise<DescribeRecommendInstanceTypeResponse>;
83863
84579
  /**
83864
- * Queries available Alibaba Cloud regions.
83865
- *
83866
- * @remarks
83867
- * ***
84580
+ * The request ID.
83868
84581
  *
83869
84582
  * @param request - DescribeRegionsRequest
83870
84583
  * @param runtime - runtime options for this request RuntimeOptions
@@ -83872,10 +84585,7 @@ export default class Client extends OpenApi {
83872
84585
  */
83873
84586
  describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $dara.RuntimeOptions): Promise<DescribeRegionsResponse>;
83874
84587
  /**
83875
- * Queries available Alibaba Cloud regions.
83876
- *
83877
- * @remarks
83878
- * ***
84588
+ * The request ID.
83879
84589
  *
83880
84590
  * @param request - DescribeRegionsRequest
83881
84591
  * @returns DescribeRegionsResponse
@@ -83924,7 +84634,23 @@ export default class Client extends OpenApi {
83924
84634
  */
83925
84635
  describeReservedInstanceAutoRenewAttribute(request: DescribeReservedInstanceAutoRenewAttributeRequest): Promise<DescribeReservedInstanceAutoRenewAttributeResponse>;
83926
84636
  /**
83927
- * Queries the details of reserved instances that you have purchased. You can query the details of reserved instances based on parameters, such as tags and reserved instance attributes.
84637
+ * Queries the details of reserved instances that you have purchased in a specific region. You can query the details of reserved instances based on parameters, such as tags and reserved instance attributes.
84638
+ *
84639
+ * @remarks
84640
+ * ### [](#)Scenarios
84641
+ * * Query all reserved instances in a specific region.
84642
+ * * Query the details of a reserved instance based on the ID or name.
84643
+ * * Query your purchased reserved instances based on the instance type or instance family.
84644
+ * * Query your purchased reserved instances based on the scope or status of reserved instances.
84645
+ * ### [](#)Sample requests
84646
+ * **Example: Query all purchased reserved instances in the China (Hangzhou) region**
84647
+ * "RegionId":"cn-hangzhou", //The ID of the region.
84648
+ * **Example: Query the details of the reserved instance whose ID is ecsri-bp129enntoynwwj5\\*\\*\\*\\* in the China (Hangzhou) region**
84649
+ * "RegionId":"cn-hangzhou", //The ID of the region."ReservedInstanceId":"ecsri-bp129enntoynwwj5****" //The ID of the reserved instance.
84650
+ * **Example: Query the reserved instances that can be used to offset the bills of ecs.c5.2xlarge instances in the China (Hangzhou) region**
84651
+ * "RegionId":"cn-hangzhou", //The ID of the region."InstanceType":"ecs.c5.2xlarge", //The instance type.
84652
+ * **Example: Query the regional reserved instances that are within the validity period in the China (Hangzhou) region**
84653
+ * "RegionId":"cn-hangzhou", //The ID of the region."Scope":"Region", //Set the scope of the reserved instance to regional."Status":["Active"] //Set the status to Active, which indicates that the reserved instance is within the validity period.
83928
84654
  *
83929
84655
  * @param request - DescribeReservedInstancesRequest
83930
84656
  * @param runtime - runtime options for this request RuntimeOptions
@@ -83932,7 +84658,23 @@ export default class Client extends OpenApi {
83932
84658
  */
83933
84659
  describeReservedInstancesWithOptions(request: DescribeReservedInstancesRequest, runtime: $dara.RuntimeOptions): Promise<DescribeReservedInstancesResponse>;
83934
84660
  /**
83935
- * Queries the details of reserved instances that you have purchased. You can query the details of reserved instances based on parameters, such as tags and reserved instance attributes.
84661
+ * Queries the details of reserved instances that you have purchased in a specific region. You can query the details of reserved instances based on parameters, such as tags and reserved instance attributes.
84662
+ *
84663
+ * @remarks
84664
+ * ### [](#)Scenarios
84665
+ * * Query all reserved instances in a specific region.
84666
+ * * Query the details of a reserved instance based on the ID or name.
84667
+ * * Query your purchased reserved instances based on the instance type or instance family.
84668
+ * * Query your purchased reserved instances based on the scope or status of reserved instances.
84669
+ * ### [](#)Sample requests
84670
+ * **Example: Query all purchased reserved instances in the China (Hangzhou) region**
84671
+ * "RegionId":"cn-hangzhou", //The ID of the region.
84672
+ * **Example: Query the details of the reserved instance whose ID is ecsri-bp129enntoynwwj5\\*\\*\\*\\* in the China (Hangzhou) region**
84673
+ * "RegionId":"cn-hangzhou", //The ID of the region."ReservedInstanceId":"ecsri-bp129enntoynwwj5****" //The ID of the reserved instance.
84674
+ * **Example: Query the reserved instances that can be used to offset the bills of ecs.c5.2xlarge instances in the China (Hangzhou) region**
84675
+ * "RegionId":"cn-hangzhou", //The ID of the region."InstanceType":"ecs.c5.2xlarge", //The instance type.
84676
+ * **Example: Query the regional reserved instances that are within the validity period in the China (Hangzhou) region**
84677
+ * "RegionId":"cn-hangzhou", //The ID of the region."Scope":"Region", //Set the scope of the reserved instance to regional."Status":["Active"] //Set the status to Active, which indicates that the reserved instance is within the validity period.
83936
84678
  *
83937
84679
  * @param request - DescribeReservedInstancesRequest
83938
84680
  * @returns DescribeReservedInstancesResponse
@@ -84879,7 +85621,11 @@ export default class Client extends OpenApi {
84879
85621
  */
84880
85622
  enablePhysicalConnection(request: EnablePhysicalConnectionRequest): Promise<EnablePhysicalConnectionResponse>;
84881
85623
  /**
84882
- * 关闭会话数据连接
85624
+ * Permanently closes a session.
85625
+ *
85626
+ * @remarks
85627
+ * After you closes a session, the session is no longer available.
85628
+ * * The WebSocket URL that is associated with a closed session is invalid and no longer available.
84883
85629
  *
84884
85630
  * @param request - EndTerminalSessionRequest
84885
85631
  * @param runtime - runtime options for this request RuntimeOptions
@@ -84887,7 +85633,11 @@ export default class Client extends OpenApi {
84887
85633
  */
84888
85634
  endTerminalSessionWithOptions(request: EndTerminalSessionRequest, runtime: $dara.RuntimeOptions): Promise<EndTerminalSessionResponse>;
84889
85635
  /**
84890
- * 关闭会话数据连接
85636
+ * Permanently closes a session.
85637
+ *
85638
+ * @remarks
85639
+ * After you closes a session, the session is no longer available.
85640
+ * * The WebSocket URL that is associated with a closed session is invalid and no longer available.
84891
85641
  *
84892
85642
  * @param request - EndTerminalSessionRequest
84893
85643
  * @returns EndTerminalSessionResponse
@@ -85560,26 +86310,13 @@ export default class Client extends OpenApi {
85560
86310
  */
85561
86311
  modifyAutoProvisioningGroup(request: ModifyAutoProvisioningGroupRequest): Promise<ModifyAutoProvisioningGroupResponse>;
85562
86312
  /**
85563
- * 修改指定自动快照策略的信息
86313
+ * Modifies an automatic snapshot policy.
85564
86314
  *
85565
- * @deprecated OpenAPI ModifyAutoSnapshotPolicy is deprecated, please use Ecs::2014-05-26::ModifyAutoSnapshotPolicyEx instead.
85566
- *
85567
- * @param request - ModifyAutoSnapshotPolicyRequest
85568
- * @param runtime - runtime options for this request RuntimeOptions
85569
- * @returns ModifyAutoSnapshotPolicyResponse
85570
- */
85571
- modifyAutoSnapshotPolicyWithOptions(request: ModifyAutoSnapshotPolicyRequest, runtime: $dara.RuntimeOptions): Promise<ModifyAutoSnapshotPolicyResponse>;
85572
- /**
85573
- * 修改指定自动快照策略的信息
85574
- *
85575
- * @deprecated OpenAPI ModifyAutoSnapshotPolicy is deprecated, please use Ecs::2014-05-26::ModifyAutoSnapshotPolicyEx instead.
85576
- *
85577
- * @param request - ModifyAutoSnapshotPolicyRequest
85578
- * @returns ModifyAutoSnapshotPolicyResponse
85579
- */
85580
- modifyAutoSnapshotPolicy(request: ModifyAutoSnapshotPolicyRequest): Promise<ModifyAutoSnapshotPolicyResponse>;
85581
- /**
85582
- * Modifies an automatic snapshot policy. After an automatic snapshot policy is modified, the modifications immediately take effect on the disks that are associated with the policy. If cross-region replication for snapshots is enabled and no encryption parameters are configured, the generated encrypted snapshot copies are encrypted by using the Key Management Service (KMS) encryption keys in the region to which the snapshots are copied.
86315
+ * @remarks
86316
+ * Before you call this operation, take note of the following items:
86317
+ * * You cannot modify system policies.
86318
+ * * After an automatic snapshot policy is modified, the modifications immediately take effect on the disks that are associated with the policy.
86319
+ * * If cross-region replication for snapshots is enabled and no encryption parameters are configured, the generated encrypted snapshot copies are encrypted by using the Key Management Service (KMS) encryption keys in the region to which the snapshots are copied.
85583
86320
  *
85584
86321
  * @param request - ModifyAutoSnapshotPolicyExRequest
85585
86322
  * @param runtime - runtime options for this request RuntimeOptions
@@ -85587,7 +86324,13 @@ export default class Client extends OpenApi {
85587
86324
  */
85588
86325
  modifyAutoSnapshotPolicyExWithOptions(request: ModifyAutoSnapshotPolicyExRequest, runtime: $dara.RuntimeOptions): Promise<ModifyAutoSnapshotPolicyExResponse>;
85589
86326
  /**
85590
- * Modifies an automatic snapshot policy. After an automatic snapshot policy is modified, the modifications immediately take effect on the disks that are associated with the policy. If cross-region replication for snapshots is enabled and no encryption parameters are configured, the generated encrypted snapshot copies are encrypted by using the Key Management Service (KMS) encryption keys in the region to which the snapshots are copied.
86327
+ * Modifies an automatic snapshot policy.
86328
+ *
86329
+ * @remarks
86330
+ * Before you call this operation, take note of the following items:
86331
+ * * You cannot modify system policies.
86332
+ * * After an automatic snapshot policy is modified, the modifications immediately take effect on the disks that are associated with the policy.
86333
+ * * If cross-region replication for snapshots is enabled and no encryption parameters are configured, the generated encrypted snapshot copies are encrypted by using the Key Management Service (KMS) encryption keys in the region to which the snapshots are copied.
85591
86334
  *
85592
86335
  * @param request - ModifyAutoSnapshotPolicyExRequest
85593
86336
  * @returns ModifyAutoSnapshotPolicyExResponse
@@ -85733,7 +86476,7 @@ export default class Client extends OpenApi {
85733
86476
  */
85734
86477
  modifyDedicatedHostAutoRenewAttribute(request: ModifyDedicatedHostAutoRenewAttributeRequest): Promise<ModifyDedicatedHostAutoRenewAttributeResponse>;
85735
86478
  /**
85736
- * Modifies the attributes of a dedicated host cluster, such as its name and description.
86479
+ * Modifies the information of a dedicated host group, including the name, description, and properties.
85737
86480
  *
85738
86481
  * @param request - ModifyDedicatedHostClusterAttributeRequest
85739
86482
  * @param runtime - runtime options for this request RuntimeOptions
@@ -85741,7 +86484,7 @@ export default class Client extends OpenApi {
85741
86484
  */
85742
86485
  modifyDedicatedHostClusterAttributeWithOptions(request: ModifyDedicatedHostClusterAttributeRequest, runtime: $dara.RuntimeOptions): Promise<ModifyDedicatedHostClusterAttributeResponse>;
85743
86486
  /**
85744
- * Modifies the attributes of a dedicated host cluster, such as its name and description.
86487
+ * Modifies the information of a dedicated host group, including the name, description, and properties.
85745
86488
  *
85746
86489
  * @param request - ModifyDedicatedHostClusterAttributeRequest
85747
86490
  * @returns ModifyDedicatedHostClusterAttributeResponse
@@ -86145,7 +86888,7 @@ export default class Client extends OpenApi {
86145
86888
  */
86146
86889
  modifyImageSharePermission(request: ModifyImageSharePermissionRequest): Promise<ModifyImageSharePermissionResponse>;
86147
86890
  /**
86148
- * Modifies the attributes of the private pool of an instance.
86891
+ * Changes the type of the private pool for an Elastic Compute Service (ECS) instance.
86149
86892
  *
86150
86893
  * @remarks
86151
86894
  * A private pool is generated after an elasticity assurance or a capacity reservation is created. The private pool is associated with information about the instances that are created by using the resources in the private pool. When you create ECS instances, you can configure the instances to use private pool resources, matching them to active elasticity assurances or capacity reservations.
@@ -86163,7 +86906,7 @@ export default class Client extends OpenApi {
86163
86906
  */
86164
86907
  modifyInstanceAttachmentAttributesWithOptions(request: ModifyInstanceAttachmentAttributesRequest, runtime: $dara.RuntimeOptions): Promise<ModifyInstanceAttachmentAttributesResponse>;
86165
86908
  /**
86166
- * Modifies the attributes of the private pool of an instance.
86909
+ * Changes the type of the private pool for an Elastic Compute Service (ECS) instance.
86167
86910
  *
86168
86911
  * @remarks
86169
86912
  * A private pool is generated after an elasticity assurance or a capacity reservation is created. The private pool is associated with information about the instances that are created by using the resources in the private pool. When you create ECS instances, you can configure the instances to use private pool resources, matching them to active elasticity assurances or capacity reservations.
@@ -86620,7 +87363,7 @@ export default class Client extends OpenApi {
86620
87363
  */
86621
87364
  modifyManagedInstance(request: ModifyManagedInstanceRequest): Promise<ModifyManagedInstanceResponse>;
86622
87365
  /**
86623
- * Modifies the attributes, such as the name, description, and security groups, of an elastic network interface (ENI). When you call this operation, you can specify parameters, such as NetworkInterfaceId and SecurityGroupId, in the request.
87366
+ * Modifies the attributes of an elastic network interface (ENI), such as the number of queues supported by the ENI, the security groups to which the ENI belongs, the queue depth, the communication mode, and whether to retain the ENI when the Elastic Compute Service (ECS) instance to which the ENI is attached is released.
86624
87367
  *
86625
87368
  * @param request - ModifyNetworkInterfaceAttributeRequest
86626
87369
  * @param runtime - runtime options for this request RuntimeOptions
@@ -86628,7 +87371,7 @@ export default class Client extends OpenApi {
86628
87371
  */
86629
87372
  modifyNetworkInterfaceAttributeWithOptions(request: ModifyNetworkInterfaceAttributeRequest, runtime: $dara.RuntimeOptions): Promise<ModifyNetworkInterfaceAttributeResponse>;
86630
87373
  /**
86631
- * Modifies the attributes, such as the name, description, and security groups, of an elastic network interface (ENI). When you call this operation, you can specify parameters, such as NetworkInterfaceId and SecurityGroupId, in the request.
87374
+ * Modifies the attributes of an elastic network interface (ENI), such as the number of queues supported by the ENI, the security groups to which the ENI belongs, the queue depth, the communication mode, and whether to retain the ENI when the Elastic Compute Service (ECS) instance to which the ENI is attached is released.
86632
87375
  *
86633
87376
  * @param request - ModifyNetworkInterfaceAttributeRequest
86634
87377
  * @returns ModifyNetworkInterfaceAttributeResponse
@@ -87007,6 +87750,35 @@ export default class Client extends OpenApi {
87007
87750
  * @returns ModifySnapshotAttributeResponse
87008
87751
  */
87009
87752
  modifySnapshotAttribute(request: ModifySnapshotAttributeRequest): Promise<ModifySnapshotAttributeResponse>;
87753
+ /**
87754
+ * Changes the type of a snapshot. You can call this operation to convert a standard snapshot into an archive snapshot.
87755
+ *
87756
+ * @remarks
87757
+ * Archive snapshots cannot be restored to standard snapshots.
87758
+ * * You can archive only standard snapshots that have been retained for at least 14 days.
87759
+ * * You cannot archive encrypted snapshots.
87760
+ * * You cannot archive snapshots that are shared to you, snapshots managed by Cloud Backup, or snapshots in cloud boxes.
87761
+ * * The Archive Snapshot feature is available only in the China (Hohhot) and Malaysia (Kuala Lumpur) regions. The availability of the feature in other regions is subject to notice.
87762
+ *
87763
+ * @param request - ModifySnapshotCategoryRequest
87764
+ * @param runtime - runtime options for this request RuntimeOptions
87765
+ * @returns ModifySnapshotCategoryResponse
87766
+ */
87767
+ modifySnapshotCategoryWithOptions(request: ModifySnapshotCategoryRequest, runtime: $dara.RuntimeOptions): Promise<ModifySnapshotCategoryResponse>;
87768
+ /**
87769
+ * Changes the type of a snapshot. You can call this operation to convert a standard snapshot into an archive snapshot.
87770
+ *
87771
+ * @remarks
87772
+ * Archive snapshots cannot be restored to standard snapshots.
87773
+ * * You can archive only standard snapshots that have been retained for at least 14 days.
87774
+ * * You cannot archive encrypted snapshots.
87775
+ * * You cannot archive snapshots that are shared to you, snapshots managed by Cloud Backup, or snapshots in cloud boxes.
87776
+ * * The Archive Snapshot feature is available only in the China (Hohhot) and Malaysia (Kuala Lumpur) regions. The availability of the feature in other regions is subject to notice.
87777
+ *
87778
+ * @param request - ModifySnapshotCategoryRequest
87779
+ * @returns ModifySnapshotCategoryResponse
87780
+ */
87781
+ modifySnapshotCategory(request: ModifySnapshotCategoryRequest): Promise<ModifySnapshotCategoryResponse>;
87010
87782
  /**
87011
87783
  * Modifies the name and description of a snapshot-consistent group.
87012
87784
  *
@@ -87023,7 +87795,7 @@ export default class Client extends OpenApi {
87023
87795
  */
87024
87796
  modifySnapshotGroup(request: ModifySnapshotGroupRequest): Promise<ModifySnapshotGroupResponse>;
87025
87797
  /**
87026
- * Changes the name or modifies the description of a storage capacity unit (SCU).
87798
+ * Changes the name or modifies the description of a Storage Capacity Unit (SCU).
87027
87799
  *
87028
87800
  * @param request - ModifyStorageCapacityUnitAttributeRequest
87029
87801
  * @param runtime - runtime options for this request RuntimeOptions
@@ -87031,7 +87803,7 @@ export default class Client extends OpenApi {
87031
87803
  */
87032
87804
  modifyStorageCapacityUnitAttributeWithOptions(request: ModifyStorageCapacityUnitAttributeRequest, runtime: $dara.RuntimeOptions): Promise<ModifyStorageCapacityUnitAttributeResponse>;
87033
87805
  /**
87034
- * Changes the name or modifies the description of a storage capacity unit (SCU).
87806
+ * Changes the name or modifies the description of a Storage Capacity Unit (SCU).
87035
87807
  *
87036
87808
  * @param request - ModifyStorageCapacityUnitAttributeRequest
87037
87809
  * @returns ModifyStorageCapacityUnitAttributeResponse
@@ -87634,10 +88406,10 @@ export default class Client extends OpenApi {
87634
88406
  */
87635
88407
  renewReservedInstances(request: RenewReservedInstancesRequest): Promise<RenewReservedInstancesResponse>;
87636
88408
  /**
87637
- * Replaces the operating system of an Elastic Compute Service (ECS) instance. After the operating system of the ECS instance is replaced, the original system disk of the instance is released and a new system disk is generated for the instance. This causes the ID of the system disk to change.
88409
+ * Replaces the operating system (system disk) of an ECS instance. After the operating system of the ECS instance is replaced, the original system disk of the instance is released and a new system disk is generated for the instance. This causes the ID of the system disk to change.
87638
88410
  *
87639
88411
  * @remarks
87640
- * Before you call this operation, read [Replace the operating system (system disk) of an instance](https://help.aliyun.com/document_detail/25436.html).
88412
+ * Before you call this operation, refer to [Replace the operating system (system disk) of an instance](https://help.aliyun.com/document_detail/50134.html).
87641
88413
  * When you call this operation for an ECS instance, take note of the following items:
87642
88414
  * * The billing method of the system disk cannot be changed.
87643
88415
  * * The category of the system disk cannot be changed.
@@ -87657,10 +88429,10 @@ export default class Client extends OpenApi {
87657
88429
  */
87658
88430
  replaceSystemDiskWithOptions(request: ReplaceSystemDiskRequest, runtime: $dara.RuntimeOptions): Promise<ReplaceSystemDiskResponse>;
87659
88431
  /**
87660
- * Replaces the operating system of an Elastic Compute Service (ECS) instance. After the operating system of the ECS instance is replaced, the original system disk of the instance is released and a new system disk is generated for the instance. This causes the ID of the system disk to change.
88432
+ * Replaces the operating system (system disk) of an ECS instance. After the operating system of the ECS instance is replaced, the original system disk of the instance is released and a new system disk is generated for the instance. This causes the ID of the system disk to change.
87661
88433
  *
87662
88434
  * @remarks
87663
- * Before you call this operation, read [Replace the operating system (system disk) of an instance](https://help.aliyun.com/document_detail/25436.html).
88435
+ * Before you call this operation, refer to [Replace the operating system (system disk) of an instance](https://help.aliyun.com/document_detail/50134.html).
87664
88436
  * When you call this operation for an ECS instance, take note of the following items:
87665
88437
  * * The billing method of the system disk cannot be changed.
87666
88438
  * * The category of the system disk cannot be changed.
@@ -87697,6 +88469,7 @@ export default class Client extends OpenApi {
87697
88469
  * Rolls back a cloud disk to a snapshot from an earlier point in time.
87698
88470
  *
87699
88471
  * @remarks
88472
+ * Before you call this operation, read [Roll back a disk by using a snapshot](https://help.aliyun.com/document_detail/25450.html).
87700
88473
  * Take note of the following items:
87701
88474
  * * The cloud disk that you want to roll back must be in the In Use (`In_use`) or Unattached (`Available`) state.
87702
88475
  * * The instance to which the cloud disk is attached must be in the `Stopped` state. You can call the [StopInstances](https://help.aliyun.com/document_detail/155372.html) operation to stop the instance.
@@ -87712,6 +88485,7 @@ export default class Client extends OpenApi {
87712
88485
  * Rolls back a cloud disk to a snapshot from an earlier point in time.
87713
88486
  *
87714
88487
  * @remarks
88488
+ * Before you call this operation, read [Roll back a disk by using a snapshot](https://help.aliyun.com/document_detail/25450.html).
87715
88489
  * Take note of the following items:
87716
88490
  * * The cloud disk that you want to roll back must be in the In Use (`In_use`) or Unattached (`Available`) state.
87717
88491
  * * The instance to which the cloud disk is attached must be in the `Stopped` state. You can call the [StopInstances](https://help.aliyun.com/document_detail/155372.html) operation to stop the instance.
@@ -87727,7 +88501,7 @@ export default class Client extends OpenApi {
87727
88501
  *
87728
88502
  * @remarks
87729
88503
  * Only Alibaba Cloud accounts can call this operation.
87730
- * * 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.
88504
+ * * Before you can call this operation in a region, make sure that the Account-level Elastic Block Storage (EBS) Default Encryption feature is enabled in the region.
87731
88505
  *
87732
88506
  * @param request - ResetDiskDefaultKMSKeyIdRequest
87733
88507
  * @param runtime - runtime options for this request RuntimeOptions
@@ -87739,7 +88513,7 @@ export default class Client extends OpenApi {
87739
88513
  *
87740
88514
  * @remarks
87741
88515
  * Only Alibaba Cloud accounts can call this operation.
87742
- * * 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.
88516
+ * * Before you can call this operation in a region, make sure that the Account-level Elastic Block Storage (EBS) Default Encryption feature is enabled in the region.
87743
88517
  *
87744
88518
  * @param request - ResetDiskDefaultKMSKeyIdRequest
87745
88519
  * @returns ResetDiskDefaultKMSKeyIdResponse
@@ -88034,7 +88808,7 @@ export default class Client extends OpenApi {
88034
88808
  */
88035
88809
  revokeSecurityGroupEgress(request: RevokeSecurityGroupEgressRequest): Promise<RevokeSecurityGroupEgressResponse>;
88036
88810
  /**
88037
- * Runs a shell, PowerShell, or batch command on one or more Elastic Compute Service (ECS) instances. When you call this operation, you can specify parameters, such as Type and CommandContent, in the request.
88811
+ * Runs a Cloud Assistant command on one or more Elastic Compute Service (ECS) instances. Shell, PowerShell, and batch commands are supported.
88038
88812
  *
88039
88813
  * @remarks
88040
88814
  * ## [](#)Usage notes
@@ -88061,7 +88835,7 @@ export default class Client extends OpenApi {
88061
88835
  */
88062
88836
  runCommandWithOptions(tmpReq: RunCommandRequest, runtime: $dara.RuntimeOptions): Promise<RunCommandResponse>;
88063
88837
  /**
88064
- * Runs a shell, PowerShell, or batch command on one or more Elastic Compute Service (ECS) instances. When you call this operation, you can specify parameters, such as Type and CommandContent, in the request.
88838
+ * Runs a Cloud Assistant command on one or more Elastic Compute Service (ECS) instances. Shell, PowerShell, and batch commands are supported.
88065
88839
  *
88066
88840
  * @remarks
88067
88841
  * ## [](#)Usage notes
@@ -88087,7 +88861,7 @@ export default class Client extends OpenApi {
88087
88861
  */
88088
88862
  runCommand(request: RunCommandRequest): Promise<RunCommandResponse>;
88089
88863
  /**
88090
- * Creates pay-as-you-go or subscription Elastic Compute Service (ECS) instances. This operation provides a wide array of features and functions and helps simplify the procedure to create and manage ECS instances. When you call this operation, you can choose to create multiple ECS instances at a time, automatically start the instances, and assign public IP addresses to them. You can also use the features provided by the operation, such as configuring an automatic release time for instances, using a launch template, and configuring custom CPU options, to customize instance configurations for better management of instances.
88864
+ * Creates pay-as-you-go or subscription Elastic Compute Service (ECS) instances. This operation provides a wide array of features and functions and helps simplify the procedure to create and manage ECS instances. When you call this operation, you can choose to create multiple ECS instances at a time, automatically start the instances, and assign public IP addresses to the instances based on outbound bandwidth parameters. You can also use the features provided by the operation, such as configuring an automatic release time for instances, using a launch template, and configuring custom CPU options, to customize instance configurations for better management of instances.
88091
88865
  *
88092
88866
  * @remarks
88093
88867
  * *Before you call this operation, familiarize yourself with the billing and [pricing](https://www.alibabacloud.com/zh/pricing-calculator#/commodity/vm_intl) of ECS resources.**
@@ -88157,7 +88931,7 @@ export default class Client extends OpenApi {
88157
88931
  */
88158
88932
  runInstancesWithOptions(request: RunInstancesRequest, runtime: $dara.RuntimeOptions): Promise<RunInstancesResponse>;
88159
88933
  /**
88160
- * Creates pay-as-you-go or subscription Elastic Compute Service (ECS) instances. This operation provides a wide array of features and functions and helps simplify the procedure to create and manage ECS instances. When you call this operation, you can choose to create multiple ECS instances at a time, automatically start the instances, and assign public IP addresses to them. You can also use the features provided by the operation, such as configuring an automatic release time for instances, using a launch template, and configuring custom CPU options, to customize instance configurations for better management of instances.
88934
+ * Creates pay-as-you-go or subscription Elastic Compute Service (ECS) instances. This operation provides a wide array of features and functions and helps simplify the procedure to create and manage ECS instances. When you call this operation, you can choose to create multiple ECS instances at a time, automatically start the instances, and assign public IP addresses to the instances based on outbound bandwidth parameters. You can also use the features provided by the operation, such as configuring an automatic release time for instances, using a launch template, and configuring custom CPU options, to customize instance configurations for better management of instances.
88161
88935
  *
88162
88936
  * @remarks
88163
88937
  * *Before you call this operation, familiarize yourself with the billing and [pricing](https://www.alibabacloud.com/zh/pricing-calculator#/commodity/vm_intl) of ECS resources.**
@@ -88350,11 +89124,14 @@ export default class Client extends OpenApi {
88350
89124
  * * The ECS instance must be in the Running state.
88351
89125
  * * Cloud Assistant Agent must be installed on the ECS instance. You can call the [DescribeCloudAssistantStatus](https://help.aliyun.com/document_detail/87346.html) operation to check whether Cloud Assistant Agent is installed on the ECS instance and query the version number of the installed Cloud Assistant Agent.
88352
89126
  * * If Cloud Assistant Agent is not installed on the ECS instance, call the [InstallCloudAssistant](https://help.aliyun.com/document_detail/85916.html) operation to install Cloud Assistant Agent.
88353
- * * The Cloud Assistant Agent versions that are later than the following ones support the session management feature. If you need to upgrade the Cloud Assistant Agent version, follow the instructions in [Upgrade or disable upgrades for Cloud Assistant Agent](https://help.aliyun.com/document_detail/134383.html).
89127
+ * * The Cloud Assistant Agent versions that are later than the following ones support the session management feature. If you need to upgrade the Cloud Assistant Agent version, follow the instructions in [Upgrade or disable upgrades of Cloud Assistant Agent](https://help.aliyun.com/document_detail/134383.html).
88354
89128
  * * Linux operating system: 2.2.3.256
88355
89129
  * * Windows operating system: 2.1.3.256
88356
89130
  * * Each WebSocket URL returned by the StartTerminalSession operation remains valid for 10 minutes.
88357
- * * Up to 1,000 sessions can be created and available in a region. Each ECS instance can have up to 20 sessions in the connected state.
89131
+ * * If no data is transferred over a session within 3 minutes, Cloud Assistant closes the session connection.
89132
+ * * Up to 1,000 sessions can be created and available in a region. Each ECS instance can have up to 20 sessions in the connected state. Each session supports a bandwidth of up to 200 Kbit/s.
89133
+ * * The port forwarding feature supports only TCP port forwarding. UDP port forwarding is not supported.
89134
+ * * If you want to permanently close a session and invalidate the WebSocket URL, call the EndTerminalSession operation.
88358
89135
  *
88359
89136
  * @param request - StartTerminalSessionRequest
88360
89137
  * @param runtime - runtime options for this request RuntimeOptions
@@ -88370,11 +89147,14 @@ export default class Client extends OpenApi {
88370
89147
  * * The ECS instance must be in the Running state.
88371
89148
  * * Cloud Assistant Agent must be installed on the ECS instance. You can call the [DescribeCloudAssistantStatus](https://help.aliyun.com/document_detail/87346.html) operation to check whether Cloud Assistant Agent is installed on the ECS instance and query the version number of the installed Cloud Assistant Agent.
88372
89149
  * * If Cloud Assistant Agent is not installed on the ECS instance, call the [InstallCloudAssistant](https://help.aliyun.com/document_detail/85916.html) operation to install Cloud Assistant Agent.
88373
- * * The Cloud Assistant Agent versions that are later than the following ones support the session management feature. If you need to upgrade the Cloud Assistant Agent version, follow the instructions in [Upgrade or disable upgrades for Cloud Assistant Agent](https://help.aliyun.com/document_detail/134383.html).
89150
+ * * The Cloud Assistant Agent versions that are later than the following ones support the session management feature. If you need to upgrade the Cloud Assistant Agent version, follow the instructions in [Upgrade or disable upgrades of Cloud Assistant Agent](https://help.aliyun.com/document_detail/134383.html).
88374
89151
  * * Linux operating system: 2.2.3.256
88375
89152
  * * Windows operating system: 2.1.3.256
88376
89153
  * * Each WebSocket URL returned by the StartTerminalSession operation remains valid for 10 minutes.
88377
- * * Up to 1,000 sessions can be created and available in a region. Each ECS instance can have up to 20 sessions in the connected state.
89154
+ * * If no data is transferred over a session within 3 minutes, Cloud Assistant closes the session connection.
89155
+ * * Up to 1,000 sessions can be created and available in a region. Each ECS instance can have up to 20 sessions in the connected state. Each session supports a bandwidth of up to 200 Kbit/s.
89156
+ * * The port forwarding feature supports only TCP port forwarding. UDP port forwarding is not supported.
89157
+ * * If you want to permanently close a session and invalidate the WebSocket URL, call the EndTerminalSession operation.
88378
89158
  *
88379
89159
  * @param request - StartTerminalSessionRequest
88380
89160
  * @returns StartTerminalSessionResponse