使用嵌入式 switch 语句执行步骤

使用切换结构在满足某个条件时直接执行步骤,而无需跳转至其他步骤。

深入探索

如需查看包含此代码示例的详细文档,请参阅以下内容:

代码示例

YAML

- step1:
    assign:
      - a: 1
- step2:
    switch:
      - condition: ${a==1}
        steps:
          - stepA:
              assign:
                - a: ${a+7}
          - stepB:
              return: ${"increase a to:"+string(a)}
- step3:
    return: ${"default a="+string(a)}

后续步骤

如需搜索和过滤其他 Google Cloud 产品的代码示例,请参阅 Google Cloud 示例浏览器