com.github.dockerjava.api.command.CreateServiceCmd Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-java Show documentation
Show all versions of docker-java Show documentation
Java API Client for Docker
package com.github.dockerjava.api.command;
import com.github.dockerjava.api.exception.ConflictException;
import com.github.dockerjava.api.model.ServiceSpec;
import com.github.dockerjava.core.RemoteApiVersion;
import javax.annotation.CheckForNull;
/**
* Command to create a new service
*
* @since {@link RemoteApiVersion#VERSION_1_24}
*/
public interface CreateServiceCmd extends SyncDockerCmd {
@CheckForNull
ServiceSpec getServiceSpec();
CreateServiceCmd withServiceSpec(ServiceSpec serviceSpec);
/**
* @throws ConflictException
* Named service already exists
*/
@Override
CreateServiceResponse exec() throws ConflictException;
interface Exec extends DockerCmdSyncExec {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy