@daocloud-proto/mcamel-mysql 0.5.0-922 → 0.5.0-924
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/mysql.pb.ts +10 -1
- package/package.json +1 -1
package/mysql.pb.ts
CHANGED
|
@@ -583,7 +583,6 @@ export type CreateMysqlReq = {
|
|
|
583
583
|
describe?: string
|
|
584
584
|
version?: string
|
|
585
585
|
replicas?: number
|
|
586
|
-
instanceType?: InstanceType
|
|
587
586
|
storageClassName?: string
|
|
588
587
|
storageCapacity?: string
|
|
589
588
|
rootPassword?: string
|
|
@@ -627,6 +626,16 @@ export type CreateMysqlReq = {
|
|
|
627
626
|
phpAdminLbTyp?: CommonCommon.LBTyp
|
|
628
627
|
phpAdminLbPoolName?: string
|
|
629
628
|
phpAdminLbAddress?: string
|
|
629
|
+
instanceType?: InstanceType
|
|
630
|
+
mgrRouterConfig?: MgrRouterConfig
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
export type MgrRouterConfig = {
|
|
634
|
+
replicas?: number
|
|
635
|
+
cpuRequest?: string
|
|
636
|
+
cpuLimit?: string
|
|
637
|
+
memoryRequest?: string
|
|
638
|
+
memoryLimit?: string
|
|
630
639
|
}
|
|
631
640
|
|
|
632
641
|
export type UpdateMysqlConfReq = {
|