All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.k8s.api.batch.v1.JobTemplateSpec Maven / Gradle / Ivy

There is a newer version: 1.30.4
Show newest version
package io.k8s.api.batch.v1;

import io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta;

/**
 * JobTemplateSpec describes the data a Job should have when created from a template
 */
public class JobTemplateSpec {
  public ObjectMeta metadata;

  public JobSpec spec;

  public JobTemplateSpec metadata(ObjectMeta metadata) {
    this.metadata = metadata;
    return this;
  }

  public JobTemplateSpec spec(JobSpec spec) {
    this.spec = spec;
    return this;
  }

  public static JobTemplateSpec jobTemplateSpec() {
    return new JobTemplateSpec();
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy