All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.oneops.infoblox.Infoblox Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
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