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

com.github.dockerjava.api.command.RemoveSwarmNodeCmd Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
package com.github.dockerjava.api.command;

import com.github.dockerjava.api.exception.NotFoundException;

import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;

/**
 * Remove a swarmNode.
 *
 * @since {@link RemoteApiVersion#VERSION_1_24}
 */
public interface RemoveSwarmNodeCmd extends SyncDockerCmd {

    @CheckForNull
    String getSwarmNodeId();

    @CheckForNull
    Boolean hasForceEnabled();

    RemoveSwarmNodeCmd withContainerId(@Nonnull String containerId);

    RemoveSwarmNodeCmd withForce(Boolean force);

    /**
     * @throws NotFoundException No such swarmNode
     */
    @Override
    Void exec() throws NotFoundException;

    interface Exec extends DockerCmdSyncExec {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy