forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPullImageCmd.java
More file actions
37 lines (25 loc) · 818 Bytes
/
Copy pathPullImageCmd.java
File metadata and controls
37 lines (25 loc) · 818 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
35
36
37
package com.github.dockerjava.api.command;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
import com.github.dockerjava.api.model.AuthConfig;
import com.github.dockerjava.api.model.PullResponseItem;
/**
*
* Pull image from repository.
*
*/
public interface PullImageCmd extends AsyncDockerCmd<PullImageCmd, PullResponseItem> {
@CheckForNull
String getRepository();
@CheckForNull
String getTag();
@CheckForNull
String getRegistry();
AuthConfig getAuthConfig();
PullImageCmd withRepository(@Nonnull String repository);
PullImageCmd withTag(String tag);
PullImageCmd withRegistry(String registry);
PullImageCmd withAuthConfig(AuthConfig authConfig);
interface Exec extends DockerCmdAsyncExec<PullImageCmd, PullResponseItem> {
}
}