@alicloud/ecs20140526 4.4.3 → 4.4.4
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 +52 -39
- package/dist/client.js +56 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +118 -39
package/dist/client.d.ts
CHANGED
|
@@ -631,7 +631,7 @@ export declare class AllocatePublicIpAddressRequest extends $tea.Model {
|
|
|
631
631
|
* The public IP address. If you leave this parameter empty, the system randomly assigns a public IP address to the instance.
|
|
632
632
|
*
|
|
633
633
|
* @example
|
|
634
|
-
* 112.124
|
|
634
|
+
* ``112.124.**.**``
|
|
635
635
|
*/
|
|
636
636
|
ipAddress?: string;
|
|
637
637
|
ownerAccount?: string;
|
|
@@ -664,7 +664,7 @@ export declare class AllocatePublicIpAddressResponseBody extends $tea.Model {
|
|
|
664
664
|
* The public IP address.
|
|
665
665
|
*
|
|
666
666
|
* @example
|
|
667
|
-
* 112.124
|
|
667
|
+
* ``112.124.**.**``
|
|
668
668
|
*/
|
|
669
669
|
ipAddress?: string;
|
|
670
670
|
/**
|
|
@@ -963,7 +963,7 @@ export declare class AssignPrivateIpAddressesRequest extends $tea.Model {
|
|
|
963
963
|
* To assign secondary private IP addresses to the ENI, you must specify `PrivateIpAddress.N` or `SecondaryPrivateIpAddressCount` but not both.
|
|
964
964
|
*
|
|
965
965
|
* @example
|
|
966
|
-
* 10.1
|
|
966
|
+
* ``10.1.**.**``
|
|
967
967
|
*/
|
|
968
968
|
privateIpAddress?: string[];
|
|
969
969
|
/**
|
|
@@ -6337,7 +6337,7 @@ export declare class CreateInstanceRequest extends $tea.Model {
|
|
|
6337
6337
|
* The internal IP address to assign to the instance.
|
|
6338
6338
|
*
|
|
6339
6339
|
* @example
|
|
6340
|
-
* 192.168
|
|
6340
|
+
* ``192.168.**.**``
|
|
6341
6341
|
*/
|
|
6342
6342
|
innerIpAddress?: string;
|
|
6343
6343
|
/**
|
|
@@ -6966,6 +6966,9 @@ export declare class CreateLaunchTemplateRequest extends $tea.Model {
|
|
|
6966
6966
|
* testHostName
|
|
6967
6967
|
*/
|
|
6968
6968
|
hostName?: string;
|
|
6969
|
+
httpEndpoint?: string;
|
|
6970
|
+
httpPutResponseHopLimit?: number;
|
|
6971
|
+
httpTokens?: string;
|
|
6969
6972
|
/**
|
|
6970
6973
|
* @remarks
|
|
6971
6974
|
* The ID of the image to use to create the instance. You can call the [DescribeImages](https://help.aliyun.com/document_detail/25534.html) operation to query available images.
|
|
@@ -7141,7 +7144,7 @@ export declare class CreateLaunchTemplateRequest extends $tea.Model {
|
|
|
7141
7144
|
* 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.
|
|
7142
7145
|
*
|
|
7143
7146
|
* @example
|
|
7144
|
-
* 10.1
|
|
7147
|
+
* ``10.1.**.**``
|
|
7145
7148
|
*/
|
|
7146
7149
|
privateIpAddress?: string;
|
|
7147
7150
|
/**
|
|
@@ -7469,6 +7472,9 @@ export declare class CreateLaunchTemplateVersionRequest extends $tea.Model {
|
|
|
7469
7472
|
* testHostName
|
|
7470
7473
|
*/
|
|
7471
7474
|
hostName?: string;
|
|
7475
|
+
httpEndpoint?: string;
|
|
7476
|
+
httpPutResponseHopLimit?: number;
|
|
7477
|
+
httpTokens?: string;
|
|
7472
7478
|
/**
|
|
7473
7479
|
* @remarks
|
|
7474
7480
|
* The ID of the image to use to create the Elastic Compute Service (ECS) instance. You can call the [DescribeImages](https://help.aliyun.com/document_detail/25534.html) operation to query available images.
|
|
@@ -7652,7 +7658,7 @@ export declare class CreateLaunchTemplateVersionRequest extends $tea.Model {
|
|
|
7652
7658
|
* 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.
|
|
7653
7659
|
*
|
|
7654
7660
|
* @example
|
|
7655
|
-
* 10.1
|
|
7661
|
+
* ``10.1.**.**``
|
|
7656
7662
|
*/
|
|
7657
7663
|
privateIpAddress?: string;
|
|
7658
7664
|
/**
|
|
@@ -8077,7 +8083,7 @@ export declare class CreateNetworkInterfaceRequest extends $tea.Model {
|
|
|
8077
8083
|
* 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.
|
|
8078
8084
|
*
|
|
8079
8085
|
* @example
|
|
8080
|
-
* 172.17
|
|
8086
|
+
* ``172.17.**.**``
|
|
8081
8087
|
*/
|
|
8082
8088
|
primaryIpAddress?: string;
|
|
8083
8089
|
/**
|
|
@@ -8087,7 +8093,7 @@ export declare class CreateNetworkInterfaceRequest extends $tea.Model {
|
|
|
8087
8093
|
* > To assign secondary private IP addresses to the ENI, you can specify the `PrivateIpAddress.N` or `SecondaryPrivateIpAddressCount` parameter, but not both.
|
|
8088
8094
|
*
|
|
8089
8095
|
* @example
|
|
8090
|
-
* 172.17
|
|
8096
|
+
* ``172.17.**.**``
|
|
8091
8097
|
*/
|
|
8092
8098
|
privateIpAddress?: string[];
|
|
8093
8099
|
/**
|
|
@@ -8278,7 +8284,7 @@ export declare class CreateNetworkInterfaceResponseBody extends $tea.Model {
|
|
|
8278
8284
|
* The private IP address of the ENI.
|
|
8279
8285
|
*
|
|
8280
8286
|
* @example
|
|
8281
|
-
* 172.17
|
|
8287
|
+
* ``172.17.**.**``
|
|
8282
8288
|
*/
|
|
8283
8289
|
privateIpAddress?: string;
|
|
8284
8290
|
/**
|
|
@@ -22888,7 +22894,7 @@ export declare class DescribeManagedInstancesRequest extends $tea.Model {
|
|
|
22888
22894
|
* The internal or public IP address of the managed instance.
|
|
22889
22895
|
*
|
|
22890
22896
|
* @example
|
|
22891
|
-
* 192.168
|
|
22897
|
+
* ``192.168.**.**``
|
|
22892
22898
|
*/
|
|
22893
22899
|
instanceIp?: string;
|
|
22894
22900
|
/**
|
|
@@ -23307,7 +23313,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBody extends $tea.
|
|
|
23307
23313
|
* The private IP address of the ENI.
|
|
23308
23314
|
*
|
|
23309
23315
|
* @example
|
|
23310
|
-
* 10.1
|
|
23316
|
+
* ``10.1.**.**``
|
|
23311
23317
|
*/
|
|
23312
23318
|
privateIpAddress?: string;
|
|
23313
23319
|
/**
|
|
@@ -23704,7 +23710,7 @@ export declare class DescribeNetworkInterfacesRequest extends $tea.Model {
|
|
|
23704
23710
|
* The primary private IPv4 address of the ENI.
|
|
23705
23711
|
*
|
|
23706
23712
|
* @example
|
|
23707
|
-
* 192.168
|
|
23713
|
+
* ``192.168.**.**``
|
|
23708
23714
|
*/
|
|
23709
23715
|
primaryIpAddress?: string;
|
|
23710
23716
|
/**
|
|
@@ -23712,7 +23718,7 @@ export declare class DescribeNetworkInterfacesRequest extends $tea.Model {
|
|
|
23712
23718
|
* 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.
|
|
23713
23719
|
*
|
|
23714
23720
|
* @example
|
|
23715
|
-
* 192.168
|
|
23721
|
+
* ``192.168.**.**``
|
|
23716
23722
|
*/
|
|
23717
23723
|
privateIpAddress?: string[];
|
|
23718
23724
|
/**
|
|
@@ -36866,7 +36872,7 @@ export declare class ModifyInstanceVpcAttributeRequest extends $tea.Model {
|
|
|
36866
36872
|
* By default, if this parameter is not specified, a private IP address is randomly assigned from the CIDR block of the specified vSwitch.
|
|
36867
36873
|
*
|
|
36868
36874
|
* @example
|
|
36869
|
-
* 172.17
|
|
36875
|
+
* ``172.17.**.**``
|
|
36870
36876
|
*/
|
|
36871
36877
|
privateIpAddress?: string;
|
|
36872
36878
|
resourceOwnerAccount?: string;
|
|
@@ -39782,6 +39788,8 @@ export declare class PurchaseElasticityAssuranceRequest extends $tea.Model {
|
|
|
39782
39788
|
* 123e4567-e89b-12d3-a456-426655440000
|
|
39783
39789
|
*/
|
|
39784
39790
|
clientToken?: string;
|
|
39791
|
+
ownerAccount?: string;
|
|
39792
|
+
ownerId?: number;
|
|
39785
39793
|
/**
|
|
39786
39794
|
* @example
|
|
39787
39795
|
* 1
|
|
@@ -39800,6 +39808,8 @@ export declare class PurchaseElasticityAssuranceRequest extends $tea.Model {
|
|
|
39800
39808
|
* cn-hangzhou
|
|
39801
39809
|
*/
|
|
39802
39810
|
regionId?: string;
|
|
39811
|
+
resourceOwnerAccount?: string;
|
|
39812
|
+
resourceOwnerId?: number;
|
|
39803
39813
|
/**
|
|
39804
39814
|
* @example
|
|
39805
39815
|
* 2024-06-18T00:00Z
|
|
@@ -41035,7 +41045,7 @@ export declare class ReleasePublicIpAddressRequest extends $tea.Model {
|
|
|
41035
41045
|
* This parameter is required.
|
|
41036
41046
|
*
|
|
41037
41047
|
* @example
|
|
41038
|
-
* 121.40
|
|
41048
|
+
* ``121.40.**.**``
|
|
41039
41049
|
*/
|
|
41040
41050
|
publicIpAddress?: string;
|
|
41041
41051
|
/**
|
|
@@ -44254,7 +44264,7 @@ export declare class RunInstancesRequest extends $tea.Model {
|
|
|
44254
44264
|
* > 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.
|
|
44255
44265
|
*
|
|
44256
44266
|
* @example
|
|
44257
|
-
* 10.1
|
|
44267
|
+
* ``10.1.**.**``
|
|
44258
44268
|
*/
|
|
44259
44269
|
privateIpAddress?: string;
|
|
44260
44270
|
/**
|
|
@@ -45786,7 +45796,7 @@ export declare class UnassignPrivateIpAddressesRequest extends $tea.Model {
|
|
|
45786
45796
|
* The secondary private IP addresses to unassign.
|
|
45787
45797
|
*
|
|
45788
45798
|
* @example
|
|
45789
|
-
* 192.168
|
|
45799
|
+
* ``192.168.**.**``
|
|
45790
45800
|
*/
|
|
45791
45801
|
privateIpAddress?: string[];
|
|
45792
45802
|
/**
|
|
@@ -49153,7 +49163,7 @@ export declare class CreateLaunchTemplateRequestNetworkInterface extends $tea.Mo
|
|
|
49153
49163
|
* > 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.
|
|
49154
49164
|
*
|
|
49155
49165
|
* @example
|
|
49156
|
-
* 192.168
|
|
49166
|
+
* ``192.168.**.**``
|
|
49157
49167
|
*/
|
|
49158
49168
|
primaryIpAddress?: string;
|
|
49159
49169
|
/**
|
|
@@ -49612,7 +49622,7 @@ export declare class CreateLaunchTemplateVersionRequestNetworkInterface extends
|
|
|
49612
49622
|
* The primary private IP address of the secondary ENI. The value of N in `NetworkInterface.N` cannot be greater than 1.
|
|
49613
49623
|
*
|
|
49614
49624
|
* @example
|
|
49615
|
-
* 192.168
|
|
49625
|
+
* ``192.168.**.**``
|
|
49616
49626
|
*/
|
|
49617
49627
|
primaryIpAddress?: string;
|
|
49618
49628
|
/**
|
|
@@ -49957,7 +49967,7 @@ export declare class CreateNetworkInterfaceResponseBodyPrivateIpSetsPrivateIpSet
|
|
|
49957
49967
|
* The private IP address of the instance.
|
|
49958
49968
|
*
|
|
49959
49969
|
* @example
|
|
49960
|
-
* 172.17
|
|
49970
|
+
* ``172.17.**.**``
|
|
49961
49971
|
*/
|
|
49962
49972
|
privateIpAddress?: string;
|
|
49963
49973
|
static names(): {
|
|
@@ -50531,7 +50541,7 @@ export declare class DeregisterManagedInstanceResponseBodyInstance extends $tea.
|
|
|
50531
50541
|
* The public IP address of the managed instance.
|
|
50532
50542
|
*
|
|
50533
50543
|
* @example
|
|
50534
|
-
* 47.8
|
|
50544
|
+
* ``47.8.**.**``
|
|
50535
50545
|
*/
|
|
50536
50546
|
internetIp?: string;
|
|
50537
50547
|
/**
|
|
@@ -50539,7 +50549,7 @@ export declare class DeregisterManagedInstanceResponseBodyInstance extends $tea.
|
|
|
50539
50549
|
* The internal IP address of the managed instance.
|
|
50540
50550
|
*
|
|
50541
50551
|
* @example
|
|
50542
|
-
* 10.0
|
|
50552
|
+
* ``10.0.**.**``
|
|
50543
50553
|
*/
|
|
50544
50554
|
intranetIp?: string;
|
|
50545
50555
|
/**
|
|
@@ -59055,7 +59065,7 @@ export declare class DescribeInstanceAttributeResponseBodyEipAddress extends $te
|
|
|
59055
59065
|
* The ID of the elastic IP address (EIP).
|
|
59056
59066
|
*
|
|
59057
59067
|
* @example
|
|
59058
|
-
* 30.21
|
|
59068
|
+
* ``30.21.**.**``
|
|
59059
59069
|
*/
|
|
59060
59070
|
ipAddress?: string;
|
|
59061
59071
|
static names(): {
|
|
@@ -59159,7 +59169,7 @@ export declare class DescribeInstanceAttributeResponseBodyVpcAttributes extends
|
|
|
59159
59169
|
* The NAT IP address of the instance. It is used by ECS instances in different VPCs for communication.
|
|
59160
59170
|
*
|
|
59161
59171
|
* @example
|
|
59162
|
-
* 172.17
|
|
59172
|
+
* ``172.17.**.**``
|
|
59163
59173
|
*/
|
|
59164
59174
|
natIpAddress?: string;
|
|
59165
59175
|
/**
|
|
@@ -61050,7 +61060,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceEipAddress ex
|
|
|
61050
61060
|
* The EIP.
|
|
61051
61061
|
*
|
|
61052
61062
|
* @example
|
|
61053
|
-
* 42.112
|
|
61063
|
+
* ``42.112.**.**``
|
|
61054
61064
|
*/
|
|
61055
61065
|
ipAddress?: string;
|
|
61056
61066
|
/**
|
|
@@ -61280,7 +61290,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceNetworkInterf
|
|
|
61280
61290
|
* The private IP address of the ENI.
|
|
61281
61291
|
*
|
|
61282
61292
|
* @example
|
|
61283
|
-
* 172.17
|
|
61293
|
+
* ``172.17.**.**``
|
|
61284
61294
|
*/
|
|
61285
61295
|
privateIpAddress?: string;
|
|
61286
61296
|
static names(): {
|
|
@@ -61342,7 +61352,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceNetworkInterf
|
|
|
61342
61352
|
* The primary private IP address of the ENI.
|
|
61343
61353
|
*
|
|
61344
61354
|
* @example
|
|
61345
|
-
* 172.17
|
|
61355
|
+
* ``172.17.**.**``*
|
|
61346
61356
|
*/
|
|
61347
61357
|
primaryIpAddress?: string;
|
|
61348
61358
|
/**
|
|
@@ -61572,7 +61582,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceVpcAttributes
|
|
|
61572
61582
|
* The NAT IP address of the instance. The NAT IP address is used by ECS instances in different VPCs for communication.
|
|
61573
61583
|
*
|
|
61574
61584
|
* @example
|
|
61575
|
-
* 172.17
|
|
61585
|
+
* ``172.17.**.**``
|
|
61576
61586
|
*/
|
|
61577
61587
|
natIpAddress?: string;
|
|
61578
61588
|
/**
|
|
@@ -64040,6 +64050,9 @@ export declare class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVer
|
|
|
64040
64050
|
* testHostName
|
|
64041
64051
|
*/
|
|
64042
64052
|
hostName?: string;
|
|
64053
|
+
httpEndpoint?: string;
|
|
64054
|
+
httpPutResponseHopLimit?: number;
|
|
64055
|
+
httpTokens?: string;
|
|
64043
64056
|
/**
|
|
64044
64057
|
* @remarks
|
|
64045
64058
|
* The ID of the image.
|
|
@@ -64183,7 +64196,7 @@ export declare class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVer
|
|
|
64183
64196
|
* The private IP address to assign to the instance.
|
|
64184
64197
|
*
|
|
64185
64198
|
* @example
|
|
64186
|
-
* 10.1
|
|
64199
|
+
* ``10.1.**.**``
|
|
64187
64200
|
*/
|
|
64188
64201
|
privateIpAddress?: string;
|
|
64189
64202
|
/**
|
|
@@ -64690,7 +64703,7 @@ export declare class DescribeManagedInstancesResponseBodyInstances extends $tea.
|
|
|
64690
64703
|
* The public IP address of the managed instance.
|
|
64691
64704
|
*
|
|
64692
64705
|
* @example
|
|
64693
|
-
* 40.65
|
|
64706
|
+
* ``40.65.**.**``
|
|
64694
64707
|
*/
|
|
64695
64708
|
internetIp?: string;
|
|
64696
64709
|
/**
|
|
@@ -64698,7 +64711,7 @@ export declare class DescribeManagedInstancesResponseBodyInstances extends $tea.
|
|
|
64698
64711
|
* The internal IP address of the managed instance.
|
|
64699
64712
|
*
|
|
64700
64713
|
* @example
|
|
64701
|
-
* 10.0
|
|
64714
|
+
* ``10.0.**.**``
|
|
64702
64715
|
*/
|
|
64703
64716
|
intranetIp?: string;
|
|
64704
64717
|
/**
|
|
@@ -64872,7 +64885,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBodyAssociatedPubl
|
|
|
64872
64885
|
* The EIP.
|
|
64873
64886
|
*
|
|
64874
64887
|
* @example
|
|
64875
|
-
* 116.62
|
|
64888
|
+
* ``116.62.**.**``
|
|
64876
64889
|
*/
|
|
64877
64890
|
publicIpAddress?: string;
|
|
64878
64891
|
static names(): {
|
|
@@ -65212,7 +65225,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBodyPrivateIpSetsP
|
|
|
65212
65225
|
* The EIP.
|
|
65213
65226
|
*
|
|
65214
65227
|
* @example
|
|
65215
|
-
* 116.62
|
|
65228
|
+
* ``116.62.**.**``
|
|
65216
65229
|
*/
|
|
65217
65230
|
publicIpAddress?: string;
|
|
65218
65231
|
static names(): {
|
|
@@ -65247,7 +65260,7 @@ export declare class DescribeNetworkInterfaceAttributeResponseBodyPrivateIpSetsP
|
|
|
65247
65260
|
* The private IP address of the ENI.
|
|
65248
65261
|
*
|
|
65249
65262
|
* @example
|
|
65250
|
-
* 172.17
|
|
65263
|
+
* ``172.17.**.**``
|
|
65251
65264
|
*/
|
|
65252
65265
|
privateIpAddress?: string;
|
|
65253
65266
|
static names(): {
|
|
@@ -65477,7 +65490,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
|
|
|
65477
65490
|
* The EIP.
|
|
65478
65491
|
*
|
|
65479
65492
|
* @example
|
|
65480
|
-
* 116.62
|
|
65493
|
+
* ``116.62.**.**``
|
|
65481
65494
|
*/
|
|
65482
65495
|
publicIpAddress?: string;
|
|
65483
65496
|
static names(): {
|
|
@@ -65643,7 +65656,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
|
|
|
65643
65656
|
* The EIP.
|
|
65644
65657
|
*
|
|
65645
65658
|
* @example
|
|
65646
|
-
* 116.62
|
|
65659
|
+
* ``116.62.**.**``
|
|
65647
65660
|
*/
|
|
65648
65661
|
publicIpAddress?: string;
|
|
65649
65662
|
static names(): {
|
|
@@ -65686,7 +65699,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
|
|
|
65686
65699
|
* The private IP address of the ENI.
|
|
65687
65700
|
*
|
|
65688
65701
|
* @example
|
|
65689
|
-
* 172.17
|
|
65702
|
+
* ``172.17.**.**``
|
|
65690
65703
|
*/
|
|
65691
65704
|
privateIpAddress?: string;
|
|
65692
65705
|
static names(): {
|
|
@@ -65875,7 +65888,7 @@ export declare class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNe
|
|
|
65875
65888
|
* The primary private IP address of the ENI.
|
|
65876
65889
|
*
|
|
65877
65890
|
* @example
|
|
65878
|
-
* 172.17
|
|
65891
|
+
* ``172.17.**.**``
|
|
65879
65892
|
*/
|
|
65880
65893
|
privateIpAddress?: string;
|
|
65881
65894
|
/**
|
|
@@ -75149,7 +75162,7 @@ export declare class RunInstancesRequestNetworkInterface extends $tea.Model {
|
|
|
75149
75162
|
* * 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.
|
|
75150
75163
|
*
|
|
75151
75164
|
* @example
|
|
75152
|
-
* 172.16
|
|
75165
|
+
* ``172.16.**.**``
|
|
75153
75166
|
*/
|
|
75154
75167
|
primaryIpAddress?: string;
|
|
75155
75168
|
/**
|
package/dist/client.js
CHANGED
|
@@ -3864,6 +3864,9 @@ class CreateLaunchTemplateRequest extends $tea.Model {
|
|
|
3864
3864
|
description: 'Description',
|
|
3865
3865
|
enableVmOsConfig: 'EnableVmOsConfig',
|
|
3866
3866
|
hostName: 'HostName',
|
|
3867
|
+
httpEndpoint: 'HttpEndpoint',
|
|
3868
|
+
httpPutResponseHopLimit: 'HttpPutResponseHopLimit',
|
|
3869
|
+
httpTokens: 'HttpTokens',
|
|
3867
3870
|
imageId: 'ImageId',
|
|
3868
3871
|
imageOwnerAlias: 'ImageOwnerAlias',
|
|
3869
3872
|
instanceChargeType: 'InstanceChargeType',
|
|
@@ -3918,6 +3921,9 @@ class CreateLaunchTemplateRequest extends $tea.Model {
|
|
|
3918
3921
|
description: 'string',
|
|
3919
3922
|
enableVmOsConfig: 'boolean',
|
|
3920
3923
|
hostName: 'string',
|
|
3924
|
+
httpEndpoint: 'string',
|
|
3925
|
+
httpPutResponseHopLimit: 'number',
|
|
3926
|
+
httpTokens: 'string',
|
|
3921
3927
|
imageId: 'string',
|
|
3922
3928
|
imageOwnerAlias: 'string',
|
|
3923
3929
|
instanceChargeType: 'string',
|
|
@@ -4018,6 +4024,9 @@ class CreateLaunchTemplateVersionRequest extends $tea.Model {
|
|
|
4018
4024
|
description: 'Description',
|
|
4019
4025
|
enableVmOsConfig: 'EnableVmOsConfig',
|
|
4020
4026
|
hostName: 'HostName',
|
|
4027
|
+
httpEndpoint: 'HttpEndpoint',
|
|
4028
|
+
httpPutResponseHopLimit: 'HttpPutResponseHopLimit',
|
|
4029
|
+
httpTokens: 'HttpTokens',
|
|
4021
4030
|
imageId: 'ImageId',
|
|
4022
4031
|
imageOwnerAlias: 'ImageOwnerAlias',
|
|
4023
4032
|
instanceChargeType: 'InstanceChargeType',
|
|
@@ -4071,6 +4080,9 @@ class CreateLaunchTemplateVersionRequest extends $tea.Model {
|
|
|
4071
4080
|
description: 'string',
|
|
4072
4081
|
enableVmOsConfig: 'boolean',
|
|
4073
4082
|
hostName: 'string',
|
|
4083
|
+
httpEndpoint: 'string',
|
|
4084
|
+
httpPutResponseHopLimit: 'number',
|
|
4085
|
+
httpTokens: 'string',
|
|
4074
4086
|
imageId: 'string',
|
|
4075
4087
|
imageOwnerAlias: 'string',
|
|
4076
4088
|
instanceChargeType: 'string',
|
|
@@ -23929,9 +23941,13 @@ class PurchaseElasticityAssuranceRequest extends $tea.Model {
|
|
|
23929
23941
|
return {
|
|
23930
23942
|
privatePoolOptions: 'PrivatePoolOptions',
|
|
23931
23943
|
clientToken: 'ClientToken',
|
|
23944
|
+
ownerAccount: 'OwnerAccount',
|
|
23945
|
+
ownerId: 'OwnerId',
|
|
23932
23946
|
period: 'Period',
|
|
23933
23947
|
periodUnit: 'PeriodUnit',
|
|
23934
23948
|
regionId: 'RegionId',
|
|
23949
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
23950
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
23935
23951
|
startTime: 'StartTime',
|
|
23936
23952
|
};
|
|
23937
23953
|
}
|
|
@@ -23939,9 +23955,13 @@ class PurchaseElasticityAssuranceRequest extends $tea.Model {
|
|
|
23939
23955
|
return {
|
|
23940
23956
|
privatePoolOptions: PurchaseElasticityAssuranceRequestPrivatePoolOptions,
|
|
23941
23957
|
clientToken: 'string',
|
|
23958
|
+
ownerAccount: 'string',
|
|
23959
|
+
ownerId: 'number',
|
|
23942
23960
|
period: 'number',
|
|
23943
23961
|
periodUnit: 'string',
|
|
23944
23962
|
regionId: 'string',
|
|
23963
|
+
resourceOwnerAccount: 'string',
|
|
23964
|
+
resourceOwnerId: 'number',
|
|
23945
23965
|
startTime: 'string',
|
|
23946
23966
|
};
|
|
23947
23967
|
}
|
|
@@ -37066,6 +37086,9 @@ class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVersionSetsLaunchT
|
|
|
37066
37086
|
description: 'Description',
|
|
37067
37087
|
enableVmOsConfig: 'EnableVmOsConfig',
|
|
37068
37088
|
hostName: 'HostName',
|
|
37089
|
+
httpEndpoint: 'HttpEndpoint',
|
|
37090
|
+
httpPutResponseHopLimit: 'HttpPutResponseHopLimit',
|
|
37091
|
+
httpTokens: 'HttpTokens',
|
|
37069
37092
|
imageId: 'ImageId',
|
|
37070
37093
|
imageOwnerAlias: 'ImageOwnerAlias',
|
|
37071
37094
|
instanceChargeType: 'InstanceChargeType',
|
|
@@ -37111,6 +37134,9 @@ class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVersionSetsLaunchT
|
|
|
37111
37134
|
description: 'string',
|
|
37112
37135
|
enableVmOsConfig: 'boolean',
|
|
37113
37136
|
hostName: 'string',
|
|
37137
|
+
httpEndpoint: 'string',
|
|
37138
|
+
httpPutResponseHopLimit: 'number',
|
|
37139
|
+
httpTokens: 'string',
|
|
37114
37140
|
imageId: 'string',
|
|
37115
37141
|
imageOwnerAlias: 'string',
|
|
37116
37142
|
instanceChargeType: 'string',
|
|
@@ -48465,6 +48491,15 @@ class Client extends openapi_client_1.default {
|
|
|
48465
48491
|
if (!tea_util_1.default.isUnset(request.hostName)) {
|
|
48466
48492
|
query["HostName"] = request.hostName;
|
|
48467
48493
|
}
|
|
48494
|
+
if (!tea_util_1.default.isUnset(request.httpEndpoint)) {
|
|
48495
|
+
query["HttpEndpoint"] = request.httpEndpoint;
|
|
48496
|
+
}
|
|
48497
|
+
if (!tea_util_1.default.isUnset(request.httpPutResponseHopLimit)) {
|
|
48498
|
+
query["HttpPutResponseHopLimit"] = request.httpPutResponseHopLimit;
|
|
48499
|
+
}
|
|
48500
|
+
if (!tea_util_1.default.isUnset(request.httpTokens)) {
|
|
48501
|
+
query["HttpTokens"] = request.httpTokens;
|
|
48502
|
+
}
|
|
48468
48503
|
if (!tea_util_1.default.isUnset(request.imageId)) {
|
|
48469
48504
|
query["ImageId"] = request.imageId;
|
|
48470
48505
|
}
|
|
@@ -48666,6 +48701,15 @@ class Client extends openapi_client_1.default {
|
|
|
48666
48701
|
if (!tea_util_1.default.isUnset(request.hostName)) {
|
|
48667
48702
|
query["HostName"] = request.hostName;
|
|
48668
48703
|
}
|
|
48704
|
+
if (!tea_util_1.default.isUnset(request.httpEndpoint)) {
|
|
48705
|
+
query["HttpEndpoint"] = request.httpEndpoint;
|
|
48706
|
+
}
|
|
48707
|
+
if (!tea_util_1.default.isUnset(request.httpPutResponseHopLimit)) {
|
|
48708
|
+
query["HttpPutResponseHopLimit"] = request.httpPutResponseHopLimit;
|
|
48709
|
+
}
|
|
48710
|
+
if (!tea_util_1.default.isUnset(request.httpTokens)) {
|
|
48711
|
+
query["HttpTokens"] = request.httpTokens;
|
|
48712
|
+
}
|
|
48669
48713
|
if (!tea_util_1.default.isUnset(request.imageId)) {
|
|
48670
48714
|
query["ImageId"] = request.imageId;
|
|
48671
48715
|
}
|
|
@@ -68851,6 +68895,12 @@ class Client extends openapi_client_1.default {
|
|
|
68851
68895
|
if (!tea_util_1.default.isUnset(request.clientToken)) {
|
|
68852
68896
|
query["ClientToken"] = request.clientToken;
|
|
68853
68897
|
}
|
|
68898
|
+
if (!tea_util_1.default.isUnset(request.ownerAccount)) {
|
|
68899
|
+
query["OwnerAccount"] = request.ownerAccount;
|
|
68900
|
+
}
|
|
68901
|
+
if (!tea_util_1.default.isUnset(request.ownerId)) {
|
|
68902
|
+
query["OwnerId"] = request.ownerId;
|
|
68903
|
+
}
|
|
68854
68904
|
if (!tea_util_1.default.isUnset(request.period)) {
|
|
68855
68905
|
query["Period"] = request.period;
|
|
68856
68906
|
}
|
|
@@ -68860,6 +68910,12 @@ class Client extends openapi_client_1.default {
|
|
|
68860
68910
|
if (!tea_util_1.default.isUnset(request.regionId)) {
|
|
68861
68911
|
query["RegionId"] = request.regionId;
|
|
68862
68912
|
}
|
|
68913
|
+
if (!tea_util_1.default.isUnset(request.resourceOwnerAccount)) {
|
|
68914
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
68915
|
+
}
|
|
68916
|
+
if (!tea_util_1.default.isUnset(request.resourceOwnerId)) {
|
|
68917
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
68918
|
+
}
|
|
68863
68919
|
if (!tea_util_1.default.isUnset(request.startTime)) {
|
|
68864
68920
|
query["StartTime"] = request.startTime;
|
|
68865
68921
|
}
|