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

com.pulumi.azure.apimanagement.kotlin.outputs.ApiOperationTemplateParameterExample.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.14.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.apimanagement.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @property description A long description for this example.
 * @property externalValue A URL that points to the literal example.
 * @property name The name of this example.
 * @property summary A short description for this example.
 * @property value The example of the representation.
 */
public data class ApiOperationTemplateParameterExample(
    public val description: String? = null,
    public val externalValue: String? = null,
    public val name: String,
    public val summary: String? = null,
    public val `value`: String? = null,
) {
    public companion object {
        public
        fun toKotlin(javaType: com.pulumi.azure.apimanagement.outputs.ApiOperationTemplateParameterExample):
            ApiOperationTemplateParameterExample = ApiOperationTemplateParameterExample(
            description = javaType.description().map({ args0 -> args0 }).orElse(null),
            externalValue = javaType.externalValue().map({ args0 -> args0 }).orElse(null),
            name = javaType.name(),
            summary = javaType.summary().map({ args0 -> args0 }).orElse(null),
            `value` = javaType.`value`().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy