├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md ├── header-checker-lint.yml ├── snippet-bot.yml ├── sync-repo-settings.yaml └── workflows │ ├── check_filename.yaml │ ├── generate_json_pr.yaml │ ├── lint_yaml.yaml │ ├── periodic-reporter.yaml │ ├── validate_jsonschema.yaml │ └── validate_syntax.yaml ├── .gitignore ├── .yamllint ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── functions └── datetime │ ├── README.md │ ├── main.py │ └── requirements.txt ├── jsonschema ├── README.md └── workflows.json ├── nightly.tests.cloudbuild.yaml ├── pr.tests.cloudbuild.yaml ├── renovate.json ├── src ├── args.workflows.json ├── args.workflows.yaml ├── array.workflows.json ├── array.workflows.yaml ├── bigquery_pagetoken.workflows.json ├── bigquery_pagetoken.workflows.yaml ├── connect_compute_engine.workflows.json ├── connect_compute_engine.workflows.yaml ├── connect_firestore_read.workflows.json ├── connect_firestore_read.workflows.yaml ├── connect_firestore_write.workflows.json ├── connect_firestore_write.workflows.yaml ├── connect_functions.workflows.json ├── connect_functions.workflows.yaml ├── connect_kubernetes_api_request.workflows.json ├── connect_kubernetes_api_request.workflows.yaml ├── connect_kubernetes_api_run_job.workflows.json ├── connect_kubernetes_api_run_job.workflows.yaml ├── connect_run.workflows.json ├── connect_run.workflows.yaml ├── connect_translate.workflows.json ├── connect_translate.workflows.yaml ├── connector_access_secret.workflows.json ├── connector_access_secret.workflows.yaml ├── connector_publish_pubsub.workflows.json ├── connector_publish_pubsub.workflows.yaml ├── connector_read_firestore.workflows.json ├── connector_read_firestore.workflows.yaml ├── connector_schedule_tasks.workflows.json ├── connector_schedule_tasks.workflows.yaml ├── connector_start_compute_engine.workflows.json ├── connector_start_compute_engine.workflows.yaml ├── connector_stop_compute_engine.workflows.json ├── connector_stop_compute_engine.workflows.yaml ├── connector_write_firestore.workflows.json ├── connector_write_firestore.workflows.yaml ├── connector_write_sheets.workflows.json ├── connector_write_sheets.workflows.yaml ├── connectors │ ├── connector_aiplatform.workflows.json │ ├── connector_aiplatform.workflows.yaml │ ├── connector_batch.workflows.json │ ├── connector_batch.workflows.yaml │ ├── connector_bigquery.workflows.json │ ├── connector_bigquery.workflows.yaml │ ├── connector_bigquerydatatransfer.workflows.json │ ├── connector_bigquerydatatransfer.workflows.yaml │ ├── connector_cloudbuild.workflows.json │ ├── connector_cloudbuild.workflows.yaml │ ├── connector_cloudfunctions.workflows.json │ ├── connector_cloudfunctions.workflows.yaml │ ├── connector_cloudresourcemanager.workflows.json │ ├── connector_cloudresourcemanager.workflows.yaml │ ├── connector_cloudscheduler.workflows.json │ ├── connector_cloudscheduler.workflows.yaml │ ├── connector_cloudtasks.workflows.json │ ├── connector_cloudtasks.workflows.yaml │ ├── connector_compute.workflows.json │ ├── connector_compute.workflows.yaml │ ├── connector_container.workflows.json │ ├── connector_container.workflows.yaml │ ├── connector_dataflow.workflows.json │ ├── connector_dataflow.workflows.yaml │ ├── connector_documentai.workflows.json │ ├── connector_documentai.workflows.yaml │ ├── connector_firestore.workflows.json │ ├── connector_firestore.workflows.yaml │ ├── connector_forms.workflows.json │ ├── connector_forms.workflows.yaml │ ├── connector_gce.workflows.json │ ├── connector_gce.workflows.yaml │ ├── connector_gke.workflows.json │ ├── connector_gke.workflows.yaml │ ├── connector_integrations.workflows.json │ ├── connector_integrations.workflows.yaml │ ├── connector_language.workflows.json │ ├── connector_language.workflows.yaml │ ├── connector_ml.workflows.json │ ├── connector_ml.workflows.yaml │ ├── connector_pubsub.workflows.json │ ├── connector_pubsub.workflows.yaml │ ├── connector_run.workflows.json │ ├── connector_run.workflows.yaml │ ├── connector_secretmanager.workflows.json │ ├── connector_secretmanager.workflows.yaml │ ├── connector_sheets.workflows.json │ ├── connector_sheets.workflows.yaml │ ├── connector_spanner.workflows.json │ ├── connector_spanner.workflows.yaml │ ├── connector_sqladmin.workflows.json │ ├── connector_sqladmin.workflows.yaml │ ├── connector_storage.workflows.json │ ├── connector_storage.workflows.yaml │ ├── connector_storagetransfer.workflows.json │ ├── connector_storagetransfer.workflows.yaml │ ├── connector_transcoder.workflows.json │ ├── connector_transcoder.workflows.yaml │ ├── connector_translate.workflows.json │ ├── connector_translate.workflows.yaml │ ├── connector_workflowexecutions.workflows.json │ ├── connector_workflowexecutions.workflows.yaml │ ├── connector_workflows.workflows.json │ └── connector_workflows.workflows.yaml ├── dictionary.workflows.json ├── dictionary.workflows.yaml ├── error_catch.workflows.json ├── error_catch.workflows.yaml ├── error_retry.workflows.json ├── error_retry.workflows.yaml ├── error_retry_500.workflows.json ├── error_retry_500.workflows.yaml ├── error_retry_custom.workflows.json ├── error_retry_custom.workflows.yaml ├── error_retry_http_other.workflows.json ├── error_retry_http_other.workflows.yaml ├── error_retry_http_status.workflows.json ├── error_retry_http_status.workflows.yaml ├── error_retry_predicate.workflows.json ├── error_retry_predicate.workflows.yaml ├── expression.workflows.json ├── expression.workflows.yaml ├── http_get.workflows.json ├── http_get.workflows.yaml ├── http_post.workflows.json ├── http_post.workflows.yaml ├── iterate_for_in_http.workflows.json ├── iterate_for_in_http.workflows.yaml ├── iterate_for_range.workflows.json ├── iterate_for_range.workflows.yaml ├── iterate_for_range_http.workflows.json ├── iterate_for_range_http.workflows.yaml ├── iterate_googleapis_translate.workflows.json ├── iterate_googleapis_translate.workflows.yaml ├── iterate_list.workflows.json ├── iterate_list.workflows.yaml ├── iterate_map.workflows.json ├── iterate_map.workflows.yaml ├── list.workflows.json ├── list.workflows.yaml ├── list_reverse.workflows.json ├── list_reverse.workflows.yaml ├── loop_scope.workflows.json ├── loop_scope.workflows.yaml ├── myFirstWorkflow.workflows.json ├── myFirstWorkflow.workflows.yaml ├── parallel_aggregate.workflows.json ├── parallel_aggregate.workflows.yaml ├── parallel_branch.workflows.json ├── parallel_branch.workflows.yaml ├── parallel_error_handling.workflows.json ├── parallel_error_handling.workflows.yaml ├── parallel_for_in.workflows.json ├── parallel_for_in.workflows.yaml ├── parallel_for_range.workflows.json ├── parallel_for_range.workflows.yaml ├── parallel_inline.workflows.json ├── parallel_inline.workflows.yaml ├── parallel_iteration.workflows.json ├── parallel_iteration.workflows.yaml ├── parallel_loop.workflows.json ├── parallel_loop.workflows.yaml ├── parallel_operations.workflows.json ├── parallel_operations.workflows.yaml ├── parallel_shared_variables.workflows.json ├── parallel_shared_variables.workflows.yaml ├── quickstart.workflows.json ├── quickstart.workflows.yaml ├── step_conditional_jump.workflows.json ├── step_conditional_jump.workflows.yaml ├── step_conditional_weekend.workflows.json ├── step_conditional_weekend.workflows.yaml ├── step_explicit.workflows.json ├── step_explicit.workflows.yaml ├── step_implicit.workflows.json ├── step_implicit.workflows.yaml ├── step_iterate.workflows.json ├── step_iterate.workflows.yaml ├── step_switch_embedded.workflows.json ├── step_switch_embedded.workflows.yaml ├── subworkflow.workflows.json ├── subworkflow.workflows.yaml ├── vars.workflows.json ├── vars.workflows.yaml ├── vision_annotation.workflows.json └── vision_annotation.workflows.yaml └── tools ├── tojson.sh └── validateFilenames.sh /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/header-checker-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/.github/header-checker-lint.yml -------------------------------------------------------------------------------- /.github/snippet-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/.github/snippet-bot.yml -------------------------------------------------------------------------------- /.github/sync-repo-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/.github/sync-repo-settings.yaml -------------------------------------------------------------------------------- /.github/workflows/check_filename.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/.github/workflows/check_filename.yaml -------------------------------------------------------------------------------- /.github/workflows/generate_json_pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/.github/workflows/generate_json_pr.yaml -------------------------------------------------------------------------------- /.github/workflows/lint_yaml.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/.github/workflows/lint_yaml.yaml -------------------------------------------------------------------------------- /.github/workflows/periodic-reporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/.github/workflows/periodic-reporter.yaml -------------------------------------------------------------------------------- /.github/workflows/validate_jsonschema.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/.github/workflows/validate_jsonschema.yaml -------------------------------------------------------------------------------- /.github/workflows/validate_syntax.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/.github/workflows/validate_syntax.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/.yamllint -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/SECURITY.md -------------------------------------------------------------------------------- /functions/datetime/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/functions/datetime/README.md -------------------------------------------------------------------------------- /functions/datetime/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/functions/datetime/main.py -------------------------------------------------------------------------------- /functions/datetime/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/functions/datetime/requirements.txt -------------------------------------------------------------------------------- /jsonschema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/jsonschema/README.md -------------------------------------------------------------------------------- /jsonschema/workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/jsonschema/workflows.json -------------------------------------------------------------------------------- /nightly.tests.cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/nightly.tests.cloudbuild.yaml -------------------------------------------------------------------------------- /pr.tests.cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/pr.tests.cloudbuild.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/renovate.json -------------------------------------------------------------------------------- /src/args.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/args.workflows.json -------------------------------------------------------------------------------- /src/args.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/args.workflows.yaml -------------------------------------------------------------------------------- /src/array.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/array.workflows.json -------------------------------------------------------------------------------- /src/array.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/array.workflows.yaml -------------------------------------------------------------------------------- /src/bigquery_pagetoken.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/bigquery_pagetoken.workflows.json -------------------------------------------------------------------------------- /src/bigquery_pagetoken.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/bigquery_pagetoken.workflows.yaml -------------------------------------------------------------------------------- /src/connect_compute_engine.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connect_compute_engine.workflows.json -------------------------------------------------------------------------------- /src/connect_compute_engine.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connect_compute_engine.workflows.yaml -------------------------------------------------------------------------------- /src/connect_firestore_read.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connect_firestore_read.workflows.json -------------------------------------------------------------------------------- /src/connect_firestore_read.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connect_firestore_read.workflows.yaml -------------------------------------------------------------------------------- /src/connect_firestore_write.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connect_firestore_write.workflows.json -------------------------------------------------------------------------------- /src/connect_firestore_write.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connect_firestore_write.workflows.yaml -------------------------------------------------------------------------------- /src/connect_functions.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connect_functions.workflows.json -------------------------------------------------------------------------------- /src/connect_functions.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connect_functions.workflows.yaml -------------------------------------------------------------------------------- /src/connect_kubernetes_api_request.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connect_kubernetes_api_request.workflows.json -------------------------------------------------------------------------------- /src/connect_kubernetes_api_request.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connect_kubernetes_api_request.workflows.yaml -------------------------------------------------------------------------------- /src/connect_kubernetes_api_run_job.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connect_kubernetes_api_run_job.workflows.json -------------------------------------------------------------------------------- /src/connect_kubernetes_api_run_job.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connect_kubernetes_api_run_job.workflows.yaml -------------------------------------------------------------------------------- /src/connect_run.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connect_run.workflows.json -------------------------------------------------------------------------------- /src/connect_run.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connect_run.workflows.yaml -------------------------------------------------------------------------------- /src/connect_translate.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connect_translate.workflows.json -------------------------------------------------------------------------------- /src/connect_translate.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connect_translate.workflows.yaml -------------------------------------------------------------------------------- /src/connector_access_secret.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connector_access_secret.workflows.json -------------------------------------------------------------------------------- /src/connector_access_secret.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connector_access_secret.workflows.yaml -------------------------------------------------------------------------------- /src/connector_publish_pubsub.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connector_publish_pubsub.workflows.json -------------------------------------------------------------------------------- /src/connector_publish_pubsub.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connector_publish_pubsub.workflows.yaml -------------------------------------------------------------------------------- /src/connector_read_firestore.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connector_read_firestore.workflows.json -------------------------------------------------------------------------------- /src/connector_read_firestore.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connector_read_firestore.workflows.yaml -------------------------------------------------------------------------------- /src/connector_schedule_tasks.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connector_schedule_tasks.workflows.json -------------------------------------------------------------------------------- /src/connector_schedule_tasks.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connector_schedule_tasks.workflows.yaml -------------------------------------------------------------------------------- /src/connector_start_compute_engine.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connector_start_compute_engine.workflows.json -------------------------------------------------------------------------------- /src/connector_start_compute_engine.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connector_start_compute_engine.workflows.yaml -------------------------------------------------------------------------------- /src/connector_stop_compute_engine.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connector_stop_compute_engine.workflows.json -------------------------------------------------------------------------------- /src/connector_stop_compute_engine.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connector_stop_compute_engine.workflows.yaml -------------------------------------------------------------------------------- /src/connector_write_firestore.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connector_write_firestore.workflows.json -------------------------------------------------------------------------------- /src/connector_write_firestore.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connector_write_firestore.workflows.yaml -------------------------------------------------------------------------------- /src/connector_write_sheets.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connector_write_sheets.workflows.json -------------------------------------------------------------------------------- /src/connector_write_sheets.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connector_write_sheets.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_aiplatform.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_aiplatform.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_aiplatform.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_aiplatform.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_batch.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_batch.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_batch.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_batch.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_bigquery.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_bigquery.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_bigquery.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_bigquery.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_bigquerydatatransfer.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_bigquerydatatransfer.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_bigquerydatatransfer.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_bigquerydatatransfer.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_cloudbuild.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_cloudbuild.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_cloudbuild.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_cloudbuild.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_cloudfunctions.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_cloudfunctions.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_cloudfunctions.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_cloudfunctions.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_cloudresourcemanager.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_cloudresourcemanager.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_cloudresourcemanager.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_cloudresourcemanager.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_cloudscheduler.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_cloudscheduler.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_cloudscheduler.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_cloudscheduler.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_cloudtasks.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_cloudtasks.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_cloudtasks.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_cloudtasks.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_compute.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_compute.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_compute.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_compute.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_container.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_container.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_container.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_container.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_dataflow.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_dataflow.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_dataflow.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_dataflow.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_documentai.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_documentai.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_documentai.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_documentai.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_firestore.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_firestore.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_firestore.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_firestore.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_forms.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_forms.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_forms.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_forms.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_gce.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_gce.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_gce.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_gce.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_gke.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_gke.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_gke.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_gke.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_integrations.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_integrations.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_integrations.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_integrations.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_language.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_language.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_language.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_language.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_ml.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_ml.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_ml.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_ml.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_pubsub.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_pubsub.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_pubsub.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_pubsub.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_run.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_run.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_run.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_run.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_secretmanager.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_secretmanager.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_secretmanager.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_secretmanager.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_sheets.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_sheets.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_sheets.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_sheets.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_spanner.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_spanner.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_spanner.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_spanner.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_sqladmin.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_sqladmin.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_sqladmin.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_sqladmin.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_storage.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_storage.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_storage.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_storage.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_storagetransfer.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_storagetransfer.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_storagetransfer.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_storagetransfer.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_transcoder.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_transcoder.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_transcoder.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_transcoder.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_translate.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_translate.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_translate.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_translate.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_workflowexecutions.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_workflowexecutions.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_workflowexecutions.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_workflowexecutions.workflows.yaml -------------------------------------------------------------------------------- /src/connectors/connector_workflows.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_workflows.workflows.json -------------------------------------------------------------------------------- /src/connectors/connector_workflows.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/connectors/connector_workflows.workflows.yaml -------------------------------------------------------------------------------- /src/dictionary.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/dictionary.workflows.json -------------------------------------------------------------------------------- /src/dictionary.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/dictionary.workflows.yaml -------------------------------------------------------------------------------- /src/error_catch.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/error_catch.workflows.json -------------------------------------------------------------------------------- /src/error_catch.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/error_catch.workflows.yaml -------------------------------------------------------------------------------- /src/error_retry.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/error_retry.workflows.json -------------------------------------------------------------------------------- /src/error_retry.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/error_retry.workflows.yaml -------------------------------------------------------------------------------- /src/error_retry_500.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/error_retry_500.workflows.json -------------------------------------------------------------------------------- /src/error_retry_500.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/error_retry_500.workflows.yaml -------------------------------------------------------------------------------- /src/error_retry_custom.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/error_retry_custom.workflows.json -------------------------------------------------------------------------------- /src/error_retry_custom.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/error_retry_custom.workflows.yaml -------------------------------------------------------------------------------- /src/error_retry_http_other.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/error_retry_http_other.workflows.json -------------------------------------------------------------------------------- /src/error_retry_http_other.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/error_retry_http_other.workflows.yaml -------------------------------------------------------------------------------- /src/error_retry_http_status.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/error_retry_http_status.workflows.json -------------------------------------------------------------------------------- /src/error_retry_http_status.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/error_retry_http_status.workflows.yaml -------------------------------------------------------------------------------- /src/error_retry_predicate.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/error_retry_predicate.workflows.json -------------------------------------------------------------------------------- /src/error_retry_predicate.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/error_retry_predicate.workflows.yaml -------------------------------------------------------------------------------- /src/expression.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/expression.workflows.json -------------------------------------------------------------------------------- /src/expression.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/expression.workflows.yaml -------------------------------------------------------------------------------- /src/http_get.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/http_get.workflows.json -------------------------------------------------------------------------------- /src/http_get.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/http_get.workflows.yaml -------------------------------------------------------------------------------- /src/http_post.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/http_post.workflows.json -------------------------------------------------------------------------------- /src/http_post.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/http_post.workflows.yaml -------------------------------------------------------------------------------- /src/iterate_for_in_http.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/iterate_for_in_http.workflows.json -------------------------------------------------------------------------------- /src/iterate_for_in_http.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/iterate_for_in_http.workflows.yaml -------------------------------------------------------------------------------- /src/iterate_for_range.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/iterate_for_range.workflows.json -------------------------------------------------------------------------------- /src/iterate_for_range.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/iterate_for_range.workflows.yaml -------------------------------------------------------------------------------- /src/iterate_for_range_http.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/iterate_for_range_http.workflows.json -------------------------------------------------------------------------------- /src/iterate_for_range_http.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/iterate_for_range_http.workflows.yaml -------------------------------------------------------------------------------- /src/iterate_googleapis_translate.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/iterate_googleapis_translate.workflows.json -------------------------------------------------------------------------------- /src/iterate_googleapis_translate.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/iterate_googleapis_translate.workflows.yaml -------------------------------------------------------------------------------- /src/iterate_list.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/iterate_list.workflows.json -------------------------------------------------------------------------------- /src/iterate_list.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/iterate_list.workflows.yaml -------------------------------------------------------------------------------- /src/iterate_map.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/iterate_map.workflows.json -------------------------------------------------------------------------------- /src/iterate_map.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/iterate_map.workflows.yaml -------------------------------------------------------------------------------- /src/list.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/list.workflows.json -------------------------------------------------------------------------------- /src/list.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/list.workflows.yaml -------------------------------------------------------------------------------- /src/list_reverse.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/list_reverse.workflows.json -------------------------------------------------------------------------------- /src/list_reverse.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/list_reverse.workflows.yaml -------------------------------------------------------------------------------- /src/loop_scope.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/loop_scope.workflows.json -------------------------------------------------------------------------------- /src/loop_scope.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/loop_scope.workflows.yaml -------------------------------------------------------------------------------- /src/myFirstWorkflow.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/myFirstWorkflow.workflows.json -------------------------------------------------------------------------------- /src/myFirstWorkflow.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/myFirstWorkflow.workflows.yaml -------------------------------------------------------------------------------- /src/parallel_aggregate.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/parallel_aggregate.workflows.json -------------------------------------------------------------------------------- /src/parallel_aggregate.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/parallel_aggregate.workflows.yaml -------------------------------------------------------------------------------- /src/parallel_branch.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/parallel_branch.workflows.json -------------------------------------------------------------------------------- /src/parallel_branch.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/parallel_branch.workflows.yaml -------------------------------------------------------------------------------- /src/parallel_error_handling.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/parallel_error_handling.workflows.json -------------------------------------------------------------------------------- /src/parallel_error_handling.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/parallel_error_handling.workflows.yaml -------------------------------------------------------------------------------- /src/parallel_for_in.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/parallel_for_in.workflows.json -------------------------------------------------------------------------------- /src/parallel_for_in.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/parallel_for_in.workflows.yaml -------------------------------------------------------------------------------- /src/parallel_for_range.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/parallel_for_range.workflows.json -------------------------------------------------------------------------------- /src/parallel_for_range.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/parallel_for_range.workflows.yaml -------------------------------------------------------------------------------- /src/parallel_inline.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/parallel_inline.workflows.json -------------------------------------------------------------------------------- /src/parallel_inline.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/parallel_inline.workflows.yaml -------------------------------------------------------------------------------- /src/parallel_iteration.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/parallel_iteration.workflows.json -------------------------------------------------------------------------------- /src/parallel_iteration.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/parallel_iteration.workflows.yaml -------------------------------------------------------------------------------- /src/parallel_loop.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/parallel_loop.workflows.json -------------------------------------------------------------------------------- /src/parallel_loop.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/parallel_loop.workflows.yaml -------------------------------------------------------------------------------- /src/parallel_operations.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/parallel_operations.workflows.json -------------------------------------------------------------------------------- /src/parallel_operations.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/parallel_operations.workflows.yaml -------------------------------------------------------------------------------- /src/parallel_shared_variables.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/parallel_shared_variables.workflows.json -------------------------------------------------------------------------------- /src/parallel_shared_variables.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/parallel_shared_variables.workflows.yaml -------------------------------------------------------------------------------- /src/quickstart.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/quickstart.workflows.json -------------------------------------------------------------------------------- /src/quickstart.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/quickstart.workflows.yaml -------------------------------------------------------------------------------- /src/step_conditional_jump.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/step_conditional_jump.workflows.json -------------------------------------------------------------------------------- /src/step_conditional_jump.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/step_conditional_jump.workflows.yaml -------------------------------------------------------------------------------- /src/step_conditional_weekend.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/step_conditional_weekend.workflows.json -------------------------------------------------------------------------------- /src/step_conditional_weekend.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/step_conditional_weekend.workflows.yaml -------------------------------------------------------------------------------- /src/step_explicit.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/step_explicit.workflows.json -------------------------------------------------------------------------------- /src/step_explicit.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/step_explicit.workflows.yaml -------------------------------------------------------------------------------- /src/step_implicit.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/step_implicit.workflows.json -------------------------------------------------------------------------------- /src/step_implicit.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/step_implicit.workflows.yaml -------------------------------------------------------------------------------- /src/step_iterate.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/step_iterate.workflows.json -------------------------------------------------------------------------------- /src/step_iterate.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/step_iterate.workflows.yaml -------------------------------------------------------------------------------- /src/step_switch_embedded.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/step_switch_embedded.workflows.json -------------------------------------------------------------------------------- /src/step_switch_embedded.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/step_switch_embedded.workflows.yaml -------------------------------------------------------------------------------- /src/subworkflow.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/subworkflow.workflows.json -------------------------------------------------------------------------------- /src/subworkflow.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/subworkflow.workflows.yaml -------------------------------------------------------------------------------- /src/vars.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/vars.workflows.json -------------------------------------------------------------------------------- /src/vars.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/vars.workflows.yaml -------------------------------------------------------------------------------- /src/vision_annotation.workflows.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/vision_annotation.workflows.json -------------------------------------------------------------------------------- /src/vision_annotation.workflows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/src/vision_annotation.workflows.yaml -------------------------------------------------------------------------------- /tools/tojson.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/tools/tojson.sh -------------------------------------------------------------------------------- /tools/validateFilenames.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/workflows-samples/HEAD/tools/validateFilenames.sh --------------------------------------------------------------------------------