
com.pulumi.azurenative.apimanagement.kotlin.outputs.BackendConfigurationResponse.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.apimanagement.kotlin.outputs
import kotlin.Suppress
/**
* Information regarding how the gateway should integrate with backend systems.
* @property subnet The default hostname of the data-plane gateway to which requests can be sent.
*/
public data class BackendConfigurationResponse(
public val subnet: BackendSubnetConfigurationResponse? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azurenative.apimanagement.outputs.BackendConfigurationResponse): BackendConfigurationResponse = BackendConfigurationResponse(
subnet = javaType.subnet().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azurenative.apimanagement.kotlin.outputs.BackendSubnetConfigurationResponse.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy