com.pulumi.azurenative.machinelearningservices.inputs.AllNodesArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
/**
* All nodes means the service will be running on all of the nodes of the job
*
*/
public final class AllNodesArgs extends com.pulumi.resources.ResourceArgs {
public static final AllNodesArgs Empty = new AllNodesArgs();
/**
* The enumerated types for the nodes value
* Expected value is 'All'.
*
*/
@Import(name="nodesValueType", required=true)
private Output nodesValueType;
/**
* @return The enumerated types for the nodes value
* Expected value is 'All'.
*
*/
public Output nodesValueType() {
return this.nodesValueType;
}
private AllNodesArgs() {}
private AllNodesArgs(AllNodesArgs $) {
this.nodesValueType = $.nodesValueType;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AllNodesArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private AllNodesArgs $;
public Builder() {
$ = new AllNodesArgs();
}
public Builder(AllNodesArgs defaults) {
$ = new AllNodesArgs(Objects.requireNonNull(defaults));
}
/**
* @param nodesValueType The enumerated types for the nodes value
* Expected value is 'All'.
*
* @return builder
*
*/
public Builder nodesValueType(Output nodesValueType) {
$.nodesValueType = nodesValueType;
return this;
}
/**
* @param nodesValueType The enumerated types for the nodes value
* Expected value is 'All'.
*
* @return builder
*
*/
public Builder nodesValueType(String nodesValueType) {
return nodesValueType(Output.of(nodesValueType));
}
public AllNodesArgs build() {
$.nodesValueType = Codegen.stringProp("nodesValueType").output().arg($.nodesValueType).require();
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy