![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.hybrid.kotlin.outputs.GetComputeMachineLocationData.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.hybrid.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 hybrid compute machine.
*/
public data class GetComputeMachineLocationData(
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.hybrid.outputs.GetComputeMachineLocationData): GetComputeMachineLocationData = GetComputeMachineLocationData(
city = javaType.city(),
countryOrRegion = javaType.countryOrRegion(),
district = javaType.district(),
name = javaType.name(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy