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
« prev ^ index » next coverage.py v7.6.10, created at 2025-01-30 10:48 +0200
1# -*- coding: utf-8 -*-
3from ocp_resources.resource import NamespacedResource
6class PeerAuthentication(NamespacedResource):
7 """
8 Peer Authentication object.
9 """
11 api_group = NamespacedResource.ApiGroup.SECURITY_ISTIO_IO
13 class MtlsMode:
14 """
15 mTLS Traffic Mode object.
16 """
18 STRICT = "STRICT"