Package io.fathom.cloud.dns.DnsService

Examples of io.fathom.cloud.dns.DnsService.DnsZoneSpec


    @Override
    protected DnsZoneData run0() throws Exception {
        Auth auth = getAuth();
        Project project = auth.getProject();

        DnsZoneSpec zoneSpec = new DnsZoneSpec();
        zoneSpec.name = zone;
        zoneSpec.backend = backend;

        DnsZone created;
View Full Code Here


        }
        if (request.availability_zone != null) {
            throw new UnsupportedOperationException();
        }

        DnsZoneSpec zoneSpec = new DnsZoneSpec();
        zoneSpec.name = request.domain;

        DnsService.Zone created;
        try {
            created = dnsService.createZone(project, zoneSpec);
View Full Code Here

TOP

Related Classes of io.fathom.cloud.dns.DnsService.DnsZoneSpec

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.