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

com.github.dockerjava.api.model.ContainerSpecPrivilegesCredential Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
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
     * 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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy