GCP - Cloud Pub/Sub
Given this Python snippet, what will be the output if the publish call succeeds?
from google.cloud import pubsub_v1 publisher = pubsub_v1.PublisherClient() topic_path = 'projects/my-project/topics/my-topic' future = publisher.publish(topic_path, b'Hello') print(future.result())
