File Coverage

blib/lib/IO/K8s/Api/Batch/V1/CronJobSpec.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package IO::K8s::Api::Batch::V1::CronJobSpec;
2             # ABSTRACT: CronJobSpec describes how the job execution will look like and when it will actually run.
3             our $VERSION = '1.008';
4 4     4   4290 use IO::K8s::Resource;
  4         11  
  4         46  
5              
6             k8s concurrencyPolicy => Str;
7              
8              
9             k8s failedJobsHistoryLimit => Int;
10              
11              
12             k8s jobTemplate => 'Batch::V1::JobTemplateSpec', 'required';
13              
14              
15             k8s schedule => Str, 'required';
16              
17              
18             k8s startingDeadlineSeconds => Int;
19              
20              
21             k8s successfulJobsHistoryLimit => Int;
22              
23              
24             k8s suspend => Bool;
25              
26              
27             k8s timeZone => Str;
28              
29              
30             1;
31              
32             __END__