File Coverage

blib/lib/IO/K8s/Apimachinery/Pkg/Apis/Meta/V1/ObjectMeta.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::ObjectMeta;
2             # ABSTRACT: ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.
3             our $VERSION = '1.008';
4 24     24   37346 use IO::K8s::Resource;
  24         62  
  24         301  
5              
6             k8s annotations => { Str => 1 };
7              
8              
9             k8s creationTimestamp => Time;
10              
11              
12             k8s deletionGracePeriodSeconds => Int;
13              
14              
15             k8s deletionTimestamp => Time;
16              
17              
18             k8s finalizers => [Str];
19              
20              
21             k8s generateName => Str;
22              
23              
24             k8s generation => Int;
25              
26              
27             k8s labels => { Str => 1 };
28              
29              
30             k8s managedFields => ['Meta::V1::ManagedFieldsEntry'];
31              
32              
33             k8s name => Str;
34              
35              
36             k8s namespace => Str;
37              
38              
39             k8s ownerReferences => ['Meta::V1::OwnerReference'];
40              
41              
42             k8s resourceVersion => Str;
43              
44              
45             k8s selfLink => Str;
46              
47              
48             k8s uid => Str;
49              
50              
51             1;
52              
53             __END__