AssetItemArgs

data class AssetItemArgs(val id: Output<String>? = null, val inputPorts: Output<Map<String, InputPortArgs>>? = null, val locationInfo: Output<BlobLocationArgs>, val metadata: Output<Map<String, String>>? = null, val name: Output<String>, val outputPorts: Output<Map<String, OutputPortArgs>>? = null, val parameters: Output<List<ModuleAssetParameterArgs>>? = null, val type: Output<Either<String, AssetType>>) : ConvertibleToJava<AssetItemArgs>

Information about an asset associated with the web service.

Constructors

Link copied to clipboard
constructor(id: Output<String>? = null, inputPorts: Output<Map<String, InputPortArgs>>? = null, locationInfo: Output<BlobLocationArgs>, metadata: Output<Map<String, String>>? = null, name: Output<String>, outputPorts: Output<Map<String, OutputPortArgs>>? = null, parameters: Output<List<ModuleAssetParameterArgs>>? = null, type: Output<Either<String, AssetType>>)

Properties

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

Asset's Id.

Link copied to clipboard
val inputPorts: Output<Map<String, InputPortArgs>>? = null

Information about the asset's input ports.

Link copied to clipboard

Access information for the asset.

Link copied to clipboard
val metadata: Output<Map<String, String>>? = null

If the asset is a custom module, this holds the module's metadata.

Link copied to clipboard
val name: Output<String>

Asset's friendly name.

Link copied to clipboard
val outputPorts: Output<Map<String, OutputPortArgs>>? = null

Information about the asset's output ports.

Link copied to clipboard

If the asset is a custom module, this holds the module's parameters.

Link copied to clipboard
val type: Output<Either<String, AssetType>>

Asset's type.

Functions

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