File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -54,6 +54,16 @@ export const VPC_EGRESS_SETTINGS_OPTIONS = [
5454 'ALL_TRAFFIC' ,
5555] as const ;
5656
57+ /**
58+ * List of available options for IngressSettings.
59+ */
60+ export const INGRESS_SETTINGS_OPTIONS = [
61+ 'INGRESS_SETTINGS_UNSPECIFIED' ,
62+ 'ALLOW_ALL' ,
63+ 'ALLOW_INTERNAL_ONLY' ,
64+ 'ALLOW_INTERNAL_AND_GCLB' ,
65+ ] as const ;
66+
5767/**
5868 * Scheduler retry options. Applies only to scheduled functions.
5969 */
@@ -111,6 +121,11 @@ export interface RuntimeOptions {
111121 * Egress settings for VPC connector
112122 */
113123 vpcConnectorEgressSettings ?: typeof VPC_EGRESS_SETTINGS_OPTIONS [ number ] ;
124+
125+ /**
126+ * Ingress settings
127+ */
128+ ingressSettings ?: typeof INGRESS_SETTINGS_OPTIONS [ number ] ;
114129}
115130
116131export interface DeploymentOptions extends RuntimeOptions {
You can’t perform that action at this time.
0 commit comments