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

com.pulumi.junipermist.org.outputs.NetworktemplateRemoteSyslogFileContent 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.junipermist.org.outputs;

import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class NetworktemplateRemoteSyslogFileContent {
    /**
     * @return enum: `any`, `authorization`, `change-log`, `config`, `conflict-log`, `daemon`, `dfc`, `external`, `firewall`, `ftp`, `interactive-commands`, `kernel`, `ntp`, `pfe`, `security`, `user`
     * 
     */
    private @Nullable String facility;
    /**
     * @return enum: `alert`, `any`, `critical`, `emergency`, `error`, `info`, `notice`, `warning`
     * 
     */
    private @Nullable String severity;

    private NetworktemplateRemoteSyslogFileContent() {}
    /**
     * @return enum: `any`, `authorization`, `change-log`, `config`, `conflict-log`, `daemon`, `dfc`, `external`, `firewall`, `ftp`, `interactive-commands`, `kernel`, `ntp`, `pfe`, `security`, `user`
     * 
     */
    public Optional facility() {
        return Optional.ofNullable(this.facility);
    }
    /**
     * @return enum: `alert`, `any`, `critical`, `emergency`, `error`, `info`, `notice`, `warning`
     * 
     */
    public Optional severity() {
        return Optional.ofNullable(this.severity);
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(NetworktemplateRemoteSyslogFileContent defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String facility;
        private @Nullable String severity;
        public Builder() {}
        public Builder(NetworktemplateRemoteSyslogFileContent defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.facility = defaults.facility;
    	      this.severity = defaults.severity;
        }

        @CustomType.Setter
        public Builder facility(@Nullable String facility) {

            this.facility = facility;
            return this;
        }
        @CustomType.Setter
        public Builder severity(@Nullable String severity) {

            this.severity = severity;
            return this;
        }
        public NetworktemplateRemoteSyslogFileContent build() {
            final var _resultValue = new NetworktemplateRemoteSyslogFileContent();
            _resultValue.facility = facility;
            _resultValue.severity = severity;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy