forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathListSecretsCmd.java
More file actions
34 lines (26 loc) · 883 Bytes
/
Copy pathListSecretsCmd.java
File metadata and controls
34 lines (26 loc) · 883 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
package com.github.dockerjava.api.command;
import com.github.dockerjava.api.model.Secret;
import javax.annotation.CheckForNull;
import java.util.List;
import java.util.Map;
/**
* List secrets
*/
public interface ListSecretsCmd extends SyncDockerCmd<List<Secret>> {
@CheckForNull
Map<String, List<String>> getFilters();
/**
* @param ids - Show only secrets with the given ids
*/
ListSecretsCmd withIdFilter(List<String> ids);
/**
* @param names - Show only secrets with the given names
*/
ListSecretsCmd withNameFilter(List<String> names);
/**
* @param labels - Show only secrets with the passed labels. Labels is a {@link Map} that contains label keys and values
*/
ListSecretsCmd withLabelFilter(Map<String, String> labels);
interface Exec extends DockerCmdSyncExec<ListSecretsCmd, List<Secret>> {
}
}