From 57075deed26171028c4dffe628130bfdab065470 Mon Sep 17 00:00:00 2001 From: sheheryar aamir Date: Mon, 1 Apr 2024 13:57:34 +0200 Subject: [PATCH] (fix): fixed issue with google pubsub project string --- docs/configuration/documenting-bindings.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/configuration/documenting-bindings.md b/docs/configuration/documenting-bindings.md index 9eba9e8..e9071dd 100644 --- a/docs/configuration/documenting-bindings.md +++ b/docs/configuration/documenting-bindings.md @@ -130,16 +130,16 @@ The Channel Bindings Object is used to describe the Google Cloud Pub/Sub Topic d lastRevisionId = "lastRevisionId", name = "projects/{project}/schemas/{schema}")) ``` -MessageRetentionDuration: Indicates the minimum duration to retain a message after it is published to the topic +`MessageRetentionDuration`: Indicates the minimum duration to retain a message after it is published to the topic -Message Storage Policy: The Message Storage Policy Object is used to describe the Google Cloud Pub/Sub MessageStoragePolicy. +`Message Storage Policy`: The Message Storage Policy Object is used to describe the Google Cloud Pub/Sub MessageStoragePolicy. - A list of IDs of GCP regions where messages that are published to the topic may be persisted in storage -Schema Settings:The Schema Settings Object is used to describe the Google Cloud Pub/Sub SchemaSettings. +`Schema Settings`:The Schema Settings Object is used to describe the Google Cloud Pub/Sub SchemaSettings. - encoding: The encoding of the message - firstRevisionId: The minimum (inclusive) revision allowed for validating messages - lastRevisionId: The maximum (inclusive) revision allowed for validating messages -- name: The name of the schema that messages published should be validated against (The format is projects/{project}/schemas/{schema}.) +- name: The name of the schema that messages published should be validated against (The format is `projects/{project}/schemas/{schema}`.) #### Message Binding Object The Message Binding Object is used to describe the Google Cloud Pub/Sub PubsubMessage details, alongside with pertintent parts of the Google Cloud Pub/Sub Schema Object. ```java @@ -147,9 +147,9 @@ The Message Binding Object is used to describe the Google Cloud Pub/Sub PubsubMe orderingKey = "key", schema = @GooglePubSubAsyncMessageSchema(name = "projects/{project}/schemas/{schema}")) ``` -OrderingKey: If non-empty, identifies related messages for which publish order should be respected +`OrderingKey`: If non-empty, identifies related messages for which publish order should be respected -Schema Definition: The Schema Definition Object is used to describe the Google Cloud Pub/Sub Schema Object with AsyncAPI. While some of this information could be, or is, described using native AsyncAPI, for consistency it makes sense to provide this information here at all times, especially for cases where AsyncAPI does not natively support describing payloads using a supported Google Cloud Pub/Sub schema format like Protobuf +`Schema Definition`: The Schema Definition Object is used to describe the Google Cloud Pub/Sub Schema Object with AsyncAPI. While some of this information could be, or is, described using native AsyncAPI, for consistency it makes sense to provide this information here at all times, especially for cases where AsyncAPI does not natively support describing payloads using a supported Google Cloud Pub/Sub schema format like Protobuf - name: The name of the schema