File Coverage

blib/lib/IO/K8s/Api/Admissionregistration/V1/MutatingWebhook.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::Admissionregistration::V1::MutatingWebhook;
2             # ABSTRACT: MutatingWebhook describes an admission webhook and the resources and operations it applies to.
3             our $VERSION = '1.008';
4 2     2   2520 use IO::K8s::Resource;
  2         8  
  2         22  
5              
6             k8s admissionReviewVersions => [Str], 'required';
7              
8              
9             k8s clientConfig => 'Admissionregistration::V1::WebhookClientConfig', 'required';
10              
11              
12             k8s failurePolicy => Str;
13              
14              
15             k8s matchConditions => ['Admissionregistration::V1::MatchCondition'];
16              
17              
18             k8s matchPolicy => Str;
19              
20              
21             k8s name => Str, 'required';
22              
23              
24             k8s namespaceSelector => 'Meta::V1::LabelSelector';
25              
26              
27             k8s objectSelector => 'Meta::V1::LabelSelector';
28              
29              
30             k8s reinvocationPolicy => Str;
31              
32              
33             k8s rules => ['Admissionregistration::V1::RuleWithOperations'];
34              
35              
36             k8s sideEffects => Str, 'required';
37              
38              
39             k8s timeoutSeconds => Int;
40              
41              
42             1;
43              
44             __END__