com.pulumi.azure.appplatform.kotlin.outputs.SpringCloudGatewayApiMetadata.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.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @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 SpringCloudGatewayApiMetadata(
public val description: String? = null,
public val documentationUrl: String? = null,
public val serverUrl: String? = null,
public val title: String? = null,
public val version: String? = null,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.appplatform.outputs.SpringCloudGatewayApiMetadata):
SpringCloudGatewayApiMetadata = SpringCloudGatewayApiMetadata(
description = javaType.description().map({ args0 -> args0 }).orElse(null),
documentationUrl = javaType.documentationUrl().map({ args0 -> args0 }).orElse(null),
serverUrl = javaType.serverUrl().map({ args0 -> args0 }).orElse(null),
title = javaType.title().map({ args0 -> args0 }).orElse(null),
version = javaType.version().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy