@alicloud/ecs20140526 4.2.0 → 4.3.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 +762 -201
- package/dist/client.js +681 -68
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1170 -245
package/dist/client.d.ts
CHANGED
|
@@ -4410,7 +4410,7 @@ export declare class CreateDeploymentSetRequest extends $tea.Model {
|
|
|
4410
4410
|
clientToken?: string;
|
|
4411
4411
|
/**
|
|
4412
4412
|
* @remarks
|
|
4413
|
-
* The name of the deployment set. The name must be 2 to 128 characters in length
|
|
4413
|
+
* The name of the deployment set. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with `http://` or `https://`. The name can contain digits, letters, colons (:), underscores (_), and hyphens (-).
|
|
4414
4414
|
*
|
|
4415
4415
|
* @example
|
|
4416
4416
|
* testDeploymentSetName
|
|
@@ -4935,12 +4935,12 @@ export declare class CreateDiskRequest extends $tea.Model {
|
|
|
4935
4935
|
*
|
|
4936
4936
|
* * Valid values when DiskCategory is set to cloud_essd: vary based on the `PerformanceLevel` value.
|
|
4937
4937
|
*
|
|
4938
|
-
* * Valid values when PerformanceLevel is set to PL0: 1 to
|
|
4939
|
-
* * Valid values when PerformanceLevel is set to PL1: 20 to
|
|
4940
|
-
* * Valid values when PerformanceLevel is set to PL2: 461 to
|
|
4941
|
-
* * Valid values when PerformanceLevel is set to PL3: 1261 to
|
|
4938
|
+
* * Valid values when PerformanceLevel is set to PL0: 1 to 65536.
|
|
4939
|
+
* * Valid values when PerformanceLevel is set to PL1: 20 to 65536.
|
|
4940
|
+
* * Valid values when PerformanceLevel is set to PL2: 461 to 65536.
|
|
4941
|
+
* * Valid values when PerformanceLevel is set to PL3: 1261 to 65536.
|
|
4942
4942
|
*
|
|
4943
|
-
* * Valid values when DiskCategory is set to cloud_auto: 1 to
|
|
4943
|
+
* * Valid values when DiskCategory is set to cloud_auto: 1 to 65536.
|
|
4944
4944
|
*
|
|
4945
4945
|
* * Valid values when DiskCategory is set to cloud_essd_entry: 10 to 32768.
|
|
4946
4946
|
*
|
|
@@ -4950,7 +4950,7 @@ export declare class CreateDiskRequest extends $tea.Model {
|
|
|
4950
4950
|
*
|
|
4951
4951
|
* If `SnapshotId` is specified, the following limits apply to `SnapshotId` and `Size`:
|
|
4952
4952
|
*
|
|
4953
|
-
* * If the size of the snapshot specified by `SnapshotId` is larger than the value of `Size`, the size of the created disk is equal to the
|
|
4953
|
+
* * If the size of the snapshot specified by `SnapshotId` is larger than the value of `Size`, the size of the created disk is equal to the size of the snapshot.
|
|
4954
4954
|
* * If the size of the snapshot specified by `SnapshotId` is smaller than the value of `Size`, the size of the created disk is equal to the value of `Size`.
|
|
4955
4955
|
*
|
|
4956
4956
|
* @example
|
|
@@ -6555,7 +6555,15 @@ export declare class CreateInstanceRequest extends $tea.Model {
|
|
|
6555
6555
|
spotDuration?: number;
|
|
6556
6556
|
/**
|
|
6557
6557
|
* @remarks
|
|
6558
|
-
* The interruption mode of the preemptible instance.
|
|
6558
|
+
* The interruption mode of the preemptible instance. Valid values:
|
|
6559
|
+
*
|
|
6560
|
+
* * Terminate: The instance is released.
|
|
6561
|
+
*
|
|
6562
|
+
* * Stop: The instance is stopped in economical mode.
|
|
6563
|
+
*
|
|
6564
|
+
* For information about the economical mode, see [Economical mode](https://help.aliyun.com/document_detail/63353.html).
|
|
6565
|
+
*
|
|
6566
|
+
* Default value: Terminate.
|
|
6559
6567
|
*
|
|
6560
6568
|
* @example
|
|
6561
6569
|
* Terminate
|
|
@@ -6599,7 +6607,7 @@ export declare class CreateInstanceRequest extends $tea.Model {
|
|
|
6599
6607
|
storageSetPartitionNumber?: number;
|
|
6600
6608
|
/**
|
|
6601
6609
|
* @remarks
|
|
6602
|
-
* The tags.
|
|
6610
|
+
* The tags to add to the instance.
|
|
6603
6611
|
*/
|
|
6604
6612
|
tag?: CreateInstanceRequestTag[];
|
|
6605
6613
|
/**
|
|
@@ -10322,7 +10330,7 @@ export declare class DeleteDemandResponse extends $tea.Model {
|
|
|
10322
10330
|
export declare class DeleteDeploymentSetRequest extends $tea.Model {
|
|
10323
10331
|
/**
|
|
10324
10332
|
* @remarks
|
|
10325
|
-
* The ID of the deployment set
|
|
10333
|
+
* The ID of the deployment set that you want to delete.
|
|
10326
10334
|
*
|
|
10327
10335
|
* This parameter is required.
|
|
10328
10336
|
*
|
|
@@ -10357,7 +10365,7 @@ export declare class DeleteDeploymentSetRequest extends $tea.Model {
|
|
|
10357
10365
|
export declare class DeleteDeploymentSetResponseBody extends $tea.Model {
|
|
10358
10366
|
/**
|
|
10359
10367
|
* @remarks
|
|
10360
|
-
* The request
|
|
10368
|
+
* The ID of the request.
|
|
10361
10369
|
*
|
|
10362
10370
|
* @example
|
|
10363
10371
|
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
@@ -15539,7 +15547,7 @@ export declare class DescribeDeploymentSetSupportedInstanceTypeFamilyRequest ext
|
|
|
15539
15547
|
export declare class DescribeDeploymentSetSupportedInstanceTypeFamilyResponseBody extends $tea.Model {
|
|
15540
15548
|
/**
|
|
15541
15549
|
* @remarks
|
|
15542
|
-
* The instance families that support deployment
|
|
15550
|
+
* The instance families that support the deployment strategy.
|
|
15543
15551
|
*
|
|
15544
15552
|
* @example
|
|
15545
15553
|
* ecs.i2g,ecs.i1,ecs.i2ne,ecs.i2gne
|
|
@@ -15582,7 +15590,7 @@ export declare class DescribeDeploymentSetSupportedInstanceTypeFamilyResponse ex
|
|
|
15582
15590
|
export declare class DescribeDeploymentSetsRequest extends $tea.Model {
|
|
15583
15591
|
/**
|
|
15584
15592
|
* @remarks
|
|
15585
|
-
* The IDs of deployment sets. The value can be a JSON array that consists of
|
|
15593
|
+
* The IDs of deployment sets. The value can be a JSON array that consists of deployment set IDs in the format of `["ds-xxxxxxxxx", "ds-yyyyyyyyy", ... "ds-zzzzzzzzz"]`. You can specify up to 100 deployment set IDs in each request. Separate the deployment set IDs with commas (,).
|
|
15586
15594
|
*
|
|
15587
15595
|
* @example
|
|
15588
15596
|
* ["ds-bp67acfmxazb4ph****", "ds-bp67acfmxazb4pi****", … "ds-bp67acfmxazb4pj****"]
|
|
@@ -15590,7 +15598,7 @@ export declare class DescribeDeploymentSetsRequest extends $tea.Model {
|
|
|
15590
15598
|
deploymentSetIds?: string;
|
|
15591
15599
|
/**
|
|
15592
15600
|
* @remarks
|
|
15593
|
-
* The name of the deployment set. The name must be 2 to 128 characters in length.
|
|
15601
|
+
* The name of the deployment set. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with `http://` or `https://`. The name can contain digits, letters, colons (:), underscores (_), and hyphens (-).
|
|
15594
15602
|
*
|
|
15595
15603
|
* @example
|
|
15596
15604
|
* testDeploymentSetName
|
|
@@ -15598,7 +15606,7 @@ export declare class DescribeDeploymentSetsRequest extends $tea.Model {
|
|
|
15598
15606
|
deploymentSetName?: string;
|
|
15599
15607
|
/**
|
|
15600
15608
|
* @remarks
|
|
15601
|
-
* >
|
|
15609
|
+
* > This parameter is deprecated.
|
|
15602
15610
|
*
|
|
15603
15611
|
* @example
|
|
15604
15612
|
* null
|
|
@@ -15606,7 +15614,7 @@ export declare class DescribeDeploymentSetsRequest extends $tea.Model {
|
|
|
15606
15614
|
domain?: string;
|
|
15607
15615
|
/**
|
|
15608
15616
|
* @remarks
|
|
15609
|
-
* >
|
|
15617
|
+
* > This parameter is deprecated.
|
|
15610
15618
|
*
|
|
15611
15619
|
* @example
|
|
15612
15620
|
* null
|
|
@@ -15614,7 +15622,7 @@ export declare class DescribeDeploymentSetsRequest extends $tea.Model {
|
|
|
15614
15622
|
granularity?: string;
|
|
15615
15623
|
/**
|
|
15616
15624
|
* @remarks
|
|
15617
|
-
* >
|
|
15625
|
+
* > This parameter is deprecated.
|
|
15618
15626
|
*
|
|
15619
15627
|
* @example
|
|
15620
15628
|
* null
|
|
@@ -15624,7 +15632,7 @@ export declare class DescribeDeploymentSetsRequest extends $tea.Model {
|
|
|
15624
15632
|
ownerId?: number;
|
|
15625
15633
|
/**
|
|
15626
15634
|
* @remarks
|
|
15627
|
-
* The
|
|
15635
|
+
* The page number.
|
|
15628
15636
|
*
|
|
15629
15637
|
* Pages start from page 1.
|
|
15630
15638
|
*
|
|
@@ -15636,9 +15644,9 @@ export declare class DescribeDeploymentSetsRequest extends $tea.Model {
|
|
|
15636
15644
|
pageNumber?: number;
|
|
15637
15645
|
/**
|
|
15638
15646
|
* @remarks
|
|
15639
|
-
* The number of entries
|
|
15647
|
+
* The number of entries per page.
|
|
15640
15648
|
*
|
|
15641
|
-
*
|
|
15649
|
+
* Valid values: 1 to 50.
|
|
15642
15650
|
*
|
|
15643
15651
|
* Default value: 10.
|
|
15644
15652
|
*
|
|
@@ -15662,8 +15670,8 @@ export declare class DescribeDeploymentSetsRequest extends $tea.Model {
|
|
|
15662
15670
|
* @remarks
|
|
15663
15671
|
* The deployment strategy. Valid values:
|
|
15664
15672
|
*
|
|
15665
|
-
* * Availability: high availability strategy
|
|
15666
|
-
* * AvailabilityGroup: high availability group strategy
|
|
15673
|
+
* * Availability: high availability strategy
|
|
15674
|
+
* * AvailabilityGroup: high availability group strategy
|
|
15667
15675
|
*
|
|
15668
15676
|
* @example
|
|
15669
15677
|
* Availability
|
|
@@ -15687,7 +15695,7 @@ export declare class DescribeDeploymentSetsResponseBody extends $tea.Model {
|
|
|
15687
15695
|
deploymentSets?: DescribeDeploymentSetsResponseBodyDeploymentSets;
|
|
15688
15696
|
/**
|
|
15689
15697
|
* @remarks
|
|
15690
|
-
* The page number
|
|
15698
|
+
* The page number.
|
|
15691
15699
|
*
|
|
15692
15700
|
* @example
|
|
15693
15701
|
* 1
|
|
@@ -15695,7 +15703,7 @@ export declare class DescribeDeploymentSetsResponseBody extends $tea.Model {
|
|
|
15695
15703
|
pageNumber?: number;
|
|
15696
15704
|
/**
|
|
15697
15705
|
* @remarks
|
|
15698
|
-
* The number of entries
|
|
15706
|
+
* The number of entries per page.
|
|
15699
15707
|
*
|
|
15700
15708
|
* @example
|
|
15701
15709
|
* 1
|
|
@@ -15703,7 +15711,7 @@ export declare class DescribeDeploymentSetsResponseBody extends $tea.Model {
|
|
|
15703
15711
|
pageSize?: number;
|
|
15704
15712
|
/**
|
|
15705
15713
|
* @remarks
|
|
15706
|
-
* The
|
|
15714
|
+
* The ID of the region.
|
|
15707
15715
|
*
|
|
15708
15716
|
* @example
|
|
15709
15717
|
* cn-hangzhou
|
|
@@ -15711,7 +15719,7 @@ export declare class DescribeDeploymentSetsResponseBody extends $tea.Model {
|
|
|
15711
15719
|
regionId?: string;
|
|
15712
15720
|
/**
|
|
15713
15721
|
* @remarks
|
|
15714
|
-
* The ID
|
|
15722
|
+
* The request ID.
|
|
15715
15723
|
*
|
|
15716
15724
|
* @example
|
|
15717
15725
|
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
@@ -15719,7 +15727,7 @@ export declare class DescribeDeploymentSetsResponseBody extends $tea.Model {
|
|
|
15719
15727
|
requestId?: string;
|
|
15720
15728
|
/**
|
|
15721
15729
|
* @remarks
|
|
15722
|
-
* The total number of deployment sets
|
|
15730
|
+
* The total number of queried deployment sets.
|
|
15723
15731
|
*
|
|
15724
15732
|
* @example
|
|
15725
15733
|
* 1
|
|
@@ -16267,6 +16275,120 @@ export declare class DescribeDiagnosticReportsResponse extends $tea.Model {
|
|
|
16267
16275
|
[key: string]: any;
|
|
16268
16276
|
});
|
|
16269
16277
|
}
|
|
16278
|
+
export declare class DescribeDiskDefaultKMSKeyIdRequest extends $tea.Model {
|
|
16279
|
+
/**
|
|
16280
|
+
* @remarks
|
|
16281
|
+
* This parameter is required.
|
|
16282
|
+
*
|
|
16283
|
+
* @example
|
|
16284
|
+
* cn-hangzhou
|
|
16285
|
+
*/
|
|
16286
|
+
regionId?: string;
|
|
16287
|
+
resourceOwnerId?: number;
|
|
16288
|
+
static names(): {
|
|
16289
|
+
[key: string]: string;
|
|
16290
|
+
};
|
|
16291
|
+
static types(): {
|
|
16292
|
+
[key: string]: any;
|
|
16293
|
+
};
|
|
16294
|
+
constructor(map?: {
|
|
16295
|
+
[key: string]: any;
|
|
16296
|
+
});
|
|
16297
|
+
}
|
|
16298
|
+
export declare class DescribeDiskDefaultKMSKeyIdResponseBody extends $tea.Model {
|
|
16299
|
+
/**
|
|
16300
|
+
* @example
|
|
16301
|
+
* 0e478b7a-4262-4802-b8cb-00d3fb40****
|
|
16302
|
+
*/
|
|
16303
|
+
KMSKeyId?: string;
|
|
16304
|
+
/**
|
|
16305
|
+
* @example
|
|
16306
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3****
|
|
16307
|
+
*/
|
|
16308
|
+
requestId?: string;
|
|
16309
|
+
static names(): {
|
|
16310
|
+
[key: string]: string;
|
|
16311
|
+
};
|
|
16312
|
+
static types(): {
|
|
16313
|
+
[key: string]: any;
|
|
16314
|
+
};
|
|
16315
|
+
constructor(map?: {
|
|
16316
|
+
[key: string]: any;
|
|
16317
|
+
});
|
|
16318
|
+
}
|
|
16319
|
+
export declare class DescribeDiskDefaultKMSKeyIdResponse extends $tea.Model {
|
|
16320
|
+
headers?: {
|
|
16321
|
+
[key: string]: string;
|
|
16322
|
+
};
|
|
16323
|
+
statusCode?: number;
|
|
16324
|
+
body?: DescribeDiskDefaultKMSKeyIdResponseBody;
|
|
16325
|
+
static names(): {
|
|
16326
|
+
[key: string]: string;
|
|
16327
|
+
};
|
|
16328
|
+
static types(): {
|
|
16329
|
+
[key: string]: any;
|
|
16330
|
+
};
|
|
16331
|
+
constructor(map?: {
|
|
16332
|
+
[key: string]: any;
|
|
16333
|
+
});
|
|
16334
|
+
}
|
|
16335
|
+
export declare class DescribeDiskEncryptionByDefaultStatusRequest extends $tea.Model {
|
|
16336
|
+
/**
|
|
16337
|
+
* @remarks
|
|
16338
|
+
* This parameter is required.
|
|
16339
|
+
*
|
|
16340
|
+
* @example
|
|
16341
|
+
* cn-hangzhou
|
|
16342
|
+
*/
|
|
16343
|
+
regionId?: string;
|
|
16344
|
+
resourceOwnerId?: number;
|
|
16345
|
+
static names(): {
|
|
16346
|
+
[key: string]: string;
|
|
16347
|
+
};
|
|
16348
|
+
static types(): {
|
|
16349
|
+
[key: string]: any;
|
|
16350
|
+
};
|
|
16351
|
+
constructor(map?: {
|
|
16352
|
+
[key: string]: any;
|
|
16353
|
+
});
|
|
16354
|
+
}
|
|
16355
|
+
export declare class DescribeDiskEncryptionByDefaultStatusResponseBody extends $tea.Model {
|
|
16356
|
+
/**
|
|
16357
|
+
* @example
|
|
16358
|
+
* false
|
|
16359
|
+
*/
|
|
16360
|
+
encrypted?: boolean;
|
|
16361
|
+
/**
|
|
16362
|
+
* @example
|
|
16363
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
16364
|
+
*/
|
|
16365
|
+
requestId?: string;
|
|
16366
|
+
static names(): {
|
|
16367
|
+
[key: string]: string;
|
|
16368
|
+
};
|
|
16369
|
+
static types(): {
|
|
16370
|
+
[key: string]: any;
|
|
16371
|
+
};
|
|
16372
|
+
constructor(map?: {
|
|
16373
|
+
[key: string]: any;
|
|
16374
|
+
});
|
|
16375
|
+
}
|
|
16376
|
+
export declare class DescribeDiskEncryptionByDefaultStatusResponse extends $tea.Model {
|
|
16377
|
+
headers?: {
|
|
16378
|
+
[key: string]: string;
|
|
16379
|
+
};
|
|
16380
|
+
statusCode?: number;
|
|
16381
|
+
body?: DescribeDiskEncryptionByDefaultStatusResponseBody;
|
|
16382
|
+
static names(): {
|
|
16383
|
+
[key: string]: string;
|
|
16384
|
+
};
|
|
16385
|
+
static types(): {
|
|
16386
|
+
[key: string]: any;
|
|
16387
|
+
};
|
|
16388
|
+
constructor(map?: {
|
|
16389
|
+
[key: string]: any;
|
|
16390
|
+
});
|
|
16391
|
+
}
|
|
16270
16392
|
export declare class DescribeDiskMonitorDataRequest extends $tea.Model {
|
|
16271
16393
|
/**
|
|
16272
16394
|
* @remarks
|
|
@@ -18650,7 +18772,7 @@ export declare class DescribeImagesRequest extends $tea.Model {
|
|
|
18650
18772
|
imageOwnerAlias?: string;
|
|
18651
18773
|
/**
|
|
18652
18774
|
* @remarks
|
|
18653
|
-
* The ID of the Alibaba Cloud account to which the image belongs. This parameter takes effect only
|
|
18775
|
+
* The ID of the Alibaba Cloud account to which the image belongs. This parameter takes effect only if you query shared images or community images.
|
|
18654
18776
|
*
|
|
18655
18777
|
* @example
|
|
18656
18778
|
* 1234567890
|
|
@@ -18778,7 +18900,7 @@ export declare class DescribeImagesRequest extends $tea.Model {
|
|
|
18778
18900
|
* * Waiting: The image is waiting to be processed.
|
|
18779
18901
|
* * Available: The image is available.
|
|
18780
18902
|
* * UnAvailable: The image is unavailable.
|
|
18781
|
-
* * CreateFailed: The image
|
|
18903
|
+
* * CreateFailed: The image failed to be created.
|
|
18782
18904
|
* * Deprecated: The image is deprecated.
|
|
18783
18905
|
*
|
|
18784
18906
|
* Default value: Available. You can specify multiple values for this parameter. Separate the values with commas (,).
|
|
@@ -29965,6 +30087,58 @@ export declare class DisableActivationResponse extends $tea.Model {
|
|
|
29965
30087
|
[key: string]: any;
|
|
29966
30088
|
});
|
|
29967
30089
|
}
|
|
30090
|
+
export declare class DisableDiskEncryptionByDefaultRequest extends $tea.Model {
|
|
30091
|
+
/**
|
|
30092
|
+
* @remarks
|
|
30093
|
+
* This parameter is required.
|
|
30094
|
+
*
|
|
30095
|
+
* @example
|
|
30096
|
+
* cn-hangzhou
|
|
30097
|
+
*/
|
|
30098
|
+
regionId?: string;
|
|
30099
|
+
resourceOwnerId?: number;
|
|
30100
|
+
static names(): {
|
|
30101
|
+
[key: string]: string;
|
|
30102
|
+
};
|
|
30103
|
+
static types(): {
|
|
30104
|
+
[key: string]: any;
|
|
30105
|
+
};
|
|
30106
|
+
constructor(map?: {
|
|
30107
|
+
[key: string]: any;
|
|
30108
|
+
});
|
|
30109
|
+
}
|
|
30110
|
+
export declare class DisableDiskEncryptionByDefaultResponseBody extends $tea.Model {
|
|
30111
|
+
/**
|
|
30112
|
+
* @example
|
|
30113
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
30114
|
+
*/
|
|
30115
|
+
requestId?: string;
|
|
30116
|
+
static names(): {
|
|
30117
|
+
[key: string]: string;
|
|
30118
|
+
};
|
|
30119
|
+
static types(): {
|
|
30120
|
+
[key: string]: any;
|
|
30121
|
+
};
|
|
30122
|
+
constructor(map?: {
|
|
30123
|
+
[key: string]: any;
|
|
30124
|
+
});
|
|
30125
|
+
}
|
|
30126
|
+
export declare class DisableDiskEncryptionByDefaultResponse extends $tea.Model {
|
|
30127
|
+
headers?: {
|
|
30128
|
+
[key: string]: string;
|
|
30129
|
+
};
|
|
30130
|
+
statusCode?: number;
|
|
30131
|
+
body?: DisableDiskEncryptionByDefaultResponseBody;
|
|
30132
|
+
static names(): {
|
|
30133
|
+
[key: string]: string;
|
|
30134
|
+
};
|
|
30135
|
+
static types(): {
|
|
30136
|
+
[key: string]: any;
|
|
30137
|
+
};
|
|
30138
|
+
constructor(map?: {
|
|
30139
|
+
[key: string]: any;
|
|
30140
|
+
});
|
|
30141
|
+
}
|
|
29968
30142
|
export declare class EipFillParamsRequest extends $tea.Model {
|
|
29969
30143
|
clientToken?: string;
|
|
29970
30144
|
ownerAccount?: string;
|
|
@@ -30127,6 +30301,61 @@ export declare class EipNotifyPaidResponse extends $tea.Model {
|
|
|
30127
30301
|
[key: string]: any;
|
|
30128
30302
|
});
|
|
30129
30303
|
}
|
|
30304
|
+
export declare class EnableDiskEncryptionByDefaultRequest extends $tea.Model {
|
|
30305
|
+
ownerAccount?: string;
|
|
30306
|
+
ownerId?: number;
|
|
30307
|
+
/**
|
|
30308
|
+
* @remarks
|
|
30309
|
+
* This parameter is required.
|
|
30310
|
+
*
|
|
30311
|
+
* @example
|
|
30312
|
+
* cn-hangzhou
|
|
30313
|
+
*/
|
|
30314
|
+
regionId?: string;
|
|
30315
|
+
resourceOwnerAccount?: string;
|
|
30316
|
+
resourceOwnerId?: number;
|
|
30317
|
+
static names(): {
|
|
30318
|
+
[key: string]: string;
|
|
30319
|
+
};
|
|
30320
|
+
static types(): {
|
|
30321
|
+
[key: string]: any;
|
|
30322
|
+
};
|
|
30323
|
+
constructor(map?: {
|
|
30324
|
+
[key: string]: any;
|
|
30325
|
+
});
|
|
30326
|
+
}
|
|
30327
|
+
export declare class EnableDiskEncryptionByDefaultResponseBody extends $tea.Model {
|
|
30328
|
+
/**
|
|
30329
|
+
* @example
|
|
30330
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
30331
|
+
*/
|
|
30332
|
+
requestId?: string;
|
|
30333
|
+
static names(): {
|
|
30334
|
+
[key: string]: string;
|
|
30335
|
+
};
|
|
30336
|
+
static types(): {
|
|
30337
|
+
[key: string]: any;
|
|
30338
|
+
};
|
|
30339
|
+
constructor(map?: {
|
|
30340
|
+
[key: string]: any;
|
|
30341
|
+
});
|
|
30342
|
+
}
|
|
30343
|
+
export declare class EnableDiskEncryptionByDefaultResponse extends $tea.Model {
|
|
30344
|
+
headers?: {
|
|
30345
|
+
[key: string]: string;
|
|
30346
|
+
};
|
|
30347
|
+
statusCode?: number;
|
|
30348
|
+
body?: EnableDiskEncryptionByDefaultResponseBody;
|
|
30349
|
+
static names(): {
|
|
30350
|
+
[key: string]: string;
|
|
30351
|
+
};
|
|
30352
|
+
static types(): {
|
|
30353
|
+
[key: string]: any;
|
|
30354
|
+
};
|
|
30355
|
+
constructor(map?: {
|
|
30356
|
+
[key: string]: any;
|
|
30357
|
+
});
|
|
30358
|
+
}
|
|
30130
30359
|
export declare class EnablePhysicalConnectionRequest extends $tea.Model {
|
|
30131
30360
|
/**
|
|
30132
30361
|
* @remarks
|
|
@@ -33699,7 +33928,7 @@ export declare class ModifyDeploymentSetAttributeRequest extends $tea.Model {
|
|
|
33699
33928
|
deploymentSetId?: string;
|
|
33700
33929
|
/**
|
|
33701
33930
|
* @remarks
|
|
33702
|
-
* The new name of the deployment set. The name must be 2 to 128 characters in length
|
|
33931
|
+
* The new name of the deployment set. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), periods (.), and hyphens (-).
|
|
33703
33932
|
*
|
|
33704
33933
|
* @example
|
|
33705
33934
|
* DeploymentSetTestName
|
|
@@ -33713,15 +33942,7 @@ export declare class ModifyDeploymentSetAttributeRequest extends $tea.Model {
|
|
|
33713
33942
|
* TestDescription
|
|
33714
33943
|
*/
|
|
33715
33944
|
description?: string;
|
|
33716
|
-
/**
|
|
33717
|
-
* @example
|
|
33718
|
-
* ECSforCloud@Alibaba.com
|
|
33719
|
-
*/
|
|
33720
33945
|
ownerAccount?: string;
|
|
33721
|
-
/**
|
|
33722
|
-
* @example
|
|
33723
|
-
* 155780923770
|
|
33724
|
-
*/
|
|
33725
33946
|
ownerId?: number;
|
|
33726
33947
|
/**
|
|
33727
33948
|
* @remarks
|
|
@@ -33733,15 +33954,7 @@ export declare class ModifyDeploymentSetAttributeRequest extends $tea.Model {
|
|
|
33733
33954
|
* cn-hangzhou
|
|
33734
33955
|
*/
|
|
33735
33956
|
regionId?: string;
|
|
33736
|
-
/**
|
|
33737
|
-
* @example
|
|
33738
|
-
* ECSforCloud
|
|
33739
|
-
*/
|
|
33740
33957
|
resourceOwnerAccount?: string;
|
|
33741
|
-
/**
|
|
33742
|
-
* @example
|
|
33743
|
-
* 155780923770
|
|
33744
|
-
*/
|
|
33745
33958
|
resourceOwnerId?: number;
|
|
33746
33959
|
static names(): {
|
|
33747
33960
|
[key: string]: string;
|
|
@@ -33756,7 +33969,7 @@ export declare class ModifyDeploymentSetAttributeRequest extends $tea.Model {
|
|
|
33756
33969
|
export declare class ModifyDeploymentSetAttributeResponseBody extends $tea.Model {
|
|
33757
33970
|
/**
|
|
33758
33971
|
* @remarks
|
|
33759
|
-
* The ID
|
|
33972
|
+
* The request ID.
|
|
33760
33973
|
*
|
|
33761
33974
|
* @example
|
|
33762
33975
|
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
@@ -34142,6 +34355,66 @@ export declare class ModifyDiskChargeTypeResponse extends $tea.Model {
|
|
|
34142
34355
|
[key: string]: any;
|
|
34143
34356
|
});
|
|
34144
34357
|
}
|
|
34358
|
+
export declare class ModifyDiskDefaultKMSKeyIdRequest extends $tea.Model {
|
|
34359
|
+
/**
|
|
34360
|
+
* @remarks
|
|
34361
|
+
* This parameter is required.
|
|
34362
|
+
*
|
|
34363
|
+
* @example
|
|
34364
|
+
* 0e478b7a-4262-4802-b8cb-00d3fb40****
|
|
34365
|
+
*/
|
|
34366
|
+
KMSKeyId?: string;
|
|
34367
|
+
/**
|
|
34368
|
+
* @remarks
|
|
34369
|
+
* This parameter is required.
|
|
34370
|
+
*
|
|
34371
|
+
* @example
|
|
34372
|
+
* cn-hangzhou
|
|
34373
|
+
*/
|
|
34374
|
+
regionId?: string;
|
|
34375
|
+
resourceOwnerId?: number;
|
|
34376
|
+
static names(): {
|
|
34377
|
+
[key: string]: string;
|
|
34378
|
+
};
|
|
34379
|
+
static types(): {
|
|
34380
|
+
[key: string]: any;
|
|
34381
|
+
};
|
|
34382
|
+
constructor(map?: {
|
|
34383
|
+
[key: string]: any;
|
|
34384
|
+
});
|
|
34385
|
+
}
|
|
34386
|
+
export declare class ModifyDiskDefaultKMSKeyIdResponseBody extends $tea.Model {
|
|
34387
|
+
/**
|
|
34388
|
+
* @example
|
|
34389
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
34390
|
+
*/
|
|
34391
|
+
requestId?: string;
|
|
34392
|
+
static names(): {
|
|
34393
|
+
[key: string]: string;
|
|
34394
|
+
};
|
|
34395
|
+
static types(): {
|
|
34396
|
+
[key: string]: any;
|
|
34397
|
+
};
|
|
34398
|
+
constructor(map?: {
|
|
34399
|
+
[key: string]: any;
|
|
34400
|
+
});
|
|
34401
|
+
}
|
|
34402
|
+
export declare class ModifyDiskDefaultKMSKeyIdResponse extends $tea.Model {
|
|
34403
|
+
headers?: {
|
|
34404
|
+
[key: string]: string;
|
|
34405
|
+
};
|
|
34406
|
+
statusCode?: number;
|
|
34407
|
+
body?: ModifyDiskDefaultKMSKeyIdResponseBody;
|
|
34408
|
+
static names(): {
|
|
34409
|
+
[key: string]: string;
|
|
34410
|
+
};
|
|
34411
|
+
static types(): {
|
|
34412
|
+
[key: string]: any;
|
|
34413
|
+
};
|
|
34414
|
+
constructor(map?: {
|
|
34415
|
+
[key: string]: any;
|
|
34416
|
+
});
|
|
34417
|
+
}
|
|
34145
34418
|
export declare class ModifyDiskDeploymentRequest extends $tea.Model {
|
|
34146
34419
|
/**
|
|
34147
34420
|
* @remarks
|
|
@@ -36274,14 +36547,14 @@ export declare class ModifyInstanceSpecRequest extends $tea.Model {
|
|
|
36274
36547
|
temporary?: ModifyInstanceSpecRequestTemporary;
|
|
36275
36548
|
/**
|
|
36276
36549
|
* @remarks
|
|
36277
|
-
* Specifies whether cross-cluster instance type upgrades are supported.
|
|
36550
|
+
* Specifies whether cross-cluster instance type upgrades are supported. Valid values:
|
|
36278
36551
|
*
|
|
36279
36552
|
* * true
|
|
36280
36553
|
* * false
|
|
36281
36554
|
*
|
|
36282
36555
|
* Default value: false.
|
|
36283
36556
|
*
|
|
36284
|
-
* When `AllowMigrateAcrossZone`
|
|
36557
|
+
* When you set `AllowMigrateAcrossZone` to true and upgrade the instance based on the returned information, take note of the following items:
|
|
36285
36558
|
*
|
|
36286
36559
|
* Instance that resides in the classic network:
|
|
36287
36560
|
*
|
|
@@ -36372,6 +36645,11 @@ export declare class ModifyInstanceSpecRequest extends $tea.Model {
|
|
|
36372
36645
|
* @remarks
|
|
36373
36646
|
* > This parameter is not publicly available.
|
|
36374
36647
|
*
|
|
36648
|
+
* Valid values:
|
|
36649
|
+
*
|
|
36650
|
+
* * Online
|
|
36651
|
+
* * Offline
|
|
36652
|
+
*
|
|
36375
36653
|
* @example
|
|
36376
36654
|
* null
|
|
36377
36655
|
*/
|
|
@@ -39438,9 +39716,10 @@ export declare class ModifyVpcAttributeResponse extends $tea.Model {
|
|
|
39438
39716
|
export declare class PurchaseReservedInstancesOfferingRequest extends $tea.Model {
|
|
39439
39717
|
/**
|
|
39440
39718
|
* @remarks
|
|
39441
|
-
* Specifies whether to enable auto-renewal for the reserved instance.
|
|
39719
|
+
* Specifies whether to enable auto-renewal for the reserved instance. Valid values:
|
|
39442
39720
|
*
|
|
39443
|
-
* true
|
|
39721
|
+
* * true
|
|
39722
|
+
* * false (default)
|
|
39444
39723
|
*
|
|
39445
39724
|
* @example
|
|
39446
39725
|
* true
|
|
@@ -39591,6 +39870,9 @@ export declare class PurchaseReservedInstancesOfferingRequest extends $tea.Model
|
|
|
39591
39870
|
*/
|
|
39592
39871
|
scope?: string;
|
|
39593
39872
|
/**
|
|
39873
|
+
* @remarks
|
|
39874
|
+
* The time when the reserved instance takes effect. Specify the time in the [ISO 8601 standard](https://help.aliyun.com/document_detail/25696.html) in the `yyyy-MM-ddTHHZ` format. The time must be in UTC.
|
|
39875
|
+
*
|
|
39594
39876
|
* @example
|
|
39595
39877
|
* 2024-07-04T15Z
|
|
39596
39878
|
*/
|
|
@@ -40948,11 +41230,24 @@ export declare class RenewDedicatedHostsResponse extends $tea.Model {
|
|
|
40948
41230
|
export declare class RenewElasticityAssurancesRequest extends $tea.Model {
|
|
40949
41231
|
privatePoolOptions?: RenewElasticityAssurancesRequestPrivatePoolOptions;
|
|
40950
41232
|
/**
|
|
41233
|
+
* @remarks
|
|
41234
|
+
* Specifies whether to enable automatic payment. Valid values:
|
|
41235
|
+
*
|
|
41236
|
+
* * true
|
|
41237
|
+
* * false
|
|
41238
|
+
*
|
|
41239
|
+
* Default value: true.
|
|
41240
|
+
*
|
|
40951
41241
|
* @example
|
|
40952
41242
|
* true
|
|
40953
41243
|
*/
|
|
40954
41244
|
autoPay?: boolean;
|
|
40955
41245
|
/**
|
|
41246
|
+
* @remarks
|
|
41247
|
+
* 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.
|
|
41248
|
+
*
|
|
41249
|
+
* 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).
|
|
41250
|
+
*
|
|
40956
41251
|
* @example
|
|
40957
41252
|
* 123e4567-e89b-12d3-a456-426655440000
|
|
40958
41253
|
*/
|
|
@@ -40960,16 +41255,37 @@ export declare class RenewElasticityAssurancesRequest extends $tea.Model {
|
|
|
40960
41255
|
ownerAccount?: string;
|
|
40961
41256
|
ownerId?: number;
|
|
40962
41257
|
/**
|
|
41258
|
+
* @remarks
|
|
41259
|
+
* The renewal duration. The unit of the renewal duration is determined by the `PeriodUnit` value. Valid values:
|
|
41260
|
+
*
|
|
41261
|
+
* * Valid values if you set `PeriodUnit` to `Month`: 1, 2, 3, 4, 5, 6, 7, 8, and 9.
|
|
41262
|
+
* * Valid values if you set `PeriodUnit` to `Year`: 1, 2, and 3.
|
|
41263
|
+
*
|
|
41264
|
+
* Default value: 1.
|
|
41265
|
+
*
|
|
40963
41266
|
* @example
|
|
40964
41267
|
* 1
|
|
40965
41268
|
*/
|
|
40966
41269
|
period?: number;
|
|
40967
41270
|
/**
|
|
41271
|
+
* @remarks
|
|
41272
|
+
* The unit of the renewal duration. Valid values:
|
|
41273
|
+
*
|
|
41274
|
+
* * Month
|
|
41275
|
+
* * Year
|
|
41276
|
+
*
|
|
41277
|
+
* Default value: Year.
|
|
41278
|
+
*
|
|
40968
41279
|
* @example
|
|
40969
41280
|
* Year
|
|
40970
41281
|
*/
|
|
40971
41282
|
periodUnit?: string;
|
|
40972
41283
|
/**
|
|
41284
|
+
* @remarks
|
|
41285
|
+
* The region ID of the elasticity assurance.
|
|
41286
|
+
*
|
|
41287
|
+
* You can call the [DescribeRegions](https://help.aliyun.com/document_detail/2680071.html) operation to query the most recent region list.
|
|
41288
|
+
*
|
|
40973
41289
|
* @example
|
|
40974
41290
|
* cn-hangzhou
|
|
40975
41291
|
*/
|
|
@@ -40988,12 +41304,22 @@ export declare class RenewElasticityAssurancesRequest extends $tea.Model {
|
|
|
40988
41304
|
}
|
|
40989
41305
|
export declare class RenewElasticityAssurancesResponseBody extends $tea.Model {
|
|
40990
41306
|
/**
|
|
41307
|
+
* @remarks
|
|
41308
|
+
* The ID of the renewal order.
|
|
41309
|
+
*
|
|
40991
41310
|
* @example
|
|
40992
41311
|
* 182372800****
|
|
40993
41312
|
*/
|
|
40994
41313
|
orderId?: string;
|
|
41314
|
+
/**
|
|
41315
|
+
* @remarks
|
|
41316
|
+
* The IDs of the elasticity assurances.
|
|
41317
|
+
*/
|
|
40995
41318
|
privatePoolOptionsIdSet?: RenewElasticityAssurancesResponseBodyPrivatePoolOptionsIdSet;
|
|
40996
41319
|
/**
|
|
41320
|
+
* @remarks
|
|
41321
|
+
* The request ID.
|
|
41322
|
+
*
|
|
40997
41323
|
* @example
|
|
40998
41324
|
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
40999
41325
|
*/
|
|
@@ -41704,6 +42030,58 @@ export declare class ResetDiskResponse extends $tea.Model {
|
|
|
41704
42030
|
[key: string]: any;
|
|
41705
42031
|
});
|
|
41706
42032
|
}
|
|
42033
|
+
export declare class ResetDiskDefaultKMSKeyIdRequest extends $tea.Model {
|
|
42034
|
+
/**
|
|
42035
|
+
* @remarks
|
|
42036
|
+
* This parameter is required.
|
|
42037
|
+
*
|
|
42038
|
+
* @example
|
|
42039
|
+
* cn-hangzhou
|
|
42040
|
+
*/
|
|
42041
|
+
regionId?: string;
|
|
42042
|
+
resourceOwnerId?: number;
|
|
42043
|
+
static names(): {
|
|
42044
|
+
[key: string]: string;
|
|
42045
|
+
};
|
|
42046
|
+
static types(): {
|
|
42047
|
+
[key: string]: any;
|
|
42048
|
+
};
|
|
42049
|
+
constructor(map?: {
|
|
42050
|
+
[key: string]: any;
|
|
42051
|
+
});
|
|
42052
|
+
}
|
|
42053
|
+
export declare class ResetDiskDefaultKMSKeyIdResponseBody extends $tea.Model {
|
|
42054
|
+
/**
|
|
42055
|
+
* @example
|
|
42056
|
+
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
|
|
42057
|
+
*/
|
|
42058
|
+
requestId?: string;
|
|
42059
|
+
static names(): {
|
|
42060
|
+
[key: string]: string;
|
|
42061
|
+
};
|
|
42062
|
+
static types(): {
|
|
42063
|
+
[key: string]: any;
|
|
42064
|
+
};
|
|
42065
|
+
constructor(map?: {
|
|
42066
|
+
[key: string]: any;
|
|
42067
|
+
});
|
|
42068
|
+
}
|
|
42069
|
+
export declare class ResetDiskDefaultKMSKeyIdResponse extends $tea.Model {
|
|
42070
|
+
headers?: {
|
|
42071
|
+
[key: string]: string;
|
|
42072
|
+
};
|
|
42073
|
+
statusCode?: number;
|
|
42074
|
+
body?: ResetDiskDefaultKMSKeyIdResponseBody;
|
|
42075
|
+
static names(): {
|
|
42076
|
+
[key: string]: string;
|
|
42077
|
+
};
|
|
42078
|
+
static types(): {
|
|
42079
|
+
[key: string]: any;
|
|
42080
|
+
};
|
|
42081
|
+
constructor(map?: {
|
|
42082
|
+
[key: string]: any;
|
|
42083
|
+
});
|
|
42084
|
+
}
|
|
41707
42085
|
export declare class ResetDisksRequest extends $tea.Model {
|
|
41708
42086
|
/**
|
|
41709
42087
|
* @remarks
|
|
@@ -41864,10 +42242,10 @@ export declare class ResizeDiskRequest extends $tea.Model {
|
|
|
41864
42242
|
resourceOwnerId?: number;
|
|
41865
42243
|
/**
|
|
41866
42244
|
* @remarks
|
|
41867
|
-
* The method that you want to use to resize the disk.
|
|
42245
|
+
* The method that you want to use to resize the disk. Valid values:
|
|
41868
42246
|
*
|
|
41869
|
-
* * offline: resizes the disk offline. After you resize a disk offline, you must restart the associated instance in the ECS console or by calling the [RebootInstance](https://help.aliyun.com/document_detail/25502.html) operation for the resizing operation to take effect. For information about how to restart an ECS instance in the ECS console, see [Restart an instance](https://help.aliyun.com/document_detail/25440.html).
|
|
41870
|
-
* * online: resizes the disk online. After you resize a disk online, the resizing operation immediately takes effect. You do not need to restart the associated instance. You can resize ultra disks, standard SSDs, ESSDs, and elastic ephemeral disks online.
|
|
42247
|
+
* * offline (default): resizes the disk offline. After you resize a disk offline, you must restart the associated instance in the ECS console or by calling the [RebootInstance](https://help.aliyun.com/document_detail/25502.html) operation for the resizing operation to take effect. For information about how to restart an ECS instance in the ECS console, see [Restart an instance](https://help.aliyun.com/document_detail/25440.html).
|
|
42248
|
+
* * online: resizes the disk online. After you resize a disk online, the resizing operation immediately takes effect. You do not need to restart the associated instance. You can resize ultra disks, standard SSDs, Enterprise SSDs (ESSDs), and elastic ephemeral disks online.
|
|
41871
42249
|
*
|
|
41872
42250
|
* @example
|
|
41873
42251
|
* offline
|
|
@@ -46449,7 +46827,7 @@ export declare class CreateActivationRequestTag extends $tea.Model {
|
|
|
46449
46827
|
export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationArn extends $tea.Model {
|
|
46450
46828
|
/**
|
|
46451
46829
|
* @remarks
|
|
46452
|
-
* This parameter is not publicly available.
|
|
46830
|
+
* > This parameter is in invitational preview and is not publicly available.
|
|
46453
46831
|
*
|
|
46454
46832
|
* @example
|
|
46455
46833
|
* 123456789012****
|
|
@@ -46457,7 +46835,7 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationArn ex
|
|
|
46457
46835
|
assumeRoleFor?: number;
|
|
46458
46836
|
/**
|
|
46459
46837
|
* @remarks
|
|
46460
|
-
* This parameter is not publicly available.
|
|
46838
|
+
* > This parameter is in invitational preview and is not publicly available.
|
|
46461
46839
|
*
|
|
46462
46840
|
* @example
|
|
46463
46841
|
* 34458433936495****:alice
|
|
@@ -46465,7 +46843,7 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationArn ex
|
|
|
46465
46843
|
roleType?: string;
|
|
46466
46844
|
/**
|
|
46467
46845
|
* @remarks
|
|
46468
|
-
* This parameter is not publicly available.
|
|
46846
|
+
* > This parameter is in invitational preview and is not publicly available.
|
|
46469
46847
|
*
|
|
46470
46848
|
* @example
|
|
46471
46849
|
* acs:ram::123456789012****:role/adminrole
|
|
@@ -46482,15 +46860,27 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationArn ex
|
|
|
46482
46860
|
});
|
|
46483
46861
|
}
|
|
46484
46862
|
export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationDataDisk extends $tea.Model {
|
|
46863
|
+
/**
|
|
46864
|
+
* @remarks
|
|
46865
|
+
* Specifies whether to enable the performance burst feature for data disk N. Valid values:
|
|
46866
|
+
*
|
|
46867
|
+
* * true
|
|
46868
|
+
* * false
|
|
46869
|
+
*
|
|
46870
|
+
* > This parameter is available only if you set LaunchConfiguration.DataDisk.N.Category to cloud_auto. For more information, see [ESSD AutoPL disks](https://help.aliyun.com/document_detail/368372.html).
|
|
46871
|
+
*
|
|
46872
|
+
* @example
|
|
46873
|
+
* false
|
|
46874
|
+
*/
|
|
46485
46875
|
burstingEnabled?: boolean;
|
|
46486
46876
|
/**
|
|
46487
46877
|
* @remarks
|
|
46488
46878
|
* The category of data disk N. Valid values of N: 1 to 16. Valid values:
|
|
46489
46879
|
*
|
|
46490
|
-
* * cloud_efficiency: ultra disk
|
|
46491
|
-
* * cloud_ssd: standard SSD
|
|
46492
|
-
* * cloud_essd: ESSD
|
|
46493
|
-
* * cloud: basic disk
|
|
46880
|
+
* * cloud_efficiency: ultra disk.
|
|
46881
|
+
* * cloud_ssd: standard SSD.
|
|
46882
|
+
* * cloud_essd: ESSD.
|
|
46883
|
+
* * cloud: basic disk.
|
|
46494
46884
|
*
|
|
46495
46885
|
* For I/O optimized instances, the default value is cloud_efficiency. For non-I/O optimized instances, the default value is cloud.
|
|
46496
46886
|
*
|
|
@@ -46535,7 +46925,7 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationDataDi
|
|
|
46535
46925
|
* @remarks
|
|
46536
46926
|
* The name of data disk N. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with `http://` or `https://`. The name can contain letters, digits, periods (.), colons (:), underscores (_), and hyphens (-).
|
|
46537
46927
|
*
|
|
46538
|
-
*
|
|
46928
|
+
* This parameter is left empty by default.
|
|
46539
46929
|
*
|
|
46540
46930
|
* When both LaunchTemplateId and LaunchConfiguration.\\* parameters are specified, LaunchTemplateId takes precedence.
|
|
46541
46931
|
*
|
|
@@ -46543,6 +46933,13 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationDataDi
|
|
|
46543
46933
|
* cloud_ssdData
|
|
46544
46934
|
*/
|
|
46545
46935
|
diskName?: string;
|
|
46936
|
+
/**
|
|
46937
|
+
* @remarks
|
|
46938
|
+
* > This parameter is not publicly available.
|
|
46939
|
+
*
|
|
46940
|
+
* @example
|
|
46941
|
+
* null
|
|
46942
|
+
*/
|
|
46546
46943
|
encryptAlgorithm?: string;
|
|
46547
46944
|
/**
|
|
46548
46945
|
* @remarks
|
|
@@ -46569,14 +46966,14 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationDataDi
|
|
|
46569
46966
|
kmsKeyId?: string;
|
|
46570
46967
|
/**
|
|
46571
46968
|
* @remarks
|
|
46572
|
-
* The performance level of the ESSD to use as data disk N. The value of N in this parameter must be the same as the value of N in `LaunchConfiguration.DataDisk.N.Category`. Valid values:
|
|
46969
|
+
* The performance level of the Enterprise SSD (ESSD) to use as data disk N. The value of N in this parameter must be the same as the value of N in `LaunchConfiguration.DataDisk.N.Category`. Valid values:
|
|
46573
46970
|
*
|
|
46574
46971
|
* * PL0: A single ESSD can deliver up to 10,000 random read/write IOPS.
|
|
46575
46972
|
* * PL1 (default): A single ESSD can deliver up to 50,000 random read/write IOPS.
|
|
46576
46973
|
* * PL2: A single ESSD can deliver up to 100,000 random read/write IOPS.
|
|
46577
46974
|
* * PL3: A single ESSD can deliver up to 1,000,000 random read/write IOPS.
|
|
46578
46975
|
*
|
|
46579
|
-
* For information about ESSD performance levels, see [ESSDs](https://help.aliyun.com/document_detail/122389.html).
|
|
46976
|
+
* For more information about ESSD performance levels, see [ESSDs](https://help.aliyun.com/document_detail/122389.html).
|
|
46580
46977
|
*
|
|
46581
46978
|
* When both LaunchTemplateId and LaunchConfiguration.\\* parameters are specified, LaunchTemplateId takes precedence.
|
|
46582
46979
|
*
|
|
@@ -46584,6 +46981,17 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationDataDi
|
|
|
46584
46981
|
* PL1
|
|
46585
46982
|
*/
|
|
46586
46983
|
performanceLevel?: string;
|
|
46984
|
+
/**
|
|
46985
|
+
* @remarks
|
|
46986
|
+
* The provisioned read/write IOPS of the ESSD AutoPL disk to use as data disk N. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}.
|
|
46987
|
+
*
|
|
46988
|
+
* Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}.
|
|
46989
|
+
*
|
|
46990
|
+
* > This parameter is available only if you set LaunchConfiguration.DataDisk.N.Category to cloud_auto. For more information, see [ESSD AutoPL disks](https://help.aliyun.com/document_detail/368372.html).
|
|
46991
|
+
*
|
|
46992
|
+
* @example
|
|
46993
|
+
* 40000
|
|
46994
|
+
*/
|
|
46587
46995
|
provisionedIops?: number;
|
|
46588
46996
|
/**
|
|
46589
46997
|
* @remarks
|
|
@@ -46614,7 +47022,7 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationDataDi
|
|
|
46614
47022
|
* @remarks
|
|
46615
47023
|
* The ID of the snapshot to use to create data disk N. Valid values of N: 1 to 16.
|
|
46616
47024
|
*
|
|
46617
|
-
*
|
|
47025
|
+
* If you specify this parameter, `LaunchConfiguration.DataDisk.N.Size` is ignored. The size of data disk N is the same as that of the snapshot specified by this parameter. Use snapshots created after July 15, 2013. Otherwise, an error is returned and your request is rejected.
|
|
46618
47026
|
*
|
|
46619
47027
|
* When both LaunchTemplateId and LaunchConfiguration.\\* parameters are specified, LaunchTemplateId takes precedence.
|
|
46620
47028
|
*
|
|
@@ -46633,10 +47041,22 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationDataDi
|
|
|
46633
47041
|
});
|
|
46634
47042
|
}
|
|
46635
47043
|
export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationSystemDisk extends $tea.Model {
|
|
47044
|
+
/**
|
|
47045
|
+
* @remarks
|
|
47046
|
+
* Specifies whether to enable the performance burst feature for the system disk. Valid values:
|
|
47047
|
+
*
|
|
47048
|
+
* * true
|
|
47049
|
+
* * false
|
|
47050
|
+
*
|
|
47051
|
+
* > This parameter is available only if you set `LaunchConfiguration.SystemDisk.Category` to `cloud_auto`. For more information, see [ESSD AutoPL disks](https://help.aliyun.com/document_detail/368372.html).
|
|
47052
|
+
*
|
|
47053
|
+
* @example
|
|
47054
|
+
* false
|
|
47055
|
+
*/
|
|
46636
47056
|
burstingEnabled?: boolean;
|
|
46637
47057
|
/**
|
|
46638
47058
|
* @remarks
|
|
46639
|
-
* The algorithm to use to encrypt system disk
|
|
47059
|
+
* The algorithm to use to encrypt the system disk. Valid values:
|
|
46640
47060
|
*
|
|
46641
47061
|
* * aes-256
|
|
46642
47062
|
* * sm4-128
|
|
@@ -46645,13 +47065,15 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationSystem
|
|
|
46645
47065
|
*
|
|
46646
47066
|
* When both LaunchTemplateId and LaunchConfiguration.\\* parameters are specified, LaunchTemplateId takes precedence.
|
|
46647
47067
|
*
|
|
47068
|
+
* > This parameter is not publicly available.
|
|
47069
|
+
*
|
|
46648
47070
|
* @example
|
|
46649
47071
|
* aes-256
|
|
46650
47072
|
*/
|
|
46651
47073
|
encryptAlgorithm?: string;
|
|
46652
47074
|
/**
|
|
46653
47075
|
* @remarks
|
|
46654
|
-
* Specifies whether to encrypt system disk
|
|
47076
|
+
* Specifies whether to encrypt the system disk. Valid values:
|
|
46655
47077
|
*
|
|
46656
47078
|
* * true
|
|
46657
47079
|
* * false
|
|
@@ -46666,7 +47088,7 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationSystem
|
|
|
46666
47088
|
encrypted?: string;
|
|
46667
47089
|
/**
|
|
46668
47090
|
* @remarks
|
|
46669
|
-
* The ID of the KMS key to use for system disk
|
|
47091
|
+
* The ID of the KMS key to use for the system disk.
|
|
46670
47092
|
*
|
|
46671
47093
|
* When both LaunchTemplateId and LaunchConfiguration.\\* parameters are specified, LaunchTemplateId takes precedence.
|
|
46672
47094
|
*
|
|
@@ -46674,6 +47096,17 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationSystem
|
|
|
46674
47096
|
* 0e478b7a-4262-4802-b8cb-00d3fb40****
|
|
46675
47097
|
*/
|
|
46676
47098
|
KMSKeyId?: string;
|
|
47099
|
+
/**
|
|
47100
|
+
* @remarks
|
|
47101
|
+
* The provisioned read/write IOPS of the ESSD AutoPL disk to use as the system disk. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}.
|
|
47102
|
+
*
|
|
47103
|
+
* Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}.
|
|
47104
|
+
*
|
|
47105
|
+
* > This parameter is available only if you set LaunchConfiguration.SystemDisk.Category to cloud_auto. For more information, see [ESSD AutoPL disks](https://help.aliyun.com/document_detail/368372.html).
|
|
47106
|
+
*
|
|
47107
|
+
* @example
|
|
47108
|
+
* 40000
|
|
47109
|
+
*/
|
|
46677
47110
|
provisionedIops?: number;
|
|
46678
47111
|
static names(): {
|
|
46679
47112
|
[key: string]: string;
|
|
@@ -46715,7 +47148,7 @@ export declare class CreateAutoProvisioningGroupRequestLaunchConfigurationTag ex
|
|
|
46715
47148
|
export declare class CreateAutoProvisioningGroupRequestLaunchConfiguration extends $tea.Model {
|
|
46716
47149
|
/**
|
|
46717
47150
|
* @remarks
|
|
46718
|
-
* This parameter is
|
|
47151
|
+
* > This parameter is in invitational preview and is not publicly available.
|
|
46719
47152
|
*/
|
|
46720
47153
|
arn?: CreateAutoProvisioningGroupRequestLaunchConfigurationArn[];
|
|
46721
47154
|
/**
|
|
@@ -47224,7 +47657,7 @@ export declare class CreateAutoProvisioningGroupRequestTag extends $tea.Model {
|
|
|
47224
47657
|
* @remarks
|
|
47225
47658
|
* The key of tag N to add to the auto provisioning group.
|
|
47226
47659
|
*
|
|
47227
|
-
* Valid values of N: 1 to 20. The tag key cannot be an empty string. The tag key can be up to 128 characters in length
|
|
47660
|
+
* Valid values of N: 1 to 20. The tag key cannot be an empty string. The tag key can be up to 128 characters in length. It cannot start with aliyun or acs: and cannot contain http:// or https://.
|
|
47228
47661
|
*
|
|
47229
47662
|
* @example
|
|
47230
47663
|
* TestKey
|
|
@@ -48000,7 +48433,7 @@ export declare class CreateInstanceRequestDataDisk extends $tea.Model {
|
|
|
48000
48433
|
* @remarks
|
|
48001
48434
|
* The category of data disk N. Valid values:
|
|
48002
48435
|
*
|
|
48003
|
-
* * cloud_efficiency:
|
|
48436
|
+
* * cloud_efficiency: utra disk.
|
|
48004
48437
|
*
|
|
48005
48438
|
* * cloud_ssd: standard SSD.
|
|
48006
48439
|
*
|
|
@@ -48051,7 +48484,7 @@ export declare class CreateInstanceRequestDataDisk extends $tea.Model {
|
|
|
48051
48484
|
* @remarks
|
|
48052
48485
|
* The mount point of data disk N.
|
|
48053
48486
|
*
|
|
48054
|
-
* > This parameter is applicable to scenarios in which a full image is used to create instances. A full image is an image that contains an operating system, application software, and business data. For these scenarios, you can set
|
|
48487
|
+
* > This parameter is applicable to scenarios in which a full image is used to create instances. A full image is an image that contains an operating system, application software, and business data. For these scenarios, you can set this parameter to the mount point of data disk N contained in the full image and modify the `DataDisk.N.Size` and `DataDisk.N.Category` parameters to change the category and size of data disk N created based on the image.
|
|
48055
48488
|
*
|
|
48056
48489
|
* @example
|
|
48057
48490
|
* /dev/xvdb
|
|
@@ -48113,20 +48546,20 @@ export declare class CreateInstanceRequestDataDisk extends $tea.Model {
|
|
|
48113
48546
|
* @remarks
|
|
48114
48547
|
* The size of data disk N. Valid values of N: 1 to 16. Unit: GiB. Valid values:
|
|
48115
48548
|
*
|
|
48116
|
-
* * Valid values
|
|
48549
|
+
* * Valid values if you set DataDisk.N.Category to cloud_efficiency: 20 to 32768.
|
|
48117
48550
|
*
|
|
48118
|
-
* * Valid values
|
|
48551
|
+
* * Valid values if you set DataDisk.N.Category to cloud_ssd: 20 to 32768.
|
|
48119
48552
|
*
|
|
48120
|
-
* * Valid values
|
|
48553
|
+
* * Valid values if you set DataDisk.N.Category to cloud_essd: vary based on the `DataDisk.N.PerformanceLevel` value.
|
|
48121
48554
|
*
|
|
48122
|
-
* * Valid values when DataDisk.N.PerformanceLevel is set to PL0: 1 to
|
|
48123
|
-
* * Valid values when DataDisk.N.PerformanceLevel is set to PL1: 20 to
|
|
48124
|
-
* * Valid values when DataDisk.N.PerformanceLevel is set to PL2: 461 to
|
|
48125
|
-
* * Valid values when DataDisk.N.PerformanceLevel is set to PL3: 1261 to
|
|
48555
|
+
* * Valid values when DataDisk.N.PerformanceLevel is set to PL0: 1 to 65536.
|
|
48556
|
+
* * Valid values when DataDisk.N.PerformanceLevel is set to PL1: 20 to 65536.
|
|
48557
|
+
* * Valid values when DataDisk.N.PerformanceLevel is set to PL2: 461 to 65536.
|
|
48558
|
+
* * Valid values when DataDisk.N.PerformanceLevel is set to PL3: 1261 to 65536.
|
|
48126
48559
|
*
|
|
48127
|
-
* * Valid values
|
|
48560
|
+
* * Valid values if you set DataDisk.N.Category to cloud: 5 to 2000.
|
|
48128
48561
|
*
|
|
48129
|
-
* > The value of this parameter must be greater than or equal to the size of the snapshot specified by `
|
|
48562
|
+
* > The value of this parameter must be greater than or equal to the size of the snapshot specified by `SnapshotId`.
|
|
48130
48563
|
*
|
|
48131
48564
|
* @example
|
|
48132
48565
|
* 2000
|
|
@@ -48137,7 +48570,7 @@ export declare class CreateInstanceRequestDataDisk extends $tea.Model {
|
|
|
48137
48570
|
* The ID of the snapshot to use to create data disk N. Valid values of N: 1 to 16.
|
|
48138
48571
|
*
|
|
48139
48572
|
* * If `DataDisk.N.SnapshotId` is specified, `DataDisk.N.Size` is ignored. The data disk is created based on the size of the specified snapshot.
|
|
48140
|
-
* * Use snapshots created after July 15, 2013. Otherwise, an error is returned and your request is rejected.
|
|
48573
|
+
* * Use snapshots created on or after July 15, 2013. Otherwise, an error is returned and your request is rejected.
|
|
48141
48574
|
*
|
|
48142
48575
|
* @example
|
|
48143
48576
|
* s-bp17441ohwka0yuh****
|
|
@@ -48145,7 +48578,7 @@ export declare class CreateInstanceRequestDataDisk extends $tea.Model {
|
|
|
48145
48578
|
snapshotId?: string;
|
|
48146
48579
|
/**
|
|
48147
48580
|
* @remarks
|
|
48148
|
-
* The ID of the dedicated block storage cluster to which data disk N belongs. If you want to use a disk in a dedicated block storage cluster as data disk N when you create the instance,
|
|
48581
|
+
* The ID of the dedicated block storage cluster to which data disk N belongs. If you want to use a disk in a dedicated block storage cluster as data disk N when you create the instance, specify this parameter.
|
|
48149
48582
|
*
|
|
48150
48583
|
* @example
|
|
48151
48584
|
* dbsc-j5e1sf2vaf5he8m2****
|
|
@@ -48164,7 +48597,7 @@ export declare class CreateInstanceRequestDataDisk extends $tea.Model {
|
|
|
48164
48597
|
export declare class CreateInstanceRequestTag extends $tea.Model {
|
|
48165
48598
|
/**
|
|
48166
48599
|
* @remarks
|
|
48167
|
-
* The key of tag N to add to the instance, disks, and primary
|
|
48600
|
+
* The key of tag N to add to the instance, disks, and primary ENI. Valid values of N: 1 to 20. The tag key cannot be an empty string. The tag key can be up to 128 characters in length and cannot start with `acs:` or `aliyun`. It cannot contain `http://` or `https://`.
|
|
48168
48601
|
*
|
|
48169
48602
|
* @example
|
|
48170
48603
|
* TestKey
|
|
@@ -48172,7 +48605,7 @@ export declare class CreateInstanceRequestTag extends $tea.Model {
|
|
|
48172
48605
|
key?: string;
|
|
48173
48606
|
/**
|
|
48174
48607
|
* @remarks
|
|
48175
|
-
* The value of tag N to add to the instance, disks, and primary ENI. Valid values of N: 1 to 20. The tag value can be an empty string.
|
|
48608
|
+
* The value of tag N to add to the instance, disks, and primary ENI. Valid values of N: 1 to 20. The tag value can be an empty string. The tag value can be up to 128 characters in length and cannot contain `http://` or `https://`.
|
|
48176
48609
|
*
|
|
48177
48610
|
* @example
|
|
48178
48611
|
* TestValue
|
|
@@ -48378,12 +48811,12 @@ export declare class CreateLaunchTemplateRequestDataDisk extends $tea.Model {
|
|
|
48378
48811
|
* @remarks
|
|
48379
48812
|
* The category of data disk N. Valid values:
|
|
48380
48813
|
*
|
|
48381
|
-
* * cloud: basic disk
|
|
48382
|
-
* * cloud_efficiency: ultra disk
|
|
48383
|
-
* * cloud_ssd: standard SSD
|
|
48384
|
-
* * cloud_essd: ESSD
|
|
48814
|
+
* * cloud: basic disk.
|
|
48815
|
+
* * cloud_efficiency: ultra disk.
|
|
48816
|
+
* * cloud_ssd: standard SSD.
|
|
48817
|
+
* * cloud_essd: ESSD.
|
|
48385
48818
|
* * cloud_auto: ESSD AutoPL disk
|
|
48386
|
-
* * cloud_essd_entry: ESSD Entry disk
|
|
48819
|
+
* * cloud_essd_entry: ESSD Entry disk.
|
|
48387
48820
|
*
|
|
48388
48821
|
* For I/O optimized instances, the default value is cloud_efficiency. For non-I/O optimized instances, the default value is cloud.
|
|
48389
48822
|
*
|
|
@@ -48414,7 +48847,12 @@ export declare class CreateLaunchTemplateRequestDataDisk extends $tea.Model {
|
|
|
48414
48847
|
description?: string;
|
|
48415
48848
|
/**
|
|
48416
48849
|
* @remarks
|
|
48417
|
-
*
|
|
48850
|
+
* The mount point of data disk N. The mount points are named based on the number of data disks:
|
|
48851
|
+
*
|
|
48852
|
+
* * 1st to 25th data disks: /dev/xvd`[b-z]`.
|
|
48853
|
+
* * From the 26th data disk on: /dev/xvd`[aa-zz]`. For example, the 26th data disk is named /dev/xvdaa, the 27th data disk is named /dev/xvdab, and so on.
|
|
48854
|
+
*
|
|
48855
|
+
* > This parameter is applicable to scenarios in which a full image is used to create instances. A full image is an image that contains an operating system, application software, and business data. For these scenarios, you can set the parameter to the mount point of data disk N contained in the full image and modify `DataDisk.N.Size` and `DataDisk.N.Category` to change the category and size of data disk N created based on the image.
|
|
48418
48856
|
*
|
|
48419
48857
|
* @example
|
|
48420
48858
|
* null
|
|
@@ -48422,7 +48860,7 @@ export declare class CreateLaunchTemplateRequestDataDisk extends $tea.Model {
|
|
|
48422
48860
|
device?: string;
|
|
48423
48861
|
/**
|
|
48424
48862
|
* @remarks
|
|
48425
|
-
* The name of data disk N. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with `http://` or `https://`. The name can contain
|
|
48863
|
+
* The name of data disk N. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with `http://` or `https://`. The name can contain digits, letters, colons (:), underscores (_), and hyphens (-).
|
|
48426
48864
|
*
|
|
48427
48865
|
* @example
|
|
48428
48866
|
* testDataDiskName
|
|
@@ -48457,7 +48895,7 @@ export declare class CreateLaunchTemplateRequestDataDisk extends $tea.Model {
|
|
|
48457
48895
|
*
|
|
48458
48896
|
* Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}.
|
|
48459
48897
|
*
|
|
48460
|
-
* > This parameter is available only if you set
|
|
48898
|
+
* > This parameter is available only if you set DiskCategory to cloud_auto. For more information, see [ESSD AutoPL disks](https://help.aliyun.com/document_detail/368372.html) and [Modify the performance configurations of an ESSD AutoPL disk](https://help.aliyun.com/document_detail/413275.html).
|
|
48461
48899
|
*
|
|
48462
48900
|
* @example
|
|
48463
48901
|
* 50000
|
|
@@ -48484,7 +48922,7 @@ export declare class CreateLaunchTemplateRequestDataDisk extends $tea.Model {
|
|
|
48484
48922
|
*
|
|
48485
48923
|
* * Valid values if you set DataDisk.N.Category to cloud_essd_entry: 10 to 32768.
|
|
48486
48924
|
*
|
|
48487
|
-
* The value of this parameter must be greater than or equal to the size of the snapshot specified by `
|
|
48925
|
+
* The value of this parameter must be greater than or equal to the size of the snapshot specified by `SnapshotId`.
|
|
48488
48926
|
*
|
|
48489
48927
|
* @example
|
|
48490
48928
|
* 2000
|
|
@@ -48850,12 +49288,12 @@ export declare class CreateLaunchTemplateVersionRequestDataDisk extends $tea.Mod
|
|
|
48850
49288
|
* @remarks
|
|
48851
49289
|
* The category of data disk N. Valid values:
|
|
48852
49290
|
*
|
|
48853
|
-
* * cloud: basic disk
|
|
48854
|
-
* * cloud_efficiency: ultra disk
|
|
48855
|
-
* * cloud_ssd: standard SSD
|
|
48856
|
-
* * cloud_auto: ESSD AutoPL disk
|
|
48857
|
-
* * cloud_essd: ESSD
|
|
48858
|
-
* * cloud_essd_entry: ESSD Entry disk
|
|
49291
|
+
* * cloud: basic disk.
|
|
49292
|
+
* * cloud_efficiency: ultra disk.
|
|
49293
|
+
* * cloud_ssd: standard SSD.
|
|
49294
|
+
* * cloud_auto: ESSD AutoPL disk.
|
|
49295
|
+
* * cloud_essd: ESSD.
|
|
49296
|
+
* * cloud_essd_entry: ESSD Entry disk.
|
|
48859
49297
|
*
|
|
48860
49298
|
* For I/O optimized instances, the default value is cloud_efficiency. For non-I/O optimized instances, the default value is cloud.
|
|
48861
49299
|
*
|
|
@@ -48886,7 +49324,12 @@ export declare class CreateLaunchTemplateVersionRequestDataDisk extends $tea.Mod
|
|
|
48886
49324
|
description?: string;
|
|
48887
49325
|
/**
|
|
48888
49326
|
* @remarks
|
|
48889
|
-
*
|
|
49327
|
+
* The mount point of data disk N. The mount points are named based on the number of data disks:
|
|
49328
|
+
*
|
|
49329
|
+
* * 1st to 25th data disks: /dev/xvd`[b-z]`.
|
|
49330
|
+
* * From the 26th data disk on: /dev/xvd`[aa-zz]`. For example, the 26th data disk is named /dev/xvdaa, the 27th data disk is named /dev/xvdab, and so on.
|
|
49331
|
+
*
|
|
49332
|
+
* > This parameter is applicable to scenarios in which a full image is used to create instances. A full image is an image that contains an operating system, application software, and business data. For these scenarios, you can set the parameter to the mount point of data disk N contained in the full image and modify `DataDisk.N.Size` and `DataDisk.N.Category` to change the category and size of data disk N created based on the image.
|
|
48890
49333
|
*
|
|
48891
49334
|
* @example
|
|
48892
49335
|
* null
|
|
@@ -48894,7 +49337,7 @@ export declare class CreateLaunchTemplateVersionRequestDataDisk extends $tea.Mod
|
|
|
48894
49337
|
device?: string;
|
|
48895
49338
|
/**
|
|
48896
49339
|
* @remarks
|
|
48897
|
-
* The name of data disk N. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with `http://` or `https://`. The name can contain
|
|
49340
|
+
* The name of data disk N. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with `http://` or `https://`. The name can contain digits, letters, colons (:), underscores (_), and hyphens (-).
|
|
48898
49341
|
*
|
|
48899
49342
|
* @example
|
|
48900
49343
|
* testDataDiskName
|
|
@@ -48925,11 +49368,11 @@ export declare class CreateLaunchTemplateVersionRequestDataDisk extends $tea.Mod
|
|
|
48925
49368
|
performanceLevel?: string;
|
|
48926
49369
|
/**
|
|
48927
49370
|
* @remarks
|
|
48928
|
-
* The provisioned read/write IOPS of the ESSD AutoPL disk. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}
|
|
49371
|
+
* The provisioned read/write IOPS of the ESSD AutoPL disk. Valid values: 0 to min{50,000, 1,000 × Capacity - Baseline IOPS}.
|
|
48929
49372
|
*
|
|
48930
|
-
* Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}
|
|
49373
|
+
* Baseline IOPS = min{1,800 + 50 × Capacity, 50,000}.
|
|
48931
49374
|
*
|
|
48932
|
-
* > This parameter is available only if you set
|
|
49375
|
+
* > This parameter is available only if you set DiskCategory to cloud_auto. For more information, see [ESSD AutoPL disks](https://help.aliyun.com/document_detail/368372.html) and [Modify the performance configurations of an ESSD AutoPL disk](https://help.aliyun.com/document_detail/413275.html).
|
|
48933
49376
|
*
|
|
48934
49377
|
* @example
|
|
48935
49378
|
* 50000
|
|
@@ -48956,7 +49399,7 @@ export declare class CreateLaunchTemplateVersionRequestDataDisk extends $tea.Mod
|
|
|
48956
49399
|
*
|
|
48957
49400
|
* * Valid values if you set DataDisk.N.Category to cloud_essd_entry: 10 to 32768.
|
|
48958
49401
|
*
|
|
48959
|
-
* The value of this parameter must be greater than or equal to the size of the snapshot specified by `
|
|
49402
|
+
* The value of this parameter must be greater than or equal to the size of the snapshot specified by `SnapshotId`.
|
|
48960
49403
|
*
|
|
48961
49404
|
* @example
|
|
48962
49405
|
* 2000
|
|
@@ -48966,7 +49409,7 @@ export declare class CreateLaunchTemplateVersionRequestDataDisk extends $tea.Mod
|
|
|
48966
49409
|
* @remarks
|
|
48967
49410
|
* The ID of the snapshot to use to create data disk N. Valid values of N: 1 to 16. When `DataDisk.N.SnapshotId` is specified, `DataDisk.N.Size` is ignored. The data disk is created with the size of the specified snapshot.
|
|
48968
49411
|
*
|
|
48969
|
-
* Use snapshots created
|
|
49412
|
+
* Use snapshots created after July 15, 2013. Otherwise, an error is returned and your request is rejected.
|
|
48970
49413
|
*
|
|
48971
49414
|
* @example
|
|
48972
49415
|
* s-bp17441ohwka0yuh****
|
|
@@ -54310,7 +54753,7 @@ export declare class DescribeDeploymentSetsResponseBodyDeploymentSetsDeploymentS
|
|
|
54310
54753
|
availableAmount?: number;
|
|
54311
54754
|
/**
|
|
54312
54755
|
* @remarks
|
|
54313
|
-
* The number of ECS instances that
|
|
54756
|
+
* The number of ECS instances that reside in the zone in the deployment set.
|
|
54314
54757
|
*
|
|
54315
54758
|
* @example
|
|
54316
54759
|
* 2
|
|
@@ -54361,7 +54804,7 @@ export declare class DescribeDeploymentSetsResponseBodyDeploymentSetsDeploymentS
|
|
|
54361
54804
|
export declare class DescribeDeploymentSetsResponseBodyDeploymentSetsDeploymentSet extends $tea.Model {
|
|
54362
54805
|
/**
|
|
54363
54806
|
* @remarks
|
|
54364
|
-
* Details of the capacities of the deployment set. This parameter is valid only when the deployment set contains
|
|
54807
|
+
* Details of the capacities of the deployment set. This parameter is valid only when the deployment set contains ECS instances. The value contains information about the capacities of the deployment set in different zones.
|
|
54365
54808
|
*/
|
|
54366
54809
|
capacities?: DescribeDeploymentSetsResponseBodyDeploymentSetsDeploymentSetCapacities;
|
|
54367
54810
|
/**
|
|
@@ -54398,7 +54841,7 @@ export declare class DescribeDeploymentSetsResponseBodyDeploymentSetsDeploymentS
|
|
|
54398
54841
|
deploymentSetName?: string;
|
|
54399
54842
|
/**
|
|
54400
54843
|
* @remarks
|
|
54401
|
-
* The deployment strategy. The value of this
|
|
54844
|
+
* The deployment strategy. The return value of this parameter is the value of the `Strategy` request parameter.
|
|
54402
54845
|
*
|
|
54403
54846
|
* @example
|
|
54404
54847
|
* Availability
|
|
@@ -54440,7 +54883,7 @@ export declare class DescribeDeploymentSetsResponseBodyDeploymentSetsDeploymentS
|
|
|
54440
54883
|
instanceAmount?: number;
|
|
54441
54884
|
/**
|
|
54442
54885
|
* @remarks
|
|
54443
|
-
* The IDs of the instances in the deployment set.
|
|
54886
|
+
* The IDs of the Elastic Compute Service (ECS) instances in the deployment set.
|
|
54444
54887
|
*/
|
|
54445
54888
|
instanceIds?: DescribeDeploymentSetsResponseBodyDeploymentSetsDeploymentSetInstanceIds;
|
|
54446
54889
|
/**
|
|
@@ -58920,7 +59363,7 @@ export declare class DescribeInstanceHistoryEventsResponseBodyInstanceSystemEven
|
|
|
58920
59363
|
hostType?: string;
|
|
58921
59364
|
/**
|
|
58922
59365
|
* @remarks
|
|
58923
|
-
* The inactive disks that
|
|
59366
|
+
* The inactive disks that were released and whose data must be cleared.
|
|
58924
59367
|
*/
|
|
58925
59368
|
inactiveDisks?: DescribeInstanceHistoryEventsResponseBodyInstanceSystemEventSetInstanceSystemEventTypeExtendedAttributeInactiveDisks;
|
|
58926
59369
|
/**
|
|
@@ -59055,12 +59498,19 @@ export declare class DescribeInstanceHistoryEventsResponseBodyInstanceSystemEven
|
|
|
59055
59498
|
notBefore?: string;
|
|
59056
59499
|
/**
|
|
59057
59500
|
* @remarks
|
|
59058
|
-
* The reason why the system event
|
|
59501
|
+
* The reason why the system event occurred.
|
|
59059
59502
|
*
|
|
59060
59503
|
* @example
|
|
59061
59504
|
* System maintenance is scheduled due to ***.
|
|
59062
59505
|
*/
|
|
59063
59506
|
reason?: string;
|
|
59507
|
+
/**
|
|
59508
|
+
* @remarks
|
|
59509
|
+
* The reason code category for the system event.
|
|
59510
|
+
*
|
|
59511
|
+
* @example
|
|
59512
|
+
* VPCMigrationEcs
|
|
59513
|
+
*/
|
|
59064
59514
|
reasonCode?: string;
|
|
59065
59515
|
/**
|
|
59066
59516
|
* @remarks
|
|
@@ -63078,9 +63528,12 @@ export declare class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVer
|
|
|
63078
63528
|
description?: string;
|
|
63079
63529
|
/**
|
|
63080
63530
|
* @remarks
|
|
63081
|
-
* The
|
|
63531
|
+
* The mount point of the data disk. The mount points are named based on the number of data disks:
|
|
63082
63532
|
*
|
|
63083
|
-
*
|
|
63533
|
+
* * 1st to 25th data disks: /dev/xvd`[b-z]`.
|
|
63534
|
+
* * From the 26th data disk on: /dev/xvd`[aa-zz]`. For example, the 26th data disk is named /dev/xvdaa, the 27th data disk is named /dev/xvdab, and so on.
|
|
63535
|
+
*
|
|
63536
|
+
* > This parameter is applicable to scenarios in which a full image is used to create instances. A full image is an image that contains an operating system, application software, and business data. For these scenarios, you can set the parameter to the mount point of data disk N contained in the full image and modify `DataDisk.N.Size` and `DataDisk.N.Category` to change the category and size of data disk N created based on the image.
|
|
63084
63537
|
*
|
|
63085
63538
|
* @example
|
|
63086
63539
|
* /dev/xvda
|
|
@@ -72895,6 +73348,14 @@ export declare class RemoveTagsRequestTag extends $tea.Model {
|
|
|
72895
73348
|
});
|
|
72896
73349
|
}
|
|
72897
73350
|
export declare class RenewElasticityAssurancesRequestPrivatePoolOptions extends $tea.Model {
|
|
73351
|
+
/**
|
|
73352
|
+
* @remarks
|
|
73353
|
+
* The IDs of elasticity assurances.
|
|
73354
|
+
*
|
|
73355
|
+
* **Limits**: You can renew up to 20 elasticity assurances at a time.
|
|
73356
|
+
*
|
|
73357
|
+
* You can call the [DescribeElasticityAssurances](https://help.aliyun.com/document_detail/2679748.html) operation to query the elasticity assurances that you purchased.
|
|
73358
|
+
*/
|
|
72898
73359
|
id?: string[];
|
|
72899
73360
|
static names(): {
|
|
72900
73361
|
[key: string]: string;
|
|
@@ -74331,10 +74792,10 @@ export declare class RunInstancesRequestImageOptions extends $tea.Model {
|
|
|
74331
74792
|
export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
|
|
74332
74793
|
/**
|
|
74333
74794
|
* @remarks
|
|
74334
|
-
* Specifies whether to
|
|
74795
|
+
* Specifies whether to release ENI N when the associated instance is released. Valid values:
|
|
74335
74796
|
*
|
|
74336
|
-
* * true
|
|
74337
|
-
* * false
|
|
74797
|
+
* * true
|
|
74798
|
+
* * false
|
|
74338
74799
|
*
|
|
74339
74800
|
* Default value: true.
|
|
74340
74801
|
*
|
|
@@ -74348,11 +74809,11 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
|
|
|
74348
74809
|
* @remarks
|
|
74349
74810
|
* The description of ENI N.
|
|
74350
74811
|
*
|
|
74351
|
-
*
|
|
74812
|
+
* When you specify this parameter, take note of the following items:
|
|
74352
74813
|
*
|
|
74353
|
-
* *
|
|
74814
|
+
* * The value of N cannot exceed the maximum number of ENIs per instance that the instance type supports. For the maximum number of ENIs per instance that an instance type supports, see [Overview of instance families](https://help.aliyun.com/document_detail/25378.html) or call the [DescribeInstanceTypes](https://help.aliyun.com/document_detail/2679699.html) operation.
|
|
74354
74815
|
* * The description must be 2 to 256 characters in length and cannot start with `http://` or `https://`.
|
|
74355
|
-
* * If `NetworkInterface.N.InstanceType`
|
|
74816
|
+
* * If you set `NetworkInterface.N.InstanceType` to `Primary`, you do not need to specify this parameter.
|
|
74356
74817
|
*
|
|
74357
74818
|
* @example
|
|
74358
74819
|
* Network_Description
|
|
@@ -74360,12 +74821,12 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
|
|
|
74360
74821
|
description?: string;
|
|
74361
74822
|
/**
|
|
74362
74823
|
* @remarks
|
|
74363
|
-
* The type of ENI N.
|
|
74824
|
+
* The type of ENI N. The value of N cannot exceed the maximum number of ENIs per instance that the instance type supports. For the maximum number of ENIs per instance that an instance type supports, see [Overview of instance families](https://help.aliyun.com/document_detail/25378.html) or call the [DescribeInstanceTypes](https://help.aliyun.com/document_detail/2679699.html) operation.
|
|
74364
74825
|
*
|
|
74365
74826
|
* Valid values:
|
|
74366
74827
|
*
|
|
74367
|
-
* * Primary:
|
|
74368
|
-
* * Secondary:
|
|
74828
|
+
* * Primary: primary ENI.
|
|
74829
|
+
* * Secondary: secondary ENI.
|
|
74369
74830
|
*
|
|
74370
74831
|
* Default value: Secondary.
|
|
74371
74832
|
*
|
|
@@ -74375,13 +74836,13 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
|
|
|
74375
74836
|
instanceType?: string;
|
|
74376
74837
|
/**
|
|
74377
74838
|
* @remarks
|
|
74378
|
-
* IPv6
|
|
74839
|
+
* The IPv6 addresses to assign to the primary ENI. You can assign up to 10 IPv6 addresses to the primary ENI. Valid values of the second N: 1 to 10.
|
|
74379
74840
|
*
|
|
74380
74841
|
* Example: `Ipv6Address.1=2001:db8:1234:1a00::***`.
|
|
74381
74842
|
*
|
|
74382
|
-
*
|
|
74843
|
+
* When you specify this parameter, take note of the following items:
|
|
74383
74844
|
*
|
|
74384
|
-
* * This parameter is valid only when `NetworkInterface.N.InstanceType` is set to `Primary`. If `NetworkInterface.N.InstanceType`
|
|
74845
|
+
* * This parameter is valid only when `NetworkInterface.N.InstanceType` is set to `Primary`. If you set `NetworkInterface.N.InstanceType` to `Secondary` or leave NetworkInterface.N.InstanceType empty, you cannot specify this parameter.
|
|
74385
74846
|
* * If you specify this parameter, you must set `Amount` to 1 and cannot specify `Ipv6AddressCount`, `Ipv6Address.N`, or `NetworkInterface.N.Ipv6AddressCount`.
|
|
74386
74847
|
*/
|
|
74387
74848
|
ipv6Address?: string[];
|
|
@@ -74389,10 +74850,10 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
|
|
|
74389
74850
|
* @remarks
|
|
74390
74851
|
* The number of IPv6 addresses to randomly generate for the primary ENI. Valid values: 1 to 10.
|
|
74391
74852
|
*
|
|
74392
|
-
*
|
|
74853
|
+
* When you specify this parameter, take note of the following items:
|
|
74393
74854
|
*
|
|
74394
|
-
* * This parameter is valid only when `NetworkInterface.N.InstanceType` is set to `Primary`. If `NetworkInterface.N.InstanceType`
|
|
74395
|
-
* * If this parameter
|
|
74855
|
+
* * This parameter is valid only when `NetworkInterface.N.InstanceType` is set to `Primary`. If you set `NetworkInterface.N.InstanceType` to `Secondary` or leave NetworkInterface.N.InstanceType empty, you cannot specify this parameter.
|
|
74856
|
+
* * If you specify this parameter, you cannot specify `Ipv6AddressCount`, `Ipv6Address.N`, or `NetworkInterface.N.Ipv6Address.N`.
|
|
74396
74857
|
*
|
|
74397
74858
|
* @example
|
|
74398
74859
|
* 1
|
|
@@ -74402,11 +74863,11 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
|
|
|
74402
74863
|
* @remarks
|
|
74403
74864
|
* The index of the network card for ENI N.
|
|
74404
74865
|
*
|
|
74405
|
-
*
|
|
74866
|
+
* When you specify this parameter, take note of the following items:
|
|
74406
74867
|
*
|
|
74407
74868
|
* * You can specify network card indexes only for instances of specific instance types.
|
|
74408
|
-
* *
|
|
74409
|
-
* *
|
|
74869
|
+
* * If you set NetworkInterface.N.InstanceType to Primary, you can set NetworkInterface.N.NetworkCardIndex only to 0 for instance types that support network cards.
|
|
74870
|
+
* * If you set NetworkInterface.N.InstanceType to Secondary or do not specify the parameter, you can specify NetworkInterface.N.NetworkCardIndex based on instance types if the instance types support network cards. For more information, see [Overview of instance families](https://help.aliyun.com/document_detail/25378.html).
|
|
74410
74871
|
*
|
|
74411
74872
|
* @example
|
|
74412
74873
|
* 0
|
|
@@ -74426,10 +74887,10 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
|
|
|
74426
74887
|
* @remarks
|
|
74427
74888
|
* The name of ENI N. The name must be 2 to 128 characters in length and can contain letters, digits, colons (:), underscores (_), periods (.), and hyphens (-).
|
|
74428
74889
|
*
|
|
74429
|
-
*
|
|
74890
|
+
* When you specify this parameter, take note of the following items:
|
|
74430
74891
|
*
|
|
74431
|
-
* *
|
|
74432
|
-
* * If `NetworkInterface.N.InstanceType`
|
|
74892
|
+
* * 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.
|
|
74893
|
+
* * If you set `NetworkInterface.N.InstanceType` to `Primary`, you do not need to specify this parameter.
|
|
74433
74894
|
*
|
|
74434
74895
|
* @example
|
|
74435
74896
|
* Network_Name
|
|
@@ -74454,21 +74915,19 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
|
|
|
74454
74915
|
* @remarks
|
|
74455
74916
|
* The primary IP address to assign to ENI N.
|
|
74456
74917
|
*
|
|
74457
|
-
*
|
|
74918
|
+
* When you specify this parameter, take note of the following items:
|
|
74458
74919
|
*
|
|
74459
|
-
* *
|
|
74920
|
+
* * The value of N cannot exceed the maximum number of ENIs per instance that the instance type supports. For the maximum number of ENIs per instance that an instance type supports, see [Overview of instance families](https://help.aliyun.com/document_detail/25378.html) or call the [DescribeInstanceTypes](https://help.aliyun.com/document_detail/2679699.html) operation.
|
|
74460
74921
|
*
|
|
74461
|
-
* * If the value of N is 1, you can configure a primary or secondary ENI. If this parameter
|
|
74462
|
-
* * If
|
|
74922
|
+
* * If the value of N is 1, you can configure a primary or secondary ENI. If you specify this parameter, set `Amount` to a numeric value greater than 1, and set NetworkInterface.N.InstanceType to Primary, the specified number of instances are created and consecutive primary IP addresses starting from the specified IP address are assigned to the instances. In this case, you cannot attach secondary ENIs to the instances.
|
|
74923
|
+
* * If you specify this parameter, set `Amount` to a numeric value greater than 1, and set NetworkInterface.N.InstanceType to Primary, you cannot set `NetworkInterface.2.InstanceType` to Secondary to attach a secondary ENI.
|
|
74463
74924
|
*
|
|
74464
|
-
* * If `NetworkInterface.N.InstanceType`
|
|
74925
|
+
* * If you set `NetworkInterface.N.InstanceType` to `Primary`, this parameter is equivalent to `PrivateIpAddress`. You cannot specify both this parameter and `PrivateIpAddress` in the same request.
|
|
74465
74926
|
*
|
|
74466
|
-
* * If `NetworkInterface.N.InstanceType`
|
|
74927
|
+
* * If you set `NetworkInterface.N.InstanceType` to `Secondary` or leave NetworkInterface.N.InstanceType empty, the specified primary IP address is assigned to the secondary ENI. The default value is an IP address that is randomly selected from within the CIDR block of the vSwitch to which to connect the secondary ENI.
|
|
74467
74928
|
*
|
|
74468
74929
|
* >
|
|
74469
74930
|
*
|
|
74470
|
-
* * You can attach only a single secondary ENI when you create an ECS instance. After the instance is created, you can call the [CreateNetworkInterface](https://help.aliyun.com/document_detail/58504.html) and [AttachNetworkInterface](https://help.aliyun.com/document_detail/58515.html) operations to attach more secondary ENIs.
|
|
74471
|
-
*
|
|
74472
74931
|
* * The first IP address and last three IP addresses of each vSwitch CIDR block are reserved. You cannot specify the IP addresses. For example, if a vSwitch CIDR block is 192.168.1.0/24, the following IP addresses are reserved: 192.168.1.0, 192.168.1.253, 192.168.1.254, and 192.168.1.255.
|
|
74473
74932
|
*
|
|
74474
74933
|
* @example
|
|
@@ -74479,12 +74938,12 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
|
|
|
74479
74938
|
* @remarks
|
|
74480
74939
|
* The number of queues supported by ENI N.
|
|
74481
74940
|
*
|
|
74482
|
-
*
|
|
74941
|
+
* When you specify this parameter, take note of the following items:
|
|
74483
74942
|
*
|
|
74484
|
-
* *
|
|
74943
|
+
* * The value of N cannot exceed the maximum number of ENIs per instance that the instance type supports. For the maximum number of ENIs per instance that an instance type supports, see [Overview of instance families](https://help.aliyun.com/document_detail/25378.html) or call the [DescribeInstanceTypes](https://help.aliyun.com/document_detail/2679699.html) operation.
|
|
74485
74944
|
* * The value of this parameter cannot exceed the maximum number of queues allowed per ENI.
|
|
74486
74945
|
* * The total number of queues for all ENIs on the instance cannot exceed the queue quota for the instance type. To query the maximum number of queues per ENI and the queue quota for an instance type, you can call the [DescribeInstanceTypes](https://help.aliyun.com/document_detail/25620.html) operation and check the `MaximumQueueNumberPerEni` and `TotalEniQueueQuantity` values in the response.
|
|
74487
|
-
* * If this parameter
|
|
74946
|
+
* * If you specify this parameter and set `NetworkInterface.N.InstanceType` to `Primary`, you cannot specify `NetworkInterfaceQueueNumber`.
|
|
74488
74947
|
*
|
|
74489
74948
|
* @example
|
|
74490
74949
|
* 8
|
|
@@ -74502,7 +74961,7 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
|
|
|
74502
74961
|
* @remarks
|
|
74503
74962
|
* The receive (Rx) queue depth of ENI N.
|
|
74504
74963
|
*
|
|
74505
|
-
*
|
|
74964
|
+
* When you specify this parameter, take note of the following items:
|
|
74506
74965
|
*
|
|
74507
74966
|
* * The Rx queue depth of an ENI must be the same as the transmit (Tx) queue depth of the ENI. Valid values: powers of 2 in the range of 8192 to 16384.
|
|
74508
74967
|
* * A larger Rx queue depth yields higher inbound throughput but consumes more memory.
|
|
@@ -74515,11 +74974,11 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
|
|
|
74515
74974
|
* @remarks
|
|
74516
74975
|
* The ID of the security group to which to assign ENI N.
|
|
74517
74976
|
*
|
|
74518
|
-
*
|
|
74977
|
+
* When you specify this parameter, take note of the following items:
|
|
74519
74978
|
*
|
|
74520
|
-
* *
|
|
74521
|
-
* * If `NetworkInterface.N.InstanceType`
|
|
74522
|
-
* * If `NetworkInterface.N.InstanceType`
|
|
74979
|
+
* * 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.
|
|
74980
|
+
* * If you set `NetworkInterface.N.InstanceType` to `Primary`, you must specify this parameter. In this case, this parameter is equivalent to `SecurityGroupId` and you cannot specify `SecurityGroupId`, `SecurityGroupIds.N`, or `NetworkInterface.N.SecurityGroupIds.N`.
|
|
74981
|
+
* * If you set `NetworkInterface.N.InstanceType` to `Secondary` or leave NetworkInterface.N.InstanceType empty, you do not need to specify this parameter. The default value is the ID of the security group to which to assign the instance.
|
|
74523
74982
|
*
|
|
74524
74983
|
* @example
|
|
74525
74984
|
* sg-bp67acfmxazb4p****
|
|
@@ -74527,15 +74986,15 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
|
|
|
74527
74986
|
securityGroupId?: string;
|
|
74528
74987
|
/**
|
|
74529
74988
|
* @remarks
|
|
74530
|
-
* The
|
|
74989
|
+
* The IDs of security groups to which to assign ENI N.
|
|
74531
74990
|
*
|
|
74532
|
-
* *
|
|
74533
|
-
* * The second N indicates that one or more security group IDs can be specified. The valid values of N vary based on the maximum number of security groups to which an instance can belong. For more information, see the [Security group limits](~~25412#SecurityGroupQuota1~~) section of the "Limits" topic.
|
|
74991
|
+
* * The value of the first N cannot exceed the maximum number of ENIs per instance that the instance type supports. For the maximum number of ENIs per instance that an instance type supports, see [Overview of instance families](https://help.aliyun.com/document_detail/25378.html) or call the [DescribeInstanceTypes](https://help.aliyun.com/document_detail/2679699.html) operation.
|
|
74992
|
+
* * The second N indicates that one or more security group IDs can be specified. The valid values of the second N vary based on the maximum number of security groups to which an instance can belong. For more information, see the [Security group limits](~~25412#SecurityGroupQuota1~~) section of the "Limits" topic.
|
|
74534
74993
|
*
|
|
74535
|
-
*
|
|
74994
|
+
* When you specify this parameter, take note of the following items:
|
|
74536
74995
|
*
|
|
74537
|
-
* * If `NetworkInterface.N.InstanceType`
|
|
74538
|
-
* * If `NetworkInterface.N.InstanceType`
|
|
74996
|
+
* * If you set `NetworkInterface.N.InstanceType` to `Primary`, you must specify this parameter or `NetworkInterface.N.SecurityGroupId`. In this case, this parameter is equivalent to `SecurityGroupIds.N`, and you cannot specify `SecurityGroupId`, `SecurityGroupIds.N`, or `NetworkInterface.N.SecurityGroupId`.
|
|
74997
|
+
* * If you set `NetworkInterface.N.InstanceType` to `Secondary` or leave NetworkInterface.N.InstanceType empty, you do not need to specify this parameter. The default value is the ID of the security group to which to assign the instance.
|
|
74539
74998
|
*
|
|
74540
74999
|
* @example
|
|
74541
75000
|
* sg-bp15ed6xe1yxeycg7****
|
|
@@ -74545,7 +75004,7 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
|
|
|
74545
75004
|
* @remarks
|
|
74546
75005
|
* The Tx queue depth of ENI N.
|
|
74547
75006
|
*
|
|
74548
|
-
*
|
|
75007
|
+
* When you specify this parameter, take note of the following items:
|
|
74549
75008
|
*
|
|
74550
75009
|
* * The Tx queue depth of an ENI must be the same as the Rx queue depth of the ENI. Valid values: powers of 2 in the range of 8192 to 16384.
|
|
74551
75010
|
* * A larger Tx queue depth yields higher outbound throughput but consumes more memory.
|
|
@@ -74558,11 +75017,11 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
|
|
|
74558
75017
|
* @remarks
|
|
74559
75018
|
* The ID of the vSwitch to which to connect ENI N.
|
|
74560
75019
|
*
|
|
74561
|
-
*
|
|
75020
|
+
* When you specify this parameter, take note of the following items:
|
|
74562
75021
|
*
|
|
74563
|
-
* *
|
|
74564
|
-
* * If `NetworkInterface.N.InstanceType`
|
|
74565
|
-
* * If `NetworkInterface.N.InstanceType`
|
|
75022
|
+
* * 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.
|
|
75023
|
+
* * If you set `NetworkInterface.N.InstanceType` to `Primary`, you must specify this parameter. In this case, this parameter is equivalent to `VSwitchId`. You cannot specify both NetworkInterface.N.VSwitchId and `VSwitchId` in the same request.
|
|
75024
|
+
* * If you set `NetworkInterface.N.InstanceType` to `Secondary` or leave NetworkInterface.N.InstanceType empty, you do not need to specify this parameter. The default value is the VSwitchId value.
|
|
74566
75025
|
*
|
|
74567
75026
|
* @example
|
|
74568
75027
|
* vsw-bp67acfmxazb4p****
|
|
@@ -76001,7 +76460,7 @@ export default class Client extends OpenApi {
|
|
|
76001
76460
|
*/
|
|
76002
76461
|
createDemand(request: CreateDemandRequest): Promise<CreateDemandResponse>;
|
|
76003
76462
|
/**
|
|
76004
|
-
*
|
|
76463
|
+
* Creates a deployment set in a region.
|
|
76005
76464
|
*
|
|
76006
76465
|
* @param request - CreateDeploymentSetRequest
|
|
76007
76466
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -76009,7 +76468,7 @@ export default class Client extends OpenApi {
|
|
|
76009
76468
|
*/
|
|
76010
76469
|
createDeploymentSetWithOptions(request: CreateDeploymentSetRequest, runtime: $Util.RuntimeOptions): Promise<CreateDeploymentSetResponse>;
|
|
76011
76470
|
/**
|
|
76012
|
-
*
|
|
76471
|
+
* Creates a deployment set in a region.
|
|
76013
76472
|
*
|
|
76014
76473
|
* @param request - CreateDeploymentSetRequest
|
|
76015
76474
|
* @returns CreateDeploymentSetResponse
|
|
@@ -76046,7 +76505,7 @@ export default class Client extends OpenApi {
|
|
|
76046
76505
|
*/
|
|
76047
76506
|
createDiagnosticReport(request: CreateDiagnosticReportRequest): Promise<CreateDiagnosticReportResponse>;
|
|
76048
76507
|
/**
|
|
76049
|
-
* Creates a pay-as-you-go or subscription data disk.
|
|
76508
|
+
* Creates a pay-as-you-go or subscription data disk. When you call this operation, you can specify parameters, such as ZoneId, SnapshotId, Size, and DiskCategory, in the request.
|
|
76050
76509
|
*
|
|
76051
76510
|
* @remarks
|
|
76052
76511
|
* ## [](#)Usage notes
|
|
@@ -76064,7 +76523,7 @@ export default class Client extends OpenApi {
|
|
|
76064
76523
|
*/
|
|
76065
76524
|
createDiskWithOptions(request: CreateDiskRequest, runtime: $Util.RuntimeOptions): Promise<CreateDiskResponse>;
|
|
76066
76525
|
/**
|
|
76067
|
-
* Creates a pay-as-you-go or subscription data disk.
|
|
76526
|
+
* Creates a pay-as-you-go or subscription data disk. When you call this operation, you can specify parameters, such as ZoneId, SnapshotId, Size, and DiskCategory, in the request.
|
|
76068
76527
|
*
|
|
76069
76528
|
* @remarks
|
|
76070
76529
|
* ## [](#)Usage notes
|
|
@@ -76268,7 +76727,7 @@ export default class Client extends OpenApi {
|
|
|
76268
76727
|
*/
|
|
76269
76728
|
createImagePipeline(request: CreateImagePipelineRequest): Promise<CreateImagePipelineResponse>;
|
|
76270
76729
|
/**
|
|
76271
|
-
* Creates a subscription or pay-as-you-go Elastic Compute Service (ECS) instance.
|
|
76730
|
+
* Creates a subscription or pay-as-you-go Elastic Compute Service (ECS) instance. When you call this operation, you can specify parameters, such as ImageId, InstanceType, SecurityGroupId, and InternetChargeType, in the request.
|
|
76272
76731
|
*
|
|
76273
76732
|
* @remarks
|
|
76274
76733
|
* ## [](#)Usage notes
|
|
@@ -76316,7 +76775,7 @@ export default class Client extends OpenApi {
|
|
|
76316
76775
|
*/
|
|
76317
76776
|
createInstanceWithOptions(request: CreateInstanceRequest, runtime: $Util.RuntimeOptions): Promise<CreateInstanceResponse>;
|
|
76318
76777
|
/**
|
|
76319
|
-
* Creates a subscription or pay-as-you-go Elastic Compute Service (ECS) instance.
|
|
76778
|
+
* Creates a subscription or pay-as-you-go Elastic Compute Service (ECS) instance. When you call this operation, you can specify parameters, such as ImageId, InstanceType, SecurityGroupId, and InternetChargeType, in the request.
|
|
76320
76779
|
*
|
|
76321
76780
|
* @remarks
|
|
76322
76781
|
* ## [](#)Usage notes
|
|
@@ -76974,7 +77433,10 @@ export default class Client extends OpenApi {
|
|
|
76974
77433
|
*/
|
|
76975
77434
|
deleteDemand(request: DeleteDemandRequest): Promise<DeleteDemandResponse>;
|
|
76976
77435
|
/**
|
|
76977
|
-
* Deletes a deployment set in a region.
|
|
77436
|
+
* Deletes a deployment set in a region. When you call this operation, specify parameters such as RegionId and DeploymentSetId in the request.
|
|
77437
|
+
*
|
|
77438
|
+
* @remarks
|
|
77439
|
+
* Before you delete a deployment set, make sure that no instances exist in the deployment set. If instances exist in the deployment set, move the instances to a different deployment set or release the instances before you delete the deployment set. For more information, see [Change the deployment set of an instance](https://help.aliyun.com/document_detail/108407.html) and [Release an ECS instance](https://help.aliyun.com/document_detail/25442.html).
|
|
76978
77440
|
*
|
|
76979
77441
|
* @param request - DeleteDeploymentSetRequest
|
|
76980
77442
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -76982,7 +77444,10 @@ export default class Client extends OpenApi {
|
|
|
76982
77444
|
*/
|
|
76983
77445
|
deleteDeploymentSetWithOptions(request: DeleteDeploymentSetRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDeploymentSetResponse>;
|
|
76984
77446
|
/**
|
|
76985
|
-
* Deletes a deployment set in a region.
|
|
77447
|
+
* Deletes a deployment set in a region. When you call this operation, specify parameters such as RegionId and DeploymentSetId in the request.
|
|
77448
|
+
*
|
|
77449
|
+
* @remarks
|
|
77450
|
+
* Before you delete a deployment set, make sure that no instances exist in the deployment set. If instances exist in the deployment set, move the instances to a different deployment set or release the instances before you delete the deployment set. For more information, see [Change the deployment set of an instance](https://help.aliyun.com/document_detail/108407.html) and [Release an ECS instance](https://help.aliyun.com/document_detail/25442.html).
|
|
76986
77451
|
*
|
|
76987
77452
|
* @param request - DeleteDeploymentSetRequest
|
|
76988
77453
|
* @returns DeleteDeploymentSetResponse
|
|
@@ -78028,7 +78493,7 @@ export default class Client extends OpenApi {
|
|
|
78028
78493
|
*/
|
|
78029
78494
|
describeDemands(request: DescribeDemandsRequest): Promise<DescribeDemandsResponse>;
|
|
78030
78495
|
/**
|
|
78031
|
-
* Queries the instance families that support deployment
|
|
78496
|
+
* Queries the instance families that support different deployment strategies. When you call this operation, specify parameters, such as RegionId and Strategy, in the request.
|
|
78032
78497
|
*
|
|
78033
78498
|
* @remarks
|
|
78034
78499
|
* ## [](#)Usage notes
|
|
@@ -78040,7 +78505,7 @@ export default class Client extends OpenApi {
|
|
|
78040
78505
|
*/
|
|
78041
78506
|
describeDeploymentSetSupportedInstanceTypeFamilyWithOptions(request: DescribeDeploymentSetSupportedInstanceTypeFamilyRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDeploymentSetSupportedInstanceTypeFamilyResponse>;
|
|
78042
78507
|
/**
|
|
78043
|
-
* Queries the instance families that support deployment
|
|
78508
|
+
* Queries the instance families that support different deployment strategies. When you call this operation, specify parameters, such as RegionId and Strategy, in the request.
|
|
78044
78509
|
*
|
|
78045
78510
|
* @remarks
|
|
78046
78511
|
* ## [](#)Usage notes
|
|
@@ -78051,7 +78516,7 @@ export default class Client extends OpenApi {
|
|
|
78051
78516
|
*/
|
|
78052
78517
|
describeDeploymentSetSupportedInstanceTypeFamily(request: DescribeDeploymentSetSupportedInstanceTypeFamilyRequest): Promise<DescribeDeploymentSetSupportedInstanceTypeFamilyResponse>;
|
|
78053
78518
|
/**
|
|
78054
|
-
* Queries the
|
|
78519
|
+
* Queries the details of one or more deployment sets. When you call this operation, you can specify parameters, such as DeploymentSetIds, Strategy, and DeploymentSetName, in the request.
|
|
78055
78520
|
*
|
|
78056
78521
|
* @param request - DescribeDeploymentSetsRequest
|
|
78057
78522
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -78059,7 +78524,7 @@ export default class Client extends OpenApi {
|
|
|
78059
78524
|
*/
|
|
78060
78525
|
describeDeploymentSetsWithOptions(request: DescribeDeploymentSetsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDeploymentSetsResponse>;
|
|
78061
78526
|
/**
|
|
78062
|
-
* Queries the
|
|
78527
|
+
* Queries the details of one or more deployment sets. When you call this operation, you can specify parameters, such as DeploymentSetIds, Strategy, and DeploymentSetName, in the request.
|
|
78063
78528
|
*
|
|
78064
78529
|
* @param request - DescribeDeploymentSetsRequest
|
|
78065
78530
|
* @returns DescribeDeploymentSetsResponse
|
|
@@ -78126,15 +78591,45 @@ export default class Client extends OpenApi {
|
|
|
78126
78591
|
*/
|
|
78127
78592
|
describeDiagnosticReports(request: DescribeDiagnosticReportsRequest): Promise<DescribeDiagnosticReportsResponse>;
|
|
78128
78593
|
/**
|
|
78129
|
-
*
|
|
78594
|
+
* 查询云盘默认加密加密密钥
|
|
78595
|
+
*
|
|
78596
|
+
* @param request - DescribeDiskDefaultKMSKeyIdRequest
|
|
78597
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
78598
|
+
* @returns DescribeDiskDefaultKMSKeyIdResponse
|
|
78599
|
+
*/
|
|
78600
|
+
describeDiskDefaultKMSKeyIdWithOptions(request: DescribeDiskDefaultKMSKeyIdRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiskDefaultKMSKeyIdResponse>;
|
|
78601
|
+
/**
|
|
78602
|
+
* 查询云盘默认加密加密密钥
|
|
78603
|
+
*
|
|
78604
|
+
* @param request - DescribeDiskDefaultKMSKeyIdRequest
|
|
78605
|
+
* @returns DescribeDiskDefaultKMSKeyIdResponse
|
|
78606
|
+
*/
|
|
78607
|
+
describeDiskDefaultKMSKeyId(request: DescribeDiskDefaultKMSKeyIdRequest): Promise<DescribeDiskDefaultKMSKeyIdResponse>;
|
|
78608
|
+
/**
|
|
78609
|
+
* 检查云盘默认加密开启状态
|
|
78610
|
+
*
|
|
78611
|
+
* @param request - DescribeDiskEncryptionByDefaultStatusRequest
|
|
78612
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
78613
|
+
* @returns DescribeDiskEncryptionByDefaultStatusResponse
|
|
78614
|
+
*/
|
|
78615
|
+
describeDiskEncryptionByDefaultStatusWithOptions(request: DescribeDiskEncryptionByDefaultStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiskEncryptionByDefaultStatusResponse>;
|
|
78616
|
+
/**
|
|
78617
|
+
* 检查云盘默认加密开启状态
|
|
78618
|
+
*
|
|
78619
|
+
* @param request - DescribeDiskEncryptionByDefaultStatusRequest
|
|
78620
|
+
* @returns DescribeDiskEncryptionByDefaultStatusResponse
|
|
78621
|
+
*/
|
|
78622
|
+
describeDiskEncryptionByDefaultStatus(request: DescribeDiskEncryptionByDefaultStatusRequest): Promise<DescribeDiskEncryptionByDefaultStatusResponse>;
|
|
78623
|
+
/**
|
|
78624
|
+
* Queries the monitoring data of a disk in a specific period of time. When you call this operation, you can specify parameters, such as DiskId, StartTime, and EndTime, in the request.
|
|
78130
78625
|
*
|
|
78131
78626
|
* @remarks
|
|
78132
78627
|
* ## [](#)Usage notes
|
|
78133
78628
|
* You can query the following monitoring data of a disk: the read IOPS, write IOPS, read bandwidth (byte/s), write bandwidth (byte/s), read latency (microseconds), and write latency (microseconds).
|
|
78134
78629
|
* Take note of the following items:
|
|
78135
|
-
* *
|
|
78630
|
+
* * Monitoring data of only disks that are in the In Use (`In_use`) state can be queried. For more information, see [Disk states](https://help.aliyun.com/document_detail/25689.html).
|
|
78136
78631
|
* **
|
|
78137
|
-
* **Note** Some information may be missing from the monitoring data of a disk because the disk is not in the In Use (
|
|
78632
|
+
* **Note** Some information may be missing from the monitoring data of a disk because the disk is not in the In Use `(In_use)` state and the system cannot obtain the relevant information.
|
|
78138
78633
|
* * Up to 400 monitoring data entries can be returned at a time. Make sure that the `TotalCount` value does not exceed 400. The value is calculated by using the following formula: `TotalCount = (EndTime - StartTime)/Period`. If the TotalCount value is greater than 400, the `InvalidParameter.TooManyDataQueried` error is returned.
|
|
78139
78634
|
* * You can query the monitoring data in the last 30 days. If the value of `StartTime` is more than 30 days earlier than the current time, an error is returned.
|
|
78140
78635
|
*
|
|
@@ -78144,15 +78639,15 @@ export default class Client extends OpenApi {
|
|
|
78144
78639
|
*/
|
|
78145
78640
|
describeDiskMonitorDataWithOptions(request: DescribeDiskMonitorDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiskMonitorDataResponse>;
|
|
78146
78641
|
/**
|
|
78147
|
-
* Queries the monitoring data of a disk in a specific period of time.
|
|
78642
|
+
* Queries the monitoring data of a disk in a specific period of time. When you call this operation, you can specify parameters, such as DiskId, StartTime, and EndTime, in the request.
|
|
78148
78643
|
*
|
|
78149
78644
|
* @remarks
|
|
78150
78645
|
* ## [](#)Usage notes
|
|
78151
78646
|
* You can query the following monitoring data of a disk: the read IOPS, write IOPS, read bandwidth (byte/s), write bandwidth (byte/s), read latency (microseconds), and write latency (microseconds).
|
|
78152
78647
|
* Take note of the following items:
|
|
78153
|
-
* *
|
|
78648
|
+
* * Monitoring data of only disks that are in the In Use (`In_use`) state can be queried. For more information, see [Disk states](https://help.aliyun.com/document_detail/25689.html).
|
|
78154
78649
|
* **
|
|
78155
|
-
* **Note** Some information may be missing from the monitoring data of a disk because the disk is not in the In Use (
|
|
78650
|
+
* **Note** Some information may be missing from the monitoring data of a disk because the disk is not in the In Use `(In_use)` state and the system cannot obtain the relevant information.
|
|
78156
78651
|
* * Up to 400 monitoring data entries can be returned at a time. Make sure that the `TotalCount` value does not exceed 400. The value is calculated by using the following formula: `TotalCount = (EndTime - StartTime)/Period`. If the TotalCount value is greater than 400, the `InvalidParameter.TooManyDataQueried` error is returned.
|
|
78157
78652
|
* * You can query the monitoring data in the last 30 days. If the value of `StartTime` is more than 30 days earlier than the current time, an error is returned.
|
|
78158
78653
|
*
|
|
@@ -78477,7 +78972,7 @@ export default class Client extends OpenApi {
|
|
|
78477
78972
|
*/
|
|
78478
78973
|
describeImageSupportInstanceTypes(request: DescribeImageSupportInstanceTypesRequest): Promise<DescribeImageSupportInstanceTypesResponse>;
|
|
78479
78974
|
/**
|
|
78480
|
-
* Queries available images.
|
|
78975
|
+
* Queries available images. When you call this operation, you can specify parameters, such as ImageId, ImageFamily, and InstanceType, in the request.
|
|
78481
78976
|
*
|
|
78482
78977
|
* @remarks
|
|
78483
78978
|
* ## [](#)Usage notes
|
|
@@ -78492,7 +78987,7 @@ export default class Client extends OpenApi {
|
|
|
78492
78987
|
*/
|
|
78493
78988
|
describeImagesWithOptions(request: DescribeImagesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeImagesResponse>;
|
|
78494
78989
|
/**
|
|
78495
|
-
* Queries available images.
|
|
78990
|
+
* Queries available images. When you call this operation, you can specify parameters, such as ImageId, ImageFamily, and InstanceType, in the request.
|
|
78496
78991
|
*
|
|
78497
78992
|
* @remarks
|
|
78498
78993
|
* ## [](#)Usage notes
|
|
@@ -78567,7 +79062,7 @@ export default class Client extends OpenApi {
|
|
|
78567
79062
|
*/
|
|
78568
79063
|
describeInstanceAutoRenewAttribute(request: DescribeInstanceAutoRenewAttributeRequest): Promise<DescribeInstanceAutoRenewAttributeResponse>;
|
|
78569
79064
|
/**
|
|
78570
|
-
* Queries the system events of Elastic Compute Service (ECS) instances. By default, non-active system events are queried.
|
|
79065
|
+
* Queries the system events of Elastic Compute Service (ECS) instances. When you call this operation, you can specify parameters, such as InstanceId and EventType, in the request. By default, non-active system events are queried.
|
|
78571
79066
|
*
|
|
78572
79067
|
* @remarks
|
|
78573
79068
|
* You can query system events that were completed within the last 30 days. No limits apply to the time range for querying uncompleted system events.
|
|
@@ -78579,7 +79074,7 @@ export default class Client extends OpenApi {
|
|
|
78579
79074
|
*/
|
|
78580
79075
|
describeInstanceHistoryEventsWithOptions(request: DescribeInstanceHistoryEventsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceHistoryEventsResponse>;
|
|
78581
79076
|
/**
|
|
78582
|
-
* Queries the system events of Elastic Compute Service (ECS) instances. By default, non-active system events are queried.
|
|
79077
|
+
* Queries the system events of Elastic Compute Service (ECS) instances. When you call this operation, you can specify parameters, such as InstanceId and EventType, in the request. By default, non-active system events are queried.
|
|
78583
79078
|
*
|
|
78584
79079
|
* @remarks
|
|
78585
79080
|
* You can query system events that were completed within the last 30 days. No limits apply to the time range for querying uncompleted system events.
|
|
@@ -78694,7 +79189,7 @@ export default class Client extends OpenApi {
|
|
|
78694
79189
|
*/
|
|
78695
79190
|
describeInstanceRamRole(request: DescribeInstanceRamRoleRequest): Promise<DescribeInstanceRamRoleResponse>;
|
|
78696
79191
|
/**
|
|
78697
|
-
* Queries the status information of
|
|
79192
|
+
* Queries the status information of Elastic Compute Service (ECS) instances. When you call this operation, you can specify parameters, such as RegionId, ZoneId, and InstanceId, in the request.
|
|
78698
79193
|
*
|
|
78699
79194
|
* @remarks
|
|
78700
79195
|
* For information about the lifecycle states of an ECS instance, see [Instance states](https://help.aliyun.com/document_detail/25687.html).
|
|
@@ -78706,7 +79201,7 @@ export default class Client extends OpenApi {
|
|
|
78706
79201
|
*/
|
|
78707
79202
|
describeInstanceStatusWithOptions(request: DescribeInstanceStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstanceStatusResponse>;
|
|
78708
79203
|
/**
|
|
78709
|
-
* Queries the status information of
|
|
79204
|
+
* Queries the status information of Elastic Compute Service (ECS) instances. When you call this operation, you can specify parameters, such as RegionId, ZoneId, and InstanceId, in the request.
|
|
78710
79205
|
*
|
|
78711
79206
|
* @remarks
|
|
78712
79207
|
* For information about the lifecycle states of an ECS instance, see [Instance states](https://help.aliyun.com/document_detail/25687.html).
|
|
@@ -80171,6 +80666,21 @@ export default class Client extends OpenApi {
|
|
|
80171
80666
|
* @returns DisableActivationResponse
|
|
80172
80667
|
*/
|
|
80173
80668
|
disableActivation(request: DisableActivationRequest): Promise<DisableActivationResponse>;
|
|
80669
|
+
/**
|
|
80670
|
+
* 关闭云盘默认加密
|
|
80671
|
+
*
|
|
80672
|
+
* @param request - DisableDiskEncryptionByDefaultRequest
|
|
80673
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
80674
|
+
* @returns DisableDiskEncryptionByDefaultResponse
|
|
80675
|
+
*/
|
|
80676
|
+
disableDiskEncryptionByDefaultWithOptions(request: DisableDiskEncryptionByDefaultRequest, runtime: $Util.RuntimeOptions): Promise<DisableDiskEncryptionByDefaultResponse>;
|
|
80677
|
+
/**
|
|
80678
|
+
* 关闭云盘默认加密
|
|
80679
|
+
*
|
|
80680
|
+
* @param request - DisableDiskEncryptionByDefaultRequest
|
|
80681
|
+
* @returns DisableDiskEncryptionByDefaultResponse
|
|
80682
|
+
*/
|
|
80683
|
+
disableDiskEncryptionByDefault(request: DisableDiskEncryptionByDefaultRequest): Promise<DisableDiskEncryptionByDefaultResponse>;
|
|
80174
80684
|
/**
|
|
80175
80685
|
* @deprecated OpenAPI EipFillParams is deprecated
|
|
80176
80686
|
*
|
|
@@ -80216,6 +80726,21 @@ export default class Client extends OpenApi {
|
|
|
80216
80726
|
* @returns EipNotifyPaidResponse
|
|
80217
80727
|
*/
|
|
80218
80728
|
eipNotifyPaid(request: EipNotifyPaidRequest): Promise<EipNotifyPaidResponse>;
|
|
80729
|
+
/**
|
|
80730
|
+
* 启用云盘默认加密
|
|
80731
|
+
*
|
|
80732
|
+
* @param request - EnableDiskEncryptionByDefaultRequest
|
|
80733
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
80734
|
+
* @returns EnableDiskEncryptionByDefaultResponse
|
|
80735
|
+
*/
|
|
80736
|
+
enableDiskEncryptionByDefaultWithOptions(request: EnableDiskEncryptionByDefaultRequest, runtime: $Util.RuntimeOptions): Promise<EnableDiskEncryptionByDefaultResponse>;
|
|
80737
|
+
/**
|
|
80738
|
+
* 启用云盘默认加密
|
|
80739
|
+
*
|
|
80740
|
+
* @param request - EnableDiskEncryptionByDefaultRequest
|
|
80741
|
+
* @returns EnableDiskEncryptionByDefaultResponse
|
|
80742
|
+
*/
|
|
80743
|
+
enableDiskEncryptionByDefault(request: EnableDiskEncryptionByDefaultRequest): Promise<EnableDiskEncryptionByDefaultResponse>;
|
|
80219
80744
|
/**
|
|
80220
80745
|
* @deprecated OpenAPI EnablePhysicalConnection is deprecated
|
|
80221
80746
|
*
|
|
@@ -80238,7 +80763,7 @@ export default class Client extends OpenApi {
|
|
|
80238
80763
|
* ## [](#)Usage notes
|
|
80239
80764
|
* Before you export images, take note of the following items:
|
|
80240
80765
|
* * Make sure that you are familiar with the prerequisites and considerations. For more information, see [Export a custom image](https://help.aliyun.com/document_detail/58181.html).
|
|
80241
|
-
* * The `ImageFormat` parameter is available only for the following regions:
|
|
80766
|
+
* * The `ImageFormat` parameter is available only for the following regions: Japan (Tokyo), Australia (Sydney), Indonesia (Jakarta), Germany (Frankfurt), UAE (Dubai), US (Virginia), UK (London), Singapore, Malaysia (Kuala Lumpur), and US (Silicon Valley). Alibaba Cloud services will be discontinued in the India (Mumbai) region. By default, custom images are exported in the RAW format in regions where the ImageFormat parameter is unsupported.
|
|
80242
80767
|
* * Use Resource Access Management (RAM) to authorize Elastic Compute Service (ECS) to write data to OSS. To complete the authorization, perform the following operations:
|
|
80243
80768
|
* * Create a role named `AliyunECSImageExportDefaultRole` and attach the following policy to the role:
|
|
80244
80769
|
* {
|
|
@@ -80290,7 +80815,7 @@ export default class Client extends OpenApi {
|
|
|
80290
80815
|
* ## [](#)Usage notes
|
|
80291
80816
|
* Before you export images, take note of the following items:
|
|
80292
80817
|
* * Make sure that you are familiar with the prerequisites and considerations. For more information, see [Export a custom image](https://help.aliyun.com/document_detail/58181.html).
|
|
80293
|
-
* * The `ImageFormat` parameter is available only for the following regions:
|
|
80818
|
+
* * The `ImageFormat` parameter is available only for the following regions: Japan (Tokyo), Australia (Sydney), Indonesia (Jakarta), Germany (Frankfurt), UAE (Dubai), US (Virginia), UK (London), Singapore, Malaysia (Kuala Lumpur), and US (Silicon Valley). Alibaba Cloud services will be discontinued in the India (Mumbai) region. By default, custom images are exported in the RAW format in regions where the ImageFormat parameter is unsupported.
|
|
80294
80819
|
* * Use Resource Access Management (RAM) to authorize Elastic Compute Service (ECS) to write data to OSS. To complete the authorization, perform the following operations:
|
|
80295
80820
|
* * Create a role named `AliyunECSImageExportDefaultRole` and attach the following policy to the role:
|
|
80296
80821
|
* {
|
|
@@ -80737,7 +81262,7 @@ export default class Client extends OpenApi {
|
|
|
80737
81262
|
*/
|
|
80738
81263
|
joinResourceGroup(request: JoinResourceGroupRequest): Promise<JoinResourceGroupResponse>;
|
|
80739
81264
|
/**
|
|
80740
|
-
* Adds an Elastic Compute Service (ECS) instance or an elastic network interface (ENI) to a security group.
|
|
81265
|
+
* Adds an Elastic Compute Service (ECS) instance or an elastic network interface (ENI) to a security group. When you call this operation, you can specify parameters, such as SecurityGroupId, InstanceId, and NetworkInterfaceId, in the request.
|
|
80741
81266
|
*
|
|
80742
81267
|
* @remarks
|
|
80743
81268
|
* ## [](#)Usage notes
|
|
@@ -80745,11 +81270,12 @@ export default class Client extends OpenApi {
|
|
|
80745
81270
|
* Take note of the following items:
|
|
80746
81271
|
* * Before you add an instance to a security group, the instance must be in the **Stopped** (Stopped) or **Running** (Running) state.
|
|
80747
81272
|
* * An instance can be added to up to five security groups by default.
|
|
80748
|
-
* *
|
|
81273
|
+
* * You can [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex) to change the maximum number of security groups to which an instance can be added to 4 or 10.
|
|
80749
81274
|
* * A basic security group can contain up to 2,000 instances. An advanced security group can contain up to 65,536 instances.
|
|
80750
81275
|
* * The security group and the instance must reside in the same region.
|
|
80751
|
-
* * The security group and the instance must be of the same network type. If the network type is
|
|
81276
|
+
* * The security group and the instance must be of the same network type. If the network type is Virtual Private Cloud (VPC), the security group and the instance must reside in the same VPC.
|
|
80752
81277
|
* * An instance and an ENI cannot be added to a security group at the same time. You cannot specify `InstanceId` and `NetworkInterfaceId` at the same time in a request.
|
|
81278
|
+
* For more information, see [Limits](https://help.aliyun.com/document_detail/25412.html).
|
|
80753
81279
|
*
|
|
80754
81280
|
* @param request - JoinSecurityGroupRequest
|
|
80755
81281
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -80757,7 +81283,7 @@ export default class Client extends OpenApi {
|
|
|
80757
81283
|
*/
|
|
80758
81284
|
joinSecurityGroupWithOptions(request: JoinSecurityGroupRequest, runtime: $Util.RuntimeOptions): Promise<JoinSecurityGroupResponse>;
|
|
80759
81285
|
/**
|
|
80760
|
-
* Adds an Elastic Compute Service (ECS) instance or an elastic network interface (ENI) to a security group.
|
|
81286
|
+
* Adds an Elastic Compute Service (ECS) instance or an elastic network interface (ENI) to a security group. When you call this operation, you can specify parameters, such as SecurityGroupId, InstanceId, and NetworkInterfaceId, in the request.
|
|
80761
81287
|
*
|
|
80762
81288
|
* @remarks
|
|
80763
81289
|
* ## [](#)Usage notes
|
|
@@ -80765,18 +81291,19 @@ export default class Client extends OpenApi {
|
|
|
80765
81291
|
* Take note of the following items:
|
|
80766
81292
|
* * Before you add an instance to a security group, the instance must be in the **Stopped** (Stopped) or **Running** (Running) state.
|
|
80767
81293
|
* * An instance can be added to up to five security groups by default.
|
|
80768
|
-
* *
|
|
81294
|
+
* * You can [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex) to change the maximum number of security groups to which an instance can be added to 4 or 10.
|
|
80769
81295
|
* * A basic security group can contain up to 2,000 instances. An advanced security group can contain up to 65,536 instances.
|
|
80770
81296
|
* * The security group and the instance must reside in the same region.
|
|
80771
|
-
* * The security group and the instance must be of the same network type. If the network type is
|
|
81297
|
+
* * The security group and the instance must be of the same network type. If the network type is Virtual Private Cloud (VPC), the security group and the instance must reside in the same VPC.
|
|
80772
81298
|
* * An instance and an ENI cannot be added to a security group at the same time. You cannot specify `InstanceId` and `NetworkInterfaceId` at the same time in a request.
|
|
81299
|
+
* For more information, see [Limits](https://help.aliyun.com/document_detail/25412.html).
|
|
80773
81300
|
*
|
|
80774
81301
|
* @param request - JoinSecurityGroupRequest
|
|
80775
81302
|
* @returns JoinSecurityGroupResponse
|
|
80776
81303
|
*/
|
|
80777
81304
|
joinSecurityGroup(request: JoinSecurityGroupRequest): Promise<JoinSecurityGroupResponse>;
|
|
80778
81305
|
/**
|
|
80779
|
-
* Removes an Elastic Compute Service (ECS) instance or an elastic network interface (ENI) from a security group.
|
|
81306
|
+
* Removes an Elastic Compute Service (ECS) instance or an elastic network interface (ENI) from a security group. To remove an ECS instance from a security group, specify SecurityGroupId and InstanceId in the request. To remove an ENI from a security group, specify SecurityGroupId and NetworkInterfaceId in the request.
|
|
80780
81307
|
*
|
|
80781
81308
|
* @remarks
|
|
80782
81309
|
* ## [](#)Usage notes
|
|
@@ -80794,7 +81321,7 @@ export default class Client extends OpenApi {
|
|
|
80794
81321
|
*/
|
|
80795
81322
|
leaveSecurityGroupWithOptions(request: LeaveSecurityGroupRequest, runtime: $Util.RuntimeOptions): Promise<LeaveSecurityGroupResponse>;
|
|
80796
81323
|
/**
|
|
80797
|
-
* Removes an Elastic Compute Service (ECS) instance or an elastic network interface (ENI) from a security group.
|
|
81324
|
+
* Removes an Elastic Compute Service (ECS) instance or an elastic network interface (ENI) from a security group. To remove an ECS instance from a security group, specify SecurityGroupId and InstanceId in the request. To remove an ENI from a security group, specify SecurityGroupId and NetworkInterfaceId in the request.
|
|
80798
81325
|
*
|
|
80799
81326
|
* @remarks
|
|
80800
81327
|
* ## [](#)Usage notes
|
|
@@ -81130,12 +81657,16 @@ export default class Client extends OpenApi {
|
|
|
81130
81657
|
*/
|
|
81131
81658
|
modifyDemand(request: ModifyDemandRequest): Promise<ModifyDemandResponse>;
|
|
81132
81659
|
/**
|
|
81660
|
+
* Modifies the name and description of a deployment set. When you call this operation, you can specify parameters, such as DeploymentSetId and DeploymentSetName, in the request.
|
|
81661
|
+
*
|
|
81133
81662
|
* @param request - ModifyDeploymentSetAttributeRequest
|
|
81134
81663
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
81135
81664
|
* @returns ModifyDeploymentSetAttributeResponse
|
|
81136
81665
|
*/
|
|
81137
81666
|
modifyDeploymentSetAttributeWithOptions(request: ModifyDeploymentSetAttributeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDeploymentSetAttributeResponse>;
|
|
81138
81667
|
/**
|
|
81668
|
+
* Modifies the name and description of a deployment set. When you call this operation, you can specify parameters, such as DeploymentSetId and DeploymentSetName, in the request.
|
|
81669
|
+
*
|
|
81139
81670
|
* @param request - ModifyDeploymentSetAttributeRequest
|
|
81140
81671
|
* @returns ModifyDeploymentSetAttributeResponse
|
|
81141
81672
|
*/
|
|
@@ -81213,6 +81744,21 @@ export default class Client extends OpenApi {
|
|
|
81213
81744
|
* @returns ModifyDiskChargeTypeResponse
|
|
81214
81745
|
*/
|
|
81215
81746
|
modifyDiskChargeType(request: ModifyDiskChargeTypeRequest): Promise<ModifyDiskChargeTypeResponse>;
|
|
81747
|
+
/**
|
|
81748
|
+
* 修改云盘默认加密加密密钥
|
|
81749
|
+
*
|
|
81750
|
+
* @param request - ModifyDiskDefaultKMSKeyIdRequest
|
|
81751
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
81752
|
+
* @returns ModifyDiskDefaultKMSKeyIdResponse
|
|
81753
|
+
*/
|
|
81754
|
+
modifyDiskDefaultKMSKeyIdWithOptions(request: ModifyDiskDefaultKMSKeyIdRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDiskDefaultKMSKeyIdResponse>;
|
|
81755
|
+
/**
|
|
81756
|
+
* 修改云盘默认加密加密密钥
|
|
81757
|
+
*
|
|
81758
|
+
* @param request - ModifyDiskDefaultKMSKeyIdRequest
|
|
81759
|
+
* @returns ModifyDiskDefaultKMSKeyIdResponse
|
|
81760
|
+
*/
|
|
81761
|
+
modifyDiskDefaultKMSKeyId(request: ModifyDiskDefaultKMSKeyIdRequest): Promise<ModifyDiskDefaultKMSKeyIdResponse>;
|
|
81216
81762
|
/**
|
|
81217
81763
|
* Migrates disks to or from a dedicated block storage cluster, or migrates disks between different dedicated block storage clusters.
|
|
81218
81764
|
*
|
|
@@ -82397,7 +82943,7 @@ export default class Client extends OpenApi {
|
|
|
82397
82943
|
*/
|
|
82398
82944
|
modifyVpcAttribute(request: ModifyVpcAttributeRequest): Promise<ModifyVpcAttributeResponse>;
|
|
82399
82945
|
/**
|
|
82400
|
-
* Purchases a reserved instance.
|
|
82946
|
+
* Purchases a reserved instance. When you call this operation, you can specify parameters, such as InstanceType and Scope, in the request. Reserved instances can be applied to automatically offset fees for pay-as-you-go Elastic Compute Service (ECS) instances.
|
|
82401
82947
|
*
|
|
82402
82948
|
* @remarks
|
|
82403
82949
|
* ## [](#)Usage notes
|
|
@@ -82410,7 +82956,7 @@ export default class Client extends OpenApi {
|
|
|
82410
82956
|
*/
|
|
82411
82957
|
purchaseReservedInstancesOfferingWithOptions(request: PurchaseReservedInstancesOfferingRequest, runtime: $Util.RuntimeOptions): Promise<PurchaseReservedInstancesOfferingResponse>;
|
|
82412
82958
|
/**
|
|
82413
|
-
* Purchases a reserved instance.
|
|
82959
|
+
* Purchases a reserved instance. When you call this operation, you can specify parameters, such as InstanceType and Scope, in the request. Reserved instances can be applied to automatically offset fees for pay-as-you-go Elastic Compute Service (ECS) instances.
|
|
82414
82960
|
*
|
|
82415
82961
|
* @remarks
|
|
82416
82962
|
* ## [](#)Usage notes
|
|
@@ -82789,7 +83335,7 @@ export default class Client extends OpenApi {
|
|
|
82789
83335
|
*/
|
|
82790
83336
|
renewDedicatedHosts(request: RenewDedicatedHostsRequest): Promise<RenewDedicatedHostsResponse>;
|
|
82791
83337
|
/**
|
|
82792
|
-
*
|
|
83338
|
+
* Renews one or more elasticity assurances that you purchased. When you call this operation, you can specify parameters, such as PrivatePoolOptionsId and Period, in the request.
|
|
82793
83339
|
*
|
|
82794
83340
|
* @param request - RenewElasticityAssurancesRequest
|
|
82795
83341
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -82797,7 +83343,7 @@ export default class Client extends OpenApi {
|
|
|
82797
83343
|
*/
|
|
82798
83344
|
renewElasticityAssurancesWithOptions(request: RenewElasticityAssurancesRequest, runtime: $Util.RuntimeOptions): Promise<RenewElasticityAssurancesResponse>;
|
|
82799
83345
|
/**
|
|
82800
|
-
*
|
|
83346
|
+
* Renews one or more elasticity assurances that you purchased. When you call this operation, you can specify parameters, such as PrivatePoolOptionsId and Period, in the request.
|
|
82801
83347
|
*
|
|
82802
83348
|
* @param request - RenewElasticityAssurancesRequest
|
|
82803
83349
|
* @returns RenewElasticityAssurancesResponse
|
|
@@ -82942,6 +83488,21 @@ export default class Client extends OpenApi {
|
|
|
82942
83488
|
* @returns ResetDiskResponse
|
|
82943
83489
|
*/
|
|
82944
83490
|
resetDisk(request: ResetDiskRequest): Promise<ResetDiskResponse>;
|
|
83491
|
+
/**
|
|
83492
|
+
* 重置云盘默认加密加密密钥为服务密钥
|
|
83493
|
+
*
|
|
83494
|
+
* @param request - ResetDiskDefaultKMSKeyIdRequest
|
|
83495
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
83496
|
+
* @returns ResetDiskDefaultKMSKeyIdResponse
|
|
83497
|
+
*/
|
|
83498
|
+
resetDiskDefaultKMSKeyIdWithOptions(request: ResetDiskDefaultKMSKeyIdRequest, runtime: $Util.RuntimeOptions): Promise<ResetDiskDefaultKMSKeyIdResponse>;
|
|
83499
|
+
/**
|
|
83500
|
+
* 重置云盘默认加密加密密钥为服务密钥
|
|
83501
|
+
*
|
|
83502
|
+
* @param request - ResetDiskDefaultKMSKeyIdRequest
|
|
83503
|
+
* @returns ResetDiskDefaultKMSKeyIdResponse
|
|
83504
|
+
*/
|
|
83505
|
+
resetDiskDefaultKMSKeyId(request: ResetDiskDefaultKMSKeyIdRequest): Promise<ResetDiskDefaultKMSKeyIdResponse>;
|
|
82945
83506
|
/**
|
|
82946
83507
|
* Rolls back one or more disks by using an instance snapshot.
|
|
82947
83508
|
*
|