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

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

package com.github.dockerjava.api.command;

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

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

public interface InspectConfigCmd extends SyncDockerCmd {

    @CheckForNull
    String getConfigId();

    InspectConfigCmd withConfigId(@Nonnull String configId);

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

    interface Exec extends DockerCmdSyncExec {
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy