PlanArgs

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

Plan for the resource.

Constructors

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

Properties

Link copied to clipboard
val name: Output<String>

A user defined name of the 3rd Party Artifact that is being procured.

Link copied to clipboard
val product: Output<String>

The 3rd Party artifact that is being procured. E.g. NewRelic. Product maps to the OfferID specified for the artifact at the time of Data Market onboarding.

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

A publisher provided promotion code as provisioned in Data Market for the said product/artifact.

Link copied to clipboard
val publisher: Output<String>

The publisher of the 3rd Party Artifact that is being bought. E.g. NewRelic

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

The version of the desired product/artifact.

Functions

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