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

com.github.dockerjava.api.model.LogConfig 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.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonValue;
import lombok.EqualsAndHashCode;
import lombok.ToString;

import javax.annotation.CheckForNull;
import java.io.Serializable;
import java.util.Map;

/**
 * Log driver to use for a created/running container. The available types are:
 * 

* json-file (default) syslog journald none *

* If a driver is specified that is NOT supported,docker will default to null. If configs are supplied that are not supported by the type * docker will ignore them. In most cases setting the config option to null will suffice. Consult the docker remote API for a more detailed * and up-to-date explanation of the available types and their options. */ @EqualsAndHashCode @ToString public class LogConfig implements Serializable { private static final long serialVersionUID = 1L; @JsonProperty("Type") public LoggingType type = null; @JsonProperty("Config") public Map config; public LogConfig(LoggingType type, Map config) { this.type = type; this.config = config; } public LogConfig(LoggingType type) { this(type, null); } public LogConfig() { } public LoggingType getType() { return type; } public LogConfig setType(LoggingType type) { this.type = type; return this; } @JsonIgnore public Map getConfig() { return config; } @JsonIgnore public LogConfig setConfig(Map config) { this.config = config; return this; } public enum LoggingType { NONE("none"), DEFAULT("json-file"), LOCAL("local"), ETWLOGS("etwlogs"), JSON_FILE("json-file"), SYSLOG("syslog"), JOURNALD("journald"), GELF("gelf"), FLUENTD("fluentd"), AWSLOGS("awslogs"), DB("db"), // Synology specific driver SPLUNK("splunk"), GCPLOGS("gcplogs"); private String type; LoggingType(String type) { this.type = type; } @JsonValue public String getType() { return type; } @JsonCreator @CheckForNull public static LoggingType fromValue(String text) { for (LoggingType b : LoggingType.values()) { if (String.valueOf(b.type).equals(text)) { return b; } } return null; } @Override public String toString() { return String.valueOf(type); } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy