com.pulumi.gcp.dataproc.kotlin.outputs.WorkflowTemplateParameter.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.dataproc.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property description Brief description of the parameter. Must not exceed 1024 characters.
* @property fields Required. Paths to all fields that the parameter replaces. A field is allowed to appear in at most one parameter's list of field paths. A field path is similar in syntax to a .sparkJob.args
* @property name Required. Parameter name. The parameter name is used as the key, and paired with the parameter value, which are passed to the template when the template is instantiated. The name must contain only capital letters (A-Z), numbers (0-9), and underscores (_), and must not start with a number. The maximum length is 40 characters.
* @property validation Validation rules to be applied to this parameter's value.
*/
public data class WorkflowTemplateParameter(
public val description: String? = null,
public val fields: List,
public val name: String,
public val validation: WorkflowTemplateParameterValidation? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.dataproc.outputs.WorkflowTemplateParameter): WorkflowTemplateParameter = WorkflowTemplateParameter(
description = javaType.description().map({ args0 -> args0 }).orElse(null),
fields = javaType.fields().map({ args0 -> args0 }),
name = javaType.name(),
validation = javaType.validation().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.dataproc.kotlin.outputs.WorkflowTemplateParameterValidation.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}