Graph Package Args
data class GraphPackageArgs(val edges: Output<List<GraphEdgeArgs>>? = null, val graphParameters: Output<Map<String, GraphParameterArgs>>? = null, val nodes: Output<Map<String, GraphNodeArgs>>? = null) : ConvertibleToJava<GraphPackageArgs>
Defines the graph of modules making up the machine learning solution.
Constructors
Link copied to clipboard
constructor(edges: Output<List<GraphEdgeArgs>>? = null, graphParameters: Output<Map<String, GraphParameterArgs>>? = null, nodes: Output<Map<String, GraphNodeArgs>>? = null)
Properties
Link copied to clipboard
The list of edges making up the graph.
Link copied to clipboard
The collection of global parameters for the graph, given as a global parameter name to GraphParameter map. Each parameter here has a 1:1 match with the global parameters values map declared at the WebServiceProperties level.
Link copied to clipboard
The set of nodes making up the graph, provided as a nodeId to GraphNode map