
com.pulumi.azure.workloadssap.kotlin.outputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerLoadBalancer.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.workloadssap.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property backendPoolNames A list of Backend Pool names for the Load Balancer. Changing this forces a new resource to be created.
* @property frontendIpConfigurationNames A list of Frontend IP Configuration names. Changing this forces a new resource to be created.
* @property healthProbeNames A list of Health Probe names. Changing this forces a new resource to be created.
* @property name The full resource name of the Load Balancer. Changing this forces a new resource to be created.
*/
public data class
ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerLoadBalancer(
public val backendPoolNames: List? = null,
public val frontendIpConfigurationNames: List? = null,
public val healthProbeNames: List? = null,
public val name: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.workloadssap.outputs.ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerLoadBalancer): ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerLoadBalancer =
ThreeTierVirtualInstanceThreeTierConfigurationResourceNamesCentralServerLoadBalancer(
backendPoolNames = javaType.backendPoolNames().map({ args0 -> args0 }),
frontendIpConfigurationNames = javaType.frontendIpConfigurationNames().map({ args0 -> args0 }),
healthProbeNames = javaType.healthProbeNames().map({ args0 -> args0 }),
name = javaType.name().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy