
com.pulumi.azurenative.machinelearningservices.enums.LogVerbosity Maven / Gradle / Ivy
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.machinelearningservices.enums;
import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;
/**
* Log verbosity for the job.
*
*/
@EnumType
public enum LogVerbosity {
/**
* No logs emitted.
*
*/
NotSet("NotSet"),
/**
* Debug and above log statements logged.
*
*/
Debug("Debug"),
/**
* Info and above log statements logged.
*
*/
Info("Info"),
/**
* Warning and above log statements logged.
*
*/
Warning("Warning"),
/**
* Error and above log statements logged.
*
*/
Error("Error"),
/**
* Only critical statements logged.
*
*/
Critical("Critical");
private final String value;
LogVerbosity(String value) {
this.value = Objects.requireNonNull(value);
}
@EnumType.Converter
public String getValue() {
return this.value;
}
@Override
public java.lang.String toString() {
return new StringJoiner(", ", "LogVerbosity[", "]")
.add("value='" + this.value + "'")
.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy