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

com.github.dockerjava.api.command.ListConfigsCmd 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.Config;

import java.util.List;
import java.util.Map;

/**
 * Command to list all configs in a docker swarm. Only applicable if docker runs in swarm mode.
 *
 * @since {@link RemoteApiVersion#VERSION_1_30}
 */
public interface ListConfigsCmd extends SyncDockerCmd> {

    Map> getFilters();

    ListConfigsCmd withFilters(Map> filters);

    interface Exec extends DockerCmdSyncExec> {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy