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

com.pulumi.azurenative.machinelearningservices.outputs.AllNodesResponse Maven / Gradle / Ivy

There is a newer version: 2.89.2
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.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 AllNodesResponse {
    /**
     * @return The enumerated types for the nodes value
     * Expected value is 'All'.
     * 
     */
    private String nodesValueType;

    private AllNodesResponse() {}
    /**
     * @return The enumerated types for the nodes value
     * Expected value is 'All'.
     * 
     */
    public String nodesValueType() {
        return this.nodesValueType;
    }

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy