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 = [
54
54
'ALL_TRAFFIC' ,
55
55
] as const ;
56
56
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
+
57
67
/**
58
68
* Scheduler retry options. Applies only to scheduled functions.
59
69
*/
@@ -111,6 +121,11 @@ export interface RuntimeOptions {
111
121
* Egress settings for VPC connector
112
122
*/
113
123
vpcConnectorEgressSettings ?: typeof VPC_EGRESS_SETTINGS_OPTIONS [ number ] ;
124
+
125
+ /**
126
+ * Ingress settings
127
+ */
128
+ ingressSettings ?: typeof INGRESS_SETTINGS_OPTIONS [ number ] ;
114
129
}
115
130
116
131
export interface DeploymentOptions extends RuntimeOptions {
You can’t perform that action at this time.
0 commit comments