com.pulumi.azure.appplatform.kotlin.inputs.SpringCloudGatewayApiMetadataArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.appplatform.kotlin.inputs
import com.pulumi.azure.appplatform.inputs.SpringCloudGatewayApiMetadataArgs.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
/**
*
* @property description Detailed description of the APIs available on the Gateway instance.
* @property documentationUrl Location of additional documentation for the APIs available on the Gateway instance.
* @property serverUrl Base URL that API consumers will use to access APIs on the Gateway instance.
* @property title Specifies the title describing the context of the APIs available on the Gateway instance.
* @property version Specifies the version of APIs available on this Gateway instance.
*/
public data class SpringCloudGatewayApiMetadataArgs(
public val description: Output? = null,
public val documentationUrl: Output? = null,
public val serverUrl: Output? = null,
public val title: Output? = null,
public val version: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.appplatform.inputs.SpringCloudGatewayApiMetadataArgs =
com.pulumi.azure.appplatform.inputs.SpringCloudGatewayApiMetadataArgs.builder()
.description(description?.applyValue({ args0 -> args0 }))
.documentationUrl(documentationUrl?.applyValue({ args0 -> args0 }))
.serverUrl(serverUrl?.applyValue({ args0 -> args0 }))
.title(title?.applyValue({ args0 -> args0 }))
.version(version?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SpringCloudGatewayApiMetadataArgs].
*/
@PulumiTagMarker
public class SpringCloudGatewayApiMetadataArgsBuilder internal constructor() {
private var description: Output? = null
private var documentationUrl: Output? = null
private var serverUrl: Output? = null
private var title: Output? = null
private var version: Output? = null
/**
* @param value Detailed description of the APIs available on the Gateway instance.
*/
@JvmName("moeuaucevrkfcaop")
public suspend fun description(`value`: Output) {
this.description = value
}
/**
* @param value Location of additional documentation for the APIs available on the Gateway instance.
*/
@JvmName("pnlfwmuhrfmfhmlg")
public suspend fun documentationUrl(`value`: Output) {
this.documentationUrl = value
}
/**
* @param value Base URL that API consumers will use to access APIs on the Gateway instance.
*/
@JvmName("xthamlwlyybyesoj")
public suspend fun serverUrl(`value`: Output) {
this.serverUrl = value
}
/**
* @param value Specifies the title describing the context of the APIs available on the Gateway instance.
*/
@JvmName("siaebmihuwqbfntu")
public suspend fun title(`value`: Output) {
this.title = value
}
/**
* @param value Specifies the version of APIs available on this Gateway instance.
*/
@JvmName("usgadyhamjpgkyvn")
public suspend fun version(`value`: Output) {
this.version = value
}
/**
* @param value Detailed description of the APIs available on the Gateway instance.
*/
@JvmName("tcwvwmjfynpgcdvm")
public suspend fun description(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.description = mapped
}
/**
* @param value Location of additional documentation for the APIs available on the Gateway instance.
*/
@JvmName("oxytpedvvaegdixl")
public suspend fun documentationUrl(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.documentationUrl = mapped
}
/**
* @param value Base URL that API consumers will use to access APIs on the Gateway instance.
*/
@JvmName("lmqjakeynwetxgft")
public suspend fun serverUrl(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.serverUrl = mapped
}
/**
* @param value Specifies the title describing the context of the APIs available on the Gateway instance.
*/
@JvmName("ttthhnrtsdtccffo")
public suspend fun title(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.title = mapped
}
/**
* @param value Specifies the version of APIs available on this Gateway instance.
*/
@JvmName("rppuldlhhkkribkt")
public suspend fun version(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.version = mapped
}
internal fun build(): SpringCloudGatewayApiMetadataArgs = SpringCloudGatewayApiMetadataArgs(
description = description,
documentationUrl = documentationUrl,
serverUrl = serverUrl,
title = title,
version = version,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy