
com.pulumi.azurenative.azurefleet.kotlin.outputs.WinRMConfigurationResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.azurefleet.kotlin.outputs
import kotlin.Suppress
import kotlin.collections.List
/**
* Describes Windows Remote Management configuration of the VM
* @property listeners The list of Windows Remote Management listeners
*/
public data class WinRMConfigurationResponse(
public val listeners: List? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.azurefleet.outputs.WinRMConfigurationResponse): WinRMConfigurationResponse = WinRMConfigurationResponse(
listeners = javaType.listeners().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.azurefleet.kotlin.outputs.WinRMListenerResponse.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy