tencentcloud-sdk-as 3.0.590 → 3.0.592
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20180419/client.rb +1 -0
- data/lib/v20180419/models.rb +149 -143
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3e135c4f2e691fb0ffc5393736b407e7a3f593ed
|
4
|
+
data.tar.gz: fbbcffbca5ca1fc986290f117e099fe0569818e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1d1b51a67a7637bfbc442cb752f5e8a5ecfe94dba4ddebb275ec5bed812bb6b0dbb9b0b48648555164e464972e52794e2b4fedf1378372ad4231bd24c5a4fcc
|
7
|
+
data.tar.gz: fb567ba13a951d6c6db878242c987f45fee20192d74459de7a0c06b0d6ca941aba5bd1a833ce325f597e7d563d093ecd499e5bb70fc7025d7c5754fd50939611
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.592
|
data/lib/v20180419/client.rb
CHANGED
@@ -1204,6 +1204,7 @@ module TencentCloud
|
|
1204
1204
|
# * 伸缩组处于停用状态时,该接口也会生效,可参考[停用伸缩组](https://cloud.tencent.com/document/api/377/20435)文档查看伸缩组停用状态的影响范围
|
1205
1205
|
# * 接口会增加期望实例数,新的期望实例数需要小于等于最大实例数
|
1206
1206
|
# * 扩容如果失败或者部分成功,最后期望实例数只会增加实际成功的实例数量
|
1207
|
+
# * 竞价混合模式中一次扩容可能触发多个伸缩活动,该接口仅返回第一个伸缩活动的 ActivityId
|
1207
1208
|
|
1208
1209
|
# @param request: Request instance for ScaleOutInstances.
|
1209
1210
|
# @type request: :class:`Tencentcloud::as::V20180419::ScaleOutInstancesRequest`
|
data/lib/v20180419/models.rb
CHANGED
@@ -61,7 +61,7 @@ module TencentCloud
|
|
61
61
|
# @type InvocationResultSet: Array
|
62
62
|
|
63
63
|
attr_accessor :AutoScalingGroupId, :ActivityId, :ActivityType, :StatusCode, :StatusMessage, :Cause, :Description, :StartTime, :EndTime, :CreatedTime, :ActivityRelatedInstanceSet, :StatusMessageSimplified, :LifecycleActionResultSet, :DetailedStatusMessageSet, :InvocationResultSet
|
64
|
-
|
64
|
+
|
65
65
|
def initialize(autoscalinggroupid=nil, activityid=nil, activitytype=nil, statuscode=nil, statusmessage=nil, cause=nil, description=nil, starttime=nil, endtime=nil, createdtime=nil, activityrelatedinstanceset=nil, statusmessagesimplified=nil, lifecycleactionresultset=nil, detailedstatusmessageset=nil, invocationresultset=nil)
|
66
66
|
@AutoScalingGroupId = autoscalinggroupid
|
67
67
|
@ActivityId = activityid
|
@@ -139,7 +139,7 @@ module TencentCloud
|
|
139
139
|
# @type InstanceStatus: String
|
140
140
|
|
141
141
|
attr_accessor :InstanceId, :InstanceStatus
|
142
|
-
|
142
|
+
|
143
143
|
def initialize(instanceid=nil, instancestatus=nil)
|
144
144
|
@InstanceId = instanceid
|
145
145
|
@InstanceStatus = instancestatus
|
@@ -159,19 +159,25 @@ module TencentCloud
|
|
159
159
|
# @type Detail: String
|
160
160
|
# @param Solution: 建议解决方案。
|
161
161
|
# @type Solution: String
|
162
|
+
# @param Level: 伸缩建议警告级别。取值范围:<br>
|
163
|
+
# <li>WARNING:警告级别<br>
|
164
|
+
# <li>CRITICAL:严重级别<br>
|
165
|
+
# @type Level: String
|
162
166
|
|
163
|
-
attr_accessor :Problem, :Detail, :Solution
|
164
|
-
|
165
|
-
def initialize(problem=nil, detail=nil, solution=nil)
|
167
|
+
attr_accessor :Problem, :Detail, :Solution, :Level
|
168
|
+
|
169
|
+
def initialize(problem=nil, detail=nil, solution=nil, level=nil)
|
166
170
|
@Problem = problem
|
167
171
|
@Detail = detail
|
168
172
|
@Solution = solution
|
173
|
+
@Level = level
|
169
174
|
end
|
170
175
|
|
171
176
|
def deserialize(params)
|
172
177
|
@Problem = params['Problem']
|
173
178
|
@Detail = params['Detail']
|
174
179
|
@Solution = params['Solution']
|
180
|
+
@Level = params['Level']
|
175
181
|
end
|
176
182
|
end
|
177
183
|
|
@@ -183,7 +189,7 @@ module TencentCloud
|
|
183
189
|
# @type InstanceIds: Array
|
184
190
|
|
185
191
|
attr_accessor :AutoScalingGroupId, :InstanceIds
|
186
|
-
|
192
|
+
|
187
193
|
def initialize(autoscalinggroupid=nil, instanceids=nil)
|
188
194
|
@AutoScalingGroupId = autoscalinggroupid
|
189
195
|
@InstanceIds = instanceids
|
@@ -203,7 +209,7 @@ module TencentCloud
|
|
203
209
|
# @type RequestId: String
|
204
210
|
|
205
211
|
attr_accessor :ActivityId, :RequestId
|
206
|
-
|
212
|
+
|
207
213
|
def initialize(activityid=nil, requestid=nil)
|
208
214
|
@ActivityId = activityid
|
209
215
|
@RequestId = requestid
|
@@ -225,7 +231,7 @@ module TencentCloud
|
|
225
231
|
# @type ForwardLoadBalancers: Array
|
226
232
|
|
227
233
|
attr_accessor :AutoScalingGroupId, :LoadBalancerIds, :ForwardLoadBalancers
|
228
|
-
|
234
|
+
|
229
235
|
def initialize(autoscalinggroupid=nil, loadbalancerids=nil, forwardloadbalancers=nil)
|
230
236
|
@AutoScalingGroupId = autoscalinggroupid
|
231
237
|
@LoadBalancerIds = loadbalancerids
|
@@ -254,7 +260,7 @@ module TencentCloud
|
|
254
260
|
# @type RequestId: String
|
255
261
|
|
256
262
|
attr_accessor :ActivityId, :RequestId
|
257
|
-
|
263
|
+
|
258
264
|
def initialize(activityid=nil, requestid=nil)
|
259
265
|
@ActivityId = activityid
|
260
266
|
@RequestId = requestid
|
@@ -279,7 +285,7 @@ module TencentCloud
|
|
279
285
|
# @type Advices: Array
|
280
286
|
|
281
287
|
attr_accessor :AutoScalingGroupId, :Level, :Advices
|
282
|
-
|
288
|
+
|
283
289
|
def initialize(autoscalinggroupid=nil, level=nil, advices=nil)
|
284
290
|
@AutoScalingGroupId = autoscalinggroupid
|
285
291
|
@Level = level
|
@@ -383,7 +389,7 @@ module TencentCloud
|
|
383
389
|
# @type CapacityRebalance: Boolean
|
384
390
|
|
385
391
|
attr_accessor :AutoScalingGroupId, :AutoScalingGroupName, :AutoScalingGroupStatus, :CreatedTime, :DefaultCooldown, :DesiredCapacity, :EnabledStatus, :ForwardLoadBalancerSet, :InstanceCount, :InServiceInstanceCount, :LaunchConfigurationId, :LaunchConfigurationName, :LoadBalancerIdSet, :MaxSize, :MinSize, :ProjectId, :SubnetIdSet, :TerminationPolicySet, :VpcId, :ZoneSet, :RetryPolicy, :InActivityStatus, :Tags, :ServiceSettings, :Ipv6AddressCount, :MultiZoneSubnetPolicy, :HealthCheckType, :LoadBalancerHealthCheckGracePeriod, :InstanceAllocationPolicy, :SpotMixedAllocationPolicy, :CapacityRebalance
|
386
|
-
|
392
|
+
|
387
393
|
def initialize(autoscalinggroupid=nil, autoscalinggroupname=nil, autoscalinggroupstatus=nil, createdtime=nil, defaultcooldown=nil, desiredcapacity=nil, enabledstatus=nil, forwardloadbalancerset=nil, instancecount=nil, inserviceinstancecount=nil, launchconfigurationid=nil, launchconfigurationname=nil, loadbalanceridset=nil, maxsize=nil, minsize=nil, projectid=nil, subnetidset=nil, terminationpolicyset=nil, vpcid=nil, zoneset=nil, retrypolicy=nil, inactivitystatus=nil, tags=nil, servicesettings=nil, ipv6addresscount=nil, multizonesubnetpolicy=nil, healthchecktype=nil, loadbalancerhealthcheckgraceperiod=nil, instanceallocationpolicy=nil, spotmixedallocationpolicy=nil, capacityrebalance=nil)
|
388
394
|
@AutoScalingGroupId = autoscalinggroupid
|
389
395
|
@AutoScalingGroupName = autoscalinggroupname
|
@@ -481,7 +487,7 @@ module TencentCloud
|
|
481
487
|
# @type AutoScalingGroupName: String
|
482
488
|
|
483
489
|
attr_accessor :AutoScalingGroupId, :AutoScalingGroupName
|
484
|
-
|
490
|
+
|
485
491
|
def initialize(autoscalinggroupid=nil, autoscalinggroupname=nil)
|
486
492
|
@AutoScalingGroupId = autoscalinggroupid
|
487
493
|
@AutoScalingGroupName = autoscalinggroupname
|
@@ -511,7 +517,7 @@ module TencentCloud
|
|
511
517
|
# @type TopicName: String
|
512
518
|
|
513
519
|
attr_accessor :AutoScalingGroupId, :NotificationUserGroupIds, :NotificationTypes, :AutoScalingNotificationId, :TargetType, :QueueName, :TopicName
|
514
|
-
|
520
|
+
|
515
521
|
def initialize(autoscalinggroupid=nil, notificationusergroupids=nil, notificationtypes=nil, autoscalingnotificationid=nil, targettype=nil, queuename=nil, topicname=nil)
|
516
522
|
@AutoScalingGroupId = autoscalinggroupid
|
517
523
|
@NotificationUserGroupIds = notificationusergroupids
|
@@ -551,7 +557,7 @@ module TencentCloud
|
|
551
557
|
# @type ClearDisasterRecoverGroupIds: Boolean
|
552
558
|
|
553
559
|
attr_accessor :LaunchConfigurationId, :ClearDataDisks, :ClearHostNameSettings, :ClearInstanceNameSettings, :ClearDisasterRecoverGroupIds
|
554
|
-
|
560
|
+
|
555
561
|
def initialize(launchconfigurationid=nil, cleardatadisks=nil, clearhostnamesettings=nil, clearinstancenamesettings=nil, cleardisasterrecovergroupids=nil)
|
556
562
|
@LaunchConfigurationId = launchconfigurationid
|
557
563
|
@ClearDataDisks = cleardatadisks
|
@@ -575,7 +581,7 @@ module TencentCloud
|
|
575
581
|
# @type RequestId: String
|
576
582
|
|
577
583
|
attr_accessor :RequestId
|
578
|
-
|
584
|
+
|
579
585
|
def initialize(requestid=nil)
|
580
586
|
@RequestId = requestid
|
581
587
|
end
|
@@ -597,7 +603,7 @@ module TencentCloud
|
|
597
603
|
# @type LifecycleActionToken: String
|
598
604
|
|
599
605
|
attr_accessor :LifecycleHookId, :LifecycleActionResult, :InstanceId, :LifecycleActionToken
|
600
|
-
|
606
|
+
|
601
607
|
def initialize(lifecyclehookid=nil, lifecycleactionresult=nil, instanceid=nil, lifecycleactiontoken=nil)
|
602
608
|
@LifecycleHookId = lifecyclehookid
|
603
609
|
@LifecycleActionResult = lifecycleactionresult
|
@@ -619,7 +625,7 @@ module TencentCloud
|
|
619
625
|
# @type RequestId: String
|
620
626
|
|
621
627
|
attr_accessor :RequestId
|
622
|
-
|
628
|
+
|
623
629
|
def initialize(requestid=nil)
|
624
630
|
@RequestId = requestid
|
625
631
|
end
|
@@ -645,7 +651,7 @@ module TencentCloud
|
|
645
651
|
# @type InheritInstanceTag: Boolean
|
646
652
|
|
647
653
|
attr_accessor :AutoScalingGroupName, :InstanceId, :MinSize, :MaxSize, :DesiredCapacity, :InheritInstanceTag
|
648
|
-
|
654
|
+
|
649
655
|
def initialize(autoscalinggroupname=nil, instanceid=nil, minsize=nil, maxsize=nil, desiredcapacity=nil, inheritinstancetag=nil)
|
650
656
|
@AutoScalingGroupName = autoscalinggroupname
|
651
657
|
@InstanceId = instanceid
|
@@ -673,7 +679,7 @@ module TencentCloud
|
|
673
679
|
# @type RequestId: String
|
674
680
|
|
675
681
|
attr_accessor :AutoScalingGroupId, :RequestId
|
676
|
-
|
682
|
+
|
677
683
|
def initialize(autoscalinggroupid=nil, requestid=nil)
|
678
684
|
@AutoScalingGroupId = autoscalinggroupid
|
679
685
|
@RequestId = requestid
|
@@ -761,7 +767,7 @@ module TencentCloud
|
|
761
767
|
# @type CapacityRebalance: Boolean
|
762
768
|
|
763
769
|
attr_accessor :AutoScalingGroupName, :LaunchConfigurationId, :MaxSize, :MinSize, :VpcId, :DefaultCooldown, :DesiredCapacity, :LoadBalancerIds, :ProjectId, :ForwardLoadBalancers, :SubnetIds, :TerminationPolicies, :Zones, :RetryPolicy, :ZonesCheckPolicy, :Tags, :ServiceSettings, :Ipv6AddressCount, :MultiZoneSubnetPolicy, :HealthCheckType, :LoadBalancerHealthCheckGracePeriod, :InstanceAllocationPolicy, :SpotMixedAllocationPolicy, :CapacityRebalance
|
764
|
-
|
770
|
+
|
765
771
|
def initialize(autoscalinggroupname=nil, launchconfigurationid=nil, maxsize=nil, minsize=nil, vpcid=nil, defaultcooldown=nil, desiredcapacity=nil, loadbalancerids=nil, projectid=nil, forwardloadbalancers=nil, subnetids=nil, terminationpolicies=nil, zones=nil, retrypolicy=nil, zonescheckpolicy=nil, tags=nil, servicesettings=nil, ipv6addresscount=nil, multizonesubnetpolicy=nil, healthchecktype=nil, loadbalancerhealthcheckgraceperiod=nil, instanceallocationpolicy=nil, spotmixedallocationpolicy=nil, capacityrebalance=nil)
|
766
772
|
@AutoScalingGroupName = autoscalinggroupname
|
767
773
|
@LaunchConfigurationId = launchconfigurationid
|
@@ -845,7 +851,7 @@ module TencentCloud
|
|
845
851
|
# @type RequestId: String
|
846
852
|
|
847
853
|
attr_accessor :AutoScalingGroupId, :RequestId
|
848
|
-
|
854
|
+
|
849
855
|
def initialize(autoscalinggroupid=nil, requestid=nil)
|
850
856
|
@AutoScalingGroupId = autoscalinggroupid
|
851
857
|
@RequestId = requestid
|
@@ -926,7 +932,7 @@ module TencentCloud
|
|
926
932
|
# @type DisasterRecoverGroupIds: Array
|
927
933
|
|
928
934
|
attr_accessor :LaunchConfigurationName, :ImageId, :ProjectId, :InstanceType, :SystemDisk, :DataDisks, :InternetAccessible, :LoginSettings, :SecurityGroupIds, :EnhancedService, :UserData, :InstanceChargeType, :InstanceMarketOptions, :InstanceTypes, :CamRoleName, :InstanceTypesCheckPolicy, :InstanceTags, :Tags, :HostNameSettings, :InstanceNameSettings, :InstanceChargePrepaid, :DiskTypePolicy, :HpcClusterId, :IPv6InternetAccessible, :DisasterRecoverGroupIds
|
929
|
-
|
935
|
+
|
930
936
|
def initialize(launchconfigurationname=nil, imageid=nil, projectid=nil, instancetype=nil, systemdisk=nil, datadisks=nil, internetaccessible=nil, loginsettings=nil, securitygroupids=nil, enhancedservice=nil, userdata=nil, instancechargetype=nil, instancemarketoptions=nil, instancetypes=nil, camrolename=nil, instancetypescheckpolicy=nil, instancetags=nil, tags=nil, hostnamesettings=nil, instancenamesettings=nil, instancechargeprepaid=nil, disktypepolicy=nil, hpcclusterid=nil, ipv6internetaccessible=nil, disasterrecovergroupids=nil)
|
931
937
|
@LaunchConfigurationName = launchconfigurationname
|
932
938
|
@ImageId = imageid
|
@@ -1040,7 +1046,7 @@ module TencentCloud
|
|
1040
1046
|
# @type RequestId: String
|
1041
1047
|
|
1042
1048
|
attr_accessor :LaunchConfigurationId, :RequestId
|
1043
|
-
|
1049
|
+
|
1044
1050
|
def initialize(launchconfigurationid=nil, requestid=nil)
|
1045
1051
|
@LaunchConfigurationId = launchconfigurationid
|
1046
1052
|
@RequestId = requestid
|
@@ -1074,7 +1080,7 @@ module TencentCloud
|
|
1074
1080
|
# @type LifecycleCommand: :class:`Tencentcloud::As.v20180419.models.LifecycleCommand`
|
1075
1081
|
|
1076
1082
|
attr_accessor :AutoScalingGroupId, :LifecycleHookName, :LifecycleTransition, :DefaultResult, :HeartbeatTimeout, :NotificationMetadata, :NotificationTarget, :LifecycleTransitionType, :LifecycleCommand
|
1077
|
-
|
1083
|
+
|
1078
1084
|
def initialize(autoscalinggroupid=nil, lifecyclehookname=nil, lifecycletransition=nil, defaultresult=nil, heartbeattimeout=nil, notificationmetadata=nil, notificationtarget=nil, lifecycletransitiontype=nil, lifecyclecommand=nil)
|
1079
1085
|
@AutoScalingGroupId = autoscalinggroupid
|
1080
1086
|
@LifecycleHookName = lifecyclehookname
|
@@ -1114,7 +1120,7 @@ module TencentCloud
|
|
1114
1120
|
# @type RequestId: String
|
1115
1121
|
|
1116
1122
|
attr_accessor :LifecycleHookId, :RequestId
|
1117
|
-
|
1123
|
+
|
1118
1124
|
def initialize(lifecyclehookid=nil, requestid=nil)
|
1119
1125
|
@LifecycleHookId = lifecyclehookid
|
1120
1126
|
@RequestId = requestid
|
@@ -1155,7 +1161,7 @@ module TencentCloud
|
|
1155
1161
|
# @type TopicName: String
|
1156
1162
|
|
1157
1163
|
attr_accessor :AutoScalingGroupId, :NotificationTypes, :NotificationUserGroupIds, :TargetType, :QueueName, :TopicName
|
1158
|
-
|
1164
|
+
|
1159
1165
|
def initialize(autoscalinggroupid=nil, notificationtypes=nil, notificationusergroupids=nil, targettype=nil, queuename=nil, topicname=nil)
|
1160
1166
|
@AutoScalingGroupId = autoscalinggroupid
|
1161
1167
|
@NotificationTypes = notificationtypes
|
@@ -1183,7 +1189,7 @@ module TencentCloud
|
|
1183
1189
|
# @type RequestId: String
|
1184
1190
|
|
1185
1191
|
attr_accessor :AutoScalingNotificationId, :RequestId
|
1186
|
-
|
1192
|
+
|
1187
1193
|
def initialize(autoscalingnotificationid=nil, requestid=nil)
|
1188
1194
|
@AutoScalingNotificationId = autoscalingnotificationid
|
1189
1195
|
@RequestId = requestid
|
@@ -1224,7 +1230,7 @@ module TencentCloud
|
|
1224
1230
|
# @type NotificationUserGroupIds: Array
|
1225
1231
|
|
1226
1232
|
attr_accessor :AutoScalingGroupId, :ScalingPolicyName, :ScalingPolicyType, :AdjustmentType, :AdjustmentValue, :Cooldown, :MetricAlarm, :PredefinedMetricType, :TargetValue, :EstimatedInstanceWarmup, :DisableScaleIn, :NotificationUserGroupIds
|
1227
|
-
|
1233
|
+
|
1228
1234
|
def initialize(autoscalinggroupid=nil, scalingpolicyname=nil, scalingpolicytype=nil, adjustmenttype=nil, adjustmentvalue=nil, cooldown=nil, metricalarm=nil, predefinedmetrictype=nil, targetvalue=nil, estimatedinstancewarmup=nil, disablescalein=nil, notificationusergroupids=nil)
|
1229
1235
|
@AutoScalingGroupId = autoscalinggroupid
|
1230
1236
|
@ScalingPolicyName = scalingpolicyname
|
@@ -1267,7 +1273,7 @@ module TencentCloud
|
|
1267
1273
|
# @type RequestId: String
|
1268
1274
|
|
1269
1275
|
attr_accessor :AutoScalingPolicyId, :RequestId
|
1270
|
-
|
1276
|
+
|
1271
1277
|
def initialize(autoscalingpolicyid=nil, requestid=nil)
|
1272
1278
|
@AutoScalingPolicyId = autoscalingpolicyid
|
1273
1279
|
@RequestId = requestid
|
@@ -1299,7 +1305,7 @@ module TencentCloud
|
|
1299
1305
|
# @type Recurrence: String
|
1300
1306
|
|
1301
1307
|
attr_accessor :AutoScalingGroupId, :ScheduledActionName, :MaxSize, :MinSize, :DesiredCapacity, :StartTime, :EndTime, :Recurrence
|
1302
|
-
|
1308
|
+
|
1303
1309
|
def initialize(autoscalinggroupid=nil, scheduledactionname=nil, maxsize=nil, minsize=nil, desiredcapacity=nil, starttime=nil, endtime=nil, recurrence=nil)
|
1304
1310
|
@AutoScalingGroupId = autoscalinggroupid
|
1305
1311
|
@ScheduledActionName = scheduledactionname
|
@@ -1331,7 +1337,7 @@ module TencentCloud
|
|
1331
1337
|
# @type RequestId: String
|
1332
1338
|
|
1333
1339
|
attr_accessor :ScheduledActionId, :RequestId
|
1334
|
-
|
1340
|
+
|
1335
1341
|
def initialize(scheduledactionid=nil, requestid=nil)
|
1336
1342
|
@ScheduledActionId = scheduledactionid
|
1337
1343
|
@RequestId = requestid
|
@@ -1366,7 +1372,7 @@ module TencentCloud
|
|
1366
1372
|
# @type ThroughputPerformance: Integer
|
1367
1373
|
|
1368
1374
|
attr_accessor :DiskType, :DiskSize, :SnapshotId, :DeleteWithInstance, :Encrypt, :ThroughputPerformance
|
1369
|
-
|
1375
|
+
|
1370
1376
|
def initialize(disktype=nil, disksize=nil, snapshotid=nil, deletewithinstance=nil, encrypt=nil, throughputperformance=nil)
|
1371
1377
|
@DiskType = disktype
|
1372
1378
|
@DiskSize = disksize
|
@@ -1392,7 +1398,7 @@ module TencentCloud
|
|
1392
1398
|
# @type AutoScalingGroupId: String
|
1393
1399
|
|
1394
1400
|
attr_accessor :AutoScalingGroupId
|
1395
|
-
|
1401
|
+
|
1396
1402
|
def initialize(autoscalinggroupid=nil)
|
1397
1403
|
@AutoScalingGroupId = autoscalinggroupid
|
1398
1404
|
end
|
@@ -1408,7 +1414,7 @@ module TencentCloud
|
|
1408
1414
|
# @type RequestId: String
|
1409
1415
|
|
1410
1416
|
attr_accessor :RequestId
|
1411
|
-
|
1417
|
+
|
1412
1418
|
def initialize(requestid=nil)
|
1413
1419
|
@RequestId = requestid
|
1414
1420
|
end
|
@@ -1424,7 +1430,7 @@ module TencentCloud
|
|
1424
1430
|
# @type LaunchConfigurationId: String
|
1425
1431
|
|
1426
1432
|
attr_accessor :LaunchConfigurationId
|
1427
|
-
|
1433
|
+
|
1428
1434
|
def initialize(launchconfigurationid=nil)
|
1429
1435
|
@LaunchConfigurationId = launchconfigurationid
|
1430
1436
|
end
|
@@ -1440,7 +1446,7 @@ module TencentCloud
|
|
1440
1446
|
# @type RequestId: String
|
1441
1447
|
|
1442
1448
|
attr_accessor :RequestId
|
1443
|
-
|
1449
|
+
|
1444
1450
|
def initialize(requestid=nil)
|
1445
1451
|
@RequestId = requestid
|
1446
1452
|
end
|
@@ -1456,7 +1462,7 @@ module TencentCloud
|
|
1456
1462
|
# @type LifecycleHookId: String
|
1457
1463
|
|
1458
1464
|
attr_accessor :LifecycleHookId
|
1459
|
-
|
1465
|
+
|
1460
1466
|
def initialize(lifecyclehookid=nil)
|
1461
1467
|
@LifecycleHookId = lifecyclehookid
|
1462
1468
|
end
|
@@ -1472,7 +1478,7 @@ module TencentCloud
|
|
1472
1478
|
# @type RequestId: String
|
1473
1479
|
|
1474
1480
|
attr_accessor :RequestId
|
1475
|
-
|
1481
|
+
|
1476
1482
|
def initialize(requestid=nil)
|
1477
1483
|
@RequestId = requestid
|
1478
1484
|
end
|
@@ -1488,7 +1494,7 @@ module TencentCloud
|
|
1488
1494
|
# @type AutoScalingNotificationId: String
|
1489
1495
|
|
1490
1496
|
attr_accessor :AutoScalingNotificationId
|
1491
|
-
|
1497
|
+
|
1492
1498
|
def initialize(autoscalingnotificationid=nil)
|
1493
1499
|
@AutoScalingNotificationId = autoscalingnotificationid
|
1494
1500
|
end
|
@@ -1504,7 +1510,7 @@ module TencentCloud
|
|
1504
1510
|
# @type RequestId: String
|
1505
1511
|
|
1506
1512
|
attr_accessor :RequestId
|
1507
|
-
|
1513
|
+
|
1508
1514
|
def initialize(requestid=nil)
|
1509
1515
|
@RequestId = requestid
|
1510
1516
|
end
|
@@ -1520,7 +1526,7 @@ module TencentCloud
|
|
1520
1526
|
# @type AutoScalingPolicyId: String
|
1521
1527
|
|
1522
1528
|
attr_accessor :AutoScalingPolicyId
|
1523
|
-
|
1529
|
+
|
1524
1530
|
def initialize(autoscalingpolicyid=nil)
|
1525
1531
|
@AutoScalingPolicyId = autoscalingpolicyid
|
1526
1532
|
end
|
@@ -1536,7 +1542,7 @@ module TencentCloud
|
|
1536
1542
|
# @type RequestId: String
|
1537
1543
|
|
1538
1544
|
attr_accessor :RequestId
|
1539
|
-
|
1545
|
+
|
1540
1546
|
def initialize(requestid=nil)
|
1541
1547
|
@RequestId = requestid
|
1542
1548
|
end
|
@@ -1552,7 +1558,7 @@ module TencentCloud
|
|
1552
1558
|
# @type ScheduledActionId: String
|
1553
1559
|
|
1554
1560
|
attr_accessor :ScheduledActionId
|
1555
|
-
|
1561
|
+
|
1556
1562
|
def initialize(scheduledactionid=nil)
|
1557
1563
|
@ScheduledActionId = scheduledactionid
|
1558
1564
|
end
|
@@ -1568,7 +1574,7 @@ module TencentCloud
|
|
1568
1574
|
# @type RequestId: String
|
1569
1575
|
|
1570
1576
|
attr_accessor :RequestId
|
1571
|
-
|
1577
|
+
|
1572
1578
|
def initialize(requestid=nil)
|
1573
1579
|
@RequestId = requestid
|
1574
1580
|
end
|
@@ -1581,7 +1587,7 @@ module TencentCloud
|
|
1581
1587
|
# DescribeAccountLimits请求参数结构体
|
1582
1588
|
class DescribeAccountLimitsRequest < TencentCloud::Common::AbstractModel
|
1583
1589
|
|
1584
|
-
|
1590
|
+
|
1585
1591
|
def initialize()
|
1586
1592
|
end
|
1587
1593
|
|
@@ -1603,7 +1609,7 @@ module TencentCloud
|
|
1603
1609
|
# @type RequestId: String
|
1604
1610
|
|
1605
1611
|
attr_accessor :MaxNumberOfLaunchConfigurations, :NumberOfLaunchConfigurations, :MaxNumberOfAutoScalingGroups, :NumberOfAutoScalingGroups, :RequestId
|
1606
|
-
|
1612
|
+
|
1607
1613
|
def initialize(maxnumberoflaunchconfigurations=nil, numberoflaunchconfigurations=nil, maxnumberofautoscalinggroups=nil, numberofautoscalinggroups=nil, requestid=nil)
|
1608
1614
|
@MaxNumberOfLaunchConfigurations = maxnumberoflaunchconfigurations
|
1609
1615
|
@NumberOfLaunchConfigurations = numberoflaunchconfigurations
|
@@ -1642,7 +1648,7 @@ module TencentCloud
|
|
1642
1648
|
# @type EndTime: String
|
1643
1649
|
|
1644
1650
|
attr_accessor :ActivityIds, :Filters, :Limit, :Offset, :StartTime, :EndTime
|
1645
|
-
|
1651
|
+
|
1646
1652
|
def initialize(activityids=nil, filters=nil, limit=nil, offset=nil, starttime=nil, endtime=nil)
|
1647
1653
|
@ActivityIds = activityids
|
1648
1654
|
@Filters = filters
|
@@ -1679,7 +1685,7 @@ module TencentCloud
|
|
1679
1685
|
# @type RequestId: String
|
1680
1686
|
|
1681
1687
|
attr_accessor :TotalCount, :ActivitySet, :RequestId
|
1682
|
-
|
1688
|
+
|
1683
1689
|
def initialize(totalcount=nil, activityset=nil, requestid=nil)
|
1684
1690
|
@TotalCount = totalcount
|
1685
1691
|
@ActivitySet = activityset
|
@@ -1706,7 +1712,7 @@ module TencentCloud
|
|
1706
1712
|
# @type AutoScalingGroupIds: Array
|
1707
1713
|
|
1708
1714
|
attr_accessor :AutoScalingGroupIds
|
1709
|
-
|
1715
|
+
|
1710
1716
|
def initialize(autoscalinggroupids=nil)
|
1711
1717
|
@AutoScalingGroupIds = autoscalinggroupids
|
1712
1718
|
end
|
@@ -1724,7 +1730,7 @@ module TencentCloud
|
|
1724
1730
|
# @type RequestId: String
|
1725
1731
|
|
1726
1732
|
attr_accessor :AutoScalingAdviceSet, :RequestId
|
1727
|
-
|
1733
|
+
|
1728
1734
|
def initialize(autoscalingadviceset=nil, requestid=nil)
|
1729
1735
|
@AutoScalingAdviceSet = autoscalingadviceset
|
1730
1736
|
@RequestId = requestid
|
@@ -1749,7 +1755,7 @@ module TencentCloud
|
|
1749
1755
|
# @type AutoScalingGroupIds: Array
|
1750
1756
|
|
1751
1757
|
attr_accessor :AutoScalingGroupIds
|
1752
|
-
|
1758
|
+
|
1753
1759
|
def initialize(autoscalinggroupids=nil)
|
1754
1760
|
@AutoScalingGroupIds = autoscalinggroupids
|
1755
1761
|
end
|
@@ -1767,7 +1773,7 @@ module TencentCloud
|
|
1767
1773
|
# @type RequestId: String
|
1768
1774
|
|
1769
1775
|
attr_accessor :ActivitySet, :RequestId
|
1770
|
-
|
1776
|
+
|
1771
1777
|
def initialize(activityset=nil, requestid=nil)
|
1772
1778
|
@ActivitySet = activityset
|
1773
1779
|
@RequestId = requestid
|
@@ -1806,7 +1812,7 @@ module TencentCloud
|
|
1806
1812
|
# @type Offset: Integer
|
1807
1813
|
|
1808
1814
|
attr_accessor :AutoScalingGroupIds, :Filters, :Limit, :Offset
|
1809
|
-
|
1815
|
+
|
1810
1816
|
def initialize(autoscalinggroupids=nil, filters=nil, limit=nil, offset=nil)
|
1811
1817
|
@AutoScalingGroupIds = autoscalinggroupids
|
1812
1818
|
@Filters = filters
|
@@ -1839,7 +1845,7 @@ module TencentCloud
|
|
1839
1845
|
# @type RequestId: String
|
1840
1846
|
|
1841
1847
|
attr_accessor :AutoScalingGroupSet, :TotalCount, :RequestId
|
1842
|
-
|
1848
|
+
|
1843
1849
|
def initialize(autoscalinggroupset=nil, totalcount=nil, requestid=nil)
|
1844
1850
|
@AutoScalingGroupSet = autoscalinggroupset
|
1845
1851
|
@TotalCount = totalcount
|
@@ -1875,7 +1881,7 @@ module TencentCloud
|
|
1875
1881
|
# @type Limit: Integer
|
1876
1882
|
|
1877
1883
|
attr_accessor :InstanceIds, :Filters, :Offset, :Limit
|
1878
|
-
|
1884
|
+
|
1879
1885
|
def initialize(instanceids=nil, filters=nil, offset=nil, limit=nil)
|
1880
1886
|
@InstanceIds = instanceids
|
1881
1887
|
@Filters = filters
|
@@ -1908,7 +1914,7 @@ module TencentCloud
|
|
1908
1914
|
# @type RequestId: String
|
1909
1915
|
|
1910
1916
|
attr_accessor :AutoScalingInstanceSet, :TotalCount, :RequestId
|
1911
|
-
|
1917
|
+
|
1912
1918
|
def initialize(autoscalinginstanceset=nil, totalcount=nil, requestid=nil)
|
1913
1919
|
@AutoScalingInstanceSet = autoscalinginstanceset
|
1914
1920
|
@TotalCount = totalcount
|
@@ -1949,7 +1955,7 @@ module TencentCloud
|
|
1949
1955
|
# @type Offset: Integer
|
1950
1956
|
|
1951
1957
|
attr_accessor :LaunchConfigurationIds, :Filters, :Limit, :Offset
|
1952
|
-
|
1958
|
+
|
1953
1959
|
def initialize(launchconfigurationids=nil, filters=nil, limit=nil, offset=nil)
|
1954
1960
|
@LaunchConfigurationIds = launchconfigurationids
|
1955
1961
|
@Filters = filters
|
@@ -1982,7 +1988,7 @@ module TencentCloud
|
|
1982
1988
|
# @type RequestId: String
|
1983
1989
|
|
1984
1990
|
attr_accessor :TotalCount, :LaunchConfigurationSet, :RequestId
|
1985
|
-
|
1991
|
+
|
1986
1992
|
def initialize(totalcount=nil, launchconfigurationset=nil, requestid=nil)
|
1987
1993
|
@TotalCount = totalcount
|
1988
1994
|
@LaunchConfigurationSet = launchconfigurationset
|
@@ -2019,7 +2025,7 @@ module TencentCloud
|
|
2019
2025
|
# @type Offset: Integer
|
2020
2026
|
|
2021
2027
|
attr_accessor :LifecycleHookIds, :Filters, :Limit, :Offset
|
2022
|
-
|
2028
|
+
|
2023
2029
|
def initialize(lifecyclehookids=nil, filters=nil, limit=nil, offset=nil)
|
2024
2030
|
@LifecycleHookIds = lifecyclehookids
|
2025
2031
|
@Filters = filters
|
@@ -2052,7 +2058,7 @@ module TencentCloud
|
|
2052
2058
|
# @type RequestId: String
|
2053
2059
|
|
2054
2060
|
attr_accessor :LifecycleHookSet, :TotalCount, :RequestId
|
2055
|
-
|
2061
|
+
|
2056
2062
|
def initialize(lifecyclehookset=nil, totalcount=nil, requestid=nil)
|
2057
2063
|
@LifecycleHookSet = lifecyclehookset
|
2058
2064
|
@TotalCount = totalcount
|
@@ -2088,7 +2094,7 @@ module TencentCloud
|
|
2088
2094
|
# @type Offset: Integer
|
2089
2095
|
|
2090
2096
|
attr_accessor :AutoScalingNotificationIds, :Filters, :Limit, :Offset
|
2091
|
-
|
2097
|
+
|
2092
2098
|
def initialize(autoscalingnotificationids=nil, filters=nil, limit=nil, offset=nil)
|
2093
2099
|
@AutoScalingNotificationIds = autoscalingnotificationids
|
2094
2100
|
@Filters = filters
|
@@ -2121,7 +2127,7 @@ module TencentCloud
|
|
2121
2127
|
# @type RequestId: String
|
2122
2128
|
|
2123
2129
|
attr_accessor :TotalCount, :AutoScalingNotificationSet, :RequestId
|
2124
|
-
|
2130
|
+
|
2125
2131
|
def initialize(totalcount=nil, autoscalingnotificationset=nil, requestid=nil)
|
2126
2132
|
@TotalCount = totalcount
|
2127
2133
|
@AutoScalingNotificationSet = autoscalingnotificationset
|
@@ -2159,7 +2165,7 @@ module TencentCloud
|
|
2159
2165
|
# @type Offset: Integer
|
2160
2166
|
|
2161
2167
|
attr_accessor :AutoScalingPolicyIds, :Filters, :Limit, :Offset
|
2162
|
-
|
2168
|
+
|
2163
2169
|
def initialize(autoscalingpolicyids=nil, filters=nil, limit=nil, offset=nil)
|
2164
2170
|
@AutoScalingPolicyIds = autoscalingpolicyids
|
2165
2171
|
@Filters = filters
|
@@ -2192,7 +2198,7 @@ module TencentCloud
|
|
2192
2198
|
# @type RequestId: String
|
2193
2199
|
|
2194
2200
|
attr_accessor :ScalingPolicySet, :TotalCount, :RequestId
|
2195
|
-
|
2201
|
+
|
2196
2202
|
def initialize(scalingpolicyset=nil, totalcount=nil, requestid=nil)
|
2197
2203
|
@ScalingPolicySet = scalingpolicyset
|
2198
2204
|
@TotalCount = totalcount
|
@@ -2228,7 +2234,7 @@ module TencentCloud
|
|
2228
2234
|
# @type Limit: Integer
|
2229
2235
|
|
2230
2236
|
attr_accessor :ScheduledActionIds, :Filters, :Offset, :Limit
|
2231
|
-
|
2237
|
+
|
2232
2238
|
def initialize(scheduledactionids=nil, filters=nil, offset=nil, limit=nil)
|
2233
2239
|
@ScheduledActionIds = scheduledactionids
|
2234
2240
|
@Filters = filters
|
@@ -2261,7 +2267,7 @@ module TencentCloud
|
|
2261
2267
|
# @type RequestId: String
|
2262
2268
|
|
2263
2269
|
attr_accessor :TotalCount, :ScheduledActionSet, :RequestId
|
2264
|
-
|
2270
|
+
|
2265
2271
|
def initialize(totalcount=nil, scheduledactionset=nil, requestid=nil)
|
2266
2272
|
@TotalCount = totalcount
|
2267
2273
|
@ScheduledActionSet = scheduledactionset
|
@@ -2290,7 +2296,7 @@ module TencentCloud
|
|
2290
2296
|
# @type InstanceIds: Array
|
2291
2297
|
|
2292
2298
|
attr_accessor :AutoScalingGroupId, :InstanceIds
|
2293
|
-
|
2299
|
+
|
2294
2300
|
def initialize(autoscalinggroupid=nil, instanceids=nil)
|
2295
2301
|
@AutoScalingGroupId = autoscalinggroupid
|
2296
2302
|
@InstanceIds = instanceids
|
@@ -2310,7 +2316,7 @@ module TencentCloud
|
|
2310
2316
|
# @type RequestId: String
|
2311
2317
|
|
2312
2318
|
attr_accessor :ActivityId, :RequestId
|
2313
|
-
|
2319
|
+
|
2314
2320
|
def initialize(activityid=nil, requestid=nil)
|
2315
2321
|
@ActivityId = activityid
|
2316
2322
|
@RequestId = requestid
|
@@ -2332,7 +2338,7 @@ module TencentCloud
|
|
2332
2338
|
# @type ForwardLoadBalancerIdentifications: Array
|
2333
2339
|
|
2334
2340
|
attr_accessor :AutoScalingGroupId, :LoadBalancerIds, :ForwardLoadBalancerIdentifications
|
2335
|
-
|
2341
|
+
|
2336
2342
|
def initialize(autoscalinggroupid=nil, loadbalancerids=nil, forwardloadbalanceridentifications=nil)
|
2337
2343
|
@AutoScalingGroupId = autoscalinggroupid
|
2338
2344
|
@LoadBalancerIds = loadbalancerids
|
@@ -2361,7 +2367,7 @@ module TencentCloud
|
|
2361
2367
|
# @type RequestId: String
|
2362
2368
|
|
2363
2369
|
attr_accessor :ActivityId, :RequestId
|
2364
|
-
|
2370
|
+
|
2365
2371
|
def initialize(activityid=nil, requestid=nil)
|
2366
2372
|
@ActivityId = activityid
|
2367
2373
|
@RequestId = requestid
|
@@ -2391,7 +2397,7 @@ module TencentCloud
|
|
2391
2397
|
# @type InstanceType: String
|
2392
2398
|
|
2393
2399
|
attr_accessor :Code, :Zone, :InstanceId, :InstanceChargeType, :SubnetId, :Message, :InstanceType
|
2394
|
-
|
2400
|
+
|
2395
2401
|
def initialize(code=nil, zone=nil, instanceid=nil, instancechargetype=nil, subnetid=nil, message=nil, instancetype=nil)
|
2396
2402
|
@Code = code
|
2397
2403
|
@Zone = zone
|
@@ -2419,7 +2425,7 @@ module TencentCloud
|
|
2419
2425
|
# @type AutoScalingGroupId: String
|
2420
2426
|
|
2421
2427
|
attr_accessor :AutoScalingGroupId
|
2422
|
-
|
2428
|
+
|
2423
2429
|
def initialize(autoscalinggroupid=nil)
|
2424
2430
|
@AutoScalingGroupId = autoscalinggroupid
|
2425
2431
|
end
|
@@ -2435,7 +2441,7 @@ module TencentCloud
|
|
2435
2441
|
# @type RequestId: String
|
2436
2442
|
|
2437
2443
|
attr_accessor :RequestId
|
2438
|
-
|
2444
|
+
|
2439
2445
|
def initialize(requestid=nil)
|
2440
2446
|
@RequestId = requestid
|
2441
2447
|
end
|
@@ -2451,7 +2457,7 @@ module TencentCloud
|
|
2451
2457
|
# @type AutoScalingGroupId: String
|
2452
2458
|
|
2453
2459
|
attr_accessor :AutoScalingGroupId
|
2454
|
-
|
2460
|
+
|
2455
2461
|
def initialize(autoscalinggroupid=nil)
|
2456
2462
|
@AutoScalingGroupId = autoscalinggroupid
|
2457
2463
|
end
|
@@ -2467,7 +2473,7 @@ module TencentCloud
|
|
2467
2473
|
# @type RequestId: String
|
2468
2474
|
|
2469
2475
|
attr_accessor :RequestId
|
2470
|
-
|
2476
|
+
|
2471
2477
|
def initialize(requestid=nil)
|
2472
2478
|
@RequestId = requestid
|
2473
2479
|
end
|
@@ -2489,7 +2495,7 @@ module TencentCloud
|
|
2489
2495
|
# @type AutomationToolsService: :class:`Tencentcloud::As.v20180419.models.RunAutomationServiceEnabled`
|
2490
2496
|
|
2491
2497
|
attr_accessor :SecurityService, :MonitorService, :AutomationService, :AutomationToolsService
|
2492
|
-
|
2498
|
+
|
2493
2499
|
def initialize(securityservice=nil, monitorservice=nil, automationservice=nil, automationtoolsservice=nil)
|
2494
2500
|
@SecurityService = securityservice
|
2495
2501
|
@MonitorService = monitorservice
|
@@ -2531,7 +2537,7 @@ module TencentCloud
|
|
2531
2537
|
# @type TriggerSource: String
|
2532
2538
|
|
2533
2539
|
attr_accessor :AutoScalingPolicyId, :HonorCooldown, :TriggerSource
|
2534
|
-
|
2540
|
+
|
2535
2541
|
def initialize(autoscalingpolicyid=nil, honorcooldown=nil, triggersource=nil)
|
2536
2542
|
@AutoScalingPolicyId = autoscalingpolicyid
|
2537
2543
|
@HonorCooldown = honorcooldown
|
@@ -2553,7 +2559,7 @@ module TencentCloud
|
|
2553
2559
|
# @type RequestId: String
|
2554
2560
|
|
2555
2561
|
attr_accessor :ActivityId, :RequestId
|
2556
|
-
|
2562
|
+
|
2557
2563
|
def initialize(activityid=nil, requestid=nil)
|
2558
2564
|
@ActivityId = activityid
|
2559
2565
|
@RequestId = requestid
|
@@ -2584,7 +2590,7 @@ module TencentCloud
|
|
2584
2590
|
# @type Values: Array
|
2585
2591
|
|
2586
2592
|
attr_accessor :Name, :Values
|
2587
|
-
|
2593
|
+
|
2588
2594
|
def initialize(name=nil, values=nil)
|
2589
2595
|
@Name = name
|
2590
2596
|
@Values = values
|
@@ -2610,7 +2616,7 @@ module TencentCloud
|
|
2610
2616
|
# @type Region: String
|
2611
2617
|
|
2612
2618
|
attr_accessor :LoadBalancerId, :ListenerId, :TargetAttributes, :LocationId, :Region
|
2613
|
-
|
2619
|
+
|
2614
2620
|
def initialize(loadbalancerid=nil, listenerid=nil, targetattributes=nil, locationid=nil, region=nil)
|
2615
2621
|
@LoadBalancerId = loadbalancerid
|
2616
2622
|
@ListenerId = listenerid
|
@@ -2645,7 +2651,7 @@ module TencentCloud
|
|
2645
2651
|
# @type LocationId: String
|
2646
2652
|
|
2647
2653
|
attr_accessor :LoadBalancerId, :ListenerId, :LocationId
|
2648
|
-
|
2654
|
+
|
2649
2655
|
def initialize(loadbalancerid=nil, listenerid=nil, locationid=nil)
|
2650
2656
|
@LoadBalancerId = loadbalancerid
|
2651
2657
|
@ListenerId = listenerid
|
@@ -2674,7 +2680,7 @@ module TencentCloud
|
|
2674
2680
|
# @type HostNameStyle: String
|
2675
2681
|
|
2676
2682
|
attr_accessor :HostName, :HostNameStyle
|
2677
|
-
|
2683
|
+
|
2678
2684
|
def initialize(hostname=nil, hostnamestyle=nil)
|
2679
2685
|
@HostName = hostname
|
2680
2686
|
@HostNameStyle = hostnamestyle
|
@@ -2701,7 +2707,7 @@ module TencentCloud
|
|
2701
2707
|
# @type BandwidthPackageId: String
|
2702
2708
|
|
2703
2709
|
attr_accessor :InternetChargeType, :InternetMaxBandwidthOut, :BandwidthPackageId
|
2704
|
-
|
2710
|
+
|
2705
2711
|
def initialize(internetchargetype=nil, internetmaxbandwidthout=nil, bandwidthpackageid=nil)
|
2706
2712
|
@InternetChargeType = internetchargetype
|
2707
2713
|
@InternetMaxBandwidthOut = internetmaxbandwidthout
|
@@ -2773,7 +2779,7 @@ module TencentCloud
|
|
2773
2779
|
# @type DisasterRecoverGroupIds: Array
|
2774
2780
|
|
2775
2781
|
attr_accessor :InstanceId, :AutoScalingGroupId, :LaunchConfigurationId, :LaunchConfigurationName, :LifeCycleState, :HealthStatus, :ProtectedFromScaleIn, :Zone, :CreationType, :AddTime, :InstanceType, :VersionNumber, :AutoScalingGroupName, :WarmupStatus, :DisasterRecoverGroupIds
|
2776
|
-
|
2782
|
+
|
2777
2783
|
def initialize(instanceid=nil, autoscalinggroupid=nil, launchconfigurationid=nil, launchconfigurationname=nil, lifecyclestate=nil, healthstatus=nil, protectedfromscalein=nil, zone=nil, creationtype=nil, addtime=nil, instancetype=nil, versionnumber=nil, autoscalinggroupname=nil, warmupstatus=nil, disasterrecovergroupids=nil)
|
2778
2784
|
@InstanceId = instanceid
|
2779
2785
|
@AutoScalingGroupId = autoscalinggroupid
|
@@ -2819,7 +2825,7 @@ module TencentCloud
|
|
2819
2825
|
# @type RenewFlag: String
|
2820
2826
|
|
2821
2827
|
attr_accessor :Period, :RenewFlag
|
2822
|
-
|
2828
|
+
|
2823
2829
|
def initialize(period=nil, renewflag=nil)
|
2824
2830
|
@Period = period
|
2825
2831
|
@RenewFlag = renewflag
|
@@ -2840,7 +2846,7 @@ module TencentCloud
|
|
2840
2846
|
# @type MarketType: String
|
2841
2847
|
|
2842
2848
|
attr_accessor :SpotOptions, :MarketType
|
2843
|
-
|
2849
|
+
|
2844
2850
|
def initialize(spotoptions=nil, markettype=nil)
|
2845
2851
|
@SpotOptions = spotoptions
|
2846
2852
|
@MarketType = markettype
|
@@ -2870,7 +2876,7 @@ module TencentCloud
|
|
2870
2876
|
# @type InstanceNameStyle: String
|
2871
2877
|
|
2872
2878
|
attr_accessor :InstanceName, :InstanceNameStyle
|
2873
|
-
|
2879
|
+
|
2874
2880
|
def initialize(instancename=nil, instancenamestyle=nil)
|
2875
2881
|
@InstanceName = instancename
|
2876
2882
|
@InstanceNameStyle = instancenamestyle
|
@@ -2890,7 +2896,7 @@ module TencentCloud
|
|
2890
2896
|
# @type Value: String
|
2891
2897
|
|
2892
2898
|
attr_accessor :Key, :Value
|
2893
|
-
|
2899
|
+
|
2894
2900
|
def initialize(key=nil, value=nil)
|
2895
2901
|
@Key = key
|
2896
2902
|
@Value = value
|
@@ -2918,7 +2924,7 @@ module TencentCloud
|
|
2918
2924
|
# @type BandwidthPackageId: String
|
2919
2925
|
|
2920
2926
|
attr_accessor :InternetChargeType, :InternetMaxBandwidthOut, :PublicIpAssigned, :BandwidthPackageId
|
2921
|
-
|
2927
|
+
|
2922
2928
|
def initialize(internetchargetype=nil, internetmaxbandwidthout=nil, publicipassigned=nil, bandwidthpackageid=nil)
|
2923
2929
|
@InternetChargeType = internetchargetype
|
2924
2930
|
@InternetMaxBandwidthOut = internetmaxbandwidthout
|
@@ -2956,7 +2962,7 @@ module TencentCloud
|
|
2956
2962
|
# @type ErrorMessage: String
|
2957
2963
|
|
2958
2964
|
attr_accessor :InstanceId, :InvocationId, :InvocationTaskId, :CommandId, :TaskStatus, :ErrorMessage
|
2959
|
-
|
2965
|
+
|
2960
2966
|
def initialize(instanceid=nil, invocationid=nil, invocationtaskid=nil, commandid=nil, taskstatus=nil, errormessage=nil)
|
2961
2967
|
@InstanceId = instanceid
|
2962
2968
|
@InvocationId = invocationid
|
@@ -3048,7 +3054,7 @@ module TencentCloud
|
|
3048
3054
|
# @type IPv6InternetAccessible: :class:`Tencentcloud::As.v20180419.models.IPv6InternetAccessible`
|
3049
3055
|
|
3050
3056
|
attr_accessor :ProjectId, :LaunchConfigurationId, :LaunchConfigurationName, :InstanceType, :SystemDisk, :DataDisks, :LoginSettings, :InternetAccessible, :SecurityGroupIds, :AutoScalingGroupAbstractSet, :UserData, :CreatedTime, :EnhancedService, :ImageId, :LaunchConfigurationStatus, :InstanceChargeType, :InstanceMarketOptions, :InstanceTypes, :InstanceTags, :Tags, :VersionNumber, :UpdatedTime, :CamRoleName, :LastOperationInstanceTypesCheckPolicy, :HostNameSettings, :InstanceNameSettings, :InstanceChargePrepaid, :DiskTypePolicy, :HpcClusterId, :IPv6InternetAccessible
|
3051
|
-
|
3057
|
+
|
3052
3058
|
def initialize(projectid=nil, launchconfigurationid=nil, launchconfigurationname=nil, instancetype=nil, systemdisk=nil, datadisks=nil, loginsettings=nil, internetaccessible=nil, securitygroupids=nil, autoscalinggroupabstractset=nil, userdata=nil, createdtime=nil, enhancedservice=nil, imageid=nil, launchconfigurationstatus=nil, instancechargetype=nil, instancemarketoptions=nil, instancetypes=nil, instancetags=nil, tags=nil, versionnumber=nil, updatedtime=nil, camrolename=nil, lastoperationinstancetypescheckpolicy=nil, hostnamesettings=nil, instancenamesettings=nil, instancechargeprepaid=nil, disktypepolicy=nil, hpcclusterid=nil, ipv6internetaccessible=nil)
|
3053
3059
|
@ProjectId = projectid
|
3054
3060
|
@LaunchConfigurationId = launchconfigurationid
|
@@ -3203,7 +3209,7 @@ module TencentCloud
|
|
3203
3209
|
# @type ResultReason: String
|
3204
3210
|
|
3205
3211
|
attr_accessor :LifecycleHookId, :InstanceId, :InvocationId, :InvokeCommandResult, :NotificationResult, :LifecycleActionResult, :ResultReason
|
3206
|
-
|
3212
|
+
|
3207
3213
|
def initialize(lifecyclehookid=nil, instanceid=nil, invocationid=nil, invokecommandresult=nil, notificationresult=nil, lifecycleactionresult=nil, resultreason=nil)
|
3208
3214
|
@LifecycleHookId = lifecyclehookid
|
3209
3215
|
@InstanceId = instanceid
|
@@ -3238,7 +3244,7 @@ module TencentCloud
|
|
3238
3244
|
# @type Parameters: String
|
3239
3245
|
|
3240
3246
|
attr_accessor :CommandId, :Parameters
|
3241
|
-
|
3247
|
+
|
3242
3248
|
def initialize(commandid=nil, parameters=nil)
|
3243
3249
|
@CommandId = commandid
|
3244
3250
|
@Parameters = parameters
|
@@ -3277,7 +3283,7 @@ module TencentCloud
|
|
3277
3283
|
# @type LifecycleCommand: :class:`Tencentcloud::As.v20180419.models.LifecycleCommand`
|
3278
3284
|
|
3279
3285
|
attr_accessor :LifecycleHookId, :LifecycleHookName, :AutoScalingGroupId, :DefaultResult, :HeartbeatTimeout, :LifecycleTransition, :NotificationMetadata, :CreatedTime, :NotificationTarget, :LifecycleTransitionType, :LifecycleCommand
|
3280
|
-
|
3286
|
+
|
3281
3287
|
def initialize(lifecyclehookid=nil, lifecyclehookname=nil, autoscalinggroupid=nil, defaultresult=nil, heartbeattimeout=nil, lifecycletransition=nil, notificationmetadata=nil, createdtime=nil, notificationtarget=nil, lifecycletransitiontype=nil, lifecyclecommand=nil)
|
3282
3288
|
@LifecycleHookId = lifecyclehookid
|
3283
3289
|
@LifecycleHookName = lifecyclehookname
|
@@ -3319,7 +3325,7 @@ module TencentCloud
|
|
3319
3325
|
# @type KeyIds: Array
|
3320
3326
|
|
3321
3327
|
attr_accessor :KeyIds
|
3322
|
-
|
3328
|
+
|
3323
3329
|
def initialize(keyids=nil)
|
3324
3330
|
@KeyIds = keyids
|
3325
3331
|
end
|
@@ -3339,7 +3345,7 @@ module TencentCloud
|
|
3339
3345
|
# @type KeepImageLogin: Boolean
|
3340
3346
|
|
3341
3347
|
attr_accessor :Password, :KeyIds, :KeepImageLogin
|
3342
|
-
|
3348
|
+
|
3343
3349
|
def initialize(password=nil, keyids=nil, keepimagelogin=nil)
|
3344
3350
|
@Password = password
|
3345
3351
|
@KeyIds = keyids
|
@@ -3371,7 +3377,7 @@ module TencentCloud
|
|
3371
3377
|
# @type PreciseThreshold: Float
|
3372
3378
|
|
3373
3379
|
attr_accessor :ComparisonOperator, :MetricName, :Threshold, :Period, :ContinuousTime, :Statistic, :PreciseThreshold
|
3374
|
-
|
3380
|
+
|
3375
3381
|
def initialize(comparisonoperator=nil, metricname=nil, threshold=nil, period=nil, continuoustime=nil, statistic=nil, precisethreshold=nil)
|
3376
3382
|
@ComparisonOperator = comparisonoperator
|
3377
3383
|
@MetricName = metricname
|
@@ -3465,7 +3471,7 @@ module TencentCloud
|
|
3465
3471
|
# @type CapacityRebalance: Boolean
|
3466
3472
|
|
3467
3473
|
attr_accessor :AutoScalingGroupId, :AutoScalingGroupName, :DefaultCooldown, :DesiredCapacity, :LaunchConfigurationId, :MaxSize, :MinSize, :ProjectId, :SubnetIds, :TerminationPolicies, :VpcId, :Zones, :RetryPolicy, :ZonesCheckPolicy, :ServiceSettings, :Ipv6AddressCount, :MultiZoneSubnetPolicy, :HealthCheckType, :LoadBalancerHealthCheckGracePeriod, :InstanceAllocationPolicy, :SpotMixedAllocationPolicy, :CapacityRebalance
|
3468
|
-
|
3474
|
+
|
3469
3475
|
def initialize(autoscalinggroupid=nil, autoscalinggroupname=nil, defaultcooldown=nil, desiredcapacity=nil, launchconfigurationid=nil, maxsize=nil, minsize=nil, projectid=nil, subnetids=nil, terminationpolicies=nil, vpcid=nil, zones=nil, retrypolicy=nil, zonescheckpolicy=nil, servicesettings=nil, ipv6addresscount=nil, multizonesubnetpolicy=nil, healthchecktype=nil, loadbalancerhealthcheckgraceperiod=nil, instanceallocationpolicy=nil, spotmixedallocationpolicy=nil, capacityrebalance=nil)
|
3470
3476
|
@AutoScalingGroupId = autoscalinggroupid
|
3471
3477
|
@AutoScalingGroupName = autoscalinggroupname
|
@@ -3529,7 +3535,7 @@ module TencentCloud
|
|
3529
3535
|
# @type RequestId: String
|
3530
3536
|
|
3531
3537
|
attr_accessor :RequestId
|
3532
|
-
|
3538
|
+
|
3533
3539
|
def initialize(requestid=nil)
|
3534
3540
|
@RequestId = requestid
|
3535
3541
|
end
|
@@ -3551,7 +3557,7 @@ module TencentCloud
|
|
3551
3557
|
# @type MaxSize: Integer
|
3552
3558
|
|
3553
3559
|
attr_accessor :AutoScalingGroupId, :DesiredCapacity, :MinSize, :MaxSize
|
3554
|
-
|
3560
|
+
|
3555
3561
|
def initialize(autoscalinggroupid=nil, desiredcapacity=nil, minsize=nil, maxsize=nil)
|
3556
3562
|
@AutoScalingGroupId = autoscalinggroupid
|
3557
3563
|
@DesiredCapacity = desiredcapacity
|
@@ -3573,7 +3579,7 @@ module TencentCloud
|
|
3573
3579
|
# @type RequestId: String
|
3574
3580
|
|
3575
3581
|
attr_accessor :RequestId
|
3576
|
-
|
3582
|
+
|
3577
3583
|
def initialize(requestid=nil)
|
3578
3584
|
@RequestId = requestid
|
3579
3585
|
end
|
@@ -3655,7 +3661,7 @@ module TencentCloud
|
|
3655
3661
|
# @type DisasterRecoverGroupIds: Array
|
3656
3662
|
|
3657
3663
|
attr_accessor :LaunchConfigurationId, :ImageId, :InstanceTypes, :InstanceTypesCheckPolicy, :LaunchConfigurationName, :UserData, :SecurityGroupIds, :InternetAccessible, :InstanceChargeType, :InstanceChargePrepaid, :InstanceMarketOptions, :DiskTypePolicy, :SystemDisk, :DataDisks, :HostNameSettings, :InstanceNameSettings, :EnhancedService, :CamRoleName, :HpcClusterId, :IPv6InternetAccessible, :DisasterRecoverGroupIds
|
3658
|
-
|
3664
|
+
|
3659
3665
|
def initialize(launchconfigurationid=nil, imageid=nil, instancetypes=nil, instancetypescheckpolicy=nil, launchconfigurationname=nil, userdata=nil, securitygroupids=nil, internetaccessible=nil, instancechargetype=nil, instancechargeprepaid=nil, instancemarketoptions=nil, disktypepolicy=nil, systemdisk=nil, datadisks=nil, hostnamesettings=nil, instancenamesettings=nil, enhancedservice=nil, camrolename=nil, hpcclusterid=nil, ipv6internetaccessible=nil, disasterrecovergroupids=nil)
|
3660
3666
|
@LaunchConfigurationId = launchconfigurationid
|
3661
3667
|
@ImageId = imageid
|
@@ -3742,7 +3748,7 @@ module TencentCloud
|
|
3742
3748
|
# @type RequestId: String
|
3743
3749
|
|
3744
3750
|
attr_accessor :RequestId
|
3745
|
-
|
3751
|
+
|
3746
3752
|
def initialize(requestid=nil)
|
3747
3753
|
@RequestId = requestid
|
3748
3754
|
end
|
@@ -3778,7 +3784,7 @@ module TencentCloud
|
|
3778
3784
|
# @type LifecycleCommand: :class:`Tencentcloud::As.v20180419.models.LifecycleCommand`
|
3779
3785
|
|
3780
3786
|
attr_accessor :LifecycleHookId, :LifecycleHookName, :LifecycleTransition, :DefaultResult, :HeartbeatTimeout, :NotificationMetadata, :LifecycleTransitionType, :NotificationTarget, :LifecycleCommand
|
3781
|
-
|
3787
|
+
|
3782
3788
|
def initialize(lifecyclehookid=nil, lifecyclehookname=nil, lifecycletransition=nil, defaultresult=nil, heartbeattimeout=nil, notificationmetadata=nil, lifecycletransitiontype=nil, notificationtarget=nil, lifecyclecommand=nil)
|
3783
3789
|
@LifecycleHookId = lifecyclehookid
|
3784
3790
|
@LifecycleHookName = lifecyclehookname
|
@@ -3816,7 +3822,7 @@ module TencentCloud
|
|
3816
3822
|
# @type RequestId: String
|
3817
3823
|
|
3818
3824
|
attr_accessor :RequestId
|
3819
|
-
|
3825
|
+
|
3820
3826
|
def initialize(requestid=nil)
|
3821
3827
|
@RequestId = requestid
|
3822
3828
|
end
|
@@ -3834,7 +3840,7 @@ module TencentCloud
|
|
3834
3840
|
# @type ForwardLoadBalancers: Array
|
3835
3841
|
|
3836
3842
|
attr_accessor :AutoScalingGroupId, :ForwardLoadBalancers
|
3837
|
-
|
3843
|
+
|
3838
3844
|
def initialize(autoscalinggroupid=nil, forwardloadbalancers=nil)
|
3839
3845
|
@AutoScalingGroupId = autoscalinggroupid
|
3840
3846
|
@ForwardLoadBalancers = forwardloadbalancers
|
@@ -3861,7 +3867,7 @@ module TencentCloud
|
|
3861
3867
|
# @type RequestId: String
|
3862
3868
|
|
3863
3869
|
attr_accessor :ActivityId, :RequestId
|
3864
|
-
|
3870
|
+
|
3865
3871
|
def initialize(activityid=nil, requestid=nil)
|
3866
3872
|
@ActivityId = activityid
|
3867
3873
|
@RequestId = requestid
|
@@ -3887,7 +3893,7 @@ module TencentCloud
|
|
3887
3893
|
# @type LoadBalancersCheckPolicy: String
|
3888
3894
|
|
3889
3895
|
attr_accessor :AutoScalingGroupId, :LoadBalancerIds, :ForwardLoadBalancers, :LoadBalancersCheckPolicy
|
3890
|
-
|
3896
|
+
|
3891
3897
|
def initialize(autoscalinggroupid=nil, loadbalancerids=nil, forwardloadbalancers=nil, loadbalancerscheckpolicy=nil)
|
3892
3898
|
@AutoScalingGroupId = autoscalinggroupid
|
3893
3899
|
@LoadBalancerIds = loadbalancerids
|
@@ -3918,7 +3924,7 @@ module TencentCloud
|
|
3918
3924
|
# @type RequestId: String
|
3919
3925
|
|
3920
3926
|
attr_accessor :ActivityId, :RequestId
|
3921
|
-
|
3927
|
+
|
3922
3928
|
def initialize(activityid=nil, requestid=nil)
|
3923
3929
|
@ActivityId = activityid
|
3924
3930
|
@RequestId = requestid
|
@@ -3950,7 +3956,7 @@ module TencentCloud
|
|
3950
3956
|
# @type TopicName: String
|
3951
3957
|
|
3952
3958
|
attr_accessor :AutoScalingNotificationId, :NotificationTypes, :NotificationUserGroupIds, :QueueName, :TopicName
|
3953
|
-
|
3959
|
+
|
3954
3960
|
def initialize(autoscalingnotificationid=nil, notificationtypes=nil, notificationusergroupids=nil, queuename=nil, topicname=nil)
|
3955
3961
|
@AutoScalingNotificationId = autoscalingnotificationid
|
3956
3962
|
@NotificationTypes = notificationtypes
|
@@ -3974,7 +3980,7 @@ module TencentCloud
|
|
3974
3980
|
# @type RequestId: String
|
3975
3981
|
|
3976
3982
|
attr_accessor :RequestId
|
3977
|
-
|
3983
|
+
|
3978
3984
|
def initialize(requestid=nil)
|
3979
3985
|
@RequestId = requestid
|
3980
3986
|
end
|
@@ -4011,7 +4017,7 @@ module TencentCloud
|
|
4011
4017
|
# @type NotificationUserGroupIds: Array
|
4012
4018
|
|
4013
4019
|
attr_accessor :AutoScalingPolicyId, :ScalingPolicyName, :AdjustmentType, :AdjustmentValue, :Cooldown, :MetricAlarm, :PredefinedMetricType, :TargetValue, :EstimatedInstanceWarmup, :DisableScaleIn, :NotificationUserGroupIds
|
4014
|
-
|
4020
|
+
|
4015
4021
|
def initialize(autoscalingpolicyid=nil, scalingpolicyname=nil, adjustmenttype=nil, adjustmentvalue=nil, cooldown=nil, metricalarm=nil, predefinedmetrictype=nil, targetvalue=nil, estimatedinstancewarmup=nil, disablescalein=nil, notificationusergroupids=nil)
|
4016
4022
|
@AutoScalingPolicyId = autoscalingpolicyid
|
4017
4023
|
@ScalingPolicyName = scalingpolicyname
|
@@ -4050,7 +4056,7 @@ module TencentCloud
|
|
4050
4056
|
# @type RequestId: String
|
4051
4057
|
|
4052
4058
|
attr_accessor :RequestId
|
4053
|
-
|
4059
|
+
|
4054
4060
|
def initialize(requestid=nil)
|
4055
4061
|
@RequestId = requestid
|
4056
4062
|
end
|
@@ -4080,7 +4086,7 @@ module TencentCloud
|
|
4080
4086
|
# @type Recurrence: String
|
4081
4087
|
|
4082
4088
|
attr_accessor :ScheduledActionId, :ScheduledActionName, :MaxSize, :MinSize, :DesiredCapacity, :StartTime, :EndTime, :Recurrence
|
4083
|
-
|
4089
|
+
|
4084
4090
|
def initialize(scheduledactionid=nil, scheduledactionname=nil, maxsize=nil, minsize=nil, desiredcapacity=nil, starttime=nil, endtime=nil, recurrence=nil)
|
4085
4091
|
@ScheduledActionId = scheduledactionid
|
4086
4092
|
@ScheduledActionName = scheduledactionname
|
@@ -4110,7 +4116,7 @@ module TencentCloud
|
|
4110
4116
|
# @type RequestId: String
|
4111
4117
|
|
4112
4118
|
attr_accessor :RequestId
|
4113
|
-
|
4119
|
+
|
4114
4120
|
def initialize(requestid=nil)
|
4115
4121
|
@RequestId = requestid
|
4116
4122
|
end
|
@@ -4134,7 +4140,7 @@ module TencentCloud
|
|
4134
4140
|
# @type TopicName: String
|
4135
4141
|
|
4136
4142
|
attr_accessor :TargetType, :QueueName, :TopicName
|
4137
|
-
|
4143
|
+
|
4138
4144
|
def initialize(targettype=nil, queuename=nil, topicname=nil)
|
4139
4145
|
@TargetType = targettype
|
4140
4146
|
@QueueName = queuename
|
@@ -4156,7 +4162,7 @@ module TencentCloud
|
|
4156
4162
|
# @type InstanceIds: Array
|
4157
4163
|
|
4158
4164
|
attr_accessor :AutoScalingGroupId, :InstanceIds
|
4159
|
-
|
4165
|
+
|
4160
4166
|
def initialize(autoscalinggroupid=nil, instanceids=nil)
|
4161
4167
|
@AutoScalingGroupId = autoscalinggroupid
|
4162
4168
|
@InstanceIds = instanceids
|
@@ -4176,7 +4182,7 @@ module TencentCloud
|
|
4176
4182
|
# @type RequestId: String
|
4177
4183
|
|
4178
4184
|
attr_accessor :ActivityId, :RequestId
|
4179
|
-
|
4185
|
+
|
4180
4186
|
def initialize(activityid=nil, requestid=nil)
|
4181
4187
|
@ActivityId = activityid
|
4182
4188
|
@RequestId = requestid
|
@@ -4195,7 +4201,7 @@ module TencentCloud
|
|
4195
4201
|
# @type Enabled: Boolean
|
4196
4202
|
|
4197
4203
|
attr_accessor :Enabled
|
4198
|
-
|
4204
|
+
|
4199
4205
|
def initialize(enabled=nil)
|
4200
4206
|
@Enabled = enabled
|
4201
4207
|
end
|
@@ -4212,7 +4218,7 @@ module TencentCloud
|
|
4212
4218
|
# @type Enabled: Boolean
|
4213
4219
|
|
4214
4220
|
attr_accessor :Enabled
|
4215
|
-
|
4221
|
+
|
4216
4222
|
def initialize(enabled=nil)
|
4217
4223
|
@Enabled = enabled
|
4218
4224
|
end
|
@@ -4229,7 +4235,7 @@ module TencentCloud
|
|
4229
4235
|
# @type Enabled: Boolean
|
4230
4236
|
|
4231
4237
|
attr_accessor :Enabled
|
4232
|
-
|
4238
|
+
|
4233
4239
|
def initialize(enabled=nil)
|
4234
4240
|
@Enabled = enabled
|
4235
4241
|
end
|
@@ -4247,7 +4253,7 @@ module TencentCloud
|
|
4247
4253
|
# @type ScaleInNumber: Integer
|
4248
4254
|
|
4249
4255
|
attr_accessor :AutoScalingGroupId, :ScaleInNumber
|
4250
|
-
|
4256
|
+
|
4251
4257
|
def initialize(autoscalinggroupid=nil, scaleinnumber=nil)
|
4252
4258
|
@AutoScalingGroupId = autoscalinggroupid
|
4253
4259
|
@ScaleInNumber = scaleinnumber
|
@@ -4267,7 +4273,7 @@ module TencentCloud
|
|
4267
4273
|
# @type RequestId: String
|
4268
4274
|
|
4269
4275
|
attr_accessor :ActivityId, :RequestId
|
4270
|
-
|
4276
|
+
|
4271
4277
|
def initialize(activityid=nil, requestid=nil)
|
4272
4278
|
@ActivityId = activityid
|
4273
4279
|
@RequestId = requestid
|
@@ -4287,7 +4293,7 @@ module TencentCloud
|
|
4287
4293
|
# @type ScaleOutNumber: Integer
|
4288
4294
|
|
4289
4295
|
attr_accessor :AutoScalingGroupId, :ScaleOutNumber
|
4290
|
-
|
4296
|
+
|
4291
4297
|
def initialize(autoscalinggroupid=nil, scaleoutnumber=nil)
|
4292
4298
|
@AutoScalingGroupId = autoscalinggroupid
|
4293
4299
|
@ScaleOutNumber = scaleoutnumber
|
@@ -4307,7 +4313,7 @@ module TencentCloud
|
|
4307
4313
|
# @type RequestId: String
|
4308
4314
|
|
4309
4315
|
attr_accessor :ActivityId, :RequestId
|
4310
|
-
|
4316
|
+
|
4311
4317
|
def initialize(activityid=nil, requestid=nil)
|
4312
4318
|
@ActivityId = activityid
|
4313
4319
|
@RequestId = requestid
|
@@ -4358,7 +4364,7 @@ module TencentCloud
|
|
4358
4364
|
# @type NotificationUserGroupIds: Array
|
4359
4365
|
|
4360
4366
|
attr_accessor :AutoScalingGroupId, :AutoScalingPolicyId, :ScalingPolicyType, :ScalingPolicyName, :AdjustmentType, :AdjustmentValue, :Cooldown, :MetricAlarm, :PredefinedMetricType, :TargetValue, :EstimatedInstanceWarmup, :DisableScaleIn, :MetricAlarms, :NotificationUserGroupIds
|
4361
|
-
|
4367
|
+
|
4362
4368
|
def initialize(autoscalinggroupid=nil, autoscalingpolicyid=nil, scalingpolicytype=nil, scalingpolicyname=nil, adjustmenttype=nil, adjustmentvalue=nil, cooldown=nil, metricalarm=nil, predefinedmetrictype=nil, targetvalue=nil, estimatedinstancewarmup=nil, disablescalein=nil, metricalarms=nil, notificationusergroupids=nil)
|
4363
4369
|
@AutoScalingGroupId = autoscalinggroupid
|
4364
4370
|
@AutoScalingPolicyId = autoscalingpolicyid
|
@@ -4430,7 +4436,7 @@ module TencentCloud
|
|
4430
4436
|
# @type ScheduledType: String
|
4431
4437
|
|
4432
4438
|
attr_accessor :ScheduledActionId, :ScheduledActionName, :AutoScalingGroupId, :StartTime, :Recurrence, :EndTime, :MaxSize, :DesiredCapacity, :MinSize, :CreatedTime, :ScheduledType
|
4433
|
-
|
4439
|
+
|
4434
4440
|
def initialize(scheduledactionid=nil, scheduledactionname=nil, autoscalinggroupid=nil, starttime=nil, recurrence=nil, endtime=nil, maxsize=nil, desiredcapacity=nil, minsize=nil, createdtime=nil, scheduledtype=nil)
|
4435
4441
|
@ScheduledActionId = scheduledactionid
|
4436
4442
|
@ScheduledActionName = scheduledactionname
|
@@ -4473,7 +4479,7 @@ module TencentCloud
|
|
4473
4479
|
# @type ReplaceLoadBalancerUnhealthy: Boolean
|
4474
4480
|
|
4475
4481
|
attr_accessor :ReplaceMonitorUnhealthy, :ScalingMode, :ReplaceLoadBalancerUnhealthy
|
4476
|
-
|
4482
|
+
|
4477
4483
|
def initialize(replacemonitorunhealthy=nil, scalingmode=nil, replaceloadbalancerunhealthy=nil)
|
4478
4484
|
@ReplaceMonitorUnhealthy = replacemonitorunhealthy
|
4479
4485
|
@ScalingMode = scalingmode
|
@@ -4497,7 +4503,7 @@ module TencentCloud
|
|
4497
4503
|
# @type ProtectedFromScaleIn: Boolean
|
4498
4504
|
|
4499
4505
|
attr_accessor :AutoScalingGroupId, :InstanceIds, :ProtectedFromScaleIn
|
4500
|
-
|
4506
|
+
|
4501
4507
|
def initialize(autoscalinggroupid=nil, instanceids=nil, protectedfromscalein=nil)
|
4502
4508
|
@AutoScalingGroupId = autoscalinggroupid
|
4503
4509
|
@InstanceIds = instanceids
|
@@ -4517,7 +4523,7 @@ module TencentCloud
|
|
4517
4523
|
# @type RequestId: String
|
4518
4524
|
|
4519
4525
|
attr_accessor :RequestId
|
4520
|
-
|
4526
|
+
|
4521
4527
|
def initialize(requestid=nil)
|
4522
4528
|
@RequestId = requestid
|
4523
4529
|
end
|
@@ -4536,7 +4542,7 @@ module TencentCloud
|
|
4536
4542
|
# @type SpotInstanceType: String
|
4537
4543
|
|
4538
4544
|
attr_accessor :MaxPrice, :SpotInstanceType
|
4539
|
-
|
4545
|
+
|
4540
4546
|
def initialize(maxprice=nil, spotinstancetype=nil)
|
4541
4547
|
@MaxPrice = maxprice
|
4542
4548
|
@SpotInstanceType = spotinstancetype
|
@@ -4571,7 +4577,7 @@ module TencentCloud
|
|
4571
4577
|
# @type CompensateWithBaseInstance: Boolean
|
4572
4578
|
|
4573
4579
|
attr_accessor :BaseCapacity, :OnDemandPercentageAboveBaseCapacity, :SpotAllocationStrategy, :CompensateWithBaseInstance
|
4574
|
-
|
4580
|
+
|
4575
4581
|
def initialize(basecapacity=nil, ondemandpercentageabovebasecapacity=nil, spotallocationstrategy=nil, compensatewithbaseinstance=nil)
|
4576
4582
|
@BaseCapacity = basecapacity
|
4577
4583
|
@OnDemandPercentageAboveBaseCapacity = ondemandpercentageabovebasecapacity
|
@@ -4595,7 +4601,7 @@ module TencentCloud
|
|
4595
4601
|
# @type InstanceIds: Array
|
4596
4602
|
|
4597
4603
|
attr_accessor :AutoScalingGroupId, :InstanceIds
|
4598
|
-
|
4604
|
+
|
4599
4605
|
def initialize(autoscalinggroupid=nil, instanceids=nil)
|
4600
4606
|
@AutoScalingGroupId = autoscalinggroupid
|
4601
4607
|
@InstanceIds = instanceids
|
@@ -4615,7 +4621,7 @@ module TencentCloud
|
|
4615
4621
|
# @type RequestId: String
|
4616
4622
|
|
4617
4623
|
attr_accessor :ActivityId, :RequestId
|
4618
|
-
|
4624
|
+
|
4619
4625
|
def initialize(activityid=nil, requestid=nil)
|
4620
4626
|
@ActivityId = activityid
|
4621
4627
|
@RequestId = requestid
|
@@ -4640,7 +4646,7 @@ module TencentCloud
|
|
4640
4646
|
# @type StoppedMode: String
|
4641
4647
|
|
4642
4648
|
attr_accessor :AutoScalingGroupId, :InstanceIds, :StoppedMode
|
4643
|
-
|
4649
|
+
|
4644
4650
|
def initialize(autoscalinggroupid=nil, instanceids=nil, stoppedmode=nil)
|
4645
4651
|
@AutoScalingGroupId = autoscalinggroupid
|
4646
4652
|
@InstanceIds = instanceids
|
@@ -4662,7 +4668,7 @@ module TencentCloud
|
|
4662
4668
|
# @type RequestId: String
|
4663
4669
|
|
4664
4670
|
attr_accessor :ActivityId, :RequestId
|
4665
|
-
|
4671
|
+
|
4666
4672
|
def initialize(activityid=nil, requestid=nil)
|
4667
4673
|
@ActivityId = activityid
|
4668
4674
|
@RequestId = requestid
|
@@ -4684,7 +4690,7 @@ module TencentCloud
|
|
4684
4690
|
# @type DiskSize: Integer
|
4685
4691
|
|
4686
4692
|
attr_accessor :DiskType, :DiskSize
|
4687
|
-
|
4693
|
+
|
4688
4694
|
def initialize(disktype=nil, disksize=nil)
|
4689
4695
|
@DiskType = disktype
|
4690
4696
|
@DiskSize = disksize
|
@@ -4707,7 +4713,7 @@ module TencentCloud
|
|
4707
4713
|
# @type ResourceType: String
|
4708
4714
|
|
4709
4715
|
attr_accessor :Key, :Value, :ResourceType
|
4710
|
-
|
4716
|
+
|
4711
4717
|
def initialize(key=nil, value=nil, resourcetype=nil)
|
4712
4718
|
@Key = key
|
4713
4719
|
@Value = value
|
@@ -4729,7 +4735,7 @@ module TencentCloud
|
|
4729
4735
|
# @type Weight: Integer
|
4730
4736
|
|
4731
4737
|
attr_accessor :Port, :Weight
|
4732
|
-
|
4738
|
+
|
4733
4739
|
def initialize(port=nil, weight=nil)
|
4734
4740
|
@Port = port
|
4735
4741
|
@Weight = weight
|
@@ -4799,7 +4805,7 @@ module TencentCloud
|
|
4799
4805
|
# @type IPv6InternetAccessible: :class:`Tencentcloud::As.v20180419.models.IPv6InternetAccessible`
|
4800
4806
|
|
4801
4807
|
attr_accessor :LaunchConfigurationId, :ImageId, :InstanceTypes, :LaunchConfigurationName, :DataDisks, :EnhancedService, :InstanceChargeType, :InstanceMarketOptions, :InstanceTypesCheckPolicy, :InternetAccessible, :LoginSettings, :ProjectId, :SecurityGroupIds, :SystemDisk, :UserData, :InstanceTags, :CamRoleName, :HostNameSettings, :InstanceNameSettings, :InstanceChargePrepaid, :DiskTypePolicy, :IPv6InternetAccessible
|
4802
|
-
|
4808
|
+
|
4803
4809
|
def initialize(launchconfigurationid=nil, imageid=nil, instancetypes=nil, launchconfigurationname=nil, datadisks=nil, enhancedservice=nil, instancechargetype=nil, instancemarketoptions=nil, instancetypescheckpolicy=nil, internetaccessible=nil, loginsettings=nil, projectid=nil, securitygroupids=nil, systemdisk=nil, userdata=nil, instancetags=nil, camrolename=nil, hostnamesettings=nil, instancenamesettings=nil, instancechargeprepaid=nil, disktypepolicy=nil, ipv6internetaccessible=nil)
|
4804
4810
|
@LaunchConfigurationId = launchconfigurationid
|
4805
4811
|
@ImageId = imageid
|
@@ -4898,7 +4904,7 @@ module TencentCloud
|
|
4898
4904
|
# @type RequestId: String
|
4899
4905
|
|
4900
4906
|
attr_accessor :RequestId
|
4901
|
-
|
4907
|
+
|
4902
4908
|
def initialize(requestid=nil)
|
4903
4909
|
@RequestId = requestid
|
4904
4910
|
end
|
@@ -4930,7 +4936,7 @@ module TencentCloud
|
|
4930
4936
|
# @type LifecycleCommand: :class:`Tencentcloud::As.v20180419.models.LifecycleCommand`
|
4931
4937
|
|
4932
4938
|
attr_accessor :LifecycleHookId, :LifecycleHookName, :LifecycleTransition, :DefaultResult, :HeartbeatTimeout, :NotificationMetadata, :NotificationTarget, :LifecycleTransitionType, :LifecycleCommand
|
4933
|
-
|
4939
|
+
|
4934
4940
|
def initialize(lifecyclehookid=nil, lifecyclehookname=nil, lifecycletransition=nil, defaultresult=nil, heartbeattimeout=nil, notificationmetadata=nil, notificationtarget=nil, lifecycletransitiontype=nil, lifecyclecommand=nil)
|
4935
4941
|
@LifecycleHookId = lifecyclehookid
|
4936
4942
|
@LifecycleHookName = lifecyclehookname
|
@@ -4968,7 +4974,7 @@ module TencentCloud
|
|
4968
4974
|
# @type RequestId: String
|
4969
4975
|
|
4970
4976
|
attr_accessor :RequestId
|
4971
|
-
|
4977
|
+
|
4972
4978
|
def initialize(requestid=nil)
|
4973
4979
|
@RequestId = requestid
|
4974
4980
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-as
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.592
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-06-
|
11
|
+
date: 2023-06-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|