File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -481,12 +481,14 @@ function _detectAuthType(event: Event) {
481
481
}
482
482
483
483
const RESETTABLE_OPTIONS : ResettableKeys < DeploymentOptions > = {
484
+ ingressSettings : null ,
485
+ maxInstances : null ,
484
486
memory : null ,
485
- timeoutSeconds : null ,
486
487
minInstances : null ,
487
- maxInstances : null ,
488
- vpcConnector : null ,
489
488
serviceAccount : null ,
489
+ timeoutSeconds : null ,
490
+ vpcConnector : null ,
491
+ vpcConnectorEgressSettings : null ,
490
492
} ;
491
493
492
494
/** @internal */
Original file line number Diff line number Diff line change 23
23
import * as express from "express" ;
24
24
25
25
import { copyIfPresent } from "../../common/encoding" ;
26
+ import { ResetValue } from "../../common/options" ;
26
27
import { timezone } from "../../common/timezone" ;
27
28
import { ManifestEndpoint , ManifestRequiredAPI } from "../../runtime/manifest" ;
28
29
import { HttpsFunction } from "./https" ;
@@ -31,7 +32,6 @@ import * as logger from "../../logger";
31
32
import * as options from "../options" ;
32
33
import { RESET_VALUE } from "../options" ;
33
34
import { Expression } from "../../params" ;
34
- import { ResetValue } from "../../../lib/common/options" ;
35
35
36
36
/** @hidden */
37
37
interface ScheduleArgs {
You can’t perform that action at this time.
0 commit comments