@daocloud-proto/kairship 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -6,6 +6,13 @@
|
|
|
6
6
|
|
|
7
7
|
import * as KairshipIoApiTypesObjectmeta from "../../types/objectmeta.pb"
|
|
8
8
|
import * as KairshipIoApiTypesPage from "../../types/page.pb"
|
|
9
|
+
|
|
10
|
+
export enum ListNamespaceSummaryResponseScope {
|
|
11
|
+
SCOPE_UNSPECIFIED = "SCOPE_UNSPECIFIED",
|
|
12
|
+
Instance = "Instance",
|
|
13
|
+
Namespace = "Namespace",
|
|
14
|
+
}
|
|
15
|
+
|
|
9
16
|
export type Namespace = {
|
|
10
17
|
metadata?: KairshipIoApiTypesObjectmeta.ObjectMeta
|
|
11
18
|
spec?: NamespaceSpec
|
|
@@ -34,6 +41,7 @@ export type ListNamespaceSummaryRequest = {
|
|
|
34
41
|
|
|
35
42
|
export type ListNamespaceSummaryResponse = {
|
|
36
43
|
data?: NamespaceSummary[]
|
|
44
|
+
accessScope?: ListNamespaceSummaryResponseScope
|
|
37
45
|
}
|
|
38
46
|
|
|
39
47
|
export type NamespaceSummary = {
|