forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContainerSpecPrivilegesCredential.java
More file actions
54 lines (45 loc) · 1.45 KB
/
Copy pathContainerSpecPrivilegesCredential.java
File metadata and controls
54 lines (45 loc) · 1.45 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package com.github.dockerjava.api.model;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.EqualsAndHashCode;
import lombok.ToString;
import java.io.Serializable;
/**
* Credential for managed service account (Windows only)
*
* @since {@link RemoteApiVersion#VERSION_1_29}
*/
@EqualsAndHashCode
@ToString
public class ContainerSpecPrivilegesCredential implements Serializable {
private static final long serialVersionUID = 1L;
/**
* Load credential spec from this file. The file is read by the daemon, and must be present in the
* `CredentialSpecs` subdirectory in the docker data directory, which defaults to
* <code>C:\ProgramData\Docker\</code> on Windows.
*/
@JsonProperty("File")
private String file;
/**
* Load credential spec from this value in the Windows registry. The specified registry value must be
* located in:
* <code>
* HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Virtualization\Containers\CredentialSpecs
* </code>
*/
@JsonProperty("Registry")
private String registry;
public String getFile() {
return file;
}
public ContainerSpecPrivilegesCredential withFile(String file) {
this.file = file;
return this;
}
public String getRegistry() {
return registry;
}
public ContainerSpecPrivilegesCredential withRegistry(String registry) {
this.registry = registry;
return this;
}
}