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

com.github.dockerjava.api.command.UpdateServiceCmd 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.model.ServiceSpec;

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

/**
 * @since {@link RemoteApiVersion#VERSION_1_24}
 */
public interface UpdateServiceCmd extends SyncDockerCmd {
    @CheckForNull
    String getServiceId();

    UpdateServiceCmd withServiceId(@Nonnull String serviceId);

    @CheckForNull
    ServiceSpec getServiceSpec();

    UpdateServiceCmd withServiceSpec(ServiceSpec serviceSpec);

    @CheckForNull
    Long getVersion();

    UpdateServiceCmd withVersion(Long version);

    interface Exec extends DockerCmdSyncExec {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy