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

com.pulumi.azure.privatelink.kotlin.outputs.GetServiceNatIpConfiguration.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.privatelink.kotlin.outputs

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress

/**
 *
 * @property name The name of the private link service.
 * @property primary Value that indicates if the IP configuration is the primary configuration or not.
 * @property privateIpAddress The private IP address of the NAT IP configuration.
 * @property privateIpAddressVersion The version of the IP Protocol.
 * @property subnetId The ID of the subnet to be used by the service.
 */
public data class GetServiceNatIpConfiguration(
    public val name: String,
    public val primary: Boolean,
    public val privateIpAddress: String,
    public val privateIpAddressVersion: String,
    public val subnetId: String,
) {
    public companion object {
        public
        fun toKotlin(javaType: com.pulumi.azure.privatelink.outputs.GetServiceNatIpConfiguration):
            GetServiceNatIpConfiguration = GetServiceNatIpConfiguration(
            name = javaType.name(),
            primary = javaType.primary(),
            privateIpAddress = javaType.privateIpAddress(),
            privateIpAddressVersion = javaType.privateIpAddressVersion(),
            subnetId = javaType.subnetId(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy