![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.apimanagement.kotlin.outputs.GetGatewayLocationData.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
/**
*
* @property city The city or locality where the resource is located.
* @property district The district, state, or province where the resource is located.
* @property name The name of the API Management Gateway.
* @property region
*/
public data class GetGatewayLocationData(
public val city: String,
public val district: String,
public val name: String,
public val region: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.apimanagement.outputs.GetGatewayLocationData): GetGatewayLocationData = GetGatewayLocationData(
city = javaType.city(),
district = javaType.district(),
name = javaType.name(),
region = javaType.region(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy