File Coverage

blib/lib/IO/K8s/Apimachinery/Pkg/Apis/Meta/V1/APIResource.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::Apimachinery::Pkg::Apis::Meta::V1::APIResource;
2             # ABSTRACT: APIResource specifies the name of a resource and whether it is namespaced.
3             our $VERSION = '1.008';
4 1     1   1291 use IO::K8s::Resource;
  1         4  
  1         11  
5              
6             k8s categories => [Str];
7              
8              
9             k8s group => Str;
10              
11              
12             k8s kind => Str, 'required';
13              
14              
15             k8s name => Str, 'required';
16              
17              
18             k8s namespaced => Bool, 'required';
19              
20              
21             k8s shortNames => [Str];
22              
23              
24             k8s singularName => Str, 'required';
25              
26              
27             k8s storageVersionHash => Str;
28              
29              
30             k8s verbs => [Str], 'required';
31              
32              
33             k8s version => Str;
34              
35              
36             1;
37              
38             __END__