0% 0% 0% 0%

Pub/Sub

Index
  1. 01. Concepts
  2. 02. Architecture
  3. 03. State & Storage
  4. 04. Tools
  5. 05. BigQuery
  6. 06. Cloud Storage
  7. 07. Compute & Containers
  8. 08. Cloud Run
  9. 09. Pub/Sub
  10. 10. Databases
  11. 11. Observability
  12. 12. Access & Billing
  13. 13. Secret Manager
  14. 14. Networking
  15. 15. Scheduling & Tasks
  16. 16. Build & Artifacts
  17. 17. Guardrails
  18. 18. Setup
  19. 19. Deploy to Cloud Run

Pub/Sub

Inspect and wire up messaging from a thread — topics and their subscriptions, always acting as you. Every create and delete is approval-gated.

Topics

  • list_pubsub_topics(project_id) — topics in a project.
  • create_pubsub_topic(project_id, topic_id)write. Creates a topic.
  • delete_pubsub_topic(project_id, topic_id)write. Deletes a topic.

Subscriptions

  • list_pubsub_subscriptions(project_id) — subscriptions in a project, each shown as subscription → topic so the wiring is obvious at a glance.
  • create_pubsub_subscription(subscription_id, topic_id, project_id)write. Creates a pull subscription against an existing topic.
  • delete_pubsub_subscription(subscription_id, project_id)write. Deletes a subscription.

Next: Databases.