@alicloud/ecs20140526 4.4.2 → 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 +90 -39
- package/dist/client.js +148 -11
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +226 -39
package/src/client.ts
CHANGED
|
@@ -891,7 +891,7 @@ export class AllocatePublicIpAddressRequest extends $tea.Model {
|
|
|
891
891
|
* The public IP address. If you leave this parameter empty, the system randomly assigns a public IP address to the instance.
|
|
892
892
|
*
|
|
893
893
|
* @example
|
|
894
|
-
* 112.124
|
|
894
|
+
* ``112.124.**.**``
|
|
895
895
|
*/
|
|
896
896
|
ipAddress?: string;
|
|
897
897
|
ownerAccount?: string;
|
|
@@ -943,7 +943,7 @@ export class AllocatePublicIpAddressResponseBody extends $tea.Model {
|
|
|
943
943
|
* The public IP address.
|
|
944
944
|
*
|
|
945
945
|
* @example
|
|
946
|
-
* 112.124
|
|
946
|
+
* ``112.124.**.**``
|
|
947
947
|
*/
|
|
948
948
|
ipAddress?: string;
|
|
949
949
|
/**
|
|
@@ -1342,7 +1342,7 @@ export class AssignPrivateIpAddressesRequest extends $tea.Model {
|
|
|
1342
1342
|
* To assign secondary private IP addresses to the ENI, you must specify `PrivateIpAddress.N` or `SecondaryPrivateIpAddressCount` but not both.
|
|
1343
1343
|
*
|
|
1344
1344
|
* @example
|
|
1345
|
-
* 10.1
|
|
1345
|
+
* ``10.1.**.**``
|
|
1346
1346
|
*/
|
|
1347
1347
|
privateIpAddress?: string[];
|
|
1348
1348
|
/**
|
|
@@ -7819,6 +7819,7 @@ export class CreateImageComponentRequest extends $tea.Model {
|
|
|
7819
7819
|
* Build
|
|
7820
7820
|
*/
|
|
7821
7821
|
componentType?: string;
|
|
7822
|
+
componentVersion?: string;
|
|
7822
7823
|
/**
|
|
7823
7824
|
* @remarks
|
|
7824
7825
|
* The content of the image component. The content consists of up to 127 commands.
|
|
@@ -7886,6 +7887,7 @@ export class CreateImageComponentRequest extends $tea.Model {
|
|
|
7886
7887
|
return {
|
|
7887
7888
|
clientToken: 'ClientToken',
|
|
7888
7889
|
componentType: 'ComponentType',
|
|
7890
|
+
componentVersion: 'ComponentVersion',
|
|
7889
7891
|
content: 'Content',
|
|
7890
7892
|
description: 'Description',
|
|
7891
7893
|
name: 'Name',
|
|
@@ -7904,6 +7906,7 @@ export class CreateImageComponentRequest extends $tea.Model {
|
|
|
7904
7906
|
return {
|
|
7905
7907
|
clientToken: 'string',
|
|
7906
7908
|
componentType: 'string',
|
|
7909
|
+
componentVersion: 'string',
|
|
7907
7910
|
content: 'string',
|
|
7908
7911
|
description: 'string',
|
|
7909
7912
|
name: 'string',
|
|
@@ -8058,6 +8061,7 @@ export class CreateImagePipelineRequest extends $tea.Model {
|
|
|
8058
8061
|
* This is description.
|
|
8059
8062
|
*/
|
|
8060
8063
|
description?: string;
|
|
8064
|
+
imageFamily?: string;
|
|
8061
8065
|
/**
|
|
8062
8066
|
* @remarks
|
|
8063
8067
|
* 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 (-).
|
|
@@ -8110,6 +8114,7 @@ export class CreateImagePipelineRequest extends $tea.Model {
|
|
|
8110
8114
|
* cn-hangzhou
|
|
8111
8115
|
*/
|
|
8112
8116
|
regionId?: string;
|
|
8117
|
+
repairMode?: string;
|
|
8113
8118
|
/**
|
|
8114
8119
|
* @remarks
|
|
8115
8120
|
* The ID of the resource group.
|
|
@@ -8135,6 +8140,7 @@ export class CreateImagePipelineRequest extends $tea.Model {
|
|
|
8135
8140
|
* The tags to add to the template.
|
|
8136
8141
|
*/
|
|
8137
8142
|
tag?: CreateImagePipelineRequestTag[];
|
|
8143
|
+
testContent?: string;
|
|
8138
8144
|
/**
|
|
8139
8145
|
* @remarks
|
|
8140
8146
|
* 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.
|
|
@@ -8164,6 +8170,7 @@ export class CreateImagePipelineRequest extends $tea.Model {
|
|
|
8164
8170
|
clientToken: 'ClientToken',
|
|
8165
8171
|
deleteInstanceOnFailure: 'DeleteInstanceOnFailure',
|
|
8166
8172
|
description: 'Description',
|
|
8173
|
+
imageFamily: 'ImageFamily',
|
|
8167
8174
|
imageName: 'ImageName',
|
|
8168
8175
|
instanceType: 'InstanceType',
|
|
8169
8176
|
internetMaxBandwidthOut: 'InternetMaxBandwidthOut',
|
|
@@ -8171,11 +8178,13 @@ export class CreateImagePipelineRequest extends $tea.Model {
|
|
|
8171
8178
|
ownerAccount: 'OwnerAccount',
|
|
8172
8179
|
ownerId: 'OwnerId',
|
|
8173
8180
|
regionId: 'RegionId',
|
|
8181
|
+
repairMode: 'RepairMode',
|
|
8174
8182
|
resourceGroupId: 'ResourceGroupId',
|
|
8175
8183
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
8176
8184
|
resourceOwnerId: 'ResourceOwnerId',
|
|
8177
8185
|
systemDiskSize: 'SystemDiskSize',
|
|
8178
8186
|
tag: 'Tag',
|
|
8187
|
+
testContent: 'TestContent',
|
|
8179
8188
|
toRegionId: 'ToRegionId',
|
|
8180
8189
|
vSwitchId: 'VSwitchId',
|
|
8181
8190
|
};
|
|
@@ -8190,6 +8199,7 @@ export class CreateImagePipelineRequest extends $tea.Model {
|
|
|
8190
8199
|
clientToken: 'string',
|
|
8191
8200
|
deleteInstanceOnFailure: 'boolean',
|
|
8192
8201
|
description: 'string',
|
|
8202
|
+
imageFamily: 'string',
|
|
8193
8203
|
imageName: 'string',
|
|
8194
8204
|
instanceType: 'string',
|
|
8195
8205
|
internetMaxBandwidthOut: 'number',
|
|
@@ -8197,11 +8207,13 @@ export class CreateImagePipelineRequest extends $tea.Model {
|
|
|
8197
8207
|
ownerAccount: 'string',
|
|
8198
8208
|
ownerId: 'number',
|
|
8199
8209
|
regionId: 'string',
|
|
8210
|
+
repairMode: 'string',
|
|
8200
8211
|
resourceGroupId: 'string',
|
|
8201
8212
|
resourceOwnerAccount: 'string',
|
|
8202
8213
|
resourceOwnerId: 'number',
|
|
8203
8214
|
systemDiskSize: 'number',
|
|
8204
8215
|
tag: { 'type': 'array', 'itemType': CreateImagePipelineRequestTag },
|
|
8216
|
+
testContent: 'string',
|
|
8205
8217
|
toRegionId: { 'type': 'array', 'itemType': 'string' },
|
|
8206
8218
|
vSwitchId: 'string',
|
|
8207
8219
|
};
|
|
@@ -8494,7 +8506,7 @@ export class CreateInstanceRequest extends $tea.Model {
|
|
|
8494
8506
|
* The internal IP address to assign to the instance.
|
|
8495
8507
|
*
|
|
8496
8508
|
* @example
|
|
8497
|
-
* 192.168
|
|
8509
|
+
* ``192.168.**.**``
|
|
8498
8510
|
*/
|
|
8499
8511
|
innerIpAddress?: string;
|
|
8500
8512
|
/**
|
|
@@ -9315,6 +9327,9 @@ export class CreateLaunchTemplateRequest extends $tea.Model {
|
|
|
9315
9327
|
* testHostName
|
|
9316
9328
|
*/
|
|
9317
9329
|
hostName?: string;
|
|
9330
|
+
httpEndpoint?: string;
|
|
9331
|
+
httpPutResponseHopLimit?: number;
|
|
9332
|
+
httpTokens?: string;
|
|
9318
9333
|
/**
|
|
9319
9334
|
* @remarks
|
|
9320
9335
|
* 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.
|
|
@@ -9490,7 +9505,7 @@ export class CreateLaunchTemplateRequest extends $tea.Model {
|
|
|
9490
9505
|
* 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.
|
|
9491
9506
|
*
|
|
9492
9507
|
* @example
|
|
9493
|
-
* 10.1
|
|
9508
|
+
* ``10.1.**.**``
|
|
9494
9509
|
*/
|
|
9495
9510
|
privateIpAddress?: string;
|
|
9496
9511
|
/**
|
|
@@ -9664,6 +9679,9 @@ export class CreateLaunchTemplateRequest extends $tea.Model {
|
|
|
9664
9679
|
description: 'Description',
|
|
9665
9680
|
enableVmOsConfig: 'EnableVmOsConfig',
|
|
9666
9681
|
hostName: 'HostName',
|
|
9682
|
+
httpEndpoint: 'HttpEndpoint',
|
|
9683
|
+
httpPutResponseHopLimit: 'HttpPutResponseHopLimit',
|
|
9684
|
+
httpTokens: 'HttpTokens',
|
|
9667
9685
|
imageId: 'ImageId',
|
|
9668
9686
|
imageOwnerAlias: 'ImageOwnerAlias',
|
|
9669
9687
|
instanceChargeType: 'InstanceChargeType',
|
|
@@ -9719,6 +9737,9 @@ export class CreateLaunchTemplateRequest extends $tea.Model {
|
|
|
9719
9737
|
description: 'string',
|
|
9720
9738
|
enableVmOsConfig: 'boolean',
|
|
9721
9739
|
hostName: 'string',
|
|
9740
|
+
httpEndpoint: 'string',
|
|
9741
|
+
httpPutResponseHopLimit: 'number',
|
|
9742
|
+
httpTokens: 'string',
|
|
9722
9743
|
imageId: 'string',
|
|
9723
9744
|
imageOwnerAlias: 'string',
|
|
9724
9745
|
instanceChargeType: 'string',
|
|
@@ -9943,6 +9964,9 @@ export class CreateLaunchTemplateVersionRequest extends $tea.Model {
|
|
|
9943
9964
|
* testHostName
|
|
9944
9965
|
*/
|
|
9945
9966
|
hostName?: string;
|
|
9967
|
+
httpEndpoint?: string;
|
|
9968
|
+
httpPutResponseHopLimit?: number;
|
|
9969
|
+
httpTokens?: string;
|
|
9946
9970
|
/**
|
|
9947
9971
|
* @remarks
|
|
9948
9972
|
* 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.
|
|
@@ -10126,7 +10150,7 @@ export class CreateLaunchTemplateVersionRequest extends $tea.Model {
|
|
|
10126
10150
|
* 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.
|
|
10127
10151
|
*
|
|
10128
10152
|
* @example
|
|
10129
|
-
* 10.1
|
|
10153
|
+
* ``10.1.**.**``
|
|
10130
10154
|
*/
|
|
10131
10155
|
privateIpAddress?: string;
|
|
10132
10156
|
/**
|
|
@@ -10281,6 +10305,9 @@ export class CreateLaunchTemplateVersionRequest extends $tea.Model {
|
|
|
10281
10305
|
description: 'Description',
|
|
10282
10306
|
enableVmOsConfig: 'EnableVmOsConfig',
|
|
10283
10307
|
hostName: 'HostName',
|
|
10308
|
+
httpEndpoint: 'HttpEndpoint',
|
|
10309
|
+
httpPutResponseHopLimit: 'HttpPutResponseHopLimit',
|
|
10310
|
+
httpTokens: 'HttpTokens',
|
|
10284
10311
|
imageId: 'ImageId',
|
|
10285
10312
|
imageOwnerAlias: 'ImageOwnerAlias',
|
|
10286
10313
|
instanceChargeType: 'InstanceChargeType',
|
|
@@ -10335,6 +10362,9 @@ export class CreateLaunchTemplateVersionRequest extends $tea.Model {
|
|
|
10335
10362
|
description: 'string',
|
|
10336
10363
|
enableVmOsConfig: 'boolean',
|
|
10337
10364
|
hostName: 'string',
|
|
10365
|
+
httpEndpoint: 'string',
|
|
10366
|
+
httpPutResponseHopLimit: 'number',
|
|
10367
|
+
httpTokens: 'string',
|
|
10338
10368
|
imageId: 'string',
|
|
10339
10369
|
imageOwnerAlias: 'string',
|
|
10340
10370
|
instanceChargeType: 'string',
|
|
@@ -10721,7 +10751,7 @@ export class CreateNetworkInterfaceRequest extends $tea.Model {
|
|
|
10721
10751
|
* 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.
|
|
10722
10752
|
*
|
|
10723
10753
|
* @example
|
|
10724
|
-
* 172.17
|
|
10754
|
+
* ``172.17.**.**``
|
|
10725
10755
|
*/
|
|
10726
10756
|
primaryIpAddress?: string;
|
|
10727
10757
|
/**
|
|
@@ -10731,7 +10761,7 @@ export class CreateNetworkInterfaceRequest extends $tea.Model {
|
|
|
10731
10761
|
* > To assign secondary private IP addresses to the ENI, you can specify the `PrivateIpAddress.N` or `SecondaryPrivateIpAddressCount` parameter, but not both.
|
|
10732
10762
|
*
|
|
10733
10763
|
* @example
|
|
10734
|
-
* 172.17
|
|
10764
|
+
* ``172.17.**.**``
|
|
10735
10765
|
*/
|
|
10736
10766
|
privateIpAddress?: string[];
|
|
10737
10767
|
/**
|
|
@@ -10995,7 +11025,7 @@ export class CreateNetworkInterfaceResponseBody extends $tea.Model {
|
|
|
10995
11025
|
* The private IP address of the ENI.
|
|
10996
11026
|
*
|
|
10997
11027
|
* @example
|
|
10998
|
-
* 172.17
|
|
11028
|
+
* ``172.17.**.**``
|
|
10999
11029
|
*/
|
|
11000
11030
|
privateIpAddress?: string;
|
|
11001
11031
|
/**
|
|
@@ -24658,6 +24688,8 @@ export class DescribeHpcClustersResponse extends $tea.Model {
|
|
|
24658
24688
|
}
|
|
24659
24689
|
|
|
24660
24690
|
export class DescribeImageComponentsRequest extends $tea.Model {
|
|
24691
|
+
componentType?: string;
|
|
24692
|
+
componentVersion?: string;
|
|
24661
24693
|
/**
|
|
24662
24694
|
* @remarks
|
|
24663
24695
|
* The IDs of image components. Valid values of N: 1 to 20.
|
|
@@ -24727,6 +24759,7 @@ export class DescribeImageComponentsRequest extends $tea.Model {
|
|
|
24727
24759
|
resourceGroupId?: string;
|
|
24728
24760
|
resourceOwnerAccount?: string;
|
|
24729
24761
|
resourceOwnerId?: number;
|
|
24762
|
+
systemType?: string;
|
|
24730
24763
|
/**
|
|
24731
24764
|
* @remarks
|
|
24732
24765
|
* The tags of the image component.
|
|
@@ -24734,6 +24767,8 @@ export class DescribeImageComponentsRequest extends $tea.Model {
|
|
|
24734
24767
|
tag?: DescribeImageComponentsRequestTag[];
|
|
24735
24768
|
static names(): { [key: string]: string } {
|
|
24736
24769
|
return {
|
|
24770
|
+
componentType: 'ComponentType',
|
|
24771
|
+
componentVersion: 'ComponentVersion',
|
|
24737
24772
|
imageComponentId: 'ImageComponentId',
|
|
24738
24773
|
maxResults: 'MaxResults',
|
|
24739
24774
|
name: 'Name',
|
|
@@ -24745,12 +24780,15 @@ export class DescribeImageComponentsRequest extends $tea.Model {
|
|
|
24745
24780
|
resourceGroupId: 'ResourceGroupId',
|
|
24746
24781
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
24747
24782
|
resourceOwnerId: 'ResourceOwnerId',
|
|
24783
|
+
systemType: 'SystemType',
|
|
24748
24784
|
tag: 'Tag',
|
|
24749
24785
|
};
|
|
24750
24786
|
}
|
|
24751
24787
|
|
|
24752
24788
|
static types(): { [key: string]: any } {
|
|
24753
24789
|
return {
|
|
24790
|
+
componentType: 'string',
|
|
24791
|
+
componentVersion: 'string',
|
|
24754
24792
|
imageComponentId: { 'type': 'array', 'itemType': 'string' },
|
|
24755
24793
|
maxResults: 'number',
|
|
24756
24794
|
name: 'string',
|
|
@@ -24762,6 +24800,7 @@ export class DescribeImageComponentsRequest extends $tea.Model {
|
|
|
24762
24800
|
resourceGroupId: 'string',
|
|
24763
24801
|
resourceOwnerAccount: 'string',
|
|
24764
24802
|
resourceOwnerId: 'number',
|
|
24803
|
+
systemType: 'string',
|
|
24765
24804
|
tag: { 'type': 'array', 'itemType': DescribeImageComponentsRequestTag },
|
|
24766
24805
|
};
|
|
24767
24806
|
}
|
|
@@ -31187,7 +31226,7 @@ export class DescribeManagedInstancesRequest extends $tea.Model {
|
|
|
31187
31226
|
* The internal or public IP address of the managed instance.
|
|
31188
31227
|
*
|
|
31189
31228
|
* @example
|
|
31190
|
-
* 192.168
|
|
31229
|
+
* ``192.168.**.**``
|
|
31191
31230
|
*/
|
|
31192
31231
|
instanceIp?: string;
|
|
31193
31232
|
/**
|
|
@@ -31737,7 +31776,7 @@ export class DescribeNetworkInterfaceAttributeResponseBody extends $tea.Model {
|
|
|
31737
31776
|
* The private IP address of the ENI.
|
|
31738
31777
|
*
|
|
31739
31778
|
* @example
|
|
31740
|
-
* 10.1
|
|
31779
|
+
* ``10.1.**.**``
|
|
31741
31780
|
*/
|
|
31742
31781
|
privateIpAddress?: string;
|
|
31743
31782
|
/**
|
|
@@ -32267,7 +32306,7 @@ export class DescribeNetworkInterfacesRequest extends $tea.Model {
|
|
|
32267
32306
|
* The primary private IPv4 address of the ENI.
|
|
32268
32307
|
*
|
|
32269
32308
|
* @example
|
|
32270
|
-
* 192.168
|
|
32309
|
+
* ``192.168.**.**``
|
|
32271
32310
|
*/
|
|
32272
32311
|
primaryIpAddress?: string;
|
|
32273
32312
|
/**
|
|
@@ -32275,7 +32314,7 @@ export class DescribeNetworkInterfacesRequest extends $tea.Model {
|
|
|
32275
32314
|
* 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.
|
|
32276
32315
|
*
|
|
32277
32316
|
* @example
|
|
32278
|
-
* 192.168
|
|
32317
|
+
* ``192.168.**.**``
|
|
32279
32318
|
*/
|
|
32280
32319
|
privateIpAddress?: string[];
|
|
32281
32320
|
/**
|
|
@@ -50430,7 +50469,7 @@ export class ModifyInstanceVpcAttributeRequest extends $tea.Model {
|
|
|
50430
50469
|
* By default, if this parameter is not specified, a private IP address is randomly assigned from the CIDR block of the specified vSwitch.
|
|
50431
50470
|
*
|
|
50432
50471
|
* @example
|
|
50433
|
-
* 172.17
|
|
50472
|
+
* ``172.17.**.**``
|
|
50434
50473
|
*/
|
|
50435
50474
|
privateIpAddress?: string;
|
|
50436
50475
|
resourceOwnerAccount?: string;
|
|
@@ -54509,6 +54548,8 @@ export class PurchaseElasticityAssuranceRequest extends $tea.Model {
|
|
|
54509
54548
|
* 123e4567-e89b-12d3-a456-426655440000
|
|
54510
54549
|
*/
|
|
54511
54550
|
clientToken?: string;
|
|
54551
|
+
ownerAccount?: string;
|
|
54552
|
+
ownerId?: number;
|
|
54512
54553
|
/**
|
|
54513
54554
|
* @example
|
|
54514
54555
|
* 1
|
|
@@ -54527,6 +54568,8 @@ export class PurchaseElasticityAssuranceRequest extends $tea.Model {
|
|
|
54527
54568
|
* cn-hangzhou
|
|
54528
54569
|
*/
|
|
54529
54570
|
regionId?: string;
|
|
54571
|
+
resourceOwnerAccount?: string;
|
|
54572
|
+
resourceOwnerId?: number;
|
|
54530
54573
|
/**
|
|
54531
54574
|
* @example
|
|
54532
54575
|
* 2024-06-18T00:00Z
|
|
@@ -54536,9 +54579,13 @@ export class PurchaseElasticityAssuranceRequest extends $tea.Model {
|
|
|
54536
54579
|
return {
|
|
54537
54580
|
privatePoolOptions: 'PrivatePoolOptions',
|
|
54538
54581
|
clientToken: 'ClientToken',
|
|
54582
|
+
ownerAccount: 'OwnerAccount',
|
|
54583
|
+
ownerId: 'OwnerId',
|
|
54539
54584
|
period: 'Period',
|
|
54540
54585
|
periodUnit: 'PeriodUnit',
|
|
54541
54586
|
regionId: 'RegionId',
|
|
54587
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
54588
|
+
resourceOwnerId: 'ResourceOwnerId',
|
|
54542
54589
|
startTime: 'StartTime',
|
|
54543
54590
|
};
|
|
54544
54591
|
}
|
|
@@ -54547,9 +54594,13 @@ export class PurchaseElasticityAssuranceRequest extends $tea.Model {
|
|
|
54547
54594
|
return {
|
|
54548
54595
|
privatePoolOptions: PurchaseElasticityAssuranceRequestPrivatePoolOptions,
|
|
54549
54596
|
clientToken: 'string',
|
|
54597
|
+
ownerAccount: 'string',
|
|
54598
|
+
ownerId: 'number',
|
|
54550
54599
|
period: 'number',
|
|
54551
54600
|
periodUnit: 'string',
|
|
54552
54601
|
regionId: 'string',
|
|
54602
|
+
resourceOwnerAccount: 'string',
|
|
54603
|
+
resourceOwnerId: 'number',
|
|
54553
54604
|
startTime: 'string',
|
|
54554
54605
|
};
|
|
54555
54606
|
}
|
|
@@ -56269,7 +56320,7 @@ export class ReleasePublicIpAddressRequest extends $tea.Model {
|
|
|
56269
56320
|
* This parameter is required.
|
|
56270
56321
|
*
|
|
56271
56322
|
* @example
|
|
56272
|
-
* 121.40
|
|
56323
|
+
* ``121.40.**.**``
|
|
56273
56324
|
*/
|
|
56274
56325
|
publicIpAddress?: string;
|
|
56275
56326
|
/**
|
|
@@ -60291,7 +60342,7 @@ export class RunInstancesRequest extends $tea.Model {
|
|
|
60291
60342
|
* > 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.
|
|
60292
60343
|
*
|
|
60293
60344
|
* @example
|
|
60294
|
-
* 10.1
|
|
60345
|
+
* ``10.1.**.**``
|
|
60295
60346
|
*/
|
|
60296
60347
|
privateIpAddress?: string;
|
|
60297
60348
|
/**
|
|
@@ -62488,7 +62539,7 @@ export class UnassignPrivateIpAddressesRequest extends $tea.Model {
|
|
|
62488
62539
|
* The secondary private IP addresses to unassign.
|
|
62489
62540
|
*
|
|
62490
62541
|
* @example
|
|
62491
|
-
* 192.168
|
|
62542
|
+
* ``192.168.**.**``
|
|
62492
62543
|
*/
|
|
62493
62544
|
privateIpAddress?: string[];
|
|
62494
62545
|
/**
|
|
@@ -66747,7 +66798,7 @@ export class CreateLaunchTemplateRequestNetworkInterface extends $tea.Model {
|
|
|
66747
66798
|
* > 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.
|
|
66748
66799
|
*
|
|
66749
66800
|
* @example
|
|
66750
|
-
* 192.168
|
|
66801
|
+
* ``192.168.**.**``
|
|
66751
66802
|
*/
|
|
66752
66803
|
primaryIpAddress?: string;
|
|
66753
66804
|
/**
|
|
@@ -67301,7 +67352,7 @@ export class CreateLaunchTemplateVersionRequestNetworkInterface extends $tea.Mod
|
|
|
67301
67352
|
* The primary private IP address of the secondary ENI. The value of N in `NetworkInterface.N` cannot be greater than 1.
|
|
67302
67353
|
*
|
|
67303
67354
|
* @example
|
|
67304
|
-
* 192.168
|
|
67355
|
+
* ``192.168.**.**``
|
|
67305
67356
|
*/
|
|
67306
67357
|
primaryIpAddress?: string;
|
|
67307
67358
|
/**
|
|
@@ -67785,7 +67836,7 @@ export class CreateNetworkInterfaceResponseBodyPrivateIpSetsPrivateIpSet extends
|
|
|
67785
67836
|
* The private IP address of the instance.
|
|
67786
67837
|
*
|
|
67787
67838
|
* @example
|
|
67788
|
-
* 172.17
|
|
67839
|
+
* ``172.17.**.**``
|
|
67789
67840
|
*/
|
|
67790
67841
|
privateIpAddress?: string;
|
|
67791
67842
|
static names(): { [key: string]: string } {
|
|
@@ -68558,7 +68609,7 @@ export class DeregisterManagedInstanceResponseBodyInstance extends $tea.Model {
|
|
|
68558
68609
|
* The public IP address of the managed instance.
|
|
68559
68610
|
*
|
|
68560
68611
|
* @example
|
|
68561
|
-
* 47.8
|
|
68612
|
+
* ``47.8.**.**``
|
|
68562
68613
|
*/
|
|
68563
68614
|
internetIp?: string;
|
|
68564
68615
|
/**
|
|
@@ -68566,7 +68617,7 @@ export class DeregisterManagedInstanceResponseBodyInstance extends $tea.Model {
|
|
|
68566
68617
|
* The internal IP address of the managed instance.
|
|
68567
68618
|
*
|
|
68568
68619
|
* @example
|
|
68569
|
-
* 10.0
|
|
68620
|
+
* ``10.0.**.**``
|
|
68570
68621
|
*/
|
|
68571
68622
|
intranetIp?: string;
|
|
68572
68623
|
/**
|
|
@@ -77625,6 +77676,50 @@ export class DescribeImageComponentsRequestTag extends $tea.Model {
|
|
|
77625
77676
|
}
|
|
77626
77677
|
}
|
|
77627
77678
|
|
|
77679
|
+
export class DescribeImageComponentsResponseBodyImageComponentImageComponentSetParametersParameter extends $tea.Model {
|
|
77680
|
+
defaultValue?: string;
|
|
77681
|
+
name?: string;
|
|
77682
|
+
type?: string;
|
|
77683
|
+
static names(): { [key: string]: string } {
|
|
77684
|
+
return {
|
|
77685
|
+
defaultValue: 'DefaultValue',
|
|
77686
|
+
name: 'Name',
|
|
77687
|
+
type: 'Type',
|
|
77688
|
+
};
|
|
77689
|
+
}
|
|
77690
|
+
|
|
77691
|
+
static types(): { [key: string]: any } {
|
|
77692
|
+
return {
|
|
77693
|
+
defaultValue: 'string',
|
|
77694
|
+
name: 'string',
|
|
77695
|
+
type: 'string',
|
|
77696
|
+
};
|
|
77697
|
+
}
|
|
77698
|
+
|
|
77699
|
+
constructor(map?: { [key: string]: any }) {
|
|
77700
|
+
super(map);
|
|
77701
|
+
}
|
|
77702
|
+
}
|
|
77703
|
+
|
|
77704
|
+
export class DescribeImageComponentsResponseBodyImageComponentImageComponentSetParameters extends $tea.Model {
|
|
77705
|
+
parameter?: DescribeImageComponentsResponseBodyImageComponentImageComponentSetParametersParameter[];
|
|
77706
|
+
static names(): { [key: string]: string } {
|
|
77707
|
+
return {
|
|
77708
|
+
parameter: 'Parameter',
|
|
77709
|
+
};
|
|
77710
|
+
}
|
|
77711
|
+
|
|
77712
|
+
static types(): { [key: string]: any } {
|
|
77713
|
+
return {
|
|
77714
|
+
parameter: { 'type': 'array', 'itemType': DescribeImageComponentsResponseBodyImageComponentImageComponentSetParametersParameter },
|
|
77715
|
+
};
|
|
77716
|
+
}
|
|
77717
|
+
|
|
77718
|
+
constructor(map?: { [key: string]: any }) {
|
|
77719
|
+
super(map);
|
|
77720
|
+
}
|
|
77721
|
+
}
|
|
77722
|
+
|
|
77628
77723
|
export class DescribeImageComponentsResponseBodyImageComponentImageComponentSetTagsTag extends $tea.Model {
|
|
77629
77724
|
/**
|
|
77630
77725
|
* @remarks
|
|
@@ -77689,6 +77784,7 @@ export class DescribeImageComponentsResponseBodyImageComponentImageComponentSet
|
|
|
77689
77784
|
* Build
|
|
77690
77785
|
*/
|
|
77691
77786
|
componentType?: string;
|
|
77787
|
+
componentVersion?: string;
|
|
77692
77788
|
/**
|
|
77693
77789
|
* @remarks
|
|
77694
77790
|
* The content of the image component.
|
|
@@ -77740,6 +77836,7 @@ export class DescribeImageComponentsResponseBodyImageComponentImageComponentSet
|
|
|
77740
77836
|
* SELF
|
|
77741
77837
|
*/
|
|
77742
77838
|
owner?: string;
|
|
77839
|
+
parameters?: DescribeImageComponentsResponseBodyImageComponentImageComponentSetParameters;
|
|
77743
77840
|
/**
|
|
77744
77841
|
* @remarks
|
|
77745
77842
|
* The ID of the resource group to which the image component belongs.
|
|
@@ -77764,12 +77861,14 @@ export class DescribeImageComponentsResponseBodyImageComponentImageComponentSet
|
|
|
77764
77861
|
static names(): { [key: string]: string } {
|
|
77765
77862
|
return {
|
|
77766
77863
|
componentType: 'ComponentType',
|
|
77864
|
+
componentVersion: 'ComponentVersion',
|
|
77767
77865
|
content: 'Content',
|
|
77768
77866
|
creationTime: 'CreationTime',
|
|
77769
77867
|
description: 'Description',
|
|
77770
77868
|
imageComponentId: 'ImageComponentId',
|
|
77771
77869
|
name: 'Name',
|
|
77772
77870
|
owner: 'Owner',
|
|
77871
|
+
parameters: 'Parameters',
|
|
77773
77872
|
resourceGroupId: 'ResourceGroupId',
|
|
77774
77873
|
systemType: 'SystemType',
|
|
77775
77874
|
tags: 'Tags',
|
|
@@ -77779,12 +77878,14 @@ export class DescribeImageComponentsResponseBodyImageComponentImageComponentSet
|
|
|
77779
77878
|
static types(): { [key: string]: any } {
|
|
77780
77879
|
return {
|
|
77781
77880
|
componentType: 'string',
|
|
77881
|
+
componentVersion: 'string',
|
|
77782
77882
|
content: 'string',
|
|
77783
77883
|
creationTime: 'string',
|
|
77784
77884
|
description: 'string',
|
|
77785
77885
|
imageComponentId: 'string',
|
|
77786
77886
|
name: 'string',
|
|
77787
77887
|
owner: 'string',
|
|
77888
|
+
parameters: DescribeImageComponentsResponseBodyImageComponentImageComponentSetParameters,
|
|
77788
77889
|
resourceGroupId: 'string',
|
|
77789
77890
|
systemType: 'string',
|
|
77790
77891
|
tags: DescribeImageComponentsResponseBodyImageComponentImageComponentSetTags,
|
|
@@ -78646,6 +78747,7 @@ export class DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSet ext
|
|
|
78646
78747
|
* This is description.
|
|
78647
78748
|
*/
|
|
78648
78749
|
description?: string;
|
|
78750
|
+
imageFamily?: string;
|
|
78649
78751
|
/**
|
|
78650
78752
|
* @remarks
|
|
78651
78753
|
* The name prefix of the image to be created based on the image template.
|
|
@@ -78686,6 +78788,7 @@ export class DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSet ext
|
|
|
78686
78788
|
* testImagePipeline
|
|
78687
78789
|
*/
|
|
78688
78790
|
name?: string;
|
|
78791
|
+
repairMode?: string;
|
|
78689
78792
|
/**
|
|
78690
78793
|
* @remarks
|
|
78691
78794
|
* The ID of the resource group.
|
|
@@ -78707,6 +78810,7 @@ export class DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSet ext
|
|
|
78707
78810
|
* The tags of the image template.
|
|
78708
78811
|
*/
|
|
78709
78812
|
tags?: DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetTags;
|
|
78813
|
+
testContent?: string;
|
|
78710
78814
|
/**
|
|
78711
78815
|
* @remarks
|
|
78712
78816
|
* The IDs of regions to which to distribute the image that will be created based on the image template.
|
|
@@ -78729,14 +78833,17 @@ export class DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSet ext
|
|
|
78729
78833
|
creationTime: 'CreationTime',
|
|
78730
78834
|
deleteInstanceOnFailure: 'DeleteInstanceOnFailure',
|
|
78731
78835
|
description: 'Description',
|
|
78836
|
+
imageFamily: 'ImageFamily',
|
|
78732
78837
|
imageName: 'ImageName',
|
|
78733
78838
|
imagePipelineId: 'ImagePipelineId',
|
|
78734
78839
|
instanceType: 'InstanceType',
|
|
78735
78840
|
internetMaxBandwidthOut: 'InternetMaxBandwidthOut',
|
|
78736
78841
|
name: 'Name',
|
|
78842
|
+
repairMode: 'RepairMode',
|
|
78737
78843
|
resourceGroupId: 'ResourceGroupId',
|
|
78738
78844
|
systemDiskSize: 'SystemDiskSize',
|
|
78739
78845
|
tags: 'Tags',
|
|
78846
|
+
testContent: 'TestContent',
|
|
78740
78847
|
toRegionIds: 'ToRegionIds',
|
|
78741
78848
|
vSwitchId: 'VSwitchId',
|
|
78742
78849
|
};
|
|
@@ -78751,14 +78858,17 @@ export class DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSet ext
|
|
|
78751
78858
|
creationTime: 'string',
|
|
78752
78859
|
deleteInstanceOnFailure: 'boolean',
|
|
78753
78860
|
description: 'string',
|
|
78861
|
+
imageFamily: 'string',
|
|
78754
78862
|
imageName: 'string',
|
|
78755
78863
|
imagePipelineId: 'string',
|
|
78756
78864
|
instanceType: 'string',
|
|
78757
78865
|
internetMaxBandwidthOut: 'number',
|
|
78758
78866
|
name: 'string',
|
|
78867
|
+
repairMode: 'string',
|
|
78759
78868
|
resourceGroupId: 'string',
|
|
78760
78869
|
systemDiskSize: 'number',
|
|
78761
78870
|
tags: DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetTags,
|
|
78871
|
+
testContent: 'string',
|
|
78762
78872
|
toRegionIds: DescribeImagePipelinesResponseBodyImagePipelineImagePipelineSetToRegionIds,
|
|
78763
78873
|
vSwitchId: 'string',
|
|
78764
78874
|
};
|
|
@@ -79918,7 +80028,7 @@ export class DescribeInstanceAttributeResponseBodyEipAddress extends $tea.Model
|
|
|
79918
80028
|
* The ID of the elastic IP address (EIP).
|
|
79919
80029
|
*
|
|
79920
80030
|
* @example
|
|
79921
|
-
* 30.21
|
|
80031
|
+
* ``30.21.**.**``
|
|
79922
80032
|
*/
|
|
79923
80033
|
ipAddress?: string;
|
|
79924
80034
|
static names(): { [key: string]: string } {
|
|
@@ -80077,7 +80187,7 @@ export class DescribeInstanceAttributeResponseBodyVpcAttributes extends $tea.Mod
|
|
|
80077
80187
|
* The NAT IP address of the instance. It is used by ECS instances in different VPCs for communication.
|
|
80078
80188
|
*
|
|
80079
80189
|
* @example
|
|
80080
|
-
* 172.17
|
|
80190
|
+
* ``172.17.**.**``
|
|
80081
80191
|
*/
|
|
80082
80192
|
natIpAddress?: string;
|
|
80083
80193
|
/**
|
|
@@ -82548,7 +82658,7 @@ export class DescribeInstancesResponseBodyInstancesInstanceEipAddress extends $t
|
|
|
82548
82658
|
* The EIP.
|
|
82549
82659
|
*
|
|
82550
82660
|
* @example
|
|
82551
|
-
* 42.112
|
|
82661
|
+
* ``42.112.**.**``
|
|
82552
82662
|
*/
|
|
82553
82663
|
ipAddress?: string;
|
|
82554
82664
|
/**
|
|
@@ -82867,7 +82977,7 @@ export class DescribeInstancesResponseBodyInstancesInstanceNetworkInterfacesNetw
|
|
|
82867
82977
|
* The private IP address of the ENI.
|
|
82868
82978
|
*
|
|
82869
82979
|
* @example
|
|
82870
|
-
* 172.17
|
|
82980
|
+
* ``172.17.**.**``
|
|
82871
82981
|
*/
|
|
82872
82982
|
privateIpAddress?: string;
|
|
82873
82983
|
static names(): { [key: string]: string } {
|
|
@@ -82947,7 +83057,7 @@ export class DescribeInstancesResponseBodyInstancesInstanceNetworkInterfacesNetw
|
|
|
82947
83057
|
* The primary private IP address of the ENI.
|
|
82948
83058
|
*
|
|
82949
83059
|
* @example
|
|
82950
|
-
* 172.17
|
|
83060
|
+
* ``172.17.**.**``*
|
|
82951
83061
|
*/
|
|
82952
83062
|
primaryIpAddress?: string;
|
|
82953
83063
|
/**
|
|
@@ -83280,7 +83390,7 @@ export class DescribeInstancesResponseBodyInstancesInstanceVpcAttributes extends
|
|
|
83280
83390
|
* The NAT IP address of the instance. The NAT IP address is used by ECS instances in different VPCs for communication.
|
|
83281
83391
|
*
|
|
83282
83392
|
* @example
|
|
83283
|
-
* 172.17
|
|
83393
|
+
* ``172.17.**.**``
|
|
83284
83394
|
*/
|
|
83285
83395
|
natIpAddress?: string;
|
|
83286
83396
|
/**
|
|
@@ -86423,6 +86533,9 @@ export class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVersionSets
|
|
|
86423
86533
|
* testHostName
|
|
86424
86534
|
*/
|
|
86425
86535
|
hostName?: string;
|
|
86536
|
+
httpEndpoint?: string;
|
|
86537
|
+
httpPutResponseHopLimit?: number;
|
|
86538
|
+
httpTokens?: string;
|
|
86426
86539
|
/**
|
|
86427
86540
|
* @remarks
|
|
86428
86541
|
* The ID of the image.
|
|
@@ -86566,7 +86679,7 @@ export class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVersionSets
|
|
|
86566
86679
|
* The private IP address to assign to the instance.
|
|
86567
86680
|
*
|
|
86568
86681
|
* @example
|
|
86569
|
-
* 10.1
|
|
86682
|
+
* ``10.1.**.**``
|
|
86570
86683
|
*/
|
|
86571
86684
|
privateIpAddress?: string;
|
|
86572
86685
|
/**
|
|
@@ -86695,6 +86808,9 @@ export class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVersionSets
|
|
|
86695
86808
|
description: 'Description',
|
|
86696
86809
|
enableVmOsConfig: 'EnableVmOsConfig',
|
|
86697
86810
|
hostName: 'HostName',
|
|
86811
|
+
httpEndpoint: 'HttpEndpoint',
|
|
86812
|
+
httpPutResponseHopLimit: 'HttpPutResponseHopLimit',
|
|
86813
|
+
httpTokens: 'HttpTokens',
|
|
86698
86814
|
imageId: 'ImageId',
|
|
86699
86815
|
imageOwnerAlias: 'ImageOwnerAlias',
|
|
86700
86816
|
instanceChargeType: 'InstanceChargeType',
|
|
@@ -86741,6 +86857,9 @@ export class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVersionSets
|
|
|
86741
86857
|
description: 'string',
|
|
86742
86858
|
enableVmOsConfig: 'boolean',
|
|
86743
86859
|
hostName: 'string',
|
|
86860
|
+
httpEndpoint: 'string',
|
|
86861
|
+
httpPutResponseHopLimit: 'number',
|
|
86862
|
+
httpTokens: 'string',
|
|
86744
86863
|
imageId: 'string',
|
|
86745
86864
|
imageOwnerAlias: 'string',
|
|
86746
86865
|
instanceChargeType: 'string',
|
|
@@ -87263,7 +87382,7 @@ export class DescribeManagedInstancesResponseBodyInstances extends $tea.Model {
|
|
|
87263
87382
|
* The public IP address of the managed instance.
|
|
87264
87383
|
*
|
|
87265
87384
|
* @example
|
|
87266
|
-
* 40.65
|
|
87385
|
+
* ``40.65.**.**``
|
|
87267
87386
|
*/
|
|
87268
87387
|
internetIp?: string;
|
|
87269
87388
|
/**
|
|
@@ -87271,7 +87390,7 @@ export class DescribeManagedInstancesResponseBodyInstances extends $tea.Model {
|
|
|
87271
87390
|
* The internal IP address of the managed instance.
|
|
87272
87391
|
*
|
|
87273
87392
|
* @example
|
|
87274
|
-
* 10.0
|
|
87393
|
+
* ``10.0.**.**``
|
|
87275
87394
|
*/
|
|
87276
87395
|
intranetIp?: string;
|
|
87277
87396
|
/**
|
|
@@ -87541,7 +87660,7 @@ export class DescribeNetworkInterfaceAttributeResponseBodyAssociatedPublicIp ext
|
|
|
87541
87660
|
* The EIP.
|
|
87542
87661
|
*
|
|
87543
87662
|
* @example
|
|
87544
|
-
* 116.62
|
|
87663
|
+
* ``116.62.**.**``
|
|
87545
87664
|
*/
|
|
87546
87665
|
publicIpAddress?: string;
|
|
87547
87666
|
static names(): { [key: string]: string } {
|
|
@@ -88010,7 +88129,7 @@ export class DescribeNetworkInterfaceAttributeResponseBodyPrivateIpSetsPrivateIp
|
|
|
88010
88129
|
* The EIP.
|
|
88011
88130
|
*
|
|
88012
88131
|
* @example
|
|
88013
|
-
* 116.62
|
|
88132
|
+
* ``116.62.**.**``
|
|
88014
88133
|
*/
|
|
88015
88134
|
publicIpAddress?: string;
|
|
88016
88135
|
static names(): { [key: string]: string } {
|
|
@@ -88054,7 +88173,7 @@ export class DescribeNetworkInterfaceAttributeResponseBodyPrivateIpSetsPrivateIp
|
|
|
88054
88173
|
* The private IP address of the ENI.
|
|
88055
88174
|
*
|
|
88056
88175
|
* @example
|
|
88057
|
-
* 172.17
|
|
88176
|
+
* ``172.17.**.**``
|
|
88058
88177
|
*/
|
|
88059
88178
|
privateIpAddress?: string;
|
|
88060
88179
|
static names(): { [key: string]: string } {
|
|
@@ -88369,7 +88488,7 @@ export class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNetworkInt
|
|
|
88369
88488
|
* The EIP.
|
|
88370
88489
|
*
|
|
88371
88490
|
* @example
|
|
88372
|
-
* 116.62
|
|
88491
|
+
* ``116.62.**.**``
|
|
88373
88492
|
*/
|
|
88374
88493
|
publicIpAddress?: string;
|
|
88375
88494
|
static names(): { [key: string]: string } {
|
|
@@ -88599,7 +88718,7 @@ export class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNetworkInt
|
|
|
88599
88718
|
* The EIP.
|
|
88600
88719
|
*
|
|
88601
88720
|
* @example
|
|
88602
|
-
* 116.62
|
|
88721
|
+
* ``116.62.**.**``
|
|
88603
88722
|
*/
|
|
88604
88723
|
publicIpAddress?: string;
|
|
88605
88724
|
static names(): { [key: string]: string } {
|
|
@@ -88651,7 +88770,7 @@ export class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNetworkInt
|
|
|
88651
88770
|
* The private IP address of the ENI.
|
|
88652
88771
|
*
|
|
88653
88772
|
* @example
|
|
88654
|
-
* 172.17
|
|
88773
|
+
* ``172.17.**.**``
|
|
88655
88774
|
*/
|
|
88656
88775
|
privateIpAddress?: string;
|
|
88657
88776
|
static names(): { [key: string]: string } {
|
|
@@ -88883,7 +89002,7 @@ export class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNetworkInt
|
|
|
88883
89002
|
* The primary private IP address of the ENI.
|
|
88884
89003
|
*
|
|
88885
89004
|
* @example
|
|
88886
|
-
* 172.17
|
|
89005
|
+
* ``172.17.**.**``
|
|
88887
89006
|
*/
|
|
88888
89007
|
privateIpAddress?: string;
|
|
88889
89008
|
/**
|
|
@@ -101272,7 +101391,7 @@ export class RunInstancesRequestNetworkInterface extends $tea.Model {
|
|
|
101272
101391
|
* * 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.
|
|
101273
101392
|
*
|
|
101274
101393
|
* @example
|
|
101275
|
-
* 172.16
|
|
101394
|
+
* ``172.16.**.**``
|
|
101276
101395
|
*/
|
|
101277
101396
|
primaryIpAddress?: string;
|
|
101278
101397
|
/**
|
|
@@ -106395,6 +106514,10 @@ export default class Client extends OpenApi {
|
|
|
106395
106514
|
query["ComponentType"] = request.componentType;
|
|
106396
106515
|
}
|
|
106397
106516
|
|
|
106517
|
+
if (!Util.isUnset(request.componentVersion)) {
|
|
106518
|
+
query["ComponentVersion"] = request.componentVersion;
|
|
106519
|
+
}
|
|
106520
|
+
|
|
106398
106521
|
if (!Util.isUnset(request.content)) {
|
|
106399
106522
|
query["Content"] = request.content;
|
|
106400
106523
|
}
|
|
@@ -106532,6 +106655,10 @@ export default class Client extends OpenApi {
|
|
|
106532
106655
|
query["Description"] = request.description;
|
|
106533
106656
|
}
|
|
106534
106657
|
|
|
106658
|
+
if (!Util.isUnset(request.imageFamily)) {
|
|
106659
|
+
query["ImageFamily"] = request.imageFamily;
|
|
106660
|
+
}
|
|
106661
|
+
|
|
106535
106662
|
if (!Util.isUnset(request.imageName)) {
|
|
106536
106663
|
query["ImageName"] = request.imageName;
|
|
106537
106664
|
}
|
|
@@ -106564,6 +106691,10 @@ export default class Client extends OpenApi {
|
|
|
106564
106691
|
query["RegionId"] = request.regionId;
|
|
106565
106692
|
}
|
|
106566
106693
|
|
|
106694
|
+
if (!Util.isUnset(request.repairMode)) {
|
|
106695
|
+
query["RepairMode"] = request.repairMode;
|
|
106696
|
+
}
|
|
106697
|
+
|
|
106567
106698
|
if (!Util.isUnset(request.resourceGroupId)) {
|
|
106568
106699
|
query["ResourceGroupId"] = request.resourceGroupId;
|
|
106569
106700
|
}
|
|
@@ -106588,6 +106719,10 @@ export default class Client extends OpenApi {
|
|
|
106588
106719
|
query["Tag"] = request.tag;
|
|
106589
106720
|
}
|
|
106590
106721
|
|
|
106722
|
+
if (!Util.isUnset(request.testContent)) {
|
|
106723
|
+
query["TestContent"] = request.testContent;
|
|
106724
|
+
}
|
|
106725
|
+
|
|
106591
106726
|
if (!Util.isUnset(request.toRegionId)) {
|
|
106592
106727
|
query["ToRegionId"] = request.toRegionId;
|
|
106593
106728
|
}
|
|
@@ -107129,6 +107264,18 @@ export default class Client extends OpenApi {
|
|
|
107129
107264
|
query["HostName"] = request.hostName;
|
|
107130
107265
|
}
|
|
107131
107266
|
|
|
107267
|
+
if (!Util.isUnset(request.httpEndpoint)) {
|
|
107268
|
+
query["HttpEndpoint"] = request.httpEndpoint;
|
|
107269
|
+
}
|
|
107270
|
+
|
|
107271
|
+
if (!Util.isUnset(request.httpPutResponseHopLimit)) {
|
|
107272
|
+
query["HttpPutResponseHopLimit"] = request.httpPutResponseHopLimit;
|
|
107273
|
+
}
|
|
107274
|
+
|
|
107275
|
+
if (!Util.isUnset(request.httpTokens)) {
|
|
107276
|
+
query["HttpTokens"] = request.httpTokens;
|
|
107277
|
+
}
|
|
107278
|
+
|
|
107132
107279
|
if (!Util.isUnset(request.imageId)) {
|
|
107133
107280
|
query["ImageId"] = request.imageId;
|
|
107134
107281
|
}
|
|
@@ -107383,6 +107530,18 @@ export default class Client extends OpenApi {
|
|
|
107383
107530
|
query["HostName"] = request.hostName;
|
|
107384
107531
|
}
|
|
107385
107532
|
|
|
107533
|
+
if (!Util.isUnset(request.httpEndpoint)) {
|
|
107534
|
+
query["HttpEndpoint"] = request.httpEndpoint;
|
|
107535
|
+
}
|
|
107536
|
+
|
|
107537
|
+
if (!Util.isUnset(request.httpPutResponseHopLimit)) {
|
|
107538
|
+
query["HttpPutResponseHopLimit"] = request.httpPutResponseHopLimit;
|
|
107539
|
+
}
|
|
107540
|
+
|
|
107541
|
+
if (!Util.isUnset(request.httpTokens)) {
|
|
107542
|
+
query["HttpTokens"] = request.httpTokens;
|
|
107543
|
+
}
|
|
107544
|
+
|
|
107386
107545
|
if (!Util.isUnset(request.imageId)) {
|
|
107387
107546
|
query["ImageId"] = request.imageId;
|
|
107388
107547
|
}
|
|
@@ -115456,6 +115615,14 @@ export default class Client extends OpenApi {
|
|
|
115456
115615
|
async describeImageComponentsWithOptions(request: DescribeImageComponentsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeImageComponentsResponse> {
|
|
115457
115616
|
Util.validateModel(request);
|
|
115458
115617
|
let query = { };
|
|
115618
|
+
if (!Util.isUnset(request.componentType)) {
|
|
115619
|
+
query["ComponentType"] = request.componentType;
|
|
115620
|
+
}
|
|
115621
|
+
|
|
115622
|
+
if (!Util.isUnset(request.componentVersion)) {
|
|
115623
|
+
query["ComponentVersion"] = request.componentVersion;
|
|
115624
|
+
}
|
|
115625
|
+
|
|
115459
115626
|
if (!Util.isUnset(request.imageComponentId)) {
|
|
115460
115627
|
query["ImageComponentId"] = request.imageComponentId;
|
|
115461
115628
|
}
|
|
@@ -115508,6 +115675,10 @@ export default class Client extends OpenApi {
|
|
|
115508
115675
|
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
115509
115676
|
}
|
|
115510
115677
|
|
|
115678
|
+
if (!Util.isUnset(request.systemType)) {
|
|
115679
|
+
query["SystemType"] = request.systemType;
|
|
115680
|
+
}
|
|
115681
|
+
|
|
115511
115682
|
if (!Util.isUnset(request.tag)) {
|
|
115512
115683
|
query["Tag"] = request.tag;
|
|
115513
115684
|
}
|
|
@@ -130891,6 +131062,14 @@ export default class Client extends OpenApi {
|
|
|
130891
131062
|
query["ClientToken"] = request.clientToken;
|
|
130892
131063
|
}
|
|
130893
131064
|
|
|
131065
|
+
if (!Util.isUnset(request.ownerAccount)) {
|
|
131066
|
+
query["OwnerAccount"] = request.ownerAccount;
|
|
131067
|
+
}
|
|
131068
|
+
|
|
131069
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
131070
|
+
query["OwnerId"] = request.ownerId;
|
|
131071
|
+
}
|
|
131072
|
+
|
|
130894
131073
|
if (!Util.isUnset(request.period)) {
|
|
130895
131074
|
query["Period"] = request.period;
|
|
130896
131075
|
}
|
|
@@ -130903,6 +131082,14 @@ export default class Client extends OpenApi {
|
|
|
130903
131082
|
query["RegionId"] = request.regionId;
|
|
130904
131083
|
}
|
|
130905
131084
|
|
|
131085
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
131086
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
131087
|
+
}
|
|
131088
|
+
|
|
131089
|
+
if (!Util.isUnset(request.resourceOwnerId)) {
|
|
131090
|
+
query["ResourceOwnerId"] = request.resourceOwnerId;
|
|
131091
|
+
}
|
|
131092
|
+
|
|
130906
131093
|
if (!Util.isUnset(request.startTime)) {
|
|
130907
131094
|
query["StartTime"] = request.startTime;
|
|
130908
131095
|
}
|