![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.privatelink.kotlin.outputs.EndpointIpConfiguration.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.privatelink.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property memberName Specifies the member name this IP address applies to. If it is not specified, it will use the value of `subresource_name`. Changing this forces a new resource to be created.
* > **NOTE:** `member_name` will be required and will not take the value of `subresource_name` in the next major version.
* @property name Specifies the Name of the IP Configuration. Changing this forces a new resource to be created.
* @property privateIpAddress Specifies the static IP address within the private endpoint's subnet to be used. Changing this forces a new resource to be created.
* @property subresourceName Specifies the subresource this IP address applies to. `subresource_names` corresponds to `group_id`. Changing this forces a new resource to be created.
*/
public data class EndpointIpConfiguration(
public val memberName: String? = null,
public val name: String,
public val privateIpAddress: String,
public val subresourceName: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.privatelink.outputs.EndpointIpConfiguration): EndpointIpConfiguration = EndpointIpConfiguration(
memberName = javaType.memberName().map({ args0 -> args0 }).orElse(null),
name = javaType.name(),
privateIpAddress = javaType.privateIpAddress(),
subresourceName = javaType.subresourceName().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy