@alicloud/ess20220222 1.1.2 → 1.2.0
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 +833 -79
- package/dist/client.js +1683 -345
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +2240 -497
package/src/client.ts
CHANGED
|
@@ -8,6 +8,84 @@ import OpenApiUtil from '@alicloud/openapi-util';
|
|
|
8
8
|
import EndpointUtil from '@alicloud/endpoint-util';
|
|
9
9
|
import * as $tea from '@alicloud/tea-typescript';
|
|
10
10
|
|
|
11
|
+
export class ApplyEciScalingConfigurationRequest extends $tea.Model {
|
|
12
|
+
content?: string;
|
|
13
|
+
format?: string;
|
|
14
|
+
regionId?: string;
|
|
15
|
+
scalingConfigurationId?: string;
|
|
16
|
+
scalingGroupId?: string;
|
|
17
|
+
static names(): { [key: string]: string } {
|
|
18
|
+
return {
|
|
19
|
+
content: 'Content',
|
|
20
|
+
format: 'Format',
|
|
21
|
+
regionId: 'RegionId',
|
|
22
|
+
scalingConfigurationId: 'ScalingConfigurationId',
|
|
23
|
+
scalingGroupId: 'ScalingGroupId',
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
static types(): { [key: string]: any } {
|
|
28
|
+
return {
|
|
29
|
+
content: 'string',
|
|
30
|
+
format: 'string',
|
|
31
|
+
regionId: 'string',
|
|
32
|
+
scalingConfigurationId: 'string',
|
|
33
|
+
scalingGroupId: 'string',
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
constructor(map?: { [key: string]: any }) {
|
|
38
|
+
super(map);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export class ApplyEciScalingConfigurationResponseBody extends $tea.Model {
|
|
43
|
+
requestId?: string;
|
|
44
|
+
scalingConfigurationId?: string;
|
|
45
|
+
static names(): { [key: string]: string } {
|
|
46
|
+
return {
|
|
47
|
+
requestId: 'RequestId',
|
|
48
|
+
scalingConfigurationId: 'ScalingConfigurationId',
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
static types(): { [key: string]: any } {
|
|
53
|
+
return {
|
|
54
|
+
requestId: 'string',
|
|
55
|
+
scalingConfigurationId: 'string',
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
constructor(map?: { [key: string]: any }) {
|
|
60
|
+
super(map);
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export class ApplyEciScalingConfigurationResponse extends $tea.Model {
|
|
65
|
+
headers?: { [key: string]: string };
|
|
66
|
+
statusCode?: number;
|
|
67
|
+
body?: ApplyEciScalingConfigurationResponseBody;
|
|
68
|
+
static names(): { [key: string]: string } {
|
|
69
|
+
return {
|
|
70
|
+
headers: 'headers',
|
|
71
|
+
statusCode: 'statusCode',
|
|
72
|
+
body: 'body',
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
static types(): { [key: string]: any } {
|
|
77
|
+
return {
|
|
78
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
79
|
+
statusCode: 'number',
|
|
80
|
+
body: ApplyEciScalingConfigurationResponseBody,
|
|
81
|
+
};
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
constructor(map?: { [key: string]: any }) {
|
|
85
|
+
super(map);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
|
|
11
89
|
export class ApplyScalingGroupRequest extends $tea.Model {
|
|
12
90
|
content?: string;
|
|
13
91
|
format?: string;
|
|
@@ -2895,6 +2973,84 @@ export class DescribeAlarmsResponse extends $tea.Model {
|
|
|
2895
2973
|
}
|
|
2896
2974
|
}
|
|
2897
2975
|
|
|
2976
|
+
export class DescribeEciScalingConfigurationDetailRequest extends $tea.Model {
|
|
2977
|
+
outputFormat?: string;
|
|
2978
|
+
regionId?: string;
|
|
2979
|
+
scalingConfigurationId?: string;
|
|
2980
|
+
scalingGroupId?: string;
|
|
2981
|
+
static names(): { [key: string]: string } {
|
|
2982
|
+
return {
|
|
2983
|
+
outputFormat: 'OutputFormat',
|
|
2984
|
+
regionId: 'RegionId',
|
|
2985
|
+
scalingConfigurationId: 'ScalingConfigurationId',
|
|
2986
|
+
scalingGroupId: 'ScalingGroupId',
|
|
2987
|
+
};
|
|
2988
|
+
}
|
|
2989
|
+
|
|
2990
|
+
static types(): { [key: string]: any } {
|
|
2991
|
+
return {
|
|
2992
|
+
outputFormat: 'string',
|
|
2993
|
+
regionId: 'string',
|
|
2994
|
+
scalingConfigurationId: 'string',
|
|
2995
|
+
scalingGroupId: 'string',
|
|
2996
|
+
};
|
|
2997
|
+
}
|
|
2998
|
+
|
|
2999
|
+
constructor(map?: { [key: string]: any }) {
|
|
3000
|
+
super(map);
|
|
3001
|
+
}
|
|
3002
|
+
}
|
|
3003
|
+
|
|
3004
|
+
export class DescribeEciScalingConfigurationDetailResponseBody extends $tea.Model {
|
|
3005
|
+
output?: string;
|
|
3006
|
+
requestId?: string;
|
|
3007
|
+
scalingConfiguration?: DescribeEciScalingConfigurationDetailResponseBodyScalingConfiguration;
|
|
3008
|
+
static names(): { [key: string]: string } {
|
|
3009
|
+
return {
|
|
3010
|
+
output: 'Output',
|
|
3011
|
+
requestId: 'RequestId',
|
|
3012
|
+
scalingConfiguration: 'ScalingConfiguration',
|
|
3013
|
+
};
|
|
3014
|
+
}
|
|
3015
|
+
|
|
3016
|
+
static types(): { [key: string]: any } {
|
|
3017
|
+
return {
|
|
3018
|
+
output: 'string',
|
|
3019
|
+
requestId: 'string',
|
|
3020
|
+
scalingConfiguration: DescribeEciScalingConfigurationDetailResponseBodyScalingConfiguration,
|
|
3021
|
+
};
|
|
3022
|
+
}
|
|
3023
|
+
|
|
3024
|
+
constructor(map?: { [key: string]: any }) {
|
|
3025
|
+
super(map);
|
|
3026
|
+
}
|
|
3027
|
+
}
|
|
3028
|
+
|
|
3029
|
+
export class DescribeEciScalingConfigurationDetailResponse extends $tea.Model {
|
|
3030
|
+
headers?: { [key: string]: string };
|
|
3031
|
+
statusCode?: number;
|
|
3032
|
+
body?: DescribeEciScalingConfigurationDetailResponseBody;
|
|
3033
|
+
static names(): { [key: string]: string } {
|
|
3034
|
+
return {
|
|
3035
|
+
headers: 'headers',
|
|
3036
|
+
statusCode: 'statusCode',
|
|
3037
|
+
body: 'body',
|
|
3038
|
+
};
|
|
3039
|
+
}
|
|
3040
|
+
|
|
3041
|
+
static types(): { [key: string]: any } {
|
|
3042
|
+
return {
|
|
3043
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3044
|
+
statusCode: 'number',
|
|
3045
|
+
body: DescribeEciScalingConfigurationDetailResponseBody,
|
|
3046
|
+
};
|
|
3047
|
+
}
|
|
3048
|
+
|
|
3049
|
+
constructor(map?: { [key: string]: any }) {
|
|
3050
|
+
super(map);
|
|
3051
|
+
}
|
|
3052
|
+
}
|
|
3053
|
+
|
|
2898
3054
|
export class DescribeEciScalingConfigurationsRequest extends $tea.Model {
|
|
2899
3055
|
ownerAccount?: string;
|
|
2900
3056
|
ownerId?: number;
|
|
@@ -3798,6 +3954,84 @@ export class DescribeScalingConfigurationsResponse extends $tea.Model {
|
|
|
3798
3954
|
}
|
|
3799
3955
|
}
|
|
3800
3956
|
|
|
3957
|
+
export class DescribeScalingGroupDetailRequest extends $tea.Model {
|
|
3958
|
+
outputFormat?: string;
|
|
3959
|
+
ownerId?: number;
|
|
3960
|
+
regionId?: string;
|
|
3961
|
+
scalingGroupId?: string;
|
|
3962
|
+
static names(): { [key: string]: string } {
|
|
3963
|
+
return {
|
|
3964
|
+
outputFormat: 'OutputFormat',
|
|
3965
|
+
ownerId: 'OwnerId',
|
|
3966
|
+
regionId: 'RegionId',
|
|
3967
|
+
scalingGroupId: 'ScalingGroupId',
|
|
3968
|
+
};
|
|
3969
|
+
}
|
|
3970
|
+
|
|
3971
|
+
static types(): { [key: string]: any } {
|
|
3972
|
+
return {
|
|
3973
|
+
outputFormat: 'string',
|
|
3974
|
+
ownerId: 'number',
|
|
3975
|
+
regionId: 'string',
|
|
3976
|
+
scalingGroupId: 'string',
|
|
3977
|
+
};
|
|
3978
|
+
}
|
|
3979
|
+
|
|
3980
|
+
constructor(map?: { [key: string]: any }) {
|
|
3981
|
+
super(map);
|
|
3982
|
+
}
|
|
3983
|
+
}
|
|
3984
|
+
|
|
3985
|
+
export class DescribeScalingGroupDetailResponseBody extends $tea.Model {
|
|
3986
|
+
output?: string;
|
|
3987
|
+
requestId?: string;
|
|
3988
|
+
scalingGroup?: DescribeScalingGroupDetailResponseBodyScalingGroup;
|
|
3989
|
+
static names(): { [key: string]: string } {
|
|
3990
|
+
return {
|
|
3991
|
+
output: 'Output',
|
|
3992
|
+
requestId: 'RequestId',
|
|
3993
|
+
scalingGroup: 'ScalingGroup',
|
|
3994
|
+
};
|
|
3995
|
+
}
|
|
3996
|
+
|
|
3997
|
+
static types(): { [key: string]: any } {
|
|
3998
|
+
return {
|
|
3999
|
+
output: 'string',
|
|
4000
|
+
requestId: 'string',
|
|
4001
|
+
scalingGroup: DescribeScalingGroupDetailResponseBodyScalingGroup,
|
|
4002
|
+
};
|
|
4003
|
+
}
|
|
4004
|
+
|
|
4005
|
+
constructor(map?: { [key: string]: any }) {
|
|
4006
|
+
super(map);
|
|
4007
|
+
}
|
|
4008
|
+
}
|
|
4009
|
+
|
|
4010
|
+
export class DescribeScalingGroupDetailResponse extends $tea.Model {
|
|
4011
|
+
headers?: { [key: string]: string };
|
|
4012
|
+
statusCode?: number;
|
|
4013
|
+
body?: DescribeScalingGroupDetailResponseBody;
|
|
4014
|
+
static names(): { [key: string]: string } {
|
|
4015
|
+
return {
|
|
4016
|
+
headers: 'headers',
|
|
4017
|
+
statusCode: 'statusCode',
|
|
4018
|
+
body: 'body',
|
|
4019
|
+
};
|
|
4020
|
+
}
|
|
4021
|
+
|
|
4022
|
+
static types(): { [key: string]: any } {
|
|
4023
|
+
return {
|
|
4024
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4025
|
+
statusCode: 'number',
|
|
4026
|
+
body: DescribeScalingGroupDetailResponseBody,
|
|
4027
|
+
};
|
|
4028
|
+
}
|
|
4029
|
+
|
|
4030
|
+
constructor(map?: { [key: string]: any }) {
|
|
4031
|
+
super(map);
|
|
4032
|
+
}
|
|
4033
|
+
}
|
|
4034
|
+
|
|
3801
4035
|
export class DescribeScalingGroupsRequest extends $tea.Model {
|
|
3802
4036
|
groupType?: string;
|
|
3803
4037
|
ownerAccount?: string;
|
|
@@ -5922,31 +6156,17 @@ export class ModifyEciScalingConfigurationResponse extends $tea.Model {
|
|
|
5922
6156
|
}
|
|
5923
6157
|
}
|
|
5924
6158
|
|
|
5925
|
-
export class
|
|
5926
|
-
|
|
5927
|
-
|
|
5928
|
-
lifecycleHookId?: string;
|
|
5929
|
-
lifecycleHookName?: string;
|
|
5930
|
-
lifecycleHookStatus?: string;
|
|
5931
|
-
lifecycleTransition?: string;
|
|
5932
|
-
notificationArn?: string;
|
|
5933
|
-
notificationMetadata?: string;
|
|
5934
|
-
ownerAccount?: string;
|
|
6159
|
+
export class ModifyInstanceAttributeRequest extends $tea.Model {
|
|
6160
|
+
entrusted?: boolean;
|
|
6161
|
+
instanceId?: string;
|
|
5935
6162
|
ownerId?: number;
|
|
5936
6163
|
regionId?: string;
|
|
5937
6164
|
resourceOwnerAccount?: string;
|
|
5938
6165
|
scalingGroupId?: string;
|
|
5939
6166
|
static names(): { [key: string]: string } {
|
|
5940
6167
|
return {
|
|
5941
|
-
|
|
5942
|
-
|
|
5943
|
-
lifecycleHookId: 'LifecycleHookId',
|
|
5944
|
-
lifecycleHookName: 'LifecycleHookName',
|
|
5945
|
-
lifecycleHookStatus: 'LifecycleHookStatus',
|
|
5946
|
-
lifecycleTransition: 'LifecycleTransition',
|
|
5947
|
-
notificationArn: 'NotificationArn',
|
|
5948
|
-
notificationMetadata: 'NotificationMetadata',
|
|
5949
|
-
ownerAccount: 'OwnerAccount',
|
|
6168
|
+
entrusted: 'Entrusted',
|
|
6169
|
+
instanceId: 'InstanceId',
|
|
5950
6170
|
ownerId: 'OwnerId',
|
|
5951
6171
|
regionId: 'RegionId',
|
|
5952
6172
|
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
@@ -5956,15 +6176,8 @@ export class ModifyLifecycleHookRequest extends $tea.Model {
|
|
|
5956
6176
|
|
|
5957
6177
|
static types(): { [key: string]: any } {
|
|
5958
6178
|
return {
|
|
5959
|
-
|
|
5960
|
-
|
|
5961
|
-
lifecycleHookId: 'string',
|
|
5962
|
-
lifecycleHookName: 'string',
|
|
5963
|
-
lifecycleHookStatus: 'string',
|
|
5964
|
-
lifecycleTransition: 'string',
|
|
5965
|
-
notificationArn: 'string',
|
|
5966
|
-
notificationMetadata: 'string',
|
|
5967
|
-
ownerAccount: 'string',
|
|
6179
|
+
entrusted: 'boolean',
|
|
6180
|
+
instanceId: 'string',
|
|
5968
6181
|
ownerId: 'number',
|
|
5969
6182
|
regionId: 'string',
|
|
5970
6183
|
resourceOwnerAccount: 'string',
|
|
@@ -5977,7 +6190,7 @@ export class ModifyLifecycleHookRequest extends $tea.Model {
|
|
|
5977
6190
|
}
|
|
5978
6191
|
}
|
|
5979
6192
|
|
|
5980
|
-
export class
|
|
6193
|
+
export class ModifyInstanceAttributeResponseBody extends $tea.Model {
|
|
5981
6194
|
requestId?: string;
|
|
5982
6195
|
static names(): { [key: string]: string } {
|
|
5983
6196
|
return {
|
|
@@ -5996,10 +6209,10 @@ export class ModifyLifecycleHookResponseBody extends $tea.Model {
|
|
|
5996
6209
|
}
|
|
5997
6210
|
}
|
|
5998
6211
|
|
|
5999
|
-
export class
|
|
6212
|
+
export class ModifyInstanceAttributeResponse extends $tea.Model {
|
|
6000
6213
|
headers?: { [key: string]: string };
|
|
6001
6214
|
statusCode?: number;
|
|
6002
|
-
body?:
|
|
6215
|
+
body?: ModifyInstanceAttributeResponseBody;
|
|
6003
6216
|
static names(): { [key: string]: string } {
|
|
6004
6217
|
return {
|
|
6005
6218
|
headers: 'headers',
|
|
@@ -6012,7 +6225,7 @@ export class ModifyLifecycleHookResponse extends $tea.Model {
|
|
|
6012
6225
|
return {
|
|
6013
6226
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6014
6227
|
statusCode: 'number',
|
|
6015
|
-
body:
|
|
6228
|
+
body: ModifyInstanceAttributeResponseBody,
|
|
6016
6229
|
};
|
|
6017
6230
|
}
|
|
6018
6231
|
|
|
@@ -6021,9 +6234,108 @@ export class ModifyLifecycleHookResponse extends $tea.Model {
|
|
|
6021
6234
|
}
|
|
6022
6235
|
}
|
|
6023
6236
|
|
|
6024
|
-
export class
|
|
6237
|
+
export class ModifyLifecycleHookRequest extends $tea.Model {
|
|
6238
|
+
defaultResult?: string;
|
|
6239
|
+
heartbeatTimeout?: number;
|
|
6240
|
+
lifecycleHookId?: string;
|
|
6241
|
+
lifecycleHookName?: string;
|
|
6242
|
+
lifecycleHookStatus?: string;
|
|
6243
|
+
lifecycleTransition?: string;
|
|
6025
6244
|
notificationArn?: string;
|
|
6026
|
-
|
|
6245
|
+
notificationMetadata?: string;
|
|
6246
|
+
ownerAccount?: string;
|
|
6247
|
+
ownerId?: number;
|
|
6248
|
+
regionId?: string;
|
|
6249
|
+
resourceOwnerAccount?: string;
|
|
6250
|
+
scalingGroupId?: string;
|
|
6251
|
+
static names(): { [key: string]: string } {
|
|
6252
|
+
return {
|
|
6253
|
+
defaultResult: 'DefaultResult',
|
|
6254
|
+
heartbeatTimeout: 'HeartbeatTimeout',
|
|
6255
|
+
lifecycleHookId: 'LifecycleHookId',
|
|
6256
|
+
lifecycleHookName: 'LifecycleHookName',
|
|
6257
|
+
lifecycleHookStatus: 'LifecycleHookStatus',
|
|
6258
|
+
lifecycleTransition: 'LifecycleTransition',
|
|
6259
|
+
notificationArn: 'NotificationArn',
|
|
6260
|
+
notificationMetadata: 'NotificationMetadata',
|
|
6261
|
+
ownerAccount: 'OwnerAccount',
|
|
6262
|
+
ownerId: 'OwnerId',
|
|
6263
|
+
regionId: 'RegionId',
|
|
6264
|
+
resourceOwnerAccount: 'ResourceOwnerAccount',
|
|
6265
|
+
scalingGroupId: 'ScalingGroupId',
|
|
6266
|
+
};
|
|
6267
|
+
}
|
|
6268
|
+
|
|
6269
|
+
static types(): { [key: string]: any } {
|
|
6270
|
+
return {
|
|
6271
|
+
defaultResult: 'string',
|
|
6272
|
+
heartbeatTimeout: 'number',
|
|
6273
|
+
lifecycleHookId: 'string',
|
|
6274
|
+
lifecycleHookName: 'string',
|
|
6275
|
+
lifecycleHookStatus: 'string',
|
|
6276
|
+
lifecycleTransition: 'string',
|
|
6277
|
+
notificationArn: 'string',
|
|
6278
|
+
notificationMetadata: 'string',
|
|
6279
|
+
ownerAccount: 'string',
|
|
6280
|
+
ownerId: 'number',
|
|
6281
|
+
regionId: 'string',
|
|
6282
|
+
resourceOwnerAccount: 'string',
|
|
6283
|
+
scalingGroupId: 'string',
|
|
6284
|
+
};
|
|
6285
|
+
}
|
|
6286
|
+
|
|
6287
|
+
constructor(map?: { [key: string]: any }) {
|
|
6288
|
+
super(map);
|
|
6289
|
+
}
|
|
6290
|
+
}
|
|
6291
|
+
|
|
6292
|
+
export class ModifyLifecycleHookResponseBody extends $tea.Model {
|
|
6293
|
+
requestId?: string;
|
|
6294
|
+
static names(): { [key: string]: string } {
|
|
6295
|
+
return {
|
|
6296
|
+
requestId: 'RequestId',
|
|
6297
|
+
};
|
|
6298
|
+
}
|
|
6299
|
+
|
|
6300
|
+
static types(): { [key: string]: any } {
|
|
6301
|
+
return {
|
|
6302
|
+
requestId: 'string',
|
|
6303
|
+
};
|
|
6304
|
+
}
|
|
6305
|
+
|
|
6306
|
+
constructor(map?: { [key: string]: any }) {
|
|
6307
|
+
super(map);
|
|
6308
|
+
}
|
|
6309
|
+
}
|
|
6310
|
+
|
|
6311
|
+
export class ModifyLifecycleHookResponse extends $tea.Model {
|
|
6312
|
+
headers?: { [key: string]: string };
|
|
6313
|
+
statusCode?: number;
|
|
6314
|
+
body?: ModifyLifecycleHookResponseBody;
|
|
6315
|
+
static names(): { [key: string]: string } {
|
|
6316
|
+
return {
|
|
6317
|
+
headers: 'headers',
|
|
6318
|
+
statusCode: 'statusCode',
|
|
6319
|
+
body: 'body',
|
|
6320
|
+
};
|
|
6321
|
+
}
|
|
6322
|
+
|
|
6323
|
+
static types(): { [key: string]: any } {
|
|
6324
|
+
return {
|
|
6325
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
6326
|
+
statusCode: 'number',
|
|
6327
|
+
body: ModifyLifecycleHookResponseBody,
|
|
6328
|
+
};
|
|
6329
|
+
}
|
|
6330
|
+
|
|
6331
|
+
constructor(map?: { [key: string]: any }) {
|
|
6332
|
+
super(map);
|
|
6333
|
+
}
|
|
6334
|
+
}
|
|
6335
|
+
|
|
6336
|
+
export class ModifyNotificationConfigurationRequest extends $tea.Model {
|
|
6337
|
+
notificationArn?: string;
|
|
6338
|
+
notificationTypes?: string[];
|
|
6027
6339
|
ownerId?: number;
|
|
6028
6340
|
regionId?: string;
|
|
6029
6341
|
resourceOwnerAccount?: string;
|
|
@@ -6509,6 +6821,7 @@ export class ModifyScalingGroupRequest extends $tea.Model {
|
|
|
6509
6821
|
resourceOwnerId?: number;
|
|
6510
6822
|
scalingGroupId?: string;
|
|
6511
6823
|
scalingGroupName?: string;
|
|
6824
|
+
scalingPolicy?: string;
|
|
6512
6825
|
spotAllocationStrategy?: string;
|
|
6513
6826
|
spotInstancePools?: number;
|
|
6514
6827
|
spotInstanceRemedy?: boolean;
|
|
@@ -6542,6 +6855,7 @@ export class ModifyScalingGroupRequest extends $tea.Model {
|
|
|
6542
6855
|
resourceOwnerId: 'ResourceOwnerId',
|
|
6543
6856
|
scalingGroupId: 'ScalingGroupId',
|
|
6544
6857
|
scalingGroupName: 'ScalingGroupName',
|
|
6858
|
+
scalingPolicy: 'ScalingPolicy',
|
|
6545
6859
|
spotAllocationStrategy: 'SpotAllocationStrategy',
|
|
6546
6860
|
spotInstancePools: 'SpotInstancePools',
|
|
6547
6861
|
spotInstanceRemedy: 'SpotInstanceRemedy',
|
|
@@ -6578,6 +6892,7 @@ export class ModifyScalingGroupRequest extends $tea.Model {
|
|
|
6578
6892
|
resourceOwnerId: 'number',
|
|
6579
6893
|
scalingGroupId: 'string',
|
|
6580
6894
|
scalingGroupName: 'string',
|
|
6895
|
+
scalingPolicy: 'string',
|
|
6581
6896
|
spotAllocationStrategy: 'string',
|
|
6582
6897
|
spotInstancePools: 'number',
|
|
6583
6898
|
spotInstanceRemedy: 'boolean',
|
|
@@ -7211,9 +7526,11 @@ export class ResumeProcessesResponse extends $tea.Model {
|
|
|
7211
7526
|
}
|
|
7212
7527
|
|
|
7213
7528
|
export class ScaleWithAdjustmentRequest extends $tea.Model {
|
|
7529
|
+
activityMetadata?: string;
|
|
7214
7530
|
adjustmentType?: string;
|
|
7215
7531
|
adjustmentValue?: number;
|
|
7216
7532
|
clientToken?: string;
|
|
7533
|
+
lifecycleHookContext?: ScaleWithAdjustmentRequestLifecycleHookContext;
|
|
7217
7534
|
minAdjustmentMagnitude?: number;
|
|
7218
7535
|
overrides?: ScaleWithAdjustmentRequestOverrides;
|
|
7219
7536
|
ownerId?: number;
|
|
@@ -7222,9 +7539,11 @@ export class ScaleWithAdjustmentRequest extends $tea.Model {
|
|
|
7222
7539
|
syncActivity?: boolean;
|
|
7223
7540
|
static names(): { [key: string]: string } {
|
|
7224
7541
|
return {
|
|
7542
|
+
activityMetadata: 'ActivityMetadata',
|
|
7225
7543
|
adjustmentType: 'AdjustmentType',
|
|
7226
7544
|
adjustmentValue: 'AdjustmentValue',
|
|
7227
7545
|
clientToken: 'ClientToken',
|
|
7546
|
+
lifecycleHookContext: 'LifecycleHookContext',
|
|
7228
7547
|
minAdjustmentMagnitude: 'MinAdjustmentMagnitude',
|
|
7229
7548
|
overrides: 'Overrides',
|
|
7230
7549
|
ownerId: 'OwnerId',
|
|
@@ -7236,9 +7555,11 @@ export class ScaleWithAdjustmentRequest extends $tea.Model {
|
|
|
7236
7555
|
|
|
7237
7556
|
static types(): { [key: string]: any } {
|
|
7238
7557
|
return {
|
|
7558
|
+
activityMetadata: 'string',
|
|
7239
7559
|
adjustmentType: 'string',
|
|
7240
7560
|
adjustmentValue: 'number',
|
|
7241
7561
|
clientToken: 'string',
|
|
7562
|
+
lifecycleHookContext: ScaleWithAdjustmentRequestLifecycleHookContext,
|
|
7242
7563
|
minAdjustmentMagnitude: 'number',
|
|
7243
7564
|
overrides: ScaleWithAdjustmentRequestOverrides,
|
|
7244
7565
|
ownerId: 'number',
|
|
@@ -7254,9 +7575,11 @@ export class ScaleWithAdjustmentRequest extends $tea.Model {
|
|
|
7254
7575
|
}
|
|
7255
7576
|
|
|
7256
7577
|
export class ScaleWithAdjustmentShrinkRequest extends $tea.Model {
|
|
7578
|
+
activityMetadata?: string;
|
|
7257
7579
|
adjustmentType?: string;
|
|
7258
7580
|
adjustmentValue?: number;
|
|
7259
7581
|
clientToken?: string;
|
|
7582
|
+
lifecycleHookContextShrink?: string;
|
|
7260
7583
|
minAdjustmentMagnitude?: number;
|
|
7261
7584
|
overridesShrink?: string;
|
|
7262
7585
|
ownerId?: number;
|
|
@@ -7265,9 +7588,11 @@ export class ScaleWithAdjustmentShrinkRequest extends $tea.Model {
|
|
|
7265
7588
|
syncActivity?: boolean;
|
|
7266
7589
|
static names(): { [key: string]: string } {
|
|
7267
7590
|
return {
|
|
7591
|
+
activityMetadata: 'ActivityMetadata',
|
|
7268
7592
|
adjustmentType: 'AdjustmentType',
|
|
7269
7593
|
adjustmentValue: 'AdjustmentValue',
|
|
7270
7594
|
clientToken: 'ClientToken',
|
|
7595
|
+
lifecycleHookContextShrink: 'LifecycleHookContext',
|
|
7271
7596
|
minAdjustmentMagnitude: 'MinAdjustmentMagnitude',
|
|
7272
7597
|
overridesShrink: 'Overrides',
|
|
7273
7598
|
ownerId: 'OwnerId',
|
|
@@ -7279,9 +7604,11 @@ export class ScaleWithAdjustmentShrinkRequest extends $tea.Model {
|
|
|
7279
7604
|
|
|
7280
7605
|
static types(): { [key: string]: any } {
|
|
7281
7606
|
return {
|
|
7607
|
+
activityMetadata: 'string',
|
|
7282
7608
|
adjustmentType: 'string',
|
|
7283
7609
|
adjustmentValue: 'number',
|
|
7284
7610
|
clientToken: 'string',
|
|
7611
|
+
lifecycleHookContextShrink: 'string',
|
|
7285
7612
|
minAdjustmentMagnitude: 'number',
|
|
7286
7613
|
overridesShrink: 'string',
|
|
7287
7614
|
ownerId: 'number',
|
|
@@ -9950,7 +10277,7 @@ export class DescribeAlarmsResponseBodyAlarmList extends $tea.Model {
|
|
|
9950
10277
|
}
|
|
9951
10278
|
}
|
|
9952
10279
|
|
|
9953
|
-
export class
|
|
10280
|
+
export class DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationAcrRegistryInfos extends $tea.Model {
|
|
9954
10281
|
domains?: string[];
|
|
9955
10282
|
instanceId?: string;
|
|
9956
10283
|
instanceName?: string;
|
|
@@ -9978,7 +10305,7 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsAc
|
|
|
9978
10305
|
}
|
|
9979
10306
|
}
|
|
9980
10307
|
|
|
9981
|
-
export class
|
|
10308
|
+
export class DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationContainersEnvironmentVars extends $tea.Model {
|
|
9982
10309
|
fieldRefFieldPath?: string;
|
|
9983
10310
|
key?: string;
|
|
9984
10311
|
value?: string;
|
|
@@ -10003,7 +10330,7 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsCo
|
|
|
10003
10330
|
}
|
|
10004
10331
|
}
|
|
10005
10332
|
|
|
10006
|
-
export class
|
|
10333
|
+
export class DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationContainersPorts extends $tea.Model {
|
|
10007
10334
|
port?: number;
|
|
10008
10335
|
protocol?: string;
|
|
10009
10336
|
static names(): { [key: string]: string } {
|
|
@@ -10025,7 +10352,7 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsCo
|
|
|
10025
10352
|
}
|
|
10026
10353
|
}
|
|
10027
10354
|
|
|
10028
|
-
export class
|
|
10355
|
+
export class DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationContainersVolumeMounts extends $tea.Model {
|
|
10029
10356
|
mountPath?: string;
|
|
10030
10357
|
mountPropagation?: string;
|
|
10031
10358
|
name?: string;
|
|
@@ -10056,11 +10383,11 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsCo
|
|
|
10056
10383
|
}
|
|
10057
10384
|
}
|
|
10058
10385
|
|
|
10059
|
-
export class
|
|
10386
|
+
export class DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationContainers extends $tea.Model {
|
|
10060
10387
|
args?: string[];
|
|
10061
10388
|
commands?: string[];
|
|
10062
10389
|
cpu?: number;
|
|
10063
|
-
environmentVars?:
|
|
10390
|
+
environmentVars?: DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationContainersEnvironmentVars[];
|
|
10064
10391
|
gpu?: number;
|
|
10065
10392
|
image?: string;
|
|
10066
10393
|
imagePullPolicy?: string;
|
|
@@ -10090,7 +10417,7 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsCo
|
|
|
10090
10417
|
livenessProbeTimeoutSeconds?: number;
|
|
10091
10418
|
memory?: number;
|
|
10092
10419
|
name?: string;
|
|
10093
|
-
ports?:
|
|
10420
|
+
ports?: DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationContainersPorts[];
|
|
10094
10421
|
readinessProbeExecCommands?: string[];
|
|
10095
10422
|
readinessProbeFailureThreshold?: number;
|
|
10096
10423
|
readinessProbeHttpGetPath?: string;
|
|
@@ -10107,7 +10434,7 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsCo
|
|
|
10107
10434
|
stdin?: boolean;
|
|
10108
10435
|
stdinOnce?: boolean;
|
|
10109
10436
|
tty?: boolean;
|
|
10110
|
-
volumeMounts?:
|
|
10437
|
+
volumeMounts?: DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationContainersVolumeMounts[];
|
|
10111
10438
|
workingDir?: string;
|
|
10112
10439
|
static names(): { [key: string]: string } {
|
|
10113
10440
|
return {
|
|
@@ -10171,7 +10498,7 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsCo
|
|
|
10171
10498
|
args: { 'type': 'array', 'itemType': 'string' },
|
|
10172
10499
|
commands: { 'type': 'array', 'itemType': 'string' },
|
|
10173
10500
|
cpu: 'number',
|
|
10174
|
-
environmentVars: { 'type': 'array', 'itemType':
|
|
10501
|
+
environmentVars: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationContainersEnvironmentVars },
|
|
10175
10502
|
gpu: 'number',
|
|
10176
10503
|
image: 'string',
|
|
10177
10504
|
imagePullPolicy: 'string',
|
|
@@ -10201,7 +10528,7 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsCo
|
|
|
10201
10528
|
livenessProbeTimeoutSeconds: 'number',
|
|
10202
10529
|
memory: 'number',
|
|
10203
10530
|
name: 'string',
|
|
10204
|
-
ports: { 'type': 'array', 'itemType':
|
|
10531
|
+
ports: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationContainersPorts },
|
|
10205
10532
|
readinessProbeExecCommands: { 'type': 'array', 'itemType': 'string' },
|
|
10206
10533
|
readinessProbeFailureThreshold: 'number',
|
|
10207
10534
|
readinessProbeHttpGetPath: 'string',
|
|
@@ -10218,7 +10545,7 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsCo
|
|
|
10218
10545
|
stdin: 'boolean',
|
|
10219
10546
|
stdinOnce: 'boolean',
|
|
10220
10547
|
tty: 'boolean',
|
|
10221
|
-
volumeMounts: { 'type': 'array', 'itemType':
|
|
10548
|
+
volumeMounts: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationContainersVolumeMounts },
|
|
10222
10549
|
workingDir: 'string',
|
|
10223
10550
|
};
|
|
10224
10551
|
}
|
|
@@ -10228,7 +10555,7 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsCo
|
|
|
10228
10555
|
}
|
|
10229
10556
|
}
|
|
10230
10557
|
|
|
10231
|
-
export class
|
|
10558
|
+
export class DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationDnsConfigOptions extends $tea.Model {
|
|
10232
10559
|
name?: string;
|
|
10233
10560
|
value?: string;
|
|
10234
10561
|
static names(): { [key: string]: string } {
|
|
@@ -10250,7 +10577,7 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsDn
|
|
|
10250
10577
|
}
|
|
10251
10578
|
}
|
|
10252
10579
|
|
|
10253
|
-
export class
|
|
10580
|
+
export class DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationHostAliases extends $tea.Model {
|
|
10254
10581
|
hostnames?: string[];
|
|
10255
10582
|
ip?: string;
|
|
10256
10583
|
static names(): { [key: string]: string } {
|
|
@@ -10272,7 +10599,7 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsHo
|
|
|
10272
10599
|
}
|
|
10273
10600
|
}
|
|
10274
10601
|
|
|
10275
|
-
export class
|
|
10602
|
+
export class DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationImageRegistryCredentials extends $tea.Model {
|
|
10276
10603
|
password?: string;
|
|
10277
10604
|
server?: string;
|
|
10278
10605
|
userName?: string;
|
|
@@ -10297,7 +10624,7 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsIm
|
|
|
10297
10624
|
}
|
|
10298
10625
|
}
|
|
10299
10626
|
|
|
10300
|
-
export class
|
|
10627
|
+
export class DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationInitContainersInitContainerEnvironmentVars extends $tea.Model {
|
|
10301
10628
|
fieldRefFieldPath?: string;
|
|
10302
10629
|
key?: string;
|
|
10303
10630
|
value?: string;
|
|
@@ -10322,7 +10649,7 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsIn
|
|
|
10322
10649
|
}
|
|
10323
10650
|
}
|
|
10324
10651
|
|
|
10325
|
-
export class
|
|
10652
|
+
export class DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationInitContainersInitContainerPorts extends $tea.Model {
|
|
10326
10653
|
port?: number;
|
|
10327
10654
|
protocol?: string;
|
|
10328
10655
|
static names(): { [key: string]: string } {
|
|
@@ -10344,7 +10671,7 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsIn
|
|
|
10344
10671
|
}
|
|
10345
10672
|
}
|
|
10346
10673
|
|
|
10347
|
-
export class
|
|
10674
|
+
export class DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationInitContainersInitContainerVolumeMounts extends $tea.Model {
|
|
10348
10675
|
mountPath?: string;
|
|
10349
10676
|
mountPropagation?: string;
|
|
10350
10677
|
name?: string;
|
|
@@ -10375,16 +10702,16 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsIn
|
|
|
10375
10702
|
}
|
|
10376
10703
|
}
|
|
10377
10704
|
|
|
10378
|
-
export class
|
|
10705
|
+
export class DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationInitContainers extends $tea.Model {
|
|
10379
10706
|
cpu?: number;
|
|
10380
10707
|
gpu?: number;
|
|
10381
10708
|
image?: string;
|
|
10382
10709
|
imagePullPolicy?: string;
|
|
10383
10710
|
initContainerArgs?: string[];
|
|
10384
10711
|
initContainerCommands?: string[];
|
|
10385
|
-
initContainerEnvironmentVars?:
|
|
10386
|
-
initContainerPorts?:
|
|
10387
|
-
initContainerVolumeMounts?:
|
|
10712
|
+
initContainerEnvironmentVars?: DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationInitContainersInitContainerEnvironmentVars[];
|
|
10713
|
+
initContainerPorts?: DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationInitContainersInitContainerPorts[];
|
|
10714
|
+
initContainerVolumeMounts?: DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationInitContainersInitContainerVolumeMounts[];
|
|
10388
10715
|
memory?: number;
|
|
10389
10716
|
name?: string;
|
|
10390
10717
|
securityContextCapabilityAdds?: string[];
|
|
@@ -10419,9 +10746,9 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsIn
|
|
|
10419
10746
|
imagePullPolicy: 'string',
|
|
10420
10747
|
initContainerArgs: { 'type': 'array', 'itemType': 'string' },
|
|
10421
10748
|
initContainerCommands: { 'type': 'array', 'itemType': 'string' },
|
|
10422
|
-
initContainerEnvironmentVars: { 'type': 'array', 'itemType':
|
|
10423
|
-
initContainerPorts: { 'type': 'array', 'itemType':
|
|
10424
|
-
initContainerVolumeMounts: { 'type': 'array', 'itemType':
|
|
10749
|
+
initContainerEnvironmentVars: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationInitContainersInitContainerEnvironmentVars },
|
|
10750
|
+
initContainerPorts: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationInitContainersInitContainerPorts },
|
|
10751
|
+
initContainerVolumeMounts: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationInitContainersInitContainerVolumeMounts },
|
|
10425
10752
|
memory: 'number',
|
|
10426
10753
|
name: 'string',
|
|
10427
10754
|
securityContextCapabilityAdds: { 'type': 'array', 'itemType': 'string' },
|
|
@@ -10436,7 +10763,7 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsIn
|
|
|
10436
10763
|
}
|
|
10437
10764
|
}
|
|
10438
10765
|
|
|
10439
|
-
export class
|
|
10766
|
+
export class DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationSecurityContextSysCtls extends $tea.Model {
|
|
10440
10767
|
name?: string;
|
|
10441
10768
|
value?: string;
|
|
10442
10769
|
static names(): { [key: string]: string } {
|
|
@@ -10458,7 +10785,7 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsSe
|
|
|
10458
10785
|
}
|
|
10459
10786
|
}
|
|
10460
10787
|
|
|
10461
|
-
export class
|
|
10788
|
+
export class DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationTags extends $tea.Model {
|
|
10462
10789
|
key?: string;
|
|
10463
10790
|
value?: string;
|
|
10464
10791
|
static names(): { [key: string]: string } {
|
|
@@ -10480,7 +10807,7 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsTa
|
|
|
10480
10807
|
}
|
|
10481
10808
|
}
|
|
10482
10809
|
|
|
10483
|
-
export class
|
|
10810
|
+
export class DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationVolumesConfigFileVolumeConfigFileToPaths extends $tea.Model {
|
|
10484
10811
|
content?: string;
|
|
10485
10812
|
mode?: number;
|
|
10486
10813
|
path?: string;
|
|
@@ -10505,8 +10832,8 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsVo
|
|
|
10505
10832
|
}
|
|
10506
10833
|
}
|
|
10507
10834
|
|
|
10508
|
-
export class
|
|
10509
|
-
configFileVolumeConfigFileToPaths?:
|
|
10835
|
+
export class DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationVolumes extends $tea.Model {
|
|
10836
|
+
configFileVolumeConfigFileToPaths?: DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationVolumesConfigFileVolumeConfigFileToPaths[];
|
|
10510
10837
|
configFileVolumeDefaultMode?: number;
|
|
10511
10838
|
diskVolumeDiskId?: string;
|
|
10512
10839
|
diskVolumeDiskSize?: number;
|
|
@@ -10547,7 +10874,7 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsVo
|
|
|
10547
10874
|
|
|
10548
10875
|
static types(): { [key: string]: any } {
|
|
10549
10876
|
return {
|
|
10550
|
-
configFileVolumeConfigFileToPaths: { 'type': 'array', 'itemType':
|
|
10877
|
+
configFileVolumeConfigFileToPaths: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationVolumesConfigFileVolumeConfigFileToPaths },
|
|
10551
10878
|
configFileVolumeDefaultMode: 'number',
|
|
10552
10879
|
diskVolumeDiskId: 'string',
|
|
10553
10880
|
diskVolumeDiskSize: 'number',
|
|
@@ -10572,13 +10899,14 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsVo
|
|
|
10572
10899
|
}
|
|
10573
10900
|
}
|
|
10574
10901
|
|
|
10575
|
-
export class
|
|
10576
|
-
acrRegistryInfos?:
|
|
10902
|
+
export class DescribeEciScalingConfigurationDetailResponseBodyScalingConfiguration extends $tea.Model {
|
|
10903
|
+
acrRegistryInfos?: DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationAcrRegistryInfos[];
|
|
10577
10904
|
activeDeadlineSeconds?: number;
|
|
10578
10905
|
autoCreateEip?: boolean;
|
|
10579
10906
|
autoMatchImageCache?: boolean;
|
|
10907
|
+
computeCategory?: string[];
|
|
10580
10908
|
containerGroupName?: string;
|
|
10581
|
-
containers?:
|
|
10909
|
+
containers?: DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationContainers[];
|
|
10582
10910
|
costOptimization?: boolean;
|
|
10583
10911
|
cpu?: number;
|
|
10584
10912
|
cpuOptionsCore?: number;
|
|
@@ -10590,18 +10918,21 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurations e
|
|
|
10590
10918
|
dataCacheProvisionedIops?: number;
|
|
10591
10919
|
description?: string;
|
|
10592
10920
|
dnsConfigNameServers?: string[];
|
|
10593
|
-
dnsConfigOptions?:
|
|
10921
|
+
dnsConfigOptions?: DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationDnsConfigOptions[];
|
|
10594
10922
|
dnsConfigSearches?: string[];
|
|
10595
10923
|
dnsPolicy?: string;
|
|
10596
10924
|
egressBandwidth?: number;
|
|
10597
10925
|
eipBandwidth?: number;
|
|
10926
|
+
eipCommonBandwidthPackage?: string;
|
|
10927
|
+
eipISP?: string;
|
|
10928
|
+
eipPublicIpAddressPoolId?: string;
|
|
10598
10929
|
ephemeralStorage?: number;
|
|
10599
|
-
hostAliases?:
|
|
10930
|
+
hostAliases?: DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationHostAliases[];
|
|
10600
10931
|
hostName?: string;
|
|
10601
|
-
imageRegistryCredentials?:
|
|
10932
|
+
imageRegistryCredentials?: DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationImageRegistryCredentials[];
|
|
10602
10933
|
imageSnapshotId?: string;
|
|
10603
10934
|
ingressBandwidth?: number;
|
|
10604
|
-
initContainers?:
|
|
10935
|
+
initContainers?: DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationInitContainers[];
|
|
10605
10936
|
instanceFamilyLevel?: string;
|
|
10606
10937
|
instanceTypes?: string[];
|
|
10607
10938
|
ipv6AddressCount?: number;
|
|
@@ -10616,20 +10947,21 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurations e
|
|
|
10616
10947
|
scalingConfigurationId?: string;
|
|
10617
10948
|
scalingConfigurationName?: string;
|
|
10618
10949
|
scalingGroupId?: string;
|
|
10619
|
-
securityContextSysCtls?:
|
|
10950
|
+
securityContextSysCtls?: DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationSecurityContextSysCtls[];
|
|
10620
10951
|
securityGroupId?: string;
|
|
10621
10952
|
slsEnable?: boolean;
|
|
10622
10953
|
spotPriceLimit?: number;
|
|
10623
10954
|
spotStrategy?: string;
|
|
10624
|
-
tags?:
|
|
10955
|
+
tags?: DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationTags[];
|
|
10625
10956
|
terminationGracePeriodSeconds?: number;
|
|
10626
|
-
volumes?:
|
|
10957
|
+
volumes?: DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationVolumes[];
|
|
10627
10958
|
static names(): { [key: string]: string } {
|
|
10628
10959
|
return {
|
|
10629
10960
|
acrRegistryInfos: 'AcrRegistryInfos',
|
|
10630
10961
|
activeDeadlineSeconds: 'ActiveDeadlineSeconds',
|
|
10631
10962
|
autoCreateEip: 'AutoCreateEip',
|
|
10632
10963
|
autoMatchImageCache: 'AutoMatchImageCache',
|
|
10964
|
+
computeCategory: 'ComputeCategory',
|
|
10633
10965
|
containerGroupName: 'ContainerGroupName',
|
|
10634
10966
|
containers: 'Containers',
|
|
10635
10967
|
costOptimization: 'CostOptimization',
|
|
@@ -10648,6 +10980,9 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurations e
|
|
|
10648
10980
|
dnsPolicy: 'DnsPolicy',
|
|
10649
10981
|
egressBandwidth: 'EgressBandwidth',
|
|
10650
10982
|
eipBandwidth: 'EipBandwidth',
|
|
10983
|
+
eipCommonBandwidthPackage: 'EipCommonBandwidthPackage',
|
|
10984
|
+
eipISP: 'EipISP',
|
|
10985
|
+
eipPublicIpAddressPoolId: 'EipPublicIpAddressPoolId',
|
|
10651
10986
|
ephemeralStorage: 'EphemeralStorage',
|
|
10652
10987
|
hostAliases: 'HostAliases',
|
|
10653
10988
|
hostName: 'HostName',
|
|
@@ -10682,12 +11017,13 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurations e
|
|
|
10682
11017
|
|
|
10683
11018
|
static types(): { [key: string]: any } {
|
|
10684
11019
|
return {
|
|
10685
|
-
acrRegistryInfos: { 'type': 'array', 'itemType':
|
|
11020
|
+
acrRegistryInfos: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationAcrRegistryInfos },
|
|
10686
11021
|
activeDeadlineSeconds: 'number',
|
|
10687
11022
|
autoCreateEip: 'boolean',
|
|
10688
11023
|
autoMatchImageCache: 'boolean',
|
|
11024
|
+
computeCategory: { 'type': 'array', 'itemType': 'string' },
|
|
10689
11025
|
containerGroupName: 'string',
|
|
10690
|
-
containers: { 'type': 'array', 'itemType':
|
|
11026
|
+
containers: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationContainers },
|
|
10691
11027
|
costOptimization: 'boolean',
|
|
10692
11028
|
cpu: 'number',
|
|
10693
11029
|
cpuOptionsCore: 'number',
|
|
@@ -10699,18 +11035,21 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurations e
|
|
|
10699
11035
|
dataCacheProvisionedIops: 'number',
|
|
10700
11036
|
description: 'string',
|
|
10701
11037
|
dnsConfigNameServers: { 'type': 'array', 'itemType': 'string' },
|
|
10702
|
-
dnsConfigOptions: { 'type': 'array', 'itemType':
|
|
11038
|
+
dnsConfigOptions: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationDnsConfigOptions },
|
|
10703
11039
|
dnsConfigSearches: { 'type': 'array', 'itemType': 'string' },
|
|
10704
11040
|
dnsPolicy: 'string',
|
|
10705
11041
|
egressBandwidth: 'number',
|
|
10706
11042
|
eipBandwidth: 'number',
|
|
11043
|
+
eipCommonBandwidthPackage: 'string',
|
|
11044
|
+
eipISP: 'string',
|
|
11045
|
+
eipPublicIpAddressPoolId: 'string',
|
|
10707
11046
|
ephemeralStorage: 'number',
|
|
10708
|
-
hostAliases: { 'type': 'array', 'itemType':
|
|
11047
|
+
hostAliases: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationHostAliases },
|
|
10709
11048
|
hostName: 'string',
|
|
10710
|
-
imageRegistryCredentials: { 'type': 'array', 'itemType':
|
|
11049
|
+
imageRegistryCredentials: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationImageRegistryCredentials },
|
|
10711
11050
|
imageSnapshotId: 'string',
|
|
10712
11051
|
ingressBandwidth: 'number',
|
|
10713
|
-
initContainers: { 'type': 'array', 'itemType':
|
|
11052
|
+
initContainers: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationInitContainers },
|
|
10714
11053
|
instanceFamilyLevel: 'string',
|
|
10715
11054
|
instanceTypes: { 'type': 'array', 'itemType': 'string' },
|
|
10716
11055
|
ipv6AddressCount: 'number',
|
|
@@ -10725,14 +11064,14 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurations e
|
|
|
10725
11064
|
scalingConfigurationId: 'string',
|
|
10726
11065
|
scalingConfigurationName: 'string',
|
|
10727
11066
|
scalingGroupId: 'string',
|
|
10728
|
-
securityContextSysCtls: { 'type': 'array', 'itemType':
|
|
11067
|
+
securityContextSysCtls: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationSecurityContextSysCtls },
|
|
10729
11068
|
securityGroupId: 'string',
|
|
10730
11069
|
slsEnable: 'boolean',
|
|
10731
11070
|
spotPriceLimit: 'number',
|
|
10732
11071
|
spotStrategy: 'string',
|
|
10733
|
-
tags: { 'type': 'array', 'itemType':
|
|
11072
|
+
tags: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationTags },
|
|
10734
11073
|
terminationGracePeriodSeconds: 'number',
|
|
10735
|
-
volumes: { 'type': 'array', 'itemType':
|
|
11074
|
+
volumes: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationDetailResponseBodyScalingConfigurationVolumes },
|
|
10736
11075
|
};
|
|
10737
11076
|
}
|
|
10738
11077
|
|
|
@@ -10741,29 +11080,26 @@ export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurations e
|
|
|
10741
11080
|
}
|
|
10742
11081
|
}
|
|
10743
11082
|
|
|
10744
|
-
export class
|
|
10745
|
-
|
|
10746
|
-
|
|
10747
|
-
|
|
10748
|
-
|
|
10749
|
-
lifecycleHookId?: string;
|
|
11083
|
+
export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsAcrRegistryInfos extends $tea.Model {
|
|
11084
|
+
domains?: string[];
|
|
11085
|
+
instanceId?: string;
|
|
11086
|
+
instanceName?: string;
|
|
11087
|
+
regionId?: string;
|
|
10750
11088
|
static names(): { [key: string]: string } {
|
|
10751
11089
|
return {
|
|
10752
|
-
|
|
10753
|
-
|
|
10754
|
-
|
|
10755
|
-
|
|
10756
|
-
lifecycleHookId: 'LifecycleHookId',
|
|
11090
|
+
domains: 'Domains',
|
|
11091
|
+
instanceId: 'InstanceId',
|
|
11092
|
+
instanceName: 'InstanceName',
|
|
11093
|
+
regionId: 'RegionId',
|
|
10757
11094
|
};
|
|
10758
11095
|
}
|
|
10759
11096
|
|
|
10760
11097
|
static types(): { [key: string]: any } {
|
|
10761
11098
|
return {
|
|
10762
|
-
|
|
10763
|
-
|
|
10764
|
-
|
|
10765
|
-
|
|
10766
|
-
lifecycleHookId: 'string',
|
|
11099
|
+
domains: { 'type': 'array', 'itemType': 'string' },
|
|
11100
|
+
instanceId: 'string',
|
|
11101
|
+
instanceName: 'string',
|
|
11102
|
+
regionId: 'string',
|
|
10767
11103
|
};
|
|
10768
11104
|
}
|
|
10769
11105
|
|
|
@@ -10772,41 +11108,23 @@ export class DescribeLifecycleActionsResponseBodyLifecycleActions extends $tea.M
|
|
|
10772
11108
|
}
|
|
10773
11109
|
}
|
|
10774
11110
|
|
|
10775
|
-
export class
|
|
10776
|
-
|
|
10777
|
-
|
|
10778
|
-
|
|
10779
|
-
lifecycleHookName?: string;
|
|
10780
|
-
lifecycleHookStatus?: string;
|
|
10781
|
-
lifecycleTransition?: string;
|
|
10782
|
-
notificationArn?: string;
|
|
10783
|
-
notificationMetadata?: string;
|
|
10784
|
-
scalingGroupId?: string;
|
|
11111
|
+
export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsContainersEnvironmentVars extends $tea.Model {
|
|
11112
|
+
fieldRefFieldPath?: string;
|
|
11113
|
+
key?: string;
|
|
11114
|
+
value?: string;
|
|
10785
11115
|
static names(): { [key: string]: string } {
|
|
10786
11116
|
return {
|
|
10787
|
-
|
|
10788
|
-
|
|
10789
|
-
|
|
10790
|
-
lifecycleHookName: 'LifecycleHookName',
|
|
10791
|
-
lifecycleHookStatus: 'LifecycleHookStatus',
|
|
10792
|
-
lifecycleTransition: 'LifecycleTransition',
|
|
10793
|
-
notificationArn: 'NotificationArn',
|
|
10794
|
-
notificationMetadata: 'NotificationMetadata',
|
|
10795
|
-
scalingGroupId: 'ScalingGroupId',
|
|
11117
|
+
fieldRefFieldPath: 'FieldRefFieldPath',
|
|
11118
|
+
key: 'Key',
|
|
11119
|
+
value: 'Value',
|
|
10796
11120
|
};
|
|
10797
11121
|
}
|
|
10798
11122
|
|
|
10799
11123
|
static types(): { [key: string]: any } {
|
|
10800
11124
|
return {
|
|
10801
|
-
|
|
10802
|
-
|
|
10803
|
-
|
|
10804
|
-
lifecycleHookName: 'string',
|
|
10805
|
-
lifecycleHookStatus: 'string',
|
|
10806
|
-
lifecycleTransition: 'string',
|
|
10807
|
-
notificationArn: 'string',
|
|
10808
|
-
notificationMetadata: 'string',
|
|
10809
|
-
scalingGroupId: 'string',
|
|
11125
|
+
fieldRefFieldPath: 'string',
|
|
11126
|
+
key: 'string',
|
|
11127
|
+
value: 'string',
|
|
10810
11128
|
};
|
|
10811
11129
|
}
|
|
10812
11130
|
|
|
@@ -10815,23 +11133,20 @@ export class DescribeLifecycleHooksResponseBodyLifecycleHooks extends $tea.Model
|
|
|
10815
11133
|
}
|
|
10816
11134
|
}
|
|
10817
11135
|
|
|
10818
|
-
export class
|
|
10819
|
-
|
|
10820
|
-
|
|
10821
|
-
scalingGroupId?: string;
|
|
11136
|
+
export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsContainersPorts extends $tea.Model {
|
|
11137
|
+
port?: number;
|
|
11138
|
+
protocol?: string;
|
|
10822
11139
|
static names(): { [key: string]: string } {
|
|
10823
11140
|
return {
|
|
10824
|
-
|
|
10825
|
-
|
|
10826
|
-
scalingGroupId: 'ScalingGroupId',
|
|
11141
|
+
port: 'Port',
|
|
11142
|
+
protocol: 'Protocol',
|
|
10827
11143
|
};
|
|
10828
11144
|
}
|
|
10829
11145
|
|
|
10830
11146
|
static types(): { [key: string]: any } {
|
|
10831
11147
|
return {
|
|
10832
|
-
|
|
10833
|
-
|
|
10834
|
-
scalingGroupId: 'string',
|
|
11148
|
+
port: 'number',
|
|
11149
|
+
protocol: 'string',
|
|
10835
11150
|
};
|
|
10836
11151
|
}
|
|
10837
11152
|
|
|
@@ -10840,29 +11155,29 @@ export class DescribeNotificationConfigurationsResponseBodyNotificationConfigura
|
|
|
10840
11155
|
}
|
|
10841
11156
|
}
|
|
10842
11157
|
|
|
10843
|
-
export class
|
|
10844
|
-
|
|
10845
|
-
|
|
10846
|
-
|
|
10847
|
-
|
|
10848
|
-
|
|
11158
|
+
export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsContainersVolumeMounts extends $tea.Model {
|
|
11159
|
+
mountPath?: string;
|
|
11160
|
+
mountPropagation?: string;
|
|
11161
|
+
name?: string;
|
|
11162
|
+
readOnly?: boolean;
|
|
11163
|
+
subPath?: string;
|
|
10849
11164
|
static names(): { [key: string]: string } {
|
|
10850
11165
|
return {
|
|
10851
|
-
|
|
10852
|
-
|
|
10853
|
-
|
|
10854
|
-
|
|
10855
|
-
|
|
11166
|
+
mountPath: 'MountPath',
|
|
11167
|
+
mountPropagation: 'MountPropagation',
|
|
11168
|
+
name: 'Name',
|
|
11169
|
+
readOnly: 'ReadOnly',
|
|
11170
|
+
subPath: 'SubPath',
|
|
10856
11171
|
};
|
|
10857
11172
|
}
|
|
10858
11173
|
|
|
10859
11174
|
static types(): { [key: string]: any } {
|
|
10860
11175
|
return {
|
|
10861
|
-
|
|
10862
|
-
|
|
10863
|
-
|
|
10864
|
-
|
|
10865
|
-
|
|
11176
|
+
mountPath: 'string',
|
|
11177
|
+
mountPropagation: 'string',
|
|
11178
|
+
name: 'string',
|
|
11179
|
+
readOnly: 'boolean',
|
|
11180
|
+
subPath: 'string',
|
|
10866
11181
|
};
|
|
10867
11182
|
}
|
|
10868
11183
|
|
|
@@ -10871,86 +11186,170 @@ export class DescribeRegionsResponseBodyRegions extends $tea.Model {
|
|
|
10871
11186
|
}
|
|
10872
11187
|
}
|
|
10873
11188
|
|
|
10874
|
-
export class
|
|
10875
|
-
|
|
10876
|
-
|
|
10877
|
-
|
|
10878
|
-
|
|
10879
|
-
|
|
10880
|
-
|
|
10881
|
-
|
|
10882
|
-
|
|
10883
|
-
|
|
10884
|
-
|
|
10885
|
-
|
|
10886
|
-
|
|
10887
|
-
|
|
10888
|
-
|
|
10889
|
-
|
|
10890
|
-
|
|
10891
|
-
|
|
10892
|
-
|
|
10893
|
-
|
|
10894
|
-
|
|
10895
|
-
|
|
10896
|
-
|
|
10897
|
-
|
|
10898
|
-
|
|
11189
|
+
export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsContainers extends $tea.Model {
|
|
11190
|
+
args?: string[];
|
|
11191
|
+
commands?: string[];
|
|
11192
|
+
cpu?: number;
|
|
11193
|
+
environmentVars?: DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsContainersEnvironmentVars[];
|
|
11194
|
+
gpu?: number;
|
|
11195
|
+
image?: string;
|
|
11196
|
+
imagePullPolicy?: string;
|
|
11197
|
+
lifecyclePostStartHandlerExecs?: string[];
|
|
11198
|
+
lifecyclePostStartHandlerHttpGetHost?: string;
|
|
11199
|
+
lifecyclePostStartHandlerHttpGetPath?: string;
|
|
11200
|
+
lifecyclePostStartHandlerHttpGetPort?: number;
|
|
11201
|
+
lifecyclePostStartHandlerHttpGetScheme?: string;
|
|
11202
|
+
lifecyclePostStartHandlerTcpSocketHost?: string;
|
|
11203
|
+
lifecyclePostStartHandlerTcpSocketPort?: number;
|
|
11204
|
+
lifecyclePreStopHandlerExecs?: string[];
|
|
11205
|
+
lifecyclePreStopHandlerHttpGetHost?: string;
|
|
11206
|
+
lifecyclePreStopHandlerHttpGetPath?: string;
|
|
11207
|
+
lifecyclePreStopHandlerHttpGetPort?: number;
|
|
11208
|
+
lifecyclePreStopHandlerHttpGetScheme?: string;
|
|
11209
|
+
lifecyclePreStopHandlerTcpSocketHost?: string;
|
|
11210
|
+
lifecyclePreStopHandlerTcpSocketPort?: number;
|
|
11211
|
+
livenessProbeExecCommands?: string[];
|
|
11212
|
+
livenessProbeFailureThreshold?: number;
|
|
11213
|
+
livenessProbeHttpGetPath?: string;
|
|
11214
|
+
livenessProbeHttpGetPort?: number;
|
|
11215
|
+
livenessProbeHttpGetScheme?: string;
|
|
11216
|
+
livenessProbeInitialDelaySeconds?: number;
|
|
11217
|
+
livenessProbePeriodSeconds?: number;
|
|
11218
|
+
livenessProbeSuccessThreshold?: number;
|
|
11219
|
+
livenessProbeTcpSocketPort?: number;
|
|
11220
|
+
livenessProbeTimeoutSeconds?: number;
|
|
11221
|
+
memory?: number;
|
|
11222
|
+
name?: string;
|
|
11223
|
+
ports?: DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsContainersPorts[];
|
|
11224
|
+
readinessProbeExecCommands?: string[];
|
|
11225
|
+
readinessProbeFailureThreshold?: number;
|
|
11226
|
+
readinessProbeHttpGetPath?: string;
|
|
11227
|
+
readinessProbeHttpGetPort?: number;
|
|
11228
|
+
readinessProbeHttpGetScheme?: string;
|
|
11229
|
+
readinessProbeInitialDelaySeconds?: number;
|
|
11230
|
+
readinessProbePeriodSeconds?: number;
|
|
11231
|
+
readinessProbeSuccessThreshold?: number;
|
|
11232
|
+
readinessProbeTcpSocketPort?: number;
|
|
11233
|
+
readinessProbeTimeoutSeconds?: number;
|
|
11234
|
+
securityContextCapabilityAdds?: string[];
|
|
11235
|
+
securityContextReadOnlyRootFilesystem?: boolean;
|
|
11236
|
+
securityContextRunAsUser?: number;
|
|
11237
|
+
stdin?: boolean;
|
|
11238
|
+
stdinOnce?: boolean;
|
|
11239
|
+
tty?: boolean;
|
|
11240
|
+
volumeMounts?: DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsContainersVolumeMounts[];
|
|
11241
|
+
workingDir?: string;
|
|
10899
11242
|
static names(): { [key: string]: string } {
|
|
10900
11243
|
return {
|
|
10901
|
-
|
|
10902
|
-
|
|
10903
|
-
|
|
10904
|
-
|
|
10905
|
-
|
|
10906
|
-
|
|
10907
|
-
|
|
10908
|
-
|
|
10909
|
-
|
|
10910
|
-
|
|
10911
|
-
|
|
10912
|
-
|
|
10913
|
-
|
|
10914
|
-
|
|
10915
|
-
|
|
10916
|
-
|
|
10917
|
-
|
|
10918
|
-
|
|
10919
|
-
|
|
10920
|
-
|
|
10921
|
-
|
|
10922
|
-
|
|
10923
|
-
|
|
10924
|
-
|
|
11244
|
+
args: 'Args',
|
|
11245
|
+
commands: 'Commands',
|
|
11246
|
+
cpu: 'Cpu',
|
|
11247
|
+
environmentVars: 'EnvironmentVars',
|
|
11248
|
+
gpu: 'Gpu',
|
|
11249
|
+
image: 'Image',
|
|
11250
|
+
imagePullPolicy: 'ImagePullPolicy',
|
|
11251
|
+
lifecyclePostStartHandlerExecs: 'LifecyclePostStartHandlerExecs',
|
|
11252
|
+
lifecyclePostStartHandlerHttpGetHost: 'LifecyclePostStartHandlerHttpGetHost',
|
|
11253
|
+
lifecyclePostStartHandlerHttpGetPath: 'LifecyclePostStartHandlerHttpGetPath',
|
|
11254
|
+
lifecyclePostStartHandlerHttpGetPort: 'LifecyclePostStartHandlerHttpGetPort',
|
|
11255
|
+
lifecyclePostStartHandlerHttpGetScheme: 'LifecyclePostStartHandlerHttpGetScheme',
|
|
11256
|
+
lifecyclePostStartHandlerTcpSocketHost: 'LifecyclePostStartHandlerTcpSocketHost',
|
|
11257
|
+
lifecyclePostStartHandlerTcpSocketPort: 'LifecyclePostStartHandlerTcpSocketPort',
|
|
11258
|
+
lifecyclePreStopHandlerExecs: 'LifecyclePreStopHandlerExecs',
|
|
11259
|
+
lifecyclePreStopHandlerHttpGetHost: 'LifecyclePreStopHandlerHttpGetHost',
|
|
11260
|
+
lifecyclePreStopHandlerHttpGetPath: 'LifecyclePreStopHandlerHttpGetPath',
|
|
11261
|
+
lifecyclePreStopHandlerHttpGetPort: 'LifecyclePreStopHandlerHttpGetPort',
|
|
11262
|
+
lifecyclePreStopHandlerHttpGetScheme: 'LifecyclePreStopHandlerHttpGetScheme',
|
|
11263
|
+
lifecyclePreStopHandlerTcpSocketHost: 'LifecyclePreStopHandlerTcpSocketHost',
|
|
11264
|
+
lifecyclePreStopHandlerTcpSocketPort: 'LifecyclePreStopHandlerTcpSocketPort',
|
|
11265
|
+
livenessProbeExecCommands: 'LivenessProbeExecCommands',
|
|
11266
|
+
livenessProbeFailureThreshold: 'LivenessProbeFailureThreshold',
|
|
11267
|
+
livenessProbeHttpGetPath: 'LivenessProbeHttpGetPath',
|
|
11268
|
+
livenessProbeHttpGetPort: 'LivenessProbeHttpGetPort',
|
|
11269
|
+
livenessProbeHttpGetScheme: 'LivenessProbeHttpGetScheme',
|
|
11270
|
+
livenessProbeInitialDelaySeconds: 'LivenessProbeInitialDelaySeconds',
|
|
11271
|
+
livenessProbePeriodSeconds: 'LivenessProbePeriodSeconds',
|
|
11272
|
+
livenessProbeSuccessThreshold: 'LivenessProbeSuccessThreshold',
|
|
11273
|
+
livenessProbeTcpSocketPort: 'LivenessProbeTcpSocketPort',
|
|
11274
|
+
livenessProbeTimeoutSeconds: 'LivenessProbeTimeoutSeconds',
|
|
11275
|
+
memory: 'Memory',
|
|
11276
|
+
name: 'Name',
|
|
11277
|
+
ports: 'Ports',
|
|
11278
|
+
readinessProbeExecCommands: 'ReadinessProbeExecCommands',
|
|
11279
|
+
readinessProbeFailureThreshold: 'ReadinessProbeFailureThreshold',
|
|
11280
|
+
readinessProbeHttpGetPath: 'ReadinessProbeHttpGetPath',
|
|
11281
|
+
readinessProbeHttpGetPort: 'ReadinessProbeHttpGetPort',
|
|
11282
|
+
readinessProbeHttpGetScheme: 'ReadinessProbeHttpGetScheme',
|
|
11283
|
+
readinessProbeInitialDelaySeconds: 'ReadinessProbeInitialDelaySeconds',
|
|
11284
|
+
readinessProbePeriodSeconds: 'ReadinessProbePeriodSeconds',
|
|
11285
|
+
readinessProbeSuccessThreshold: 'ReadinessProbeSuccessThreshold',
|
|
11286
|
+
readinessProbeTcpSocketPort: 'ReadinessProbeTcpSocketPort',
|
|
11287
|
+
readinessProbeTimeoutSeconds: 'ReadinessProbeTimeoutSeconds',
|
|
11288
|
+
securityContextCapabilityAdds: 'SecurityContextCapabilityAdds',
|
|
11289
|
+
securityContextReadOnlyRootFilesystem: 'SecurityContextReadOnlyRootFilesystem',
|
|
11290
|
+
securityContextRunAsUser: 'SecurityContextRunAsUser',
|
|
11291
|
+
stdin: 'Stdin',
|
|
11292
|
+
stdinOnce: 'StdinOnce',
|
|
11293
|
+
tty: 'Tty',
|
|
11294
|
+
volumeMounts: 'VolumeMounts',
|
|
11295
|
+
workingDir: 'WorkingDir',
|
|
10925
11296
|
};
|
|
10926
11297
|
}
|
|
10927
11298
|
|
|
10928
11299
|
static types(): { [key: string]: any } {
|
|
10929
11300
|
return {
|
|
10930
|
-
|
|
10931
|
-
|
|
10932
|
-
|
|
10933
|
-
|
|
10934
|
-
|
|
10935
|
-
|
|
10936
|
-
|
|
10937
|
-
|
|
10938
|
-
|
|
10939
|
-
|
|
10940
|
-
|
|
10941
|
-
|
|
10942
|
-
|
|
10943
|
-
|
|
10944
|
-
|
|
10945
|
-
|
|
10946
|
-
|
|
10947
|
-
|
|
10948
|
-
|
|
10949
|
-
|
|
10950
|
-
|
|
10951
|
-
|
|
10952
|
-
|
|
10953
|
-
|
|
11301
|
+
args: { 'type': 'array', 'itemType': 'string' },
|
|
11302
|
+
commands: { 'type': 'array', 'itemType': 'string' },
|
|
11303
|
+
cpu: 'number',
|
|
11304
|
+
environmentVars: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsContainersEnvironmentVars },
|
|
11305
|
+
gpu: 'number',
|
|
11306
|
+
image: 'string',
|
|
11307
|
+
imagePullPolicy: 'string',
|
|
11308
|
+
lifecyclePostStartHandlerExecs: { 'type': 'array', 'itemType': 'string' },
|
|
11309
|
+
lifecyclePostStartHandlerHttpGetHost: 'string',
|
|
11310
|
+
lifecyclePostStartHandlerHttpGetPath: 'string',
|
|
11311
|
+
lifecyclePostStartHandlerHttpGetPort: 'number',
|
|
11312
|
+
lifecyclePostStartHandlerHttpGetScheme: 'string',
|
|
11313
|
+
lifecyclePostStartHandlerTcpSocketHost: 'string',
|
|
11314
|
+
lifecyclePostStartHandlerTcpSocketPort: 'number',
|
|
11315
|
+
lifecyclePreStopHandlerExecs: { 'type': 'array', 'itemType': 'string' },
|
|
11316
|
+
lifecyclePreStopHandlerHttpGetHost: 'string',
|
|
11317
|
+
lifecyclePreStopHandlerHttpGetPath: 'string',
|
|
11318
|
+
lifecyclePreStopHandlerHttpGetPort: 'number',
|
|
11319
|
+
lifecyclePreStopHandlerHttpGetScheme: 'string',
|
|
11320
|
+
lifecyclePreStopHandlerTcpSocketHost: 'string',
|
|
11321
|
+
lifecyclePreStopHandlerTcpSocketPort: 'number',
|
|
11322
|
+
livenessProbeExecCommands: { 'type': 'array', 'itemType': 'string' },
|
|
11323
|
+
livenessProbeFailureThreshold: 'number',
|
|
11324
|
+
livenessProbeHttpGetPath: 'string',
|
|
11325
|
+
livenessProbeHttpGetPort: 'number',
|
|
11326
|
+
livenessProbeHttpGetScheme: 'string',
|
|
11327
|
+
livenessProbeInitialDelaySeconds: 'number',
|
|
11328
|
+
livenessProbePeriodSeconds: 'number',
|
|
11329
|
+
livenessProbeSuccessThreshold: 'number',
|
|
11330
|
+
livenessProbeTcpSocketPort: 'number',
|
|
11331
|
+
livenessProbeTimeoutSeconds: 'number',
|
|
11332
|
+
memory: 'number',
|
|
11333
|
+
name: 'string',
|
|
11334
|
+
ports: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsContainersPorts },
|
|
11335
|
+
readinessProbeExecCommands: { 'type': 'array', 'itemType': 'string' },
|
|
11336
|
+
readinessProbeFailureThreshold: 'number',
|
|
11337
|
+
readinessProbeHttpGetPath: 'string',
|
|
11338
|
+
readinessProbeHttpGetPort: 'number',
|
|
11339
|
+
readinessProbeHttpGetScheme: 'string',
|
|
11340
|
+
readinessProbeInitialDelaySeconds: 'number',
|
|
11341
|
+
readinessProbePeriodSeconds: 'number',
|
|
11342
|
+
readinessProbeSuccessThreshold: 'number',
|
|
11343
|
+
readinessProbeTcpSocketPort: 'number',
|
|
11344
|
+
readinessProbeTimeoutSeconds: 'number',
|
|
11345
|
+
securityContextCapabilityAdds: { 'type': 'array', 'itemType': 'string' },
|
|
11346
|
+
securityContextReadOnlyRootFilesystem: 'boolean',
|
|
11347
|
+
securityContextRunAsUser: 'number',
|
|
11348
|
+
stdin: 'boolean',
|
|
11349
|
+
stdinOnce: 'boolean',
|
|
11350
|
+
tty: 'boolean',
|
|
11351
|
+
volumeMounts: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsContainersVolumeMounts },
|
|
11352
|
+
workingDir: 'string',
|
|
10954
11353
|
};
|
|
10955
11354
|
}
|
|
10956
11355
|
|
|
@@ -10959,20 +11358,20 @@ export class DescribeScalingActivitiesResponseBodyScalingActivities extends $tea
|
|
|
10959
11358
|
}
|
|
10960
11359
|
}
|
|
10961
11360
|
|
|
10962
|
-
export class
|
|
10963
|
-
|
|
10964
|
-
|
|
11361
|
+
export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsDnsConfigOptions extends $tea.Model {
|
|
11362
|
+
name?: string;
|
|
11363
|
+
value?: string;
|
|
10965
11364
|
static names(): { [key: string]: string } {
|
|
10966
11365
|
return {
|
|
10967
|
-
|
|
10968
|
-
|
|
11366
|
+
name: 'Name',
|
|
11367
|
+
value: 'Value',
|
|
10969
11368
|
};
|
|
10970
11369
|
}
|
|
10971
11370
|
|
|
10972
11371
|
static types(): { [key: string]: any } {
|
|
10973
11372
|
return {
|
|
10974
|
-
|
|
10975
|
-
|
|
11373
|
+
name: 'string',
|
|
11374
|
+
value: 'string',
|
|
10976
11375
|
};
|
|
10977
11376
|
}
|
|
10978
11377
|
|
|
@@ -10981,56 +11380,20 @@ export class DescribeScalingConfigurationsResponseBodyScalingConfigurationsCusto
|
|
|
10981
11380
|
}
|
|
10982
11381
|
}
|
|
10983
11382
|
|
|
10984
|
-
export class
|
|
10985
|
-
|
|
10986
|
-
|
|
10987
|
-
categories?: string[];
|
|
10988
|
-
category?: string;
|
|
10989
|
-
deleteWithInstance?: boolean;
|
|
10990
|
-
description?: string;
|
|
10991
|
-
device?: string;
|
|
10992
|
-
diskName?: string;
|
|
10993
|
-
encrypted?: string;
|
|
10994
|
-
KMSKeyId?: string;
|
|
10995
|
-
performanceLevel?: string;
|
|
10996
|
-
provisionedIops?: number;
|
|
10997
|
-
size?: number;
|
|
10998
|
-
snapshotId?: string;
|
|
11383
|
+
export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsHostAliases extends $tea.Model {
|
|
11384
|
+
hostnames?: string[];
|
|
11385
|
+
ip?: string;
|
|
10999
11386
|
static names(): { [key: string]: string } {
|
|
11000
11387
|
return {
|
|
11001
|
-
|
|
11002
|
-
|
|
11003
|
-
categories: 'Categories',
|
|
11004
|
-
category: 'Category',
|
|
11005
|
-
deleteWithInstance: 'DeleteWithInstance',
|
|
11006
|
-
description: 'Description',
|
|
11007
|
-
device: 'Device',
|
|
11008
|
-
diskName: 'DiskName',
|
|
11009
|
-
encrypted: 'Encrypted',
|
|
11010
|
-
KMSKeyId: 'KMSKeyId',
|
|
11011
|
-
performanceLevel: 'PerformanceLevel',
|
|
11012
|
-
provisionedIops: 'ProvisionedIops',
|
|
11013
|
-
size: 'Size',
|
|
11014
|
-
snapshotId: 'SnapshotId',
|
|
11388
|
+
hostnames: 'Hostnames',
|
|
11389
|
+
ip: 'Ip',
|
|
11015
11390
|
};
|
|
11016
11391
|
}
|
|
11017
11392
|
|
|
11018
11393
|
static types(): { [key: string]: any } {
|
|
11019
11394
|
return {
|
|
11020
|
-
|
|
11021
|
-
|
|
11022
|
-
categories: { 'type': 'array', 'itemType': 'string' },
|
|
11023
|
-
category: 'string',
|
|
11024
|
-
deleteWithInstance: 'boolean',
|
|
11025
|
-
description: 'string',
|
|
11026
|
-
device: 'string',
|
|
11027
|
-
diskName: 'string',
|
|
11028
|
-
encrypted: 'string',
|
|
11029
|
-
KMSKeyId: 'string',
|
|
11030
|
-
performanceLevel: 'string',
|
|
11031
|
-
provisionedIops: 'number',
|
|
11032
|
-
size: 'number',
|
|
11033
|
-
snapshotId: 'string',
|
|
11395
|
+
hostnames: { 'type': 'array', 'itemType': 'string' },
|
|
11396
|
+
ip: 'string',
|
|
11034
11397
|
};
|
|
11035
11398
|
}
|
|
11036
11399
|
|
|
@@ -11039,35 +11402,23 @@ export class DescribeScalingConfigurationsResponseBodyScalingConfigurationsDataD
|
|
|
11039
11402
|
}
|
|
11040
11403
|
}
|
|
11041
11404
|
|
|
11042
|
-
export class
|
|
11043
|
-
|
|
11044
|
-
|
|
11045
|
-
|
|
11046
|
-
excludedInstanceTypes?: string[];
|
|
11047
|
-
instanceFamilyLevel?: string;
|
|
11048
|
-
maxPrice?: number;
|
|
11049
|
-
memory?: number;
|
|
11405
|
+
export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsImageRegistryCredentials extends $tea.Model {
|
|
11406
|
+
password?: string;
|
|
11407
|
+
server?: string;
|
|
11408
|
+
userName?: string;
|
|
11050
11409
|
static names(): { [key: string]: string } {
|
|
11051
11410
|
return {
|
|
11052
|
-
|
|
11053
|
-
|
|
11054
|
-
|
|
11055
|
-
excludedInstanceTypes: 'ExcludedInstanceTypes',
|
|
11056
|
-
instanceFamilyLevel: 'InstanceFamilyLevel',
|
|
11057
|
-
maxPrice: 'MaxPrice',
|
|
11058
|
-
memory: 'Memory',
|
|
11411
|
+
password: 'Password',
|
|
11412
|
+
server: 'Server',
|
|
11413
|
+
userName: 'UserName',
|
|
11059
11414
|
};
|
|
11060
11415
|
}
|
|
11061
11416
|
|
|
11062
11417
|
static types(): { [key: string]: any } {
|
|
11063
11418
|
return {
|
|
11064
|
-
|
|
11065
|
-
|
|
11066
|
-
|
|
11067
|
-
excludedInstanceTypes: { 'type': 'array', 'itemType': 'string' },
|
|
11068
|
-
instanceFamilyLevel: 'string',
|
|
11069
|
-
maxPrice: 'number',
|
|
11070
|
-
memory: 'number',
|
|
11419
|
+
password: 'string',
|
|
11420
|
+
server: 'string',
|
|
11421
|
+
userName: 'string',
|
|
11071
11422
|
};
|
|
11072
11423
|
}
|
|
11073
11424
|
|
|
@@ -11076,17 +11427,23 @@ export class DescribeScalingConfigurationsResponseBodyScalingConfigurationsInsta
|
|
|
11076
11427
|
}
|
|
11077
11428
|
}
|
|
11078
11429
|
|
|
11079
|
-
export class
|
|
11080
|
-
|
|
11430
|
+
export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsInitContainersInitContainerEnvironmentVars extends $tea.Model {
|
|
11431
|
+
fieldRefFieldPath?: string;
|
|
11432
|
+
key?: string;
|
|
11433
|
+
value?: string;
|
|
11081
11434
|
static names(): { [key: string]: string } {
|
|
11082
11435
|
return {
|
|
11083
|
-
|
|
11436
|
+
fieldRefFieldPath: 'FieldRefFieldPath',
|
|
11437
|
+
key: 'Key',
|
|
11438
|
+
value: 'Value',
|
|
11084
11439
|
};
|
|
11085
11440
|
}
|
|
11086
11441
|
|
|
11087
11442
|
static types(): { [key: string]: any } {
|
|
11088
11443
|
return {
|
|
11089
|
-
|
|
11444
|
+
fieldRefFieldPath: 'string',
|
|
11445
|
+
key: 'string',
|
|
11446
|
+
value: 'string',
|
|
11090
11447
|
};
|
|
11091
11448
|
}
|
|
11092
11449
|
|
|
@@ -11095,20 +11452,20 @@ export class DescribeScalingConfigurationsResponseBodyScalingConfigurationsSched
|
|
|
11095
11452
|
}
|
|
11096
11453
|
}
|
|
11097
11454
|
|
|
11098
|
-
export class
|
|
11099
|
-
|
|
11100
|
-
|
|
11455
|
+
export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsInitContainersInitContainerPorts extends $tea.Model {
|
|
11456
|
+
port?: number;
|
|
11457
|
+
protocol?: string;
|
|
11101
11458
|
static names(): { [key: string]: string } {
|
|
11102
11459
|
return {
|
|
11103
|
-
|
|
11104
|
-
|
|
11460
|
+
port: 'Port',
|
|
11461
|
+
protocol: 'Protocol',
|
|
11105
11462
|
};
|
|
11106
11463
|
}
|
|
11107
11464
|
|
|
11108
11465
|
static types(): { [key: string]: any } {
|
|
11109
11466
|
return {
|
|
11110
|
-
|
|
11111
|
-
|
|
11467
|
+
port: 'number',
|
|
11468
|
+
protocol: 'string',
|
|
11112
11469
|
};
|
|
11113
11470
|
}
|
|
11114
11471
|
|
|
@@ -11117,20 +11474,29 @@ export class DescribeScalingConfigurationsResponseBodyScalingConfigurationsSpotP
|
|
|
11117
11474
|
}
|
|
11118
11475
|
}
|
|
11119
11476
|
|
|
11120
|
-
export class
|
|
11121
|
-
|
|
11122
|
-
|
|
11477
|
+
export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsInitContainersInitContainerVolumeMounts extends $tea.Model {
|
|
11478
|
+
mountPath?: string;
|
|
11479
|
+
mountPropagation?: string;
|
|
11480
|
+
name?: string;
|
|
11481
|
+
readOnly?: boolean;
|
|
11482
|
+
subPath?: string;
|
|
11123
11483
|
static names(): { [key: string]: string } {
|
|
11124
11484
|
return {
|
|
11125
|
-
|
|
11126
|
-
|
|
11485
|
+
mountPath: 'MountPath',
|
|
11486
|
+
mountPropagation: 'MountPropagation',
|
|
11487
|
+
name: 'Name',
|
|
11488
|
+
readOnly: 'ReadOnly',
|
|
11489
|
+
subPath: 'SubPath',
|
|
11127
11490
|
};
|
|
11128
11491
|
}
|
|
11129
11492
|
|
|
11130
11493
|
static types(): { [key: string]: any } {
|
|
11131
11494
|
return {
|
|
11132
|
-
|
|
11133
|
-
|
|
11495
|
+
mountPath: 'string',
|
|
11496
|
+
mountPropagation: 'string',
|
|
11497
|
+
name: 'string',
|
|
11498
|
+
readOnly: 'boolean',
|
|
11499
|
+
subPath: 'string',
|
|
11134
11500
|
};
|
|
11135
11501
|
}
|
|
11136
11502
|
|
|
@@ -11139,127 +11505,925 @@ export class DescribeScalingConfigurationsResponseBodyScalingConfigurationsTags
|
|
|
11139
11505
|
}
|
|
11140
11506
|
}
|
|
11141
11507
|
|
|
11142
|
-
export class
|
|
11143
|
-
affinity?: string;
|
|
11508
|
+
export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsInitContainers extends $tea.Model {
|
|
11144
11509
|
cpu?: number;
|
|
11145
|
-
|
|
11146
|
-
|
|
11147
|
-
|
|
11148
|
-
|
|
11149
|
-
|
|
11150
|
-
|
|
11151
|
-
|
|
11152
|
-
|
|
11153
|
-
hpcClusterId?: string;
|
|
11154
|
-
imageFamily?: string;
|
|
11155
|
-
imageId?: string;
|
|
11156
|
-
imageName?: string;
|
|
11157
|
-
imageOptionsLoginAsNonRoot?: boolean;
|
|
11158
|
-
imageOwnerAlias?: string;
|
|
11159
|
-
instanceDescription?: string;
|
|
11160
|
-
instanceGeneration?: string;
|
|
11161
|
-
instanceName?: string;
|
|
11162
|
-
instancePatternInfos?: DescribeScalingConfigurationsResponseBodyScalingConfigurationsInstancePatternInfos[];
|
|
11163
|
-
instanceType?: string;
|
|
11164
|
-
instanceTypes?: string[];
|
|
11165
|
-
internetChargeType?: string;
|
|
11166
|
-
internetMaxBandwidthIn?: number;
|
|
11167
|
-
internetMaxBandwidthOut?: number;
|
|
11168
|
-
ioOptimized?: string;
|
|
11169
|
-
ipv6AddressCount?: number;
|
|
11170
|
-
keyPairName?: string;
|
|
11171
|
-
lifecycleState?: string;
|
|
11172
|
-
loadBalancerWeight?: number;
|
|
11510
|
+
gpu?: number;
|
|
11511
|
+
image?: string;
|
|
11512
|
+
imagePullPolicy?: string;
|
|
11513
|
+
initContainerArgs?: string[];
|
|
11514
|
+
initContainerCommands?: string[];
|
|
11515
|
+
initContainerEnvironmentVars?: DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsInitContainersInitContainerEnvironmentVars[];
|
|
11516
|
+
initContainerPorts?: DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsInitContainersInitContainerPorts[];
|
|
11517
|
+
initContainerVolumeMounts?: DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsInitContainersInitContainerVolumeMounts[];
|
|
11173
11518
|
memory?: number;
|
|
11174
|
-
|
|
11175
|
-
|
|
11176
|
-
|
|
11177
|
-
|
|
11178
|
-
|
|
11179
|
-
scalingConfigurationId?: string;
|
|
11180
|
-
scalingConfigurationName?: string;
|
|
11181
|
-
scalingGroupId?: string;
|
|
11182
|
-
schedulerOptions?: DescribeScalingConfigurationsResponseBodyScalingConfigurationsSchedulerOptions;
|
|
11183
|
-
securityEnhancementStrategy?: string;
|
|
11184
|
-
securityGroupId?: string;
|
|
11185
|
-
securityGroupIds?: string[];
|
|
11186
|
-
spotDuration?: number;
|
|
11187
|
-
spotInterruptionBehavior?: string;
|
|
11188
|
-
spotPriceLimits?: DescribeScalingConfigurationsResponseBodyScalingConfigurationsSpotPriceLimits[];
|
|
11189
|
-
spotStrategy?: string;
|
|
11190
|
-
storageSetId?: string;
|
|
11191
|
-
storageSetPartitionNumber?: number;
|
|
11192
|
-
systemDiskAutoSnapshotPolicyId?: string;
|
|
11193
|
-
systemDiskBurstingEnabled?: boolean;
|
|
11194
|
-
systemDiskCategories?: string[];
|
|
11195
|
-
systemDiskCategory?: string;
|
|
11196
|
-
systemDiskDescription?: string;
|
|
11197
|
-
systemDiskEncryptAlgorithm?: string;
|
|
11198
|
-
systemDiskEncrypted?: boolean;
|
|
11199
|
-
systemDiskKMSKeyId?: string;
|
|
11200
|
-
systemDiskName?: string;
|
|
11201
|
-
systemDiskPerformanceLevel?: string;
|
|
11202
|
-
systemDiskProvisionedIops?: number;
|
|
11203
|
-
systemDiskSize?: number;
|
|
11204
|
-
tags?: DescribeScalingConfigurationsResponseBodyScalingConfigurationsTags[];
|
|
11205
|
-
tenancy?: string;
|
|
11206
|
-
userData?: string;
|
|
11207
|
-
weightedCapacities?: number[];
|
|
11208
|
-
zoneId?: string;
|
|
11519
|
+
name?: string;
|
|
11520
|
+
securityContextCapabilityAdds?: string[];
|
|
11521
|
+
securityContextReadOnlyRootFilesystem?: boolean;
|
|
11522
|
+
securityContextRunAsUser?: string;
|
|
11523
|
+
workingDir?: string;
|
|
11209
11524
|
static names(): { [key: string]: string } {
|
|
11210
11525
|
return {
|
|
11211
|
-
affinity: 'Affinity',
|
|
11212
11526
|
cpu: 'Cpu',
|
|
11213
|
-
|
|
11214
|
-
|
|
11215
|
-
|
|
11216
|
-
|
|
11217
|
-
|
|
11218
|
-
|
|
11219
|
-
|
|
11220
|
-
|
|
11221
|
-
hpcClusterId: 'HpcClusterId',
|
|
11222
|
-
imageFamily: 'ImageFamily',
|
|
11223
|
-
imageId: 'ImageId',
|
|
11224
|
-
imageName: 'ImageName',
|
|
11225
|
-
imageOptionsLoginAsNonRoot: 'ImageOptionsLoginAsNonRoot',
|
|
11226
|
-
imageOwnerAlias: 'ImageOwnerAlias',
|
|
11227
|
-
instanceDescription: 'InstanceDescription',
|
|
11228
|
-
instanceGeneration: 'InstanceGeneration',
|
|
11229
|
-
instanceName: 'InstanceName',
|
|
11230
|
-
instancePatternInfos: 'InstancePatternInfos',
|
|
11231
|
-
instanceType: 'InstanceType',
|
|
11232
|
-
instanceTypes: 'InstanceTypes',
|
|
11233
|
-
internetChargeType: 'InternetChargeType',
|
|
11234
|
-
internetMaxBandwidthIn: 'InternetMaxBandwidthIn',
|
|
11235
|
-
internetMaxBandwidthOut: 'InternetMaxBandwidthOut',
|
|
11236
|
-
ioOptimized: 'IoOptimized',
|
|
11237
|
-
ipv6AddressCount: 'Ipv6AddressCount',
|
|
11238
|
-
keyPairName: 'KeyPairName',
|
|
11239
|
-
lifecycleState: 'LifecycleState',
|
|
11240
|
-
loadBalancerWeight: 'LoadBalancerWeight',
|
|
11527
|
+
gpu: 'Gpu',
|
|
11528
|
+
image: 'Image',
|
|
11529
|
+
imagePullPolicy: 'ImagePullPolicy',
|
|
11530
|
+
initContainerArgs: 'InitContainerArgs',
|
|
11531
|
+
initContainerCommands: 'InitContainerCommands',
|
|
11532
|
+
initContainerEnvironmentVars: 'InitContainerEnvironmentVars',
|
|
11533
|
+
initContainerPorts: 'InitContainerPorts',
|
|
11534
|
+
initContainerVolumeMounts: 'InitContainerVolumeMounts',
|
|
11241
11535
|
memory: 'Memory',
|
|
11242
|
-
|
|
11243
|
-
|
|
11244
|
-
|
|
11245
|
-
|
|
11246
|
-
|
|
11247
|
-
|
|
11248
|
-
|
|
11249
|
-
|
|
11250
|
-
|
|
11251
|
-
|
|
11252
|
-
|
|
11253
|
-
|
|
11254
|
-
|
|
11255
|
-
|
|
11256
|
-
|
|
11257
|
-
|
|
11258
|
-
|
|
11259
|
-
|
|
11260
|
-
|
|
11261
|
-
|
|
11262
|
-
|
|
11536
|
+
name: 'Name',
|
|
11537
|
+
securityContextCapabilityAdds: 'SecurityContextCapabilityAdds',
|
|
11538
|
+
securityContextReadOnlyRootFilesystem: 'SecurityContextReadOnlyRootFilesystem',
|
|
11539
|
+
securityContextRunAsUser: 'SecurityContextRunAsUser',
|
|
11540
|
+
workingDir: 'WorkingDir',
|
|
11541
|
+
};
|
|
11542
|
+
}
|
|
11543
|
+
|
|
11544
|
+
static types(): { [key: string]: any } {
|
|
11545
|
+
return {
|
|
11546
|
+
cpu: 'number',
|
|
11547
|
+
gpu: 'number',
|
|
11548
|
+
image: 'string',
|
|
11549
|
+
imagePullPolicy: 'string',
|
|
11550
|
+
initContainerArgs: { 'type': 'array', 'itemType': 'string' },
|
|
11551
|
+
initContainerCommands: { 'type': 'array', 'itemType': 'string' },
|
|
11552
|
+
initContainerEnvironmentVars: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsInitContainersInitContainerEnvironmentVars },
|
|
11553
|
+
initContainerPorts: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsInitContainersInitContainerPorts },
|
|
11554
|
+
initContainerVolumeMounts: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsInitContainersInitContainerVolumeMounts },
|
|
11555
|
+
memory: 'number',
|
|
11556
|
+
name: 'string',
|
|
11557
|
+
securityContextCapabilityAdds: { 'type': 'array', 'itemType': 'string' },
|
|
11558
|
+
securityContextReadOnlyRootFilesystem: 'boolean',
|
|
11559
|
+
securityContextRunAsUser: 'string',
|
|
11560
|
+
workingDir: 'string',
|
|
11561
|
+
};
|
|
11562
|
+
}
|
|
11563
|
+
|
|
11564
|
+
constructor(map?: { [key: string]: any }) {
|
|
11565
|
+
super(map);
|
|
11566
|
+
}
|
|
11567
|
+
}
|
|
11568
|
+
|
|
11569
|
+
export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsSecurityContextSysCtls extends $tea.Model {
|
|
11570
|
+
name?: string;
|
|
11571
|
+
value?: string;
|
|
11572
|
+
static names(): { [key: string]: string } {
|
|
11573
|
+
return {
|
|
11574
|
+
name: 'Name',
|
|
11575
|
+
value: 'Value',
|
|
11576
|
+
};
|
|
11577
|
+
}
|
|
11578
|
+
|
|
11579
|
+
static types(): { [key: string]: any } {
|
|
11580
|
+
return {
|
|
11581
|
+
name: 'string',
|
|
11582
|
+
value: 'string',
|
|
11583
|
+
};
|
|
11584
|
+
}
|
|
11585
|
+
|
|
11586
|
+
constructor(map?: { [key: string]: any }) {
|
|
11587
|
+
super(map);
|
|
11588
|
+
}
|
|
11589
|
+
}
|
|
11590
|
+
|
|
11591
|
+
export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsTags extends $tea.Model {
|
|
11592
|
+
key?: string;
|
|
11593
|
+
value?: string;
|
|
11594
|
+
static names(): { [key: string]: string } {
|
|
11595
|
+
return {
|
|
11596
|
+
key: 'Key',
|
|
11597
|
+
value: 'Value',
|
|
11598
|
+
};
|
|
11599
|
+
}
|
|
11600
|
+
|
|
11601
|
+
static types(): { [key: string]: any } {
|
|
11602
|
+
return {
|
|
11603
|
+
key: 'string',
|
|
11604
|
+
value: 'string',
|
|
11605
|
+
};
|
|
11606
|
+
}
|
|
11607
|
+
|
|
11608
|
+
constructor(map?: { [key: string]: any }) {
|
|
11609
|
+
super(map);
|
|
11610
|
+
}
|
|
11611
|
+
}
|
|
11612
|
+
|
|
11613
|
+
export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsVolumesConfigFileVolumeConfigFileToPaths extends $tea.Model {
|
|
11614
|
+
content?: string;
|
|
11615
|
+
mode?: number;
|
|
11616
|
+
path?: string;
|
|
11617
|
+
static names(): { [key: string]: string } {
|
|
11618
|
+
return {
|
|
11619
|
+
content: 'Content',
|
|
11620
|
+
mode: 'Mode',
|
|
11621
|
+
path: 'Path',
|
|
11622
|
+
};
|
|
11623
|
+
}
|
|
11624
|
+
|
|
11625
|
+
static types(): { [key: string]: any } {
|
|
11626
|
+
return {
|
|
11627
|
+
content: 'string',
|
|
11628
|
+
mode: 'number',
|
|
11629
|
+
path: 'string',
|
|
11630
|
+
};
|
|
11631
|
+
}
|
|
11632
|
+
|
|
11633
|
+
constructor(map?: { [key: string]: any }) {
|
|
11634
|
+
super(map);
|
|
11635
|
+
}
|
|
11636
|
+
}
|
|
11637
|
+
|
|
11638
|
+
export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsVolumes extends $tea.Model {
|
|
11639
|
+
configFileVolumeConfigFileToPaths?: DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsVolumesConfigFileVolumeConfigFileToPaths[];
|
|
11640
|
+
configFileVolumeDefaultMode?: number;
|
|
11641
|
+
diskVolumeDiskId?: string;
|
|
11642
|
+
diskVolumeDiskSize?: number;
|
|
11643
|
+
diskVolumeFsType?: string;
|
|
11644
|
+
emptyDirVolumeMedium?: string;
|
|
11645
|
+
emptyDirVolumeSizeLimit?: string;
|
|
11646
|
+
flexVolumeDriver?: string;
|
|
11647
|
+
flexVolumeFsType?: string;
|
|
11648
|
+
flexVolumeOptions?: string;
|
|
11649
|
+
hostPathVolumePath?: string;
|
|
11650
|
+
hostPathVolumeType?: string;
|
|
11651
|
+
NFSVolumePath?: string;
|
|
11652
|
+
NFSVolumeReadOnly?: boolean;
|
|
11653
|
+
NFSVolumeServer?: string;
|
|
11654
|
+
name?: string;
|
|
11655
|
+
type?: string;
|
|
11656
|
+
static names(): { [key: string]: string } {
|
|
11657
|
+
return {
|
|
11658
|
+
configFileVolumeConfigFileToPaths: 'ConfigFileVolumeConfigFileToPaths',
|
|
11659
|
+
configFileVolumeDefaultMode: 'ConfigFileVolumeDefaultMode',
|
|
11660
|
+
diskVolumeDiskId: 'DiskVolumeDiskId',
|
|
11661
|
+
diskVolumeDiskSize: 'DiskVolumeDiskSize',
|
|
11662
|
+
diskVolumeFsType: 'DiskVolumeFsType',
|
|
11663
|
+
emptyDirVolumeMedium: 'EmptyDirVolumeMedium',
|
|
11664
|
+
emptyDirVolumeSizeLimit: 'EmptyDirVolumeSizeLimit',
|
|
11665
|
+
flexVolumeDriver: 'FlexVolumeDriver',
|
|
11666
|
+
flexVolumeFsType: 'FlexVolumeFsType',
|
|
11667
|
+
flexVolumeOptions: 'FlexVolumeOptions',
|
|
11668
|
+
hostPathVolumePath: 'HostPathVolumePath',
|
|
11669
|
+
hostPathVolumeType: 'HostPathVolumeType',
|
|
11670
|
+
NFSVolumePath: 'NFSVolumePath',
|
|
11671
|
+
NFSVolumeReadOnly: 'NFSVolumeReadOnly',
|
|
11672
|
+
NFSVolumeServer: 'NFSVolumeServer',
|
|
11673
|
+
name: 'Name',
|
|
11674
|
+
type: 'Type',
|
|
11675
|
+
};
|
|
11676
|
+
}
|
|
11677
|
+
|
|
11678
|
+
static types(): { [key: string]: any } {
|
|
11679
|
+
return {
|
|
11680
|
+
configFileVolumeConfigFileToPaths: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsVolumesConfigFileVolumeConfigFileToPaths },
|
|
11681
|
+
configFileVolumeDefaultMode: 'number',
|
|
11682
|
+
diskVolumeDiskId: 'string',
|
|
11683
|
+
diskVolumeDiskSize: 'number',
|
|
11684
|
+
diskVolumeFsType: 'string',
|
|
11685
|
+
emptyDirVolumeMedium: 'string',
|
|
11686
|
+
emptyDirVolumeSizeLimit: 'string',
|
|
11687
|
+
flexVolumeDriver: 'string',
|
|
11688
|
+
flexVolumeFsType: 'string',
|
|
11689
|
+
flexVolumeOptions: 'string',
|
|
11690
|
+
hostPathVolumePath: 'string',
|
|
11691
|
+
hostPathVolumeType: 'string',
|
|
11692
|
+
NFSVolumePath: 'string',
|
|
11693
|
+
NFSVolumeReadOnly: 'boolean',
|
|
11694
|
+
NFSVolumeServer: 'string',
|
|
11695
|
+
name: 'string',
|
|
11696
|
+
type: 'string',
|
|
11697
|
+
};
|
|
11698
|
+
}
|
|
11699
|
+
|
|
11700
|
+
constructor(map?: { [key: string]: any }) {
|
|
11701
|
+
super(map);
|
|
11702
|
+
}
|
|
11703
|
+
}
|
|
11704
|
+
|
|
11705
|
+
export class DescribeEciScalingConfigurationsResponseBodyScalingConfigurations extends $tea.Model {
|
|
11706
|
+
acrRegistryInfos?: DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsAcrRegistryInfos[];
|
|
11707
|
+
activeDeadlineSeconds?: number;
|
|
11708
|
+
autoCreateEip?: boolean;
|
|
11709
|
+
autoMatchImageCache?: boolean;
|
|
11710
|
+
containerGroupName?: string;
|
|
11711
|
+
containers?: DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsContainers[];
|
|
11712
|
+
costOptimization?: boolean;
|
|
11713
|
+
cpu?: number;
|
|
11714
|
+
cpuOptionsCore?: number;
|
|
11715
|
+
cpuOptionsThreadsPerCore?: number;
|
|
11716
|
+
creationTime?: string;
|
|
11717
|
+
dataCacheBucket?: string;
|
|
11718
|
+
dataCacheBurstingEnabled?: boolean;
|
|
11719
|
+
dataCachePL?: string;
|
|
11720
|
+
dataCacheProvisionedIops?: number;
|
|
11721
|
+
description?: string;
|
|
11722
|
+
dnsConfigNameServers?: string[];
|
|
11723
|
+
dnsConfigOptions?: DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsDnsConfigOptions[];
|
|
11724
|
+
dnsConfigSearches?: string[];
|
|
11725
|
+
dnsPolicy?: string;
|
|
11726
|
+
egressBandwidth?: number;
|
|
11727
|
+
eipBandwidth?: number;
|
|
11728
|
+
ephemeralStorage?: number;
|
|
11729
|
+
hostAliases?: DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsHostAliases[];
|
|
11730
|
+
hostName?: string;
|
|
11731
|
+
imageRegistryCredentials?: DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsImageRegistryCredentials[];
|
|
11732
|
+
imageSnapshotId?: string;
|
|
11733
|
+
ingressBandwidth?: number;
|
|
11734
|
+
initContainers?: DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsInitContainers[];
|
|
11735
|
+
instanceFamilyLevel?: string;
|
|
11736
|
+
instanceTypes?: string[];
|
|
11737
|
+
ipv6AddressCount?: number;
|
|
11738
|
+
lifecycleState?: string;
|
|
11739
|
+
loadBalancerWeight?: number;
|
|
11740
|
+
memory?: number;
|
|
11741
|
+
ntpServers?: string[];
|
|
11742
|
+
ramRoleName?: string;
|
|
11743
|
+
regionId?: string;
|
|
11744
|
+
resourceGroupId?: string;
|
|
11745
|
+
restartPolicy?: string;
|
|
11746
|
+
scalingConfigurationId?: string;
|
|
11747
|
+
scalingConfigurationName?: string;
|
|
11748
|
+
scalingGroupId?: string;
|
|
11749
|
+
securityContextSysCtls?: DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsSecurityContextSysCtls[];
|
|
11750
|
+
securityGroupId?: string;
|
|
11751
|
+
slsEnable?: boolean;
|
|
11752
|
+
spotPriceLimit?: number;
|
|
11753
|
+
spotStrategy?: string;
|
|
11754
|
+
tags?: DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsTags[];
|
|
11755
|
+
terminationGracePeriodSeconds?: number;
|
|
11756
|
+
volumes?: DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsVolumes[];
|
|
11757
|
+
static names(): { [key: string]: string } {
|
|
11758
|
+
return {
|
|
11759
|
+
acrRegistryInfos: 'AcrRegistryInfos',
|
|
11760
|
+
activeDeadlineSeconds: 'ActiveDeadlineSeconds',
|
|
11761
|
+
autoCreateEip: 'AutoCreateEip',
|
|
11762
|
+
autoMatchImageCache: 'AutoMatchImageCache',
|
|
11763
|
+
containerGroupName: 'ContainerGroupName',
|
|
11764
|
+
containers: 'Containers',
|
|
11765
|
+
costOptimization: 'CostOptimization',
|
|
11766
|
+
cpu: 'Cpu',
|
|
11767
|
+
cpuOptionsCore: 'CpuOptionsCore',
|
|
11768
|
+
cpuOptionsThreadsPerCore: 'CpuOptionsThreadsPerCore',
|
|
11769
|
+
creationTime: 'CreationTime',
|
|
11770
|
+
dataCacheBucket: 'DataCacheBucket',
|
|
11771
|
+
dataCacheBurstingEnabled: 'DataCacheBurstingEnabled',
|
|
11772
|
+
dataCachePL: 'DataCachePL',
|
|
11773
|
+
dataCacheProvisionedIops: 'DataCacheProvisionedIops',
|
|
11774
|
+
description: 'Description',
|
|
11775
|
+
dnsConfigNameServers: 'DnsConfigNameServers',
|
|
11776
|
+
dnsConfigOptions: 'DnsConfigOptions',
|
|
11777
|
+
dnsConfigSearches: 'DnsConfigSearches',
|
|
11778
|
+
dnsPolicy: 'DnsPolicy',
|
|
11779
|
+
egressBandwidth: 'EgressBandwidth',
|
|
11780
|
+
eipBandwidth: 'EipBandwidth',
|
|
11781
|
+
ephemeralStorage: 'EphemeralStorage',
|
|
11782
|
+
hostAliases: 'HostAliases',
|
|
11783
|
+
hostName: 'HostName',
|
|
11784
|
+
imageRegistryCredentials: 'ImageRegistryCredentials',
|
|
11785
|
+
imageSnapshotId: 'ImageSnapshotId',
|
|
11786
|
+
ingressBandwidth: 'IngressBandwidth',
|
|
11787
|
+
initContainers: 'InitContainers',
|
|
11788
|
+
instanceFamilyLevel: 'InstanceFamilyLevel',
|
|
11789
|
+
instanceTypes: 'InstanceTypes',
|
|
11790
|
+
ipv6AddressCount: 'Ipv6AddressCount',
|
|
11791
|
+
lifecycleState: 'LifecycleState',
|
|
11792
|
+
loadBalancerWeight: 'LoadBalancerWeight',
|
|
11793
|
+
memory: 'Memory',
|
|
11794
|
+
ntpServers: 'NtpServers',
|
|
11795
|
+
ramRoleName: 'RamRoleName',
|
|
11796
|
+
regionId: 'RegionId',
|
|
11797
|
+
resourceGroupId: 'ResourceGroupId',
|
|
11798
|
+
restartPolicy: 'RestartPolicy',
|
|
11799
|
+
scalingConfigurationId: 'ScalingConfigurationId',
|
|
11800
|
+
scalingConfigurationName: 'ScalingConfigurationName',
|
|
11801
|
+
scalingGroupId: 'ScalingGroupId',
|
|
11802
|
+
securityContextSysCtls: 'SecurityContextSysCtls',
|
|
11803
|
+
securityGroupId: 'SecurityGroupId',
|
|
11804
|
+
slsEnable: 'SlsEnable',
|
|
11805
|
+
spotPriceLimit: 'SpotPriceLimit',
|
|
11806
|
+
spotStrategy: 'SpotStrategy',
|
|
11807
|
+
tags: 'Tags',
|
|
11808
|
+
terminationGracePeriodSeconds: 'TerminationGracePeriodSeconds',
|
|
11809
|
+
volumes: 'Volumes',
|
|
11810
|
+
};
|
|
11811
|
+
}
|
|
11812
|
+
|
|
11813
|
+
static types(): { [key: string]: any } {
|
|
11814
|
+
return {
|
|
11815
|
+
acrRegistryInfos: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsAcrRegistryInfos },
|
|
11816
|
+
activeDeadlineSeconds: 'number',
|
|
11817
|
+
autoCreateEip: 'boolean',
|
|
11818
|
+
autoMatchImageCache: 'boolean',
|
|
11819
|
+
containerGroupName: 'string',
|
|
11820
|
+
containers: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsContainers },
|
|
11821
|
+
costOptimization: 'boolean',
|
|
11822
|
+
cpu: 'number',
|
|
11823
|
+
cpuOptionsCore: 'number',
|
|
11824
|
+
cpuOptionsThreadsPerCore: 'number',
|
|
11825
|
+
creationTime: 'string',
|
|
11826
|
+
dataCacheBucket: 'string',
|
|
11827
|
+
dataCacheBurstingEnabled: 'boolean',
|
|
11828
|
+
dataCachePL: 'string',
|
|
11829
|
+
dataCacheProvisionedIops: 'number',
|
|
11830
|
+
description: 'string',
|
|
11831
|
+
dnsConfigNameServers: { 'type': 'array', 'itemType': 'string' },
|
|
11832
|
+
dnsConfigOptions: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsDnsConfigOptions },
|
|
11833
|
+
dnsConfigSearches: { 'type': 'array', 'itemType': 'string' },
|
|
11834
|
+
dnsPolicy: 'string',
|
|
11835
|
+
egressBandwidth: 'number',
|
|
11836
|
+
eipBandwidth: 'number',
|
|
11837
|
+
ephemeralStorage: 'number',
|
|
11838
|
+
hostAliases: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsHostAliases },
|
|
11839
|
+
hostName: 'string',
|
|
11840
|
+
imageRegistryCredentials: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsImageRegistryCredentials },
|
|
11841
|
+
imageSnapshotId: 'string',
|
|
11842
|
+
ingressBandwidth: 'number',
|
|
11843
|
+
initContainers: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsInitContainers },
|
|
11844
|
+
instanceFamilyLevel: 'string',
|
|
11845
|
+
instanceTypes: { 'type': 'array', 'itemType': 'string' },
|
|
11846
|
+
ipv6AddressCount: 'number',
|
|
11847
|
+
lifecycleState: 'string',
|
|
11848
|
+
loadBalancerWeight: 'number',
|
|
11849
|
+
memory: 'number',
|
|
11850
|
+
ntpServers: { 'type': 'array', 'itemType': 'string' },
|
|
11851
|
+
ramRoleName: 'string',
|
|
11852
|
+
regionId: 'string',
|
|
11853
|
+
resourceGroupId: 'string',
|
|
11854
|
+
restartPolicy: 'string',
|
|
11855
|
+
scalingConfigurationId: 'string',
|
|
11856
|
+
scalingConfigurationName: 'string',
|
|
11857
|
+
scalingGroupId: 'string',
|
|
11858
|
+
securityContextSysCtls: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsSecurityContextSysCtls },
|
|
11859
|
+
securityGroupId: 'string',
|
|
11860
|
+
slsEnable: 'boolean',
|
|
11861
|
+
spotPriceLimit: 'number',
|
|
11862
|
+
spotStrategy: 'string',
|
|
11863
|
+
tags: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsTags },
|
|
11864
|
+
terminationGracePeriodSeconds: 'number',
|
|
11865
|
+
volumes: { 'type': 'array', 'itemType': DescribeEciScalingConfigurationsResponseBodyScalingConfigurationsVolumes },
|
|
11866
|
+
};
|
|
11867
|
+
}
|
|
11868
|
+
|
|
11869
|
+
constructor(map?: { [key: string]: any }) {
|
|
11870
|
+
super(map);
|
|
11871
|
+
}
|
|
11872
|
+
}
|
|
11873
|
+
|
|
11874
|
+
export class DescribeLifecycleActionsResponseBodyLifecycleActions extends $tea.Model {
|
|
11875
|
+
instanceIds?: string[];
|
|
11876
|
+
lifecycleActionResult?: string;
|
|
11877
|
+
lifecycleActionStatus?: string;
|
|
11878
|
+
lifecycleActionToken?: string;
|
|
11879
|
+
lifecycleHookId?: string;
|
|
11880
|
+
static names(): { [key: string]: string } {
|
|
11881
|
+
return {
|
|
11882
|
+
instanceIds: 'InstanceIds',
|
|
11883
|
+
lifecycleActionResult: 'LifecycleActionResult',
|
|
11884
|
+
lifecycleActionStatus: 'LifecycleActionStatus',
|
|
11885
|
+
lifecycleActionToken: 'LifecycleActionToken',
|
|
11886
|
+
lifecycleHookId: 'LifecycleHookId',
|
|
11887
|
+
};
|
|
11888
|
+
}
|
|
11889
|
+
|
|
11890
|
+
static types(): { [key: string]: any } {
|
|
11891
|
+
return {
|
|
11892
|
+
instanceIds: { 'type': 'array', 'itemType': 'string' },
|
|
11893
|
+
lifecycleActionResult: 'string',
|
|
11894
|
+
lifecycleActionStatus: 'string',
|
|
11895
|
+
lifecycleActionToken: 'string',
|
|
11896
|
+
lifecycleHookId: 'string',
|
|
11897
|
+
};
|
|
11898
|
+
}
|
|
11899
|
+
|
|
11900
|
+
constructor(map?: { [key: string]: any }) {
|
|
11901
|
+
super(map);
|
|
11902
|
+
}
|
|
11903
|
+
}
|
|
11904
|
+
|
|
11905
|
+
export class DescribeLifecycleHooksResponseBodyLifecycleHooks extends $tea.Model {
|
|
11906
|
+
defaultResult?: string;
|
|
11907
|
+
heartbeatTimeout?: number;
|
|
11908
|
+
lifecycleHookId?: string;
|
|
11909
|
+
lifecycleHookName?: string;
|
|
11910
|
+
lifecycleHookStatus?: string;
|
|
11911
|
+
lifecycleTransition?: string;
|
|
11912
|
+
notificationArn?: string;
|
|
11913
|
+
notificationMetadata?: string;
|
|
11914
|
+
scalingGroupId?: string;
|
|
11915
|
+
static names(): { [key: string]: string } {
|
|
11916
|
+
return {
|
|
11917
|
+
defaultResult: 'DefaultResult',
|
|
11918
|
+
heartbeatTimeout: 'HeartbeatTimeout',
|
|
11919
|
+
lifecycleHookId: 'LifecycleHookId',
|
|
11920
|
+
lifecycleHookName: 'LifecycleHookName',
|
|
11921
|
+
lifecycleHookStatus: 'LifecycleHookStatus',
|
|
11922
|
+
lifecycleTransition: 'LifecycleTransition',
|
|
11923
|
+
notificationArn: 'NotificationArn',
|
|
11924
|
+
notificationMetadata: 'NotificationMetadata',
|
|
11925
|
+
scalingGroupId: 'ScalingGroupId',
|
|
11926
|
+
};
|
|
11927
|
+
}
|
|
11928
|
+
|
|
11929
|
+
static types(): { [key: string]: any } {
|
|
11930
|
+
return {
|
|
11931
|
+
defaultResult: 'string',
|
|
11932
|
+
heartbeatTimeout: 'number',
|
|
11933
|
+
lifecycleHookId: 'string',
|
|
11934
|
+
lifecycleHookName: 'string',
|
|
11935
|
+
lifecycleHookStatus: 'string',
|
|
11936
|
+
lifecycleTransition: 'string',
|
|
11937
|
+
notificationArn: 'string',
|
|
11938
|
+
notificationMetadata: 'string',
|
|
11939
|
+
scalingGroupId: 'string',
|
|
11940
|
+
};
|
|
11941
|
+
}
|
|
11942
|
+
|
|
11943
|
+
constructor(map?: { [key: string]: any }) {
|
|
11944
|
+
super(map);
|
|
11945
|
+
}
|
|
11946
|
+
}
|
|
11947
|
+
|
|
11948
|
+
export class DescribeNotificationConfigurationsResponseBodyNotificationConfigurationModels extends $tea.Model {
|
|
11949
|
+
notificationArn?: string;
|
|
11950
|
+
notificationTypes?: string[];
|
|
11951
|
+
scalingGroupId?: string;
|
|
11952
|
+
static names(): { [key: string]: string } {
|
|
11953
|
+
return {
|
|
11954
|
+
notificationArn: 'NotificationArn',
|
|
11955
|
+
notificationTypes: 'NotificationTypes',
|
|
11956
|
+
scalingGroupId: 'ScalingGroupId',
|
|
11957
|
+
};
|
|
11958
|
+
}
|
|
11959
|
+
|
|
11960
|
+
static types(): { [key: string]: any } {
|
|
11961
|
+
return {
|
|
11962
|
+
notificationArn: 'string',
|
|
11963
|
+
notificationTypes: { 'type': 'array', 'itemType': 'string' },
|
|
11964
|
+
scalingGroupId: 'string',
|
|
11965
|
+
};
|
|
11966
|
+
}
|
|
11967
|
+
|
|
11968
|
+
constructor(map?: { [key: string]: any }) {
|
|
11969
|
+
super(map);
|
|
11970
|
+
}
|
|
11971
|
+
}
|
|
11972
|
+
|
|
11973
|
+
export class DescribeRegionsResponseBodyRegions extends $tea.Model {
|
|
11974
|
+
classicUnavailable?: boolean;
|
|
11975
|
+
localName?: string;
|
|
11976
|
+
regionEndpoint?: string;
|
|
11977
|
+
regionId?: string;
|
|
11978
|
+
vpcUnavailable?: boolean;
|
|
11979
|
+
static names(): { [key: string]: string } {
|
|
11980
|
+
return {
|
|
11981
|
+
classicUnavailable: 'ClassicUnavailable',
|
|
11982
|
+
localName: 'LocalName',
|
|
11983
|
+
regionEndpoint: 'RegionEndpoint',
|
|
11984
|
+
regionId: 'RegionId',
|
|
11985
|
+
vpcUnavailable: 'VpcUnavailable',
|
|
11986
|
+
};
|
|
11987
|
+
}
|
|
11988
|
+
|
|
11989
|
+
static types(): { [key: string]: any } {
|
|
11990
|
+
return {
|
|
11991
|
+
classicUnavailable: 'boolean',
|
|
11992
|
+
localName: 'string',
|
|
11993
|
+
regionEndpoint: 'string',
|
|
11994
|
+
regionId: 'string',
|
|
11995
|
+
vpcUnavailable: 'boolean',
|
|
11996
|
+
};
|
|
11997
|
+
}
|
|
11998
|
+
|
|
11999
|
+
constructor(map?: { [key: string]: any }) {
|
|
12000
|
+
super(map);
|
|
12001
|
+
}
|
|
12002
|
+
}
|
|
12003
|
+
|
|
12004
|
+
export class DescribeScalingActivitiesResponseBodyScalingActivitiesLifecycleHookContext extends $tea.Model {
|
|
12005
|
+
disableLifecycleHook?: boolean;
|
|
12006
|
+
ignoredLifecycleHookIds?: string[];
|
|
12007
|
+
static names(): { [key: string]: string } {
|
|
12008
|
+
return {
|
|
12009
|
+
disableLifecycleHook: 'DisableLifecycleHook',
|
|
12010
|
+
ignoredLifecycleHookIds: 'IgnoredLifecycleHookIds',
|
|
12011
|
+
};
|
|
12012
|
+
}
|
|
12013
|
+
|
|
12014
|
+
static types(): { [key: string]: any } {
|
|
12015
|
+
return {
|
|
12016
|
+
disableLifecycleHook: 'boolean',
|
|
12017
|
+
ignoredLifecycleHookIds: { 'type': 'array', 'itemType': 'string' },
|
|
12018
|
+
};
|
|
12019
|
+
}
|
|
12020
|
+
|
|
12021
|
+
constructor(map?: { [key: string]: any }) {
|
|
12022
|
+
super(map);
|
|
12023
|
+
}
|
|
12024
|
+
}
|
|
12025
|
+
|
|
12026
|
+
export class DescribeScalingActivitiesResponseBodyScalingActivities extends $tea.Model {
|
|
12027
|
+
activityMetadata?: string;
|
|
12028
|
+
attachedCapacity?: string;
|
|
12029
|
+
autoCreatedCapacity?: string;
|
|
12030
|
+
cause?: string;
|
|
12031
|
+
createdCapacity?: number;
|
|
12032
|
+
createdInstances?: string[];
|
|
12033
|
+
description?: string;
|
|
12034
|
+
destroyedCapacity?: number;
|
|
12035
|
+
destroyedInstances?: string[];
|
|
12036
|
+
detail?: string;
|
|
12037
|
+
endTime?: string;
|
|
12038
|
+
errorCode?: string;
|
|
12039
|
+
errorMessage?: string;
|
|
12040
|
+
lifecycleHookContext?: DescribeScalingActivitiesResponseBodyScalingActivitiesLifecycleHookContext;
|
|
12041
|
+
progress?: number;
|
|
12042
|
+
scalingActivityId?: string;
|
|
12043
|
+
scalingGroupId?: string;
|
|
12044
|
+
scalingInstanceNumber?: number;
|
|
12045
|
+
startTime?: string;
|
|
12046
|
+
startedCapacity?: number;
|
|
12047
|
+
startedInstances?: string[];
|
|
12048
|
+
statusCode?: string;
|
|
12049
|
+
statusMessage?: string;
|
|
12050
|
+
stoppedCapacity?: number;
|
|
12051
|
+
stoppedInstances?: string[];
|
|
12052
|
+
totalCapacity?: string;
|
|
12053
|
+
triggerSourceId?: string;
|
|
12054
|
+
triggerSourceType?: string;
|
|
12055
|
+
static names(): { [key: string]: string } {
|
|
12056
|
+
return {
|
|
12057
|
+
activityMetadata: 'ActivityMetadata',
|
|
12058
|
+
attachedCapacity: 'AttachedCapacity',
|
|
12059
|
+
autoCreatedCapacity: 'AutoCreatedCapacity',
|
|
12060
|
+
cause: 'Cause',
|
|
12061
|
+
createdCapacity: 'CreatedCapacity',
|
|
12062
|
+
createdInstances: 'CreatedInstances',
|
|
12063
|
+
description: 'Description',
|
|
12064
|
+
destroyedCapacity: 'DestroyedCapacity',
|
|
12065
|
+
destroyedInstances: 'DestroyedInstances',
|
|
12066
|
+
detail: 'Detail',
|
|
12067
|
+
endTime: 'EndTime',
|
|
12068
|
+
errorCode: 'ErrorCode',
|
|
12069
|
+
errorMessage: 'ErrorMessage',
|
|
12070
|
+
lifecycleHookContext: 'LifecycleHookContext',
|
|
12071
|
+
progress: 'Progress',
|
|
12072
|
+
scalingActivityId: 'ScalingActivityId',
|
|
12073
|
+
scalingGroupId: 'ScalingGroupId',
|
|
12074
|
+
scalingInstanceNumber: 'ScalingInstanceNumber',
|
|
12075
|
+
startTime: 'StartTime',
|
|
12076
|
+
startedCapacity: 'StartedCapacity',
|
|
12077
|
+
startedInstances: 'StartedInstances',
|
|
12078
|
+
statusCode: 'StatusCode',
|
|
12079
|
+
statusMessage: 'StatusMessage',
|
|
12080
|
+
stoppedCapacity: 'StoppedCapacity',
|
|
12081
|
+
stoppedInstances: 'StoppedInstances',
|
|
12082
|
+
totalCapacity: 'TotalCapacity',
|
|
12083
|
+
triggerSourceId: 'TriggerSourceId',
|
|
12084
|
+
triggerSourceType: 'TriggerSourceType',
|
|
12085
|
+
};
|
|
12086
|
+
}
|
|
12087
|
+
|
|
12088
|
+
static types(): { [key: string]: any } {
|
|
12089
|
+
return {
|
|
12090
|
+
activityMetadata: 'string',
|
|
12091
|
+
attachedCapacity: 'string',
|
|
12092
|
+
autoCreatedCapacity: 'string',
|
|
12093
|
+
cause: 'string',
|
|
12094
|
+
createdCapacity: 'number',
|
|
12095
|
+
createdInstances: { 'type': 'array', 'itemType': 'string' },
|
|
12096
|
+
description: 'string',
|
|
12097
|
+
destroyedCapacity: 'number',
|
|
12098
|
+
destroyedInstances: { 'type': 'array', 'itemType': 'string' },
|
|
12099
|
+
detail: 'string',
|
|
12100
|
+
endTime: 'string',
|
|
12101
|
+
errorCode: 'string',
|
|
12102
|
+
errorMessage: 'string',
|
|
12103
|
+
lifecycleHookContext: DescribeScalingActivitiesResponseBodyScalingActivitiesLifecycleHookContext,
|
|
12104
|
+
progress: 'number',
|
|
12105
|
+
scalingActivityId: 'string',
|
|
12106
|
+
scalingGroupId: 'string',
|
|
12107
|
+
scalingInstanceNumber: 'number',
|
|
12108
|
+
startTime: 'string',
|
|
12109
|
+
startedCapacity: 'number',
|
|
12110
|
+
startedInstances: { 'type': 'array', 'itemType': 'string' },
|
|
12111
|
+
statusCode: 'string',
|
|
12112
|
+
statusMessage: 'string',
|
|
12113
|
+
stoppedCapacity: 'number',
|
|
12114
|
+
stoppedInstances: { 'type': 'array', 'itemType': 'string' },
|
|
12115
|
+
totalCapacity: 'string',
|
|
12116
|
+
triggerSourceId: 'string',
|
|
12117
|
+
triggerSourceType: 'string',
|
|
12118
|
+
};
|
|
12119
|
+
}
|
|
12120
|
+
|
|
12121
|
+
constructor(map?: { [key: string]: any }) {
|
|
12122
|
+
super(map);
|
|
12123
|
+
}
|
|
12124
|
+
}
|
|
12125
|
+
|
|
12126
|
+
export class DescribeScalingConfigurationsResponseBodyScalingConfigurationsCustomPriorities extends $tea.Model {
|
|
12127
|
+
instanceType?: string;
|
|
12128
|
+
vswitchId?: string;
|
|
12129
|
+
static names(): { [key: string]: string } {
|
|
12130
|
+
return {
|
|
12131
|
+
instanceType: 'InstanceType',
|
|
12132
|
+
vswitchId: 'VswitchId',
|
|
12133
|
+
};
|
|
12134
|
+
}
|
|
12135
|
+
|
|
12136
|
+
static types(): { [key: string]: any } {
|
|
12137
|
+
return {
|
|
12138
|
+
instanceType: 'string',
|
|
12139
|
+
vswitchId: 'string',
|
|
12140
|
+
};
|
|
12141
|
+
}
|
|
12142
|
+
|
|
12143
|
+
constructor(map?: { [key: string]: any }) {
|
|
12144
|
+
super(map);
|
|
12145
|
+
}
|
|
12146
|
+
}
|
|
12147
|
+
|
|
12148
|
+
export class DescribeScalingConfigurationsResponseBodyScalingConfigurationsDataDisks extends $tea.Model {
|
|
12149
|
+
autoSnapshotPolicyId?: string;
|
|
12150
|
+
burstingEnabled?: boolean;
|
|
12151
|
+
categories?: string[];
|
|
12152
|
+
category?: string;
|
|
12153
|
+
deleteWithInstance?: boolean;
|
|
12154
|
+
description?: string;
|
|
12155
|
+
device?: string;
|
|
12156
|
+
diskName?: string;
|
|
12157
|
+
encrypted?: string;
|
|
12158
|
+
KMSKeyId?: string;
|
|
12159
|
+
performanceLevel?: string;
|
|
12160
|
+
provisionedIops?: number;
|
|
12161
|
+
size?: number;
|
|
12162
|
+
snapshotId?: string;
|
|
12163
|
+
static names(): { [key: string]: string } {
|
|
12164
|
+
return {
|
|
12165
|
+
autoSnapshotPolicyId: 'AutoSnapshotPolicyId',
|
|
12166
|
+
burstingEnabled: 'BurstingEnabled',
|
|
12167
|
+
categories: 'Categories',
|
|
12168
|
+
category: 'Category',
|
|
12169
|
+
deleteWithInstance: 'DeleteWithInstance',
|
|
12170
|
+
description: 'Description',
|
|
12171
|
+
device: 'Device',
|
|
12172
|
+
diskName: 'DiskName',
|
|
12173
|
+
encrypted: 'Encrypted',
|
|
12174
|
+
KMSKeyId: 'KMSKeyId',
|
|
12175
|
+
performanceLevel: 'PerformanceLevel',
|
|
12176
|
+
provisionedIops: 'ProvisionedIops',
|
|
12177
|
+
size: 'Size',
|
|
12178
|
+
snapshotId: 'SnapshotId',
|
|
12179
|
+
};
|
|
12180
|
+
}
|
|
12181
|
+
|
|
12182
|
+
static types(): { [key: string]: any } {
|
|
12183
|
+
return {
|
|
12184
|
+
autoSnapshotPolicyId: 'string',
|
|
12185
|
+
burstingEnabled: 'boolean',
|
|
12186
|
+
categories: { 'type': 'array', 'itemType': 'string' },
|
|
12187
|
+
category: 'string',
|
|
12188
|
+
deleteWithInstance: 'boolean',
|
|
12189
|
+
description: 'string',
|
|
12190
|
+
device: 'string',
|
|
12191
|
+
diskName: 'string',
|
|
12192
|
+
encrypted: 'string',
|
|
12193
|
+
KMSKeyId: 'string',
|
|
12194
|
+
performanceLevel: 'string',
|
|
12195
|
+
provisionedIops: 'number',
|
|
12196
|
+
size: 'number',
|
|
12197
|
+
snapshotId: 'string',
|
|
12198
|
+
};
|
|
12199
|
+
}
|
|
12200
|
+
|
|
12201
|
+
constructor(map?: { [key: string]: any }) {
|
|
12202
|
+
super(map);
|
|
12203
|
+
}
|
|
12204
|
+
}
|
|
12205
|
+
|
|
12206
|
+
export class DescribeScalingConfigurationsResponseBodyScalingConfigurationsInstancePatternInfos extends $tea.Model {
|
|
12207
|
+
architectures?: string[];
|
|
12208
|
+
burstablePerformance?: string;
|
|
12209
|
+
cores?: number;
|
|
12210
|
+
excludedInstanceTypes?: string[];
|
|
12211
|
+
instanceFamilyLevel?: string;
|
|
12212
|
+
maxPrice?: number;
|
|
12213
|
+
memory?: number;
|
|
12214
|
+
static names(): { [key: string]: string } {
|
|
12215
|
+
return {
|
|
12216
|
+
architectures: 'Architectures',
|
|
12217
|
+
burstablePerformance: 'BurstablePerformance',
|
|
12218
|
+
cores: 'Cores',
|
|
12219
|
+
excludedInstanceTypes: 'ExcludedInstanceTypes',
|
|
12220
|
+
instanceFamilyLevel: 'InstanceFamilyLevel',
|
|
12221
|
+
maxPrice: 'MaxPrice',
|
|
12222
|
+
memory: 'Memory',
|
|
12223
|
+
};
|
|
12224
|
+
}
|
|
12225
|
+
|
|
12226
|
+
static types(): { [key: string]: any } {
|
|
12227
|
+
return {
|
|
12228
|
+
architectures: { 'type': 'array', 'itemType': 'string' },
|
|
12229
|
+
burstablePerformance: 'string',
|
|
12230
|
+
cores: 'number',
|
|
12231
|
+
excludedInstanceTypes: { 'type': 'array', 'itemType': 'string' },
|
|
12232
|
+
instanceFamilyLevel: 'string',
|
|
12233
|
+
maxPrice: 'number',
|
|
12234
|
+
memory: 'number',
|
|
12235
|
+
};
|
|
12236
|
+
}
|
|
12237
|
+
|
|
12238
|
+
constructor(map?: { [key: string]: any }) {
|
|
12239
|
+
super(map);
|
|
12240
|
+
}
|
|
12241
|
+
}
|
|
12242
|
+
|
|
12243
|
+
export class DescribeScalingConfigurationsResponseBodyScalingConfigurationsSchedulerOptions extends $tea.Model {
|
|
12244
|
+
managedPrivateSpaceId?: string;
|
|
12245
|
+
static names(): { [key: string]: string } {
|
|
12246
|
+
return {
|
|
12247
|
+
managedPrivateSpaceId: 'ManagedPrivateSpaceId',
|
|
12248
|
+
};
|
|
12249
|
+
}
|
|
12250
|
+
|
|
12251
|
+
static types(): { [key: string]: any } {
|
|
12252
|
+
return {
|
|
12253
|
+
managedPrivateSpaceId: 'string',
|
|
12254
|
+
};
|
|
12255
|
+
}
|
|
12256
|
+
|
|
12257
|
+
constructor(map?: { [key: string]: any }) {
|
|
12258
|
+
super(map);
|
|
12259
|
+
}
|
|
12260
|
+
}
|
|
12261
|
+
|
|
12262
|
+
export class DescribeScalingConfigurationsResponseBodyScalingConfigurationsSpotPriceLimits extends $tea.Model {
|
|
12263
|
+
instanceType?: string;
|
|
12264
|
+
priceLimit?: number;
|
|
12265
|
+
static names(): { [key: string]: string } {
|
|
12266
|
+
return {
|
|
12267
|
+
instanceType: 'InstanceType',
|
|
12268
|
+
priceLimit: 'PriceLimit',
|
|
12269
|
+
};
|
|
12270
|
+
}
|
|
12271
|
+
|
|
12272
|
+
static types(): { [key: string]: any } {
|
|
12273
|
+
return {
|
|
12274
|
+
instanceType: 'string',
|
|
12275
|
+
priceLimit: 'number',
|
|
12276
|
+
};
|
|
12277
|
+
}
|
|
12278
|
+
|
|
12279
|
+
constructor(map?: { [key: string]: any }) {
|
|
12280
|
+
super(map);
|
|
12281
|
+
}
|
|
12282
|
+
}
|
|
12283
|
+
|
|
12284
|
+
export class DescribeScalingConfigurationsResponseBodyScalingConfigurationsTags extends $tea.Model {
|
|
12285
|
+
key?: string;
|
|
12286
|
+
value?: string;
|
|
12287
|
+
static names(): { [key: string]: string } {
|
|
12288
|
+
return {
|
|
12289
|
+
key: 'Key',
|
|
12290
|
+
value: 'Value',
|
|
12291
|
+
};
|
|
12292
|
+
}
|
|
12293
|
+
|
|
12294
|
+
static types(): { [key: string]: any } {
|
|
12295
|
+
return {
|
|
12296
|
+
key: 'string',
|
|
12297
|
+
value: 'string',
|
|
12298
|
+
};
|
|
12299
|
+
}
|
|
12300
|
+
|
|
12301
|
+
constructor(map?: { [key: string]: any }) {
|
|
12302
|
+
super(map);
|
|
12303
|
+
}
|
|
12304
|
+
}
|
|
12305
|
+
|
|
12306
|
+
export class DescribeScalingConfigurationsResponseBodyScalingConfigurations extends $tea.Model {
|
|
12307
|
+
affinity?: string;
|
|
12308
|
+
cpu?: number;
|
|
12309
|
+
creationTime?: string;
|
|
12310
|
+
creditSpecification?: string;
|
|
12311
|
+
customPriorities?: DescribeScalingConfigurationsResponseBodyScalingConfigurationsCustomPriorities[];
|
|
12312
|
+
dataDisks?: DescribeScalingConfigurationsResponseBodyScalingConfigurationsDataDisks[];
|
|
12313
|
+
dedicatedHostId?: string;
|
|
12314
|
+
deletionProtection?: boolean;
|
|
12315
|
+
deploymentSetId?: string;
|
|
12316
|
+
hostName?: string;
|
|
12317
|
+
hpcClusterId?: string;
|
|
12318
|
+
imageFamily?: string;
|
|
12319
|
+
imageId?: string;
|
|
12320
|
+
imageName?: string;
|
|
12321
|
+
imageOptionsLoginAsNonRoot?: boolean;
|
|
12322
|
+
imageOwnerAlias?: string;
|
|
12323
|
+
instanceDescription?: string;
|
|
12324
|
+
instanceGeneration?: string;
|
|
12325
|
+
instanceName?: string;
|
|
12326
|
+
instancePatternInfos?: DescribeScalingConfigurationsResponseBodyScalingConfigurationsInstancePatternInfos[];
|
|
12327
|
+
instanceType?: string;
|
|
12328
|
+
instanceTypes?: string[];
|
|
12329
|
+
internetChargeType?: string;
|
|
12330
|
+
internetMaxBandwidthIn?: number;
|
|
12331
|
+
internetMaxBandwidthOut?: number;
|
|
12332
|
+
ioOptimized?: string;
|
|
12333
|
+
ipv6AddressCount?: number;
|
|
12334
|
+
keyPairName?: string;
|
|
12335
|
+
lifecycleState?: string;
|
|
12336
|
+
loadBalancerWeight?: number;
|
|
12337
|
+
memory?: number;
|
|
12338
|
+
passwordInherit?: boolean;
|
|
12339
|
+
privatePoolOptions_id?: string;
|
|
12340
|
+
privatePoolOptions_matchCriteria?: string;
|
|
12341
|
+
ramRoleName?: string;
|
|
12342
|
+
resourceGroupId?: string;
|
|
12343
|
+
scalingConfigurationId?: string;
|
|
12344
|
+
scalingConfigurationName?: string;
|
|
12345
|
+
scalingGroupId?: string;
|
|
12346
|
+
schedulerOptions?: DescribeScalingConfigurationsResponseBodyScalingConfigurationsSchedulerOptions;
|
|
12347
|
+
securityEnhancementStrategy?: string;
|
|
12348
|
+
securityGroupId?: string;
|
|
12349
|
+
securityGroupIds?: string[];
|
|
12350
|
+
spotDuration?: number;
|
|
12351
|
+
spotInterruptionBehavior?: string;
|
|
12352
|
+
spotPriceLimits?: DescribeScalingConfigurationsResponseBodyScalingConfigurationsSpotPriceLimits[];
|
|
12353
|
+
spotStrategy?: string;
|
|
12354
|
+
storageSetId?: string;
|
|
12355
|
+
storageSetPartitionNumber?: number;
|
|
12356
|
+
systemDiskAutoSnapshotPolicyId?: string;
|
|
12357
|
+
systemDiskBurstingEnabled?: boolean;
|
|
12358
|
+
systemDiskCategories?: string[];
|
|
12359
|
+
systemDiskCategory?: string;
|
|
12360
|
+
systemDiskDescription?: string;
|
|
12361
|
+
systemDiskEncryptAlgorithm?: string;
|
|
12362
|
+
systemDiskEncrypted?: boolean;
|
|
12363
|
+
systemDiskKMSKeyId?: string;
|
|
12364
|
+
systemDiskName?: string;
|
|
12365
|
+
systemDiskPerformanceLevel?: string;
|
|
12366
|
+
systemDiskProvisionedIops?: number;
|
|
12367
|
+
systemDiskSize?: number;
|
|
12368
|
+
tags?: DescribeScalingConfigurationsResponseBodyScalingConfigurationsTags[];
|
|
12369
|
+
tenancy?: string;
|
|
12370
|
+
userData?: string;
|
|
12371
|
+
weightedCapacities?: number[];
|
|
12372
|
+
zoneId?: string;
|
|
12373
|
+
static names(): { [key: string]: string } {
|
|
12374
|
+
return {
|
|
12375
|
+
affinity: 'Affinity',
|
|
12376
|
+
cpu: 'Cpu',
|
|
12377
|
+
creationTime: 'CreationTime',
|
|
12378
|
+
creditSpecification: 'CreditSpecification',
|
|
12379
|
+
customPriorities: 'CustomPriorities',
|
|
12380
|
+
dataDisks: 'DataDisks',
|
|
12381
|
+
dedicatedHostId: 'DedicatedHostId',
|
|
12382
|
+
deletionProtection: 'DeletionProtection',
|
|
12383
|
+
deploymentSetId: 'DeploymentSetId',
|
|
12384
|
+
hostName: 'HostName',
|
|
12385
|
+
hpcClusterId: 'HpcClusterId',
|
|
12386
|
+
imageFamily: 'ImageFamily',
|
|
12387
|
+
imageId: 'ImageId',
|
|
12388
|
+
imageName: 'ImageName',
|
|
12389
|
+
imageOptionsLoginAsNonRoot: 'ImageOptionsLoginAsNonRoot',
|
|
12390
|
+
imageOwnerAlias: 'ImageOwnerAlias',
|
|
12391
|
+
instanceDescription: 'InstanceDescription',
|
|
12392
|
+
instanceGeneration: 'InstanceGeneration',
|
|
12393
|
+
instanceName: 'InstanceName',
|
|
12394
|
+
instancePatternInfos: 'InstancePatternInfos',
|
|
12395
|
+
instanceType: 'InstanceType',
|
|
12396
|
+
instanceTypes: 'InstanceTypes',
|
|
12397
|
+
internetChargeType: 'InternetChargeType',
|
|
12398
|
+
internetMaxBandwidthIn: 'InternetMaxBandwidthIn',
|
|
12399
|
+
internetMaxBandwidthOut: 'InternetMaxBandwidthOut',
|
|
12400
|
+
ioOptimized: 'IoOptimized',
|
|
12401
|
+
ipv6AddressCount: 'Ipv6AddressCount',
|
|
12402
|
+
keyPairName: 'KeyPairName',
|
|
12403
|
+
lifecycleState: 'LifecycleState',
|
|
12404
|
+
loadBalancerWeight: 'LoadBalancerWeight',
|
|
12405
|
+
memory: 'Memory',
|
|
12406
|
+
passwordInherit: 'PasswordInherit',
|
|
12407
|
+
privatePoolOptions_id: 'PrivatePoolOptions.Id',
|
|
12408
|
+
privatePoolOptions_matchCriteria: 'PrivatePoolOptions.MatchCriteria',
|
|
12409
|
+
ramRoleName: 'RamRoleName',
|
|
12410
|
+
resourceGroupId: 'ResourceGroupId',
|
|
12411
|
+
scalingConfigurationId: 'ScalingConfigurationId',
|
|
12412
|
+
scalingConfigurationName: 'ScalingConfigurationName',
|
|
12413
|
+
scalingGroupId: 'ScalingGroupId',
|
|
12414
|
+
schedulerOptions: 'SchedulerOptions',
|
|
12415
|
+
securityEnhancementStrategy: 'SecurityEnhancementStrategy',
|
|
12416
|
+
securityGroupId: 'SecurityGroupId',
|
|
12417
|
+
securityGroupIds: 'SecurityGroupIds',
|
|
12418
|
+
spotDuration: 'SpotDuration',
|
|
12419
|
+
spotInterruptionBehavior: 'SpotInterruptionBehavior',
|
|
12420
|
+
spotPriceLimits: 'SpotPriceLimits',
|
|
12421
|
+
spotStrategy: 'SpotStrategy',
|
|
12422
|
+
storageSetId: 'StorageSetId',
|
|
12423
|
+
storageSetPartitionNumber: 'StorageSetPartitionNumber',
|
|
12424
|
+
systemDiskAutoSnapshotPolicyId: 'SystemDiskAutoSnapshotPolicyId',
|
|
12425
|
+
systemDiskBurstingEnabled: 'SystemDiskBurstingEnabled',
|
|
12426
|
+
systemDiskCategories: 'SystemDiskCategories',
|
|
11263
12427
|
systemDiskCategory: 'SystemDiskCategory',
|
|
11264
12428
|
systemDiskDescription: 'SystemDiskDescription',
|
|
11265
12429
|
systemDiskEncryptAlgorithm: 'SystemDiskEncryptAlgorithm',
|
|
@@ -11270,81 +12434,446 @@ export class DescribeScalingConfigurationsResponseBodyScalingConfigurations exte
|
|
|
11270
12434
|
systemDiskProvisionedIops: 'SystemDiskProvisionedIops',
|
|
11271
12435
|
systemDiskSize: 'SystemDiskSize',
|
|
11272
12436
|
tags: 'Tags',
|
|
11273
|
-
tenancy: 'Tenancy',
|
|
11274
|
-
userData: 'UserData',
|
|
11275
|
-
weightedCapacities: 'WeightedCapacities',
|
|
11276
|
-
zoneId: 'ZoneId',
|
|
12437
|
+
tenancy: 'Tenancy',
|
|
12438
|
+
userData: 'UserData',
|
|
12439
|
+
weightedCapacities: 'WeightedCapacities',
|
|
12440
|
+
zoneId: 'ZoneId',
|
|
12441
|
+
};
|
|
12442
|
+
}
|
|
12443
|
+
|
|
12444
|
+
static types(): { [key: string]: any } {
|
|
12445
|
+
return {
|
|
12446
|
+
affinity: 'string',
|
|
12447
|
+
cpu: 'number',
|
|
12448
|
+
creationTime: 'string',
|
|
12449
|
+
creditSpecification: 'string',
|
|
12450
|
+
customPriorities: { 'type': 'array', 'itemType': DescribeScalingConfigurationsResponseBodyScalingConfigurationsCustomPriorities },
|
|
12451
|
+
dataDisks: { 'type': 'array', 'itemType': DescribeScalingConfigurationsResponseBodyScalingConfigurationsDataDisks },
|
|
12452
|
+
dedicatedHostId: 'string',
|
|
12453
|
+
deletionProtection: 'boolean',
|
|
12454
|
+
deploymentSetId: 'string',
|
|
12455
|
+
hostName: 'string',
|
|
12456
|
+
hpcClusterId: 'string',
|
|
12457
|
+
imageFamily: 'string',
|
|
12458
|
+
imageId: 'string',
|
|
12459
|
+
imageName: 'string',
|
|
12460
|
+
imageOptionsLoginAsNonRoot: 'boolean',
|
|
12461
|
+
imageOwnerAlias: 'string',
|
|
12462
|
+
instanceDescription: 'string',
|
|
12463
|
+
instanceGeneration: 'string',
|
|
12464
|
+
instanceName: 'string',
|
|
12465
|
+
instancePatternInfos: { 'type': 'array', 'itemType': DescribeScalingConfigurationsResponseBodyScalingConfigurationsInstancePatternInfos },
|
|
12466
|
+
instanceType: 'string',
|
|
12467
|
+
instanceTypes: { 'type': 'array', 'itemType': 'string' },
|
|
12468
|
+
internetChargeType: 'string',
|
|
12469
|
+
internetMaxBandwidthIn: 'number',
|
|
12470
|
+
internetMaxBandwidthOut: 'number',
|
|
12471
|
+
ioOptimized: 'string',
|
|
12472
|
+
ipv6AddressCount: 'number',
|
|
12473
|
+
keyPairName: 'string',
|
|
12474
|
+
lifecycleState: 'string',
|
|
12475
|
+
loadBalancerWeight: 'number',
|
|
12476
|
+
memory: 'number',
|
|
12477
|
+
passwordInherit: 'boolean',
|
|
12478
|
+
privatePoolOptions_id: 'string',
|
|
12479
|
+
privatePoolOptions_matchCriteria: 'string',
|
|
12480
|
+
ramRoleName: 'string',
|
|
12481
|
+
resourceGroupId: 'string',
|
|
12482
|
+
scalingConfigurationId: 'string',
|
|
12483
|
+
scalingConfigurationName: 'string',
|
|
12484
|
+
scalingGroupId: 'string',
|
|
12485
|
+
schedulerOptions: DescribeScalingConfigurationsResponseBodyScalingConfigurationsSchedulerOptions,
|
|
12486
|
+
securityEnhancementStrategy: 'string',
|
|
12487
|
+
securityGroupId: 'string',
|
|
12488
|
+
securityGroupIds: { 'type': 'array', 'itemType': 'string' },
|
|
12489
|
+
spotDuration: 'number',
|
|
12490
|
+
spotInterruptionBehavior: 'string',
|
|
12491
|
+
spotPriceLimits: { 'type': 'array', 'itemType': DescribeScalingConfigurationsResponseBodyScalingConfigurationsSpotPriceLimits },
|
|
12492
|
+
spotStrategy: 'string',
|
|
12493
|
+
storageSetId: 'string',
|
|
12494
|
+
storageSetPartitionNumber: 'number',
|
|
12495
|
+
systemDiskAutoSnapshotPolicyId: 'string',
|
|
12496
|
+
systemDiskBurstingEnabled: 'boolean',
|
|
12497
|
+
systemDiskCategories: { 'type': 'array', 'itemType': 'string' },
|
|
12498
|
+
systemDiskCategory: 'string',
|
|
12499
|
+
systemDiskDescription: 'string',
|
|
12500
|
+
systemDiskEncryptAlgorithm: 'string',
|
|
12501
|
+
systemDiskEncrypted: 'boolean',
|
|
12502
|
+
systemDiskKMSKeyId: 'string',
|
|
12503
|
+
systemDiskName: 'string',
|
|
12504
|
+
systemDiskPerformanceLevel: 'string',
|
|
12505
|
+
systemDiskProvisionedIops: 'number',
|
|
12506
|
+
systemDiskSize: 'number',
|
|
12507
|
+
tags: { 'type': 'array', 'itemType': DescribeScalingConfigurationsResponseBodyScalingConfigurationsTags },
|
|
12508
|
+
tenancy: 'string',
|
|
12509
|
+
userData: 'string',
|
|
12510
|
+
weightedCapacities: { 'type': 'array', 'itemType': 'number' },
|
|
12511
|
+
zoneId: 'string',
|
|
12512
|
+
};
|
|
12513
|
+
}
|
|
12514
|
+
|
|
12515
|
+
constructor(map?: { [key: string]: any }) {
|
|
12516
|
+
super(map);
|
|
12517
|
+
}
|
|
12518
|
+
}
|
|
12519
|
+
|
|
12520
|
+
export class DescribeScalingGroupDetailResponseBodyScalingGroupAlbServerGroups extends $tea.Model {
|
|
12521
|
+
albServerGroupId?: string;
|
|
12522
|
+
port?: number;
|
|
12523
|
+
weight?: number;
|
|
12524
|
+
static names(): { [key: string]: string } {
|
|
12525
|
+
return {
|
|
12526
|
+
albServerGroupId: 'AlbServerGroupId',
|
|
12527
|
+
port: 'Port',
|
|
12528
|
+
weight: 'Weight',
|
|
12529
|
+
};
|
|
12530
|
+
}
|
|
12531
|
+
|
|
12532
|
+
static types(): { [key: string]: any } {
|
|
12533
|
+
return {
|
|
12534
|
+
albServerGroupId: 'string',
|
|
12535
|
+
port: 'number',
|
|
12536
|
+
weight: 'number',
|
|
12537
|
+
};
|
|
12538
|
+
}
|
|
12539
|
+
|
|
12540
|
+
constructor(map?: { [key: string]: any }) {
|
|
12541
|
+
super(map);
|
|
12542
|
+
}
|
|
12543
|
+
}
|
|
12544
|
+
|
|
12545
|
+
export class DescribeScalingGroupDetailResponseBodyScalingGroupLaunchTemplateOverrides extends $tea.Model {
|
|
12546
|
+
instanceType?: string;
|
|
12547
|
+
spotPriceLimit?: number;
|
|
12548
|
+
weightedCapacity?: number;
|
|
12549
|
+
static names(): { [key: string]: string } {
|
|
12550
|
+
return {
|
|
12551
|
+
instanceType: 'InstanceType',
|
|
12552
|
+
spotPriceLimit: 'SpotPriceLimit',
|
|
12553
|
+
weightedCapacity: 'WeightedCapacity',
|
|
12554
|
+
};
|
|
12555
|
+
}
|
|
12556
|
+
|
|
12557
|
+
static types(): { [key: string]: any } {
|
|
12558
|
+
return {
|
|
12559
|
+
instanceType: 'string',
|
|
12560
|
+
spotPriceLimit: 'number',
|
|
12561
|
+
weightedCapacity: 'number',
|
|
12562
|
+
};
|
|
12563
|
+
}
|
|
12564
|
+
|
|
12565
|
+
constructor(map?: { [key: string]: any }) {
|
|
12566
|
+
super(map);
|
|
12567
|
+
}
|
|
12568
|
+
}
|
|
12569
|
+
|
|
12570
|
+
export class DescribeScalingGroupDetailResponseBodyScalingGroupLoadBalancerConfigs extends $tea.Model {
|
|
12571
|
+
loadBalancerId?: string;
|
|
12572
|
+
weight?: number;
|
|
12573
|
+
static names(): { [key: string]: string } {
|
|
12574
|
+
return {
|
|
12575
|
+
loadBalancerId: 'LoadBalancerId',
|
|
12576
|
+
weight: 'Weight',
|
|
12577
|
+
};
|
|
12578
|
+
}
|
|
12579
|
+
|
|
12580
|
+
static types(): { [key: string]: any } {
|
|
12581
|
+
return {
|
|
12582
|
+
loadBalancerId: 'string',
|
|
12583
|
+
weight: 'number',
|
|
12584
|
+
};
|
|
12585
|
+
}
|
|
12586
|
+
|
|
12587
|
+
constructor(map?: { [key: string]: any }) {
|
|
12588
|
+
super(map);
|
|
12589
|
+
}
|
|
12590
|
+
}
|
|
12591
|
+
|
|
12592
|
+
export class DescribeScalingGroupDetailResponseBodyScalingGroupServerGroups extends $tea.Model {
|
|
12593
|
+
port?: number;
|
|
12594
|
+
serverGroupId?: string;
|
|
12595
|
+
type?: string;
|
|
12596
|
+
weight?: number;
|
|
12597
|
+
static names(): { [key: string]: string } {
|
|
12598
|
+
return {
|
|
12599
|
+
port: 'Port',
|
|
12600
|
+
serverGroupId: 'ServerGroupId',
|
|
12601
|
+
type: 'Type',
|
|
12602
|
+
weight: 'Weight',
|
|
12603
|
+
};
|
|
12604
|
+
}
|
|
12605
|
+
|
|
12606
|
+
static types(): { [key: string]: any } {
|
|
12607
|
+
return {
|
|
12608
|
+
port: 'number',
|
|
12609
|
+
serverGroupId: 'string',
|
|
12610
|
+
type: 'string',
|
|
12611
|
+
weight: 'number',
|
|
12612
|
+
};
|
|
12613
|
+
}
|
|
12614
|
+
|
|
12615
|
+
constructor(map?: { [key: string]: any }) {
|
|
12616
|
+
super(map);
|
|
12617
|
+
}
|
|
12618
|
+
}
|
|
12619
|
+
|
|
12620
|
+
export class DescribeScalingGroupDetailResponseBodyScalingGroupTags extends $tea.Model {
|
|
12621
|
+
propagate?: boolean;
|
|
12622
|
+
tagKey?: string;
|
|
12623
|
+
tagValue?: string;
|
|
12624
|
+
static names(): { [key: string]: string } {
|
|
12625
|
+
return {
|
|
12626
|
+
propagate: 'Propagate',
|
|
12627
|
+
tagKey: 'TagKey',
|
|
12628
|
+
tagValue: 'TagValue',
|
|
12629
|
+
};
|
|
12630
|
+
}
|
|
12631
|
+
|
|
12632
|
+
static types(): { [key: string]: any } {
|
|
12633
|
+
return {
|
|
12634
|
+
propagate: 'boolean',
|
|
12635
|
+
tagKey: 'string',
|
|
12636
|
+
tagValue: 'string',
|
|
12637
|
+
};
|
|
12638
|
+
}
|
|
12639
|
+
|
|
12640
|
+
constructor(map?: { [key: string]: any }) {
|
|
12641
|
+
super(map);
|
|
12642
|
+
}
|
|
12643
|
+
}
|
|
12644
|
+
|
|
12645
|
+
export class DescribeScalingGroupDetailResponseBodyScalingGroupVServerGroupsVServerGroupAttributes extends $tea.Model {
|
|
12646
|
+
port?: number;
|
|
12647
|
+
VServerGroupId?: string;
|
|
12648
|
+
weight?: number;
|
|
12649
|
+
static names(): { [key: string]: string } {
|
|
12650
|
+
return {
|
|
12651
|
+
port: 'Port',
|
|
12652
|
+
VServerGroupId: 'VServerGroupId',
|
|
12653
|
+
weight: 'Weight',
|
|
12654
|
+
};
|
|
12655
|
+
}
|
|
12656
|
+
|
|
12657
|
+
static types(): { [key: string]: any } {
|
|
12658
|
+
return {
|
|
12659
|
+
port: 'number',
|
|
12660
|
+
VServerGroupId: 'string',
|
|
12661
|
+
weight: 'number',
|
|
12662
|
+
};
|
|
12663
|
+
}
|
|
12664
|
+
|
|
12665
|
+
constructor(map?: { [key: string]: any }) {
|
|
12666
|
+
super(map);
|
|
12667
|
+
}
|
|
12668
|
+
}
|
|
12669
|
+
|
|
12670
|
+
export class DescribeScalingGroupDetailResponseBodyScalingGroupVServerGroups extends $tea.Model {
|
|
12671
|
+
loadBalancerId?: string;
|
|
12672
|
+
VServerGroupAttributes?: DescribeScalingGroupDetailResponseBodyScalingGroupVServerGroupsVServerGroupAttributes[];
|
|
12673
|
+
static names(): { [key: string]: string } {
|
|
12674
|
+
return {
|
|
12675
|
+
loadBalancerId: 'LoadBalancerId',
|
|
12676
|
+
VServerGroupAttributes: 'VServerGroupAttributes',
|
|
12677
|
+
};
|
|
12678
|
+
}
|
|
12679
|
+
|
|
12680
|
+
static types(): { [key: string]: any } {
|
|
12681
|
+
return {
|
|
12682
|
+
loadBalancerId: 'string',
|
|
12683
|
+
VServerGroupAttributes: { 'type': 'array', 'itemType': DescribeScalingGroupDetailResponseBodyScalingGroupVServerGroupsVServerGroupAttributes },
|
|
12684
|
+
};
|
|
12685
|
+
}
|
|
12686
|
+
|
|
12687
|
+
constructor(map?: { [key: string]: any }) {
|
|
12688
|
+
super(map);
|
|
12689
|
+
}
|
|
12690
|
+
}
|
|
12691
|
+
|
|
12692
|
+
export class DescribeScalingGroupDetailResponseBodyScalingGroup extends $tea.Model {
|
|
12693
|
+
activeCapacity?: number;
|
|
12694
|
+
activeScalingConfigurationId?: string;
|
|
12695
|
+
albServerGroups?: DescribeScalingGroupDetailResponseBodyScalingGroupAlbServerGroups[];
|
|
12696
|
+
allocationStrategy?: string;
|
|
12697
|
+
azBalance?: boolean;
|
|
12698
|
+
compensateWithOnDemand?: boolean;
|
|
12699
|
+
creationTime?: string;
|
|
12700
|
+
currentHostName?: string;
|
|
12701
|
+
customPolicyARN?: string;
|
|
12702
|
+
DBInstanceIds?: string[];
|
|
12703
|
+
defaultCooldown?: number;
|
|
12704
|
+
desiredCapacity?: number;
|
|
12705
|
+
enableDesiredCapacity?: boolean;
|
|
12706
|
+
groupDeletionProtection?: boolean;
|
|
12707
|
+
groupType?: string;
|
|
12708
|
+
healthCheckType?: string;
|
|
12709
|
+
healthCheckTypes?: string[];
|
|
12710
|
+
initCapacity?: number;
|
|
12711
|
+
isElasticStrengthInAlarm?: boolean;
|
|
12712
|
+
launchTemplateId?: string;
|
|
12713
|
+
launchTemplateOverrides?: DescribeScalingGroupDetailResponseBodyScalingGroupLaunchTemplateOverrides[];
|
|
12714
|
+
launchTemplateVersion?: string;
|
|
12715
|
+
lifecycleState?: string;
|
|
12716
|
+
loadBalancerConfigs?: DescribeScalingGroupDetailResponseBodyScalingGroupLoadBalancerConfigs[];
|
|
12717
|
+
loadBalancerIds?: string[];
|
|
12718
|
+
maxInstanceLifetime?: number;
|
|
12719
|
+
maxSize?: number;
|
|
12720
|
+
minSize?: number;
|
|
12721
|
+
modificationTime?: string;
|
|
12722
|
+
monitorGroupId?: string;
|
|
12723
|
+
multiAZPolicy?: string;
|
|
12724
|
+
onDemandBaseCapacity?: number;
|
|
12725
|
+
onDemandPercentageAboveBaseCapacity?: number;
|
|
12726
|
+
pendingCapacity?: number;
|
|
12727
|
+
pendingWaitCapacity?: number;
|
|
12728
|
+
protectedCapacity?: number;
|
|
12729
|
+
regionId?: string;
|
|
12730
|
+
removalPolicies?: string[];
|
|
12731
|
+
removingCapacity?: number;
|
|
12732
|
+
removingWaitCapacity?: number;
|
|
12733
|
+
resourceGroupId?: string;
|
|
12734
|
+
scalingGroupId?: string;
|
|
12735
|
+
scalingGroupName?: string;
|
|
12736
|
+
scalingPolicy?: string;
|
|
12737
|
+
serverGroups?: DescribeScalingGroupDetailResponseBodyScalingGroupServerGroups[];
|
|
12738
|
+
spotAllocationStrategy?: string;
|
|
12739
|
+
spotInstancePools?: number;
|
|
12740
|
+
spotInstanceRemedy?: boolean;
|
|
12741
|
+
standbyCapacity?: number;
|
|
12742
|
+
stoppedCapacity?: number;
|
|
12743
|
+
suspendedProcesses?: string[];
|
|
12744
|
+
systemSuspended?: boolean;
|
|
12745
|
+
tags?: DescribeScalingGroupDetailResponseBodyScalingGroupTags[];
|
|
12746
|
+
totalCapacity?: number;
|
|
12747
|
+
totalInstanceCount?: number;
|
|
12748
|
+
VServerGroups?: DescribeScalingGroupDetailResponseBodyScalingGroupVServerGroups[];
|
|
12749
|
+
vSwitchId?: string;
|
|
12750
|
+
vSwitchIds?: string[];
|
|
12751
|
+
vpcId?: string;
|
|
12752
|
+
static names(): { [key: string]: string } {
|
|
12753
|
+
return {
|
|
12754
|
+
activeCapacity: 'ActiveCapacity',
|
|
12755
|
+
activeScalingConfigurationId: 'ActiveScalingConfigurationId',
|
|
12756
|
+
albServerGroups: 'AlbServerGroups',
|
|
12757
|
+
allocationStrategy: 'AllocationStrategy',
|
|
12758
|
+
azBalance: 'AzBalance',
|
|
12759
|
+
compensateWithOnDemand: 'CompensateWithOnDemand',
|
|
12760
|
+
creationTime: 'CreationTime',
|
|
12761
|
+
currentHostName: 'CurrentHostName',
|
|
12762
|
+
customPolicyARN: 'CustomPolicyARN',
|
|
12763
|
+
DBInstanceIds: 'DBInstanceIds',
|
|
12764
|
+
defaultCooldown: 'DefaultCooldown',
|
|
12765
|
+
desiredCapacity: 'DesiredCapacity',
|
|
12766
|
+
enableDesiredCapacity: 'EnableDesiredCapacity',
|
|
12767
|
+
groupDeletionProtection: 'GroupDeletionProtection',
|
|
12768
|
+
groupType: 'GroupType',
|
|
12769
|
+
healthCheckType: 'HealthCheckType',
|
|
12770
|
+
healthCheckTypes: 'HealthCheckTypes',
|
|
12771
|
+
initCapacity: 'InitCapacity',
|
|
12772
|
+
isElasticStrengthInAlarm: 'IsElasticStrengthInAlarm',
|
|
12773
|
+
launchTemplateId: 'LaunchTemplateId',
|
|
12774
|
+
launchTemplateOverrides: 'LaunchTemplateOverrides',
|
|
12775
|
+
launchTemplateVersion: 'LaunchTemplateVersion',
|
|
12776
|
+
lifecycleState: 'LifecycleState',
|
|
12777
|
+
loadBalancerConfigs: 'LoadBalancerConfigs',
|
|
12778
|
+
loadBalancerIds: 'LoadBalancerIds',
|
|
12779
|
+
maxInstanceLifetime: 'MaxInstanceLifetime',
|
|
12780
|
+
maxSize: 'MaxSize',
|
|
12781
|
+
minSize: 'MinSize',
|
|
12782
|
+
modificationTime: 'ModificationTime',
|
|
12783
|
+
monitorGroupId: 'MonitorGroupId',
|
|
12784
|
+
multiAZPolicy: 'MultiAZPolicy',
|
|
12785
|
+
onDemandBaseCapacity: 'OnDemandBaseCapacity',
|
|
12786
|
+
onDemandPercentageAboveBaseCapacity: 'OnDemandPercentageAboveBaseCapacity',
|
|
12787
|
+
pendingCapacity: 'PendingCapacity',
|
|
12788
|
+
pendingWaitCapacity: 'PendingWaitCapacity',
|
|
12789
|
+
protectedCapacity: 'ProtectedCapacity',
|
|
12790
|
+
regionId: 'RegionId',
|
|
12791
|
+
removalPolicies: 'RemovalPolicies',
|
|
12792
|
+
removingCapacity: 'RemovingCapacity',
|
|
12793
|
+
removingWaitCapacity: 'RemovingWaitCapacity',
|
|
12794
|
+
resourceGroupId: 'ResourceGroupId',
|
|
12795
|
+
scalingGroupId: 'ScalingGroupId',
|
|
12796
|
+
scalingGroupName: 'ScalingGroupName',
|
|
12797
|
+
scalingPolicy: 'ScalingPolicy',
|
|
12798
|
+
serverGroups: 'ServerGroups',
|
|
12799
|
+
spotAllocationStrategy: 'SpotAllocationStrategy',
|
|
12800
|
+
spotInstancePools: 'SpotInstancePools',
|
|
12801
|
+
spotInstanceRemedy: 'SpotInstanceRemedy',
|
|
12802
|
+
standbyCapacity: 'StandbyCapacity',
|
|
12803
|
+
stoppedCapacity: 'StoppedCapacity',
|
|
12804
|
+
suspendedProcesses: 'SuspendedProcesses',
|
|
12805
|
+
systemSuspended: 'SystemSuspended',
|
|
12806
|
+
tags: 'Tags',
|
|
12807
|
+
totalCapacity: 'TotalCapacity',
|
|
12808
|
+
totalInstanceCount: 'TotalInstanceCount',
|
|
12809
|
+
VServerGroups: 'VServerGroups',
|
|
12810
|
+
vSwitchId: 'VSwitchId',
|
|
12811
|
+
vSwitchIds: 'VSwitchIds',
|
|
12812
|
+
vpcId: 'VpcId',
|
|
11277
12813
|
};
|
|
11278
12814
|
}
|
|
11279
12815
|
|
|
11280
12816
|
static types(): { [key: string]: any } {
|
|
11281
12817
|
return {
|
|
11282
|
-
|
|
11283
|
-
|
|
12818
|
+
activeCapacity: 'number',
|
|
12819
|
+
activeScalingConfigurationId: 'string',
|
|
12820
|
+
albServerGroups: { 'type': 'array', 'itemType': DescribeScalingGroupDetailResponseBodyScalingGroupAlbServerGroups },
|
|
12821
|
+
allocationStrategy: 'string',
|
|
12822
|
+
azBalance: 'boolean',
|
|
12823
|
+
compensateWithOnDemand: 'boolean',
|
|
11284
12824
|
creationTime: 'string',
|
|
11285
|
-
|
|
11286
|
-
|
|
11287
|
-
|
|
11288
|
-
|
|
11289
|
-
|
|
11290
|
-
|
|
11291
|
-
|
|
11292
|
-
|
|
11293
|
-
|
|
11294
|
-
|
|
11295
|
-
|
|
11296
|
-
|
|
11297
|
-
|
|
11298
|
-
|
|
11299
|
-
|
|
11300
|
-
instanceName: 'string',
|
|
11301
|
-
instancePatternInfos: { 'type': 'array', 'itemType': DescribeScalingConfigurationsResponseBodyScalingConfigurationsInstancePatternInfos },
|
|
11302
|
-
instanceType: 'string',
|
|
11303
|
-
instanceTypes: { 'type': 'array', 'itemType': 'string' },
|
|
11304
|
-
internetChargeType: 'string',
|
|
11305
|
-
internetMaxBandwidthIn: 'number',
|
|
11306
|
-
internetMaxBandwidthOut: 'number',
|
|
11307
|
-
ioOptimized: 'string',
|
|
11308
|
-
ipv6AddressCount: 'number',
|
|
11309
|
-
keyPairName: 'string',
|
|
12825
|
+
currentHostName: 'string',
|
|
12826
|
+
customPolicyARN: 'string',
|
|
12827
|
+
DBInstanceIds: { 'type': 'array', 'itemType': 'string' },
|
|
12828
|
+
defaultCooldown: 'number',
|
|
12829
|
+
desiredCapacity: 'number',
|
|
12830
|
+
enableDesiredCapacity: 'boolean',
|
|
12831
|
+
groupDeletionProtection: 'boolean',
|
|
12832
|
+
groupType: 'string',
|
|
12833
|
+
healthCheckType: 'string',
|
|
12834
|
+
healthCheckTypes: { 'type': 'array', 'itemType': 'string' },
|
|
12835
|
+
initCapacity: 'number',
|
|
12836
|
+
isElasticStrengthInAlarm: 'boolean',
|
|
12837
|
+
launchTemplateId: 'string',
|
|
12838
|
+
launchTemplateOverrides: { 'type': 'array', 'itemType': DescribeScalingGroupDetailResponseBodyScalingGroupLaunchTemplateOverrides },
|
|
12839
|
+
launchTemplateVersion: 'string',
|
|
11310
12840
|
lifecycleState: 'string',
|
|
11311
|
-
|
|
11312
|
-
|
|
11313
|
-
|
|
11314
|
-
|
|
11315
|
-
|
|
11316
|
-
|
|
12841
|
+
loadBalancerConfigs: { 'type': 'array', 'itemType': DescribeScalingGroupDetailResponseBodyScalingGroupLoadBalancerConfigs },
|
|
12842
|
+
loadBalancerIds: { 'type': 'array', 'itemType': 'string' },
|
|
12843
|
+
maxInstanceLifetime: 'number',
|
|
12844
|
+
maxSize: 'number',
|
|
12845
|
+
minSize: 'number',
|
|
12846
|
+
modificationTime: 'string',
|
|
12847
|
+
monitorGroupId: 'string',
|
|
12848
|
+
multiAZPolicy: 'string',
|
|
12849
|
+
onDemandBaseCapacity: 'number',
|
|
12850
|
+
onDemandPercentageAboveBaseCapacity: 'number',
|
|
12851
|
+
pendingCapacity: 'number',
|
|
12852
|
+
pendingWaitCapacity: 'number',
|
|
12853
|
+
protectedCapacity: 'number',
|
|
12854
|
+
regionId: 'string',
|
|
12855
|
+
removalPolicies: { 'type': 'array', 'itemType': 'string' },
|
|
12856
|
+
removingCapacity: 'number',
|
|
12857
|
+
removingWaitCapacity: 'number',
|
|
11317
12858
|
resourceGroupId: 'string',
|
|
11318
|
-
scalingConfigurationId: 'string',
|
|
11319
|
-
scalingConfigurationName: 'string',
|
|
11320
12859
|
scalingGroupId: 'string',
|
|
11321
|
-
|
|
11322
|
-
|
|
11323
|
-
|
|
11324
|
-
|
|
11325
|
-
|
|
11326
|
-
|
|
11327
|
-
|
|
11328
|
-
|
|
11329
|
-
|
|
11330
|
-
|
|
11331
|
-
|
|
11332
|
-
|
|
11333
|
-
|
|
11334
|
-
|
|
11335
|
-
|
|
11336
|
-
|
|
11337
|
-
|
|
11338
|
-
systemDiskKMSKeyId: 'string',
|
|
11339
|
-
systemDiskName: 'string',
|
|
11340
|
-
systemDiskPerformanceLevel: 'string',
|
|
11341
|
-
systemDiskProvisionedIops: 'number',
|
|
11342
|
-
systemDiskSize: 'number',
|
|
11343
|
-
tags: { 'type': 'array', 'itemType': DescribeScalingConfigurationsResponseBodyScalingConfigurationsTags },
|
|
11344
|
-
tenancy: 'string',
|
|
11345
|
-
userData: 'string',
|
|
11346
|
-
weightedCapacities: { 'type': 'array', 'itemType': 'number' },
|
|
11347
|
-
zoneId: 'string',
|
|
12860
|
+
scalingGroupName: 'string',
|
|
12861
|
+
scalingPolicy: 'string',
|
|
12862
|
+
serverGroups: { 'type': 'array', 'itemType': DescribeScalingGroupDetailResponseBodyScalingGroupServerGroups },
|
|
12863
|
+
spotAllocationStrategy: 'string',
|
|
12864
|
+
spotInstancePools: 'number',
|
|
12865
|
+
spotInstanceRemedy: 'boolean',
|
|
12866
|
+
standbyCapacity: 'number',
|
|
12867
|
+
stoppedCapacity: 'number',
|
|
12868
|
+
suspendedProcesses: { 'type': 'array', 'itemType': 'string' },
|
|
12869
|
+
systemSuspended: 'boolean',
|
|
12870
|
+
tags: { 'type': 'array', 'itemType': DescribeScalingGroupDetailResponseBodyScalingGroupTags },
|
|
12871
|
+
totalCapacity: 'number',
|
|
12872
|
+
totalInstanceCount: 'number',
|
|
12873
|
+
VServerGroups: { 'type': 'array', 'itemType': DescribeScalingGroupDetailResponseBodyScalingGroupVServerGroups },
|
|
12874
|
+
vSwitchId: 'string',
|
|
12875
|
+
vSwitchIds: { 'type': 'array', 'itemType': 'string' },
|
|
12876
|
+
vpcId: 'string',
|
|
11348
12877
|
};
|
|
11349
12878
|
}
|
|
11350
12879
|
|
|
@@ -13850,6 +15379,28 @@ export class ModifyScalingRuleRequestStepAdjustments extends $tea.Model {
|
|
|
13850
15379
|
}
|
|
13851
15380
|
}
|
|
13852
15381
|
|
|
15382
|
+
export class ScaleWithAdjustmentRequestLifecycleHookContext extends $tea.Model {
|
|
15383
|
+
disableLifecycleHook?: boolean;
|
|
15384
|
+
ignoredLifecycleHookIds?: string[];
|
|
15385
|
+
static names(): { [key: string]: string } {
|
|
15386
|
+
return {
|
|
15387
|
+
disableLifecycleHook: 'DisableLifecycleHook',
|
|
15388
|
+
ignoredLifecycleHookIds: 'IgnoredLifecycleHookIds',
|
|
15389
|
+
};
|
|
15390
|
+
}
|
|
15391
|
+
|
|
15392
|
+
static types(): { [key: string]: any } {
|
|
15393
|
+
return {
|
|
15394
|
+
disableLifecycleHook: 'boolean',
|
|
15395
|
+
ignoredLifecycleHookIds: { 'type': 'array', 'itemType': 'string' },
|
|
15396
|
+
};
|
|
15397
|
+
}
|
|
15398
|
+
|
|
15399
|
+
constructor(map?: { [key: string]: any }) {
|
|
15400
|
+
super(map);
|
|
15401
|
+
}
|
|
15402
|
+
}
|
|
15403
|
+
|
|
13853
15404
|
export class ScaleWithAdjustmentRequestOverridesContainerOverridesEnvironmentVars extends $tea.Model {
|
|
13854
15405
|
key?: string;
|
|
13855
15406
|
value?: string;
|
|
@@ -14025,6 +15576,51 @@ export default class Client extends OpenApi {
|
|
|
14025
15576
|
return EndpointUtil.getEndpointRules(productId, regionId, endpointRule, network, suffix);
|
|
14026
15577
|
}
|
|
14027
15578
|
|
|
15579
|
+
async applyEciScalingConfigurationWithOptions(request: ApplyEciScalingConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<ApplyEciScalingConfigurationResponse> {
|
|
15580
|
+
Util.validateModel(request);
|
|
15581
|
+
let query = { };
|
|
15582
|
+
if (!Util.isUnset(request.content)) {
|
|
15583
|
+
query["Content"] = request.content;
|
|
15584
|
+
}
|
|
15585
|
+
|
|
15586
|
+
if (!Util.isUnset(request.format)) {
|
|
15587
|
+
query["Format"] = request.format;
|
|
15588
|
+
}
|
|
15589
|
+
|
|
15590
|
+
if (!Util.isUnset(request.regionId)) {
|
|
15591
|
+
query["RegionId"] = request.regionId;
|
|
15592
|
+
}
|
|
15593
|
+
|
|
15594
|
+
if (!Util.isUnset(request.scalingConfigurationId)) {
|
|
15595
|
+
query["ScalingConfigurationId"] = request.scalingConfigurationId;
|
|
15596
|
+
}
|
|
15597
|
+
|
|
15598
|
+
if (!Util.isUnset(request.scalingGroupId)) {
|
|
15599
|
+
query["ScalingGroupId"] = request.scalingGroupId;
|
|
15600
|
+
}
|
|
15601
|
+
|
|
15602
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
15603
|
+
query: OpenApiUtil.query(query),
|
|
15604
|
+
});
|
|
15605
|
+
let params = new $OpenApi.Params({
|
|
15606
|
+
action: "ApplyEciScalingConfiguration",
|
|
15607
|
+
version: "2022-02-22",
|
|
15608
|
+
protocol: "HTTPS",
|
|
15609
|
+
pathname: "/",
|
|
15610
|
+
method: "POST",
|
|
15611
|
+
authType: "AK",
|
|
15612
|
+
style: "RPC",
|
|
15613
|
+
reqBodyType: "formData",
|
|
15614
|
+
bodyType: "json",
|
|
15615
|
+
});
|
|
15616
|
+
return $tea.cast<ApplyEciScalingConfigurationResponse>(await this.callApi(params, req, runtime), new ApplyEciScalingConfigurationResponse({}));
|
|
15617
|
+
}
|
|
15618
|
+
|
|
15619
|
+
async applyEciScalingConfiguration(request: ApplyEciScalingConfigurationRequest): Promise<ApplyEciScalingConfigurationResponse> {
|
|
15620
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
15621
|
+
return await this.applyEciScalingConfigurationWithOptions(request, runtime);
|
|
15622
|
+
}
|
|
15623
|
+
|
|
14028
15624
|
async applyScalingGroupWithOptions(request: ApplyScalingGroupRequest, runtime: $Util.RuntimeOptions): Promise<ApplyScalingGroupResponse> {
|
|
14029
15625
|
Util.validateModel(request);
|
|
14030
15626
|
let query = { };
|
|
@@ -16463,6 +18059,47 @@ export default class Client extends OpenApi {
|
|
|
16463
18059
|
return await this.describeAlarmsWithOptions(request, runtime);
|
|
16464
18060
|
}
|
|
16465
18061
|
|
|
18062
|
+
async describeEciScalingConfigurationDetailWithOptions(request: DescribeEciScalingConfigurationDetailRequest, runtime: $Util.RuntimeOptions): Promise<DescribeEciScalingConfigurationDetailResponse> {
|
|
18063
|
+
Util.validateModel(request);
|
|
18064
|
+
let query = { };
|
|
18065
|
+
if (!Util.isUnset(request.outputFormat)) {
|
|
18066
|
+
query["OutputFormat"] = request.outputFormat;
|
|
18067
|
+
}
|
|
18068
|
+
|
|
18069
|
+
if (!Util.isUnset(request.regionId)) {
|
|
18070
|
+
query["RegionId"] = request.regionId;
|
|
18071
|
+
}
|
|
18072
|
+
|
|
18073
|
+
if (!Util.isUnset(request.scalingConfigurationId)) {
|
|
18074
|
+
query["ScalingConfigurationId"] = request.scalingConfigurationId;
|
|
18075
|
+
}
|
|
18076
|
+
|
|
18077
|
+
if (!Util.isUnset(request.scalingGroupId)) {
|
|
18078
|
+
query["ScalingGroupId"] = request.scalingGroupId;
|
|
18079
|
+
}
|
|
18080
|
+
|
|
18081
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
18082
|
+
query: OpenApiUtil.query(query),
|
|
18083
|
+
});
|
|
18084
|
+
let params = new $OpenApi.Params({
|
|
18085
|
+
action: "DescribeEciScalingConfigurationDetail",
|
|
18086
|
+
version: "2022-02-22",
|
|
18087
|
+
protocol: "HTTPS",
|
|
18088
|
+
pathname: "/",
|
|
18089
|
+
method: "POST",
|
|
18090
|
+
authType: "AK",
|
|
18091
|
+
style: "RPC",
|
|
18092
|
+
reqBodyType: "formData",
|
|
18093
|
+
bodyType: "json",
|
|
18094
|
+
});
|
|
18095
|
+
return $tea.cast<DescribeEciScalingConfigurationDetailResponse>(await this.callApi(params, req, runtime), new DescribeEciScalingConfigurationDetailResponse({}));
|
|
18096
|
+
}
|
|
18097
|
+
|
|
18098
|
+
async describeEciScalingConfigurationDetail(request: DescribeEciScalingConfigurationDetailRequest): Promise<DescribeEciScalingConfigurationDetailResponse> {
|
|
18099
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
18100
|
+
return await this.describeEciScalingConfigurationDetailWithOptions(request, runtime);
|
|
18101
|
+
}
|
|
18102
|
+
|
|
16466
18103
|
async describeEciScalingConfigurationsWithOptions(request: DescribeEciScalingConfigurationsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeEciScalingConfigurationsResponse> {
|
|
16467
18104
|
Util.validateModel(request);
|
|
16468
18105
|
let query = { };
|
|
@@ -16999,6 +18636,47 @@ export default class Client extends OpenApi {
|
|
|
16999
18636
|
return await this.describeScalingConfigurationsWithOptions(request, runtime);
|
|
17000
18637
|
}
|
|
17001
18638
|
|
|
18639
|
+
async describeScalingGroupDetailWithOptions(request: DescribeScalingGroupDetailRequest, runtime: $Util.RuntimeOptions): Promise<DescribeScalingGroupDetailResponse> {
|
|
18640
|
+
Util.validateModel(request);
|
|
18641
|
+
let query = { };
|
|
18642
|
+
if (!Util.isUnset(request.outputFormat)) {
|
|
18643
|
+
query["OutputFormat"] = request.outputFormat;
|
|
18644
|
+
}
|
|
18645
|
+
|
|
18646
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
18647
|
+
query["OwnerId"] = request.ownerId;
|
|
18648
|
+
}
|
|
18649
|
+
|
|
18650
|
+
if (!Util.isUnset(request.regionId)) {
|
|
18651
|
+
query["RegionId"] = request.regionId;
|
|
18652
|
+
}
|
|
18653
|
+
|
|
18654
|
+
if (!Util.isUnset(request.scalingGroupId)) {
|
|
18655
|
+
query["ScalingGroupId"] = request.scalingGroupId;
|
|
18656
|
+
}
|
|
18657
|
+
|
|
18658
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
18659
|
+
query: OpenApiUtil.query(query),
|
|
18660
|
+
});
|
|
18661
|
+
let params = new $OpenApi.Params({
|
|
18662
|
+
action: "DescribeScalingGroupDetail",
|
|
18663
|
+
version: "2022-02-22",
|
|
18664
|
+
protocol: "HTTPS",
|
|
18665
|
+
pathname: "/",
|
|
18666
|
+
method: "POST",
|
|
18667
|
+
authType: "AK",
|
|
18668
|
+
style: "RPC",
|
|
18669
|
+
reqBodyType: "formData",
|
|
18670
|
+
bodyType: "json",
|
|
18671
|
+
});
|
|
18672
|
+
return $tea.cast<DescribeScalingGroupDetailResponse>(await this.callApi(params, req, runtime), new DescribeScalingGroupDetailResponse({}));
|
|
18673
|
+
}
|
|
18674
|
+
|
|
18675
|
+
async describeScalingGroupDetail(request: DescribeScalingGroupDetailRequest): Promise<DescribeScalingGroupDetailResponse> {
|
|
18676
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
18677
|
+
return await this.describeScalingGroupDetailWithOptions(request, runtime);
|
|
18678
|
+
}
|
|
18679
|
+
|
|
17002
18680
|
async describeScalingGroupsWithOptions(request: DescribeScalingGroupsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeScalingGroupsResponse> {
|
|
17003
18681
|
Util.validateModel(request);
|
|
17004
18682
|
let query = { };
|
|
@@ -18632,6 +20310,55 @@ export default class Client extends OpenApi {
|
|
|
18632
20310
|
return await this.modifyEciScalingConfigurationWithOptions(request, runtime);
|
|
18633
20311
|
}
|
|
18634
20312
|
|
|
20313
|
+
async modifyInstanceAttributeWithOptions(request: ModifyInstanceAttributeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyInstanceAttributeResponse> {
|
|
20314
|
+
Util.validateModel(request);
|
|
20315
|
+
let query = { };
|
|
20316
|
+
if (!Util.isUnset(request.entrusted)) {
|
|
20317
|
+
query["Entrusted"] = request.entrusted;
|
|
20318
|
+
}
|
|
20319
|
+
|
|
20320
|
+
if (!Util.isUnset(request.instanceId)) {
|
|
20321
|
+
query["InstanceId"] = request.instanceId;
|
|
20322
|
+
}
|
|
20323
|
+
|
|
20324
|
+
if (!Util.isUnset(request.ownerId)) {
|
|
20325
|
+
query["OwnerId"] = request.ownerId;
|
|
20326
|
+
}
|
|
20327
|
+
|
|
20328
|
+
if (!Util.isUnset(request.regionId)) {
|
|
20329
|
+
query["RegionId"] = request.regionId;
|
|
20330
|
+
}
|
|
20331
|
+
|
|
20332
|
+
if (!Util.isUnset(request.resourceOwnerAccount)) {
|
|
20333
|
+
query["ResourceOwnerAccount"] = request.resourceOwnerAccount;
|
|
20334
|
+
}
|
|
20335
|
+
|
|
20336
|
+
if (!Util.isUnset(request.scalingGroupId)) {
|
|
20337
|
+
query["ScalingGroupId"] = request.scalingGroupId;
|
|
20338
|
+
}
|
|
20339
|
+
|
|
20340
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
20341
|
+
query: OpenApiUtil.query(query),
|
|
20342
|
+
});
|
|
20343
|
+
let params = new $OpenApi.Params({
|
|
20344
|
+
action: "ModifyInstanceAttribute",
|
|
20345
|
+
version: "2022-02-22",
|
|
20346
|
+
protocol: "HTTPS",
|
|
20347
|
+
pathname: "/",
|
|
20348
|
+
method: "POST",
|
|
20349
|
+
authType: "AK",
|
|
20350
|
+
style: "RPC",
|
|
20351
|
+
reqBodyType: "formData",
|
|
20352
|
+
bodyType: "json",
|
|
20353
|
+
});
|
|
20354
|
+
return $tea.cast<ModifyInstanceAttributeResponse>(await this.callApi(params, req, runtime), new ModifyInstanceAttributeResponse({}));
|
|
20355
|
+
}
|
|
20356
|
+
|
|
20357
|
+
async modifyInstanceAttribute(request: ModifyInstanceAttributeRequest): Promise<ModifyInstanceAttributeResponse> {
|
|
20358
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
20359
|
+
return await this.modifyInstanceAttributeWithOptions(request, runtime);
|
|
20360
|
+
}
|
|
20361
|
+
|
|
18635
20362
|
/**
|
|
18636
20363
|
* You can use one of the following methods to specify the lifecycle hook that you want to modify:
|
|
18637
20364
|
* * Specify the lifecycle hook ID by using the LifecycleHookId parameter. When you use this method, the ScalingGroupId and LifecycleHookName parameters are ignored.
|
|
@@ -19152,6 +20879,10 @@ export default class Client extends OpenApi {
|
|
|
19152
20879
|
query["ScalingGroupName"] = request.scalingGroupName;
|
|
19153
20880
|
}
|
|
19154
20881
|
|
|
20882
|
+
if (!Util.isUnset(request.scalingPolicy)) {
|
|
20883
|
+
query["ScalingPolicy"] = request.scalingPolicy;
|
|
20884
|
+
}
|
|
20885
|
+
|
|
19155
20886
|
if (!Util.isUnset(request.spotAllocationStrategy)) {
|
|
19156
20887
|
query["SpotAllocationStrategy"] = request.spotAllocationStrategy;
|
|
19157
20888
|
}
|
|
@@ -19687,11 +21418,19 @@ export default class Client extends OpenApi {
|
|
|
19687
21418
|
Util.validateModel(tmpReq);
|
|
19688
21419
|
let request = new ScaleWithAdjustmentShrinkRequest({ });
|
|
19689
21420
|
OpenApiUtil.convert(tmpReq, request);
|
|
21421
|
+
if (!Util.isUnset(tmpReq.lifecycleHookContext)) {
|
|
21422
|
+
request.lifecycleHookContextShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.lifecycleHookContext, "LifecycleHookContext", "json");
|
|
21423
|
+
}
|
|
21424
|
+
|
|
19690
21425
|
if (!Util.isUnset(tmpReq.overrides)) {
|
|
19691
21426
|
request.overridesShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.overrides, "Overrides", "json");
|
|
19692
21427
|
}
|
|
19693
21428
|
|
|
19694
21429
|
let query = { };
|
|
21430
|
+
if (!Util.isUnset(request.activityMetadata)) {
|
|
21431
|
+
query["ActivityMetadata"] = request.activityMetadata;
|
|
21432
|
+
}
|
|
21433
|
+
|
|
19695
21434
|
if (!Util.isUnset(request.adjustmentType)) {
|
|
19696
21435
|
query["AdjustmentType"] = request.adjustmentType;
|
|
19697
21436
|
}
|
|
@@ -19704,6 +21443,10 @@ export default class Client extends OpenApi {
|
|
|
19704
21443
|
query["ClientToken"] = request.clientToken;
|
|
19705
21444
|
}
|
|
19706
21445
|
|
|
21446
|
+
if (!Util.isUnset(request.lifecycleHookContextShrink)) {
|
|
21447
|
+
query["LifecycleHookContext"] = request.lifecycleHookContextShrink;
|
|
21448
|
+
}
|
|
21449
|
+
|
|
19707
21450
|
if (!Util.isUnset(request.minAdjustmentMagnitude)) {
|
|
19708
21451
|
query["MinAdjustmentMagnitude"] = request.minAdjustmentMagnitude;
|
|
19709
21452
|
}
|