Skip to content

Commit 4d525f4

Browse files
authored
fix: Use list(string) instead of tuple for some of the output variables (#380)
1 parent 58f6698 commit 4d525f4

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

metadata.yaml

+14-14
Original file line numberDiff line numberDiff line change
@@ -342,41 +342,41 @@ spec:
342342
- name: external_table_ids
343343
description: Unique IDs for any external tables being provisioned
344344
type:
345-
- tuple
346-
- []
345+
- list
346+
- string
347347
- name: external_table_names
348348
description: Friendly names for any external tables being provisioned
349349
type:
350-
- tuple
351-
- []
350+
- list
351+
- string
352352
- name: project
353353
description: Project where the dataset and tables are created
354354
type: string
355355
- name: routine_ids
356356
description: Unique IDs for any routine being provisioned
357357
type:
358-
- tuple
359-
- []
358+
- list
359+
- string
360360
- name: table_ids
361361
description: Unique id for the table being provisioned
362362
type:
363-
- tuple
364-
- []
363+
- list
364+
- string
365365
- name: table_names
366366
description: Friendly name for the table being provisioned
367367
type:
368-
- tuple
369-
- []
368+
- list
369+
- string
370370
- name: view_ids
371371
description: Unique id for the view being provisioned
372372
type:
373-
- tuple
374-
- []
373+
- list
374+
- string
375375
- name: view_names
376376
description: friendlyname for the view being provisioned
377377
type:
378-
- tuple
379-
- []
378+
- list
379+
- string
380380
requirements:
381381
roles:
382382
- level: Project

0 commit comments

Comments
 (0)