File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
packages/clients/src/api/jobs/v1alpha1 Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -48,11 +48,13 @@ export const unmarshalJobRun = (data: unknown): JobRun => {
48
48
}
49
49
50
50
return {
51
+ cpuLimit : data . cpu_limit ,
51
52
createdAt : unmarshalDate ( data . created_at ) ,
52
53
errorMessage : data . error_message ,
53
54
exitCode : data . exit_code ,
54
55
id : data . id ,
55
56
jobDefinitionId : data . job_definition_id ,
57
+ memoryLimit : data . memory_limit ,
56
58
region : data . region ,
57
59
runDuration : data . run_duration ,
58
60
state : data . state ,
Original file line number Diff line number Diff line change @@ -47,6 +47,8 @@ export interface JobRun {
47
47
exitCode ?: number
48
48
runDuration ?: string
49
49
errorMessage : string
50
+ cpuLimit : number
51
+ memoryLimit : number
50
52
/**
51
53
* Region to target. If none is passed will use default region from the
52
54
* config.
You can’t perform that action at this time.
0 commit comments