@daocloud-proto/mcamel-minio 0.1.1-9 → 0.1.2-2
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 +6 -1
- package/package.json +1 -1
package/minio.pb.ts
CHANGED
|
@@ -171,12 +171,17 @@ export type GetMinioParamRespSelectDataIntValue = {
|
|
|
171
171
|
value?: number
|
|
172
172
|
}
|
|
173
173
|
|
|
174
|
+
export type GetMinioParamRespSelectDataStorageClassValue = {
|
|
175
|
+
name?: string
|
|
176
|
+
allowVolumeExpansion?: boolean
|
|
177
|
+
}
|
|
178
|
+
|
|
174
179
|
|
|
175
180
|
type BaseGetMinioParamRespSelectData = {
|
|
176
181
|
}
|
|
177
182
|
|
|
178
183
|
export type GetMinioParamRespSelectData = BaseGetMinioParamRespSelectData
|
|
179
|
-
& OneOf<{ sValue: GetMinioParamRespSelectDataStringValue; rValue: GetMinioParamRespSelectDataResourceValue; iValue: GetMinioParamRespSelectDataIntValue }>
|
|
184
|
+
& OneOf<{ sValue: GetMinioParamRespSelectDataStringValue; rValue: GetMinioParamRespSelectDataResourceValue; iValue: GetMinioParamRespSelectDataIntValue; scValue: GetMinioParamRespSelectDataStorageClassValue }>
|
|
180
185
|
|
|
181
186
|
export type GetMinioParamRespSelect = {
|
|
182
187
|
selectType?: GetMinioParamRespSelectSelectType
|