/// <summary> /// Initializes a new instance of the <see cref="V1Job" /> class. /// </summary> /// <param name="ApiVersion">APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources.</param> /// <param name="Kind">Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds.</param> /// <param name="Metadata">Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.</param> /// <param name="Spec">Specification of the desired behavior of a job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.</param> /// <param name="Status">Current status of a job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.</param> public V1Job(string ApiVersion = default(string), string Kind = default(string), V1ObjectMeta Metadata = default(V1ObjectMeta), V1JobSpec Spec = default(V1JobSpec), V1JobStatus Status = default(V1JobStatus)) { this.ApiVersion = ApiVersion; this.Kind = Kind; this.Metadata = Metadata; this.Spec = Spec; this.Status = Status; }
/// <summary> /// Initializes a new instance of the <see cref="V2alpha1JobTemplateSpec" /> class. /// </summary> /// <param name="Metadata">Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.</param> /// <param name="Spec">Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.</param> public V2alpha1JobTemplateSpec(V1ObjectMeta Metadata = default(V1ObjectMeta), V1JobSpec Spec = default(V1JobSpec)) { this.Metadata = Metadata; this.Spec = Spec; }