
com.pulumi.azurenative.machinelearning.inputs.GraphParameterLinkArgs 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.machinelearning.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
/**
* Association link for a graph global parameter to a node in the graph.
*
*/
public final class GraphParameterLinkArgs extends com.pulumi.resources.ResourceArgs {
public static final GraphParameterLinkArgs Empty = new GraphParameterLinkArgs();
/**
* The graph node's identifier
*
*/
@Import(name="nodeId", required=true)
private Output nodeId;
/**
* @return The graph node's identifier
*
*/
public Output nodeId() {
return this.nodeId;
}
/**
* The identifier of the node parameter that the global parameter maps to.
*
*/
@Import(name="parameterKey", required=true)
private Output parameterKey;
/**
* @return The identifier of the node parameter that the global parameter maps to.
*
*/
public Output parameterKey() {
return this.parameterKey;
}
private GraphParameterLinkArgs() {}
private GraphParameterLinkArgs(GraphParameterLinkArgs $) {
this.nodeId = $.nodeId;
this.parameterKey = $.parameterKey;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GraphParameterLinkArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GraphParameterLinkArgs $;
public Builder() {
$ = new GraphParameterLinkArgs();
}
public Builder(GraphParameterLinkArgs defaults) {
$ = new GraphParameterLinkArgs(Objects.requireNonNull(defaults));
}
/**
* @param nodeId The graph node's identifier
*
* @return builder
*
*/
public Builder nodeId(Output nodeId) {
$.nodeId = nodeId;
return this;
}
/**
* @param nodeId The graph node's identifier
*
* @return builder
*
*/
public Builder nodeId(String nodeId) {
return nodeId(Output.of(nodeId));
}
/**
* @param parameterKey The identifier of the node parameter that the global parameter maps to.
*
* @return builder
*
*/
public Builder parameterKey(Output parameterKey) {
$.parameterKey = parameterKey;
return this;
}
/**
* @param parameterKey The identifier of the node parameter that the global parameter maps to.
*
* @return builder
*
*/
public Builder parameterKey(String parameterKey) {
return parameterKey(Output.of(parameterKey));
}
public GraphParameterLinkArgs build() {
if ($.nodeId == null) {
throw new MissingRequiredPropertyException("GraphParameterLinkArgs", "nodeId");
}
if ($.parameterKey == null) {
throw new MissingRequiredPropertyException("GraphParameterLinkArgs", "parameterKey");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy