@daocloud-proto/insight 0.32.2 → 0.32.4

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name":"@daocloud-proto/insight",
3
- "version":"0.32.2",
3
+ "version":"0.32.4",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -47,6 +47,12 @@ export enum Role {
47
47
  ROLE_ADMIN = "ROLE_ADMIN",
48
48
  }
49
49
 
50
+ export enum AccessScope {
51
+ SCOPE_UNSPECIFIED = "SCOPE_UNSPECIFIED",
52
+ ClusterScoped = "ClusterScoped",
53
+ Namespaced = "Namespaced",
54
+ }
55
+
50
56
  export enum serverComponentName {
51
57
  NAME_UNSPECIFIED = "NAME_UNSPECIFIED",
52
58
  VMINSERT = "VMINSERT",
@@ -70,6 +76,7 @@ export type Cluster = {
70
76
  kubeSystemId?: string
71
77
  phase?: ClusterPhase
72
78
  role?: Role
79
+ accessScope?: AccessScope
73
80
  }
74
81
 
75
82
  export type ListClusterRequest = {
@@ -101,6 +108,7 @@ export type ClusterSummary = {
101
108
  nodeNumSummary?: InsightIoApiResourceV1alpha1Type.ResourceNumSummary
102
109
  insightAgentStatus?: insightAgentState
103
110
  role?: Role
111
+ accessScope?: AccessScope
104
112
  }
105
113
 
106
114
  export type ClusterDetail = {