ProductArgs

data class ProductArgs(val genericUri: Output<String>? = null, val id: Output<String>? = null, val name: Output<String>? = null) : ConvertibleToJava<ProductArgs>

Product contains information about a product and how to uniquely identify it.

Constructors

Link copied to clipboard
fun ProductArgs(genericUri: Output<String>? = null, id: Output<String>? = null, name: Output<String>? = null)

Functions

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

Properties

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

Contains a URI which is vendor-specific. Example: The artifact repository URL of an image.

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

Token that identifies a product so that it can be referred to from other parts in the document. There is no predefined format as long as it uniquely identifies a group in the context of the current document.

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

Name of the product.