@alicloud/ess20220222 1.8.1 → 1.8.2

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/ess20220222",
3
- "version": "1.8.1",
3
+ "version": "1.8.2",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -7174,11 +7174,16 @@ export class DescribeEciScalingConfigurationsResponse extends $tea.Model {
7174
7174
  }
7175
7175
 
7176
7176
  export class DescribeElasticStrengthRequest extends $tea.Model {
7177
+ dataDiskCategories?: string[];
7178
+ imageFamily?: string;
7179
+ imageId?: string;
7180
+ imageName?: string;
7177
7181
  /**
7178
7182
  * @remarks
7179
7183
  * The instance types. The instance types specified by this parameter overwrite the instance types specified in the scaling configuration.
7180
7184
  */
7181
7185
  instanceTypes?: string[];
7186
+ ipv6AddressCount?: number;
7182
7187
  /**
7183
7188
  * @remarks
7184
7189
  * The preemption policy that you want to apply to pay-as-you-go instances. The preemption policy specified by this parameter overwrites the preemption policy specified in the scaling configuration. Valid values:
@@ -7216,6 +7221,7 @@ export class DescribeElasticStrengthRequest extends $tea.Model {
7216
7221
  * The IDs of the scaling groups that you want to query.
7217
7222
  */
7218
7223
  scalingGroupIds?: string[];
7224
+ spotStrategy?: string;
7219
7225
  /**
7220
7226
  * @remarks
7221
7227
  * The categories of the system disks. The categories of the system disks specified by this parameter overwrite the categories of the system disks specified in the scaling configuration. Valid values:
@@ -7226,25 +7232,40 @@ export class DescribeElasticStrengthRequest extends $tea.Model {
7226
7232
  * * cloud_essd: Enterprise SSD (ESSD).
7227
7233
  */
7228
7234
  systemDiskCategories?: string[];
7235
+ vSwitchIds?: string[];
7229
7236
  static names(): { [key: string]: string } {
7230
7237
  return {
7238
+ dataDiskCategories: 'DataDiskCategories',
7239
+ imageFamily: 'ImageFamily',
7240
+ imageId: 'ImageId',
7241
+ imageName: 'ImageName',
7231
7242
  instanceTypes: 'InstanceTypes',
7243
+ ipv6AddressCount: 'Ipv6AddressCount',
7232
7244
  priorityStrategy: 'PriorityStrategy',
7233
7245
  regionId: 'RegionId',
7234
7246
  scalingGroupId: 'ScalingGroupId',
7235
7247
  scalingGroupIds: 'ScalingGroupIds',
7248
+ spotStrategy: 'SpotStrategy',
7236
7249
  systemDiskCategories: 'SystemDiskCategories',
7250
+ vSwitchIds: 'VSwitchIds',
7237
7251
  };
7238
7252
  }
7239
7253
 
7240
7254
  static types(): { [key: string]: any } {
7241
7255
  return {
7256
+ dataDiskCategories: { 'type': 'array', 'itemType': 'string' },
7257
+ imageFamily: 'string',
7258
+ imageId: 'string',
7259
+ imageName: 'string',
7242
7260
  instanceTypes: { 'type': 'array', 'itemType': 'string' },
7261
+ ipv6AddressCount: 'number',
7243
7262
  priorityStrategy: 'string',
7244
7263
  regionId: 'string',
7245
7264
  scalingGroupId: 'string',
7246
7265
  scalingGroupIds: { 'type': 'array', 'itemType': 'string' },
7266
+ spotStrategy: 'string',
7247
7267
  systemDiskCategories: { 'type': 'array', 'itemType': 'string' },
7268
+ vSwitchIds: { 'type': 'array', 'itemType': 'string' },
7248
7269
  };
7249
7270
  }
7250
7271