public interface HostedZoneApi
HostedZoneAsyncApi, 
| Modifier and Type | Method and Description | 
|---|---|
NewHostedZone | 
createWithReference(String name,
                   String callerReference)
This action creates a new hosted zone. 
 | 
NewHostedZone | 
createWithReferenceAndComment(String name,
                             String callerReference,
                             String comment)
like  
createWithReference(String, String), except you can specify
 a comment. | 
Change | 
delete(String id)
This action deletes a hosted zone. 
 | 
HostedZoneAndNameServers | 
get(String id)
Retrieves information about the specified zone, including its nameserver
 configuration 
 | 
PagedIterable<HostedZone> | 
list()
returns all zones in order. 
 | 
IterableWithMarker<HostedZone> | 
listAt(String nextMarker)
retrieves up to 100 zones in order, starting at  
nextMarker | 
IterableWithMarker<HostedZone> | 
listFirstPage()
retrieves up to 100 zones in order. 
 | 
NewHostedZone createWithReference(String name, String callerReference)
name - The name of the domain. ex. www.example.com. The
           trailing dot is optional.callerReference - A unique string that identifies the request and allows safe
           retries. ex. MyDNSMigration_01Change.Status.PENDING.NewHostedZone createWithReferenceAndComment(String name, String callerReference, String comment)
createWithReference(String, String), except you can specify
 a comment.PagedIterable<HostedZone> list()
IterableWithMarker<HostedZone> listFirstPage()
IterableWithMarker<HostedZone> listAt(String nextMarker)
nextMarker@Nullable HostedZoneAndNameServers get(String id)
id - id of the zone to get information about. ex
           Z1PA6795UKMFR9Copyright © 2009-2013 jclouds. All Rights Reserved.