com.pulumi.gcp.vertex.kotlin.outputs.AiEndpointDeployedModelPrivateEndpoint.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.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property explainHttpUri (Output)
* Output only. Http(s) path to send explain requests.
* @property healthHttpUri (Output)
* Output only. Http(s) path to send health check requests.
* @property predictHttpUri (Output)
* Output only. Http(s) path to send prediction requests.
* @property serviceAttachment (Output)
* Output only. The name of the service attachment resource. Populated if private service connect is enabled.
*/
public data class AiEndpointDeployedModelPrivateEndpoint(
public val explainHttpUri: String? = null,
public val healthHttpUri: String? = null,
public val predictHttpUri: String? = null,
public val serviceAttachment: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.vertex.outputs.AiEndpointDeployedModelPrivateEndpoint): AiEndpointDeployedModelPrivateEndpoint = AiEndpointDeployedModelPrivateEndpoint(
explainHttpUri = javaType.explainHttpUri().map({ args0 -> args0 }).orElse(null),
healthHttpUri = javaType.healthHttpUri().map({ args0 -> args0 }).orElse(null),
predictHttpUri = javaType.predictHttpUri().map({ args0 -> args0 }).orElse(null),
serviceAttachment = javaType.serviceAttachment().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy