
com.pulumi.azurenative.securityinsights.kotlin.inputs.InstructionStepArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.securityinsights.kotlin.inputs
import com.pulumi.azurenative.securityinsights.inputs.InstructionStepArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Instruction steps to enable the connector.
* @property description Gets or sets the instruction step description.
* @property innerSteps Gets or sets the inner instruction steps details.
* Foe Example: instruction step 1 might contain inner instruction steps: [instruction step 1.1, instruction step 1.2].
* @property instructions Gets or sets the instruction step details.
* @property title Gets or sets the instruction step title.
*/
public data class InstructionStepArgs(
public val description: Output? = null,
public val innerSteps: Output>? = null,
public val instructions: Output>? = null,
public val title: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.securityinsights.inputs.InstructionStepArgs =
com.pulumi.azurenative.securityinsights.inputs.InstructionStepArgs.builder()
.description(description?.applyValue({ args0 -> args0 }))
.innerSteps(
innerSteps?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.instructions(
instructions?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.title(title?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [InstructionStepArgs].
*/
@PulumiTagMarker
public class InstructionStepArgsBuilder internal constructor() {
private var description: Output? = null
private var innerSteps: Output>? = null
private var instructions: Output>? = null
private var title: Output? = null
/**
* @param value Gets or sets the instruction step description.
*/
@JvmName("apajdsmddvywbmfj")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value Gets or sets the inner instruction steps details.
* Foe Example: instruction step 1 might contain inner instruction steps: [instruction step 1.1, instruction step 1.2].
*/
@JvmName("bxkcecwbirpqilqf")
public suspend fun innerSteps(`value`: Output>) {
this.innerSteps = value
}
@JvmName("vgroecgcryahjtgh")
public suspend fun innerSteps(vararg values: Output) {
this.innerSteps = Output.all(values.asList())
}
/**
* @param values Gets or sets the inner instruction steps details.
* Foe Example: instruction step 1 might contain inner instruction steps: [instruction step 1.1, instruction step 1.2].
*/
@JvmName("kpbwmwdfsjrcjlhd")
public suspend fun innerSteps(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy