Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2258)

Unified Diff: third_party/boto/boto/ec2/ec2object.py

Issue 698893003: Update checked in version of gsutil to version 4.6 (Closed) Base URL: http://dart.googlecode.com/svn/third_party/gsutil/
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/boto/boto/ec2/connection.py ('k') | third_party/boto/boto/ec2/elb/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/boto/boto/ec2/ec2object.py
===================================================================
--- third_party/boto/boto/ec2/ec2object.py (revision 33376)
+++ third_party/boto/boto/ec2/ec2object.py (working copy)
@@ -85,6 +85,27 @@
self.tags = TagSet()
self.tags[key] = value
+ def add_tags(self, tags, dry_run=False):
+ """
+ Add tags to this object. Tags are stored by AWS and can be used
+ to organize and filter resources. Adding tags involves a round-trip
+ to the EC2 service.
+
+ :type tags: dict
+ :param tags: A dictionary of key-value pairs for the tags being stored.
+ If for some tags you want only the name and no value, the
+ corresponding value for that tag name should be an empty
+ string.
+ """
+ status = self.connection.create_tags(
+ [self.id],
+ tags,
+ dry_run=dry_run
+ )
+ if self.tags is None:
+ self.tags = TagSet()
+ self.tags.update(tags)
+
def remove_tag(self, key, value=None, dry_run=False):
"""
Remove a tag from this object. Removing a tag involves a round-trip
@@ -102,7 +123,7 @@
NOTE: There is an important distinction between
a value of '' and a value of None.
"""
- if value:
+ if value is not None:
tags = {key : value}
else:
tags = [key]
« no previous file with comments | « third_party/boto/boto/ec2/connection.py ('k') | third_party/boto/boto/ec2/elb/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698