gitextract_rgftideu/ ├── .github/ │ └── sync-repo-settings.yaml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── batch-translation/ │ ├── README.md │ └── workflow.yaml ├── bigquery-parallel/ │ ├── README.md │ ├── workflow-parallel.yaml │ └── workflow-serial.yaml ├── bigtable-ai/ │ └── vertex-vector-search/ │ ├── tests/ │ │ ├── noxfile.py │ │ ├── requirements.txt │ │ └── system/ │ │ ├── workflow-input.json │ │ └── workflow-test.py │ └── workflows/ │ ├── README.md │ ├── batch-export.yaml │ └── sample-batch-input.json ├── callback-basic/ │ ├── README.md │ ├── workflow-get.yaml │ └── workflow-post.yaml ├── callback-event/ │ ├── README.md │ ├── architecture.drawio │ ├── callback-event-listener.yaml │ ├── callback-event-sample.yaml │ └── setup.sh ├── callback-translation/ │ ├── README.MD │ ├── architecture-translation.drawio │ ├── invokeTranslationWorkflow/ │ │ ├── index.js │ │ └── package.json │ ├── public/ │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ ├── translation-validation.yaml │ └── translationCallbackCall/ │ ├── index.js │ └── package.json ├── cloud-run-jobs/ │ ├── README.md │ └── workflow.yaml ├── cloud-run-jobs-payload-gcs/ │ ├── README.md │ ├── create-trigger.sh │ ├── deploy-workflow.sh │ ├── message-payload-job/ │ │ ├── Procfile │ │ ├── deploy-job.sh │ │ ├── process.py │ │ └── requirements.txt │ └── workflow.yaml ├── connector-compute/ │ ├── README.md │ ├── create-stop-vm-connector.yaml │ ├── create-vm-connector.yaml │ ├── create-vm.yaml │ └── stop-vm.yaml ├── gcs-dlp/ │ ├── README.md │ ├── dlp-gcs-workflow.yaml │ └── functions/ │ ├── get_dlp_job_status.py │ ├── inspect_gcs_file.py │ └── trigger-dlp-workflow.py ├── gcs-read-write-json/ │ ├── README.md │ ├── gcs-env-var-workflow.yaml │ ├── gcs-read-workflow.yaml │ └── gcs-write-workflow.yaml ├── gitops/ │ ├── README.md │ ├── cloudbuild.yaml │ ├── images/ │ │ └── architecture.drawio │ ├── setup.sh │ ├── test-master.sh │ ├── test-staging.sh │ └── workflow.yaml ├── long-running-container/ │ ├── PrimeGenService/ │ │ ├── Controllers/ │ │ │ └── PrimeGenController.cs │ │ ├── Dockerfile │ │ ├── PrimeGenService.csproj │ │ └── Program.cs │ ├── README.md │ └── prime-generator.yaml ├── multi-env-deployment/ │ ├── README.md │ ├── cloudbuild.yaml │ ├── images/ │ │ └── architecture.drawio │ ├── main.tf │ ├── setup.sh │ ├── workflow1.yaml │ ├── workflow2.yaml │ └── workflow3.yaml ├── reddit-sentiment/ │ ├── README.md │ └── workflow.yaml ├── retries-and-saga/ │ ├── CustomerService/ │ │ ├── Controllers/ │ │ │ └── CustomerController.cs │ │ ├── Credit.cs │ │ ├── CustomerService.csproj │ │ ├── Dockerfile │ │ └── Program.cs │ ├── OrderService/ │ │ ├── Controllers/ │ │ │ └── OrderController.cs │ │ ├── Dockerfile │ │ ├── Order.cs │ │ ├── OrderService.csproj │ │ └── Program.cs │ ├── README.md │ ├── ordering-v1.yaml │ ├── ordering-v2.yaml │ └── ordering-v3.yaml ├── screenshot-jobs/ │ ├── README.md │ ├── job1.txt │ ├── job2.txt │ └── workflow.yaml ├── secretmanager/ │ ├── README.md │ ├── access-secret.yaml │ └── create-secret.yaml ├── send-email/ │ ├── README.md │ └── send-email-workflow.yaml ├── service-chaining/ │ ├── README.md │ ├── floor/ │ │ ├── Dockerfile │ │ └── app.py │ ├── multiply/ │ │ ├── main.py │ │ └── requirements.txt │ ├── randomgen/ │ │ ├── main.py │ │ └── requirements.txt │ └── workflow.yaml ├── state-management-firestore/ │ ├── README.md │ └── workflow.yaml ├── syntax-cheat-sheet/ │ ├── printable-pdf/ │ │ ├── index.html │ │ └── style.css │ └── workflow.yaml ├── terraform/ │ ├── basic/ │ │ ├── README.md │ │ ├── main.tf │ │ └── vars.tf │ ├── import-multiple-yamls/ │ │ ├── README.md │ │ ├── main.tf │ │ ├── subworkflow.yaml │ │ ├── vars.tf │ │ └── workflow.yaml │ └── import-yaml/ │ ├── README.md │ ├── main.tf │ ├── vars.tf │ └── workflow.yaml ├── twitter-sentiment/ │ ├── README.md │ └── workflow.yaml ├── twitter-sentiment-parallel/ │ ├── README.md │ ├── workflow-parallel.yaml │ └── workflow-serial.yaml ├── vertexai/ │ ├── country-histories/ │ │ ├── gemini-pro/ │ │ │ ├── README.md │ │ │ ├── country-histories-connector.yaml │ │ │ ├── country-histories.yaml │ │ │ └── gemini-response.json │ │ └── text-bison/ │ │ ├── README.md │ │ ├── country-histories-connector.yaml │ │ ├── country-histories.yaml │ │ ├── country-history-connector.yaml │ │ └── country-history.yaml │ ├── describe-image/ │ │ ├── README.md │ │ ├── describe-image-connector.yaml │ │ ├── describe-image.yaml │ │ └── gemini-response.json │ └── parallel-summaries/ │ ├── README.md │ ├── parallel-summaries-connector.yaml │ ├── parallel-summaries-initial.yaml │ ├── parallel-summaries.yaml │ ├── pride_and_prejudice.txt │ ├── pride_and_prejudice_1000.txt │ └── pride_and_prejudice_4500.txt ├── workflow-executes-other-workflows/ │ ├── README.md │ ├── workflow-child.yaml │ └── workflow-parent.yaml ├── workflow-tasks-workflow/ │ ├── README.md │ ├── workflow-child.yaml │ └── workflow-parent.yaml ├── workflows-bigquery-load/ │ ├── README.md │ ├── build.sh │ ├── file_change_handler/ │ │ ├── main.py │ │ └── requirements.txt │ ├── generator/ │ │ ├── gen.py │ │ └── requirements.txt │ ├── main.tf │ ├── workflow.yaml │ └── workflow_handlers/ │ ├── main.py │ └── requirements.txt ├── workflows-eventarc-integration/ │ ├── event-payload-storer/ │ │ ├── README.md │ │ ├── event-payload-storer.yaml │ │ ├── setup.sh │ │ ├── test_pubsub.sh │ │ └── test_storage.sh │ └── workflows-pubsub/ │ ├── README.md │ └── workflow.yaml ├── workflows-executes-commands/ │ ├── using-cloudbuild-api/ │ │ ├── README.md │ │ ├── setup.sh │ │ ├── workflow-gcloud.yaml │ │ └── workflow-kubectl.yaml │ └── using-standard-library/ │ ├── README.md │ ├── setup.sh │ ├── workflow-gcloud.yaml │ └── workflow-kubectl.yaml ├── workflows-kubernetes-engine/ │ ├── README.md │ └── workflow.yaml └── workspace-integration/ ├── sheets-to-workflows/ │ ├── Code.gs │ ├── README.md │ ├── appscript.json │ ├── setup.sh │ └── workflow.yaml ├── workflows-awaits-sheets-callback/ │ ├── Code.gs │ ├── README.md │ ├── appscript.json │ ├── setup.sh │ └── workflow.yaml └── workflows-to-sheets/ ├── README.md ├── setup.sh └── workflow.yaml