com.spotinst.sdkjava.model.ISpotAzureStatefulNodeRepo Maven / Gradle / Ivy
package com.spotinst.sdkjava.model;
import com.spotinst.sdkjava.exception.SpotinstNotSupportedException;
import com.spotinst.sdkjava.model.bl.azure.statefulNode.*;
import com.spotinst.sdkjava.model.requests.azure.statefulNode.StatefulNodeGetLogsRequest;
import com.spotinst.sdkjava.model.requests.azure.statefulNode.StatefulNodeStateChangeRequest;
import java.util.List;
public interface ISpotAzureStatefulNodeRepo extends IRepository{
default RepoGenericResponse createNode(StatefulNode statefulNode, String authToken, String account) {
throw new SpotinstNotSupportedException();
}
default RepoGenericResponse getNode(String nodeId, String authToken, String account){
throw new SpotinstNotSupportedException();
}
default RepoGenericResponse updateNode(StatefulNode statefulNodeToUpdate, String nodeId, String authToken, String account){
throw new SpotinstNotSupportedException();
}
default RepoGenericResponse deleteNode(StatefulNodeDeallocationConfig statefulNodeDeallocationConfig, String nodeId, String authToken, String account){
throw new SpotinstNotSupportedException();
}
default RepoGenericResponse> getAllNodes(String authToken, String account){
throw new SpotinstNotSupportedException();
}
default RepoGenericResponse updateNodeState(StatefulNodeStateChangeRequest statefulNodeStateChangeRequest, String nodeId, String authToken, String account){
throw new SpotinstNotSupportedException();
}
default RepoGenericResponse getNodeStatus(String nodeId, String authToken, String account){
throw new SpotinstNotSupportedException();
}
default RepoGenericResponse importNode(ImportConfiguration node, String authToken, String account){
throw new SpotinstNotSupportedException();
}
default RepoGenericResponse getNodeImportStatus(String importId, String authToken, String account){
throw new SpotinstNotSupportedException();
}
default RepoGenericResponse getImportVmConfiguration(String vmName, String resourceGroup, String authToken, String account){
throw new SpotinstNotSupportedException();
}
default RepoGenericResponse> getStatefulNodeLogs(StatefulNodeGetLogsRequest nodeGetLogsRequest, String nodeId, String authToken){
throw new SpotinstNotSupportedException();
}
default RepoGenericResponse getNodeResources(String importId, String authToken, String account){
throw new SpotinstNotSupportedException();
}
default RepoGenericResponse> getAllNodeStatus(String authToken, String account){
throw new SpotinstNotSupportedException();
}
default RepoGenericResponse attachDataDisk(StatefulNodeAttachDataDiskConfiguration attachDataDisk, String nodeId, String authToken, String account){
throw new SpotinstNotSupportedException();
}
default RepoGenericResponse detachDataDisk(StatefulNodeDetachDataDiskConfiguration detachDataDisk, String nodeId, String authToken, String account){
throw new SpotinstNotSupportedException();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy