File Coverage

blib/lib/IO/K8s/Api/Scheduling/V1/PriorityClass.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::Scheduling::V1::PriorityClass;
2             # ABSTRACT: PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.
3             our $VERSION = '1.008';
4 2     2   2286 use IO::K8s::APIObject;
  2         4  
  2         21  
5              
6              
7             k8s description => Str;
8              
9              
10             k8s globalDefault => Bool;
11              
12              
13             k8s preemptionPolicy => Str;
14              
15              
16             k8s value => Int, 'required';
17              
18             1;
19              
20             __END__