kubernetes-models
Version:
10 lines (9 loc) • 824 B
JavaScript
import { Model, setSchema } from "@kubernetes-models/base";
import { addSchema } from "../../_schemas/IoK8sApiFlowcontrolV1beta2PolicyRulesWithSubjects.mjs";
/**
* PolicyRulesWithSubjects prescribes a test that applies to a request to an apiserver. The test considers the subject making the request, the verb being requested, and the resource to be acted upon. This PolicyRulesWithSubjects matches a request if and only if both (a) at least one member of subjects matches the request and (b) at least one member of resourceRules or nonResourceRules matches the request.
*/
export class PolicyRulesWithSubjects extends Model {
}
setSchema(PolicyRulesWithSubjects, "io.k8s.api.flowcontrol.v1beta2.PolicyRulesWithSubjects", addSchema);
export { PolicyRulesWithSubjects as IoK8sApiFlowcontrolV1beta2PolicyRulesWithSubjects };