
com.pulumi.googlenative.jobs.v3.kotlin.inputs.ApplicationInfoArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.jobs.v3.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.googlenative.jobs.v3.inputs.ApplicationInfoArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* Application related details of a job posting.
* @property emails Optional but at least one of uris, emails or instruction must be specified. Use this field to specify email address(es) to which resumes or applications can be sent. The maximum number of allowed characters for each entry is 255.
* @property instruction Optional but at least one of uris, emails or instruction must be specified. Use this field to provide instructions, such as "Mail your application to ...", that a candidate can follow to apply for the job. This field accepts and sanitizes HTML input, and also accepts bold, italic, ordered list, and unordered list markup tags. The maximum number of allowed characters is 3,000.
* @property uris Optional but at least one of uris, emails or instruction must be specified. Use this URI field to direct an applicant to a website, for example to link to an online application form. The maximum number of allowed characters for each entry is 2,000.
*/
public data class ApplicationInfoArgs(
public val emails: Output>? = null,
public val instruction: Output? = null,
public val uris: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.googlenative.jobs.v3.inputs.ApplicationInfoArgs =
com.pulumi.googlenative.jobs.v3.inputs.ApplicationInfoArgs.builder()
.emails(emails?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.instruction(instruction?.applyValue({ args0 -> args0 }))
.uris(uris?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [ApplicationInfoArgs].
*/
@PulumiTagMarker
public class ApplicationInfoArgsBuilder internal constructor() {
private var emails: Output>? = null
private var instruction: Output? = null
private var uris: Output>? = null
/**
* @param value Optional but at least one of uris, emails or instruction must be specified. Use this field to specify email address(es) to which resumes or applications can be sent. The maximum number of allowed characters for each entry is 255.
*/
@JvmName("pyjceggcbmyumiyq")
public suspend fun emails(`value`: Output>) {
this.emails = value
}
@JvmName("ftpfddeourtbdcom")
public suspend fun emails(vararg values: Output) {
this.emails = Output.all(values.asList())
}
/**
* @param values Optional but at least one of uris, emails or instruction must be specified. Use this field to specify email address(es) to which resumes or applications can be sent. The maximum number of allowed characters for each entry is 255.
*/
@JvmName("sfspbovhddjgglsa")
public suspend fun emails(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy