
com.pulumi.gcp.dataproc.kotlin.outputs.WorkflowTemplatePlacementManagedClusterConfigInitializationAction.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.dataproc.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property executableFile Required. Cloud Storage URI of executable file.
* @property executionTimeout Amount of time executable has to complete. Default is 10 minutes (see JSON representation of [JSON Mapping - Language Guide (proto 3)](https://developers.google.com/protocol-buffers/docs/proto3#json)). Cluster creation fails with an explanatory error message (the name of the executable that caused the error and the exceeded timeout period) if the executable is not completed at end of the timeout period.
*/
public data class WorkflowTemplatePlacementManagedClusterConfigInitializationAction(
public val executableFile: String? = null,
public val executionTimeout: String? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.dataproc.outputs.WorkflowTemplatePlacementManagedClusterConfigInitializationAction): WorkflowTemplatePlacementManagedClusterConfigInitializationAction =
WorkflowTemplatePlacementManagedClusterConfigInitializationAction(
executableFile = javaType.executableFile().map({ args0 -> args0 }).orElse(null),
executionTimeout = javaType.executionTimeout().map({ args0 -> args0 }).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy