| blib/lib/IO/K8s/Api/Core/V1/Secret.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::Core::V1::Secret; | ||||||
| 2 | # ABSTRACT: Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes. | ||||||
| 3 | our $VERSION = '1.008'; | ||||||
| 4 | 7 | 7 | 147632 | use IO::K8s::APIObject; | |||
| 7 | 19 | ||||||
| 7 | 70 | ||||||
| 5 | with 'IO::K8s::Role::Namespaced'; | ||||||
| 6 | |||||||
| 7 | |||||||
| 8 | k8s data => { Str => 1 }; | ||||||
| 9 | |||||||
| 10 | |||||||
| 11 | k8s immutable => Bool; | ||||||
| 12 | |||||||
| 13 | |||||||
| 14 | k8s stringData => { Str => 1 }; | ||||||
| 15 | |||||||
| 16 | |||||||
| 17 | k8s type => Str; | ||||||
| 18 | |||||||
| 19 | 1; | ||||||
| 20 | |||||||
| 21 | __END__ |