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