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

com.pulumi.azurenative.devtestlab.outputs.LinuxOsInfoResponse 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.devtestlab.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 LinuxOsInfoResponse {
    /**
     * @return The state of the Linux OS (i.e. NonDeprovisioned, DeprovisionRequested, DeprovisionApplied).
     * 
     */
    private @Nullable String linuxOsState;

    private LinuxOsInfoResponse() {}
    /**
     * @return The state of the Linux OS (i.e. NonDeprovisioned, DeprovisionRequested, DeprovisionApplied).
     * 
     */
    public Optional linuxOsState() {
        return Optional.ofNullable(this.linuxOsState);
    }

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

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

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

            this.linuxOsState = linuxOsState;
            return this;
        }
        public LinuxOsInfoResponse build() {
            final var _resultValue = new LinuxOsInfoResponse();
            _resultValue.linuxOsState = linuxOsState;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy