Skip to content

Commit cff2ff4

Browse files
committed
fix: allow StringParam for vpc_connector typing
1 parent ad4b6bb commit cff2ff4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/firebase_functions/options.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1232,8 +1232,8 @@ def set_global_options(
12321232
max_instances: int | Expression[int] | _util.Sentinel | None = None,
12331233
concurrency: int | Expression[int] | _util.Sentinel | None = None,
12341234
cpu: int | _typing.Literal["gcf_gen1"] | _util.Sentinel = "gcf_gen1",
1235-
vpc_connector: str | None = None,
1236-
vpc_connector_egress_settings: VpcEgressSetting | None = None,
1235+
vpc_connector: str | Expression[str] | _util.Sentinel | None = None,
1236+
vpc_connector_egress_settings: VpcEgressSetting | _util.Sentinel | None = None,
12371237
service_account: str | _util.Sentinel | None = None,
12381238
ingress: IngressSetting | _util.Sentinel | None = None,
12391239
labels: dict[str, str] | None = None,

0 commit comments

Comments
 (0)