com.github.dockerjava.api.command.InspectSwarmNodeCmd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of org.apache.servicemix.bundles.docker-java
Show all versions of org.apache.servicemix.bundles.docker-java
This OSGi bundle wraps ${pkgArtifactId} ${pkgVersion} jar file.
package com.github.dockerjava.api.command;
import com.github.dockerjava.api.exception.NotFoundException;
import com.github.dockerjava.api.model.SwarmNode;
import com.github.dockerjava.core.RemoteApiVersion;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
/**
* Inspect a swarmNode.
*
* @since {@link RemoteApiVersion#VERSION_1_24}
*/
public interface InspectSwarmNodeCmd extends SyncDockerCmd {
@CheckForNull
String getSwarmNodeId();
InspectSwarmNodeCmd withSwarmNodeId(@Nonnull String swarmNodeId);
/**
* @throws NotFoundException No such swarmNode
*/
@Override
SwarmNode exec() throws NotFoundException;
interface Exec extends DockerCmdSyncExec {
}
}