kubernetes-models
Version:
10 lines (9 loc) • 521 B
JavaScript
import { Model, setSchema } from "@kubernetes-models/base";
import { addSchema } from "../../_schemas/IoK8sApiAuthorizationV1NonResourceAttributes.mjs";
/**
* NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface
*/
export class NonResourceAttributes extends Model {
}
setSchema(NonResourceAttributes, "io.k8s.api.authorization.v1.NonResourceAttributes", addSchema);
export { NonResourceAttributes as IoK8sApiAuthorizationV1NonResourceAttributes };