com.pulumi.gcp.dataplex.kotlin.outputs.TaskNotebookInfrastructureSpec.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.dataplex.kotlin.outputs
import kotlin.Suppress
/**
*
* @property batch Compute resources needed for a Task when using Dataproc Serverless.
* Structure is documented below.
* @property containerImage Container Image Runtime Configuration.
* Structure is documented below.
* @property vpcNetwork Vpc network.
* Structure is documented below.
*/
public data class TaskNotebookInfrastructureSpec(
public val batch: TaskNotebookInfrastructureSpecBatch? = null,
public val containerImage: TaskNotebookInfrastructureSpecContainerImage? = null,
public val vpcNetwork: TaskNotebookInfrastructureSpecVpcNetwork? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.dataplex.outputs.TaskNotebookInfrastructureSpec): TaskNotebookInfrastructureSpec = TaskNotebookInfrastructureSpec(
batch = javaType.batch().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.dataplex.kotlin.outputs.TaskNotebookInfrastructureSpecBatch.Companion.toKotlin(args0)
})
}).orElse(null),
containerImage = javaType.containerImage().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.dataplex.kotlin.outputs.TaskNotebookInfrastructureSpecContainerImage.Companion.toKotlin(args0)
})
}).orElse(null),
vpcNetwork = javaType.vpcNetwork().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.dataplex.kotlin.outputs.TaskNotebookInfrastructureSpecVpcNetwork.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy