Created
October 20, 2012 20:24
-
-
Save codefromthecrypt/3924666 to your computer and use it in GitHub Desktop.
Issue 1110: TagApi syntax for EC2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://code.google.com/p/jclouds/issues/detail?id=1110 | |
In both setting and getting tags, the value is optional. I'd suggest mapping the following syntax: | |
void apply(Map<String, Optional<String>> tags, Iterable<String> resourceIds) | |
http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-CreateTags.html | |
FluentIterable<Tag> list(); | |
FluentIterable<Tag> filter(Multimap<String, String> filter); | |
http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeTags.html | |
FluentIterable<Tag> deleteTagsFromResources(Iterable<String> tags, Iterable<String> resourceIds) | |
FluentIterable<Tag> conditionalDeleteTagsFromResources(Map<String, Optional<String>> conditionalTagValues, Iterable<String> resourceIds) | |
http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DeleteTags.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment