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

com.pulumi.gcp.vertex.kotlin.outputs.AiIndexEndpointDeployedIndexPrivateEndpoint.kt Maven / Gradle / Ivy

@file:Suppress("NAME_SHADOWING", "DEPRECATION")

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

import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 *
 * @property matchGrpcAddress (Output)
 * The ip address used to send match gRPC requests.
 * @property pscAutomatedEndpoints (Output)
 * PscAutomatedEndpoints is populated if private service connect is enabled if PscAutomatedConfig is set.
 * Structure is documented below.
 * @property serviceAttachment (Output)
 * The name of the service attachment resource. Populated if private service connect is enabled.
 */
public data class AiIndexEndpointDeployedIndexPrivateEndpoint(
    public val matchGrpcAddress: String? = null,
    public val pscAutomatedEndpoints: List? = null,
    public val serviceAttachment: String? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.vertex.outputs.AiIndexEndpointDeployedIndexPrivateEndpoint): AiIndexEndpointDeployedIndexPrivateEndpoint = AiIndexEndpointDeployedIndexPrivateEndpoint(
            matchGrpcAddress = javaType.matchGrpcAddress().map({ args0 -> args0 }).orElse(null),
            pscAutomatedEndpoints = javaType.pscAutomatedEndpoints().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.vertex.kotlin.outputs.AiIndexEndpointDeployedIndexPrivateEndpointPscAutomatedEndpoint.Companion.toKotlin(args0)
                })
            }),
            serviceAttachment = javaType.serviceAttachment().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy