5ef236e966
* add detach_instances functionality to autoscaling service * use ASG_NAME_TAG constant * cleanup models method a bit, add mocked DetachInstancesResult to response template * add attach_instances method
15 lines
446 B
Python
15 lines
446 B
Python
from __future__ import unicode_literals
|
|
from moto.core.exceptions import RESTError
|
|
|
|
|
|
class AutoscalingClientError(RESTError):
|
|
code = 500
|
|
|
|
|
|
class ResourceContentionError(AutoscalingClientError):
|
|
|
|
def __init__(self):
|
|
super(ResourceContentionError, self).__init__(
|
|
"ResourceContentionError",
|
|
"You already have a pending update to an Auto Scaling resource (for example, a group, instance, or load balancer).")
|