com.github.dockerjava.api.command.ResizeContainerCmd Maven / Gradle / Ivy
package com.github.dockerjava.api.command;
import com.github.dockerjava.api.exception.NotFoundException;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
public interface ResizeContainerCmd extends SyncDockerCmd {
@CheckForNull
String getContainerId();
Integer getHeight();
Integer getWidth();
ResizeContainerCmd withContainerId(@Nonnull String execId);
ResizeContainerCmd withSize(int height, int width);
/**
* @throws NotFoundException no such container instance
*/
@Override
Void exec() throws NotFoundException;
interface Exec extends DockerCmdSyncExec {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy