@daocloud-proto/mcamel-minio 0.1.2-5 → 0.1.2-8
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/minio.pb.ts +7 -0
- package/package.json +1 -1
package/minio.pb.ts
CHANGED
|
@@ -113,6 +113,12 @@ export type CreateMinioReqPorts = {
|
|
|
113
113
|
nodePort?: number
|
|
114
114
|
}
|
|
115
115
|
|
|
116
|
+
export type CreateMinioReqBucket = {
|
|
117
|
+
name?: string
|
|
118
|
+
region?: string
|
|
119
|
+
objectLocking?: boolean
|
|
120
|
+
}
|
|
121
|
+
|
|
116
122
|
export type CreateMinioReq = {
|
|
117
123
|
workspaceId?: number
|
|
118
124
|
cluster?: string
|
|
@@ -139,6 +145,7 @@ export type CreateMinioReq = {
|
|
|
139
145
|
consoleServiceAnnotations?: {[key: string]: string}
|
|
140
146
|
minioRootUser?: string
|
|
141
147
|
minioRootPassword?: string
|
|
148
|
+
buckets?: CreateMinioReqBucket[]
|
|
142
149
|
}
|
|
143
150
|
|
|
144
151
|
export type UpdateMinioConfReq = {
|