All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.compute.kotlin.outputs.GetOrchestratedVirtualMachineScaleSetNetworkInterfaceIpConfiguration.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.compute.kotlin.outputs

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property applicationGatewayBackendAddressPoolIds An array of references to backend address pools of application gateways.
 * @property applicationSecurityGroupIds The application security group IDs to use.
 * @property loadBalancerBackendAddressPoolIds An array of references to backend address pools of load balancers.
 * @property loadBalancerInboundNatRulesIds An array of references to inbound NAT pools for load balancers.
 * @property name The name of this Orchestrated Virtual Machine Scale Set.
 * @property primary If this ip_configuration is the primary one.
 * @property publicIpAddresses The virtual machines scale set IP Configuration's PublicIPAddress configuration. The `public_ip_address` is documented below.
 * @property subnetId The identifier of the subnet.
 * @property version The Internet Protocol Version of the public IP address.
 */
public data class GetOrchestratedVirtualMachineScaleSetNetworkInterfaceIpConfiguration(
    public val applicationGatewayBackendAddressPoolIds: List,
    public val applicationSecurityGroupIds: List,
    public val loadBalancerBackendAddressPoolIds: List,
    public val loadBalancerInboundNatRulesIds: List,
    public val name: String,
    public val primary: Boolean,
    public val publicIpAddresses: List,
    public val subnetId: String,
    public val version: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.compute.outputs.GetOrchestratedVirtualMachineScaleSetNetworkInterfaceIpConfiguration): GetOrchestratedVirtualMachineScaleSetNetworkInterfaceIpConfiguration =
            GetOrchestratedVirtualMachineScaleSetNetworkInterfaceIpConfiguration(
                applicationGatewayBackendAddressPoolIds = javaType.applicationGatewayBackendAddressPoolIds().map({ args0 ->
                    args0
                }),
                applicationSecurityGroupIds = javaType.applicationSecurityGroupIds().map({ args0 -> args0 }),
                loadBalancerBackendAddressPoolIds = javaType.loadBalancerBackendAddressPoolIds().map({ args0 ->
                    args0
                }),
                loadBalancerInboundNatRulesIds = javaType.loadBalancerInboundNatRulesIds().map({ args0 -> args0 }),
                name = javaType.name(),
                primary = javaType.primary(),
                publicIpAddresses = javaType.publicIpAddresses().map({ args0 ->
                    args0.let({ args0 ->
                        com.pulumi.azure.compute.kotlin.outputs.GetOrchestratedVirtualMachineScaleSetNetworkInterfaceIpConfigurationPublicIpAddress.Companion.toKotlin(args0)
                    })
                }),
                subnetId = javaType.subnetId(),
                version = javaType.version(),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy