![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.network.kotlin.inputs.ResourceNavigationLinkArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.network.kotlin.inputs
import com.pulumi.azurenative.network.inputs.ResourceNavigationLinkArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* ResourceNavigationLink resource.
* @property id Resource ID.
* @property link Link to the external resource
* @property linkedResourceType Resource type of the linked resource.
* @property name Name of the resource that is unique within a resource group. This name can be used to access the resource.
*/
public data class ResourceNavigationLinkArgs(
public val id: Output? = null,
public val link: Output? = null,
public val linkedResourceType: Output? = null,
public val name: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.network.inputs.ResourceNavigationLinkArgs =
com.pulumi.azurenative.network.inputs.ResourceNavigationLinkArgs.builder()
.id(id?.applyValue({ args0 -> args0 }))
.link(link?.applyValue({ args0 -> args0 }))
.linkedResourceType(linkedResourceType?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ResourceNavigationLinkArgs].
*/
@PulumiTagMarker
public class ResourceNavigationLinkArgsBuilder internal constructor() {
private var id: Output? = null
private var link: Output? = null
private var linkedResourceType: Output? = null
private var name: Output? = null
/**
* @param value Resource ID.
*/
@JvmName("fvxkagteobptgchk")
public suspend fun id(`value`: Output) {
this.id = value
}
/**
* @param value Link to the external resource
*/
@JvmName("meqjohrikkkxynya")
public suspend fun link(`value`: Output) {
this.link = value
}
/**
* @param value Resource type of the linked resource.
*/
@JvmName("tiifyhdfjtxslfae")
public suspend fun linkedResourceType(`value`: Output) {
this.linkedResourceType = value
}
/**
* @param value Name of the resource that is unique within a resource group. This name can be used to access the resource.
*/
@JvmName("jgnpiitessfnwomt")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value Resource ID.
*/
@JvmName("wgagltcfippudbuf")
public suspend fun id(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.id = mapped
}
/**
* @param value Link to the external resource
*/
@JvmName("lcupgjjqqeinximf")
public suspend fun link(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.link = mapped
}
/**
* @param value Resource type of the linked resource.
*/
@JvmName("syuyocufqvyrpeee")
public suspend fun linkedResourceType(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.linkedResourceType = mapped
}
/**
* @param value Name of the resource that is unique within a resource group. This name can be used to access the resource.
*/
@JvmName("ouqjbkavbvafmqdy")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
internal fun build(): ResourceNavigationLinkArgs = ResourceNavigationLinkArgs(
id = id,
link = link,
linkedResourceType = linkedResourceType,
name = name,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy