/* eslint-disable */ // @ts-nocheck /* * This file is a generated Typescript file for GRPC Gateway, DO NOT MODIFY */ import * as InsightIoApiResourceV1alpha1Cluster from "./cluster.pb" import * as InsightIoApiResourceV1alpha1Type from "./type.pb" export enum NamespacePhase { NAMESPACE_PHASE_UNSPECIFIED = "NAMESPACE_PHASE_UNSPECIFIED", Active = "Active", Terminating = "Terminating", } export type ListNamespacesRequest = { cluster?: string } export type ListNamespacesResponse = { namespaces?: Namespace[] } export type Namespace = { name?: string role?: InsightIoApiResourceV1alpha1Cluster.Role } export type GetNamespaceRequest = { cluster?: string name?: string } export type NamespaceDetail = { name?: string cluster?: string phase?: NamespacePhase creationTimestamp?: string deploymentNumSummary?: InsightIoApiResourceV1alpha1Type.ResourceNumSummary statefulsetNumSummary?: InsightIoApiResourceV1alpha1Type.ResourceNumSummary daemonsetNumSummary?: InsightIoApiResourceV1alpha1Type.ResourceNumSummary podNumSummary?: InsightIoApiResourceV1alpha1Type.ResourceNumSummary }