Source code for ocp_resources.peer_authentication

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

from ocp_resources.resource import NamespacedResource


[docs]class PeerAuthentication(NamespacedResource): """ Peer Authentication object. """ api_group = NamespacedResource.ApiGroup.SECURITY_ISTIO_IO
[docs] class MtlsMode: """ mTLS Traffic Mode object. """ STRICT = "STRICT"