We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 290c411 commit e3443edCopy full SHA for e3443ed
src/lib/api/types/crate/createManagedControlPlane.ts
@@ -5,20 +5,17 @@ import {
5
} from '../shared/keyNames';
6
import { Member } from '../shared/members';
7
8
+export type Annotations = Record<string, string>;
9
+export type Labels = Record<string, string>;
10
+
11
export interface CreateManagedControlPlaneType {
12
apiVersion: string;
13
kind: string;
14
metadata: {
15
name: string;
16
namespace: string;
- annotations: {
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
- [annotation: string]: any;
17
- };
18
- labels: {
19
20
- [label: string]: any;
21
+ annotations: Annotations;
+ labels: Labels;
22
};
23
spec: {
24
members: Member[];
0 commit comments