com.pulumi.azure.arcmachine.kotlin.outputs.GetLocationData.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.arcmachine.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property city The city or locality where the resource is located.
* @property countryOrRegion The country or region where the resource is located.
* @property district The district, state, or province where the resource is located.
* @property name The name of this Azure Arc machine.
*/
public data class GetLocationData(
public val city: String,
public val countryOrRegion: String,
public val district: String,
public val name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.arcmachine.outputs.GetLocationData): GetLocationData = GetLocationData(
city = javaType.city(),
countryOrRegion = javaType.countryOrRegion(),
district = javaType.district(),
name = javaType.name(),
)
}
}