com.pulumi.gcp.networkconnectivity.kotlin.inputs.SpokeLinkedInterconnectAttachmentsArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.networkconnectivity.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.networkconnectivity.inputs.SpokeLinkedInterconnectAttachmentsArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property siteToSiteDataTransfer A value that controls whether site-to-site data transfer is enabled for these resources. Note that data transfer is available only in supported locations.
* @property uris The URIs of linked interconnect attachment resources
*/
public data class SpokeLinkedInterconnectAttachmentsArgs(
public val siteToSiteDataTransfer: Output,
public val uris: Output>,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.networkconnectivity.inputs.SpokeLinkedInterconnectAttachmentsArgs =
com.pulumi.gcp.networkconnectivity.inputs.SpokeLinkedInterconnectAttachmentsArgs.builder()
.siteToSiteDataTransfer(siteToSiteDataTransfer.applyValue({ args0 -> args0 }))
.uris(uris.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [SpokeLinkedInterconnectAttachmentsArgs].
*/
@PulumiTagMarker
public class SpokeLinkedInterconnectAttachmentsArgsBuilder internal constructor() {
private var siteToSiteDataTransfer: Output? = null
private var uris: Output>? = null
/**
* @param value A value that controls whether site-to-site data transfer is enabled for these resources. Note that data transfer is available only in supported locations.
*/
@JvmName("yidpmntishfkmudr")
public suspend fun siteToSiteDataTransfer(`value`: Output) {
this.siteToSiteDataTransfer = value
}
/**
* @param value The URIs of linked interconnect attachment resources
*/
@JvmName("nwcncdibjobkqswq")
public suspend fun uris(`value`: Output>) {
this.uris = value
}
@JvmName("pxsgpbijdehuljev")
public suspend fun uris(vararg values: Output) {
this.uris = Output.all(values.asList())
}
/**
* @param values The URIs of linked interconnect attachment resources
*/
@JvmName("gadsubodndwixsat")
public suspend fun uris(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy