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

com.pulumi.gcp.vertex.kotlin.outputs.AiFeatureOnlineStoreDedicatedServingEndpoint.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: 8.12.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.vertex.kotlin.outputs

import kotlin.String
import kotlin.Suppress

/**
 *
 * @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 AiFeatureOnlineStoreDedicatedServingEndpoint(
    public val privateServiceConnectConfig: AiFeatureOnlineStoreDedicatedServingEndpointPrivateServiceConnectConfig? = null,
    public val publicEndpointDomainName: String? = null,
    public val serviceAttachment: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.vertex.outputs.AiFeatureOnlineStoreDedicatedServingEndpoint): AiFeatureOnlineStoreDedicatedServingEndpoint = AiFeatureOnlineStoreDedicatedServingEndpoint(
            privateServiceConnectConfig = javaType.privateServiceConnectConfig().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.vertex.kotlin.outputs.AiFeatureOnlineStoreDedicatedServingEndpointPrivateServiceConnectConfig.Companion.toKotlin(args0)
                })
            }).orElse(null),
            publicEndpointDomainName = javaType.publicEndpointDomainName().map({ args0 -> args0 }).orElse(null),
            serviceAttachment = javaType.serviceAttachment().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy