@alicloud/ecs20140526 4.3.0 → 4.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +364 -125
- package/dist/client.js +2434 -424
- package/dist/client.js.map +1 -1
- package/package.json +3 -2
- package/src/client.ts +2636 -483
package/dist/client.d.ts
CHANGED
|
@@ -631,7 +631,7 @@ export declare class AllocatePublicIpAddressRequest extends $tea.Model {
|
|
|
631
631
|
* The public IP address. If you leave this parameter empty, the system randomly assigns a public IP address to the instance.
|
|
632
632
|
*
|
|
633
633
|
* @example
|
|
634
|
-
* 112.124
|
|
634
|
+
* ``112.124.**.**``
|
|
635
635
|
*/
|
|
636
636
|
ipAddress?: string;
|
|
637
637
|
ownerAccount?: string;
|
|
@@ -664,7 +664,7 @@ export declare class AllocatePublicIpAddressResponseBody extends $tea.Model {
|
|
|
664
664
|
* The public IP address.
|
|
665
665
|
*
|
|
666
666
|
* @example
|
|
667
|
-
* 112.124
|
|
667
|
+
* ``112.124.**.**``
|
|
668
668
|
*/
|
|
669
669
|
ipAddress?: string;
|
|
670
670
|
/**
|
|
@@ -963,7 +963,7 @@ export declare class AssignPrivateIpAddressesRequest extends $tea.Model {
|
|
|
963
963
|
* To assign secondary private IP addresses to the ENI, you must specify `PrivateIpAddress.N` or `SecondaryPrivateIpAddressCount` but not both.
|
|
964
964
|
*
|
|
965
965
|
* @example
|
|
966
|
-
* 10.1
|
|
966
|
+
* ``10.1.**.**``
|
|
967
967
|
*/
|
|
968
968
|
privateIpAddress?: string[];
|
|
969
969
|
/**
|
|
@@ -3249,7 +3249,7 @@ export declare class CreateAutoProvisioningGroupRequest extends $tea.Model {
|
|
|
3249
3249
|
* Specifies whether to release scaled-in instances when the real-time capacity of the auto provisioning group exceeds the target capacity and the group is triggered to scale in. Valid values:
|
|
3250
3250
|
*
|
|
3251
3251
|
* * termination: releases the scaled-in instances in the auto provisioning group.
|
|
3252
|
-
* * no-termination:
|
|
3252
|
+
* * no-termination: removes the scaled-in instances from the auto provisioning group but does not release the instances.
|
|
3253
3253
|
*
|
|
3254
3254
|
* Default value: no-termination.
|
|
3255
3255
|
*
|
|
@@ -6333,7 +6333,7 @@ export declare class CreateInstanceRequest extends $tea.Model {
|
|
|
6333
6333
|
* The internal IP address to assign to the instance.
|
|
6334
6334
|
*
|
|
6335
6335
|
* @example
|
|
6336
|
-
* 192.168
|
|
6336
|
+
* ``192.168.**.**``
|
|
6337
6337
|
*/
|
|
6338
6338
|
innerIpAddress?: string;
|
|
6339
6339
|
/**
|
|
@@ -6868,13 +6868,15 @@ export declare class CreateLaunchTemplateRequest extends $tea.Model {
|
|
|
6868
6868
|
autoReleaseTime?: string;
|
|
6869
6869
|
/**
|
|
6870
6870
|
* @remarks
|
|
6871
|
-
* Specifies whether to enable auto-renewal
|
|
6871
|
+
* Specifies whether to enable auto-renewal. Valid values:
|
|
6872
6872
|
*
|
|
6873
6873
|
* * true
|
|
6874
6874
|
* * false
|
|
6875
6875
|
*
|
|
6876
6876
|
* Default value: false.
|
|
6877
6877
|
*
|
|
6878
|
+
* > This parameter takes effect only if you set `InstanceChargeType` to `PrePaid`.
|
|
6879
|
+
*
|
|
6878
6880
|
* @example
|
|
6879
6881
|
* true
|
|
6880
6882
|
*/
|
|
@@ -7135,7 +7137,7 @@ export declare class CreateLaunchTemplateRequest extends $tea.Model {
|
|
|
7135
7137
|
* To assign a private IP address to an instance that resides in a VPC, make sure that the IP address is an idle IP address within the CIDR block of the vSwitch specified by the `VSwitchId` parameter.
|
|
7136
7138
|
*
|
|
7137
7139
|
* @example
|
|
7138
|
-
* 10.1
|
|
7140
|
+
* ``10.1.**.**``
|
|
7139
7141
|
*/
|
|
7140
7142
|
privateIpAddress?: string;
|
|
7141
7143
|
/**
|
|
@@ -7234,7 +7236,11 @@ export declare class CreateLaunchTemplateRequest extends $tea.Model {
|
|
|
7234
7236
|
spotStrategy?: string;
|
|
7235
7237
|
/**
|
|
7236
7238
|
* @remarks
|
|
7237
|
-
* The tags to add to the instance, disks, and primary ENI.
|
|
7239
|
+
* The tags to add to the instance, disks, and primary ENI that are created from the launch template.
|
|
7240
|
+
*
|
|
7241
|
+
* **Scenario**
|
|
7242
|
+
*
|
|
7243
|
+
* If you created a launch template by calling the CreateLaunchTemplate operation and use the default version that is automatically generated for the launch template to create instances, the specified tags are automatically added to the created instances, disks, and primary ENIs. For more information about the default versions of launch templates, see [xxxx]\\(url).
|
|
7238
7244
|
*/
|
|
7239
7245
|
tag?: CreateLaunchTemplateRequestTag[];
|
|
7240
7246
|
/**
|
|
@@ -7248,6 +7254,8 @@ export declare class CreateLaunchTemplateRequest extends $tea.Model {
|
|
|
7248
7254
|
/**
|
|
7249
7255
|
* @remarks
|
|
7250
7256
|
* The tags to add to the launch template.
|
|
7257
|
+
*
|
|
7258
|
+
* > You can add tags to or query the tags of launch templates by calling API operations. You cannot add tags to or query the tags of launch templates in the ECS console.
|
|
7251
7259
|
*/
|
|
7252
7260
|
templateTag?: CreateLaunchTemplateRequestTemplateTag[];
|
|
7253
7261
|
/**
|
|
@@ -7498,7 +7506,7 @@ export declare class CreateLaunchTemplateVersionRequest extends $tea.Model {
|
|
|
7498
7506
|
instanceName?: string;
|
|
7499
7507
|
/**
|
|
7500
7508
|
* @remarks
|
|
7501
|
-
* The instance type. For more information, see [
|
|
7509
|
+
* The instance type. For more information, see [Overview of instance families](https://help.aliyun.com/document_detail/25378.html). You can also call the [DescribeInstanceTypes](https://help.aliyun.com/document_detail/25620.html) operation to query the most recent list of instance types.
|
|
7502
7510
|
*
|
|
7503
7511
|
* @example
|
|
7504
7512
|
* ecs.g5.large
|
|
@@ -7640,7 +7648,7 @@ export declare class CreateLaunchTemplateVersionRequest extends $tea.Model {
|
|
|
7640
7648
|
* To assign a private IP address to an instance of the VPC type, make sure that the IP address is an idle IP address within the CIDR block of the vSwitch specified by the `VSwitchId` parameter.
|
|
7641
7649
|
*
|
|
7642
7650
|
* @example
|
|
7643
|
-
* 10.1
|
|
7651
|
+
* ``10.1.**.**``
|
|
7644
7652
|
*/
|
|
7645
7653
|
privateIpAddress?: string;
|
|
7646
7654
|
/**
|
|
@@ -7684,9 +7692,9 @@ export declare class CreateLaunchTemplateVersionRequest extends $tea.Model {
|
|
|
7684
7692
|
securityEnhancementStrategy?: string;
|
|
7685
7693
|
/**
|
|
7686
7694
|
* @remarks
|
|
7687
|
-
* The ID of the security group to which to assign the instance. Instances
|
|
7695
|
+
* The ID of the security group to which to assign the ECS instance created based on the launch template version. Instances in the same security group can access each other.
|
|
7688
7696
|
*
|
|
7689
|
-
* >
|
|
7697
|
+
* > You cannot specify `SecurityGroupId` and `SecurityGroupIds.N` in the same request.
|
|
7690
7698
|
*
|
|
7691
7699
|
* @example
|
|
7692
7700
|
* sg-bp15ed6xe1yxeycg****
|
|
@@ -7739,7 +7747,7 @@ export declare class CreateLaunchTemplateVersionRequest extends $tea.Model {
|
|
|
7739
7747
|
spotStrategy?: string;
|
|
7740
7748
|
/**
|
|
7741
7749
|
* @remarks
|
|
7742
|
-
* The tags to add to the instance, disks, and primary ENI.
|
|
7750
|
+
* The tags to add to the ECS instance, disks, and primary elastic network interface (ENI) created based on the launch template version.
|
|
7743
7751
|
*/
|
|
7744
7752
|
tag?: CreateLaunchTemplateVersionRequestTag[];
|
|
7745
7753
|
/**
|
|
@@ -7768,7 +7776,7 @@ export declare class CreateLaunchTemplateVersionRequest extends $tea.Model {
|
|
|
7768
7776
|
versionDescription?: string;
|
|
7769
7777
|
/**
|
|
7770
7778
|
* @remarks
|
|
7771
|
-
* The ID of the virtual private cloud (VPC).
|
|
7779
|
+
* The ID of the virtual private cloud (VPC) in which to create the ECS instance.
|
|
7772
7780
|
*
|
|
7773
7781
|
* @example
|
|
7774
7782
|
* vpc-bp12433upq1y5scen****
|
|
@@ -7805,7 +7813,7 @@ export declare class CreateLaunchTemplateVersionResponseBody extends $tea.Model
|
|
|
7805
7813
|
launchTemplateId?: string;
|
|
7806
7814
|
/**
|
|
7807
7815
|
* @remarks
|
|
7808
|
-
* The
|
|
7816
|
+
* The number of the created version of the launch template.
|
|
7809
7817
|
*
|
|
7810
7818
|
* @example
|
|
7811
7819
|
* 2
|
|
@@ -8065,7 +8073,7 @@ export declare class CreateNetworkInterfaceRequest extends $tea.Model {
|
|
|
8065
8073
|
* The specified IP address must be an idle IP address within the CIDR block of the vSwitch with which to associate the ENI. If this parameter is not specified, an idle IP address is assigned from within the vSwitch CIDR block at random.
|
|
8066
8074
|
*
|
|
8067
8075
|
* @example
|
|
8068
|
-
* 172.17
|
|
8076
|
+
* ``172.17.**.**``
|
|
8069
8077
|
*/
|
|
8070
8078
|
primaryIpAddress?: string;
|
|
8071
8079
|
/**
|
|
@@ -8075,7 +8083,7 @@ export declare class CreateNetworkInterfaceRequest extends $tea.Model {
|
|
|
8075
8083
|
* > To assign secondary private IP addresses to the ENI, you can specify the `PrivateIpAddress.N` or `SecondaryPrivateIpAddressCount` parameter, but not both.
|
|
8076
8084
|
*
|
|
8077
8085
|
* @example
|
|
8078
|
-
* 172.17
|
|
8086
|
+
* ``172.17.**.**``
|
|
8079
8087
|
*/
|
|
8080
8088
|
privateIpAddress?: string[];
|
|
8081
8089
|
/**
|
|
@@ -8266,7 +8274,7 @@ export declare class CreateNetworkInterfaceResponseBody extends $tea.Model {
|
|
|
8266
8274
|
* The private IP address of the ENI.
|
|
8267
8275
|
*
|
|
8268
8276
|
* @example
|
|
8269
|
-
* 172.17
|
|
8277
|
+
* ``172.17.**.**``
|
|
8270
8278
|
*/
|
|
8271
8279
|
privateIpAddress?: string;
|
|
8272
8280
|
/**
|
|
@@ -11436,7 +11444,7 @@ export declare class DeleteLaunchTemplateVersionRequest extends $tea.Model {
|
|
|
11436
11444
|
export declare class DeleteLaunchTemplateVersionResponseBody extends $tea.Model {
|
|
11437
11445
|
/**
|
|
11438
11446
|
* @remarks
|
|
11439
|
-
* The
|
|
11447
|
+
* The deleted launch template versions.
|
|
11440
11448
|
*/
|
|
11441
11449
|
launchTemplateVersions?: DeleteLaunchTemplateVersionResponseBodyLaunchTemplateVersions;
|
|
11442
11450
|
/**
|
|
@@ -16278,6 +16286,8 @@ export declare class DescribeDiagnosticReportsResponse extends $tea.Model {
|
|
|
16278
16286
|
export declare class DescribeDiskDefaultKMSKeyIdRequest extends $tea.Model {
|
|
16279
16287
|
/**
|
|
16280
16288
|
* @remarks
|
|
16289
|
+
* The ID of the region. You can call the DescribeRegions operation to query the most recent region list.
|
|
16290
|
+
*
|
|
16281
16291
|
* This parameter is required.
|
|
16282
16292
|
*
|
|
16283
16293
|
* @example
|
|
@@ -16297,11 +16307,17 @@ export declare class DescribeDiskDefaultKMSKeyIdRequest extends $tea.Model {
|
|
|
16297
16307
|
}
|
|
16298
16308
|
export declare class DescribeDiskDefaultKMSKeyIdResponseBody extends $tea.Model {
|
|
16299
16309
|
/**
|
|
16310
|
+
* @remarks
|
|
16311
|
+
* The ID of the KMS key.
|
|
16312
|
+
*
|
|
16300
16313
|
* @example
|
|
16301
16314
|
* 0e478b7a-4262-4802-b8cb-00d3fb40****
|
|
16302
16315
|
*/
|
|
16303
16316
|
KMSKeyId?: string;
|
|
16304
16317
|
/**
|
|
16318
|
+
* @remarks
|
|
16319
|
+
* The request ID.
|
|
16320
|
+
*
|
|
16305
16321
|
* @example
|
|
16306
16322
|
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3****
|
|
16307
16323
|
*/
|
|
@@ -16335,6 +16351,8 @@ export declare class DescribeDiskDefaultKMSKeyIdResponse extends $tea.Model {
|
|
|
16335
16351
|
export declare class DescribeDiskEncryptionByDefaultStatusRequest extends $tea.Model {
|
|
16336
16352
|
/**
|
|
16337
16353
|
* @remarks
|
|
16354
|
+
* The ID of the region. You can call the DescribeRegions operation to query the most recent region list.
|
|
16355
|
+
*
|
|
16338
16356
|
* This parameter is required.
|
|
16339
16357
|
*
|
|
16340
16358
|
* @example
|
|
@@ -16354,11 +16372,22 @@ export declare class DescribeDiskEncryptionByDefaultStatusRequest extends $tea.M
|
|
|
16354
16372
|
}
|
|
16355
16373
|
export declare class DescribeDiskEncryptionByDefaultStatusResponseBody extends $tea.Model {
|
|
16356
16374
|
/**
|
|
16375
|
+
* @remarks
|
|
16376
|
+
* Indicates whether account-level default encryption of EBS resources is enabled in the region. Valid values:
|
|
16377
|
+
*
|
|
16378
|
+
* * true
|
|
16379
|
+
* * false
|
|
16380
|
+
*
|
|
16381
|
+
* Default value: false.
|
|
16382
|
+
*
|
|
16357
16383
|
* @example
|
|
16358
16384
|
* false
|
|
16359
16385
|
*/
|
|
16360
16386
|
encrypted?: boolean;
|
|
16361
16387
|
/**
|
|
16388
|
+
* @remarks
|
|
16389
|
+
* The request ID.
|
|
16390
|
+
*
|
|
16362
16391
|
* @example
|
|
16363
16392
|
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
16364
16393
|
*/
|
|
@@ -22639,7 +22668,10 @@ export declare class DescribeLaunchTemplateVersionsResponse extends $tea.Model {
|
|
|
22639
22668
|
export declare class DescribeLaunchTemplatesRequest extends $tea.Model {
|
|
22640
22669
|
/**
|
|
22641
22670
|
* @remarks
|
|
22642
|
-
* The IDs of launch templates.
|
|
22671
|
+
* The IDs of launch templates.
|
|
22672
|
+
*
|
|
22673
|
+
* * You can query up to 100 launch templates.
|
|
22674
|
+
* * You must specify LaunchTemplateId or LaunchTemplateName to specify a launch template.
|
|
22643
22675
|
*
|
|
22644
22676
|
* @example
|
|
22645
22677
|
* lt-m5e3ofjr1zn1aw7q****
|
|
@@ -22647,7 +22679,10 @@ export declare class DescribeLaunchTemplatesRequest extends $tea.Model {
|
|
|
22647
22679
|
launchTemplateId?: string[];
|
|
22648
22680
|
/**
|
|
22649
22681
|
* @remarks
|
|
22650
|
-
* The names of launch templates.
|
|
22682
|
+
* The names of launch templates.
|
|
22683
|
+
*
|
|
22684
|
+
* * You can query up to 100 launch templates.
|
|
22685
|
+
* * You must specify LaunchTemplateId or LaunchTemplateName to specify a launch template.
|
|
22651
22686
|
*
|
|
22652
22687
|
* @example
|
|
22653
22688
|
* wd-152630748****
|
|
@@ -22697,7 +22732,9 @@ export declare class DescribeLaunchTemplatesRequest extends $tea.Model {
|
|
|
22697
22732
|
templateResourceGroupId?: string;
|
|
22698
22733
|
/**
|
|
22699
22734
|
* @remarks
|
|
22700
|
-
* The
|
|
22735
|
+
* The tags of the launch template.
|
|
22736
|
+
*
|
|
22737
|
+
* > You can only call API operations to add tags to and query the tags of a launch template. You cannot add tags to or view the tags of a launch template in the Elastic Compute Service (ECS) console.
|
|
22701
22738
|
*/
|
|
22702
22739
|
templateTag?: DescribeLaunchTemplatesRequestTemplateTag[];
|
|
22703
22740
|
static names(): {
|
|
@@ -22713,7 +22750,7 @@ export declare class DescribeLaunchTemplatesRequest extends $tea.Model {
|
|
|
22713
22750
|
export declare class DescribeLaunchTemplatesResponseBody extends $tea.Model {
|
|
22714
22751
|
/**
|
|
22715
22752
|
* @remarks
|
|
22716
|
-
* The
|
|
22753
|
+
* The queried launch templates.
|
|
22717
22754
|
*/
|
|
22718
22755
|
launchTemplateSets?: DescribeLaunchTemplatesResponseBodyLaunchTemplateSets;
|
|
22719
22756
|
/**
|
|
@@ -22846,7 +22883,7 @@ export declare class DescribeManagedInstancesRequest extends $tea.Model {
|
|
|
22846
22883
|
* The internal or public IP address of the managed instance.
|
|
22847
22884
|
*
|
|
22848
22885
|
* @example
|
|
22849
|
-
* 192.168
|
|
22886
|
+
* ``192.168.**.**``
|
|
22850
22887
|
*/
|
|
22851
22888
|
instanceIp?: string;
|
|
22852
22889
|
/**
|
|
@@ -23265,7 +23302,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBody extends $tea.
|
|
|
23265
23302
|
* The private IP address of the ENI.
|
|
23266
23303
|
*
|
|
23267
23304
|
* @example
|
|
23268
|
-
* 10.1
|
|
23305
|
+
* ``10.1.**.**``
|
|
23269
23306
|
*/
|
|
23270
23307
|
privateIpAddress?: string;
|
|
23271
23308
|
/**
|
|
@@ -23347,6 +23384,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBody extends $tea.
|
|
|
23347
23384
|
* > This parameter is in invitational preview and unavailable for general users.
|
|
23348
23385
|
*/
|
|
23349
23386
|
slaveInterfaceSpecification?: DescribeNetworkInterfaceAttributeResponseBodySlaveInterfaceSpecification;
|
|
23387
|
+
sourceDestCheck?: boolean;
|
|
23350
23388
|
/**
|
|
23351
23389
|
* @remarks
|
|
23352
23390
|
* The state of the ENI. Valid values:
|
|
@@ -23661,7 +23699,7 @@ export declare class DescribeNetworkInterfacesRequest extends $tea.Model {
|
|
|
23661
23699
|
* The primary private IPv4 address of the ENI.
|
|
23662
23700
|
*
|
|
23663
23701
|
* @example
|
|
23664
|
-
* 192.168
|
|
23702
|
+
* ``192.168.**.**``
|
|
23665
23703
|
*/
|
|
23666
23704
|
primaryIpAddress?: string;
|
|
23667
23705
|
/**
|
|
@@ -23669,7 +23707,7 @@ export declare class DescribeNetworkInterfacesRequest extends $tea.Model {
|
|
|
23669
23707
|
* An array that consists of the secondary private IPv4 addresses of the ENI. You can specify multiple secondary private IPv4 addresses. Valid values of N: 1 to 100.
|
|
23670
23708
|
*
|
|
23671
23709
|
* @example
|
|
23672
|
-
* 192.168
|
|
23710
|
+
* ``192.168.**.**``
|
|
23673
23711
|
*/
|
|
23674
23712
|
privateIpAddress?: string[];
|
|
23675
23713
|
/**
|
|
@@ -24922,10 +24960,12 @@ export declare class DescribeRegionsRequest extends $tea.Model {
|
|
|
24922
24960
|
acceptLanguage?: string;
|
|
24923
24961
|
/**
|
|
24924
24962
|
* @remarks
|
|
24925
|
-
* The billing method of
|
|
24963
|
+
* The billing method of the instance. For more information, see [Billing overview](https://help.aliyun.com/document_detail/25398.html). Valid values:
|
|
24926
24964
|
*
|
|
24927
24965
|
* * PrePaid: subscription. If you set this parameter to PrePaid, make sure that you have sufficient balance or credits in your account. Otherwise, the InvalidPayMethod error code is returned.
|
|
24928
24966
|
* * PostPaid: pay-as-you-go.
|
|
24967
|
+
* * SpotWithPriceLimit: preemptible instance for which a maximum hourly price is specified.
|
|
24968
|
+
* * SpotAsPriceGo: preemptible instance for which the market price at the time of purchase is automatically used as the bid price. The market price can be up to the pay-as-you-go price.
|
|
24929
24969
|
*
|
|
24930
24970
|
* Default value: PostPaid.
|
|
24931
24971
|
*
|
|
@@ -24939,7 +24979,7 @@ export declare class DescribeRegionsRequest extends $tea.Model {
|
|
|
24939
24979
|
resourceOwnerId?: number;
|
|
24940
24980
|
/**
|
|
24941
24981
|
* @remarks
|
|
24942
|
-
* The resource
|
|
24982
|
+
* The type of resource. Valid values:
|
|
24943
24983
|
*
|
|
24944
24984
|
* * instance: Elastic Compute Service (ECS) instance
|
|
24945
24985
|
* * disk: disk
|
|
@@ -24965,7 +25005,7 @@ export declare class DescribeRegionsRequest extends $tea.Model {
|
|
|
24965
25005
|
export declare class DescribeRegionsResponseBody extends $tea.Model {
|
|
24966
25006
|
/**
|
|
24967
25007
|
* @remarks
|
|
24968
|
-
* The
|
|
25008
|
+
* The information of the regions.
|
|
24969
25009
|
*/
|
|
24970
25010
|
regions?: DescribeRegionsResponseBodyRegions;
|
|
24971
25011
|
/**
|
|
@@ -30090,6 +30130,8 @@ export declare class DisableActivationResponse extends $tea.Model {
|
|
|
30090
30130
|
export declare class DisableDiskEncryptionByDefaultRequest extends $tea.Model {
|
|
30091
30131
|
/**
|
|
30092
30132
|
* @remarks
|
|
30133
|
+
* The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
|
|
30134
|
+
*
|
|
30093
30135
|
* This parameter is required.
|
|
30094
30136
|
*
|
|
30095
30137
|
* @example
|
|
@@ -30109,6 +30151,9 @@ export declare class DisableDiskEncryptionByDefaultRequest extends $tea.Model {
|
|
|
30109
30151
|
}
|
|
30110
30152
|
export declare class DisableDiskEncryptionByDefaultResponseBody extends $tea.Model {
|
|
30111
30153
|
/**
|
|
30154
|
+
* @remarks
|
|
30155
|
+
* The request ID, which uniquely identifies the request.
|
|
30156
|
+
*
|
|
30112
30157
|
* @example
|
|
30113
30158
|
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
30114
30159
|
*/
|
|
@@ -30306,6 +30351,8 @@ export declare class EnableDiskEncryptionByDefaultRequest extends $tea.Model {
|
|
|
30306
30351
|
ownerId?: number;
|
|
30307
30352
|
/**
|
|
30308
30353
|
* @remarks
|
|
30354
|
+
* The region ID. You can call the DescribeRegions operation to query the most recent region list.
|
|
30355
|
+
*
|
|
30309
30356
|
* This parameter is required.
|
|
30310
30357
|
*
|
|
30311
30358
|
* @example
|
|
@@ -30326,6 +30373,9 @@ export declare class EnableDiskEncryptionByDefaultRequest extends $tea.Model {
|
|
|
30326
30373
|
}
|
|
30327
30374
|
export declare class EnableDiskEncryptionByDefaultResponseBody extends $tea.Model {
|
|
30328
30375
|
/**
|
|
30376
|
+
* @remarks
|
|
30377
|
+
* The request ID.
|
|
30378
|
+
*
|
|
30329
30379
|
* @example
|
|
30330
30380
|
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
30331
30381
|
*/
|
|
@@ -34358,6 +34408,8 @@ export declare class ModifyDiskChargeTypeResponse extends $tea.Model {
|
|
|
34358
34408
|
export declare class ModifyDiskDefaultKMSKeyIdRequest extends $tea.Model {
|
|
34359
34409
|
/**
|
|
34360
34410
|
* @remarks
|
|
34411
|
+
* The ID of the new KMS key.
|
|
34412
|
+
*
|
|
34361
34413
|
* This parameter is required.
|
|
34362
34414
|
*
|
|
34363
34415
|
* @example
|
|
@@ -34366,6 +34418,8 @@ export declare class ModifyDiskDefaultKMSKeyIdRequest extends $tea.Model {
|
|
|
34366
34418
|
KMSKeyId?: string;
|
|
34367
34419
|
/**
|
|
34368
34420
|
* @remarks
|
|
34421
|
+
* The region ID. You can call the [DescribeRegions](https://help.aliyun.com/document_detail/25609.html) operation to query the most recent region list.
|
|
34422
|
+
*
|
|
34369
34423
|
* This parameter is required.
|
|
34370
34424
|
*
|
|
34371
34425
|
* @example
|
|
@@ -34385,6 +34439,9 @@ export declare class ModifyDiskDefaultKMSKeyIdRequest extends $tea.Model {
|
|
|
34385
34439
|
}
|
|
34386
34440
|
export declare class ModifyDiskDefaultKMSKeyIdResponseBody extends $tea.Model {
|
|
34387
34441
|
/**
|
|
34442
|
+
* @remarks
|
|
34443
|
+
* The request ID.
|
|
34444
|
+
*
|
|
34388
34445
|
* @example
|
|
34389
34446
|
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
34390
34447
|
*/
|
|
@@ -34732,6 +34789,7 @@ export declare class ModifyEipAddressAttributeResponse extends $tea.Model {
|
|
|
34732
34789
|
}
|
|
34733
34790
|
export declare class ModifyElasticityAssuranceRequest extends $tea.Model {
|
|
34734
34791
|
privatePoolOptions?: ModifyElasticityAssuranceRequestPrivatePoolOptions;
|
|
34792
|
+
clientToken?: string;
|
|
34735
34793
|
/**
|
|
34736
34794
|
* @remarks
|
|
34737
34795
|
* The description of the elasticity assurance. The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.
|
|
@@ -34740,6 +34798,7 @@ export declare class ModifyElasticityAssuranceRequest extends $tea.Model {
|
|
|
34740
34798
|
* This is description.
|
|
34741
34799
|
*/
|
|
34742
34800
|
description?: string;
|
|
34801
|
+
instanceAmount?: number;
|
|
34743
34802
|
ownerAccount?: string;
|
|
34744
34803
|
ownerId?: number;
|
|
34745
34804
|
/**
|
|
@@ -36645,11 +36704,6 @@ export declare class ModifyInstanceSpecRequest extends $tea.Model {
|
|
|
36645
36704
|
* @remarks
|
|
36646
36705
|
* > This parameter is not publicly available.
|
|
36647
36706
|
*
|
|
36648
|
-
* Valid values:
|
|
36649
|
-
*
|
|
36650
|
-
* * Online
|
|
36651
|
-
* * Offline
|
|
36652
|
-
*
|
|
36653
36707
|
* @example
|
|
36654
36708
|
* null
|
|
36655
36709
|
*/
|
|
@@ -36805,7 +36859,7 @@ export declare class ModifyInstanceVpcAttributeRequest extends $tea.Model {
|
|
|
36805
36859
|
* By default, if this parameter is not specified, a private IP address is randomly assigned from the CIDR block of the specified vSwitch.
|
|
36806
36860
|
*
|
|
36807
36861
|
* @example
|
|
36808
|
-
* 172.17
|
|
36862
|
+
* ``172.17.**.**``
|
|
36809
36863
|
*/
|
|
36810
36864
|
privateIpAddress?: string;
|
|
36811
36865
|
resourceOwnerAccount?: string;
|
|
@@ -37302,7 +37356,7 @@ export declare class ModifyLaunchTemplateDefaultVersionRequest extends $tea.Mode
|
|
|
37302
37356
|
export declare class ModifyLaunchTemplateDefaultVersionResponseBody extends $tea.Model {
|
|
37303
37357
|
/**
|
|
37304
37358
|
* @remarks
|
|
37305
|
-
* The ID of the launch template. For more information, see [DescribeLaunchTemplates](https://help.aliyun.com/document_detail/73759.html).
|
|
37359
|
+
* The ID of the launch template. For more information, see [DescribeLaunchTemplates](https://help.aliyun.com/document_detail/73759.html).
|
|
37306
37360
|
*
|
|
37307
37361
|
* @example
|
|
37308
37362
|
* lt-bp1apo0bbbkuy0rj****
|
|
@@ -37531,6 +37585,7 @@ export declare class ModifyNetworkInterfaceAttributeRequest extends $tea.Model {
|
|
|
37531
37585
|
* * The new security groups take effect after a short delay.
|
|
37532
37586
|
*/
|
|
37533
37587
|
securityGroupId?: string[];
|
|
37588
|
+
sourceDestCheck?: boolean;
|
|
37534
37589
|
/**
|
|
37535
37590
|
* @remarks
|
|
37536
37591
|
* The Tx queue depth of the ENI.
|
|
@@ -39713,6 +39768,78 @@ export declare class ModifyVpcAttributeResponse extends $tea.Model {
|
|
|
39713
39768
|
[key: string]: any;
|
|
39714
39769
|
});
|
|
39715
39770
|
}
|
|
39771
|
+
export declare class PurchaseElasticityAssuranceRequest extends $tea.Model {
|
|
39772
|
+
privatePoolOptions?: PurchaseElasticityAssuranceRequestPrivatePoolOptions;
|
|
39773
|
+
/**
|
|
39774
|
+
* @example
|
|
39775
|
+
* 123e4567-e89b-12d3-a456-426655440000
|
|
39776
|
+
*/
|
|
39777
|
+
clientToken?: string;
|
|
39778
|
+
/**
|
|
39779
|
+
* @example
|
|
39780
|
+
* 1
|
|
39781
|
+
*/
|
|
39782
|
+
period?: number;
|
|
39783
|
+
/**
|
|
39784
|
+
* @example
|
|
39785
|
+
* Month
|
|
39786
|
+
*/
|
|
39787
|
+
periodUnit?: string;
|
|
39788
|
+
/**
|
|
39789
|
+
* @remarks
|
|
39790
|
+
* This parameter is required.
|
|
39791
|
+
*
|
|
39792
|
+
* @example
|
|
39793
|
+
* cn-hangzhou
|
|
39794
|
+
*/
|
|
39795
|
+
regionId?: string;
|
|
39796
|
+
/**
|
|
39797
|
+
* @example
|
|
39798
|
+
* 2024-06-18T00:00Z
|
|
39799
|
+
*/
|
|
39800
|
+
startTime?: string;
|
|
39801
|
+
static names(): {
|
|
39802
|
+
[key: string]: string;
|
|
39803
|
+
};
|
|
39804
|
+
static types(): {
|
|
39805
|
+
[key: string]: any;
|
|
39806
|
+
};
|
|
39807
|
+
constructor(map?: {
|
|
39808
|
+
[key: string]: any;
|
|
39809
|
+
});
|
|
39810
|
+
}
|
|
39811
|
+
export declare class PurchaseElasticityAssuranceResponseBody extends $tea.Model {
|
|
39812
|
+
/**
|
|
39813
|
+
* @example
|
|
39814
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
39815
|
+
*/
|
|
39816
|
+
requestId?: string;
|
|
39817
|
+
static names(): {
|
|
39818
|
+
[key: string]: string;
|
|
39819
|
+
};
|
|
39820
|
+
static types(): {
|
|
39821
|
+
[key: string]: any;
|
|
39822
|
+
};
|
|
39823
|
+
constructor(map?: {
|
|
39824
|
+
[key: string]: any;
|
|
39825
|
+
});
|
|
39826
|
+
}
|
|
39827
|
+
export declare class PurchaseElasticityAssuranceResponse extends $tea.Model {
|
|
39828
|
+
headers?: {
|
|
39829
|
+
[key: string]: string;
|
|
39830
|
+
};
|
|
39831
|
+
statusCode?: number;
|
|
39832
|
+
body?: PurchaseElasticityAssuranceResponseBody;
|
|
39833
|
+
static names(): {
|
|
39834
|
+
[key: string]: string;
|
|
39835
|
+
};
|
|
39836
|
+
static types(): {
|
|
39837
|
+
[key: string]: any;
|
|
39838
|
+
};
|
|
39839
|
+
constructor(map?: {
|
|
39840
|
+
[key: string]: any;
|
|
39841
|
+
});
|
|
39842
|
+
}
|
|
39716
39843
|
export declare class PurchaseReservedInstancesOfferingRequest extends $tea.Model {
|
|
39717
39844
|
/**
|
|
39718
39845
|
* @remarks
|
|
@@ -40901,7 +41028,7 @@ export declare class ReleasePublicIpAddressRequest extends $tea.Model {
|
|
|
40901
41028
|
* This parameter is required.
|
|
40902
41029
|
*
|
|
40903
41030
|
* @example
|
|
40904
|
-
* 121.40
|
|
41031
|
+
* ``121.40.**.**``
|
|
40905
41032
|
*/
|
|
40906
41033
|
publicIpAddress?: string;
|
|
40907
41034
|
/**
|
|
@@ -42033,6 +42160,8 @@ export declare class ResetDiskResponse extends $tea.Model {
|
|
|
42033
42160
|
export declare class ResetDiskDefaultKMSKeyIdRequest extends $tea.Model {
|
|
42034
42161
|
/**
|
|
42035
42162
|
* @remarks
|
|
42163
|
+
* The ID of the region. You can call the DescribeRegions operation to query the most recent region list.
|
|
42164
|
+
*
|
|
42036
42165
|
* This parameter is required.
|
|
42037
42166
|
*
|
|
42038
42167
|
* @example
|
|
@@ -42052,6 +42181,9 @@ export declare class ResetDiskDefaultKMSKeyIdRequest extends $tea.Model {
|
|
|
42052
42181
|
}
|
|
42053
42182
|
export declare class ResetDiskDefaultKMSKeyIdResponseBody extends $tea.Model {
|
|
42054
42183
|
/**
|
|
42184
|
+
* @remarks
|
|
42185
|
+
* The request ID.
|
|
42186
|
+
*
|
|
42055
42187
|
* @example
|
|
42056
42188
|
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
42057
42189
|
*/
|
|
@@ -44115,7 +44247,7 @@ export declare class RunInstancesRequest extends $tea.Model {
|
|
|
44115
44247
|
* > The first IP address and last three IP addresses of each vSwitch CIDR block are reserved. You cannot specify the IP addresses. For example, if a vSwitch CIDR block is 192.168.1.0/24, the IP addresses 192.168.1.0, 192.168.1.253, 192.168.1.254, and 192.168.1.255 are reserved.
|
|
44116
44248
|
*
|
|
44117
44249
|
* @example
|
|
44118
|
-
* 10.1
|
|
44250
|
+
* ``10.1.**.**``
|
|
44119
44251
|
*/
|
|
44120
44252
|
privateIpAddress?: string;
|
|
44121
44253
|
/**
|
|
@@ -45647,7 +45779,7 @@ export declare class UnassignPrivateIpAddressesRequest extends $tea.Model {
|
|
|
45647
45779
|
* The secondary private IP addresses to unassign.
|
|
45648
45780
|
*
|
|
45649
45781
|
* @example
|
|
45650
|
-
* 192.168
|
|
45782
|
+
* ``192.168.**.**``
|
|
45651
45783
|
*/
|
|
45652
45784
|
privateIpAddress?: string[];
|
|
45653
45785
|
/**
|
|
@@ -49014,7 +49146,7 @@ export declare class CreateLaunchTemplateRequestNetworkInterface extends $tea.Mo
|
|
|
49014
49146
|
* > You can attach only a single secondary ENI when you create an instance. After the instance is created, you can call the [CreateNetworkInterface](https://help.aliyun.com/document_detail/58504.html) and [AttachNetworkInterface](https://help.aliyun.com/document_detail/58515.html) operations to attach more secondary ENIs.
|
|
49015
49147
|
*
|
|
49016
49148
|
* @example
|
|
49017
|
-
* 192.168
|
|
49149
|
+
* ``192.168.**.**``
|
|
49018
49150
|
*/
|
|
49019
49151
|
primaryIpAddress?: string;
|
|
49020
49152
|
/**
|
|
@@ -49074,7 +49206,7 @@ export declare class CreateLaunchTemplateRequestNetworkInterface extends $tea.Mo
|
|
|
49074
49206
|
export declare class CreateLaunchTemplateRequestTag extends $tea.Model {
|
|
49075
49207
|
/**
|
|
49076
49208
|
* @remarks
|
|
49077
|
-
* The key of tag N to add to the instance, disks, and primary ENI. Valid values of N: 1 to 20. The tag key cannot be an empty string. The tag key can be up to 128 characters in length and cannot contain http:// or https://. The tag key cannot start with acs: or aliyun.
|
|
49209
|
+
* The key of tag N to add to the instance, disks, and primary ENI that are created from the launch template. Valid values of N: 1 to 20. The tag key cannot be an empty string. The tag key can be up to 128 characters in length and cannot contain http:// or https://. The tag key cannot start with acs: or aliyun.
|
|
49078
49210
|
*
|
|
49079
49211
|
* @example
|
|
49080
49212
|
* TestKey
|
|
@@ -49082,7 +49214,7 @@ export declare class CreateLaunchTemplateRequestTag extends $tea.Model {
|
|
|
49082
49214
|
key?: string;
|
|
49083
49215
|
/**
|
|
49084
49216
|
* @remarks
|
|
49085
|
-
* The value of tag N to add to the instance, disks, and primary ENI. Valid values of N: 1 to 20. The tag value can be an empty string. The tag value can be up to 128 characters in length and cannot contain http:// or https://.
|
|
49217
|
+
* The value of tag N to add to the instance, disks, and primary ENI that are created from the launch template. Valid values of N: 1 to 20. The tag value can be an empty string. The tag value can be up to 128 characters in length and cannot contain http:// or https://.
|
|
49086
49218
|
*
|
|
49087
49219
|
* @example
|
|
49088
49220
|
* TestValue
|
|
@@ -49473,7 +49605,7 @@ export declare class CreateLaunchTemplateVersionRequestNetworkInterface extends
|
|
|
49473
49605
|
* The primary private IP address of the secondary ENI. The value of N in `NetworkInterface.N` cannot be greater than 1.
|
|
49474
49606
|
*
|
|
49475
49607
|
* @example
|
|
49476
|
-
* 192.168
|
|
49608
|
+
* ``192.168.**.**``
|
|
49477
49609
|
*/
|
|
49478
49610
|
primaryIpAddress?: string;
|
|
49479
49611
|
/**
|
|
@@ -49517,7 +49649,7 @@ export declare class CreateLaunchTemplateVersionRequestNetworkInterface extends
|
|
|
49517
49649
|
export declare class CreateLaunchTemplateVersionRequestTag extends $tea.Model {
|
|
49518
49650
|
/**
|
|
49519
49651
|
* @remarks
|
|
49520
|
-
* The key of tag N to add to the instance, disks, and primary ENI. Valid values of N: 1 to 20. The tag key cannot be an empty string. The tag key can be up to 128 characters in length and cannot contain http:// or https://. The tag key cannot start with acs: or aliyun.
|
|
49652
|
+
* The key of tag N to add to the ECS instance, disks, and primary ENI created based on the launch template version. Valid values of N: 1 to 20. The tag key cannot be an empty string. The tag key can be up to 128 characters in length and cannot contain http:// or https://. The tag key cannot start with acs: or aliyun.
|
|
49521
49653
|
*
|
|
49522
49654
|
* @example
|
|
49523
49655
|
* TestKey
|
|
@@ -49525,7 +49657,7 @@ export declare class CreateLaunchTemplateVersionRequestTag extends $tea.Model {
|
|
|
49525
49657
|
key?: string;
|
|
49526
49658
|
/**
|
|
49527
49659
|
* @remarks
|
|
49528
|
-
* The value of tag N to add to the instance, disks, and primary ENI. Valid values of N: 1 to 20. The tag value can be an empty string. The tag value can be up to 128 characters in length and cannot contain http:// or https://.
|
|
49660
|
+
* The value of tag N to add to the ECS instance, disks, and primary ENI created based on the launch template version. Valid values of N: 1 to 20. The tag value can be an empty string. The tag value can be up to 128 characters in length and cannot contain http:// or https://.
|
|
49529
49661
|
*
|
|
49530
49662
|
* @example
|
|
49531
49663
|
* TestValue
|
|
@@ -49818,7 +49950,7 @@ export declare class CreateNetworkInterfaceResponseBodyPrivateIpSetsPrivateIpSet
|
|
|
49818
49950
|
* The private IP address of the instance.
|
|
49819
49951
|
*
|
|
49820
49952
|
* @example
|
|
49821
|
-
* 172.17
|
|
49953
|
+
* ``172.17.**.**``
|
|
49822
49954
|
*/
|
|
49823
49955
|
privateIpAddress?: string;
|
|
49824
49956
|
static names(): {
|
|
@@ -50392,7 +50524,7 @@ export declare class DeregisterManagedInstanceResponseBodyInstance extends $tea.
|
|
|
50392
50524
|
* The public IP address of the managed instance.
|
|
50393
50525
|
*
|
|
50394
50526
|
* @example
|
|
50395
|
-
* 47.8
|
|
50527
|
+
* ``47.8.**.**``
|
|
50396
50528
|
*/
|
|
50397
50529
|
internetIp?: string;
|
|
50398
50530
|
/**
|
|
@@ -50400,7 +50532,7 @@ export declare class DeregisterManagedInstanceResponseBodyInstance extends $tea.
|
|
|
50400
50532
|
* The internal IP address of the managed instance.
|
|
50401
50533
|
*
|
|
50402
50534
|
* @example
|
|
50403
|
-
* 10.0
|
|
50535
|
+
* ``10.0.**.**``
|
|
50404
50536
|
*/
|
|
50405
50537
|
intranetIp?: string;
|
|
50406
50538
|
/**
|
|
@@ -58492,6 +58624,9 @@ export declare class DescribeImagesResponseBodyImagesImage extends $tea.Model {
|
|
|
58492
58624
|
*
|
|
58493
58625
|
* * BIOS: Basic Input/Output System (BIOS)
|
|
58494
58626
|
* * UEFI: Unified Extensible Firmware Interface (UEFI)
|
|
58627
|
+
* * UEFI-Preferred: BIOS and UEFI
|
|
58628
|
+
*
|
|
58629
|
+
* For information about the image boot modes, see [Image boot modes](~~2244655#b9caa9b8bb1wf~~).
|
|
58495
58630
|
*
|
|
58496
58631
|
* @example
|
|
58497
58632
|
* BIOS
|
|
@@ -58706,6 +58841,8 @@ export declare class DescribeImagesResponseBodyImagesImage extends $tea.Model {
|
|
|
58706
58841
|
* @remarks
|
|
58707
58842
|
* The size of the image. Unit: GiB.
|
|
58708
58843
|
*
|
|
58844
|
+
* > If the image contains data disk snapshots, this parameter indicates only the size of the system disk snapshot contained in the image.
|
|
58845
|
+
*
|
|
58709
58846
|
* @example
|
|
58710
58847
|
* 60
|
|
58711
58848
|
*/
|
|
@@ -58882,7 +59019,7 @@ export declare class DescribeInstanceAttributeResponseBodyEipAddress extends $te
|
|
|
58882
59019
|
* The ID of the elastic IP address (EIP).
|
|
58883
59020
|
*
|
|
58884
59021
|
* @example
|
|
58885
|
-
* 30.21
|
|
59022
|
+
* ``30.21.**.**``
|
|
58886
59023
|
*/
|
|
58887
59024
|
ipAddress?: string;
|
|
58888
59025
|
static names(): {
|
|
@@ -58986,7 +59123,7 @@ export declare class DescribeInstanceAttributeResponseBodyVpcAttributes extends
|
|
|
58986
59123
|
* The NAT IP address of the instance. It is used by ECS instances in different VPCs for communication.
|
|
58987
59124
|
*
|
|
58988
59125
|
* @example
|
|
58989
|
-
* 172.17
|
|
59126
|
+
* ``172.17.**.**``
|
|
58990
59127
|
*/
|
|
58991
59128
|
natIpAddress?: string;
|
|
58992
59129
|
/**
|
|
@@ -60207,9 +60344,6 @@ export declare class DescribeInstanceTypeFamiliesResponseBodyInstanceTypeFamilie
|
|
|
60207
60344
|
export declare class DescribeInstanceTypesResponseBodyInstanceTypesInstanceTypeEnhancedNetwork extends $tea.Model {
|
|
60208
60345
|
/**
|
|
60209
60346
|
* @remarks
|
|
60210
|
-
* *
|
|
60211
|
-
* *
|
|
60212
|
-
*
|
|
60213
60347
|
* > This parameter is not publicly available.
|
|
60214
60348
|
*
|
|
60215
60349
|
* @example
|
|
@@ -60880,7 +61014,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceEipAddress ex
|
|
|
60880
61014
|
* The EIP.
|
|
60881
61015
|
*
|
|
60882
61016
|
* @example
|
|
60883
|
-
* 42.112
|
|
61017
|
+
* ``42.112.**.**``
|
|
60884
61018
|
*/
|
|
60885
61019
|
ipAddress?: string;
|
|
60886
61020
|
/**
|
|
@@ -61110,7 +61244,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceNetworkInterf
|
|
|
61110
61244
|
* The private IP address of the ENI.
|
|
61111
61245
|
*
|
|
61112
61246
|
* @example
|
|
61113
|
-
* 172.17
|
|
61247
|
+
* ``172.17.**.**``
|
|
61114
61248
|
*/
|
|
61115
61249
|
privateIpAddress?: string;
|
|
61116
61250
|
static names(): {
|
|
@@ -61172,7 +61306,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceNetworkInterf
|
|
|
61172
61306
|
* The primary private IP address of the ENI.
|
|
61173
61307
|
*
|
|
61174
61308
|
* @example
|
|
61175
|
-
* 172.17
|
|
61309
|
+
* ``172.17.**.**``*
|
|
61176
61310
|
*/
|
|
61177
61311
|
primaryIpAddress?: string;
|
|
61178
61312
|
/**
|
|
@@ -61402,7 +61536,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceVpcAttributes
|
|
|
61402
61536
|
* The NAT IP address of the instance. The NAT IP address is used by ECS instances in different VPCs for communication.
|
|
61403
61537
|
*
|
|
61404
61538
|
* @example
|
|
61405
|
-
* 172.17
|
|
61539
|
+
* ``172.17.**.**``
|
|
61406
61540
|
*/
|
|
61407
61541
|
natIpAddress?: string;
|
|
61408
61542
|
/**
|
|
@@ -64013,7 +64147,7 @@ export declare class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVer
|
|
|
64013
64147
|
* The private IP address to assign to the instance.
|
|
64014
64148
|
*
|
|
64015
64149
|
* @example
|
|
64016
|
-
* 10.1
|
|
64150
|
+
* ``10.1.**.**``
|
|
64017
64151
|
*/
|
|
64018
64152
|
privateIpAddress?: string;
|
|
64019
64153
|
/**
|
|
@@ -64234,7 +64368,9 @@ export declare class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVer
|
|
|
64234
64368
|
export declare class DescribeLaunchTemplatesRequestTemplateTag extends $tea.Model {
|
|
64235
64369
|
/**
|
|
64236
64370
|
* @remarks
|
|
64237
|
-
* The
|
|
64371
|
+
* The key of tag N of the launch template. Valid values of N: 1 to 20.
|
|
64372
|
+
*
|
|
64373
|
+
* If you specify a single tag to query resources, up to 1,000 resources to which the tag is added are returned. If you specify multiple tags to query resources, up to 1,000 resources to which all specified tags are added are returned. To query more than 1,000 resources that have specified tags added, call the [ListTagResources](https://help.aliyun.com/document_detail/110425.html) operation.
|
|
64238
64374
|
*
|
|
64239
64375
|
* @example
|
|
64240
64376
|
* TestKey
|
|
@@ -64242,9 +64378,7 @@ export declare class DescribeLaunchTemplatesRequestTemplateTag extends $tea.Mode
|
|
|
64242
64378
|
key?: string;
|
|
64243
64379
|
/**
|
|
64244
64380
|
* @remarks
|
|
64245
|
-
* The
|
|
64246
|
-
*
|
|
64247
|
-
* Default value: 1.
|
|
64381
|
+
* The value of tag N of the launch template. Valid values of N: 1 to 20.
|
|
64248
64382
|
*
|
|
64249
64383
|
* @example
|
|
64250
64384
|
* TestValue
|
|
@@ -64262,13 +64396,16 @@ export declare class DescribeLaunchTemplatesRequestTemplateTag extends $tea.Mode
|
|
|
64262
64396
|
}
|
|
64263
64397
|
export declare class DescribeLaunchTemplatesResponseBodyLaunchTemplateSetsLaunchTemplateSetTagsTag extends $tea.Model {
|
|
64264
64398
|
/**
|
|
64399
|
+
* @remarks
|
|
64400
|
+
* The tag value of the launch template.
|
|
64401
|
+
*
|
|
64265
64402
|
* @example
|
|
64266
64403
|
* TestKey
|
|
64267
64404
|
*/
|
|
64268
64405
|
tagKey?: string;
|
|
64269
64406
|
/**
|
|
64270
64407
|
* @remarks
|
|
64271
|
-
* The
|
|
64408
|
+
* The tag key of the launch template.
|
|
64272
64409
|
*
|
|
64273
64410
|
* @example
|
|
64274
64411
|
* TestValue
|
|
@@ -64299,7 +64436,9 @@ export declare class DescribeLaunchTemplatesResponseBodyLaunchTemplateSetsLaunch
|
|
|
64299
64436
|
export declare class DescribeLaunchTemplatesResponseBodyLaunchTemplateSetsLaunchTemplateSet extends $tea.Model {
|
|
64300
64437
|
/**
|
|
64301
64438
|
* @remarks
|
|
64302
|
-
* The
|
|
64439
|
+
* The time when the launch template was created.
|
|
64440
|
+
*
|
|
64441
|
+
* The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
|
|
64303
64442
|
*
|
|
64304
64443
|
* @example
|
|
64305
64444
|
* 2018-05-14T14:18:00Z
|
|
@@ -64307,7 +64446,7 @@ export declare class DescribeLaunchTemplatesResponseBodyLaunchTemplateSetsLaunch
|
|
|
64307
64446
|
createTime?: string;
|
|
64308
64447
|
/**
|
|
64309
64448
|
* @remarks
|
|
64310
|
-
* The
|
|
64449
|
+
* The ID of the Alibaba Cloud account that created the launch template.
|
|
64311
64450
|
*
|
|
64312
64451
|
* @example
|
|
64313
64452
|
* 1234567890
|
|
@@ -64347,7 +64486,9 @@ export declare class DescribeLaunchTemplatesResponseBodyLaunchTemplateSetsLaunch
|
|
|
64347
64486
|
launchTemplateName?: string;
|
|
64348
64487
|
/**
|
|
64349
64488
|
* @remarks
|
|
64350
|
-
* The
|
|
64489
|
+
* The time when a version was added to or deleted from the launch template.
|
|
64490
|
+
*
|
|
64491
|
+
* The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.
|
|
64351
64492
|
*
|
|
64352
64493
|
* @example
|
|
64353
64494
|
* 2018-05-14T14:18:00Z
|
|
@@ -64363,7 +64504,9 @@ export declare class DescribeLaunchTemplatesResponseBodyLaunchTemplateSetsLaunch
|
|
|
64363
64504
|
resourceGroupId?: string;
|
|
64364
64505
|
/**
|
|
64365
64506
|
* @remarks
|
|
64366
|
-
* The
|
|
64507
|
+
* The tags of the launch template.
|
|
64508
|
+
*
|
|
64509
|
+
* > You can only call API operations to add tags to and query the tags of a launch template. You cannot add tags to or view the tags of a launch template in the ECS console.
|
|
64367
64510
|
*/
|
|
64368
64511
|
tags?: DescribeLaunchTemplatesResponseBodyLaunchTemplateSetsLaunchTemplateSetTags;
|
|
64369
64512
|
static names(): {
|
|
@@ -64511,7 +64654,7 @@ export declare class DescribeManagedInstancesResponseBodyInstances extends $tea.
|
|
|
64511
64654
|
* The public IP address of the managed instance.
|
|
64512
64655
|
*
|
|
64513
64656
|
* @example
|
|
64514
|
-
* 40.65
|
|
64657
|
+
* ``40.65.**.**``
|
|
64515
64658
|
*/
|
|
64516
64659
|
internetIp?: string;
|
|
64517
64660
|
/**
|
|
@@ -64519,7 +64662,7 @@ export declare class DescribeManagedInstancesResponseBodyInstances extends $tea.
|
|
|
64519
64662
|
* The internal IP address of the managed instance.
|
|
64520
64663
|
*
|
|
64521
64664
|
* @example
|
|
64522
|
-
* 10.0
|
|
64665
|
+
* ``10.0.**.**``
|
|
64523
64666
|
*/
|
|
64524
64667
|
intranetIp?: string;
|
|
64525
64668
|
/**
|
|
@@ -64693,7 +64836,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBodyAssociatedPubl
|
|
|
64693
64836
|
* The EIP.
|
|
64694
64837
|
*
|
|
64695
64838
|
* @example
|
|
64696
|
-
* 116.62
|
|
64839
|
+
* ``116.62.**.**``
|
|
64697
64840
|
*/
|
|
64698
64841
|
publicIpAddress?: string;
|
|
64699
64842
|
static names(): {
|
|
@@ -65033,7 +65176,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBodyPrivateIpSetsP
|
|
|
65033
65176
|
* The EIP.
|
|
65034
65177
|
*
|
|
65035
65178
|
* @example
|
|
65036
|
-
* 116.62
|
|
65179
|
+
* ``116.62.**.**``
|
|
65037
65180
|
*/
|
|
65038
65181
|
publicIpAddress?: string;
|
|
65039
65182
|
static names(): {
|
|
@@ -65068,7 +65211,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBodyPrivateIpSetsP
|
|
|
65068
65211
|
* The private IP address of the ENI.
|
|
65069
65212
|
*
|
|
65070
65213
|
* @example
|
|
65071
|
-
* 172.17
|
|
65214
|
+
* ``172.17.**.**``
|
|
65072
65215
|
*/
|
|
65073
65216
|
privateIpAddress?: string;
|
|
65074
65217
|
static names(): {
|
|
@@ -65298,7 +65441,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
|
|
|
65298
65441
|
* The EIP.
|
|
65299
65442
|
*
|
|
65300
65443
|
* @example
|
|
65301
|
-
* 116.62
|
|
65444
|
+
* ``116.62.**.**``
|
|
65302
65445
|
*/
|
|
65303
65446
|
publicIpAddress?: string;
|
|
65304
65447
|
static names(): {
|
|
@@ -65464,7 +65607,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
|
|
|
65464
65607
|
* The EIP.
|
|
65465
65608
|
*
|
|
65466
65609
|
* @example
|
|
65467
|
-
* 116.62
|
|
65610
|
+
* ``116.62.**.**``
|
|
65468
65611
|
*/
|
|
65469
65612
|
publicIpAddress?: string;
|
|
65470
65613
|
static names(): {
|
|
@@ -65507,7 +65650,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
|
|
|
65507
65650
|
* The private IP address of the ENI.
|
|
65508
65651
|
*
|
|
65509
65652
|
* @example
|
|
65510
|
-
* 172.17
|
|
65653
|
+
* ``172.17.**.**``
|
|
65511
65654
|
*/
|
|
65512
65655
|
privateIpAddress?: string;
|
|
65513
65656
|
static names(): {
|
|
@@ -65696,7 +65839,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
|
|
|
65696
65839
|
* The primary private IP address of the ENI.
|
|
65697
65840
|
*
|
|
65698
65841
|
* @example
|
|
65699
|
-
* 172.17
|
|
65842
|
+
* ``172.17.**.**``
|
|
65700
65843
|
*/
|
|
65701
65844
|
privateIpAddress?: string;
|
|
65702
65845
|
/**
|
|
@@ -65754,6 +65897,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
|
|
|
65754
65897
|
* true
|
|
65755
65898
|
*/
|
|
65756
65899
|
serviceManaged?: boolean;
|
|
65900
|
+
sourceDestCheck?: boolean;
|
|
65757
65901
|
/**
|
|
65758
65902
|
* @remarks
|
|
65759
65903
|
* The state of the ENI.
|
|
@@ -66733,7 +66877,7 @@ export declare class DescribeRegionsResponseBodyRegionsRegion extends $tea.Model
|
|
|
66733
66877
|
regionEndpoint?: string;
|
|
66734
66878
|
/**
|
|
66735
66879
|
* @remarks
|
|
66736
|
-
* The region
|
|
66880
|
+
* The ID of the region.
|
|
66737
66881
|
*
|
|
66738
66882
|
* @example
|
|
66739
66883
|
* cn-qingdao-et2-bo1
|
|
@@ -68289,6 +68433,7 @@ export declare class DescribeSecurityGroupsResponseBodySecurityGroupsSecurityGro
|
|
|
68289
68433
|
* 0
|
|
68290
68434
|
*/
|
|
68291
68435
|
ecsCount?: number;
|
|
68436
|
+
groupToGroupRuleCount?: number;
|
|
68292
68437
|
/**
|
|
68293
68438
|
* @remarks
|
|
68294
68439
|
* The ID of the resource group to which the security group belongs.
|
|
@@ -68297,6 +68442,7 @@ export declare class DescribeSecurityGroupsResponseBodySecurityGroupsSecurityGro
|
|
|
68297
68442
|
* rg-bp67acfmxazb4p****
|
|
68298
68443
|
*/
|
|
68299
68444
|
resourceGroupId?: string;
|
|
68445
|
+
ruleCount?: number;
|
|
68300
68446
|
/**
|
|
68301
68447
|
* @remarks
|
|
68302
68448
|
* The ID of the security group.
|
|
@@ -73158,6 +73304,30 @@ export declare class ModifyReservedInstancesResponseBodyReservedInstanceIdSets e
|
|
|
73158
73304
|
[key: string]: any;
|
|
73159
73305
|
});
|
|
73160
73306
|
}
|
|
73307
|
+
export declare class PurchaseElasticityAssuranceRequestPrivatePoolOptions extends $tea.Model {
|
|
73308
|
+
/**
|
|
73309
|
+
* @remarks
|
|
73310
|
+
* This parameter is required.
|
|
73311
|
+
*
|
|
73312
|
+
* @example
|
|
73313
|
+
* eap-bp67acfmxazb4****
|
|
73314
|
+
*/
|
|
73315
|
+
id?: string;
|
|
73316
|
+
/**
|
|
73317
|
+
* @example
|
|
73318
|
+
* Open
|
|
73319
|
+
*/
|
|
73320
|
+
matchCriteria?: string;
|
|
73321
|
+
static names(): {
|
|
73322
|
+
[key: string]: string;
|
|
73323
|
+
};
|
|
73324
|
+
static types(): {
|
|
73325
|
+
[key: string]: any;
|
|
73326
|
+
};
|
|
73327
|
+
constructor(map?: {
|
|
73328
|
+
[key: string]: any;
|
|
73329
|
+
});
|
|
73330
|
+
}
|
|
73161
73331
|
export declare class PurchaseReservedInstancesOfferingRequestTag extends $tea.Model {
|
|
73162
73332
|
/**
|
|
73163
73333
|
* @remarks
|
|
@@ -74931,7 +75101,7 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
|
|
|
74931
75101
|
* * The first IP address and last three IP addresses of each vSwitch CIDR block are reserved. You cannot specify the IP addresses. For example, if a vSwitch CIDR block is 192.168.1.0/24, the following IP addresses are reserved: 192.168.1.0, 192.168.1.253, 192.168.1.254, and 192.168.1.255.
|
|
74932
75102
|
*
|
|
74933
75103
|
* @example
|
|
74934
|
-
* 172.16
|
|
75104
|
+
* ``172.16.**.**``
|
|
74935
75105
|
*/
|
|
74936
75106
|
primaryIpAddress?: string;
|
|
74937
75107
|
/**
|
|
@@ -76612,7 +76782,7 @@ export default class Client extends OpenApi {
|
|
|
76612
76782
|
*/
|
|
76613
76783
|
createHpcCluster(request: CreateHpcClusterRequest): Promise<CreateHpcClusterResponse>;
|
|
76614
76784
|
/**
|
|
76615
|
-
* Creates a custom image. After you call this operation to create a custom image, you can call the RunInstances operation to create Elastic Compute Service (ECS) instances from the
|
|
76785
|
+
* Creates a custom image. After you call this operation to create a custom image, you can call the RunInstances operation to create Elastic Compute Service (ECS) instances from the custom image or call the ReplaceSystemDisk operation to replace system disks by using the custom image.
|
|
76616
76786
|
*
|
|
76617
76787
|
* @remarks
|
|
76618
76788
|
* ## [](#)Usage notes
|
|
@@ -76636,7 +76806,7 @@ export default class Client extends OpenApi {
|
|
|
76636
76806
|
*/
|
|
76637
76807
|
createImageWithOptions(request: CreateImageRequest, runtime: $Util.RuntimeOptions): Promise<CreateImageResponse>;
|
|
76638
76808
|
/**
|
|
76639
|
-
* Creates a custom image. After you call this operation to create a custom image, you can call the RunInstances operation to create Elastic Compute Service (ECS) instances from the
|
|
76809
|
+
* Creates a custom image. After you call this operation to create a custom image, you can call the RunInstances operation to create Elastic Compute Service (ECS) instances from the custom image or call the ReplaceSystemDisk operation to replace system disks by using the custom image.
|
|
76640
76810
|
*
|
|
76641
76811
|
* @remarks
|
|
76642
76812
|
* ## [](#)Usage notes
|
|
@@ -76848,13 +77018,12 @@ export default class Client extends OpenApi {
|
|
|
76848
77018
|
* Creates a launch template. When you call this operation, you can specify parameters, such as TemplateTag, LaunchTemplateName, and ImageId, in the request. A launch template eliminates the need to configure a large number of parameters every time you create an Elastic Compute Service (ECS) instance.
|
|
76849
77019
|
*
|
|
76850
77020
|
* @remarks
|
|
76851
|
-
*
|
|
76852
|
-
* Launch templates contain preset configurations used to create instances, such as the region, image ID, instance type, security group ID, and public bandwidth settings. If a specific parameter is not included in a launch template, you
|
|
76853
|
-
*
|
|
76854
|
-
*
|
|
76855
|
-
* *
|
|
76856
|
-
* *
|
|
76857
|
-
* * If you set a specific parameter in a launch template, you cannot filter out this parameter when you use the launch template to create instances ([RunInstances](https://help.aliyun.com/document_detail/63440.html)). For example, if you set the `HostName` parameter to LocalHost in a launch template and do not set the `HostName` parameter when you call the `RunInstances` operation to create instances from the launch template, the created instance still has a hostname of `LocalHost`. If you want to overwrite the `LocalHost` value of HostName provided by the launch template, you can set `HostName` to MyHost or another value when you call the `RunInstances` operation.
|
|
77021
|
+
* After you create a launch template by calling the CreateLaunchTemplate operation, a default version that has a version number of 1 is automatically generated for the launch template. You can call the `CreateLaunchTemplateVersion` operation to create additional versions for the launch template. Version numbers start from 1 and increment by 1. If you specify a launch template but do not specify a launch template version number when you call the [RunInstances](https://help.aliyun.com/document_detail/63440.html) operation to create instances, the default version of the launch template is used.
|
|
77022
|
+
* Launch templates contain preset configurations that are used to create instances, such as the region ID, image ID, instance type, security group ID, and public bandwidth settings. If a specific parameter is not included in a launch template, you need to manually specify the parameter when you use the launch template to create instances.
|
|
77023
|
+
* Take note of the following items:
|
|
77024
|
+
* * You can retain up to 30 launch templates in each region in your Alibaba Cloud account. Each launch template can have up to 30 versions.
|
|
77025
|
+
* * Most parameters in launch templates are optional. When you create a launch template, ECS does not verify the existence or validity of specified parameter values. The parameter values are verified only when you use the launch template to create instances.
|
|
77026
|
+
* * If you configured a specific parameter in a launch template, you cannot filter out the parameter when you call the [RunInstances](https://help.aliyun.com/document_detail/63440.html) operation to create instances from the launch template. For example, if you set `HostName` to LocalHost in a launch template but do not specify `HostName` when you call the `RunInstances` operation to create instances from the launch template, the hostname of the created instances is `LocalHost`. If you want to overwrite `LocalHost`, which is the value of HostName in the launch template, you can set `HostName` to MyHost or a different value when you call the `RunInstances` operation.
|
|
76858
77027
|
*
|
|
76859
77028
|
* @param request - CreateLaunchTemplateRequest
|
|
76860
77029
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -76865,20 +77034,19 @@ export default class Client extends OpenApi {
|
|
|
76865
77034
|
* Creates a launch template. When you call this operation, you can specify parameters, such as TemplateTag, LaunchTemplateName, and ImageId, in the request. A launch template eliminates the need to configure a large number of parameters every time you create an Elastic Compute Service (ECS) instance.
|
|
76866
77035
|
*
|
|
76867
77036
|
* @remarks
|
|
76868
|
-
*
|
|
76869
|
-
* Launch templates contain preset configurations used to create instances, such as the region, image ID, instance type, security group ID, and public bandwidth settings. If a specific parameter is not included in a launch template, you
|
|
76870
|
-
*
|
|
76871
|
-
*
|
|
76872
|
-
* *
|
|
76873
|
-
* *
|
|
76874
|
-
* * If you set a specific parameter in a launch template, you cannot filter out this parameter when you use the launch template to create instances ([RunInstances](https://help.aliyun.com/document_detail/63440.html)). For example, if you set the `HostName` parameter to LocalHost in a launch template and do not set the `HostName` parameter when you call the `RunInstances` operation to create instances from the launch template, the created instance still has a hostname of `LocalHost`. If you want to overwrite the `LocalHost` value of HostName provided by the launch template, you can set `HostName` to MyHost or another value when you call the `RunInstances` operation.
|
|
77037
|
+
* After you create a launch template by calling the CreateLaunchTemplate operation, a default version that has a version number of 1 is automatically generated for the launch template. You can call the `CreateLaunchTemplateVersion` operation to create additional versions for the launch template. Version numbers start from 1 and increment by 1. If you specify a launch template but do not specify a launch template version number when you call the [RunInstances](https://help.aliyun.com/document_detail/63440.html) operation to create instances, the default version of the launch template is used.
|
|
77038
|
+
* Launch templates contain preset configurations that are used to create instances, such as the region ID, image ID, instance type, security group ID, and public bandwidth settings. If a specific parameter is not included in a launch template, you need to manually specify the parameter when you use the launch template to create instances.
|
|
77039
|
+
* Take note of the following items:
|
|
77040
|
+
* * You can retain up to 30 launch templates in each region in your Alibaba Cloud account. Each launch template can have up to 30 versions.
|
|
77041
|
+
* * Most parameters in launch templates are optional. When you create a launch template, ECS does not verify the existence or validity of specified parameter values. The parameter values are verified only when you use the launch template to create instances.
|
|
77042
|
+
* * If you configured a specific parameter in a launch template, you cannot filter out the parameter when you call the [RunInstances](https://help.aliyun.com/document_detail/63440.html) operation to create instances from the launch template. For example, if you set `HostName` to LocalHost in a launch template but do not specify `HostName` when you call the `RunInstances` operation to create instances from the launch template, the hostname of the created instances is `LocalHost`. If you want to overwrite `LocalHost`, which is the value of HostName in the launch template, you can set `HostName` to MyHost or a different value when you call the `RunInstances` operation.
|
|
76875
77043
|
*
|
|
76876
77044
|
* @param request - CreateLaunchTemplateRequest
|
|
76877
77045
|
* @returns CreateLaunchTemplateResponse
|
|
76878
77046
|
*/
|
|
76879
77047
|
createLaunchTemplate(request: CreateLaunchTemplateRequest): Promise<CreateLaunchTemplateResponse>;
|
|
76880
77048
|
/**
|
|
76881
|
-
* Creates a version for a launch template. When you call this operation, you can specify parameters, such as LaunchTemplateId, VersionDescription, and Tag, in the request.
|
|
77049
|
+
* Creates a version for a launch template. You can use the created version to create Elastic Compute Service (ECS) instances, scaling groups, or auto provisioning groups. When you call this operation, you can specify parameters, such as LaunchTemplateId, VersionDescription, and Tag, in the request.
|
|
76882
77050
|
*
|
|
76883
77051
|
* @remarks
|
|
76884
77052
|
* ## [](#)Usage notes
|
|
@@ -76890,7 +77058,7 @@ export default class Client extends OpenApi {
|
|
|
76890
77058
|
*/
|
|
76891
77059
|
createLaunchTemplateVersionWithOptions(request: CreateLaunchTemplateVersionRequest, runtime: $Util.RuntimeOptions): Promise<CreateLaunchTemplateVersionResponse>;
|
|
76892
77060
|
/**
|
|
76893
|
-
* Creates a version for a launch template. When you call this operation, you can specify parameters, such as LaunchTemplateId, VersionDescription, and Tag, in the request.
|
|
77061
|
+
* Creates a version for a launch template. You can use the created version to create Elastic Compute Service (ECS) instances, scaling groups, or auto provisioning groups. When you call this operation, you can specify parameters, such as LaunchTemplateId, VersionDescription, and Tag, in the request.
|
|
76894
77062
|
*
|
|
76895
77063
|
* @remarks
|
|
76896
77064
|
* ## [](#)Usage notes
|
|
@@ -77660,7 +77828,7 @@ export default class Client extends OpenApi {
|
|
|
77660
77828
|
*/
|
|
77661
77829
|
deleteInstance(request: DeleteInstanceRequest): Promise<DeleteInstanceResponse>;
|
|
77662
77830
|
/**
|
|
77663
|
-
* Releases pay-as-you-go instances or expired subscription instances.
|
|
77831
|
+
* Releases one or more pay-as-you-go Elastic Compute Service (ECS) instances or expired subscription ECS instances.
|
|
77664
77832
|
*
|
|
77665
77833
|
* @remarks
|
|
77666
77834
|
* ## [](#)Usage notes
|
|
@@ -77679,7 +77847,7 @@ export default class Client extends OpenApi {
|
|
|
77679
77847
|
*/
|
|
77680
77848
|
deleteInstancesWithOptions(request: DeleteInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DeleteInstancesResponse>;
|
|
77681
77849
|
/**
|
|
77682
|
-
* Releases pay-as-you-go instances or expired subscription instances.
|
|
77850
|
+
* Releases one or more pay-as-you-go Elastic Compute Service (ECS) instances or expired subscription ECS instances.
|
|
77683
77851
|
*
|
|
77684
77852
|
* @remarks
|
|
77685
77853
|
* ## [](#)Usage notes
|
|
@@ -77724,6 +77892,11 @@ export default class Client extends OpenApi {
|
|
|
77724
77892
|
/**
|
|
77725
77893
|
* Deletes a launch template. You can use the LaunchTemplateId or LaunchTemplateName parameter to specify the launch template that you want to delete from the specified region.
|
|
77726
77894
|
*
|
|
77895
|
+
* @remarks
|
|
77896
|
+
* Take note of the following items:
|
|
77897
|
+
* * After you delete a launch template, Elastic Compute Service (ECS) instances created based on the launch template are not affected.
|
|
77898
|
+
* * After you delete a launch template, all versions of the launch template are deleted and cannot be restored. If you want to delete only a specific version of the launch template, call the [DeleteLaunchTemplateVersion](https://help.aliyun.com/document_detail/2679735.html) operation.
|
|
77899
|
+
*
|
|
77727
77900
|
* @param request - DeleteLaunchTemplateRequest
|
|
77728
77901
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
77729
77902
|
* @returns DeleteLaunchTemplateResponse
|
|
@@ -77732,12 +77905,23 @@ export default class Client extends OpenApi {
|
|
|
77732
77905
|
/**
|
|
77733
77906
|
* Deletes a launch template. You can use the LaunchTemplateId or LaunchTemplateName parameter to specify the launch template that you want to delete from the specified region.
|
|
77734
77907
|
*
|
|
77908
|
+
* @remarks
|
|
77909
|
+
* Take note of the following items:
|
|
77910
|
+
* * After you delete a launch template, Elastic Compute Service (ECS) instances created based on the launch template are not affected.
|
|
77911
|
+
* * After you delete a launch template, all versions of the launch template are deleted and cannot be restored. If you want to delete only a specific version of the launch template, call the [DeleteLaunchTemplateVersion](https://help.aliyun.com/document_detail/2679735.html) operation.
|
|
77912
|
+
*
|
|
77735
77913
|
* @param request - DeleteLaunchTemplateRequest
|
|
77736
77914
|
* @returns DeleteLaunchTemplateResponse
|
|
77737
77915
|
*/
|
|
77738
77916
|
deleteLaunchTemplate(request: DeleteLaunchTemplateRequest): Promise<DeleteLaunchTemplateResponse>;
|
|
77739
77917
|
/**
|
|
77740
|
-
* Deletes
|
|
77918
|
+
* Deletes versions of a launch template. When you call this operation, you can specify parameters, such as LaunchTemplateId and DeleteVersion, in the request.
|
|
77919
|
+
*
|
|
77920
|
+
* @remarks
|
|
77921
|
+
* Take note of the following items:
|
|
77922
|
+
* * You cannot delete the default version of a launch template by calling this operation. To delete the default version of a launch template, you must delete the launch template.
|
|
77923
|
+
* * If the version of a launch template that you want to delete is the default version, call the [ModifyLaunchTemplateDefaultVersion](https://help.aliyun.com/document_detail/2679734.html) operation or go to the **Launch Templates** page in the Elastic Compute Service (ECS) console to change the default version to a different version, and then delete the original default version.
|
|
77924
|
+
* * After you delete a version of a launch template, the ECS instances that were created based on the version are not affected.
|
|
77741
77925
|
*
|
|
77742
77926
|
* @param request - DeleteLaunchTemplateVersionRequest
|
|
77743
77927
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -77745,7 +77929,13 @@ export default class Client extends OpenApi {
|
|
|
77745
77929
|
*/
|
|
77746
77930
|
deleteLaunchTemplateVersionWithOptions(request: DeleteLaunchTemplateVersionRequest, runtime: $Util.RuntimeOptions): Promise<DeleteLaunchTemplateVersionResponse>;
|
|
77747
77931
|
/**
|
|
77748
|
-
* Deletes
|
|
77932
|
+
* Deletes versions of a launch template. When you call this operation, you can specify parameters, such as LaunchTemplateId and DeleteVersion, in the request.
|
|
77933
|
+
*
|
|
77934
|
+
* @remarks
|
|
77935
|
+
* Take note of the following items:
|
|
77936
|
+
* * You cannot delete the default version of a launch template by calling this operation. To delete the default version of a launch template, you must delete the launch template.
|
|
77937
|
+
* * If the version of a launch template that you want to delete is the default version, call the [ModifyLaunchTemplateDefaultVersion](https://help.aliyun.com/document_detail/2679734.html) operation or go to the **Launch Templates** page in the Elastic Compute Service (ECS) console to change the default version to a different version, and then delete the original default version.
|
|
77938
|
+
* * After you delete a version of a launch template, the ECS instances that were created based on the version are not affected.
|
|
77749
77939
|
*
|
|
77750
77940
|
* @param request - DeleteLaunchTemplateVersionRequest
|
|
77751
77941
|
* @returns DeleteLaunchTemplateVersionResponse
|
|
@@ -78591,7 +78781,7 @@ export default class Client extends OpenApi {
|
|
|
78591
78781
|
*/
|
|
78592
78782
|
describeDiagnosticReports(request: DescribeDiagnosticReportsRequest): Promise<DescribeDiagnosticReportsResponse>;
|
|
78593
78783
|
/**
|
|
78594
|
-
*
|
|
78784
|
+
* Queries the Key Management Service (KMS) key used for account-level default encryption of Elastic Block Storage (EBS) resources in a region.
|
|
78595
78785
|
*
|
|
78596
78786
|
* @param request - DescribeDiskDefaultKMSKeyIdRequest
|
|
78597
78787
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -78599,14 +78789,14 @@ export default class Client extends OpenApi {
|
|
|
78599
78789
|
*/
|
|
78600
78790
|
describeDiskDefaultKMSKeyIdWithOptions(request: DescribeDiskDefaultKMSKeyIdRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiskDefaultKMSKeyIdResponse>;
|
|
78601
78791
|
/**
|
|
78602
|
-
*
|
|
78792
|
+
* Queries the Key Management Service (KMS) key used for account-level default encryption of Elastic Block Storage (EBS) resources in a region.
|
|
78603
78793
|
*
|
|
78604
78794
|
* @param request - DescribeDiskDefaultKMSKeyIdRequest
|
|
78605
78795
|
* @returns DescribeDiskDefaultKMSKeyIdResponse
|
|
78606
78796
|
*/
|
|
78607
78797
|
describeDiskDefaultKMSKeyId(request: DescribeDiskDefaultKMSKeyIdRequest): Promise<DescribeDiskDefaultKMSKeyIdResponse>;
|
|
78608
78798
|
/**
|
|
78609
|
-
*
|
|
78799
|
+
* Queries whether account-level default encryption of Elastic Block Storage (EBS) resources is enabled in a region.
|
|
78610
78800
|
*
|
|
78611
78801
|
* @param request - DescribeDiskEncryptionByDefaultStatusRequest
|
|
78612
78802
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -78614,7 +78804,7 @@ export default class Client extends OpenApi {
|
|
|
78614
78804
|
*/
|
|
78615
78805
|
describeDiskEncryptionByDefaultStatusWithOptions(request: DescribeDiskEncryptionByDefaultStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiskEncryptionByDefaultStatusResponse>;
|
|
78616
78806
|
/**
|
|
78617
|
-
*
|
|
78807
|
+
* Queries whether account-level default encryption of Elastic Block Storage (EBS) resources is enabled in a region.
|
|
78618
78808
|
*
|
|
78619
78809
|
* @param request - DescribeDiskEncryptionByDefaultStatusRequest
|
|
78620
78810
|
* @returns DescribeDiskEncryptionByDefaultStatusResponse
|
|
@@ -79189,7 +79379,7 @@ export default class Client extends OpenApi {
|
|
|
79189
79379
|
*/
|
|
79190
79380
|
describeInstanceRamRole(request: DescribeInstanceRamRoleRequest): Promise<DescribeInstanceRamRoleResponse>;
|
|
79191
79381
|
/**
|
|
79192
|
-
* Queries the status
|
|
79382
|
+
* Queries the status of one or more Elastic Compute Service (ECS) instances.
|
|
79193
79383
|
*
|
|
79194
79384
|
* @remarks
|
|
79195
79385
|
* For information about the lifecycle states of an ECS instance, see [Instance states](https://help.aliyun.com/document_detail/25687.html).
|
|
@@ -79201,7 +79391,7 @@ export default class Client extends OpenApi {
|
|
|
79201
79391
|
*/
|
|
79202
79392
|
describeInstanceStatusWithOptions(request: DescribeInstanceStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceStatusResponse>;
|
|
79203
79393
|
/**
|
|
79204
|
-
* Queries the status
|
|
79394
|
+
* Queries the status of one or more Elastic Compute Service (ECS) instances.
|
|
79205
79395
|
*
|
|
79206
79396
|
* @remarks
|
|
79207
79397
|
* For information about the lifecycle states of an ECS instance, see [Instance states](https://help.aliyun.com/document_detail/25687.html).
|
|
@@ -79510,7 +79700,7 @@ export default class Client extends OpenApi {
|
|
|
79510
79700
|
*/
|
|
79511
79701
|
describeLaunchTemplateVersions(request: DescribeLaunchTemplateVersionsRequest): Promise<DescribeLaunchTemplateVersionsResponse>;
|
|
79512
79702
|
/**
|
|
79513
|
-
* Queries the information of one or more
|
|
79703
|
+
* Queries the information of one or more launch templates, such as the total number of launch templates, the creation time of each launch template, and the latest version number of each launch template. When you can this operation, you can specify parameters, such as TemplateTag, TemplateResourceGroupId, and LaunchTemplateId, in the request.
|
|
79514
79704
|
*
|
|
79515
79705
|
* @param request - DescribeLaunchTemplatesRequest
|
|
79516
79706
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -79518,7 +79708,7 @@ export default class Client extends OpenApi {
|
|
|
79518
79708
|
*/
|
|
79519
79709
|
describeLaunchTemplatesWithOptions(request: DescribeLaunchTemplatesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLaunchTemplatesResponse>;
|
|
79520
79710
|
/**
|
|
79521
|
-
* Queries the information of one or more
|
|
79711
|
+
* Queries the information of one or more launch templates, such as the total number of launch templates, the creation time of each launch template, and the latest version number of each launch template. When you can this operation, you can specify parameters, such as TemplateTag, TemplateResourceGroupId, and LaunchTemplateId, in the request.
|
|
79522
79712
|
*
|
|
79523
79713
|
* @param request - DescribeLaunchTemplatesRequest
|
|
79524
79714
|
* @returns DescribeLaunchTemplatesResponse
|
|
@@ -79877,7 +80067,7 @@ export default class Client extends OpenApi {
|
|
|
79877
80067
|
*/
|
|
79878
80068
|
describeResourceByTags(request: DescribeResourceByTagsRequest): Promise<DescribeResourceByTagsResponse>;
|
|
79879
80069
|
/**
|
|
79880
|
-
* Queries available
|
|
80070
|
+
* Queries available instance types or system disk categories in a specific zone before you change the instance type or system disk category of an Elastic Compute Service (ECS) instance.
|
|
79881
80071
|
*
|
|
79882
80072
|
* @remarks
|
|
79883
80073
|
* ## Debugging
|
|
@@ -79889,7 +80079,7 @@ export default class Client extends OpenApi {
|
|
|
79889
80079
|
*/
|
|
79890
80080
|
describeResourcesModificationWithOptions(request: DescribeResourcesModificationRequest, runtime: $Util.RuntimeOptions): Promise<DescribeResourcesModificationResponse>;
|
|
79891
80081
|
/**
|
|
79892
|
-
* Queries available
|
|
80082
|
+
* Queries available instance types or system disk categories in a specific zone before you change the instance type or system disk category of an Elastic Compute Service (ECS) instance.
|
|
79893
80083
|
*
|
|
79894
80084
|
* @remarks
|
|
79895
80085
|
* ## Debugging
|
|
@@ -80667,7 +80857,10 @@ export default class Client extends OpenApi {
|
|
|
80667
80857
|
*/
|
|
80668
80858
|
disableActivation(request: DisableActivationRequest): Promise<DisableActivationResponse>;
|
|
80669
80859
|
/**
|
|
80670
|
-
*
|
|
80860
|
+
* Disables account-level default encryption of Elastic Block Storage (EBS) resources in a region. After you disable account-level default encryption of EBS resources in a region, the encryption status of existing disks in the region does not change. When you create a disk, you can still choose to encrypt the disk.
|
|
80861
|
+
*
|
|
80862
|
+
* @remarks
|
|
80863
|
+
* You can use only an Alibaba Cloud account to call this operation.
|
|
80671
80864
|
*
|
|
80672
80865
|
* @param request - DisableDiskEncryptionByDefaultRequest
|
|
80673
80866
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -80675,7 +80868,10 @@ export default class Client extends OpenApi {
|
|
|
80675
80868
|
*/
|
|
80676
80869
|
disableDiskEncryptionByDefaultWithOptions(request: DisableDiskEncryptionByDefaultRequest, runtime: $Util.RuntimeOptions): Promise<DisableDiskEncryptionByDefaultResponse>;
|
|
80677
80870
|
/**
|
|
80678
|
-
*
|
|
80871
|
+
* Disables account-level default encryption of Elastic Block Storage (EBS) resources in a region. After you disable account-level default encryption of EBS resources in a region, the encryption status of existing disks in the region does not change. When you create a disk, you can still choose to encrypt the disk.
|
|
80872
|
+
*
|
|
80873
|
+
* @remarks
|
|
80874
|
+
* You can use only an Alibaba Cloud account to call this operation.
|
|
80679
80875
|
*
|
|
80680
80876
|
* @param request - DisableDiskEncryptionByDefaultRequest
|
|
80681
80877
|
* @returns DisableDiskEncryptionByDefaultResponse
|
|
@@ -80727,7 +80923,12 @@ export default class Client extends OpenApi {
|
|
|
80727
80923
|
*/
|
|
80728
80924
|
eipNotifyPaid(request: EipNotifyPaidRequest): Promise<EipNotifyPaidResponse>;
|
|
80729
80925
|
/**
|
|
80730
|
-
*
|
|
80926
|
+
* Enables account-level default encryption of Elastic Block Storage (EBS) resources in a region. After you enable account-level default encryption of EBS resources in a region, new pay-as-you-go and subscription cloud disks in the region must be encrypted. You can use the default Key Management Service (KMS) key ID for account-level default encryption of EBS resources or specify other KMS key IDs to encrypt the cloud disks. The first time you enable account-level default encryption of EBS resources in a region, the service key in the region is automatically used to encrypt EBS resources. You can call the ModifyDiskDefaultKMSKeyId or ResetDiskDefaultKMSKeyId operation to change the KMS key ID used for account-level default encryption of EBS resources.
|
|
80927
|
+
*
|
|
80928
|
+
* @remarks
|
|
80929
|
+
* You can use only an Alibaba Cloud account to call the EnableDiskEncryptionByDefault operation.
|
|
80930
|
+
* * Before you call the EnableDiskEncryptionByDefault operation, you must activate KMS.
|
|
80931
|
+
* * After you enable the account-level default encryption feature of EBS resources, you can purchase only encrypted cloud disks. For more information, see the [Limits](https://help.aliyun.com/zh/ecs/user-guide/encryption-overview?#59e20ff07fko1) section of the "Encrypt cloud disks" topic.
|
|
80731
80932
|
*
|
|
80732
80933
|
* @param request - EnableDiskEncryptionByDefaultRequest
|
|
80733
80934
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -80735,7 +80936,12 @@ export default class Client extends OpenApi {
|
|
|
80735
80936
|
*/
|
|
80736
80937
|
enableDiskEncryptionByDefaultWithOptions(request: EnableDiskEncryptionByDefaultRequest, runtime: $Util.RuntimeOptions): Promise<EnableDiskEncryptionByDefaultResponse>;
|
|
80737
80938
|
/**
|
|
80738
|
-
*
|
|
80939
|
+
* Enables account-level default encryption of Elastic Block Storage (EBS) resources in a region. After you enable account-level default encryption of EBS resources in a region, new pay-as-you-go and subscription cloud disks in the region must be encrypted. You can use the default Key Management Service (KMS) key ID for account-level default encryption of EBS resources or specify other KMS key IDs to encrypt the cloud disks. The first time you enable account-level default encryption of EBS resources in a region, the service key in the region is automatically used to encrypt EBS resources. You can call the ModifyDiskDefaultKMSKeyId or ResetDiskDefaultKMSKeyId operation to change the KMS key ID used for account-level default encryption of EBS resources.
|
|
80940
|
+
*
|
|
80941
|
+
* @remarks
|
|
80942
|
+
* You can use only an Alibaba Cloud account to call the EnableDiskEncryptionByDefault operation.
|
|
80943
|
+
* * Before you call the EnableDiskEncryptionByDefault operation, you must activate KMS.
|
|
80944
|
+
* * After you enable the account-level default encryption feature of EBS resources, you can purchase only encrypted cloud disks. For more information, see the [Limits](https://help.aliyun.com/zh/ecs/user-guide/encryption-overview?#59e20ff07fko1) section of the "Encrypt cloud disks" topic.
|
|
80739
80945
|
*
|
|
80740
80946
|
* @param request - EnableDiskEncryptionByDefaultRequest
|
|
80741
80947
|
* @returns EnableDiskEncryptionByDefaultResponse
|
|
@@ -81476,7 +81682,7 @@ export default class Client extends OpenApi {
|
|
|
81476
81682
|
*/
|
|
81477
81683
|
modifyBandwidthPackageSpec(request: ModifyBandwidthPackageSpecRequest): Promise<ModifyBandwidthPackageSpecResponse>;
|
|
81478
81684
|
/**
|
|
81479
|
-
* Modifies the information
|
|
81685
|
+
* Modifies the information of a capacity reservation, including the name, description, release mode, and the total number of Elastic Compute Service (ECS) instances for which capacity is reserved.
|
|
81480
81686
|
*
|
|
81481
81687
|
* @param request - ModifyCapacityReservationRequest
|
|
81482
81688
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -81484,7 +81690,7 @@ export default class Client extends OpenApi {
|
|
|
81484
81690
|
*/
|
|
81485
81691
|
modifyCapacityReservationWithOptions(request: ModifyCapacityReservationRequest, runtime: $Util.RuntimeOptions): Promise<ModifyCapacityReservationResponse>;
|
|
81486
81692
|
/**
|
|
81487
|
-
* Modifies the information
|
|
81693
|
+
* Modifies the information of a capacity reservation, including the name, description, release mode, and the total number of Elastic Compute Service (ECS) instances for which capacity is reserved.
|
|
81488
81694
|
*
|
|
81489
81695
|
* @param request - ModifyCapacityReservationRequest
|
|
81490
81696
|
* @returns ModifyCapacityReservationResponse
|
|
@@ -81745,7 +81951,12 @@ export default class Client extends OpenApi {
|
|
|
81745
81951
|
*/
|
|
81746
81952
|
modifyDiskChargeType(request: ModifyDiskChargeTypeRequest): Promise<ModifyDiskChargeTypeResponse>;
|
|
81747
81953
|
/**
|
|
81748
|
-
*
|
|
81954
|
+
* Changes the Key Management Service (KMS) key used for account-level default encryption in a region.
|
|
81955
|
+
*
|
|
81956
|
+
* @remarks
|
|
81957
|
+
* Only Alibaba Cloud accounts can call this operation.
|
|
81958
|
+
* * Before you can call this operation in a region, you must enable account-level default encryption of Elastic Block Storage (EBS) resources in the region.
|
|
81959
|
+
* * The first time you use a custom master key (CMK), you must use the AliyunECSDiskEncryptDefaultRole role to grant Elastic Compute Service (ECS) access to KMS resources. For more information, see [Grant access to KMS keys through RAM roles](https://help.aliyun.com/zh/ecs/access-ecs-encrypted-resources-through-the-ram-role?#b82bf8fbd42t8).
|
|
81749
81960
|
*
|
|
81750
81961
|
* @param request - ModifyDiskDefaultKMSKeyIdRequest
|
|
81751
81962
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -81753,7 +81964,12 @@ export default class Client extends OpenApi {
|
|
|
81753
81964
|
*/
|
|
81754
81965
|
modifyDiskDefaultKMSKeyIdWithOptions(request: ModifyDiskDefaultKMSKeyIdRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDiskDefaultKMSKeyIdResponse>;
|
|
81755
81966
|
/**
|
|
81756
|
-
*
|
|
81967
|
+
* Changes the Key Management Service (KMS) key used for account-level default encryption in a region.
|
|
81968
|
+
*
|
|
81969
|
+
* @remarks
|
|
81970
|
+
* Only Alibaba Cloud accounts can call this operation.
|
|
81971
|
+
* * Before you can call this operation in a region, you must enable account-level default encryption of Elastic Block Storage (EBS) resources in the region.
|
|
81972
|
+
* * The first time you use a custom master key (CMK), you must use the AliyunECSDiskEncryptDefaultRole role to grant Elastic Compute Service (ECS) access to KMS resources. For more information, see [Grant access to KMS keys through RAM roles](https://help.aliyun.com/zh/ecs/access-ecs-encrypted-resources-through-the-ram-role?#b82bf8fbd42t8).
|
|
81757
81973
|
*
|
|
81758
81974
|
* @param request - ModifyDiskDefaultKMSKeyIdRequest
|
|
81759
81975
|
* @returns ModifyDiskDefaultKMSKeyIdResponse
|
|
@@ -81915,7 +82131,7 @@ export default class Client extends OpenApi {
|
|
|
81915
82131
|
*/
|
|
81916
82132
|
modifyHpcClusterAttribute(request: ModifyHpcClusterAttributeRequest): Promise<ModifyHpcClusterAttributeResponse>;
|
|
81917
82133
|
/**
|
|
81918
|
-
* Modifies the name,
|
|
82134
|
+
* Modifies the attributes of a custom image, such as the image family, name, boot mode, and status and whether the image supports the Non-Volatile Memory Express (NVMe) protocol. When you call this operation, you can specify parameters, such as ImageId and ImageFamily, in the request.
|
|
81919
82135
|
*
|
|
81920
82136
|
* @param request - ModifyImageAttributeRequest
|
|
81921
82137
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -81923,7 +82139,7 @@ export default class Client extends OpenApi {
|
|
|
81923
82139
|
*/
|
|
81924
82140
|
modifyImageAttributeWithOptions(request: ModifyImageAttributeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyImageAttributeResponse>;
|
|
81925
82141
|
/**
|
|
81926
|
-
* Modifies the name,
|
|
82142
|
+
* Modifies the attributes of a custom image, such as the image family, name, boot mode, and status and whether the image supports the Non-Volatile Memory Express (NVMe) protocol. When you call this operation, you can specify parameters, such as ImageId and ImageFamily, in the request.
|
|
81927
82143
|
*
|
|
81928
82144
|
* @param request - ModifyImageAttributeRequest
|
|
81929
82145
|
* @returns ModifyImageAttributeResponse
|
|
@@ -82467,7 +82683,7 @@ export default class Client extends OpenApi {
|
|
|
82467
82683
|
*/
|
|
82468
82684
|
modifyInvocationAttribute(request: ModifyInvocationAttributeRequest): Promise<ModifyInvocationAttributeResponse>;
|
|
82469
82685
|
/**
|
|
82470
|
-
* Changes the default version of a launch template. If you do not specify a version
|
|
82686
|
+
* Changes the default version of a launch template. When you call this operation, you can specify DefaultVersionNumber in the request. If you do not specify a version when you create Elastic Compute Service (ECS) instances based on a launch template, the default version of the launch template is used.
|
|
82471
82687
|
*
|
|
82472
82688
|
* @remarks
|
|
82473
82689
|
* ## Debugging
|
|
@@ -82479,7 +82695,7 @@ export default class Client extends OpenApi {
|
|
|
82479
82695
|
*/
|
|
82480
82696
|
modifyLaunchTemplateDefaultVersionWithOptions(request: ModifyLaunchTemplateDefaultVersionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyLaunchTemplateDefaultVersionResponse>;
|
|
82481
82697
|
/**
|
|
82482
|
-
* Changes the default version of a launch template. If you do not specify a version
|
|
82698
|
+
* Changes the default version of a launch template. When you call this operation, you can specify DefaultVersionNumber in the request. If you do not specify a version when you create Elastic Compute Service (ECS) instances based on a launch template, the default version of the launch template is used.
|
|
82483
82699
|
*
|
|
82484
82700
|
* @remarks
|
|
82485
82701
|
* ## Debugging
|
|
@@ -82942,6 +83158,21 @@ export default class Client extends OpenApi {
|
|
|
82942
83158
|
* @returns ModifyVpcAttributeResponse
|
|
82943
83159
|
*/
|
|
82944
83160
|
modifyVpcAttribute(request: ModifyVpcAttributeRequest): Promise<ModifyVpcAttributeResponse>;
|
|
83161
|
+
/**
|
|
83162
|
+
* 购买一个准备完毕的弹性保障包
|
|
83163
|
+
*
|
|
83164
|
+
* @param request - PurchaseElasticityAssuranceRequest
|
|
83165
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
83166
|
+
* @returns PurchaseElasticityAssuranceResponse
|
|
83167
|
+
*/
|
|
83168
|
+
purchaseElasticityAssuranceWithOptions(request: PurchaseElasticityAssuranceRequest, runtime: $Util.RuntimeOptions): Promise<PurchaseElasticityAssuranceResponse>;
|
|
83169
|
+
/**
|
|
83170
|
+
* 购买一个准备完毕的弹性保障包
|
|
83171
|
+
*
|
|
83172
|
+
* @param request - PurchaseElasticityAssuranceRequest
|
|
83173
|
+
* @returns PurchaseElasticityAssuranceResponse
|
|
83174
|
+
*/
|
|
83175
|
+
purchaseElasticityAssurance(request: PurchaseElasticityAssuranceRequest): Promise<PurchaseElasticityAssuranceResponse>;
|
|
82945
83176
|
/**
|
|
82946
83177
|
* Purchases a reserved instance. When you call this operation, you can specify parameters, such as InstanceType and Scope, in the request. Reserved instances can be applied to automatically offset fees for pay-as-you-go Elastic Compute Service (ECS) instances.
|
|
82947
83178
|
*
|
|
@@ -83489,7 +83720,11 @@ export default class Client extends OpenApi {
|
|
|
83489
83720
|
*/
|
|
83490
83721
|
resetDisk(request: ResetDiskRequest): Promise<ResetDiskResponse>;
|
|
83491
83722
|
/**
|
|
83492
|
-
*
|
|
83723
|
+
* Resets the Key Management Service (KMS) key used for account-level default encryption in a region to the service key.
|
|
83724
|
+
*
|
|
83725
|
+
* @remarks
|
|
83726
|
+
* Only Alibaba Cloud accounts can call this operation.
|
|
83727
|
+
* * Before you can call this operation in a region, you must enable account-level default encryption of Elastic Block Storage (EBS) resources in the region.
|
|
83493
83728
|
*
|
|
83494
83729
|
* @param request - ResetDiskDefaultKMSKeyIdRequest
|
|
83495
83730
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -83497,7 +83732,11 @@ export default class Client extends OpenApi {
|
|
|
83497
83732
|
*/
|
|
83498
83733
|
resetDiskDefaultKMSKeyIdWithOptions(request: ResetDiskDefaultKMSKeyIdRequest, runtime: $Util.RuntimeOptions): Promise<ResetDiskDefaultKMSKeyIdResponse>;
|
|
83499
83734
|
/**
|
|
83500
|
-
*
|
|
83735
|
+
* Resets the Key Management Service (KMS) key used for account-level default encryption in a region to the service key.
|
|
83736
|
+
*
|
|
83737
|
+
* @remarks
|
|
83738
|
+
* Only Alibaba Cloud accounts can call this operation.
|
|
83739
|
+
* * Before you can call this operation in a region, you must enable account-level default encryption of Elastic Block Storage (EBS) resources in the region.
|
|
83501
83740
|
*
|
|
83502
83741
|
* @param request - ResetDiskDefaultKMSKeyIdRequest
|
|
83503
83742
|
* @returns ResetDiskDefaultKMSKeyIdResponse
|