Perform a parallel step with the secondary workflow inlined

Includes the source code for a secondary workflow directly within the main workflow for easier readability.

Explore further

For detailed documentation that includes this code sample, see the following:

Code sample

YAML

  main 
 : 
  
 params 
 : 
  
 [ 
 args 
 ] 
  
 steps 
 : 
  
 - 
  
 init 
 : 
  
 assign 
 : 
  
 - 
  
 workflow_id 
 : 
  
 "translate" 
  
 - 
  
 texts_to_translate 
 : 
  
 - 
  
 text 
 : 
  
 "hello 
  
 world!" 
  
 source 
 : 
  
 "en" 
  
 target 
 : 
  
 "fr" 
  
 - 
  
 text 
 : 
  
 "你好 
  
 世界!" 
  
 source 
 : 
  
 "zh-CN" 
  
 target 
 : 
  
 "en" 
  
 - 
  
 text 
 : 
  
 "No 
  
 hablo 
  
 español!" 
  
 source 
 : 
  
 "es" 
  
 target 
 : 
  
 "en" 
  
 - 
  
 translated 
 : 
  
 [ 
 "" 
 , 
  
 "" 
 , 
  
 "" 
 ] 
  
 - 
  
 parallel_translate 
 : 
  
 parallel 
 : 
  
 shared 
 : 
  
 [ 
 translated 
 ] 
  
 # to write to this variable, you must share it 
  
 for 
 : 
  
 range 
 : 
  
 ${[0, len(texts_to_translate) - 1]} 
  
 value 
 : 
  
 i 
  
 steps 
 : 
  
 - 
  
 basic_translate 
 : 
  
 call 
 : 
  
 googleapis.translate.v2.translations.translate 
  
 args 
 : 
  
 body 
 : 
  
 q 
 : 
  
 ${args.text} 
  
 target 
 : 
  
 ${args.target} 
  
 format 
 : 
  
 "text" 
  
 source 
 : 
  
 ${args.source} 
  
 result 
 : 
  
 r 
  
 - 
  
 set_result 
 : 
  
 assign 
 : 
  
 - 
  
 translated[i] 
 : 
  
 ${r} 
  
 - 
  
 return 
 : 
  
 return 
 : 
  
 ${translated} 
 

What's next

To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser .

Create a Mobile Website
View Site in Mobile | Classic
Share by: