@alicloud/ecs20140526 4.4.0 → 4.4.2
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 +58 -48
- package/dist/client.js +392 -2165
- package/dist/client.js.map +1 -1
- package/package.json +1 -2
- package/src/client.ts +436 -2206
package/dist/client.d.ts
CHANGED
|
@@ -631,7 +631,7 @@ export declare class AllocatePublicIpAddressRequest extends $tea.Model {
|
|
|
631
631
|
* The public IP address. If you leave this parameter empty, the system randomly assigns a public IP address to the instance.
|
|
632
632
|
*
|
|
633
633
|
* @example
|
|
634
|
-
*
|
|
634
|
+
* 112.124.\*\*.**
|
|
635
635
|
*/
|
|
636
636
|
ipAddress?: string;
|
|
637
637
|
ownerAccount?: string;
|
|
@@ -664,7 +664,7 @@ export declare class AllocatePublicIpAddressResponseBody extends $tea.Model {
|
|
|
664
664
|
* The public IP address.
|
|
665
665
|
*
|
|
666
666
|
* @example
|
|
667
|
-
*
|
|
667
|
+
* 112.124.\*\*.**
|
|
668
668
|
*/
|
|
669
669
|
ipAddress?: string;
|
|
670
670
|
/**
|
|
@@ -963,7 +963,7 @@ export declare class AssignPrivateIpAddressesRequest extends $tea.Model {
|
|
|
963
963
|
* To assign secondary private IP addresses to the ENI, you must specify `PrivateIpAddress.N` or `SecondaryPrivateIpAddressCount` but not both.
|
|
964
964
|
*
|
|
965
965
|
* @example
|
|
966
|
-
*
|
|
966
|
+
* 10.1.\*\*.**
|
|
967
967
|
*/
|
|
968
968
|
privateIpAddress?: string[];
|
|
969
969
|
/**
|
|
@@ -6333,7 +6333,7 @@ export declare class CreateInstanceRequest extends $tea.Model {
|
|
|
6333
6333
|
* The internal IP address to assign to the instance.
|
|
6334
6334
|
*
|
|
6335
6335
|
* @example
|
|
6336
|
-
*
|
|
6336
|
+
* 192.168.\*\*.**
|
|
6337
6337
|
*/
|
|
6338
6338
|
innerIpAddress?: string;
|
|
6339
6339
|
/**
|
|
@@ -7137,7 +7137,7 @@ export declare class CreateLaunchTemplateRequest extends $tea.Model {
|
|
|
7137
7137
|
* To assign a private IP address to an instance that resides in a VPC, make sure that the IP address is an idle IP address within the CIDR block of the vSwitch specified by the `VSwitchId` parameter.
|
|
7138
7138
|
*
|
|
7139
7139
|
* @example
|
|
7140
|
-
*
|
|
7140
|
+
* 10.1.\*\*.**
|
|
7141
7141
|
*/
|
|
7142
7142
|
privateIpAddress?: string;
|
|
7143
7143
|
/**
|
|
@@ -7648,7 +7648,7 @@ export declare class CreateLaunchTemplateVersionRequest extends $tea.Model {
|
|
|
7648
7648
|
* To assign a private IP address to an instance of the VPC type, make sure that the IP address is an idle IP address within the CIDR block of the vSwitch specified by the `VSwitchId` parameter.
|
|
7649
7649
|
*
|
|
7650
7650
|
* @example
|
|
7651
|
-
*
|
|
7651
|
+
* 10.1.\*\*.**
|
|
7652
7652
|
*/
|
|
7653
7653
|
privateIpAddress?: string;
|
|
7654
7654
|
/**
|
|
@@ -8073,7 +8073,7 @@ export declare class CreateNetworkInterfaceRequest extends $tea.Model {
|
|
|
8073
8073
|
* The specified IP address must be an idle IP address within the CIDR block of the vSwitch with which to associate the ENI. If this parameter is not specified, an idle IP address is assigned from within the vSwitch CIDR block at random.
|
|
8074
8074
|
*
|
|
8075
8075
|
* @example
|
|
8076
|
-
*
|
|
8076
|
+
* 172.17.\*\*.**
|
|
8077
8077
|
*/
|
|
8078
8078
|
primaryIpAddress?: string;
|
|
8079
8079
|
/**
|
|
@@ -8083,7 +8083,7 @@ export declare class CreateNetworkInterfaceRequest extends $tea.Model {
|
|
|
8083
8083
|
* > To assign secondary private IP addresses to the ENI, you can specify the `PrivateIpAddress.N` or `SecondaryPrivateIpAddressCount` parameter, but not both.
|
|
8084
8084
|
*
|
|
8085
8085
|
* @example
|
|
8086
|
-
*
|
|
8086
|
+
* 172.17.\*\*.**
|
|
8087
8087
|
*/
|
|
8088
8088
|
privateIpAddress?: string[];
|
|
8089
8089
|
/**
|
|
@@ -8274,7 +8274,7 @@ export declare class CreateNetworkInterfaceResponseBody extends $tea.Model {
|
|
|
8274
8274
|
* The private IP address of the ENI.
|
|
8275
8275
|
*
|
|
8276
8276
|
* @example
|
|
8277
|
-
*
|
|
8277
|
+
* 172.17.\*\*.**
|
|
8278
8278
|
*/
|
|
8279
8279
|
privateIpAddress?: string;
|
|
8280
8280
|
/**
|
|
@@ -10800,7 +10800,7 @@ export declare class DeleteImageRequest extends $tea.Model {
|
|
|
10800
10800
|
* Specifies whether to forcefully delete the custom image. Valid values:
|
|
10801
10801
|
*
|
|
10802
10802
|
* * true: forcefully deletes the custom image, regardless of whether the image is being used by other instances.
|
|
10803
|
-
* * false: verifies that the image is not being used by other instances and then deletes the image.
|
|
10803
|
+
* * false: verifies that the custom image is not being used by other instances and then deletes the image.
|
|
10804
10804
|
*
|
|
10805
10805
|
* Default value: false.
|
|
10806
10806
|
*
|
|
@@ -18907,8 +18907,6 @@ export declare class DescribeImagesRequest extends $tea.Model {
|
|
|
18907
18907
|
* @remarks
|
|
18908
18908
|
* Specifies whether the subscription image has expired.
|
|
18909
18909
|
*
|
|
18910
|
-
* > This parameter will be removed in the future. We recommend that you use other parameters to ensure future compatibility.
|
|
18911
|
-
*
|
|
18912
18910
|
* @example
|
|
18913
18911
|
* false
|
|
18914
18912
|
*/
|
|
@@ -22883,7 +22881,7 @@ export declare class DescribeManagedInstancesRequest extends $tea.Model {
|
|
|
22883
22881
|
* The internal or public IP address of the managed instance.
|
|
22884
22882
|
*
|
|
22885
22883
|
* @example
|
|
22886
|
-
*
|
|
22884
|
+
* 192.168.\*\*.**
|
|
22887
22885
|
*/
|
|
22888
22886
|
instanceIp?: string;
|
|
22889
22887
|
/**
|
|
@@ -23302,7 +23300,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBody extends $tea.
|
|
|
23302
23300
|
* The private IP address of the ENI.
|
|
23303
23301
|
*
|
|
23304
23302
|
* @example
|
|
23305
|
-
*
|
|
23303
|
+
* 10.1.\*\*.**
|
|
23306
23304
|
*/
|
|
23307
23305
|
privateIpAddress?: string;
|
|
23308
23306
|
/**
|
|
@@ -23699,7 +23697,7 @@ export declare class DescribeNetworkInterfacesRequest extends $tea.Model {
|
|
|
23699
23697
|
* The primary private IPv4 address of the ENI.
|
|
23700
23698
|
*
|
|
23701
23699
|
* @example
|
|
23702
|
-
*
|
|
23700
|
+
* 192.168.\*\*.**
|
|
23703
23701
|
*/
|
|
23704
23702
|
primaryIpAddress?: string;
|
|
23705
23703
|
/**
|
|
@@ -23707,7 +23705,7 @@ export declare class DescribeNetworkInterfacesRequest extends $tea.Model {
|
|
|
23707
23705
|
* An array that consists of the secondary private IPv4 addresses of the ENI. You can specify multiple secondary private IPv4 addresses. Valid values of N: 1 to 100.
|
|
23708
23706
|
*
|
|
23709
23707
|
* @example
|
|
23710
|
-
*
|
|
23708
|
+
* 192.168.\*\*.**
|
|
23711
23709
|
*/
|
|
23712
23710
|
privateIpAddress?: string[];
|
|
23713
23711
|
/**
|
|
@@ -30907,6 +30905,8 @@ export declare class ImportImageRequest extends $tea.Model {
|
|
|
30907
30905
|
* The information about the custom image.
|
|
30908
30906
|
*/
|
|
30909
30907
|
diskDeviceMapping?: ImportImageRequestDiskDeviceMapping[];
|
|
30908
|
+
dryRun?: boolean;
|
|
30909
|
+
features?: ImportImageRequestFeatures;
|
|
30910
30910
|
/**
|
|
30911
30911
|
* @remarks
|
|
30912
30912
|
* The image name. The name must be 2 to 128 characters in length. The name must start with a letter and cannot start with `acs:` or `aliyun`. The name cannot contain `http://` or `https://`. The name can contain letters, digits, periods (.), colons (:), underscores (_), and hyphens (-).
|
|
@@ -36859,7 +36859,7 @@ export declare class ModifyInstanceVpcAttributeRequest extends $tea.Model {
|
|
|
36859
36859
|
* By default, if this parameter is not specified, a private IP address is randomly assigned from the CIDR block of the specified vSwitch.
|
|
36860
36860
|
*
|
|
36861
36861
|
* @example
|
|
36862
|
-
*
|
|
36862
|
+
* 172.17.\*\*.**
|
|
36863
36863
|
*/
|
|
36864
36864
|
privateIpAddress?: string;
|
|
36865
36865
|
resourceOwnerAccount?: string;
|
|
@@ -41028,7 +41028,7 @@ export declare class ReleasePublicIpAddressRequest extends $tea.Model {
|
|
|
41028
41028
|
* This parameter is required.
|
|
41029
41029
|
*
|
|
41030
41030
|
* @example
|
|
41031
|
-
*
|
|
41031
|
+
* 121.40.\*\*.**
|
|
41032
41032
|
*/
|
|
41033
41033
|
publicIpAddress?: string;
|
|
41034
41034
|
/**
|
|
@@ -44247,7 +44247,7 @@ export declare class RunInstancesRequest extends $tea.Model {
|
|
|
44247
44247
|
* > The first IP address and last three IP addresses of each vSwitch CIDR block are reserved. You cannot specify the IP addresses. For example, if a vSwitch CIDR block is 192.168.1.0/24, the IP addresses 192.168.1.0, 192.168.1.253, 192.168.1.254, and 192.168.1.255 are reserved.
|
|
44248
44248
|
*
|
|
44249
44249
|
* @example
|
|
44250
|
-
*
|
|
44250
|
+
* 10.1.\*\*.**
|
|
44251
44251
|
*/
|
|
44252
44252
|
privateIpAddress?: string;
|
|
44253
44253
|
/**
|
|
@@ -45779,7 +45779,7 @@ export declare class UnassignPrivateIpAddressesRequest extends $tea.Model {
|
|
|
45779
45779
|
* The secondary private IP addresses to unassign.
|
|
45780
45780
|
*
|
|
45781
45781
|
* @example
|
|
45782
|
-
*
|
|
45782
|
+
* 192.168.\*\*.**
|
|
45783
45783
|
*/
|
|
45784
45784
|
privateIpAddress?: string[];
|
|
45785
45785
|
/**
|
|
@@ -49146,7 +49146,7 @@ export declare class CreateLaunchTemplateRequestNetworkInterface extends $tea.Mo
|
|
|
49146
49146
|
* > You can attach only a single secondary ENI when you create an instance. After the instance is created, you can call the [CreateNetworkInterface](https://help.aliyun.com/document_detail/58504.html) and [AttachNetworkInterface](https://help.aliyun.com/document_detail/58515.html) operations to attach more secondary ENIs.
|
|
49147
49147
|
*
|
|
49148
49148
|
* @example
|
|
49149
|
-
*
|
|
49149
|
+
* 192.168.\*\*.**
|
|
49150
49150
|
*/
|
|
49151
49151
|
primaryIpAddress?: string;
|
|
49152
49152
|
/**
|
|
@@ -49605,7 +49605,7 @@ export declare class CreateLaunchTemplateVersionRequestNetworkInterface extends
|
|
|
49605
49605
|
* The primary private IP address of the secondary ENI. The value of N in `NetworkInterface.N` cannot be greater than 1.
|
|
49606
49606
|
*
|
|
49607
49607
|
* @example
|
|
49608
|
-
*
|
|
49608
|
+
* 192.168.\*\*.**
|
|
49609
49609
|
*/
|
|
49610
49610
|
primaryIpAddress?: string;
|
|
49611
49611
|
/**
|
|
@@ -49950,7 +49950,7 @@ export declare class CreateNetworkInterfaceResponseBodyPrivateIpSetsPrivateIpSet
|
|
|
49950
49950
|
* The private IP address of the instance.
|
|
49951
49951
|
*
|
|
49952
49952
|
* @example
|
|
49953
|
-
*
|
|
49953
|
+
* 172.17.\*\*.**
|
|
49954
49954
|
*/
|
|
49955
49955
|
privateIpAddress?: string;
|
|
49956
49956
|
static names(): {
|
|
@@ -50524,7 +50524,7 @@ export declare class DeregisterManagedInstanceResponseBodyInstance extends $tea.
|
|
|
50524
50524
|
* The public IP address of the managed instance.
|
|
50525
50525
|
*
|
|
50526
50526
|
* @example
|
|
50527
|
-
*
|
|
50527
|
+
* 47.8.\*\*.**
|
|
50528
50528
|
*/
|
|
50529
50529
|
internetIp?: string;
|
|
50530
50530
|
/**
|
|
@@ -50532,7 +50532,7 @@ export declare class DeregisterManagedInstanceResponseBodyInstance extends $tea.
|
|
|
50532
50532
|
* The internal IP address of the managed instance.
|
|
50533
50533
|
*
|
|
50534
50534
|
* @example
|
|
50535
|
-
*
|
|
50535
|
+
* 10.0.\*\*.**
|
|
50536
50536
|
*/
|
|
50537
50537
|
intranetIp?: string;
|
|
50538
50538
|
/**
|
|
@@ -58452,8 +58452,6 @@ export declare class DescribeImagesResponseBodyImagesImageDiskDeviceMappingsDisk
|
|
|
58452
58452
|
* @remarks
|
|
58453
58453
|
* The device name of the disk. Example: /dev/xvdb.
|
|
58454
58454
|
*
|
|
58455
|
-
* > This parameter will be removed in the future. To ensure compatibility, we recommend that you use other parameters.
|
|
58456
|
-
*
|
|
58457
58455
|
* @example
|
|
58458
58456
|
* /dev/xvda
|
|
58459
58457
|
*/
|
|
@@ -59019,7 +59017,7 @@ export declare class DescribeInstanceAttributeResponseBodyEipAddress extends $te
|
|
|
59019
59017
|
* The ID of the elastic IP address (EIP).
|
|
59020
59018
|
*
|
|
59021
59019
|
* @example
|
|
59022
|
-
*
|
|
59020
|
+
* 30.21.\*\*.**
|
|
59023
59021
|
*/
|
|
59024
59022
|
ipAddress?: string;
|
|
59025
59023
|
static names(): {
|
|
@@ -59123,7 +59121,7 @@ export declare class DescribeInstanceAttributeResponseBodyVpcAttributes extends
|
|
|
59123
59121
|
* The NAT IP address of the instance. It is used by ECS instances in different VPCs for communication.
|
|
59124
59122
|
*
|
|
59125
59123
|
* @example
|
|
59126
|
-
*
|
|
59124
|
+
* 172.17.\*\*.**
|
|
59127
59125
|
*/
|
|
59128
59126
|
natIpAddress?: string;
|
|
59129
59127
|
/**
|
|
@@ -61014,7 +61012,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceEipAddress ex
|
|
|
61014
61012
|
* The EIP.
|
|
61015
61013
|
*
|
|
61016
61014
|
* @example
|
|
61017
|
-
*
|
|
61015
|
+
* 42.112.\*\*.**
|
|
61018
61016
|
*/
|
|
61019
61017
|
ipAddress?: string;
|
|
61020
61018
|
/**
|
|
@@ -61244,7 +61242,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceNetworkInterf
|
|
|
61244
61242
|
* The private IP address of the ENI.
|
|
61245
61243
|
*
|
|
61246
61244
|
* @example
|
|
61247
|
-
*
|
|
61245
|
+
* 172.17.\*\*.**
|
|
61248
61246
|
*/
|
|
61249
61247
|
privateIpAddress?: string;
|
|
61250
61248
|
static names(): {
|
|
@@ -61306,7 +61304,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceNetworkInterf
|
|
|
61306
61304
|
* The primary private IP address of the ENI.
|
|
61307
61305
|
*
|
|
61308
61306
|
* @example
|
|
61309
|
-
*
|
|
61307
|
+
* 172.17.\*\*.***
|
|
61310
61308
|
*/
|
|
61311
61309
|
primaryIpAddress?: string;
|
|
61312
61310
|
/**
|
|
@@ -61536,7 +61534,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceVpcAttributes
|
|
|
61536
61534
|
* The NAT IP address of the instance. The NAT IP address is used by ECS instances in different VPCs for communication.
|
|
61537
61535
|
*
|
|
61538
61536
|
* @example
|
|
61539
|
-
*
|
|
61537
|
+
* 172.17.\*\*.**
|
|
61540
61538
|
*/
|
|
61541
61539
|
natIpAddress?: string;
|
|
61542
61540
|
/**
|
|
@@ -64147,7 +64145,7 @@ export declare class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVer
|
|
|
64147
64145
|
* The private IP address to assign to the instance.
|
|
64148
64146
|
*
|
|
64149
64147
|
* @example
|
|
64150
|
-
*
|
|
64148
|
+
* 10.1.\*\*.**
|
|
64151
64149
|
*/
|
|
64152
64150
|
privateIpAddress?: string;
|
|
64153
64151
|
/**
|
|
@@ -64654,7 +64652,7 @@ export declare class DescribeManagedInstancesResponseBodyInstances extends $tea.
|
|
|
64654
64652
|
* The public IP address of the managed instance.
|
|
64655
64653
|
*
|
|
64656
64654
|
* @example
|
|
64657
|
-
*
|
|
64655
|
+
* 40.65.\*\*.**
|
|
64658
64656
|
*/
|
|
64659
64657
|
internetIp?: string;
|
|
64660
64658
|
/**
|
|
@@ -64662,7 +64660,7 @@ export declare class DescribeManagedInstancesResponseBodyInstances extends $tea.
|
|
|
64662
64660
|
* The internal IP address of the managed instance.
|
|
64663
64661
|
*
|
|
64664
64662
|
* @example
|
|
64665
|
-
*
|
|
64663
|
+
* 10.0.\*\*.**
|
|
64666
64664
|
*/
|
|
64667
64665
|
intranetIp?: string;
|
|
64668
64666
|
/**
|
|
@@ -64836,7 +64834,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBodyAssociatedPubl
|
|
|
64836
64834
|
* The EIP.
|
|
64837
64835
|
*
|
|
64838
64836
|
* @example
|
|
64839
|
-
*
|
|
64837
|
+
* 116.62.\*\*.**
|
|
64840
64838
|
*/
|
|
64841
64839
|
publicIpAddress?: string;
|
|
64842
64840
|
static names(): {
|
|
@@ -65176,7 +65174,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBodyPrivateIpSetsP
|
|
|
65176
65174
|
* The EIP.
|
|
65177
65175
|
*
|
|
65178
65176
|
* @example
|
|
65179
|
-
*
|
|
65177
|
+
* 116.62.\*\*.**
|
|
65180
65178
|
*/
|
|
65181
65179
|
publicIpAddress?: string;
|
|
65182
65180
|
static names(): {
|
|
@@ -65211,7 +65209,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBodyPrivateIpSetsP
|
|
|
65211
65209
|
* The private IP address of the ENI.
|
|
65212
65210
|
*
|
|
65213
65211
|
* @example
|
|
65214
|
-
*
|
|
65212
|
+
* 172.17.\*\*.**
|
|
65215
65213
|
*/
|
|
65216
65214
|
privateIpAddress?: string;
|
|
65217
65215
|
static names(): {
|
|
@@ -65441,7 +65439,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
|
|
|
65441
65439
|
* The EIP.
|
|
65442
65440
|
*
|
|
65443
65441
|
* @example
|
|
65444
|
-
*
|
|
65442
|
+
* 116.62.\*\*.**
|
|
65445
65443
|
*/
|
|
65446
65444
|
publicIpAddress?: string;
|
|
65447
65445
|
static names(): {
|
|
@@ -65607,7 +65605,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
|
|
|
65607
65605
|
* The EIP.
|
|
65608
65606
|
*
|
|
65609
65607
|
* @example
|
|
65610
|
-
*
|
|
65608
|
+
* 116.62.\*\*.**
|
|
65611
65609
|
*/
|
|
65612
65610
|
publicIpAddress?: string;
|
|
65613
65611
|
static names(): {
|
|
@@ -65650,7 +65648,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
|
|
|
65650
65648
|
* The private IP address of the ENI.
|
|
65651
65649
|
*
|
|
65652
65650
|
* @example
|
|
65653
|
-
*
|
|
65651
|
+
* 172.17.\*\*.**
|
|
65654
65652
|
*/
|
|
65655
65653
|
privateIpAddress?: string;
|
|
65656
65654
|
static names(): {
|
|
@@ -65839,7 +65837,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
|
|
|
65839
65837
|
* The primary private IP address of the ENI.
|
|
65840
65838
|
*
|
|
65841
65839
|
* @example
|
|
65842
|
-
*
|
|
65840
|
+
* 172.17.\*\*.**
|
|
65843
65841
|
*/
|
|
65844
65842
|
privateIpAddress?: string;
|
|
65845
65843
|
/**
|
|
@@ -71693,6 +71691,18 @@ export declare class ImportImageRequestDiskDeviceMapping extends $tea.Model {
|
|
|
71693
71691
|
[key: string]: any;
|
|
71694
71692
|
});
|
|
71695
71693
|
}
|
|
71694
|
+
export declare class ImportImageRequestFeatures extends $tea.Model {
|
|
71695
|
+
nvmeSupport?: string;
|
|
71696
|
+
static names(): {
|
|
71697
|
+
[key: string]: string;
|
|
71698
|
+
};
|
|
71699
|
+
static types(): {
|
|
71700
|
+
[key: string]: any;
|
|
71701
|
+
};
|
|
71702
|
+
constructor(map?: {
|
|
71703
|
+
[key: string]: any;
|
|
71704
|
+
});
|
|
71705
|
+
}
|
|
71696
71706
|
export declare class ImportImageRequestTag extends $tea.Model {
|
|
71697
71707
|
/**
|
|
71698
71708
|
* @remarks
|
|
@@ -75101,7 +75111,7 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
|
|
|
75101
75111
|
* * 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.
|
|
75102
75112
|
*
|
|
75103
75113
|
* @example
|
|
75104
|
-
*
|
|
75114
|
+
* 172.16.\*\*.**
|
|
75105
75115
|
*/
|
|
75106
75116
|
primaryIpAddress?: string;
|
|
75107
75117
|
/**
|
|
@@ -78781,7 +78791,7 @@ export default class Client extends OpenApi {
|
|
|
78781
78791
|
*/
|
|
78782
78792
|
describeDiagnosticReports(request: DescribeDiagnosticReportsRequest): Promise<DescribeDiagnosticReportsResponse>;
|
|
78783
78793
|
/**
|
|
78784
|
-
* Queries the
|
|
78794
|
+
* Queries the key used for default encryption of cloud disks in a region.
|
|
78785
78795
|
*
|
|
78786
78796
|
* @param request - DescribeDiskDefaultKMSKeyIdRequest
|
|
78787
78797
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -78789,7 +78799,7 @@ export default class Client extends OpenApi {
|
|
|
78789
78799
|
*/
|
|
78790
78800
|
describeDiskDefaultKMSKeyIdWithOptions(request: DescribeDiskDefaultKMSKeyIdRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiskDefaultKMSKeyIdResponse>;
|
|
78791
78801
|
/**
|
|
78792
|
-
* Queries the
|
|
78802
|
+
* Queries the key used for default encryption of cloud disks in a region.
|
|
78793
78803
|
*
|
|
78794
78804
|
* @param request - DescribeDiskDefaultKMSKeyIdRequest
|
|
78795
78805
|
* @returns DescribeDiskDefaultKMSKeyIdResponse
|
|
@@ -80969,7 +80979,7 @@ export default class Client extends OpenApi {
|
|
|
80969
80979
|
* ## [](#)Usage notes
|
|
80970
80980
|
* Before you export images, take note of the following items:
|
|
80971
80981
|
* * 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).
|
|
80972
|
-
* * The `ImageFormat` parameter is available only for the following regions: Japan (Tokyo), Australia (Sydney), Indonesia (Jakarta), Germany (Frankfurt), UAE (Dubai), US (Virginia), UK (London), Singapore, Malaysia (Kuala Lumpur), and US (Silicon Valley). Alibaba Cloud services will be discontinued in the India (Mumbai) region. By default, custom images are exported in the RAW format in regions where the ImageFormat parameter is unsupported.
|
|
80982
|
+
* * The `ImageFormat` parameter is available only for the following regions: Japan (Tokyo), Australia (Sydney) Closing Down, 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.
|
|
80973
80983
|
* * Use Resource Access Management (RAM) to authorize Elastic Compute Service (ECS) to write data to OSS. To complete the authorization, perform the following operations:
|
|
80974
80984
|
* * Create a role named `AliyunECSImageExportDefaultRole` and attach the following policy to the role:
|
|
80975
80985
|
* {
|
|
@@ -81021,7 +81031,7 @@ export default class Client extends OpenApi {
|
|
|
81021
81031
|
* ## [](#)Usage notes
|
|
81022
81032
|
* Before you export images, take note of the following items:
|
|
81023
81033
|
* * 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).
|
|
81024
|
-
* * The `ImageFormat` parameter is available only for the following regions: Japan (Tokyo), Australia (Sydney), Indonesia (Jakarta), Germany (Frankfurt), UAE (Dubai), US (Virginia), UK (London), Singapore, Malaysia (Kuala Lumpur), and US (Silicon Valley). Alibaba Cloud services will be discontinued in the India (Mumbai) region. By default, custom images are exported in the RAW format in regions where the ImageFormat parameter is unsupported.
|
|
81034
|
+
* * The `ImageFormat` parameter is available only for the following regions: Japan (Tokyo), Australia (Sydney) Closing Down, 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.
|
|
81025
81035
|
* * Use Resource Access Management (RAM) to authorize Elastic Compute Service (ECS) to write data to OSS. To complete the authorization, perform the following operations:
|
|
81026
81036
|
* * Create a role named `AliyunECSImageExportDefaultRole` and attach the following policy to the role:
|
|
81027
81037
|
* {
|