@daocloud-proto/mcamel-minio 0.1.2-2 → 0.1.2-20
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/common.pb.ts +5 -0
- package/minio.pb.ts +6 -0
- package/package.json +1 -1
package/common.pb.ts
CHANGED
package/minio.pb.ts
CHANGED
|
@@ -113,6 +113,10 @@ export type CreateMinioReqPorts = {
|
|
|
113
113
|
nodePort?: number
|
|
114
114
|
}
|
|
115
115
|
|
|
116
|
+
export type CreateMinioReqBucket = {
|
|
117
|
+
name?: string
|
|
118
|
+
}
|
|
119
|
+
|
|
116
120
|
export type CreateMinioReq = {
|
|
117
121
|
workspaceId?: number
|
|
118
122
|
cluster?: string
|
|
@@ -139,6 +143,7 @@ export type CreateMinioReq = {
|
|
|
139
143
|
consoleServiceAnnotations?: {[key: string]: string}
|
|
140
144
|
minioRootUser?: string
|
|
141
145
|
minioRootPassword?: string
|
|
146
|
+
buckets?: CreateMinioReqBucket[]
|
|
142
147
|
}
|
|
143
148
|
|
|
144
149
|
export type UpdateMinioConfReq = {
|
|
@@ -305,6 +310,7 @@ export type TenantItemStatus = {
|
|
|
305
310
|
webManagerAddr?: string
|
|
306
311
|
clusterIPs?: string[]
|
|
307
312
|
serviceAddr?: string
|
|
313
|
+
common?: CommonCommon.CommonItemStatus
|
|
308
314
|
}
|
|
309
315
|
|
|
310
316
|
export type TenantItemMetadata = {
|