@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/dist/client.d.ts +7 -0
- package/dist/client.js +31 -7
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +21 -0
package/dist/client.d.ts
CHANGED
|
@@ -5487,11 +5487,16 @@ export declare class DescribeEciScalingConfigurationsResponse extends $tea.Model
|
|
|
5487
5487
|
});
|
|
5488
5488
|
}
|
|
5489
5489
|
export declare class DescribeElasticStrengthRequest extends $tea.Model {
|
|
5490
|
+
dataDiskCategories?: string[];
|
|
5491
|
+
imageFamily?: string;
|
|
5492
|
+
imageId?: string;
|
|
5493
|
+
imageName?: string;
|
|
5490
5494
|
/**
|
|
5491
5495
|
* @remarks
|
|
5492
5496
|
* The instance types. The instance types specified by this parameter overwrite the instance types specified in the scaling configuration.
|
|
5493
5497
|
*/
|
|
5494
5498
|
instanceTypes?: string[];
|
|
5499
|
+
ipv6AddressCount?: number;
|
|
5495
5500
|
/**
|
|
5496
5501
|
* @remarks
|
|
5497
5502
|
* 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:
|
|
@@ -5529,6 +5534,7 @@ export declare class DescribeElasticStrengthRequest extends $tea.Model {
|
|
|
5529
5534
|
* The IDs of the scaling groups that you want to query.
|
|
5530
5535
|
*/
|
|
5531
5536
|
scalingGroupIds?: string[];
|
|
5537
|
+
spotStrategy?: string;
|
|
5532
5538
|
/**
|
|
5533
5539
|
* @remarks
|
|
5534
5540
|
* 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:
|
|
@@ -5539,6 +5545,7 @@ export declare class DescribeElasticStrengthRequest extends $tea.Model {
|
|
|
5539
5545
|
* * cloud_essd: Enterprise SSD (ESSD).
|
|
5540
5546
|
*/
|
|
5541
5547
|
systemDiskCategories?: string[];
|
|
5548
|
+
vSwitchIds?: string[];
|
|
5542
5549
|
static names(): {
|
|
5543
5550
|
[key: string]: string;
|
|
5544
5551
|
};
|
package/dist/client.js
CHANGED
|
@@ -15,13 +15,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
15
15
|
}) : function(o, v) {
|
|
16
16
|
o["default"] = v;
|
|
17
17
|
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || function (
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
};
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
25
35
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26
36
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
37
|
};
|
|
@@ -2728,22 +2738,36 @@ exports.DescribeEciScalingConfigurationsResponse = DescribeEciScalingConfigurati
|
|
|
2728
2738
|
class DescribeElasticStrengthRequest extends $tea.Model {
|
|
2729
2739
|
static names() {
|
|
2730
2740
|
return {
|
|
2741
|
+
dataDiskCategories: 'DataDiskCategories',
|
|
2742
|
+
imageFamily: 'ImageFamily',
|
|
2743
|
+
imageId: 'ImageId',
|
|
2744
|
+
imageName: 'ImageName',
|
|
2731
2745
|
instanceTypes: 'InstanceTypes',
|
|
2746
|
+
ipv6AddressCount: 'Ipv6AddressCount',
|
|
2732
2747
|
priorityStrategy: 'PriorityStrategy',
|
|
2733
2748
|
regionId: 'RegionId',
|
|
2734
2749
|
scalingGroupId: 'ScalingGroupId',
|
|
2735
2750
|
scalingGroupIds: 'ScalingGroupIds',
|
|
2751
|
+
spotStrategy: 'SpotStrategy',
|
|
2736
2752
|
systemDiskCategories: 'SystemDiskCategories',
|
|
2753
|
+
vSwitchIds: 'VSwitchIds',
|
|
2737
2754
|
};
|
|
2738
2755
|
}
|
|
2739
2756
|
static types() {
|
|
2740
2757
|
return {
|
|
2758
|
+
dataDiskCategories: { 'type': 'array', 'itemType': 'string' },
|
|
2759
|
+
imageFamily: 'string',
|
|
2760
|
+
imageId: 'string',
|
|
2761
|
+
imageName: 'string',
|
|
2741
2762
|
instanceTypes: { 'type': 'array', 'itemType': 'string' },
|
|
2763
|
+
ipv6AddressCount: 'number',
|
|
2742
2764
|
priorityStrategy: 'string',
|
|
2743
2765
|
regionId: 'string',
|
|
2744
2766
|
scalingGroupId: 'string',
|
|
2745
2767
|
scalingGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
2768
|
+
spotStrategy: 'string',
|
|
2746
2769
|
systemDiskCategories: { 'type': 'array', 'itemType': 'string' },
|
|
2770
|
+
vSwitchIds: { 'type': 'array', 'itemType': 'string' },
|
|
2747
2771
|
};
|
|
2748
2772
|
}
|
|
2749
2773
|
constructor(map) {
|