Variable getDatabasesTypeResponseSchemaConst
getDatabasesTypeResponseSchema: ZodObject<
{
class: ZodEnum<
{ dedicated: "dedicated"; premium: "premium"; shared: "shared" },
>;
disk: ZodInt;
engines: ZodObject<
{
mysql: ZodArray<
ZodObject<
{
price: ZodObject<
{ hourly: ZodNumber; monthly: ZodNumber },
$strip,
>;
quantity: ZodUnion<
readonly [ZodLiteral<1>, ZodLiteral<2>, ZodLiteral<3>],
>;
},
$strip,
>,
>;
postgresql: ZodArray<
ZodObject<
{
price: ZodObject<
{ hourly: ZodNumber; monthly: ZodNumber },
$strip,
>;
quantity: ZodUnion<
readonly [ZodLiteral<1>, ZodLiteral<2>, ZodLiteral<3>],
>;
},
$strip,
>,
>;
},
$strip,
>;
id: ZodReadonly<ZodString>;
label: ZodReadonly<ZodString>;
memory: ZodInt;
vcpus: ZodInt;
},
$strip,
> = ...
Managed Database plan type object.