com.spotinst.sdkjava.model.IRepositoryAzure Maven / Gradle / Ivy
package com.spotinst.sdkjava.model;
import com.spotinst.sdkjava.exception.SpotinstNotSupportedException;
import java.util.List;
interface IRepositoryAzure {
default RepoGenericResponse get(I identifier, String authToken, String account) {
throw new SpotinstNotSupportedException();
}
default RepoGenericResponse> getAll(F filter, String authToken, String account) {
throw new SpotinstNotSupportedException();
}
default RepoGenericResponse update(I identifier, S objectToUpdate, String authToken, String account) {
throw new SpotinstNotSupportedException();
}
default RepoGenericResponse create(S objectToCreate, String authToken, String account) {
throw new SpotinstNotSupportedException();
}
default RepoGenericResponse delete(I identifier, String authToken, String account) {
throw new SpotinstNotSupportedException();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy