
com.pulumi.azure.compute.kotlin.inputs.ScaleSetOsProfileLinuxConfigSshKeyArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.compute.kotlin.inputs
import com.pulumi.azure.compute.inputs.ScaleSetOsProfileLinuxConfigSshKeyArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property keyData The Public SSH Key which should be written to the `path` defined above.
* > **Note:** Azure only supports RSA SSH2 key signatures of at least 2048 bits in length
* > **NOTE:** Rather than defining this in-line you can source this from a local file using the `file` function - for example `key_data = file("~/.ssh/id_rsa.pub")`.
* @property path The path of the destination file on the virtual machine
* > **NOTE:** Due to a limitation in the Azure VM Agent the only allowed `path` is `/home/{username}/.ssh/authorized_keys`.
*/
public data class ScaleSetOsProfileLinuxConfigSshKeyArgs(
public val keyData: Output? = null,
public val path: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.compute.inputs.ScaleSetOsProfileLinuxConfigSshKeyArgs =
com.pulumi.azure.compute.inputs.ScaleSetOsProfileLinuxConfigSshKeyArgs.builder()
.keyData(keyData?.applyValue({ args0 -> args0 }))
.path(path.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ScaleSetOsProfileLinuxConfigSshKeyArgs].
*/
@PulumiTagMarker
public class ScaleSetOsProfileLinuxConfigSshKeyArgsBuilder internal constructor() {
private var keyData: Output? = null
private var path: Output? = null
/**
* @param value The Public SSH Key which should be written to the `path` defined above.
* > **Note:** Azure only supports RSA SSH2 key signatures of at least 2048 bits in length
* > **NOTE:** Rather than defining this in-line you can source this from a local file using the `file` function - for example `key_data = file("~/.ssh/id_rsa.pub")`.
*/
@JvmName("mhaljikhbrxtkcge")
public suspend fun keyData(`value`: Output) {
this.keyData = value
}
/**
* @param value The path of the destination file on the virtual machine
* > **NOTE:** Due to a limitation in the Azure VM Agent the only allowed `path` is `/home/{username}/.ssh/authorized_keys`.
*/
@JvmName("rplqfafcvilajssh")
public suspend fun path(`value`: Output) {
this.path = value
}
/**
* @param value The Public SSH Key which should be written to the `path` defined above.
* > **Note:** Azure only supports RSA SSH2 key signatures of at least 2048 bits in length
* > **NOTE:** Rather than defining this in-line you can source this from a local file using the `file` function - for example `key_data = file("~/.ssh/id_rsa.pub")`.
*/
@JvmName("owjkxxsyaghqvfqd")
public suspend fun keyData(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.keyData = mapped
}
/**
* @param value The path of the destination file on the virtual machine
* > **NOTE:** Due to a limitation in the Azure VM Agent the only allowed `path` is `/home/{username}/.ssh/authorized_keys`.
*/
@JvmName("ocfwqjvxomtvxgfd")
public suspend fun path(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.path = mapped
}
internal fun build(): ScaleSetOsProfileLinuxConfigSshKeyArgs =
ScaleSetOsProfileLinuxConfigSshKeyArgs(
keyData = keyData,
path = path ?: throw PulumiNullFieldException("path"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy