File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -36,10 +36,13 @@ import { ManifestEndpoint } from '../runtime/manifest';
36
36
* List of all regions supported by Cloud Functions v2
37
37
*/
38
38
export const SUPPORTED_REGIONS = [
39
- 'us-west1' ,
40
- 'us-central1' ,
41
- 'europe-west4' ,
42
39
'asia-northeast1' ,
40
+ 'europe-north1' ,
41
+ 'europe-west1' ,
42
+ 'europe-west4' ,
43
+ 'us-central1' ,
44
+ 'us-east1' ,
45
+ 'us-west1' ,
43
46
] as const ;
44
47
45
48
/**
@@ -71,21 +74,27 @@ export const MAX_CONCURRENCY = 1_000;
71
74
* List of available memory options supported by Cloud Functions.
72
75
*/
73
76
export const SUPPORTED_MEMORY_OPTIONS = [
77
+ '128MB' ,
74
78
'256MB' ,
75
79
'512MB' ,
76
80
'1GB' ,
77
81
'2GB' ,
78
82
'4GB' ,
79
83
'8GB' ,
84
+ '16GB' ,
85
+ '32GB' ,
80
86
] as const ;
81
87
82
88
const MemoryOptionToMB : Record < MemoryOption , number > = {
89
+ '128MB' : 128 ,
83
90
'256MB' : 256 ,
84
91
'512MB' : 512 ,
85
92
'1GB' : 1024 ,
86
93
'2GB' : 2048 ,
87
94
'4GB' : 4096 ,
88
95
'8GB' : 8192 ,
96
+ '16GB' : 16384 ,
97
+ '32GB' : 32768 ,
89
98
} ;
90
99
91
100
/**
You can’t perform that action at this time.
0 commit comments