com.github.dockerjava.api.model.ContainerSpecPrivilegesCredential Maven / Gradle / Ivy
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 extends DockerObject 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
* C:\ProgramData\Docker\
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:
*
* HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Virtualization\Containers\CredentialSpecs
*
*/
@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;
}
}