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

ml.comet.experiment.impl.rest.SetSystemDetailsRequest Maven / Gradle / Ivy

There is a newer version: 1.1.14
Show newest version
package ml.comet.experiment.impl.rest;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.JsonNode;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.util.List;

@Data
@NoArgsConstructor
@AllArgsConstructor
@JsonIgnoreProperties(ignoreUnknown = true)
@JsonInclude(JsonInclude.Include.NON_NULL)
public class SetSystemDetailsRequest {
    private String experimentKey;
    private String user;
    private String pythonVersion;
    private String pythonVersionVerbose;
    private Integer pid;
    private String osType;
    private String os;
    private String osRelease;
    private String machine;
    private String processor;
    private String ip;
    private String hostname;
    private JsonNode env;
    private List gpuStaticInfoList;
    private List logAdditionalSystemInfoList;
    private List networkInterfaceIps;
    private List command;
    private String executable;
    private List osPackages;
    private List installedPackages;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy