![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.web.kotlin.inputs.ApiDefinitionInfoArgs.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.web.kotlin.inputs
import com.pulumi.azurenative.web.inputs.ApiDefinitionInfoArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Information about the formal API definition for the app.
* @property url The URL of the API definition.
*/
public data class ApiDefinitionInfoArgs(
public val url: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.web.inputs.ApiDefinitionInfoArgs =
com.pulumi.azurenative.web.inputs.ApiDefinitionInfoArgs.builder()
.url(url?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ApiDefinitionInfoArgs].
*/
@PulumiTagMarker
public class ApiDefinitionInfoArgsBuilder internal constructor() {
private var url: Output? = null
/**
* @param value The URL of the API definition.
*/
@JvmName("jxpnsdxmhkvxboxd")
public suspend fun url(`value`: Output) {
this.url = value
}
/**
* @param value The URL of the API definition.
*/
@JvmName("qqlsrajsejjiadde")
public suspend fun url(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.url = mapped
}
internal fun build(): ApiDefinitionInfoArgs = ApiDefinitionInfoArgs(
url = url,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy