@alicloud/ess20220222 1.0.6 → 1.0.7
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 +16 -14
- package/dist/client.js +27 -20
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +35 -25
package/dist/client.d.ts
CHANGED
|
@@ -1935,6 +1935,7 @@ export declare class DescribeScalingGroupsRequest extends $tea.Model {
|
|
|
1935
1935
|
scalingGroupIds?: string[];
|
|
1936
1936
|
scalingGroupName?: string;
|
|
1937
1937
|
scalingGroupNames?: string[];
|
|
1938
|
+
tags?: DescribeScalingGroupsRequestTags[];
|
|
1938
1939
|
static names(): {
|
|
1939
1940
|
[key: string]: string;
|
|
1940
1941
|
};
|
|
@@ -5517,19 +5518,6 @@ export declare class DescribeScalingActivitiesResponseBodyScalingActivities exte
|
|
|
5517
5518
|
[key: string]: any;
|
|
5518
5519
|
});
|
|
5519
5520
|
}
|
|
5520
|
-
export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurationsPrivatePoolOptions extends $tea.Model {
|
|
5521
|
-
id?: string;
|
|
5522
|
-
matchCriteria?: string;
|
|
5523
|
-
static names(): {
|
|
5524
|
-
[key: string]: string;
|
|
5525
|
-
};
|
|
5526
|
-
static types(): {
|
|
5527
|
-
[key: string]: any;
|
|
5528
|
-
};
|
|
5529
|
-
constructor(map?: {
|
|
5530
|
-
[key: string]: any;
|
|
5531
|
-
});
|
|
5532
|
-
}
|
|
5533
5521
|
export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurationsDataDisks extends $tea.Model {
|
|
5534
5522
|
autoSnapshotPolicyId?: string;
|
|
5535
5523
|
burstingEnabled?: boolean;
|
|
@@ -5612,7 +5600,6 @@ export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurati
|
|
|
5612
5600
|
});
|
|
5613
5601
|
}
|
|
5614
5602
|
export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurations extends $tea.Model {
|
|
5615
|
-
privatePoolOptions?: DescribeScalingConfigurationsResponseBodyScalingConfigurationsPrivatePoolOptions;
|
|
5616
5603
|
affinity?: string;
|
|
5617
5604
|
cpu?: number;
|
|
5618
5605
|
creationTime?: string;
|
|
@@ -5644,6 +5631,8 @@ export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurati
|
|
|
5644
5631
|
loadBalancerWeight?: number;
|
|
5645
5632
|
memory?: number;
|
|
5646
5633
|
passwordInherit?: boolean;
|
|
5634
|
+
privatePoolOptions_id?: string;
|
|
5635
|
+
privatePoolOptions_matchCriteria?: string;
|
|
5647
5636
|
ramRoleName?: string;
|
|
5648
5637
|
resourceGroupId?: string;
|
|
5649
5638
|
scalingConfigurationId?: string;
|
|
@@ -5684,6 +5673,19 @@ export declare class DescribeScalingConfigurationsResponseBodyScalingConfigurati
|
|
|
5684
5673
|
[key: string]: any;
|
|
5685
5674
|
});
|
|
5686
5675
|
}
|
|
5676
|
+
export declare class DescribeScalingGroupsRequestTags extends $tea.Model {
|
|
5677
|
+
key?: string;
|
|
5678
|
+
value?: string;
|
|
5679
|
+
static names(): {
|
|
5680
|
+
[key: string]: string;
|
|
5681
|
+
};
|
|
5682
|
+
static types(): {
|
|
5683
|
+
[key: string]: any;
|
|
5684
|
+
};
|
|
5685
|
+
constructor(map?: {
|
|
5686
|
+
[key: string]: any;
|
|
5687
|
+
});
|
|
5688
|
+
}
|
|
5687
5689
|
export declare class DescribeScalingGroupsResponseBodyScalingGroupsAlbServerGroups extends $tea.Model {
|
|
5688
5690
|
albServerGroupId?: string;
|
|
5689
5691
|
port?: number;
|
package/dist/client.js
CHANGED
|
@@ -2853,6 +2853,7 @@ class DescribeScalingGroupsRequest extends $tea.Model {
|
|
|
2853
2853
|
scalingGroupIds: 'ScalingGroupIds',
|
|
2854
2854
|
scalingGroupName: 'ScalingGroupName',
|
|
2855
2855
|
scalingGroupNames: 'ScalingGroupNames',
|
|
2856
|
+
tags: 'Tags',
|
|
2856
2857
|
};
|
|
2857
2858
|
}
|
|
2858
2859
|
static types() {
|
|
@@ -2869,6 +2870,7 @@ class DescribeScalingGroupsRequest extends $tea.Model {
|
|
|
2869
2870
|
scalingGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
2870
2871
|
scalingGroupName: 'string',
|
|
2871
2872
|
scalingGroupNames: { 'type': 'array', 'itemType': 'string' },
|
|
2873
|
+
tags: { 'type': 'array', 'itemType': DescribeScalingGroupsRequestTags },
|
|
2872
2874
|
};
|
|
2873
2875
|
}
|
|
2874
2876
|
}
|
|
@@ -8153,24 +8155,6 @@ class DescribeScalingActivitiesResponseBodyScalingActivities extends $tea.Model
|
|
|
8153
8155
|
}
|
|
8154
8156
|
}
|
|
8155
8157
|
exports.DescribeScalingActivitiesResponseBodyScalingActivities = DescribeScalingActivitiesResponseBodyScalingActivities;
|
|
8156
|
-
class DescribeScalingConfigurationsResponseBodyScalingConfigurationsPrivatePoolOptions extends $tea.Model {
|
|
8157
|
-
constructor(map) {
|
|
8158
|
-
super(map);
|
|
8159
|
-
}
|
|
8160
|
-
static names() {
|
|
8161
|
-
return {
|
|
8162
|
-
id: 'Id',
|
|
8163
|
-
matchCriteria: 'MatchCriteria',
|
|
8164
|
-
};
|
|
8165
|
-
}
|
|
8166
|
-
static types() {
|
|
8167
|
-
return {
|
|
8168
|
-
id: 'string',
|
|
8169
|
-
matchCriteria: 'string',
|
|
8170
|
-
};
|
|
8171
|
-
}
|
|
8172
|
-
}
|
|
8173
|
-
exports.DescribeScalingConfigurationsResponseBodyScalingConfigurationsPrivatePoolOptions = DescribeScalingConfigurationsResponseBodyScalingConfigurationsPrivatePoolOptions;
|
|
8174
8158
|
class DescribeScalingConfigurationsResponseBodyScalingConfigurationsDataDisks extends $tea.Model {
|
|
8175
8159
|
constructor(map) {
|
|
8176
8160
|
super(map);
|
|
@@ -8299,7 +8283,6 @@ class DescribeScalingConfigurationsResponseBodyScalingConfigurations extends $te
|
|
|
8299
8283
|
}
|
|
8300
8284
|
static names() {
|
|
8301
8285
|
return {
|
|
8302
|
-
privatePoolOptions: 'PrivatePoolOptions',
|
|
8303
8286
|
affinity: 'Affinity',
|
|
8304
8287
|
cpu: 'Cpu',
|
|
8305
8288
|
creationTime: 'CreationTime',
|
|
@@ -8331,6 +8314,8 @@ class DescribeScalingConfigurationsResponseBodyScalingConfigurations extends $te
|
|
|
8331
8314
|
loadBalancerWeight: 'LoadBalancerWeight',
|
|
8332
8315
|
memory: 'Memory',
|
|
8333
8316
|
passwordInherit: 'PasswordInherit',
|
|
8317
|
+
privatePoolOptions_id: 'PrivatePoolOptions.Id',
|
|
8318
|
+
privatePoolOptions_matchCriteria: 'PrivatePoolOptions.MatchCriteria',
|
|
8334
8319
|
ramRoleName: 'RamRoleName',
|
|
8335
8320
|
resourceGroupId: 'ResourceGroupId',
|
|
8336
8321
|
scalingConfigurationId: 'ScalingConfigurationId',
|
|
@@ -8365,7 +8350,6 @@ class DescribeScalingConfigurationsResponseBodyScalingConfigurations extends $te
|
|
|
8365
8350
|
}
|
|
8366
8351
|
static types() {
|
|
8367
8352
|
return {
|
|
8368
|
-
privatePoolOptions: DescribeScalingConfigurationsResponseBodyScalingConfigurationsPrivatePoolOptions,
|
|
8369
8353
|
affinity: 'string',
|
|
8370
8354
|
cpu: 'number',
|
|
8371
8355
|
creationTime: 'string',
|
|
@@ -8397,6 +8381,8 @@ class DescribeScalingConfigurationsResponseBodyScalingConfigurations extends $te
|
|
|
8397
8381
|
loadBalancerWeight: 'number',
|
|
8398
8382
|
memory: 'number',
|
|
8399
8383
|
passwordInherit: 'boolean',
|
|
8384
|
+
privatePoolOptions_id: 'string',
|
|
8385
|
+
privatePoolOptions_matchCriteria: 'string',
|
|
8400
8386
|
ramRoleName: 'string',
|
|
8401
8387
|
resourceGroupId: 'string',
|
|
8402
8388
|
scalingConfigurationId: 'string',
|
|
@@ -8431,6 +8417,24 @@ class DescribeScalingConfigurationsResponseBodyScalingConfigurations extends $te
|
|
|
8431
8417
|
}
|
|
8432
8418
|
}
|
|
8433
8419
|
exports.DescribeScalingConfigurationsResponseBodyScalingConfigurations = DescribeScalingConfigurationsResponseBodyScalingConfigurations;
|
|
8420
|
+
class DescribeScalingGroupsRequestTags extends $tea.Model {
|
|
8421
|
+
constructor(map) {
|
|
8422
|
+
super(map);
|
|
8423
|
+
}
|
|
8424
|
+
static names() {
|
|
8425
|
+
return {
|
|
8426
|
+
key: 'Key',
|
|
8427
|
+
value: 'Value',
|
|
8428
|
+
};
|
|
8429
|
+
}
|
|
8430
|
+
static types() {
|
|
8431
|
+
return {
|
|
8432
|
+
key: 'string',
|
|
8433
|
+
value: 'string',
|
|
8434
|
+
};
|
|
8435
|
+
}
|
|
8436
|
+
}
|
|
8437
|
+
exports.DescribeScalingGroupsRequestTags = DescribeScalingGroupsRequestTags;
|
|
8434
8438
|
class DescribeScalingGroupsResponseBodyScalingGroupsAlbServerGroups extends $tea.Model {
|
|
8435
8439
|
constructor(map) {
|
|
8436
8440
|
super(map);
|
|
@@ -12561,6 +12565,9 @@ class Client extends openapi_client_1.default {
|
|
|
12561
12565
|
if (!tea_util_1.default.isUnset(request.scalingGroupNames)) {
|
|
12562
12566
|
query["ScalingGroupNames"] = request.scalingGroupNames;
|
|
12563
12567
|
}
|
|
12568
|
+
if (!tea_util_1.default.isUnset(request.tags)) {
|
|
12569
|
+
query["Tags"] = request.tags;
|
|
12570
|
+
}
|
|
12564
12571
|
let req = new $OpenApi.OpenApiRequest({
|
|
12565
12572
|
query: openapi_util_1.default.query(query),
|
|
12566
12573
|
});
|