summaryrefslogtreecommitdiff
path: root/boto/ec2/autoscale/launchconfig.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix few typonishigori2014-09-051-2/+2
|
* ec2 module: tidy up to meet PEP8 betterFelix Yan2014-07-301-1/+0
|
* Fixed integration test failures on BlockDeviceType.Daniel Lindsley2014-03-061-1/+4
|
* Fix BlockDeviceType deserialization in `get_all_launch_configurations`Andrew Gross2014-03-061-6/+14
| | | | | | | * Add switch to remove deserialize API response to proper objects * Preserve backwards compatible behavior * Add test for new behavior * Add documentation of new switch
* Fixes #2028: LaunchConfiguration does not retrieve AssociatePublicIpAddress ↵Hugo Lopes Tavares2014-01-231-0/+2
| | | | | | properly This commit is a fix to a missing feature of pull request #1799
* Updated Autoscaling for the latest API changes.Daniel Lindsley2014-01-021-6/+23
|
* Fixes #1823Tobias Work2013-10-291-2/+3
| | | | Documentation of security_groups argument doesn't mention VPC
* Added launch_config's parameter associate_ip_address for VPCmsshin2013-10-181-1/+7
|
* Add support for EbsOptimized to LaunchConfigurations.Mitch Garnaat2013-05-061-1/+8
|
* Allow IAM instance profile to be associated with a launch configuration for ↵Mitch Garnaat2012-06-121-1/+10
| | | | autoscale. Related to #811.
* Initial support for spot instances in autoscaling groups.Mitch Garnaat2012-06-041-6/+16
|
* Fall back to plain text launch config user dataJohn Reese2012-03-231-1/+4
| | | | | | | In cases where launch configurations aren't returned as base64-encoded strings, Boto would raise an exception when b64decode() fails. This patch catches that exception, and falls back to loading the user data string as plain text.
* Make parsing of CreatedTime more robust by using boto.utils.parse_ts. Also, ↵Mitch Garnaat2012-02-031-9/+7
| | | | strip any whitespace from ts prior to attempting conversion to DateTime. Closes #546.
* CreatedTime in response does not always include milliseconds. Awesome. ↵Mitch Garnaat2011-08-261-1/+4
| | | | Need to handle that. Closes #314.
* Fixed a problem with InstanceMonitoring parameter of LaunchConfigurations ↵Mitch Garnaat2011-05-311-2/+4
| | | | for autoscale module.
* base64 decode user dataNick Tarleton2011-04-121-1/+2
|
* Removed duplicated method definition.rlotun2011-04-011-2/+1
| | | | Also, various pyflakes fixes for unused imports.
* Parse all times as datetime objects.rlotun2011-03-311-1/+21
|
* Simple autoscale unit tests and fixes.rlotun2011-03-311-1/+1
|
* More work on implementing autoscale calls.rlotun2010-12-221-3/+1
| | | | | Added support for getting and setting policies and metric collection types as well as a few bugfixes.
* Beginning of autoscale 2010-08-01 support.rlotun2010-12-211-3/+71
| | | | | This includes the deprecation of triggers, and the enabling of scheduled actions and policies.
* global search and replace on @param => :param, @type => :type, @rtype => ↵paltman2009-09-181-8/+8
| | | | :rtype, and @return => :return; added autodoc index for ec2 module
* Various fixes to improve response handling for autoscale.rlotun2009-05-261-2/+14
|
* Added initial ec2 autoscaling implementation. Not quite ready for primetime, ↵rlotun2009-05-221-0/+86
but the overall structure is stable.