![JAR search and dependency download from the Maven repository](/logo.png)
com.oneops.infoblox.Infoblox Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infoblox-java Show documentation
Show all versions of infoblox-java Show documentation
A pure java API for Infoblox DNS appliance.
package com.oneops.infoblox;
import com.oneops.infoblox.model.Result;
import com.oneops.infoblox.model.zone.ZoneAuth;
import java.util.List;
import retrofit2.Call;
import retrofit2.http.GET;
import retrofit2.http.POST;
import retrofit2.http.Query;
/**
* Infoblox DNS appliance (IBA) REST interface.
*
* @author Suresh G
*/
public interface Infoblox {
@GET("zone_auth")
Call>> getAuthZones();
@GET("zone_auth")
Call>> getAuthZone(@Query("fqdn~") String fqdn);
@POST("logout")
Call logout();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy