JobTemplateSpecArgs

data class JobTemplateSpecArgs(val metadata: Output<ObjectMetaArgs>? = null, val spec: Output<JobSpecArgs>? = null) : ConvertibleToJava<JobTemplateSpecArgs>

JobTemplateSpec describes the data a Job should have when created from a template

Constructors

Link copied to clipboard
constructor(metadata: Output<ObjectMetaArgs>? = null, spec: Output<JobSpecArgs>? = null)

Properties

Link copied to clipboard
val metadata: Output<ObjectMetaArgs>? = null

Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata

Link copied to clipboard
val spec: Output<JobSpecArgs>? = null

Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status

Functions

Link copied to clipboard
open override fun toJava(): JobTemplateSpecArgs