import { ClusterAttributes } from '@backstage/plugin-kubernetes-common'; /** * Contains the details needed to make a log request to Kubernetes, except the container name * * @public */ export interface PodScope { podName: string; podNamespace: string; cluster: ClusterAttributes; } /** * Contains the details needed to make a log request to Kubernetes * * @public */ export interface ContainerScope extends PodScope { containerName: string; }