Skip to content

Commit 57075de

Browse files
SheheryarAamirtimonback
authored andcommitted
(fix): fixed issue with google pubsub project string
1 parent 60e1c21 commit 57075de

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/configuration/documenting-bindings.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -130,26 +130,26 @@ The Channel Bindings Object is used to describe the Google Cloud Pub/Sub Topic d
130130
lastRevisionId = "lastRevisionId",
131131
name = "projects/{project}/schemas/{schema}"))
132132
```
133-
MessageRetentionDuration: Indicates the minimum duration to retain a message after it is published to the topic
133+
`MessageRetentionDuration`: Indicates the minimum duration to retain a message after it is published to the topic
134134

135-
Message Storage Policy: The Message Storage Policy Object is used to describe the Google Cloud Pub/Sub MessageStoragePolicy.
135+
`Message Storage Policy`: The Message Storage Policy Object is used to describe the Google Cloud Pub/Sub MessageStoragePolicy.
136136
- A list of IDs of GCP regions where messages that are published to the topic may be persisted in storage
137137

138-
Schema Settings:The Schema Settings Object is used to describe the Google Cloud Pub/Sub SchemaSettings.
138+
`Schema Settings`:The Schema Settings Object is used to describe the Google Cloud Pub/Sub SchemaSettings.
139139
- encoding: The encoding of the message
140140
- firstRevisionId: The minimum (inclusive) revision allowed for validating messages
141141
- lastRevisionId: The maximum (inclusive) revision allowed for validating messages
142-
- name: The name of the schema that messages published should be validated against (The format is projects/{project}/schemas/{schema}.)
142+
- name: The name of the schema that messages published should be validated against (The format is `projects/{project}/schemas/{schema}`.)
143143
#### Message Binding Object
144144
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.
145145
```java
146146
@GooglePubSubAsyncMessageBinding(
147147
orderingKey = "key",
148148
schema = @GooglePubSubAsyncMessageSchema(name = "projects/{project}/schemas/{schema}"))
149149
```
150-
OrderingKey: If non-empty, identifies related messages for which publish order should be respected
150+
`OrderingKey`: If non-empty, identifies related messages for which publish order should be respected
151151

152-
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
152+
`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
153153
- name: The name of the schema
154154

155155

0 commit comments

Comments
 (0)