@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/ecs20140526",
3
- "version": "4.4.3",
3
+ "version": "4.4.4",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
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
  /**
@@ -8506,7 +8506,7 @@ export class CreateInstanceRequest extends $tea.Model {
8506
8506
  * The internal IP address to assign to the instance.
8507
8507
  *
8508
8508
  * @example
8509
- * 192.168.\*\*.**
8509
+ * ``192.168.**.**``
8510
8510
  */
8511
8511
  innerIpAddress?: string;
8512
8512
  /**
@@ -9327,6 +9327,9 @@ export class CreateLaunchTemplateRequest extends $tea.Model {
9327
9327
  * testHostName
9328
9328
  */
9329
9329
  hostName?: string;
9330
+ httpEndpoint?: string;
9331
+ httpPutResponseHopLimit?: number;
9332
+ httpTokens?: string;
9330
9333
  /**
9331
9334
  * @remarks
9332
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.
@@ -9502,7 +9505,7 @@ export class CreateLaunchTemplateRequest extends $tea.Model {
9502
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.
9503
9506
  *
9504
9507
  * @example
9505
- * 10.1.\*\*.**
9508
+ * ``10.1.**.**``
9506
9509
  */
9507
9510
  privateIpAddress?: string;
9508
9511
  /**
@@ -9676,6 +9679,9 @@ export class CreateLaunchTemplateRequest extends $tea.Model {
9676
9679
  description: 'Description',
9677
9680
  enableVmOsConfig: 'EnableVmOsConfig',
9678
9681
  hostName: 'HostName',
9682
+ httpEndpoint: 'HttpEndpoint',
9683
+ httpPutResponseHopLimit: 'HttpPutResponseHopLimit',
9684
+ httpTokens: 'HttpTokens',
9679
9685
  imageId: 'ImageId',
9680
9686
  imageOwnerAlias: 'ImageOwnerAlias',
9681
9687
  instanceChargeType: 'InstanceChargeType',
@@ -9731,6 +9737,9 @@ export class CreateLaunchTemplateRequest extends $tea.Model {
9731
9737
  description: 'string',
9732
9738
  enableVmOsConfig: 'boolean',
9733
9739
  hostName: 'string',
9740
+ httpEndpoint: 'string',
9741
+ httpPutResponseHopLimit: 'number',
9742
+ httpTokens: 'string',
9734
9743
  imageId: 'string',
9735
9744
  imageOwnerAlias: 'string',
9736
9745
  instanceChargeType: 'string',
@@ -9955,6 +9964,9 @@ export class CreateLaunchTemplateVersionRequest extends $tea.Model {
9955
9964
  * testHostName
9956
9965
  */
9957
9966
  hostName?: string;
9967
+ httpEndpoint?: string;
9968
+ httpPutResponseHopLimit?: number;
9969
+ httpTokens?: string;
9958
9970
  /**
9959
9971
  * @remarks
9960
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.
@@ -10138,7 +10150,7 @@ export class CreateLaunchTemplateVersionRequest extends $tea.Model {
10138
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.
10139
10151
  *
10140
10152
  * @example
10141
- * 10.1.\*\*.**
10153
+ * ``10.1.**.**``
10142
10154
  */
10143
10155
  privateIpAddress?: string;
10144
10156
  /**
@@ -10293,6 +10305,9 @@ export class CreateLaunchTemplateVersionRequest extends $tea.Model {
10293
10305
  description: 'Description',
10294
10306
  enableVmOsConfig: 'EnableVmOsConfig',
10295
10307
  hostName: 'HostName',
10308
+ httpEndpoint: 'HttpEndpoint',
10309
+ httpPutResponseHopLimit: 'HttpPutResponseHopLimit',
10310
+ httpTokens: 'HttpTokens',
10296
10311
  imageId: 'ImageId',
10297
10312
  imageOwnerAlias: 'ImageOwnerAlias',
10298
10313
  instanceChargeType: 'InstanceChargeType',
@@ -10347,6 +10362,9 @@ export class CreateLaunchTemplateVersionRequest extends $tea.Model {
10347
10362
  description: 'string',
10348
10363
  enableVmOsConfig: 'boolean',
10349
10364
  hostName: 'string',
10365
+ httpEndpoint: 'string',
10366
+ httpPutResponseHopLimit: 'number',
10367
+ httpTokens: 'string',
10350
10368
  imageId: 'string',
10351
10369
  imageOwnerAlias: 'string',
10352
10370
  instanceChargeType: 'string',
@@ -10733,7 +10751,7 @@ export class CreateNetworkInterfaceRequest extends $tea.Model {
10733
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.
10734
10752
  *
10735
10753
  * @example
10736
- * 172.17.\*\*.**
10754
+ * ``172.17.**.**``
10737
10755
  */
10738
10756
  primaryIpAddress?: string;
10739
10757
  /**
@@ -10743,7 +10761,7 @@ export class CreateNetworkInterfaceRequest extends $tea.Model {
10743
10761
  * > To assign secondary private IP addresses to the ENI, you can specify the `PrivateIpAddress.N` or `SecondaryPrivateIpAddressCount` parameter, but not both.
10744
10762
  *
10745
10763
  * @example
10746
- * 172.17.\*\*.**
10764
+ * ``172.17.**.**``
10747
10765
  */
10748
10766
  privateIpAddress?: string[];
10749
10767
  /**
@@ -11007,7 +11025,7 @@ export class CreateNetworkInterfaceResponseBody extends $tea.Model {
11007
11025
  * The private IP address of the ENI.
11008
11026
  *
11009
11027
  * @example
11010
- * 172.17.\*\*.**
11028
+ * ``172.17.**.**``
11011
11029
  */
11012
11030
  privateIpAddress?: string;
11013
11031
  /**
@@ -31208,7 +31226,7 @@ export class DescribeManagedInstancesRequest extends $tea.Model {
31208
31226
  * The internal or public IP address of the managed instance.
31209
31227
  *
31210
31228
  * @example
31211
- * 192.168.\*\*.**
31229
+ * ``192.168.**.**``
31212
31230
  */
31213
31231
  instanceIp?: string;
31214
31232
  /**
@@ -31758,7 +31776,7 @@ export class DescribeNetworkInterfaceAttributeResponseBody extends $tea.Model {
31758
31776
  * The private IP address of the ENI.
31759
31777
  *
31760
31778
  * @example
31761
- * 10.1.\*\*.**
31779
+ * ``10.1.**.**``
31762
31780
  */
31763
31781
  privateIpAddress?: string;
31764
31782
  /**
@@ -32288,7 +32306,7 @@ export class DescribeNetworkInterfacesRequest extends $tea.Model {
32288
32306
  * The primary private IPv4 address of the ENI.
32289
32307
  *
32290
32308
  * @example
32291
- * 192.168.\*\*.**
32309
+ * ``192.168.**.**``
32292
32310
  */
32293
32311
  primaryIpAddress?: string;
32294
32312
  /**
@@ -32296,7 +32314,7 @@ export class DescribeNetworkInterfacesRequest extends $tea.Model {
32296
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.
32297
32315
  *
32298
32316
  * @example
32299
- * 192.168.\*\*.**
32317
+ * ``192.168.**.**``
32300
32318
  */
32301
32319
  privateIpAddress?: string[];
32302
32320
  /**
@@ -50451,7 +50469,7 @@ export class ModifyInstanceVpcAttributeRequest extends $tea.Model {
50451
50469
  * By default, if this parameter is not specified, a private IP address is randomly assigned from the CIDR block of the specified vSwitch.
50452
50470
  *
50453
50471
  * @example
50454
- * 172.17.\*\*.**
50472
+ * ``172.17.**.**``
50455
50473
  */
50456
50474
  privateIpAddress?: string;
50457
50475
  resourceOwnerAccount?: string;
@@ -54530,6 +54548,8 @@ export class PurchaseElasticityAssuranceRequest extends $tea.Model {
54530
54548
  * 123e4567-e89b-12d3-a456-426655440000
54531
54549
  */
54532
54550
  clientToken?: string;
54551
+ ownerAccount?: string;
54552
+ ownerId?: number;
54533
54553
  /**
54534
54554
  * @example
54535
54555
  * 1
@@ -54548,6 +54568,8 @@ export class PurchaseElasticityAssuranceRequest extends $tea.Model {
54548
54568
  * cn-hangzhou
54549
54569
  */
54550
54570
  regionId?: string;
54571
+ resourceOwnerAccount?: string;
54572
+ resourceOwnerId?: number;
54551
54573
  /**
54552
54574
  * @example
54553
54575
  * 2024-06-18T00:00Z
@@ -54557,9 +54579,13 @@ export class PurchaseElasticityAssuranceRequest extends $tea.Model {
54557
54579
  return {
54558
54580
  privatePoolOptions: 'PrivatePoolOptions',
54559
54581
  clientToken: 'ClientToken',
54582
+ ownerAccount: 'OwnerAccount',
54583
+ ownerId: 'OwnerId',
54560
54584
  period: 'Period',
54561
54585
  periodUnit: 'PeriodUnit',
54562
54586
  regionId: 'RegionId',
54587
+ resourceOwnerAccount: 'ResourceOwnerAccount',
54588
+ resourceOwnerId: 'ResourceOwnerId',
54563
54589
  startTime: 'StartTime',
54564
54590
  };
54565
54591
  }
@@ -54568,9 +54594,13 @@ export class PurchaseElasticityAssuranceRequest extends $tea.Model {
54568
54594
  return {
54569
54595
  privatePoolOptions: PurchaseElasticityAssuranceRequestPrivatePoolOptions,
54570
54596
  clientToken: 'string',
54597
+ ownerAccount: 'string',
54598
+ ownerId: 'number',
54571
54599
  period: 'number',
54572
54600
  periodUnit: 'string',
54573
54601
  regionId: 'string',
54602
+ resourceOwnerAccount: 'string',
54603
+ resourceOwnerId: 'number',
54574
54604
  startTime: 'string',
54575
54605
  };
54576
54606
  }
@@ -56290,7 +56320,7 @@ export class ReleasePublicIpAddressRequest extends $tea.Model {
56290
56320
  * This parameter is required.
56291
56321
  *
56292
56322
  * @example
56293
- * 121.40.\*\*.**
56323
+ * ``121.40.**.**``
56294
56324
  */
56295
56325
  publicIpAddress?: string;
56296
56326
  /**
@@ -60312,7 +60342,7 @@ export class RunInstancesRequest extends $tea.Model {
60312
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.
60313
60343
  *
60314
60344
  * @example
60315
- * 10.1.\*\*.**
60345
+ * ``10.1.**.**``
60316
60346
  */
60317
60347
  privateIpAddress?: string;
60318
60348
  /**
@@ -62509,7 +62539,7 @@ export class UnassignPrivateIpAddressesRequest extends $tea.Model {
62509
62539
  * The secondary private IP addresses to unassign.
62510
62540
  *
62511
62541
  * @example
62512
- * 192.168.\*\*.**
62542
+ * ``192.168.**.**``
62513
62543
  */
62514
62544
  privateIpAddress?: string[];
62515
62545
  /**
@@ -66768,7 +66798,7 @@ export class CreateLaunchTemplateRequestNetworkInterface extends $tea.Model {
66768
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.
66769
66799
  *
66770
66800
  * @example
66771
- * 192.168.\*\*.**
66801
+ * ``192.168.**.**``
66772
66802
  */
66773
66803
  primaryIpAddress?: string;
66774
66804
  /**
@@ -67322,7 +67352,7 @@ export class CreateLaunchTemplateVersionRequestNetworkInterface extends $tea.Mod
67322
67352
  * The primary private IP address of the secondary ENI. The value of N in `NetworkInterface.N` cannot be greater than 1.
67323
67353
  *
67324
67354
  * @example
67325
- * 192.168.\*\*.**
67355
+ * ``192.168.**.**``
67326
67356
  */
67327
67357
  primaryIpAddress?: string;
67328
67358
  /**
@@ -67806,7 +67836,7 @@ export class CreateNetworkInterfaceResponseBodyPrivateIpSetsPrivateIpSet extends
67806
67836
  * The private IP address of the instance.
67807
67837
  *
67808
67838
  * @example
67809
- * 172.17.\*\*.**
67839
+ * ``172.17.**.**``
67810
67840
  */
67811
67841
  privateIpAddress?: string;
67812
67842
  static names(): { [key: string]: string } {
@@ -68579,7 +68609,7 @@ export class DeregisterManagedInstanceResponseBodyInstance extends $tea.Model {
68579
68609
  * The public IP address of the managed instance.
68580
68610
  *
68581
68611
  * @example
68582
- * 47.8.\*\*.**
68612
+ * ``47.8.**.**``
68583
68613
  */
68584
68614
  internetIp?: string;
68585
68615
  /**
@@ -68587,7 +68617,7 @@ export class DeregisterManagedInstanceResponseBodyInstance extends $tea.Model {
68587
68617
  * The internal IP address of the managed instance.
68588
68618
  *
68589
68619
  * @example
68590
- * 10.0.\*\*.**
68620
+ * ``10.0.**.**``
68591
68621
  */
68592
68622
  intranetIp?: string;
68593
68623
  /**
@@ -79998,7 +80028,7 @@ export class DescribeInstanceAttributeResponseBodyEipAddress extends $tea.Model
79998
80028
  * The ID of the elastic IP address (EIP).
79999
80029
  *
80000
80030
  * @example
80001
- * 30.21.\*\*.**
80031
+ * ``30.21.**.**``
80002
80032
  */
80003
80033
  ipAddress?: string;
80004
80034
  static names(): { [key: string]: string } {
@@ -80157,7 +80187,7 @@ export class DescribeInstanceAttributeResponseBodyVpcAttributes extends $tea.Mod
80157
80187
  * The NAT IP address of the instance. It is used by ECS instances in different VPCs for communication.
80158
80188
  *
80159
80189
  * @example
80160
- * 172.17.\*\*.**
80190
+ * ``172.17.**.**``
80161
80191
  */
80162
80192
  natIpAddress?: string;
80163
80193
  /**
@@ -82628,7 +82658,7 @@ export class DescribeInstancesResponseBodyInstancesInstanceEipAddress extends $t
82628
82658
  * The EIP.
82629
82659
  *
82630
82660
  * @example
82631
- * 42.112.\*\*.**
82661
+ * ``42.112.**.**``
82632
82662
  */
82633
82663
  ipAddress?: string;
82634
82664
  /**
@@ -82947,7 +82977,7 @@ export class DescribeInstancesResponseBodyInstancesInstanceNetworkInterfacesNetw
82947
82977
  * The private IP address of the ENI.
82948
82978
  *
82949
82979
  * @example
82950
- * 172.17.\*\*.**
82980
+ * ``172.17.**.**``
82951
82981
  */
82952
82982
  privateIpAddress?: string;
82953
82983
  static names(): { [key: string]: string } {
@@ -83027,7 +83057,7 @@ export class DescribeInstancesResponseBodyInstancesInstanceNetworkInterfacesNetw
83027
83057
  * The primary private IP address of the ENI.
83028
83058
  *
83029
83059
  * @example
83030
- * 172.17.\*\*.***
83060
+ * ``172.17.**.**``*
83031
83061
  */
83032
83062
  primaryIpAddress?: string;
83033
83063
  /**
@@ -83360,7 +83390,7 @@ export class DescribeInstancesResponseBodyInstancesInstanceVpcAttributes extends
83360
83390
  * The NAT IP address of the instance. The NAT IP address is used by ECS instances in different VPCs for communication.
83361
83391
  *
83362
83392
  * @example
83363
- * 172.17.\*\*.**
83393
+ * ``172.17.**.**``
83364
83394
  */
83365
83395
  natIpAddress?: string;
83366
83396
  /**
@@ -86503,6 +86533,9 @@ export class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVersionSets
86503
86533
  * testHostName
86504
86534
  */
86505
86535
  hostName?: string;
86536
+ httpEndpoint?: string;
86537
+ httpPutResponseHopLimit?: number;
86538
+ httpTokens?: string;
86506
86539
  /**
86507
86540
  * @remarks
86508
86541
  * The ID of the image.
@@ -86646,7 +86679,7 @@ export class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVersionSets
86646
86679
  * The private IP address to assign to the instance.
86647
86680
  *
86648
86681
  * @example
86649
- * 10.1.\*\*.**
86682
+ * ``10.1.**.**``
86650
86683
  */
86651
86684
  privateIpAddress?: string;
86652
86685
  /**
@@ -86775,6 +86808,9 @@ export class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVersionSets
86775
86808
  description: 'Description',
86776
86809
  enableVmOsConfig: 'EnableVmOsConfig',
86777
86810
  hostName: 'HostName',
86811
+ httpEndpoint: 'HttpEndpoint',
86812
+ httpPutResponseHopLimit: 'HttpPutResponseHopLimit',
86813
+ httpTokens: 'HttpTokens',
86778
86814
  imageId: 'ImageId',
86779
86815
  imageOwnerAlias: 'ImageOwnerAlias',
86780
86816
  instanceChargeType: 'InstanceChargeType',
@@ -86821,6 +86857,9 @@ export class DescribeLaunchTemplateVersionsResponseBodyLaunchTemplateVersionSets
86821
86857
  description: 'string',
86822
86858
  enableVmOsConfig: 'boolean',
86823
86859
  hostName: 'string',
86860
+ httpEndpoint: 'string',
86861
+ httpPutResponseHopLimit: 'number',
86862
+ httpTokens: 'string',
86824
86863
  imageId: 'string',
86825
86864
  imageOwnerAlias: 'string',
86826
86865
  instanceChargeType: 'string',
@@ -87343,7 +87382,7 @@ export class DescribeManagedInstancesResponseBodyInstances extends $tea.Model {
87343
87382
  * The public IP address of the managed instance.
87344
87383
  *
87345
87384
  * @example
87346
- * 40.65.\*\*.**
87385
+ * ``40.65.**.**``
87347
87386
  */
87348
87387
  internetIp?: string;
87349
87388
  /**
@@ -87351,7 +87390,7 @@ export class DescribeManagedInstancesResponseBodyInstances extends $tea.Model {
87351
87390
  * The internal IP address of the managed instance.
87352
87391
  *
87353
87392
  * @example
87354
- * 10.0.\*\*.**
87393
+ * ``10.0.**.**``
87355
87394
  */
87356
87395
  intranetIp?: string;
87357
87396
  /**
@@ -87621,7 +87660,7 @@ export class DescribeNetworkInterfaceAttributeResponseBodyAssociatedPublicIp ext
87621
87660
  * The EIP.
87622
87661
  *
87623
87662
  * @example
87624
- * 116.62.\*\*.**
87663
+ * ``116.62.**.**``
87625
87664
  */
87626
87665
  publicIpAddress?: string;
87627
87666
  static names(): { [key: string]: string } {
@@ -88090,7 +88129,7 @@ export class DescribeNetworkInterfaceAttributeResponseBodyPrivateIpSetsPrivateIp
88090
88129
  * The EIP.
88091
88130
  *
88092
88131
  * @example
88093
- * 116.62.\*\*.**
88132
+ * ``116.62.**.**``
88094
88133
  */
88095
88134
  publicIpAddress?: string;
88096
88135
  static names(): { [key: string]: string } {
@@ -88134,7 +88173,7 @@ export class DescribeNetworkInterfaceAttributeResponseBodyPrivateIpSetsPrivateIp
88134
88173
  * The private IP address of the ENI.
88135
88174
  *
88136
88175
  * @example
88137
- * 172.17.\*\*.**
88176
+ * ``172.17.**.**``
88138
88177
  */
88139
88178
  privateIpAddress?: string;
88140
88179
  static names(): { [key: string]: string } {
@@ -88449,7 +88488,7 @@ export class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNetworkInt
88449
88488
  * The EIP.
88450
88489
  *
88451
88490
  * @example
88452
- * 116.62.\*\*.**
88491
+ * ``116.62.**.**``
88453
88492
  */
88454
88493
  publicIpAddress?: string;
88455
88494
  static names(): { [key: string]: string } {
@@ -88679,7 +88718,7 @@ export class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNetworkInt
88679
88718
  * The EIP.
88680
88719
  *
88681
88720
  * @example
88682
- * 116.62.\*\*.**
88721
+ * ``116.62.**.**``
88683
88722
  */
88684
88723
  publicIpAddress?: string;
88685
88724
  static names(): { [key: string]: string } {
@@ -88731,7 +88770,7 @@ export class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNetworkInt
88731
88770
  * The private IP address of the ENI.
88732
88771
  *
88733
88772
  * @example
88734
- * 172.17.\*\*.**
88773
+ * ``172.17.**.**``
88735
88774
  */
88736
88775
  privateIpAddress?: string;
88737
88776
  static names(): { [key: string]: string } {
@@ -88963,7 +89002,7 @@ export class DescribeNetworkInterfacesResponseBodyNetworkInterfaceSetsNetworkInt
88963
89002
  * The primary private IP address of the ENI.
88964
89003
  *
88965
89004
  * @example
88966
- * 172.17.\*\*.**
89005
+ * ``172.17.**.**``
88967
89006
  */
88968
89007
  privateIpAddress?: string;
88969
89008
  /**
@@ -101352,7 +101391,7 @@ export class RunInstancesRequestNetworkInterface extends $tea.Model {
101352
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.
101353
101392
  *
101354
101393
  * @example
101355
- * 172.16.\*\*.**
101394
+ * ``172.16.**.**``
101356
101395
  */
101357
101396
  primaryIpAddress?: string;
101358
101397
  /**
@@ -107225,6 +107264,18 @@ export default class Client extends OpenApi {
107225
107264
  query["HostName"] = request.hostName;
107226
107265
  }
107227
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
+
107228
107279
  if (!Util.isUnset(request.imageId)) {
107229
107280
  query["ImageId"] = request.imageId;
107230
107281
  }
@@ -107479,6 +107530,18 @@ export default class Client extends OpenApi {
107479
107530
  query["HostName"] = request.hostName;
107480
107531
  }
107481
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
+
107482
107545
  if (!Util.isUnset(request.imageId)) {
107483
107546
  query["ImageId"] = request.imageId;
107484
107547
  }
@@ -130999,6 +131062,14 @@ export default class Client extends OpenApi {
130999
131062
  query["ClientToken"] = request.clientToken;
131000
131063
  }
131001
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
+
131002
131073
  if (!Util.isUnset(request.period)) {
131003
131074
  query["Period"] = request.period;
131004
131075
  }
@@ -131011,6 +131082,14 @@ export default class Client extends OpenApi {
131011
131082
  query["RegionId"] = request.regionId;
131012
131083
  }
131013
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
+
131014
131093
  if (!Util.isUnset(request.startTime)) {
131015
131094
  query["StartTime"] = request.startTime;
131016
131095
  }