Package-level declarations

Types

Link copied to clipboard
class Job : KotlinCustomResource

/* /* /* A scheduled job that can publish a PubSub message or an HTTP request every X interval of time, using a crontab format string. To get more information about Job, see:

Link copied to clipboard
data class JobArgs(val appEngineHttpTarget: Output<JobAppEngineHttpTargetArgs>? = null, val attemptDeadline: Output<String>? = null, val description: Output<String>? = null, val httpTarget: Output<JobHttpTargetArgs>? = null, val name: Output<String>? = null, val paused: Output<Boolean>? = null, val project: Output<String>? = null, val pubsubTarget: Output<JobPubsubTargetArgs>? = null, val region: Output<String>? = null, val retryConfig: Output<JobRetryConfigArgs>? = null, val schedule: Output<String>? = null, val timeZone: Output<String>? = null) : ConvertibleToJava<JobArgs>

/* /* /* A scheduled job that can publish a PubSub message or an HTTP request every X interval of time, using a crontab format string. To get more information about Job, see:

Link copied to clipboard

Builder for JobArgs.

Link copied to clipboard
object JobMapper : ResourceMapper<Job>
Link copied to clipboard

Builder for Job.

Functions

Link copied to clipboard
fun job(name: String): Job
suspend fun job(name: String, block: suspend JobResourceBuilder.() -> Unit): Job