mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import type { KubeObjectMetadata, KubeObjectScope, NamespaceScopedMetadata } from "../kube-object";
|
|
import { KubeObject } from "../kube-object";
|
|
import type { DerivedKubeApiOptions } from "../kube-api";
|
|
import { KubeApi } from "../kube-api";
|
|
import type { KubeJsonApiData } from "../kube-json-api";
|
|
import type { PolicyRule } from "./types/policy-rule";
|
|
|
|
export interface RoleData extends KubeJsonApiData<KubeObjectMetadata<KubeObjectScope.Namespace>, void, void> {
|
|
rules?: PolicyRule[];
|
|
}
|
|
|
|
export class Role extends KubeObject<
|
|
NamespaceScopedMetadata,
|
|
void,
|
|
void
|
|
> {
|
|
static readonly kind = "Role";
|
|
static readonly namespaced = true;
|
|
static readonly apiBase = "/apis/rbac.authorization.k8s.io/v1/roles";
|
|
rules?: PolicyRule[];
|
|
|
|
constructor({ rules, ...rest }: RoleData) {
|
|
super(rest);
|
|
this.rules = rules;
|
|
}
|
|
|
|
getRules() {
|
|
return this.rules || [];
|
|
}
|
|
}
|
|
|
|
export class RoleApi extends KubeApi<Role, RoleData> {
|
|
constructor(opts: DerivedKubeApiOptions = {}) {
|
|
super({
|
|
...opts,
|
|
objectConstructor: Role,
|
|
});
|
|
}
|
|
}
|