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

com.pulumi.azurenative.workloads.outputs.WindowsConfigurationResponse Maven / Gradle / Ivy

There is a newer version: 2.82.0
Show newest version
// *** 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.workloads.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;

@CustomType
public final class WindowsConfigurationResponse {
    /**
     * @return The OS Type
     * Expected value is 'Windows'.
     * 
     */
    private String osType;

    private WindowsConfigurationResponse() {}
    /**
     * @return The OS Type
     * Expected value is 'Windows'.
     * 
     */
    public String osType() {
        return this.osType;
    }

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

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

        @CustomType.Setter
        public Builder osType(String osType) {
            if (osType == null) {
              throw new MissingRequiredPropertyException("WindowsConfigurationResponse", "osType");
            }
            this.osType = osType;
            return this;
        }
        public WindowsConfigurationResponse build() {
            final var _resultValue = new WindowsConfigurationResponse();
            _resultValue.osType = osType;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy