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

com.pulumi.azure.compute.kotlin.inputs.ScaleSetOsProfileWindowsConfigWinrmArgs.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.ScaleSetOsProfileWindowsConfigWinrmArgs.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 certificateUrl Specifies URL of the certificate with which new Virtual Machines is provisioned.
 * @property protocol Specifies the protocol of listener
 */
public data class ScaleSetOsProfileWindowsConfigWinrmArgs(
    public val certificateUrl: Output? = null,
    public val protocol: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.azure.compute.inputs.ScaleSetOsProfileWindowsConfigWinrmArgs =
        com.pulumi.azure.compute.inputs.ScaleSetOsProfileWindowsConfigWinrmArgs.builder()
            .certificateUrl(certificateUrl?.applyValue({ args0 -> args0 }))
            .protocol(protocol.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ScaleSetOsProfileWindowsConfigWinrmArgs].
 */
@PulumiTagMarker
public class ScaleSetOsProfileWindowsConfigWinrmArgsBuilder internal constructor() {
    private var certificateUrl: Output? = null

    private var protocol: Output? = null

    /**
     * @param value Specifies URL of the certificate with which new Virtual Machines is provisioned.
     */
    @JvmName("dsknlwxthciccruc")
    public suspend fun certificateUrl(`value`: Output) {
        this.certificateUrl = value
    }

    /**
     * @param value Specifies the protocol of listener
     */
    @JvmName("xawgertoulrwvqcy")
    public suspend fun protocol(`value`: Output) {
        this.protocol = value
    }

    /**
     * @param value Specifies URL of the certificate with which new Virtual Machines is provisioned.
     */
    @JvmName("vyjspwbltfbuudpr")
    public suspend fun certificateUrl(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.certificateUrl = mapped
    }

    /**
     * @param value Specifies the protocol of listener
     */
    @JvmName("gxktyhoufqiinyay")
    public suspend fun protocol(`value`: String) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.protocol = mapped
    }

    internal fun build(): ScaleSetOsProfileWindowsConfigWinrmArgs =
        ScaleSetOsProfileWindowsConfigWinrmArgs(
            certificateUrl = certificateUrl,
            protocol = protocol ?: throw PulumiNullFieldException("protocol"),
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy