@kubevirt-ui/kubevirt-api
    Preparing search index...

    Interface IoK8sApiFlowcontrolV1Subject

    Subject matches the originator of a request, as identified by the request authentication system. There are three ways of matching an originator; by user, group, or service account.

    interface IoK8sApiFlowcontrolV1Subject {
        group?: IoK8sApiFlowcontrolV1GroupSubject;
        kind: string;
        serviceAccount?: IoK8sApiFlowcontrolV1ServiceAccountSubject;
        user?: IoK8sApiFlowcontrolV1UserSubject;
    }
    Index

    Properties

    group matches based on user group name.

    kind: string

    kind indicates which one of the other fields is non-empty. Required

    serviceAccount matches ServiceAccounts.

    user matches based on username.