com.pulumi.gcp.vertex.kotlin.inputs.AiFeatureOnlineStoreDedicatedServingEndpointArgs.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.vertex.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.vertex.inputs.AiFeatureOnlineStoreDedicatedServingEndpointArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property privateServiceConnectConfig Private service connect config.
* Structure is documented below.
* @property publicEndpointDomainName (Output)
* Domain name to use for this FeatureOnlineStore
* @property serviceAttachment (Output)
* Name of the service attachment resource. Applicable only if private service connect is enabled and after FeatureViewSync is created.
*/
public data class AiFeatureOnlineStoreDedicatedServingEndpointArgs(
public val privateServiceConnectConfig: Output? = null,
public val publicEndpointDomainName: Output? = null,
public val serviceAttachment: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.vertex.inputs.AiFeatureOnlineStoreDedicatedServingEndpointArgs =
com.pulumi.gcp.vertex.inputs.AiFeatureOnlineStoreDedicatedServingEndpointArgs.builder()
.privateServiceConnectConfig(
privateServiceConnectConfig?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
)
.publicEndpointDomainName(publicEndpointDomainName?.applyValue({ args0 -> args0 }))
.serviceAttachment(serviceAttachment?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AiFeatureOnlineStoreDedicatedServingEndpointArgs].
*/
@PulumiTagMarker
public class AiFeatureOnlineStoreDedicatedServingEndpointArgsBuilder internal constructor() {
private var privateServiceConnectConfig:
Output? = null
private var publicEndpointDomainName: Output? = null
private var serviceAttachment: Output? = null
/**
* @param value Private service connect config.
* Structure is documented below.
*/
@JvmName("pnmbniytkwjbaaeq")
public suspend fun privateServiceConnectConfig(`value`: Output) {
this.privateServiceConnectConfig = value
}
/**
* @param value (Output)
* Domain name to use for this FeatureOnlineStore
*/
@JvmName("dmdqydjcdvgudwbg")
public suspend fun publicEndpointDomainName(`value`: Output) {
this.publicEndpointDomainName = value
}
/**
* @param value (Output)
* Name of the service attachment resource. Applicable only if private service connect is enabled and after FeatureViewSync is created.
*/
@JvmName("txsuetdwikuxeajp")
public suspend fun serviceAttachment(`value`: Output) {
this.serviceAttachment = value
}
/**
* @param value Private service connect config.
* Structure is documented below.
*/
@JvmName("wbtqpsgyrqjxnvks")
public suspend fun privateServiceConnectConfig(`value`: AiFeatureOnlineStoreDedicatedServingEndpointPrivateServiceConnectConfigArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.privateServiceConnectConfig = mapped
}
/**
* @param argument Private service connect config.
* Structure is documented below.
*/
@JvmName("sttjrpycuynjpviw")
public suspend fun privateServiceConnectConfig(argument: suspend AiFeatureOnlineStoreDedicatedServingEndpointPrivateServiceConnectConfigArgsBuilder.() -> Unit) {
val toBeMapped =
AiFeatureOnlineStoreDedicatedServingEndpointPrivateServiceConnectConfigArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.privateServiceConnectConfig = mapped
}
/**
* @param value (Output)
* Domain name to use for this FeatureOnlineStore
*/
@JvmName("yfyfqtimvgdwrlui")
public suspend fun publicEndpointDomainName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.publicEndpointDomainName = mapped
}
/**
* @param value (Output)
* Name of the service attachment resource. Applicable only if private service connect is enabled and after FeatureViewSync is created.
*/
@JvmName("dtmhjcucdkavyjku")
public suspend fun serviceAttachment(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.serviceAttachment = mapped
}
internal fun build(): AiFeatureOnlineStoreDedicatedServingEndpointArgs =
AiFeatureOnlineStoreDedicatedServingEndpointArgs(
privateServiceConnectConfig = privateServiceConnectConfig,
publicEndpointDomainName = publicEndpointDomainName,
serviceAttachment = serviceAttachment,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy