com.pulumi.gcp.notebooks.kotlin.outputs.RuntimeAccessConfig.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.notebooks.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property accessType The type of access mode this instance. For valid values, see
* `https://cloud.google.com/vertex-ai/docs/workbench/reference/
* rest/v1/projects.locations.runtimes#RuntimeAccessType`.
* @property proxyUri (Output)
* The proxy endpoint that is used to access the runtime.
* @property runtimeOwner The owner of this runtime after creation. Format: `[email protected]`.
* Currently supports one owner only.
*/
public data class RuntimeAccessConfig(
public val accessType: String? = null,
public val proxyUri: String? = null,
public val runtimeOwner: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.notebooks.outputs.RuntimeAccessConfig): RuntimeAccessConfig = RuntimeAccessConfig(
accessType = javaType.accessType().map({ args0 -> args0 }).orElse(null),
proxyUri = javaType.proxyUri().map({ args0 -> args0 }).orElse(null),
runtimeOwner = javaType.runtimeOwner().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy