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

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

package com.github.dockerjava.api.command;

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

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

/**
 * Remove a config.
 */
public interface RemoveConfigCmd extends SyncDockerCmd {

    @CheckForNull
    String getConfigId();

    RemoveConfigCmd withConfigId(@Nonnull String secretId);

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

    interface Exec extends DockerCmdSyncExec {
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy