Skip to content

Commit 23fcf16

Browse files
committed
Undo accidental code deletion.
1 parent d661e7c commit 23fcf16

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

spec/fixtures.ts

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { ManifestEndpoint } from "../src/runtime/manifest";
22
import { RESET_VALUE } from "../src/common/options";
33

4-
export const MINIMAL_ENDPOINT: Partial<ManifestEndpoint> = {
4+
export const MINIMAL_ENDPOINT: ManifestEndpoint = {
55
availableMemoryMb: RESET_VALUE,
66
concurrency: RESET_VALUE,
77
ingressSettings: RESET_VALUE,
@@ -14,3 +14,23 @@ export const MINIMAL_ENDPOINT: Partial<ManifestEndpoint> = {
1414
egressSettings: RESET_VALUE,
1515
},
1616
};
17+
18+
export const FULL_ENDPOINT: ManifestEndpoint = {
19+
region: ["us-west1"],
20+
availableMemoryMb: 512,
21+
timeoutSeconds: 60,
22+
minInstances: 1,
23+
maxInstances: 3,
24+
concurrency: 20,
25+
vpc: {
26+
connector: "aConnector",
27+
egressSettings: "ALL_TRAFFIC",
28+
},
29+
serviceAccountEmail: "root@",
30+
ingressSettings: "ALLOW_ALL",
31+
cpu: "gcf_gen1",
32+
labels: {
33+
hello: "world",
34+
},
35+
secretEnvironmentVariables: [{ key: "MY_SECRET" }],
36+
};

0 commit comments

Comments
 (0)