|
30 | 30 | "pattern": "^[^:\\s]+:[^:\\s]+(:[^\\s]+)?$"
|
31 | 31 | },
|
32 | 32 | "ssr": {
|
33 |
| - "type": ["boolean", "string"], |
| 33 | + "oneOf": [{ "type": "boolean" }, { "type": "string" }], |
34 | 34 | "description": "Should we attempt to deploy the function to Cloud Functions (true or 'cloud-functions') / Cloud Run ('cloud-run') or just Hosting (false)"
|
35 | 35 | },
|
36 | 36 | "prerender": {
|
|
54 | 54 | "description": "The name of the Cloud Function or Cloud Run serviceId to deploy SSR to"
|
55 | 55 | },
|
56 | 56 | "functionsNodeVersion": {
|
57 |
| - "type": ["number", "string"], |
| 57 | + "oneOf": [{ "type": "number" }, { "type": "string" }], |
58 | 58 | "description": "Version of Node.js to run Cloud Functions / Run on"
|
59 | 59 | },
|
60 | 60 | "region": {
|
|
82 | 82 | "description": "Set a CPU limit in Kubernetes cpu units."
|
83 | 83 | },
|
84 | 84 | "maxConcurrency": {
|
85 |
| - "type": ["number", "string"], |
| 85 | + "oneOf": [{ "type": "number" }, { "type": "string" }], |
86 | 86 | "pattern": "^(\\d+|default)$",
|
87 | 87 | "description": "Set the maximum number of concurrent requests allowed per container instance. If concurrency is unspecified, any number of concurrent requests are allowed. To unset this field, provide the special value default."
|
88 | 88 | },
|
89 | 89 | "maxInstances": {
|
90 |
| - "type": ["number", "string"], |
| 90 | + "oneOf": [{ "type": "number" }, { "type": "string" }], |
91 | 91 | "pattern": "^(\\d+|default)$",
|
92 | 92 | "description": "The maximum number of container instances of the Service to run. Use 'default' to unset the limit and use the platform default."
|
93 | 93 | },
|
|
97 | 97 | "description": "Set a memory limit. Ex: 1Gi, 512Mi."
|
98 | 98 | },
|
99 | 99 | "minInstances": {
|
100 |
| - "type": ["number", "string"], |
| 100 | + "oneOf": [{ "type": "number" }, { "type": "string" }], |
101 | 101 | "pattern": "^(\\d+|default)$",
|
102 | 102 | "description": "The minimum number of container instances of the Service to run or 'default' to remove any minimum."
|
103 | 103 | },
|
|
0 commit comments