refactor: prepare kubernetes backend fan out handler for new endpoint (#11952)
* refactor: prepare kubernetes backend fan out handler for new endpoint Signed-off-by: Matthew Clarke <mclarke@spotify.com> * add changeset Signed-off-by: Matthew Clarke <mclarke@spotify.com> * PR api report feedback Signed-off-by: Matthew Clarke <mclarke@spotify.com> * update api docs Signed-off-by: Matthew Clarke <mclarke@spotify.com> * fix api report warnings Signed-off-by: Matthew Clarke <mclarke@spotify.com>
This commit is contained in:
@@ -29,13 +29,15 @@ import {
|
||||
} from '@kubernetes/client-node';
|
||||
import { Entity } from '@backstage/catalog-model';
|
||||
|
||||
export interface KubernetesRequestBody {
|
||||
auth?: {
|
||||
google?: string;
|
||||
oidc?: {
|
||||
[key: string]: string;
|
||||
};
|
||||
export interface KubernetesRequestAuth {
|
||||
google?: string;
|
||||
oidc?: {
|
||||
[key: string]: string;
|
||||
};
|
||||
}
|
||||
|
||||
export interface KubernetesRequestBody {
|
||||
auth?: KubernetesRequestAuth;
|
||||
entity: Entity;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user