You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- <a name="__input_runtime"></a><a href="#user-content-__input_runtime"><code>runtime</code></a>: _(Required)_ Runtime for the function, such as "nodejs20". For a list of all available
131
126
runtimes, run:
132
127
133
-
$ gcloud functions runtimes list
128
+
```sh
129
+
$ gcloud functions runtimes list
130
+
```
134
131
135
132
The available runtimes change over time.
136
133
@@ -160,10 +157,10 @@ jobs:
160
157
- <a name="__input_build_worker_pool"></a><a href="#user-content-__input_build_worker_pool"><code>build_worker_pool</code></a>: _(Optional)_ Name of the Cloud Build Custom Worker Pool that should be used to build
Cross-project repositories are not supported. Cross-location repositories
183
180
are not supported. Repository format must be 'DOCKER'.
@@ -240,7 +237,6 @@ jobs:
240
237
volumes. Keys starting with a forward slash '/' are mount paths. All other
241
238
keys correspond to environment variables:
242
239
243
-
244
240
```yaml
245
241
with:
246
242
secrets: |-
@@ -283,11 +279,15 @@ jobs:
283
279
- <a name="__input_event_trigger_type"></a><a href="#user-content-__input_event_trigger_type"><code>event_trigger_type</code></a>: _(Optional)_ Specifies which action should trigger the function. For a list of
284
280
acceptable values, run:
285
281
286
-
$ gcloud functions event-types list
282
+
```sh
283
+
$ gcloud functions event-types list
284
+
```
287
285
288
286
This usually requires the eventarc API to be enabled:
289
287
290
-
$ gcloud services enable eventarc.googleapis.com
288
+
```sh
289
+
$ gcloud services enable eventarc.googleapis.com
290
+
```
291
291
292
292
The available trigger types may change over time.
293
293
@@ -319,7 +319,7 @@ jobs:
319
319
will trigger function execution with message contents passed as input
320
320
data of the format:
321
321
322
-
projects/<project_id>/topics/<topic_id>
322
+
projects/[PROJECT]/topics/[TOPIC]
323
323
324
324
The service account must have permissions on this topic.
325
325
@@ -331,7 +331,7 @@ jobs:
331
331
332
332
- <a name="__input_event_trigger_channel"></a><a href="#user-content-__input_event_trigger_channel"><code>event_trigger_channel</code></a>: _(Optional)_ The name of the channel associated with the trigger in the format:
0 commit comments