Merge pull request #987 from jclouds/fix-tag-javadoc

javadoc fixes for TagApi
This commit is contained in:
Adrian Cole 2012-11-13 08:06:50 -08:00
commit 34806b4e5b
1 changed files with 5 additions and 6 deletions

View File

@ -30,13 +30,12 @@ import com.google.common.collect.FluentIterable;
import com.google.common.collect.Multimap; import com.google.common.collect.Multimap;
/** /**
* Provides access to Amazon EC2 via the Query API * To help you manage your Amazon EC2 instances, images, and other Amazon EC2
* <p/> * resources, you can assign your own metadata to each resource in the form of
* * tags.
* This api is not available in EC2 versions below {@link #MIN_API_VERSION}
* *
* @see <a * @see <a
* href="http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-DescribeTags.html" * href="http://docs.amazonwebservices.com/AWSEC2/latest/UserGuide/Using_Tags.html"
* >doc</a> * >doc</a>
* @see TagAsyncApi * @see TagAsyncApi
* @author Adrian Cole * @author Adrian Cole
@ -140,7 +139,7 @@ public interface TagApi {
* <h4>example</h4> * <h4>example</h4>
* *
* <pre> * <pre>
* tagApi.deleteFromResources(ImmutableMap.of(&quot;Purpose&quot;, &quot;production&quot;), ImmutableSet.of(&quot;ami-1a2b3c4d&quot;)); * tagApi.conditionallyDeleteFromResources(ImmutableMap.of(&quot;Purpose&quot;, &quot;production&quot;), ImmutableSet.of(&quot;ami-1a2b3c4d&quot;));
* </pre> * </pre>
* *
* @param conditionalTagValues * @param conditionalTagValues