com.pulumi.azure.apimanagement.kotlin.outputs.GetApiVersionSetResult.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.apimanagement.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
* A collection of values returned by getApiVersionSet.
* @property apiManagementName
* @property description The description of API Version Set.
* @property displayName The display name of this API Version Set.
* @property id The provider-assigned unique ID for this managed resource.
* @property name
* @property resourceGroupName
* @property versionHeaderName The name of the Header which should be read from Inbound Requests which defines the API Version.
* @property versionQueryName The name of the Query String which should be read from Inbound Requests which defines the API Version.
* @property versioningScheme
*/
public data class GetApiVersionSetResult(
public val apiManagementName: String,
public val description: String,
public val displayName: String,
public val id: String,
public val name: String,
public val resourceGroupName: String,
public val versionHeaderName: String,
public val versionQueryName: String,
public val versioningScheme: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.apimanagement.outputs.GetApiVersionSetResult):
GetApiVersionSetResult = GetApiVersionSetResult(
apiManagementName = javaType.apiManagementName(),
description = javaType.description(),
displayName = javaType.displayName(),
id = javaType.id(),
name = javaType.name(),
resourceGroupName = javaType.resourceGroupName(),
versionHeaderName = javaType.versionHeaderName(),
versionQueryName = javaType.versionQueryName(),
versioningScheme = javaType.versioningScheme(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy