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

com.pulumi.azure.compute.kotlin.outputs.GetVirtualMachineScaleSetNetworkInterfaceIpConfigurationPublicIpAddress.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.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property domainNameLabel The domain name label for the DNS settings.
 * @property idleTimeoutInMinutes The idle timeout in minutes.
 * @property ipTags A list of `ip_tag` blocks as defined below.
 * @property name The name of this Virtual Machine Scale Set.
 * @property publicIpPrefixId The ID of the public IP prefix.
 * @property version The Internet Protocol Version of the public IP address.
 */
public data class GetVirtualMachineScaleSetNetworkInterfaceIpConfigurationPublicIpAddress(
    public val domainNameLabel: String,
    public val idleTimeoutInMinutes: Int,
    public val ipTags: List,
    public val name: String,
    public val publicIpPrefixId: String,
    public val version: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.compute.outputs.GetVirtualMachineScaleSetNetworkInterfaceIpConfigurationPublicIpAddress): GetVirtualMachineScaleSetNetworkInterfaceIpConfigurationPublicIpAddress =
            GetVirtualMachineScaleSetNetworkInterfaceIpConfigurationPublicIpAddress(
                domainNameLabel = javaType.domainNameLabel(),
                idleTimeoutInMinutes = javaType.idleTimeoutInMinutes(),
                ipTags = javaType.ipTags().map({ args0 ->
                    args0.let({ args0 ->
                        com.pulumi.azure.compute.kotlin.outputs.GetVirtualMachineScaleSetNetworkInterfaceIpConfigurationPublicIpAddressIpTag.Companion.toKotlin(args0)
                    })
                }),
                name = javaType.name(),
                publicIpPrefixId = javaType.publicIpPrefixId(),
                version = javaType.version(),
            )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy