Autogen API docs

This commit is contained in:
Janet Kuo
2018-08-17 13:33:03 -07:00
parent 209b32684e
commit 1d6dd86407
14 changed files with 164 additions and 66 deletions

View File

@@ -262,6 +262,11 @@ func (in *JobSpec) DeepCopyInto(out *JobSpec) {
**out = **in
}
in.Template.DeepCopyInto(&out.Template)
if in.TTLSecondsAfterFinished != nil {
in, out := &in.TTLSecondsAfterFinished, &out.TTLSecondsAfterFinished
*out = new(int32)
**out = **in
}
return
}