PurchasePlanArgs

data class PurchasePlanArgs(val name: Output<String>, val product: Output<String>, val promotionCode: Output<String>? = null, val publisher: Output<String>) : ConvertibleToJava<PurchasePlanArgs>

Used for establishing the purchase context of any 3rd Party artifact through MarketPlace.

Constructors

Link copied to clipboard
constructor(name: Output<String>, product: Output<String>, promotionCode: Output<String>? = null, publisher: Output<String>)

Properties

Link copied to clipboard
val name: Output<String>

The plan ID.

Link copied to clipboard
val product: Output<String>

Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.

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

The Offer Promotion Code.

Link copied to clipboard
val publisher: Output<String>

The publisher ID.

Functions

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