@alicloud/ecs20140526 4.4.1 → 4.4.3
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 +96 -48
- package/dist/client.js +481 -2173
- package/dist/client.js.map +1 -1
- package/package.json +1 -2
- package/src/client.ts +544 -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
|
/**
|
|
@@ -5772,6 +5772,7 @@ export declare class CreateImageComponentRequest extends $tea.Model {
|
|
|
5772
5772
|
* Build
|
|
5773
5773
|
*/
|
|
5774
5774
|
componentType?: string;
|
|
5775
|
+
componentVersion?: string;
|
|
5775
5776
|
/**
|
|
5776
5777
|
* @remarks
|
|
5777
5778
|
* The content of the image component. The content consists of up to 127 commands.
|
|
@@ -5962,6 +5963,7 @@ export declare class CreateImagePipelineRequest extends $tea.Model {
|
|
|
5962
5963
|
* This is description.
|
|
5963
5964
|
*/
|
|
5964
5965
|
description?: string;
|
|
5966
|
+
imageFamily?: string;
|
|
5965
5967
|
/**
|
|
5966
5968
|
* @remarks
|
|
5967
5969
|
* The prefix of the image name. The prefix must be 2 to 64 characters in length. It must start with a letter and cannot start with `http://` or `https://`. It can contain letters, digits, colons (:), underscores (_), periods (.), and hyphens (-).
|
|
@@ -6014,6 +6016,7 @@ export declare class CreateImagePipelineRequest extends $tea.Model {
|
|
|
6014
6016
|
* cn-hangzhou
|
|
6015
6017
|
*/
|
|
6016
6018
|
regionId?: string;
|
|
6019
|
+
repairMode?: string;
|
|
6017
6020
|
/**
|
|
6018
6021
|
* @remarks
|
|
6019
6022
|
* The ID of the resource group.
|
|
@@ -6039,6 +6042,7 @@ export declare class CreateImagePipelineRequest extends $tea.Model {
|
|
|
6039
6042
|
* The tags to add to the template.
|
|
6040
6043
|
*/
|
|
6041
6044
|
tag?: CreateImagePipelineRequestTag[];
|
|
6045
|
+
testContent?: string;
|
|
6042
6046
|
/**
|
|
6043
6047
|
* @remarks
|
|
6044
6048
|
* The IDs of regions to which you want to distribute the image that is created based on the image template. You can specify up to 20 region IDs.
|
|
@@ -6333,7 +6337,7 @@ export declare class CreateInstanceRequest extends $tea.Model {
|
|
|
6333
6337
|
* The internal IP address to assign to the instance.
|
|
6334
6338
|
*
|
|
6335
6339
|
* @example
|
|
6336
|
-
*
|
|
6340
|
+
* 192.168.\*\*.**
|
|
6337
6341
|
*/
|
|
6338
6342
|
innerIpAddress?: string;
|
|
6339
6343
|
/**
|
|
@@ -7137,7 +7141,7 @@ export declare class CreateLaunchTemplateRequest extends $tea.Model {
|
|
|
7137
7141
|
* 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
7142
|
*
|
|
7139
7143
|
* @example
|
|
7140
|
-
*
|
|
7144
|
+
* 10.1.\*\*.**
|
|
7141
7145
|
*/
|
|
7142
7146
|
privateIpAddress?: string;
|
|
7143
7147
|
/**
|
|
@@ -7648,7 +7652,7 @@ export declare class CreateLaunchTemplateVersionRequest extends $tea.Model {
|
|
|
7648
7652
|
* 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
7653
|
*
|
|
7650
7654
|
* @example
|
|
7651
|
-
*
|
|
7655
|
+
* 10.1.\*\*.**
|
|
7652
7656
|
*/
|
|
7653
7657
|
privateIpAddress?: string;
|
|
7654
7658
|
/**
|
|
@@ -8073,7 +8077,7 @@ export declare class CreateNetworkInterfaceRequest extends $tea.Model {
|
|
|
8073
8077
|
* 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
8078
|
*
|
|
8075
8079
|
* @example
|
|
8076
|
-
*
|
|
8080
|
+
* 172.17.\*\*.**
|
|
8077
8081
|
*/
|
|
8078
8082
|
primaryIpAddress?: string;
|
|
8079
8083
|
/**
|
|
@@ -8083,7 +8087,7 @@ export declare class CreateNetworkInterfaceRequest extends $tea.Model {
|
|
|
8083
8087
|
* > To assign secondary private IP addresses to the ENI, you can specify the `PrivateIpAddress.N` or `SecondaryPrivateIpAddressCount` parameter, but not both.
|
|
8084
8088
|
*
|
|
8085
8089
|
* @example
|
|
8086
|
-
*
|
|
8090
|
+
* 172.17.\*\*.**
|
|
8087
8091
|
*/
|
|
8088
8092
|
privateIpAddress?: string[];
|
|
8089
8093
|
/**
|
|
@@ -8274,7 +8278,7 @@ export declare class CreateNetworkInterfaceResponseBody extends $tea.Model {
|
|
|
8274
8278
|
* The private IP address of the ENI.
|
|
8275
8279
|
*
|
|
8276
8280
|
* @example
|
|
8277
|
-
*
|
|
8281
|
+
* 172.17.\*\*.**
|
|
8278
8282
|
*/
|
|
8279
8283
|
privateIpAddress?: string;
|
|
8280
8284
|
/**
|
|
@@ -10800,7 +10804,7 @@ export declare class DeleteImageRequest extends $tea.Model {
|
|
|
10800
10804
|
* Specifies whether to forcefully delete the custom image. Valid values:
|
|
10801
10805
|
*
|
|
10802
10806
|
* * 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.
|
|
10807
|
+
* * false: verifies that the custom image is not being used by other instances and then deletes the image.
|
|
10804
10808
|
*
|
|
10805
10809
|
* Default value: false.
|
|
10806
10810
|
*
|
|
@@ -17912,6 +17916,8 @@ export declare class DescribeHpcClustersResponse extends $tea.Model {
|
|
|
17912
17916
|
});
|
|
17913
17917
|
}
|
|
17914
17918
|
export declare class DescribeImageComponentsRequest extends $tea.Model {
|
|
17919
|
+
componentType?: string;
|
|
17920
|
+
componentVersion?: string;
|
|
17915
17921
|
/**
|
|
17916
17922
|
* @remarks
|
|
17917
17923
|
* The IDs of image components. Valid values of N: 1 to 20.
|
|
@@ -17981,6 +17987,7 @@ export declare class DescribeImageComponentsRequest extends $tea.Model {
|
|
|
17981
17987
|
resourceGroupId?: string;
|
|
17982
17988
|
resourceOwnerAccount?: string;
|
|
17983
17989
|
resourceOwnerId?: number;
|
|
17990
|
+
systemType?: string;
|
|
17984
17991
|
/**
|
|
17985
17992
|
* @remarks
|
|
17986
17993
|
* The tags of the image component.
|
|
@@ -18907,8 +18914,6 @@ export declare class DescribeImagesRequest extends $tea.Model {
|
|
|
18907
18914
|
* @remarks
|
|
18908
18915
|
* Specifies whether the subscription image has expired.
|
|
18909
18916
|
*
|
|
18910
|
-
* > This parameter will be removed in the future. We recommend that you use other parameters to ensure future compatibility.
|
|
18911
|
-
*
|
|
18912
18917
|
* @example
|
|
18913
18918
|
* false
|
|
18914
18919
|
*/
|
|
@@ -22883,7 +22888,7 @@ export declare class DescribeManagedInstancesRequest extends $tea.Model {
|
|
|
22883
22888
|
* The internal or public IP address of the managed instance.
|
|
22884
22889
|
*
|
|
22885
22890
|
* @example
|
|
22886
|
-
*
|
|
22891
|
+
* 192.168.\*\*.**
|
|
22887
22892
|
*/
|
|
22888
22893
|
instanceIp?: string;
|
|
22889
22894
|
/**
|
|
@@ -23302,7 +23307,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBody extends $tea.
|
|
|
23302
23307
|
* The private IP address of the ENI.
|
|
23303
23308
|
*
|
|
23304
23309
|
* @example
|
|
23305
|
-
*
|
|
23310
|
+
* 10.1.\*\*.**
|
|
23306
23311
|
*/
|
|
23307
23312
|
privateIpAddress?: string;
|
|
23308
23313
|
/**
|
|
@@ -23699,7 +23704,7 @@ export declare class DescribeNetworkInterfacesRequest extends $tea.Model {
|
|
|
23699
23704
|
* The primary private IPv4 address of the ENI.
|
|
23700
23705
|
*
|
|
23701
23706
|
* @example
|
|
23702
|
-
*
|
|
23707
|
+
* 192.168.\*\*.**
|
|
23703
23708
|
*/
|
|
23704
23709
|
primaryIpAddress?: string;
|
|
23705
23710
|
/**
|
|
@@ -23707,7 +23712,7 @@ export declare class DescribeNetworkInterfacesRequest extends $tea.Model {
|
|
|
23707
23712
|
* 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
23713
|
*
|
|
23709
23714
|
* @example
|
|
23710
|
-
*
|
|
23715
|
+
* 192.168.\*\*.**
|
|
23711
23716
|
*/
|
|
23712
23717
|
privateIpAddress?: string[];
|
|
23713
23718
|
/**
|
|
@@ -30907,6 +30912,8 @@ export declare class ImportImageRequest extends $tea.Model {
|
|
|
30907
30912
|
* The information about the custom image.
|
|
30908
30913
|
*/
|
|
30909
30914
|
diskDeviceMapping?: ImportImageRequestDiskDeviceMapping[];
|
|
30915
|
+
dryRun?: boolean;
|
|
30916
|
+
features?: ImportImageRequestFeatures;
|
|
30910
30917
|
/**
|
|
30911
30918
|
* @remarks
|
|
30912
30919
|
* 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 +36866,7 @@ export declare class ModifyInstanceVpcAttributeRequest extends $tea.Model {
|
|
|
36859
36866
|
* By default, if this parameter is not specified, a private IP address is randomly assigned from the CIDR block of the specified vSwitch.
|
|
36860
36867
|
*
|
|
36861
36868
|
* @example
|
|
36862
|
-
*
|
|
36869
|
+
* 172.17.\*\*.**
|
|
36863
36870
|
*/
|
|
36864
36871
|
privateIpAddress?: string;
|
|
36865
36872
|
resourceOwnerAccount?: string;
|
|
@@ -41028,7 +41035,7 @@ export declare class ReleasePublicIpAddressRequest extends $tea.Model {
|
|
|
41028
41035
|
* This parameter is required.
|
|
41029
41036
|
*
|
|
41030
41037
|
* @example
|
|
41031
|
-
*
|
|
41038
|
+
* 121.40.\*\*.**
|
|
41032
41039
|
*/
|
|
41033
41040
|
publicIpAddress?: string;
|
|
41034
41041
|
/**
|
|
@@ -44247,7 +44254,7 @@ export declare class RunInstancesRequest extends $tea.Model {
|
|
|
44247
44254
|
* > 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
44255
|
*
|
|
44249
44256
|
* @example
|
|
44250
|
-
*
|
|
44257
|
+
* 10.1.\*\*.**
|
|
44251
44258
|
*/
|
|
44252
44259
|
privateIpAddress?: string;
|
|
44253
44260
|
/**
|
|
@@ -45779,7 +45786,7 @@ export declare class UnassignPrivateIpAddressesRequest extends $tea.Model {
|
|
|
45779
45786
|
* The secondary private IP addresses to unassign.
|
|
45780
45787
|
*
|
|
45781
45788
|
* @example
|
|
45782
|
-
*
|
|
45789
|
+
* 192.168.\*\*.**
|
|
45783
45790
|
*/
|
|
45784
45791
|
privateIpAddress?: string[];
|
|
45785
45792
|
/**
|
|
@@ -49146,7 +49153,7 @@ export declare class CreateLaunchTemplateRequestNetworkInterface extends $tea.Mo
|
|
|
49146
49153
|
* > 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
49154
|
*
|
|
49148
49155
|
* @example
|
|
49149
|
-
*
|
|
49156
|
+
* 192.168.\*\*.**
|
|
49150
49157
|
*/
|
|
49151
49158
|
primaryIpAddress?: string;
|
|
49152
49159
|
/**
|
|
@@ -49605,7 +49612,7 @@ export declare class CreateLaunchTemplateVersionRequestNetworkInterface extends
|
|
|
49605
49612
|
* The primary private IP address of the secondary ENI. The value of N in `NetworkInterface.N` cannot be greater than 1.
|
|
49606
49613
|
*
|
|
49607
49614
|
* @example
|
|
49608
|
-
*
|
|
49615
|
+
* 192.168.\*\*.**
|
|
49609
49616
|
*/
|
|
49610
49617
|
primaryIpAddress?: string;
|
|
49611
49618
|
/**
|
|
@@ -49950,7 +49957,7 @@ export declare class CreateNetworkInterfaceResponseBodyPrivateIpSetsPrivateIpSet
|
|
|
49950
49957
|
* The private IP address of the instance.
|
|
49951
49958
|
*
|
|
49952
49959
|
* @example
|
|
49953
|
-
*
|
|
49960
|
+
* 172.17.\*\*.**
|
|
49954
49961
|
*/
|
|
49955
49962
|
privateIpAddress?: string;
|
|
49956
49963
|
static names(): {
|
|
@@ -50524,7 +50531,7 @@ export declare class DeregisterManagedInstanceResponseBodyInstance extends $tea.
|
|
|
50524
50531
|
* The public IP address of the managed instance.
|
|
50525
50532
|
*
|
|
50526
50533
|
* @example
|
|
50527
|
-
*
|
|
50534
|
+
* 47.8.\*\*.**
|
|
50528
50535
|
*/
|
|
50529
50536
|
internetIp?: string;
|
|
50530
50537
|
/**
|
|
@@ -50532,7 +50539,7 @@ export declare class DeregisterManagedInstanceResponseBodyInstance extends $tea.
|
|
|
50532
50539
|
* The internal IP address of the managed instance.
|
|
50533
50540
|
*
|
|
50534
50541
|
* @example
|
|
50535
|
-
*
|
|
50542
|
+
* 10.0.\*\*.**
|
|
50536
50543
|
*/
|
|
50537
50544
|
intranetIp?: string;
|
|
50538
50545
|
/**
|
|
@@ -57267,6 +57274,32 @@ export declare class DescribeImageComponentsRequestTag extends $tea.Model {
|
|
|
57267
57274
|
[key: string]: any;
|
|
57268
57275
|
});
|
|
57269
57276
|
}
|
|
57277
|
+
export declare class DescribeImageComponentsResponseBodyImageComponentImageComponentSetParametersParameter extends $tea.Model {
|
|
57278
|
+
defaultValue?: string;
|
|
57279
|
+
name?: string;
|
|
57280
|
+
type?: string;
|
|
57281
|
+
static names(): {
|
|
57282
|
+
[key: string]: string;
|
|
57283
|
+
};
|
|
57284
|
+
static types(): {
|
|
57285
|
+
[key: string]: any;
|
|
57286
|
+
};
|
|
57287
|
+
constructor(map?: {
|
|
57288
|
+
[key: string]: any;
|
|
57289
|
+
});
|
|
57290
|
+
}
|
|
57291
|
+
export declare class DescribeImageComponentsResponseBodyImageComponentImageComponentSetParameters extends $tea.Model {
|
|
57292
|
+
parameter?: DescribeImageComponentsResponseBodyImageComponentImageComponentSetParametersParameter[];
|
|
57293
|
+
static names(): {
|
|
57294
|
+
[key: string]: string;
|
|
57295
|
+
};
|
|
57296
|
+
static types(): {
|
|
57297
|
+
[key: string]: any;
|
|
57298
|
+
};
|
|
57299
|
+
constructor(map?: {
|
|
57300
|
+
[key: string]: any;
|
|
57301
|
+
});
|
|
57302
|
+
}
|
|
57270
57303
|
export declare class DescribeImageComponentsResponseBodyImageComponentImageComponentSetTagsTag extends $tea.Model {
|
|
57271
57304
|
/**
|
|
57272
57305
|
* @remarks
|
|
@@ -57315,6 +57348,7 @@ export declare class DescribeImageComponentsResponseBodyImageComponentImageCompo
|
|
|
57315
57348
|
* Build
|
|
57316
57349
|
*/
|
|
57317
57350
|
componentType?: string;
|
|
57351
|
+
componentVersion?: string;
|
|
57318
57352
|
/**
|
|
57319
57353
|
* @remarks
|
|
57320
57354
|
* The content of the image component.
|
|
@@ -57366,6 +57400,7 @@ export declare class DescribeImageComponentsResponseBodyImageComponentImageCompo
|
|
|
57366
57400
|
* SELF
|
|
57367
57401
|
*/
|
|
57368
57402
|
owner?: string;
|
|
57403
|
+
parameters?: DescribeImageComponentsResponseBodyImageComponentImageComponentSetParameters;
|
|
57369
57404
|
/**
|
|
57370
57405
|
* @remarks
|
|
57371
57406
|
* The ID of the resource group to which the image component belongs.
|
|
@@ -58053,6 +58088,7 @@ export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelin
|
|
|
58053
58088
|
* This is description.
|
|
58054
58089
|
*/
|
|
58055
58090
|
description?: string;
|
|
58091
|
+
imageFamily?: string;
|
|
58056
58092
|
/**
|
|
58057
58093
|
* @remarks
|
|
58058
58094
|
* The name prefix of the image to be created based on the image template.
|
|
@@ -58093,6 +58129,7 @@ export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelin
|
|
|
58093
58129
|
* testImagePipeline
|
|
58094
58130
|
*/
|
|
58095
58131
|
name?: string;
|
|
58132
|
+
repairMode?: string;
|
|
58096
58133
|
/**
|
|
58097
58134
|
* @remarks
|
|
58098
58135
|
* The ID of the resource group.
|
|
@@ -58114,6 +58151,7 @@ export declare class DescribeImagePipelinesResponseBodyImagePipelineImagePipelin
|
|
|
58114
58151
|
* The tags of the image template.
|
|
58115
58152
|
*/
|
|
58116
58153
|
tags?: DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetTags;
|
|
58154
|
+
testContent?: string;
|
|
58117
58155
|
/**
|
|
58118
58156
|
* @remarks
|
|
58119
58157
|
* The IDs of regions to which to distribute the image that will be created based on the image template.
|
|
@@ -58452,8 +58490,6 @@ export declare class DescribeImagesResponseBodyImagesImageDiskDeviceMappingsDisk
|
|
|
58452
58490
|
* @remarks
|
|
58453
58491
|
* The device name of the disk. Example: /dev/xvdb.
|
|
58454
58492
|
*
|
|
58455
|
-
* > This parameter will be removed in the future. To ensure compatibility, we recommend that you use other parameters.
|
|
58456
|
-
*
|
|
58457
58493
|
* @example
|
|
58458
58494
|
* /dev/xvda
|
|
58459
58495
|
*/
|
|
@@ -59019,7 +59055,7 @@ export declare class DescribeInstanceAttributeResponseBodyEipAddress extends $te
|
|
|
59019
59055
|
* The ID of the elastic IP address (EIP).
|
|
59020
59056
|
*
|
|
59021
59057
|
* @example
|
|
59022
|
-
*
|
|
59058
|
+
* 30.21.\*\*.**
|
|
59023
59059
|
*/
|
|
59024
59060
|
ipAddress?: string;
|
|
59025
59061
|
static names(): {
|
|
@@ -59123,7 +59159,7 @@ export declare class DescribeInstanceAttributeResponseBodyVpcAttributes extends
|
|
|
59123
59159
|
* The NAT IP address of the instance. It is used by ECS instances in different VPCs for communication.
|
|
59124
59160
|
*
|
|
59125
59161
|
* @example
|
|
59126
|
-
*
|
|
59162
|
+
* 172.17.\*\*.**
|
|
59127
59163
|
*/
|
|
59128
59164
|
natIpAddress?: string;
|
|
59129
59165
|
/**
|
|
@@ -61014,7 +61050,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceEipAddress ex
|
|
|
61014
61050
|
* The EIP.
|
|
61015
61051
|
*
|
|
61016
61052
|
* @example
|
|
61017
|
-
*
|
|
61053
|
+
* 42.112.\*\*.**
|
|
61018
61054
|
*/
|
|
61019
61055
|
ipAddress?: string;
|
|
61020
61056
|
/**
|
|
@@ -61244,7 +61280,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceNetworkInterf
|
|
|
61244
61280
|
* The private IP address of the ENI.
|
|
61245
61281
|
*
|
|
61246
61282
|
* @example
|
|
61247
|
-
*
|
|
61283
|
+
* 172.17.\*\*.**
|
|
61248
61284
|
*/
|
|
61249
61285
|
privateIpAddress?: string;
|
|
61250
61286
|
static names(): {
|
|
@@ -61306,7 +61342,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceNetworkInterf
|
|
|
61306
61342
|
* The primary private IP address of the ENI.
|
|
61307
61343
|
*
|
|
61308
61344
|
* @example
|
|
61309
|
-
*
|
|
61345
|
+
* 172.17.\*\*.***
|
|
61310
61346
|
*/
|
|
61311
61347
|
primaryIpAddress?: string;
|
|
61312
61348
|
/**
|
|
@@ -61536,7 +61572,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceVpcAttributes
|
|
|
61536
61572
|
* The NAT IP address of the instance. The NAT IP address is used by ECS instances in different VPCs for communication.
|
|
61537
61573
|
*
|
|
61538
61574
|
* @example
|
|
61539
|
-
*
|
|
61575
|
+
* 172.17.\*\*.**
|
|
61540
61576
|
*/
|
|
61541
61577
|
natIpAddress?: string;
|
|
61542
61578
|
/**
|
|
@@ -64147,7 +64183,7 @@ export declare class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVer
|
|
|
64147
64183
|
* The private IP address to assign to the instance.
|
|
64148
64184
|
*
|
|
64149
64185
|
* @example
|
|
64150
|
-
*
|
|
64186
|
+
* 10.1.\*\*.**
|
|
64151
64187
|
*/
|
|
64152
64188
|
privateIpAddress?: string;
|
|
64153
64189
|
/**
|
|
@@ -64654,7 +64690,7 @@ export declare class DescribeManagedInstancesResponseBodyInstances extends $tea.
|
|
|
64654
64690
|
* The public IP address of the managed instance.
|
|
64655
64691
|
*
|
|
64656
64692
|
* @example
|
|
64657
|
-
*
|
|
64693
|
+
* 40.65.\*\*.**
|
|
64658
64694
|
*/
|
|
64659
64695
|
internetIp?: string;
|
|
64660
64696
|
/**
|
|
@@ -64662,7 +64698,7 @@ export declare class DescribeManagedInstancesResponseBodyInstances extends $tea.
|
|
|
64662
64698
|
* The internal IP address of the managed instance.
|
|
64663
64699
|
*
|
|
64664
64700
|
* @example
|
|
64665
|
-
*
|
|
64701
|
+
* 10.0.\*\*.**
|
|
64666
64702
|
*/
|
|
64667
64703
|
intranetIp?: string;
|
|
64668
64704
|
/**
|
|
@@ -64836,7 +64872,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBodyAssociatedPubl
|
|
|
64836
64872
|
* The EIP.
|
|
64837
64873
|
*
|
|
64838
64874
|
* @example
|
|
64839
|
-
*
|
|
64875
|
+
* 116.62.\*\*.**
|
|
64840
64876
|
*/
|
|
64841
64877
|
publicIpAddress?: string;
|
|
64842
64878
|
static names(): {
|
|
@@ -65176,7 +65212,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBodyPrivateIpSetsP
|
|
|
65176
65212
|
* The EIP.
|
|
65177
65213
|
*
|
|
65178
65214
|
* @example
|
|
65179
|
-
*
|
|
65215
|
+
* 116.62.\*\*.**
|
|
65180
65216
|
*/
|
|
65181
65217
|
publicIpAddress?: string;
|
|
65182
65218
|
static names(): {
|
|
@@ -65211,7 +65247,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBodyPrivateIpSetsP
|
|
|
65211
65247
|
* The private IP address of the ENI.
|
|
65212
65248
|
*
|
|
65213
65249
|
* @example
|
|
65214
|
-
*
|
|
65250
|
+
* 172.17.\*\*.**
|
|
65215
65251
|
*/
|
|
65216
65252
|
privateIpAddress?: string;
|
|
65217
65253
|
static names(): {
|
|
@@ -65441,7 +65477,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
|
|
|
65441
65477
|
* The EIP.
|
|
65442
65478
|
*
|
|
65443
65479
|
* @example
|
|
65444
|
-
*
|
|
65480
|
+
* 116.62.\*\*.**
|
|
65445
65481
|
*/
|
|
65446
65482
|
publicIpAddress?: string;
|
|
65447
65483
|
static names(): {
|
|
@@ -65607,7 +65643,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
|
|
|
65607
65643
|
* The EIP.
|
|
65608
65644
|
*
|
|
65609
65645
|
* @example
|
|
65610
|
-
*
|
|
65646
|
+
* 116.62.\*\*.**
|
|
65611
65647
|
*/
|
|
65612
65648
|
publicIpAddress?: string;
|
|
65613
65649
|
static names(): {
|
|
@@ -65650,7 +65686,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
|
|
|
65650
65686
|
* The private IP address of the ENI.
|
|
65651
65687
|
*
|
|
65652
65688
|
* @example
|
|
65653
|
-
*
|
|
65689
|
+
* 172.17.\*\*.**
|
|
65654
65690
|
*/
|
|
65655
65691
|
privateIpAddress?: string;
|
|
65656
65692
|
static names(): {
|
|
@@ -65839,7 +65875,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
|
|
|
65839
65875
|
* The primary private IP address of the ENI.
|
|
65840
65876
|
*
|
|
65841
65877
|
* @example
|
|
65842
|
-
*
|
|
65878
|
+
* 172.17.\*\*.**
|
|
65843
65879
|
*/
|
|
65844
65880
|
privateIpAddress?: string;
|
|
65845
65881
|
/**
|
|
@@ -71693,6 +71729,18 @@ export declare class ImportImageRequestDiskDeviceMapping extends $tea.Model {
|
|
|
71693
71729
|
[key: string]: any;
|
|
71694
71730
|
});
|
|
71695
71731
|
}
|
|
71732
|
+
export declare class ImportImageRequestFeatures extends $tea.Model {
|
|
71733
|
+
nvmeSupport?: string;
|
|
71734
|
+
static names(): {
|
|
71735
|
+
[key: string]: string;
|
|
71736
|
+
};
|
|
71737
|
+
static types(): {
|
|
71738
|
+
[key: string]: any;
|
|
71739
|
+
};
|
|
71740
|
+
constructor(map?: {
|
|
71741
|
+
[key: string]: any;
|
|
71742
|
+
});
|
|
71743
|
+
}
|
|
71696
71744
|
export declare class ImportImageRequestTag extends $tea.Model {
|
|
71697
71745
|
/**
|
|
71698
71746
|
* @remarks
|
|
@@ -75101,7 +75149,7 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
|
|
|
75101
75149
|
* * 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
75150
|
*
|
|
75103
75151
|
* @example
|
|
75104
|
-
*
|
|
75152
|
+
* 172.16.\*\*.**
|
|
75105
75153
|
*/
|
|
75106
75154
|
primaryIpAddress?: string;
|
|
75107
75155
|
/**
|
|
@@ -78781,7 +78829,7 @@ export default class Client extends OpenApi {
|
|
|
78781
78829
|
*/
|
|
78782
78830
|
describeDiagnosticReports(request: DescribeDiagnosticReportsRequest): Promise<DescribeDiagnosticReportsResponse>;
|
|
78783
78831
|
/**
|
|
78784
|
-
* Queries the
|
|
78832
|
+
* Queries the key used for default encryption of cloud disks in a region.
|
|
78785
78833
|
*
|
|
78786
78834
|
* @param request - DescribeDiskDefaultKMSKeyIdRequest
|
|
78787
78835
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
@@ -78789,7 +78837,7 @@ export default class Client extends OpenApi {
|
|
|
78789
78837
|
*/
|
|
78790
78838
|
describeDiskDefaultKMSKeyIdWithOptions(request: DescribeDiskDefaultKMSKeyIdRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiskDefaultKMSKeyIdResponse>;
|
|
78791
78839
|
/**
|
|
78792
|
-
* Queries the
|
|
78840
|
+
* Queries the key used for default encryption of cloud disks in a region.
|
|
78793
78841
|
*
|
|
78794
78842
|
* @param request - DescribeDiskDefaultKMSKeyIdRequest
|
|
78795
78843
|
* @returns DescribeDiskDefaultKMSKeyIdResponse
|
|
@@ -80969,7 +81017,7 @@ export default class Client extends OpenApi {
|
|
|
80969
81017
|
* ## [](#)Usage notes
|
|
80970
81018
|
* Before you export images, take note of the following items:
|
|
80971
81019
|
* * 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.
|
|
81020
|
+
* * 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
81021
|
* * 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
81022
|
* * Create a role named `AliyunECSImageExportDefaultRole` and attach the following policy to the role:
|
|
80975
81023
|
* {
|
|
@@ -81021,7 +81069,7 @@ export default class Client extends OpenApi {
|
|
|
81021
81069
|
* ## [](#)Usage notes
|
|
81022
81070
|
* Before you export images, take note of the following items:
|
|
81023
81071
|
* * 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.
|
|
81072
|
+
* * 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
81073
|
* * 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
81074
|
* * Create a role named `AliyunECSImageExportDefaultRole` and attach the following policy to the role:
|
|
81027
81075
|
* {
|