We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b74b090 commit d8b7c39Copy full SHA for d8b7c39
1 file changed
commands/machine/schemas.ts
@@ -1,14 +1,18 @@
1
import { z } from "../../zcli.ts";
2
3
-export const MachineAutoSnapshotFrequencySchema = z.enum([
4
- "hourly",
5
- "daily",
6
- "weekly",
7
- "monthly",
8
-]).optional();
+export const MachineAutoSnapshotFrequencySchema = z
+ .enum([
+ "hourly",
+ "daily",
+ "weekly",
+ "monthly",
9
+ ])
10
+ .optional();
11
-export const MachineRestorePointFrequencySchema = z.enum(["shutdown"])
12
+export const MachineRestorePointFrequencySchema = z
13
+ .enum(["shutdown"])
14
.optional();
15
-export const MachinePublicIpTypeSchema = z.enum(["static", "dynamic", "none"])
16
+export const MachinePublicIpTypeSchema = z
17
+ .enum(["static", "dynamic", "none"])
18
0 commit comments