GraphPackageArgs

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
val edges: Output<List<GraphEdgeArgs>>? = null

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
val nodes: Output<Map<String, GraphNodeArgs>>? = null

The set of nodes making up the graph, provided as a nodeId to GraphNode map

Functions

Link copied to clipboard
open override fun toJava(): GraphPackageArgs