NodeSpecArgs

data class NodeSpecArgs(val node: Output<NodeArgs>, val nodeId: Output<String>? = null, val parent: Output<String>) : ConvertibleToJava<NodeSpecArgs>

Details of the TPU node(s) being requested. Users can request either a single node or multiple nodes. NodeSpec provides the specification for node(s) to be created.

Constructors

Link copied to clipboard
constructor(node: Output<NodeArgs>, nodeId: Output<String>? = null, parent: Output<String>)

Properties

Link copied to clipboard
val node: Output<NodeArgs>

The node.

Link copied to clipboard
val nodeId: Output<String>? = null

The unqualified resource name. Should follow the ^[A-Za-z0-9_&#46;~+%-]+$ regex format. This is only specified when requesting a single node. In case of multi-node requests, multi_node_params must be populated instead. It's an error to specify both node_id and multi_node_params.

Link copied to clipboard
val parent: Output<String>

The parent resource name.

Functions

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