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

com.pulumi.azurenative.machinelearningservices.outputs.BayesianSamplingAlgorithmResponse 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.outputs;

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

@CustomType
public final class BayesianSamplingAlgorithmResponse {
    /**
     * @return
     * Expected value is 'Bayesian'.
     * 
     */
    private String samplingAlgorithmType;

    private BayesianSamplingAlgorithmResponse() {}
    /**
     * @return
     * Expected value is 'Bayesian'.
     * 
     */
    public String samplingAlgorithmType() {
        return this.samplingAlgorithmType;
    }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy