forked from getmoto/moto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodels.py
More file actions
1700 lines (1522 loc) · 65.4 KB
/
models.py
File metadata and controls
1700 lines (1522 loc) · 65.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import itertools
from collections import OrderedDict
from typing import Any, Dict, List, Optional, Tuple, Union
from moto.core.base_backend import BackendDict, BaseBackend
from moto.core.common_models import BaseModel, CloudFormationModel
from moto.core.utils import camelcase_to_underscores
from moto.ec2 import ec2_backends
from moto.ec2.exceptions import InvalidInstanceIdError
from moto.ec2.models import EC2Backend
from moto.ec2.models.instances import Instance
from moto.elb.exceptions import LoadBalancerNotFoundError
from moto.elb.models import ELBBackend, elb_backends
from moto.elbv2.models import ELBv2Backend, elbv2_backends
from moto.moto_api._internal import mock_random as random
from moto.packages.boto.ec2.blockdevicemapping import (
BlockDeviceMapping,
BlockDeviceType,
)
from .exceptions import (
AutoscalingClientError,
InvalidInstanceError,
ResourceContentionError,
ValidationError,
)
# http://docs.aws.amazon.com/AutoScaling/latest/DeveloperGuide/AS_Concepts.html#Cooldown
DEFAULT_COOLDOWN = 300
ASG_NAME_TAG = "aws:autoscaling:groupName"
def make_int(value: Union[None, str, int]) -> Optional[int]:
return int(value) if value is not None else value
class InstanceState:
def __init__(
self,
instance: "Instance",
lifecycle_state: str = "InService",
health_status: str = "Healthy",
protected_from_scale_in: Optional[bool] = False,
autoscaling_group: Optional["FakeAutoScalingGroup"] = None,
):
self.instance = instance
self.lifecycle_state = lifecycle_state
self.health_status = health_status
self.protected_from_scale_in = protected_from_scale_in
if not hasattr(self.instance, "autoscaling_group"):
self.instance.autoscaling_group = autoscaling_group # type: ignore[attr-defined]
class FakeLifeCycleHook(BaseModel):
def __init__(
self,
name: str,
as_name: str,
transition: Optional[str],
timeout: Optional[int],
result: Optional[str],
):
self.name = name
self.as_name = as_name
if transition:
self.transition = transition
if timeout:
self.timeout = timeout
else:
self.timeout = 3600
if result:
self.result = result
else:
self.result = "ABANDON"
class FakeScalingPolicy(BaseModel):
def __init__(
self,
name: str,
policy_type: str,
metric_aggregation_type: str,
adjustment_type: str,
as_name: str,
min_adjustment_magnitude: str,
scaling_adjustment: Optional[int],
cooldown: Optional[int],
target_tracking_config: str,
step_adjustments: str,
estimated_instance_warmup: str,
predictive_scaling_configuration: str,
autoscaling_backend: "AutoScalingBackend",
):
self.name = name
self.policy_type = policy_type
self.metric_aggregation_type = metric_aggregation_type
self.adjustment_type = adjustment_type
self.as_name = as_name
self.min_adjustment_magnitude = min_adjustment_magnitude
self.scaling_adjustment = scaling_adjustment
if cooldown is not None:
self.cooldown = cooldown
else:
self.cooldown = DEFAULT_COOLDOWN
self.target_tracking_config = target_tracking_config
self.step_adjustments = step_adjustments
self.estimated_instance_warmup = estimated_instance_warmup
self.predictive_scaling_configuration = predictive_scaling_configuration
self.autoscaling_backend = autoscaling_backend
@property
def arn(self) -> str:
return f"arn:aws:autoscaling:{self.autoscaling_backend.region_name}:{self.autoscaling_backend.account_id}:scalingPolicy:c322761b-3172-4d56-9a21-0ed9d6161d67:autoScalingGroupName/{self.as_name}:policyName/{self.name}"
def execute(self) -> None:
if self.adjustment_type == "ExactCapacity":
self.autoscaling_backend.set_desired_capacity(
self.as_name, self.scaling_adjustment
)
elif self.adjustment_type == "ChangeInCapacity":
self.autoscaling_backend.change_capacity(
self.as_name, self.scaling_adjustment
)
elif self.adjustment_type == "PercentChangeInCapacity":
self.autoscaling_backend.change_capacity_percent(
self.as_name, self.scaling_adjustment
)
class FakeLaunchConfiguration(CloudFormationModel):
def __init__(
self,
name: str,
image_id: str,
key_name: Optional[str],
ramdisk_id: str,
kernel_id: str,
security_groups: List[str],
user_data: str,
instance_type: str,
instance_monitoring: bool,
instance_profile_name: Optional[str],
spot_price: Optional[str],
ebs_optimized: str,
associate_public_ip_address: Union[str, bool],
block_device_mapping_dict: List[Dict[str, Any]],
account_id: str,
region_name: str,
metadata_options: Optional[str],
classic_link_vpc_id: Optional[str],
classic_link_vpc_security_groups: Optional[str],
):
self.name = name
self.image_id = image_id
self.key_name = key_name
self.ramdisk_id = ramdisk_id
self.kernel_id = kernel_id
self.security_groups = security_groups if security_groups else []
self.user_data = user_data
self.instance_type = instance_type
self.instance_monitoring = instance_monitoring
self.instance_profile_name = instance_profile_name
self.spot_price = spot_price
self.ebs_optimized = ebs_optimized
if isinstance(associate_public_ip_address, str):
self.associate_public_ip_address = (
associate_public_ip_address.lower() == "true"
)
else:
self.associate_public_ip_address = associate_public_ip_address
self.block_device_mapping_dict = block_device_mapping_dict
self.metadata_options = metadata_options
self.classic_link_vpc_id = classic_link_vpc_id
self.classic_link_vpc_security_groups = classic_link_vpc_security_groups
self.arn = f"arn:aws:autoscaling:{region_name}:{account_id}:launchConfiguration:9dbbbf87-6141-428a-a409-0752edbe6cad:launchConfigurationName/{self.name}"
@classmethod
def create_from_instance(
cls, name: str, instance: Instance, backend: "AutoScalingBackend"
) -> "FakeLaunchConfiguration":
security_group_names = [sg.name for sg in instance.security_groups]
config = backend.create_launch_configuration(
name=name,
image_id=instance.image_id,
kernel_id="",
ramdisk_id="",
key_name=instance.key_name,
security_groups=security_group_names,
user_data=instance.user_data,
instance_type=instance.instance_type,
instance_monitoring=False,
instance_profile_name=None,
spot_price=None,
ebs_optimized=instance.ebs_optimized,
associate_public_ip_address=instance.associate_public_ip,
# We expect a dictionary in the same format as when the user calls it
block_device_mappings=instance.block_device_mapping.to_source_dict(),
)
return config
@staticmethod
def cloudformation_name_type() -> str:
return "LaunchConfigurationName"
@staticmethod
def cloudformation_type() -> str:
# https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-launchconfiguration.html
return "AWS::AutoScaling::LaunchConfiguration"
@classmethod
def create_from_cloudformation_json( # type: ignore[misc]
cls,
resource_name: str,
cloudformation_json: Any,
account_id: str,
region_name: str,
**kwargs: Any,
) -> "FakeLaunchConfiguration":
properties = cloudformation_json["Properties"]
instance_profile_name = properties.get("IamInstanceProfile")
backend = autoscaling_backends[account_id][region_name]
config = backend.create_launch_configuration(
name=resource_name,
image_id=properties.get("ImageId"),
kernel_id=properties.get("KernelId"),
ramdisk_id=properties.get("RamdiskId"),
key_name=properties.get("KeyName"),
security_groups=properties.get("SecurityGroups"),
user_data=properties.get("UserData"),
instance_type=properties.get("InstanceType"),
instance_monitoring=properties.get("InstanceMonitoring"),
instance_profile_name=instance_profile_name,
spot_price=properties.get("SpotPrice"),
ebs_optimized=properties.get("EbsOptimized"),
associate_public_ip_address=properties.get("AssociatePublicIpAddress"),
block_device_mappings=properties.get("BlockDeviceMapping.member"),
)
return config
@classmethod
def update_from_cloudformation_json( # type: ignore[misc]
cls,
original_resource: Any,
new_resource_name: str,
cloudformation_json: Any,
account_id: str,
region_name: str,
) -> "FakeLaunchConfiguration":
cls.delete_from_cloudformation_json(
original_resource.name, cloudformation_json, account_id, region_name
)
return cls.create_from_cloudformation_json(
new_resource_name, cloudformation_json, account_id, region_name
)
@classmethod
def delete_from_cloudformation_json( # type: ignore[misc]
cls,
resource_name: str,
cloudformation_json: Any,
account_id: str,
region_name: str,
) -> None:
backend = autoscaling_backends[account_id][region_name]
try:
backend.delete_launch_configuration(resource_name)
except KeyError:
pass
def delete(self, account_id: str, region_name: str) -> None:
backend = autoscaling_backends[account_id][region_name]
backend.delete_launch_configuration(self.name)
@property
def physical_resource_id(self) -> str:
return self.name
@property
def block_device_mappings(self) -> Optional[BlockDeviceMapping]:
if not self.block_device_mapping_dict:
return None
else:
return self._parse_block_device_mappings()
@property
def instance_monitoring_enabled(self) -> str:
if self.instance_monitoring:
return "true"
return "false"
def _parse_block_device_mappings(self) -> BlockDeviceMapping:
block_device_map = BlockDeviceMapping()
for mapping in self.block_device_mapping_dict:
block_type = BlockDeviceType()
mount_point = mapping.get("DeviceName")
if mapping.get("VirtualName") and "ephemeral" in mapping.get("VirtualName"): # type: ignore[operator]
block_type.ephemeral_name = mapping.get("VirtualName")
elif mapping.get("NoDevice", "false") == "true":
block_type.no_device = "true"
else:
ebs = mapping.get("Ebs", {})
block_type.volume_type = ebs.get("VolumeType")
block_type.snapshot_id = ebs.get("SnapshotId")
block_type.delete_on_termination = ebs.get("DeleteOnTermination")
block_type.size = ebs.get("VolumeSize")
block_type.iops = ebs.get("Iops")
block_type.throughput = ebs.get("Throughput")
block_type.encrypted = ebs.get("Encrypted")
block_device_map[mount_point] = block_type
return block_device_map
class FakeScheduledAction(CloudFormationModel):
def __init__(
self,
name: str,
desired_capacity: Optional[int],
max_size: Optional[int],
min_size: Optional[int],
scheduled_action_name: str,
start_time: Optional[str],
end_time: Optional[str],
recurrence: Optional[str],
timezone: Optional[str],
):
self.name = name
self.desired_capacity = desired_capacity
self.max_size = max_size
self.min_size = min_size
self.start_time = start_time
self.end_time = end_time
self.recurrence = recurrence
self.scheduled_action_name = scheduled_action_name
self.timezone = timezone
@staticmethod
def cloudformation_name_type() -> str:
return "ScheduledActionName"
@staticmethod
def cloudformation_type() -> str:
# https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-as-scheduledaction.html
return "AWS::AutoScaling::ScheduledAction"
@classmethod
def create_from_cloudformation_json( # type: ignore[misc]
cls,
resource_name: str,
cloudformation_json: Dict[str, Any],
account_id: str,
region_name: str,
**kwargs: Any,
) -> "FakeScheduledAction":
properties = cloudformation_json["Properties"]
backend = autoscaling_backends[account_id][region_name]
scheduled_action_name = (
kwargs["LogicalId"]
if kwargs.get("LogicalId")
else "ScheduledScalingAction-{random.randint(0,100)}"
)
scheduled_action = backend.put_scheduled_update_group_action(
name=properties.get("AutoScalingGroupName"),
desired_capacity=properties.get("DesiredCapacity"),
max_size=properties.get("MaxSize"),
min_size=properties.get("MinSize"),
scheduled_action_name=scheduled_action_name,
start_time=properties.get("StartTime"),
end_time=properties.get("EndTime"),
recurrence=properties.get("Recurrence"),
timezone=properties.get("TimeZone"),
)
return scheduled_action
class FailedScheduledUpdateGroupActionRequest:
def __init__(
self,
*,
scheduled_action_name: str,
error_code: Optional[str] = None,
error_message: Optional[str] = None,
) -> None:
self.scheduled_action_name = scheduled_action_name
self.error_code = error_code
self.error_message = error_message
def set_string_propagate_at_launch_booleans_on_tags(
tags: List[Dict[str, Any]]
) -> List[Dict[str, Any]]:
bool_to_string = {True: "true", False: "false"}
for tag in tags:
if "PropagateAtLaunch" in tag:
tag["PropagateAtLaunch"] = bool_to_string[tag["PropagateAtLaunch"]]
return tags
class FakeWarmPool(CloudFormationModel):
def __init__(
self,
max_capacity: Optional[int],
min_size: Optional[int],
pool_state: Optional[str],
instance_reuse_policy: Optional[Dict[str, bool]],
):
self.max_capacity = max_capacity
self.min_size = min_size or 0
self.pool_state = pool_state or "Stopped"
self.instance_reuse_policy = instance_reuse_policy
class FakeAutoScalingGroup(CloudFormationModel):
def __init__(
self,
name: str,
availability_zones: List[str],
desired_capacity: Optional[int],
max_size: Optional[int],
min_size: Optional[int],
launch_config_name: str,
launch_template: Dict[str, Any],
vpc_zone_identifier: Optional[str],
default_cooldown: Optional[int],
health_check_period: Optional[int],
health_check_type: Optional[str],
load_balancers: List[str],
target_group_arns: List[str],
placement_group: Optional[str],
termination_policies: List[str],
autoscaling_backend: "AutoScalingBackend",
ec2_backend: EC2Backend,
tags: List[Dict[str, str]],
mixed_instance_policy: Optional[Dict[str, Any]],
capacity_rebalance: bool,
new_instances_protected_from_scale_in: bool = False,
):
self.autoscaling_backend = autoscaling_backend
self.ec2_backend = ec2_backend
self.name = name
self._id = str(random.uuid4())
self.region = self.autoscaling_backend.region_name
self.account_id = self.autoscaling_backend.account_id
self.service_linked_role = f"arn:aws:iam::{self.account_id}:role/aws-service-role/autoscaling.amazonaws.com/AWSServiceRoleForAutoScaling"
self.vpc_zone_identifier: Optional[str] = None
self._set_azs_and_vpcs(availability_zones, vpc_zone_identifier)
self.max_size = max_size
self.min_size = min_size
self.launch_template = None
self.launch_config = None
self._set_launch_configuration(
launch_config_name, launch_template, mixed_instance_policy
)
self.mixed_instance_policy = mixed_instance_policy
self.default_cooldown = (
default_cooldown if default_cooldown else DEFAULT_COOLDOWN
)
self.health_check_period = health_check_period
self.health_check_type = health_check_type if health_check_type else "EC2"
self.load_balancers = load_balancers
self.target_group_arns = target_group_arns
self.placement_group = placement_group
self.capacity_rebalance = capacity_rebalance
self.termination_policies = termination_policies or ["Default"]
self.new_instances_protected_from_scale_in = (
new_instances_protected_from_scale_in
)
self.suspended_processes: List[str] = []
self.instance_states: List[InstanceState] = []
self.tags: List[Dict[str, str]] = tags or []
self.set_desired_capacity(desired_capacity)
self.metrics: List[str] = []
self.warm_pool: Optional[FakeWarmPool] = None
@property
def tags(self) -> List[Dict[str, str]]:
return self._tags
@tags.setter
def tags(self, tags: List[Dict[str, str]]) -> None:
for tag in tags:
if "ResourceId" not in tag or not tag["ResourceId"]:
tag["ResourceId"] = self.name
if "ResourceType" not in tag or not tag["ResourceType"]:
tag["ResourceType"] = "auto-scaling-group"
self._tags = tags
@property
def arn(self) -> str:
return f"arn:aws:autoscaling:{self.region}:{self.account_id}:autoScalingGroup:{self._id}:autoScalingGroupName/{self.name}"
def active_instances(self) -> List[InstanceState]:
return [x for x in self.instance_states if x.lifecycle_state == "InService"]
def _set_azs_and_vpcs(
self,
availability_zones: List[str],
vpc_zone_identifier: Optional[str],
update: bool = False,
) -> None:
# for updates, if only AZs are provided, they must not clash with
# the AZs of existing VPCs
if update and availability_zones and not vpc_zone_identifier:
vpc_zone_identifier = self.vpc_zone_identifier
if vpc_zone_identifier:
# extract azs for vpcs
subnet_ids = vpc_zone_identifier.split(",")
subnets = self.autoscaling_backend.ec2_backend.describe_subnets(
subnet_ids=subnet_ids
)
vpc_zones = [subnet.availability_zone for subnet in subnets]
if availability_zones and set(availability_zones) != set(vpc_zones):
raise AutoscalingClientError(
"ValidationError",
"The availability zones of the specified subnets and the Auto Scaling group do not match",
)
availability_zones = vpc_zones
elif not availability_zones:
if not update:
raise AutoscalingClientError(
"ValidationError",
"At least one Availability Zone or VPC Subnet is required.",
)
return
self.availability_zones = availability_zones
self.vpc_zone_identifier = vpc_zone_identifier
def _set_launch_configuration(
self,
launch_config_name: str,
launch_template: Dict[str, Any],
mixed_instance_policy: Optional[Dict[str, Any]],
) -> None:
if launch_config_name:
self.launch_config = self.autoscaling_backend.launch_configurations[
launch_config_name
]
self.launch_config_name = launch_config_name
if launch_template or mixed_instance_policy:
if launch_template:
launch_template_id = launch_template.get("launch_template_id")
launch_template_name = launch_template.get("launch_template_name")
# If no version is specified, AWS will use '$Default'
# However, AWS will never show the version if it is not specified
# (If the user explicitly specifies '$Default', it will be returned)
self.launch_template_version = (
launch_template.get("version") or "$Default"
)
self.provided_launch_template_version = launch_template.get("version")
elif mixed_instance_policy:
spec = mixed_instance_policy["LaunchTemplate"][
"LaunchTemplateSpecification"
]
launch_template_id = spec.get("LaunchTemplateId")
launch_template_name = spec.get("LaunchTemplateName")
self.launch_template_version = spec.get("Version") or "$Default"
if not (launch_template_id or launch_template_name) or (
launch_template_id and launch_template_name
):
raise ValidationError(
"Valid requests must contain either launchTemplateId or LaunchTemplateName"
)
if launch_template_id:
self.launch_template = self.ec2_backend.get_launch_template(
launch_template_id
)
elif launch_template_name:
self.launch_template = self.ec2_backend.get_launch_template_by_name(
launch_template_name
)
@staticmethod
def cloudformation_name_type() -> str:
return "AutoScalingGroupName"
@staticmethod
def cloudformation_type() -> str:
# https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-autoscalinggroup.html
return "AWS::AutoScaling::AutoScalingGroup"
@classmethod
def create_from_cloudformation_json( # type: ignore[misc]
cls,
resource_name: str,
cloudformation_json: Dict[str, Any],
account_id: str,
region_name: str,
**kwargs: Any,
) -> "FakeAutoScalingGroup":
properties = cloudformation_json["Properties"]
launch_config_name = properties.get("LaunchConfigurationName")
launch_template = {
camelcase_to_underscores(k): v
for k, v in properties.get("LaunchTemplate", {}).items()
}
load_balancer_names = properties.get("LoadBalancerNames", [])
target_group_arns = properties.get("TargetGroupARNs", [])
backend = autoscaling_backends[account_id][region_name]
group = backend.create_auto_scaling_group(
name=resource_name,
availability_zones=properties.get("AvailabilityZones", []),
desired_capacity=properties.get("DesiredCapacity"),
max_size=properties.get("MaxSize"),
min_size=properties.get("MinSize"),
launch_config_name=launch_config_name,
launch_template=launch_template,
vpc_zone_identifier=(
",".join(properties.get("VPCZoneIdentifier", [])) or None
),
default_cooldown=properties.get("Cooldown"),
health_check_period=properties.get("HealthCheckGracePeriod"),
health_check_type=properties.get("HealthCheckType"),
load_balancers=load_balancer_names,
target_group_arns=target_group_arns,
placement_group=None,
termination_policies=properties.get("TerminationPolicies", []),
tags=set_string_propagate_at_launch_booleans_on_tags(
properties.get("Tags", [])
),
new_instances_protected_from_scale_in=properties.get(
"NewInstancesProtectedFromScaleIn", False
),
)
return group
@classmethod
def update_from_cloudformation_json( # type: ignore[misc]
cls,
original_resource: Any,
new_resource_name: str,
cloudformation_json: Dict[str, Any],
account_id: str,
region_name: str,
) -> "FakeAutoScalingGroup":
cls.delete_from_cloudformation_json(
original_resource.name, cloudformation_json, account_id, region_name
)
return cls.create_from_cloudformation_json(
new_resource_name, cloudformation_json, account_id, region_name
)
@classmethod
def delete_from_cloudformation_json( # type: ignore[misc]
cls,
resource_name: str,
cloudformation_json: Dict[str, Any],
account_id: str,
region_name: str,
) -> None:
backend = autoscaling_backends[account_id][region_name]
try:
backend.delete_auto_scaling_group(resource_name)
except KeyError:
pass
def delete(self, account_id: str, region_name: str) -> None:
backend = autoscaling_backends[account_id][region_name]
backend.delete_auto_scaling_group(self.name)
@property
def physical_resource_id(self) -> str:
return self.name
@property
def image_id(self) -> str:
if self.launch_template:
version = self.launch_template.get_version(self.launch_template_version)
return version.image_id
return self.launch_config.image_id # type: ignore[union-attr]
@property
def instance_type(self) -> str:
if self.launch_template:
version = self.launch_template.get_version(self.launch_template_version)
return version.instance_type
return self.launch_config.instance_type # type: ignore[union-attr]
@property
def user_data(self) -> str:
if self.launch_template:
version = self.launch_template.get_version(self.launch_template_version)
return version.user_data
return self.launch_config.user_data # type: ignore[union-attr]
@property
def security_groups(self) -> List[str]:
if self.launch_template:
version = self.launch_template.get_version(self.launch_template_version)
return version.security_groups
return self.launch_config.security_groups # type: ignore[union-attr]
def update(
self,
availability_zones: List[str],
desired_capacity: Optional[int],
max_size: Optional[int],
min_size: Optional[int],
launch_config_name: str,
launch_template: Dict[str, Any],
vpc_zone_identifier: str,
health_check_period: int,
health_check_type: str,
new_instances_protected_from_scale_in: Optional[bool] = None,
) -> None:
self._set_azs_and_vpcs(availability_zones, vpc_zone_identifier, update=True)
if max_size is not None:
self.max_size = max_size
if min_size is not None:
self.min_size = min_size
if desired_capacity is None:
if min_size is not None and min_size > len(self.instance_states):
desired_capacity = min_size
if max_size is not None and max_size < len(self.instance_states):
desired_capacity = max_size
self._set_launch_configuration(
launch_config_name, launch_template, mixed_instance_policy=None
)
if health_check_period is not None:
self.health_check_period = health_check_period
if health_check_type is not None:
self.health_check_type = health_check_type
if new_instances_protected_from_scale_in is not None:
self.new_instances_protected_from_scale_in = (
new_instances_protected_from_scale_in
)
if desired_capacity is not None:
self.set_desired_capacity(desired_capacity)
def set_desired_capacity(self, new_capacity: Optional[int]) -> None:
if new_capacity is None:
self.desired_capacity = self.min_size
else:
self.desired_capacity = new_capacity
curr_instance_count = len(self.active_instances())
if self.desired_capacity == curr_instance_count:
pass # Nothing to do here
elif self.desired_capacity > curr_instance_count: # type: ignore[operator]
# Need more instances
count_needed = int(self.desired_capacity) - int(curr_instance_count) # type: ignore[arg-type]
propagated_tags = self.get_propagated_tags()
self.replace_autoscaling_group_instances(count_needed, propagated_tags)
else:
# Need to remove some instances
count_to_remove = curr_instance_count - self.desired_capacity # type: ignore[operator]
instances_to_remove = [ # only remove unprotected
state
for state in self.instance_states
if not state.protected_from_scale_in
][:count_to_remove]
if instances_to_remove: # just in case not instances to remove
instance_ids_to_remove = [
instance.instance.id for instance in instances_to_remove
]
self.autoscaling_backend.ec2_backend.terminate_instances(
instance_ids_to_remove
)
self.instance_states = list(
set(self.instance_states) - set(instances_to_remove)
)
if self.name in self.autoscaling_backend.autoscaling_groups:
self.autoscaling_backend.update_attached_elbs(self.name)
self.autoscaling_backend.update_attached_target_groups(self.name)
def get_propagated_tags(self) -> Dict[str, str]:
propagated_tags = {}
for tag in self.tags:
# boto uses 'propagate_at_launch
# boto3 and cloudformation use PropagateAtLaunch
if "propagate_at_launch" in tag and tag["propagate_at_launch"] == "true":
propagated_tags[tag["key"]] = tag["value"]
if "PropagateAtLaunch" in tag and tag["PropagateAtLaunch"] == "true":
propagated_tags[tag["Key"]] = tag["Value"]
return propagated_tags
def replace_autoscaling_group_instances(
self, count_needed: int, propagated_tags: Dict[str, str]
) -> None:
propagated_tags[ASG_NAME_TAG] = self.name
# VPCZoneIdentifier:
# A comma-separated list of subnet IDs for a virtual private cloud (VPC) where instances in the Auto Scaling group can be created.
# We'll create all instances in a single subnet to make things easier
subnet_id = (
self.vpc_zone_identifier.split(",")[0] if self.vpc_zone_identifier else None
)
associate_public_ip = (
self.launch_config.associate_public_ip_address
if self.launch_config
else None
)
reservation = self.autoscaling_backend.ec2_backend.run_instances(
self.image_id,
count_needed,
self.user_data,
self.security_groups,
instance_type=self.instance_type,
tags={"instance": propagated_tags},
placement=random.choice(self.availability_zones),
launch_config=self.launch_config,
is_instance_type_default=False,
associate_public_ip=associate_public_ip,
subnet_id=subnet_id,
)
for instance in reservation.instances:
instance.autoscaling_group = self
self.instance_states.append(
InstanceState(
instance,
protected_from_scale_in=self.new_instances_protected_from_scale_in,
)
)
def append_target_groups(self, target_group_arns: List[str]) -> None:
append = [x for x in target_group_arns if x not in self.target_group_arns]
self.target_group_arns.extend(append)
def enable_metrics_collection(self, metrics: List[str]) -> None:
self.metrics = metrics or []
def put_warm_pool(
self,
max_capacity: Optional[int],
min_size: Optional[int],
pool_state: Optional[str],
instance_reuse_policy: Optional[Dict[str, bool]],
) -> None:
self.warm_pool = FakeWarmPool(
max_capacity=max_capacity,
min_size=min_size,
pool_state=pool_state,
instance_reuse_policy=instance_reuse_policy,
)
def get_warm_pool(self) -> Optional[FakeWarmPool]:
return self.warm_pool
class AutoScalingBackend(BaseBackend):
def __init__(self, region_name: str, account_id: str):
super().__init__(region_name, account_id)
self.autoscaling_groups: Dict[str, FakeAutoScalingGroup] = OrderedDict()
self.launch_configurations: Dict[str, FakeLaunchConfiguration] = OrderedDict()
self.scheduled_actions: Dict[str, FakeScheduledAction] = OrderedDict()
self.policies: Dict[str, FakeScalingPolicy] = {}
self.lifecycle_hooks: Dict[str, FakeLifeCycleHook] = {}
self.ec2_backend: EC2Backend = ec2_backends[self.account_id][region_name]
self.elb_backend: ELBBackend = elb_backends[self.account_id][region_name]
self.elbv2_backend: ELBv2Backend = elbv2_backends[self.account_id][region_name]
@staticmethod
def default_vpc_endpoint_service(service_region: str, zones: List[str]) -> List[Dict[str, Any]]: # type: ignore[misc]
"""Default VPC endpoint service."""
return BaseBackend.default_vpc_endpoint_service_factory(
service_region, zones, "autoscaling"
) + BaseBackend.default_vpc_endpoint_service_factory(
service_region, zones, "autoscaling-plans"
)
def create_launch_configuration(
self,
name: str,
image_id: str,
key_name: Optional[str],
kernel_id: str,
ramdisk_id: str,
security_groups: List[str],
user_data: str,
instance_type: str,
instance_monitoring: bool,
instance_profile_name: Optional[str],
spot_price: Optional[str],
ebs_optimized: str,
associate_public_ip_address: str,
block_device_mappings: List[Dict[str, Any]],
instance_id: Optional[str] = None,
metadata_options: Optional[str] = None,
classic_link_vpc_id: Optional[str] = None,
classic_link_vpc_security_groups: Optional[str] = None,
) -> FakeLaunchConfiguration:
valid_requests = [
instance_id is not None,
image_id is not None and instance_type is not None,
]
if not any(valid_requests):
raise ValidationError(
"Valid requests must contain either the InstanceID parameter or both the ImageId and InstanceType parameters."
)
if instance_id is not None:
# TODO: https://docs.aws.amazon.com/autoscaling/ec2/userguide/create-lc-with-instanceID.html
pass
launch_configuration = FakeLaunchConfiguration(
name=name,
image_id=image_id,
key_name=key_name,
kernel_id=kernel_id,
ramdisk_id=ramdisk_id,
security_groups=security_groups,
user_data=user_data,
instance_type=instance_type,
instance_monitoring=instance_monitoring,
instance_profile_name=instance_profile_name,
spot_price=spot_price,
ebs_optimized=ebs_optimized,
associate_public_ip_address=associate_public_ip_address,
block_device_mapping_dict=block_device_mappings,
account_id=self.account_id,
region_name=self.region_name,
metadata_options=metadata_options,
classic_link_vpc_id=classic_link_vpc_id,
classic_link_vpc_security_groups=classic_link_vpc_security_groups,
)
self.launch_configurations[name] = launch_configuration
return launch_configuration
def describe_launch_configurations(
self, names: Optional[List[str]]
) -> List[FakeLaunchConfiguration]:
configurations = self.launch_configurations.values()
if names:
return [
configuration
for configuration in configurations
if configuration.name in names
]
else:
return list(configurations)
def delete_launch_configuration(self, launch_configuration_name: str) -> None:
self.launch_configurations.pop(launch_configuration_name, None)
def put_scheduled_update_group_action(
self,
name: str,
desired_capacity: Union[None, str, int],
max_size: Union[None, str, int],
min_size: Union[None, str, int],
scheduled_action_name: str,
start_time: Optional[str],
end_time: Optional[str],
recurrence: Optional[str],
timezone: Optional[str],
) -> FakeScheduledAction:
max_size = make_int(max_size)
min_size = make_int(min_size)
desired_capacity = make_int(desired_capacity)
scheduled_action = FakeScheduledAction(
name=name,
desired_capacity=desired_capacity,
max_size=max_size,
min_size=min_size,
scheduled_action_name=scheduled_action_name,
start_time=start_time,
end_time=end_time,
recurrence=recurrence,
timezone=timezone,
)
self.scheduled_actions[scheduled_action_name] = scheduled_action
return scheduled_action
def batch_put_scheduled_update_group_action(
self, name: str, actions: List[Dict[str, Any]]
) -> List[FailedScheduledUpdateGroupActionRequest]:
result = []
for action in actions:
try:
self.put_scheduled_update_group_action(