@alicloud/ecs20140526 4.1.2 → 4.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/ecs20140526",
3
- "version": "4.1.2",
3
+ "version": "4.1.3",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -5435,6 +5435,7 @@ export class CreateNatGatewayResponse extends $tea.Model {
5435
5435
  export class CreateNetworkInterfaceRequest extends $tea.Model {
5436
5436
  businessType?: string;
5437
5437
  clientToken?: string;
5438
+ connectionTrackingConfiguration?: CreateNetworkInterfaceRequestConnectionTrackingConfiguration;
5438
5439
  deleteOnRelease?: boolean;
5439
5440
  description?: string;
5440
5441
  instanceType?: string;
@@ -5468,6 +5469,7 @@ export class CreateNetworkInterfaceRequest extends $tea.Model {
5468
5469
  return {
5469
5470
  businessType: 'BusinessType',
5470
5471
  clientToken: 'ClientToken',
5472
+ connectionTrackingConfiguration: 'ConnectionTrackingConfiguration',
5471
5473
  deleteOnRelease: 'DeleteOnRelease',
5472
5474
  description: 'Description',
5473
5475
  instanceType: 'InstanceType',
@@ -5504,6 +5506,7 @@ export class CreateNetworkInterfaceRequest extends $tea.Model {
5504
5506
  return {
5505
5507
  businessType: 'string',
5506
5508
  clientToken: 'string',
5509
+ connectionTrackingConfiguration: CreateNetworkInterfaceRequestConnectionTrackingConfiguration,
5507
5510
  deleteOnRelease: 'boolean',
5508
5511
  description: 'string',
5509
5512
  instanceType: 'string',
@@ -17512,6 +17515,7 @@ export class DescribeNetworkInterfaceAttributeResponseBody extends $tea.Model {
17512
17515
  associatedPublicIp?: DescribeNetworkInterfaceAttributeResponseBodyAssociatedPublicIp;
17513
17516
  attachment?: DescribeNetworkInterfaceAttributeResponseBodyAttachment;
17514
17517
  bondInterfaceSpecification?: DescribeNetworkInterfaceAttributeResponseBodyBondInterfaceSpecification;
17518
+ connectionTrackingConfiguration?: DescribeNetworkInterfaceAttributeResponseBodyConnectionTrackingConfiguration;
17515
17519
  creationTime?: string;
17516
17520
  deleteOnRelease?: boolean;
17517
17521
  description?: string;
@@ -17546,6 +17550,7 @@ export class DescribeNetworkInterfaceAttributeResponseBody extends $tea.Model {
17546
17550
  associatedPublicIp: 'AssociatedPublicIp',
17547
17551
  attachment: 'Attachment',
17548
17552
  bondInterfaceSpecification: 'BondInterfaceSpecification',
17553
+ connectionTrackingConfiguration: 'ConnectionTrackingConfiguration',
17549
17554
  creationTime: 'CreationTime',
17550
17555
  deleteOnRelease: 'DeleteOnRelease',
17551
17556
  description: 'Description',
@@ -17583,6 +17588,7 @@ export class DescribeNetworkInterfaceAttributeResponseBody extends $tea.Model {
17583
17588
  associatedPublicIp: DescribeNetworkInterfaceAttributeResponseBodyAssociatedPublicIp,
17584
17589
  attachment: DescribeNetworkInterfaceAttributeResponseBodyAttachment,
17585
17590
  bondInterfaceSpecification: DescribeNetworkInterfaceAttributeResponseBodyBondInterfaceSpecification,
17591
+ connectionTrackingConfiguration: DescribeNetworkInterfaceAttributeResponseBodyConnectionTrackingConfiguration,
17586
17592
  creationTime: 'string',
17587
17593
  deleteOnRelease: 'boolean',
17588
17594
  description: 'string',
@@ -28536,6 +28542,7 @@ export class ModifyManagedInstanceResponse extends $tea.Model {
28536
28542
  }
28537
28543
 
28538
28544
  export class ModifyNetworkInterfaceAttributeRequest extends $tea.Model {
28545
+ connectionTrackingConfiguration?: ModifyNetworkInterfaceAttributeRequestConnectionTrackingConfiguration;
28539
28546
  deleteOnRelease?: boolean;
28540
28547
  description?: string;
28541
28548
  networkInterfaceId?: string;
@@ -28551,6 +28558,7 @@ export class ModifyNetworkInterfaceAttributeRequest extends $tea.Model {
28551
28558
  txQueueSize?: number;
28552
28559
  static names(): { [key: string]: string } {
28553
28560
  return {
28561
+ connectionTrackingConfiguration: 'ConnectionTrackingConfiguration',
28554
28562
  deleteOnRelease: 'DeleteOnRelease',
28555
28563
  description: 'Description',
28556
28564
  networkInterfaceId: 'NetworkInterfaceId',
@@ -28569,6 +28577,7 @@ export class ModifyNetworkInterfaceAttributeRequest extends $tea.Model {
28569
28577
 
28570
28578
  static types(): { [key: string]: any } {
28571
28579
  return {
28580
+ connectionTrackingConfiguration: ModifyNetworkInterfaceAttributeRequestConnectionTrackingConfiguration,
28572
28581
  deleteOnRelease: 'boolean',
28573
28582
  description: 'string',
28574
28583
  networkInterfaceId: 'string',
@@ -35485,26 +35494,32 @@ export class CreateAutoProvisioningGroupRequestLaunchConfigurationArn extends $t
35485
35494
  }
35486
35495
 
35487
35496
  export class CreateAutoProvisioningGroupRequestLaunchConfigurationDataDisk extends $tea.Model {
35497
+ burstingEnabled?: boolean;
35488
35498
  category?: string;
35489
35499
  deleteWithInstance?: boolean;
35490
35500
  description?: string;
35491
35501
  device?: string;
35492
35502
  diskName?: string;
35503
+ encryptAlgorithm?: string;
35493
35504
  encrypted?: boolean;
35494
35505
  kmsKeyId?: string;
35495
35506
  performanceLevel?: string;
35507
+ provisionedIops?: number;
35496
35508
  size?: number;
35497
35509
  snapshotId?: string;
35498
35510
  static names(): { [key: string]: string } {
35499
35511
  return {
35512
+ burstingEnabled: 'BurstingEnabled',
35500
35513
  category: 'Category',
35501
35514
  deleteWithInstance: 'DeleteWithInstance',
35502
35515
  description: 'Description',
35503
35516
  device: 'Device',
35504
35517
  diskName: 'DiskName',
35518
+ encryptAlgorithm: 'EncryptAlgorithm',
35505
35519
  encrypted: 'Encrypted',
35506
35520
  kmsKeyId: 'KmsKeyId',
35507
35521
  performanceLevel: 'PerformanceLevel',
35522
+ provisionedIops: 'ProvisionedIops',
35508
35523
  size: 'Size',
35509
35524
  snapshotId: 'SnapshotId',
35510
35525
  };
@@ -35512,14 +35527,17 @@ export class CreateAutoProvisioningGroupRequestLaunchConfigurationDataDisk exten
35512
35527
 
35513
35528
  static types(): { [key: string]: any } {
35514
35529
  return {
35530
+ burstingEnabled: 'boolean',
35515
35531
  category: 'string',
35516
35532
  deleteWithInstance: 'boolean',
35517
35533
  description: 'string',
35518
35534
  device: 'string',
35519
35535
  diskName: 'string',
35536
+ encryptAlgorithm: 'string',
35520
35537
  encrypted: 'boolean',
35521
35538
  kmsKeyId: 'string',
35522
35539
  performanceLevel: 'string',
35540
+ provisionedIops: 'number',
35523
35541
  size: 'number',
35524
35542
  snapshotId: 'string',
35525
35543
  };
@@ -35531,22 +35549,28 @@ export class CreateAutoProvisioningGroupRequestLaunchConfigurationDataDisk exten
35531
35549
  }
35532
35550
 
35533
35551
  export class CreateAutoProvisioningGroupRequestLaunchConfigurationSystemDisk extends $tea.Model {
35552
+ burstingEnabled?: boolean;
35534
35553
  encryptAlgorithm?: string;
35535
35554
  encrypted?: string;
35536
35555
  KMSKeyId?: string;
35556
+ provisionedIops?: number;
35537
35557
  static names(): { [key: string]: string } {
35538
35558
  return {
35559
+ burstingEnabled: 'BurstingEnabled',
35539
35560
  encryptAlgorithm: 'EncryptAlgorithm',
35540
35561
  encrypted: 'Encrypted',
35541
35562
  KMSKeyId: 'KMSKeyId',
35563
+ provisionedIops: 'ProvisionedIops',
35542
35564
  };
35543
35565
  }
35544
35566
 
35545
35567
  static types(): { [key: string]: any } {
35546
35568
  return {
35569
+ burstingEnabled: 'boolean',
35547
35570
  encryptAlgorithm: 'string',
35548
35571
  encrypted: 'string',
35549
35572
  KMSKeyId: 'string',
35573
+ provisionedIops: 'number',
35550
35574
  };
35551
35575
  }
35552
35576
 
@@ -36825,6 +36849,31 @@ export class CreateNatGatewayResponseBodyForwardTableIds extends $tea.Model {
36825
36849
  }
36826
36850
  }
36827
36851
 
36852
+ export class CreateNetworkInterfaceRequestConnectionTrackingConfiguration extends $tea.Model {
36853
+ tcpClosedAndTimeWaitTimeout?: number;
36854
+ tcpEstablishedTimeout?: number;
36855
+ udpTimeout?: number;
36856
+ static names(): { [key: string]: string } {
36857
+ return {
36858
+ tcpClosedAndTimeWaitTimeout: 'TcpClosedAndTimeWaitTimeout',
36859
+ tcpEstablishedTimeout: 'TcpEstablishedTimeout',
36860
+ udpTimeout: 'UdpTimeout',
36861
+ };
36862
+ }
36863
+
36864
+ static types(): { [key: string]: any } {
36865
+ return {
36866
+ tcpClosedAndTimeWaitTimeout: 'number',
36867
+ tcpEstablishedTimeout: 'number',
36868
+ udpTimeout: 'number',
36869
+ };
36870
+ }
36871
+
36872
+ constructor(map?: { [key: string]: any }) {
36873
+ super(map);
36874
+ }
36875
+ }
36876
+
36828
36877
  export class CreateNetworkInterfaceRequestTag extends $tea.Model {
36829
36878
  key?: string;
36830
36879
  value?: string;
@@ -47614,6 +47663,31 @@ export class DescribeNetworkInterfaceAttributeResponseBodyBondInterfaceSpecifica
47614
47663
  }
47615
47664
  }
47616
47665
 
47666
+ export class DescribeNetworkInterfaceAttributeResponseBodyConnectionTrackingConfiguration extends $tea.Model {
47667
+ tcpClosedAndTimeWaitTimeout?: number;
47668
+ tcpEstablishedTimeout?: number;
47669
+ udpTimeout?: number;
47670
+ static names(): { [key: string]: string } {
47671
+ return {
47672
+ tcpClosedAndTimeWaitTimeout: 'TcpClosedAndTimeWaitTimeout',
47673
+ tcpEstablishedTimeout: 'TcpEstablishedTimeout',
47674
+ udpTimeout: 'UdpTimeout',
47675
+ };
47676
+ }
47677
+
47678
+ static types(): { [key: string]: any } {
47679
+ return {
47680
+ tcpClosedAndTimeWaitTimeout: 'number',
47681
+ tcpEstablishedTimeout: 'number',
47682
+ udpTimeout: 'number',
47683
+ };
47684
+ }
47685
+
47686
+ constructor(map?: { [key: string]: any }) {
47687
+ super(map);
47688
+ }
47689
+ }
47690
+
47617
47691
  export class DescribeNetworkInterfaceAttributeResponseBodyIpv4PrefixSetsIpv4PrefixSet extends $tea.Model {
47618
47692
  ipv4Prefix?: string;
47619
47693
  static names(): { [key: string]: string } {
@@ -53964,6 +54038,31 @@ export class ModifyManagedInstanceResponseBodyInstance extends $tea.Model {
53964
54038
  }
53965
54039
  }
53966
54040
 
54041
+ export class ModifyNetworkInterfaceAttributeRequestConnectionTrackingConfiguration extends $tea.Model {
54042
+ tcpClosedAndTimeWaitTimeout?: number;
54043
+ tcpEstablishedTimeout?: number;
54044
+ udpTimeout?: number;
54045
+ static names(): { [key: string]: string } {
54046
+ return {
54047
+ tcpClosedAndTimeWaitTimeout: 'TcpClosedAndTimeWaitTimeout',
54048
+ tcpEstablishedTimeout: 'TcpEstablishedTimeout',
54049
+ udpTimeout: 'UdpTimeout',
54050
+ };
54051
+ }
54052
+
54053
+ static types(): { [key: string]: any } {
54054
+ return {
54055
+ tcpClosedAndTimeWaitTimeout: 'number',
54056
+ tcpEstablishedTimeout: 'number',
54057
+ udpTimeout: 'number',
54058
+ };
54059
+ }
54060
+
54061
+ constructor(map?: { [key: string]: any }) {
54062
+ super(map);
54063
+ }
54064
+ }
54065
+
53967
54066
  export class ModifyPrefixListRequestAddEntry extends $tea.Model {
53968
54067
  cidr?: string;
53969
54068
  description?: string;
@@ -59289,18 +59388,20 @@ export default class Client extends OpenApi {
59289
59388
  }
59290
59389
 
59291
59390
  /**
59292
- * When you call this operation, take note of the following items:
59293
- * * You can use the created custom image only when the image is in the Available state.
59294
- * * If the responses contain `{"OperationLocks": {"LockReason" : "security"}}` when you query instance information, the instance is locked for security reasons. In this case, no operation can be performed on the instance.
59295
- * You can call the CreateImage operation to create a custom image by using one of the following methods. The following request parameters are sorted by priority: `InstanceId` > `DiskDeviceMapping` > `SnapshotId`. If your request contains two or more parameters, the custom image is created based on the parameter that has a higher priority.
59296
- * * **Method 1**: Create a custom image from an instance. You need to only specify the instance ID (`InstanceId`). The instance must be in the `Running` or `Stopped` state. After the CreateImage operation is called, a snapshot is created for each disk of the instance. When you create a custom image from a running instance, some cache data may not be written to the disks. As a result, the data of the created custom image may be slightly inconsistent with that of the instance. We recommend that you create custom images from instances after you stop the instances ([StopInstances](~~155372~~)).
59297
- * * **Method 2**: Create a custom image from the system disk snapshot of an instance. You need to only specify the ID of the system disk snapshot (`SnapshotId`). The specified snapshot must be created on or after July 15, 2013.
59298
- * * **Method 3**: Create a custom image from multiple disk snapshots. You must specify the data mapping between the disks and the snapshots (`DiskDeviceMapping`).
59299
- * When you use method 3 to create a custom image, take note of the following items:
59300
- * * You can specify only one system disk snapshot. The device name of the system disk must be /dev/xvda.
59301
- * * You can specify multiple data disk snapshots. The device names of the data disks must be unique and in alphabetical order from /dev/xvdb to /dev/xvdz.
59302
- * * You can leave the `SnapshotId` parameter empty. In this case, an empty data disk with a specified size is created.
59303
- * * The specified disk snapshot must be created on or after July 15, 2013.
59391
+ * ## [](#)Usage notes
59392
+ * Take note of the following items:
59393
+ * * You can use the created custom image only if the image is in the Available (Available) state.
59394
+ * * If the response contains `{"OperationLocks": {"LockReason" : "security"}}` when you query the information of an instance, the instance is locked for security reasons. No operations are allowed on the instance.
59395
+ * * To optimize the image, we recommend that you specify DetectionStrategy when you create the image. For more information, see [Overview of image check](~~439819~~).
59396
+ * You can call the CreateImage operation to create a custom image by using one of the following methods. The following request parameters are sorted by priority: `InstanceId` > `DiskDeviceMapping` > `SnapshotId`. If your request contains two or more of these parameters, the custom image is created based on the parameter that has a higher priority.
59397
+ * * **Method 1**: Create a custom image from an instance. You need to only specify the ID of the instance by using `InstanceId`. The instance must be in the Running (`Running`) or Stopped (`Stopped`) state. After you call the CreateImage operation, a snapshot is created for each disk of the instance. When you create a custom image from a running instance, cache data may not be written to disks. In this case, the data of the custom image may be slightly different from the data of the instance. We recommend that you stop instances by calling the [StopInstances](~~155372~~) operation before you create custom images from the instances.
59398
+ * * **Method 2**: Create a custom image from the system disk snapshot of an instance. You need to only specify the ID of the system disk snapshot by using `SnapshotId`. The specified system disk snapshot must be created after July 15, 2013.
59399
+ * * **Method 3**: Create a custom image from multiple disk snapshots. You must specify data mappings between the snapshots and the disks to be created by using the parameters that start with `DiskDeviceMapping`.
59400
+ * When you use Method 3 to create a custom image, take note of the following items:
59401
+ * * You can specify only one snapshot to use to create the system disk in the custom image. The device name of the system disk must be /dev/xvda.
59402
+ * * You can specify up to 16 snapshots to use to create data disks in the custom image. The device names of the data disks are unique and range from /dev/xvdb to /dev/xvdz in alphabetical order.
59403
+ * * You can leave `SnapshotId` empty. In this case, an empty data disk with the specified size is created.
59404
+ * * The specified disk snapshot must be created after July 15, 2013.
59304
59405
  *
59305
59406
  * @param request CreateImageRequest
59306
59407
  * @param runtime runtime options for this request RuntimeOptions
@@ -59403,18 +59504,20 @@ export default class Client extends OpenApi {
59403
59504
  }
59404
59505
 
59405
59506
  /**
59406
- * When you call this operation, take note of the following items:
59407
- * * You can use the created custom image only when the image is in the Available state.
59408
- * * If the responses contain `{"OperationLocks": {"LockReason" : "security"}}` when you query instance information, the instance is locked for security reasons. In this case, no operation can be performed on the instance.
59409
- * You can call the CreateImage operation to create a custom image by using one of the following methods. The following request parameters are sorted by priority: `InstanceId` > `DiskDeviceMapping` > `SnapshotId`. If your request contains two or more parameters, the custom image is created based on the parameter that has a higher priority.
59410
- * * **Method 1**: Create a custom image from an instance. You need to only specify the instance ID (`InstanceId`). The instance must be in the `Running` or `Stopped` state. After the CreateImage operation is called, a snapshot is created for each disk of the instance. When you create a custom image from a running instance, some cache data may not be written to the disks. As a result, the data of the created custom image may be slightly inconsistent with that of the instance. We recommend that you create custom images from instances after you stop the instances ([StopInstances](~~155372~~)).
59411
- * * **Method 2**: Create a custom image from the system disk snapshot of an instance. You need to only specify the ID of the system disk snapshot (`SnapshotId`). The specified snapshot must be created on or after July 15, 2013.
59412
- * * **Method 3**: Create a custom image from multiple disk snapshots. You must specify the data mapping between the disks and the snapshots (`DiskDeviceMapping`).
59413
- * When you use method 3 to create a custom image, take note of the following items:
59414
- * * You can specify only one system disk snapshot. The device name of the system disk must be /dev/xvda.
59415
- * * You can specify multiple data disk snapshots. The device names of the data disks must be unique and in alphabetical order from /dev/xvdb to /dev/xvdz.
59416
- * * You can leave the `SnapshotId` parameter empty. In this case, an empty data disk with a specified size is created.
59417
- * * The specified disk snapshot must be created on or after July 15, 2013.
59507
+ * ## [](#)Usage notes
59508
+ * Take note of the following items:
59509
+ * * You can use the created custom image only if the image is in the Available (Available) state.
59510
+ * * If the response contains `{"OperationLocks": {"LockReason" : "security"}}` when you query the information of an instance, the instance is locked for security reasons. No operations are allowed on the instance.
59511
+ * * To optimize the image, we recommend that you specify DetectionStrategy when you create the image. For more information, see [Overview of image check](~~439819~~).
59512
+ * You can call the CreateImage operation to create a custom image by using one of the following methods. The following request parameters are sorted by priority: `InstanceId` > `DiskDeviceMapping` > `SnapshotId`. If your request contains two or more of these parameters, the custom image is created based on the parameter that has a higher priority.
59513
+ * * **Method 1**: Create a custom image from an instance. You need to only specify the ID of the instance by using `InstanceId`. The instance must be in the Running (`Running`) or Stopped (`Stopped`) state. After you call the CreateImage operation, a snapshot is created for each disk of the instance. When you create a custom image from a running instance, cache data may not be written to disks. In this case, the data of the custom image may be slightly different from the data of the instance. We recommend that you stop instances by calling the [StopInstances](~~155372~~) operation before you create custom images from the instances.
59514
+ * * **Method 2**: Create a custom image from the system disk snapshot of an instance. You need to only specify the ID of the system disk snapshot by using `SnapshotId`. The specified system disk snapshot must be created after July 15, 2013.
59515
+ * * **Method 3**: Create a custom image from multiple disk snapshots. You must specify data mappings between the snapshots and the disks to be created by using the parameters that start with `DiskDeviceMapping`.
59516
+ * When you use Method 3 to create a custom image, take note of the following items:
59517
+ * * You can specify only one snapshot to use to create the system disk in the custom image. The device name of the system disk must be /dev/xvda.
59518
+ * * You can specify up to 16 snapshots to use to create data disks in the custom image. The device names of the data disks are unique and range from /dev/xvdb to /dev/xvdz in alphabetical order.
59519
+ * * You can leave `SnapshotId` empty. In this case, an empty data disk with the specified size is created.
59520
+ * * The specified disk snapshot must be created after July 15, 2013.
59418
59521
  *
59419
59522
  * @param request CreateImageRequest
59420
59523
  * @return CreateImageResponse
@@ -60679,6 +60782,10 @@ export default class Client extends OpenApi {
60679
60782
  query["ClientToken"] = request.clientToken;
60680
60783
  }
60681
60784
 
60785
+ if (!Util.isUnset(request.connectionTrackingConfiguration)) {
60786
+ query["ConnectionTrackingConfiguration"] = request.connectionTrackingConfiguration;
60787
+ }
60788
+
60682
60789
  if (!Util.isUnset(request.deleteOnRelease)) {
60683
60790
  query["DeleteOnRelease"] = request.deleteOnRelease;
60684
60791
  }
@@ -69045,11 +69152,11 @@ export default class Client extends OpenApi {
69045
69152
  }
69046
69153
 
69047
69154
  /**
69048
- * ## Usage notes
69049
- * Before you call this operation, take note of the following items:
69050
- * * The MaxResults parameter specifies the maximum number of entries to return on each page. The maximum value of this parameter is changed from 1600 to 100. If you called this operation in 2022, you can continue to use 1600 as the maximum value of MaxResults until November 15, 2023. As of November 15, 2023, only 100 can be used as the maximum value of MaxResults. If you do not specify the NextToken parameter when you call the DescribeInstanceTypes operation, only the first page of results that contains up to 100 entries is returned. If you want to retrieve more results, specify the NextToken parameter to perform paged queries, or specify filter conditions to filter results.
69051
- * * We recommend that you specify the MaxResults and NextToken parameters to perform paged queries. The first time you call the DescribeInstanceTypes operation, specify MaxResults to limit the maximum number of entries to return in the call. If the number of entries to return exceeds the specified value of MaxResults, the response includes a NextToken value. You can set NextToken to this return value and specify MaxResults in your next request to DescribeInstanceTypes to retrieve the next page of results.
69052
- * * The DescribeInstanceTypes operation is used to query only the specifications and performance information of instance types. To query instance types that are available in a specified region, call the [DescribeAvailableResource](~~66186~~) operation.
69155
+ * ## [](#)Usage notes
69156
+ * Take note of the following items:
69157
+ * * MaxResults specifies the maximum number of entries per page. The maximum value of this parameter is changed from 1600 to 100. As of November 15, 2023, only 100 can be used as the maximum value of MaxResults. If you called the DescribeInstanceTypes operation in 2022, you can use 1600 as the maximum value before November 15, 2023. If you do not specify NextToken when you call the DescribeInstanceTypes operation, only the first page of results that contains up to 100 entries is returned. If you want to retrieve more results, specify NextToken to perform paged queries, or specify filter conditions to filter results.
69158
+ * * We recommend that you specify MaxResults and NextToken to perform paged queries. The first time you call the DescribeInstanceTypes operation, set MaxResults to specify the maximum number of entries to return in a single call. If the number of entries to return exceeds the specified MaxResults value, the response includes a NextToken value. You can set NextToken to the returned value and specify MaxResults in your next request to DescribeInstanceTypes to retrieve the next page of results.
69159
+ * * The DescribeInstanceTypes operation is used to query only the specifications and performance information of instance types. To query instance types that are available in a specific region, call the [DescribeAvailableResource](~~66186~~) operation.
69053
69160
  * * To use special instance types such as instance types that are unavailable for purchase, [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex).
69054
69161
  *
69055
69162
  * @param request DescribeInstanceTypesRequest
@@ -69265,11 +69372,11 @@ export default class Client extends OpenApi {
69265
69372
  }
69266
69373
 
69267
69374
  /**
69268
- * ## Usage notes
69269
- * Before you call this operation, take note of the following items:
69270
- * * The MaxResults parameter specifies the maximum number of entries to return on each page. The maximum value of this parameter is changed from 1600 to 100. If you called this operation in 2022, you can continue to use 1600 as the maximum value of MaxResults until November 15, 2023. As of November 15, 2023, only 100 can be used as the maximum value of MaxResults. If you do not specify the NextToken parameter when you call the DescribeInstanceTypes operation, only the first page of results that contains up to 100 entries is returned. If you want to retrieve more results, specify the NextToken parameter to perform paged queries, or specify filter conditions to filter results.
69271
- * * We recommend that you specify the MaxResults and NextToken parameters to perform paged queries. The first time you call the DescribeInstanceTypes operation, specify MaxResults to limit the maximum number of entries to return in the call. If the number of entries to return exceeds the specified value of MaxResults, the response includes a NextToken value. You can set NextToken to this return value and specify MaxResults in your next request to DescribeInstanceTypes to retrieve the next page of results.
69272
- * * The DescribeInstanceTypes operation is used to query only the specifications and performance information of instance types. To query instance types that are available in a specified region, call the [DescribeAvailableResource](~~66186~~) operation.
69375
+ * ## [](#)Usage notes
69376
+ * Take note of the following items:
69377
+ * * MaxResults specifies the maximum number of entries per page. The maximum value of this parameter is changed from 1600 to 100. As of November 15, 2023, only 100 can be used as the maximum value of MaxResults. If you called the DescribeInstanceTypes operation in 2022, you can use 1600 as the maximum value before November 15, 2023. If you do not specify NextToken when you call the DescribeInstanceTypes operation, only the first page of results that contains up to 100 entries is returned. If you want to retrieve more results, specify NextToken to perform paged queries, or specify filter conditions to filter results.
69378
+ * * We recommend that you specify MaxResults and NextToken to perform paged queries. The first time you call the DescribeInstanceTypes operation, set MaxResults to specify the maximum number of entries to return in a single call. If the number of entries to return exceeds the specified MaxResults value, the response includes a NextToken value. You can set NextToken to the returned value and specify MaxResults in your next request to DescribeInstanceTypes to retrieve the next page of results.
69379
+ * * The DescribeInstanceTypes operation is used to query only the specifications and performance information of instance types. To query instance types that are available in a specific region, call the [DescribeAvailableResource](~~66186~~) operation.
69273
69380
  * * To use special instance types such as instance types that are unavailable for purchase, [submit a ticket](https://workorder-intl.console.aliyun.com/#/ticket/createIndex).
69274
69381
  *
69275
69382
  * @param request DescribeInstanceTypesRequest
@@ -75632,20 +75739,20 @@ export default class Client extends OpenApi {
75632
75739
 
75633
75740
  /**
75634
75741
  * ## [](#)Usage notes
75635
- * * The Elastic Compute Service (ECS) instances on which you want to run the Cloud Assistant command must meet the following requirements. If multiple ECS instances are specified and one of the instances does not meet the requirements for running the command, the call fails. You must specify instances that meet the requirements and call the InvokeCommand operation again.
75742
+ * * The ECS instances on which you want to run the Cloud Assistant command must meet the following requirements. If multiple ECS instances are specified and one of the instances does not meet the requirements for running the command, the call fails. You must specify instances that meet the requirements and call the InvokeCommand operation again.
75636
75743
  * * The instances are in the Running (`Running`) state. You can call the [DescribeInstances](~~25506~~) operation to query the status of instances.
75637
- * * Cloud Assistant Agent is installed on the instances. For more information, see [Install Cloud Assistant Agent on an ECS instance](~~64921~~).
75638
- * * Before you run PowerShell commands on the instances, make sure that the instances have the PowerShell module configured.
75744
+ * * Cloud Assistant Agent is installed on the instances. For more information, see [Install Cloud Assistant Agent](~~64921~~).
75745
+ * * If the command is a PowerShell command, make sure that the instances have the PowerShell module configured.
75639
75746
  * * You can configure the command to run only once on the instances.
75640
- * * You can configure the command to run multiple times on the instances based on a schedule.
75641
- * * The schedule is specified by the Frequency parameter. The results of each execution of the command do not affect the next execution of the command.
75642
- * * If you use a cron expression to specify a schedule, you can specify a time zone based on your business requirements. If you do not specify a time zone, the schedule is determined by the system time of the instance. Make sure that the time or time zone of the instances meets your business requirements. For more information, see [Manage the time synchronization service](~~92803~~).[](~~51890~~)
75643
- * To ensure that scheduled tasks can run as expected, make sure that the version of Cloud Assistant Agent is not earlier than the following ones. A scheduled task can run a command at a fixed interval, only once at a specific time, or at specific times based on a cron expression in a specified year or time zone. If the ClientNeedUpgrade error code is returned, you must upgrade Cloud Assistant Agent to the latest version. For more information, see [Upgrade or disable upgrades for Cloud Assistant Agent](~~134383~~).
75747
+ * * You can configure the command to run on the instances based on a schedule.
75748
+ * * The schedule is specified by Frequency. The results of each execution of the command do not affect the next execution of the command.
75749
+ * * When you use a cron expression to specify a schedule, you can specify a time zone based on your business requirements. If you do not specify a time zone, the schedule is determined by the system time of the instances. Make sure that the time or time zone of the instances meets your business requirements. For more information, see [Manage the time synchronization service](~~92704~~).
75750
+ * To ensure that scheduled tasks can run as expected, make sure that the version of Cloud Assistant Agent is not earlier than the following versions. A scheduled task can run a command at a fixed interval, only once at a specific time, or at specific times based on a cron expression in a specified year or time zone. If the ClientNeedUpgrade error code is returned, you must upgrade Cloud Assistant Agent to the latest version. For more information, see [Upgrade or disable upgrades for Cloud Assistant Agent](~~134383~~).
75644
75751
  * * Linux: 2.2.3.282
75645
75752
  * * Windows: 2.1.3.282
75646
75753
  * * Command executions may fail due to instance status exceptions, network exceptions, or exceptions on Cloud Assistant Agent. If a command execution fails, no execution information is generated. For more information, see [Check execution results and troubleshoot common issues](~~87029~~).
75647
75754
  * * If you enable the custom parameter feature when you create the command, you must specify custom parameters (`Parameters`) to run the command.
75648
- * * Before you run the command on instances, especially new instances, we recommend that you call the [DescribeCloudAssistantStatus](~~87346~~) operation to query the status of Cloud Assistant Agent on the instances. Run the command when the return value of CloudAssistantStatus is true.
75755
+ * * Before you run the command on instances, especially new instances, we recommend that you call the [DescribeCloudAssistantStatus](~~87346~~) operation to query the status of Cloud Assistant Agent on the instances and run the command when the value of CloudAssistantStatus in the response is true for the instances.
75649
75756
  *
75650
75757
  * @param tmpReq InvokeCommandRequest
75651
75758
  * @param runtime runtime options for this request RuntimeOptions
@@ -75763,20 +75870,20 @@ export default class Client extends OpenApi {
75763
75870
 
75764
75871
  /**
75765
75872
  * ## [](#)Usage notes
75766
- * * The Elastic Compute Service (ECS) instances on which you want to run the Cloud Assistant command must meet the following requirements. If multiple ECS instances are specified and one of the instances does not meet the requirements for running the command, the call fails. You must specify instances that meet the requirements and call the InvokeCommand operation again.
75873
+ * * The ECS instances on which you want to run the Cloud Assistant command must meet the following requirements. If multiple ECS instances are specified and one of the instances does not meet the requirements for running the command, the call fails. You must specify instances that meet the requirements and call the InvokeCommand operation again.
75767
75874
  * * The instances are in the Running (`Running`) state. You can call the [DescribeInstances](~~25506~~) operation to query the status of instances.
75768
- * * Cloud Assistant Agent is installed on the instances. For more information, see [Install Cloud Assistant Agent on an ECS instance](~~64921~~).
75769
- * * Before you run PowerShell commands on the instances, make sure that the instances have the PowerShell module configured.
75875
+ * * Cloud Assistant Agent is installed on the instances. For more information, see [Install Cloud Assistant Agent](~~64921~~).
75876
+ * * If the command is a PowerShell command, make sure that the instances have the PowerShell module configured.
75770
75877
  * * You can configure the command to run only once on the instances.
75771
- * * You can configure the command to run multiple times on the instances based on a schedule.
75772
- * * The schedule is specified by the Frequency parameter. The results of each execution of the command do not affect the next execution of the command.
75773
- * * If you use a cron expression to specify a schedule, you can specify a time zone based on your business requirements. If you do not specify a time zone, the schedule is determined by the system time of the instance. Make sure that the time or time zone of the instances meets your business requirements. For more information, see [Manage the time synchronization service](~~92803~~).[](~~51890~~)
75774
- * To ensure that scheduled tasks can run as expected, make sure that the version of Cloud Assistant Agent is not earlier than the following ones. A scheduled task can run a command at a fixed interval, only once at a specific time, or at specific times based on a cron expression in a specified year or time zone. If the ClientNeedUpgrade error code is returned, you must upgrade Cloud Assistant Agent to the latest version. For more information, see [Upgrade or disable upgrades for Cloud Assistant Agent](~~134383~~).
75878
+ * * You can configure the command to run on the instances based on a schedule.
75879
+ * * The schedule is specified by Frequency. The results of each execution of the command do not affect the next execution of the command.
75880
+ * * When you use a cron expression to specify a schedule, you can specify a time zone based on your business requirements. If you do not specify a time zone, the schedule is determined by the system time of the instances. Make sure that the time or time zone of the instances meets your business requirements. For more information, see [Manage the time synchronization service](~~92704~~).
75881
+ * To ensure that scheduled tasks can run as expected, make sure that the version of Cloud Assistant Agent is not earlier than the following versions. A scheduled task can run a command at a fixed interval, only once at a specific time, or at specific times based on a cron expression in a specified year or time zone. If the ClientNeedUpgrade error code is returned, you must upgrade Cloud Assistant Agent to the latest version. For more information, see [Upgrade or disable upgrades for Cloud Assistant Agent](~~134383~~).
75775
75882
  * * Linux: 2.2.3.282
75776
75883
  * * Windows: 2.1.3.282
75777
75884
  * * Command executions may fail due to instance status exceptions, network exceptions, or exceptions on Cloud Assistant Agent. If a command execution fails, no execution information is generated. For more information, see [Check execution results and troubleshoot common issues](~~87029~~).
75778
75885
  * * If you enable the custom parameter feature when you create the command, you must specify custom parameters (`Parameters`) to run the command.
75779
- * * Before you run the command on instances, especially new instances, we recommend that you call the [DescribeCloudAssistantStatus](~~87346~~) operation to query the status of Cloud Assistant Agent on the instances. Run the command when the return value of CloudAssistantStatus is true.
75886
+ * * Before you run the command on instances, especially new instances, we recommend that you call the [DescribeCloudAssistantStatus](~~87346~~) operation to query the status of Cloud Assistant Agent on the instances and run the command when the value of CloudAssistantStatus in the response is true for the instances.
75780
75887
  *
75781
75888
  * @param request InvokeCommandRequest
75782
75889
  * @return InvokeCommandResponse
@@ -79795,6 +79902,10 @@ export default class Client extends OpenApi {
79795
79902
  async modifyNetworkInterfaceAttributeWithOptions(request: ModifyNetworkInterfaceAttributeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyNetworkInterfaceAttributeResponse> {
79796
79903
  Util.validateModel(request);
79797
79904
  let query = { };
79905
+ if (!Util.isUnset(request.connectionTrackingConfiguration)) {
79906
+ query["ConnectionTrackingConfiguration"] = request.connectionTrackingConfiguration;
79907
+ }
79908
+
79798
79909
  if (!Util.isUnset(request.deleteOnRelease)) {
79799
79910
  query["DeleteOnRelease"] = request.deleteOnRelease;
79800
79911
  }
@@ -83332,7 +83443,13 @@ export default class Client extends OpenApi {
83332
83443
  }
83333
83444
 
83334
83445
  /**
83335
- * The ID of the disk. You can call the [DescribeDisks](~~25514~~) operation to query the ID of a disk.
83446
+ * ## [](#)Usage notes
83447
+ * > Before you call this operation to resize a disk, you must check the partition format of the disk. A master boot record (MBR) disk cannot be resized to a size that is larger than 2 TiB. If you resize an MBR disk to a size that is larger than 2 TiB, data may be lost. If you want to resize an MBR disk to a size that is larger than 2 TiB, we recommend that you perform the following steps: Create another data disk that is larger than 2 TiB in size, partition and format the new data disk to GUID partition table (GPT), and then copy data from the MBR disk to the new GPT data disk. For more information, see [Step 1: Resize a disk to extend its capacity](~~44986~~).
83448
+ * * You can resize the following categories of disks: basic disks (`cloud`), ultra disks (`cloud_efficiency`), SSDs (`cloud_ssd`), enhanced SSDs (ESSDs)(`cloud_essd`), and ESSD AutoPL disks (cloud_auto).
83449
+ * * A disk cannot be resized when a snapshot is being created for the disk.
83450
+ * * The Elastic Compute Service (ECS) instance to which the disk is attached must be in the **Running** (`Running`) or **Stopped** (`Stopped`) state.
83451
+ * * After you resize a disk, the partitions and file systems of the disk are not changed. You must allocate the storage space on the disk after the disk is resized.
83452
+ * * Disks for which the multi-attach feature is enabled support online resizing and offline resizing. Before you resize the disks offline, make sure that the instances to which the disks are attached are in the **Stopped** (`Stopped`) state.
83336
83453
  *
83337
83454
  * @param request ResizeDiskRequest
83338
83455
  * @param runtime runtime options for this request RuntimeOptions
@@ -83391,7 +83508,13 @@ export default class Client extends OpenApi {
83391
83508
  }
83392
83509
 
83393
83510
  /**
83394
- * The ID of the disk. You can call the [DescribeDisks](~~25514~~) operation to query the ID of a disk.
83511
+ * ## [](#)Usage notes
83512
+ * > Before you call this operation to resize a disk, you must check the partition format of the disk. A master boot record (MBR) disk cannot be resized to a size that is larger than 2 TiB. If you resize an MBR disk to a size that is larger than 2 TiB, data may be lost. If you want to resize an MBR disk to a size that is larger than 2 TiB, we recommend that you perform the following steps: Create another data disk that is larger than 2 TiB in size, partition and format the new data disk to GUID partition table (GPT), and then copy data from the MBR disk to the new GPT data disk. For more information, see [Step 1: Resize a disk to extend its capacity](~~44986~~).
83513
+ * * You can resize the following categories of disks: basic disks (`cloud`), ultra disks (`cloud_efficiency`), SSDs (`cloud_ssd`), enhanced SSDs (ESSDs)(`cloud_essd`), and ESSD AutoPL disks (cloud_auto).
83514
+ * * A disk cannot be resized when a snapshot is being created for the disk.
83515
+ * * The Elastic Compute Service (ECS) instance to which the disk is attached must be in the **Running** (`Running`) or **Stopped** (`Stopped`) state.
83516
+ * * After you resize a disk, the partitions and file systems of the disk are not changed. You must allocate the storage space on the disk after the disk is resized.
83517
+ * * Disks for which the multi-attach feature is enabled support online resizing and offline resizing. Before you resize the disks offline, make sure that the instances to which the disks are attached are in the **Stopped** (`Stopped`) state.
83395
83518
  *
83396
83519
  * @param request ResizeDiskRequest
83397
83520
  * @return ResizeDiskResponse