Coverage for ocp_resources/peer_authentication.py: 0%

5 statements  

« prev     ^ index     » next       coverage.py v7.6.10, created at 2025-01-30 10:48 +0200

1# -*- coding: utf-8 -*- 

2 

3from ocp_resources.resource import NamespacedResource 

4 

5 

6class PeerAuthentication(NamespacedResource): 

7 """ 

8 Peer Authentication object. 

9 """ 

10 

11 api_group = NamespacedResource.ApiGroup.SECURITY_ISTIO_IO 

12 

13 class MtlsMode: 

14 """ 

15 mTLS Traffic Mode object. 

16 """ 

17 

18 STRICT = "STRICT"