kubernetes-models
Version:
10 lines (9 loc) • 718 B
JavaScript
import { Model, setSchema } from "@kubernetes-models/base";
import { addSchema } from "../../_schemas/IoK8sApiFlowcontrolV1beta2NonResourcePolicyRule.mjs";
/**
* NonResourcePolicyRule is a predicate that matches non-resource requests according to their verb and the target non-resource URL. A NonResourcePolicyRule matches a request if and only if both (a) at least one member of verbs matches the request and (b) at least one member of nonResourceURLs matches the request.
*/
export class NonResourcePolicyRule extends Model {
}
setSchema(NonResourcePolicyRule, "io.k8s.api.flowcontrol.v1beta2.NonResourcePolicyRule", addSchema);
export { NonResourcePolicyRule as IoK8sApiFlowcontrolV1beta2NonResourcePolicyRule };