All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.compute.kotlin.inputs.VirtualMachineOsProfileLinuxConfigSshKeyArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.compute.kotlin.inputs

import com.pulumi.azure.compute.inputs.VirtualMachineOsProfileLinuxConfigSshKeyArgs.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
 * @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 VirtualMachineOsProfileLinuxConfigSshKeyArgs(
    public val keyData: Output,
    public val path: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.compute.inputs.VirtualMachineOsProfileLinuxConfigSshKeyArgs =
        com.pulumi.azure.compute.inputs.VirtualMachineOsProfileLinuxConfigSshKeyArgs.builder()
            .keyData(keyData.applyValue({ args0 -> args0 }))
            .path(path.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [VirtualMachineOsProfileLinuxConfigSshKeyArgs].
 */
@PulumiTagMarker
public class VirtualMachineOsProfileLinuxConfigSshKeyArgsBuilder 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
     */
    @JvmName("tawkgvexsmjxkdxk")
    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("negqniwsongnuaxc")
    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
     */
    @JvmName("uluxviltquyaytsq")
    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("okwplslrgaqmdimc")
    public suspend fun path(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.path = mapped
    }

    internal fun build(): VirtualMachineOsProfileLinuxConfigSshKeyArgs =
        VirtualMachineOsProfileLinuxConfigSshKeyArgs(
            keyData = keyData ?: throw PulumiNullFieldException("keyData"),
            path = path ?: throw PulumiNullFieldException("path"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy