![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.insights.kotlin.inputs.WorkbookTemplateGalleryArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.insights.kotlin.inputs
import com.pulumi.azurenative.insights.inputs.WorkbookTemplateGalleryArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Gallery information for a workbook template.
* @property category Category for the gallery.
* @property name Name of the workbook template in the gallery.
* @property order Order of the template within the gallery.
* @property resourceType Azure resource type supported by the gallery.
* @property type Type of workbook supported by the workbook template.
*/
public data class WorkbookTemplateGalleryArgs(
public val category: Output? = null,
public val name: Output? = null,
public val order: Output? = null,
public val resourceType: Output? = null,
public val type: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.insights.inputs.WorkbookTemplateGalleryArgs =
com.pulumi.azurenative.insights.inputs.WorkbookTemplateGalleryArgs.builder()
.category(category?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 }))
.order(order?.applyValue({ args0 -> args0 }))
.resourceType(resourceType?.applyValue({ args0 -> args0 }))
.type(type?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [WorkbookTemplateGalleryArgs].
*/
@PulumiTagMarker
public class WorkbookTemplateGalleryArgsBuilder internal constructor() {
private var category: Output? = null
private var name: Output? = null
private var order: Output? = null
private var resourceType: Output? = null
private var type: Output? = null
/**
* @param value Category for the gallery.
*/
@JvmName("vyyylnrentdtmnbk")
public suspend fun category(`value`: Output) {
this.category = value
}
/**
* @param value Name of the workbook template in the gallery.
*/
@JvmName("pnljkvnbdybubvik")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value Order of the template within the gallery.
*/
@JvmName("xfbhqjxeeuqirevs")
public suspend fun order(`value`: Output) {
this.order = value
}
/**
* @param value Azure resource type supported by the gallery.
*/
@JvmName("ajbetrhmmvyxoubv")
public suspend fun resourceType(`value`: Output) {
this.resourceType = value
}
/**
* @param value Type of workbook supported by the workbook template.
*/
@JvmName("hejxhnqioopwocao")
public suspend fun type(`value`: Output) {
this.type = value
}
/**
* @param value Category for the gallery.
*/
@JvmName("oiwisalwhbvrjjxb")
public suspend fun category(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.category = mapped
}
/**
* @param value Name of the workbook template in the gallery.
*/
@JvmName("gwuthxdandkabenx")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value Order of the template within the gallery.
*/
@JvmName("nmywaaxmdxtrwmgk")
public suspend fun order(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.order = mapped
}
/**
* @param value Azure resource type supported by the gallery.
*/
@JvmName("nymnkuvlwndkmrud")
public suspend fun resourceType(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.resourceType = mapped
}
/**
* @param value Type of workbook supported by the workbook template.
*/
@JvmName("kfuimodyqrjlqncc")
public suspend fun type(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.type = mapped
}
internal fun build(): WorkbookTemplateGalleryArgs = WorkbookTemplateGalleryArgs(
category = category,
name = name,
order = order,
resourceType = resourceType,
type = type,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy