summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* More tweaks to the docstrings to try to appease the sphinx.cleandocsMitch Garnaat2010-09-174-7/+12
|
* More tedious clean up of docstring issues. Oh, sphinx, you are so needy.Mitch Garnaat2010-09-173-48/+13
|
* futzing around with more docstrings.Mitch Garnaat2010-09-173-10/+16
|
* More doc clean upMitch Garnaat2010-09-172-2/+9
|
* Cleaning up some docstrings and rst documents.Mitch Garnaat2010-09-175-13/+30
|
* Tweaking versioning functionality based on input from issue 380.Mitch Garnaat2010-09-172-6/+17
|
* Fixed some typos in docstrings.Mitch Garnaat2010-09-161-5/+5
|
* Added a connect_euca and connect_walrus function.Mitch Garnaat2010-09-161-0/+52
|
* Merge branch 'master' of github.com:boto/botoMitch Garnaat2010-09-158-78/+180
|\
| * Fixed bug I introduced in usage of newly introduced class hierarchy of ↵Mike Schwartz2010-09-151-1/+1
| | | | | | | | storage service exceptions.
| * Introduced class hierarchy of storage service exceptions, and hooked into ↵Mike Schwartz2010-09-148-78/+180
| | | | | | | | code through Provider class.
* | Add a connect_iam method to main module and fix a bug in response handler ↵Mitch Garnaat2010-09-152-3/+26
|/ | | | for IAM.
* Fix bug in add_user_grant. Fixes issue 450.Mitch Garnaat2010-09-141-2/+2
|
* Merge branch 'issue_451'Mitch Garnaat2010-09-142-1/+13
|\
| * Added support for cache-control header. Fixes issue 451.Mitch Garnaat2010-09-142-1/+13
| |
* | Added "boto.ecs" to setup.pyChris Moyer2010-09-131-1/+1
| |
* | Added some escaping to the XMLized functions for ECSChris Moyer2010-09-101-1/+8
| |
* | Updated ECS responses to allow you to dump the raw XML.Chris Moyer2010-09-101-3/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This works for any given level of the Response, so you can do: >>> from boto.ecs import ECSConnection >>> conn = ECSConnection() >>> books = conn.item_search("Books", Author="John Resig") >>> print books.to_xml() To dump the entire book XML, OR: >>> book = books.next() >>> print book.to_xml() to dump just one book OR: >>> book.ItemAttributes.to_xml() to dump just the ItemAttributes section of the book.
* | Fixed inconsistent use of debug param in StorageUri class and static factory ↵Mike Schwartz2010-09-092-6/+6
| | | | | | | | method for this class.
* | Removed all the old "None" references from everywhereChris Moyer2010-09-091-3/+3
| |
* | Fixed the issue of "None" values in SDB. If you set aChris Moyer2010-09-092-2/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | value to None" in an item, it would set that value to the string "None" instead of removing that attribute. Now, it will actually make a second call to delete any attributes that are set to None. Also, the SDB manager for some reason doesn't use the item directly, but instead uses the domain. I added the same functionality there, and removed all the weird work-arounds that set things to "None" instead of removing them. This makes the "is null" comparison work again.
* | Updated ECS response items to read more info from the Response.Chris Moyer2010-09-092-25/+67
| | | | | | | | | | | | | | You can now read information just like it comes out of the response: >>> book.ItemAttributes.Author instead of >>> book.Author
* | Added Paging support to ECSChris Moyer2010-09-082-5/+63
| |
* | Added "ECS" shell. For now this just has "item_search"Chris Moyer2010-09-082-0/+140
| |
* | Updated ELBAdmin scriptChris Moyer2010-09-081-29/+33
|/
* fixing LoadBalancerNames parameter of elb DescribeInstances operationGabriel Monroy2010-09-071-6/+5
|
* Property should set the real slot name if it'sChris Moyer2010-09-071-1/+4
| | | | sent a name in the constructor
* Added delete_group method.Mitch Garnaat2010-09-031-1/+13
|
* Merge branch 'iam'Mitch Garnaat2010-09-032-0/+950
|\
| * Initial version based on private beta.Mitch Garnaat2010-08-032-0/+950
| |
* | Added initial support for invalidation.Chris Moyer2010-09-023-1/+133
| | | | | | | | | | | | | | | | Invalidations can be done by creating a new "Invalidation Request": >>> import boto >>> cf = boto.connect_cloudfront() >>> cf.create_invalidation_request("distribution_id", ["/path1","/path2"])
* | Fixed bug in boto/s3/key.py that caused mimetypes.guess_type() to override ↵Mike Schwartz2010-08-311-2/+2
| | | | | | | | Content-Type explicitly set in headers.
* | Fixing usage string.Mitch Garnaat2010-08-271-1/+1
| |
* | Moving the cq.py script to bin/cqMitch Garnaat2010-08-272-1/+1
| |
* | Add an update method to Image class. Fixes issue 444.Mitch Garnaat2010-08-271-0/+15
| |
* | Fix typo bug in setting string value for RDS parameter group. Fixes issue 445.Mitch Garnaat2010-08-271-1/+1
| |
* | Fixed missing -1 check in my last checkin.Mike Schwartz2010-08-261-1/+1
| |
* | Made storage_uri factory method enforce syntax that URIs be of form ↵Mike Schwartz2010-08-261-4/+9
| | | | | | | | "scheme://" not "scheme:"
* | Added optional boolean to determine whether StorageUri bucket names should ↵Mike Schwartz2010-08-271-7/+16
| | | | | | | | be validated.
* | Merge branch 'master' of github.com:boto/botoMitch Garnaat2010-08-241-1/+1
|\ \
| * | Added lss3 to setup.pyChris Moyer2010-08-231-1/+1
| | |
* | | Incorporating a patch from James Christie to add important functionality to ↵Mitch Garnaat2010-08-241-14/+147
|/ / | | | | | | FPS module.
* | Removing host param from EMRConnection class. It is not needed and, in ↵Mitch Garnaat2010-08-221-1/+1
| | | | | | | | fact, ignored because of the region param.
* | Removing this module. It's obselete and gets confused with emr.Mitch Garnaat2010-08-228-982/+0
| |
* | Couple more improvements related to issue 440. Raise a relevant exception ↵Mitch Garnaat2010-08-222-4/+6
| | | | | | | | if no credentials have been set.
* | Fixed a problem in provider.py. Passed in credentials were not being ↵Mitch Garnaat2010-08-221-4/+4
| | | | | | | | honored. Fixes issue 440.
* | Added convenience methods for instance attribute methods. Also fixed/added ↵Mitch Garnaat2010-08-212-3/+84
| | | | | | | | a few docstrings. Fixes issue 438.
* | Merge branch 'master' of github.com:boto/botoMitch Garnaat2010-08-202-4/+8
|\ \
| * | Updated SDBManager and query to take an optional "quick" parameterChris Moyer2010-08-192-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | which now specifies if we should do a full count, or just return the first result set. This is due to Amazon's definition of count(*): If the count request takes more than five seconds, Amazon SimpleDB returns the number of items that it could count and a next token to return additional results. The client is responsible for accumulating the partial counts. But in the general case, we don't want to take a long time returning the count, we just want a quick result. Quick is set to "True" by default, but you can get a FULL count by doing: query.count(False)
* | | Fixed a bug in change_storage_class method found by user KT.Mitch Garnaat2010-08-201-3/+9
|/ /