mirror of https://github.com/apache/jclouds.git
Merge pull request #987 from jclouds/fix-tag-javadoc
javadoc fixes for TagApi
This commit is contained in:
commit
34806b4e5b
|
@ -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("Purpose", "production"), ImmutableSet.of("ami-1a2b3c4d"));
|
* tagApi.conditionallyDeleteFromResources(ImmutableMap.of("Purpose", "production"), ImmutableSet.of("ami-1a2b3c4d"));
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* @param conditionalTagValues
|
* @param conditionalTagValues
|
||||||
|
|
Loading…
Reference in New Issue