Package org.openstack4j.api.compute.ext
Interface FloatingIPDNSDomainService
-
- All Superinterfaces:
RestService
- All Known Implementing Classes:
FloatingIPDNSDomainServiceImpl
@Deprecated public interface FloatingIPDNSDomainService extends RestService
Deprecated.Service that handles domain names for the floating IP DNS Extension- Author:
- Jeremy Unruh
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description DomainEntrycreatePrivate(String domainName, String availabilityZone)Deprecated.Creates or Updates a PRIVATE domain name recordDomainEntrycreatePublic(String domainName, String project)Deprecated.Creates or Updates a PUBLIC domain name recordActionResponsedelete(String domainName)Deprecated.Delete the specifieddomainNameList<? extends DomainEntry>list()Deprecated.Return the list of available DNS domains
-
-
-
Method Detail
-
list
List<? extends DomainEntry> list()
Deprecated.Return the list of available DNS domains- Returns:
- list of domain entries
-
delete
ActionResponse delete(String domainName)
Deprecated.Delete the specifieddomainName- Parameters:
domainName- the name of the domain- Returns:
- the action response
-
createPublic
DomainEntry createPublic(String domainName, String project)
Deprecated.Creates or Updates a PUBLIC domain name record- Parameters:
domainName- the FQ Domain nameproject- the project name- Returns:
- the created/updated domain entry
-
createPrivate
DomainEntry createPrivate(String domainName, String availabilityZone)
Deprecated.Creates or Updates a PRIVATE domain name record- Parameters:
domainName- the FQ Domain nameavailabilityZone- the availability zone- Returns:
- he created/updated domain entry
-
-