SolutionPlanArgs

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

Plan for solution object supported by the OperationsManagement resource provider.

Constructors

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

Properties

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

name of the solution to be created. For Microsoft published solution it should be in the format of solutionType(workspaceName). SolutionType part is case sensitive. For third party solution, it can be anything.

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

name of the solution to enabled/add. For Microsoft published gallery solution it should be in the format of OMSGallery/. This is case sensitive

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

promotionCode, Not really used now, can you left as empty

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

Publisher name. For gallery solution, it is Microsoft.

Functions

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