File Coverage

blib/lib/IO/K8s/Api/Authorization/V1/ResourceAttributes.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::Authorization::V1::ResourceAttributes;
2             # ABSTRACT: ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface
3             our $VERSION = '1.008';
4 1     1   1548 use IO::K8s::Resource;
  1         2  
  1         11  
5              
6             k8s fieldSelector => 'Authorization::V1::FieldSelectorAttributes';
7              
8              
9             k8s group => Str;
10              
11              
12             k8s labelSelector => 'Authorization::V1::LabelSelectorAttributes';
13              
14              
15             k8s name => Str;
16              
17              
18             k8s namespace => Str;
19              
20              
21             k8s resource => Str;
22              
23              
24             k8s subresource => Str;
25              
26              
27             k8s verb => Str;
28              
29              
30             k8s version => Str;
31              
32              
33             1;
34              
35             __END__