@redocly/openapi-core 0.0.0-snapshot.1783058823 → 0.0.0-snapshot.1783680915
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/rules/common/no-invalid-parameter-examples.d.ts.map +1 -1
- package/lib/rules/common/no-invalid-parameter-examples.js +4 -3
- package/lib/rules/common/no-invalid-parameter-examples.js.map +1 -1
- package/lib/rules/oas3/no-invalid-media-type-examples.d.ts.map +1 -1
- package/lib/rules/oas3/no-invalid-media-type-examples.js +11 -6
- package/lib/rules/oas3/no-invalid-media-type-examples.js.map +1 -1
- package/lib/rules/utils.d.ts +4 -0
- package/lib/rules/utils.d.ts.map +1 -1
- package/lib/rules/utils.js +10 -0
- package/lib/rules/utils.js.map +1 -1
- package/lib/types/asyncapi-bindings.d.ts +8 -0
- package/lib/types/asyncapi-bindings.d.ts.map +1 -0
- package/lib/types/asyncapi-bindings.js +949 -0
- package/lib/types/asyncapi-bindings.js.map +1 -0
- package/lib/types/asyncapi2.d.ts +0 -1
- package/lib/types/asyncapi2.d.ts.map +1 -1
- package/lib/types/asyncapi2.js +2 -605
- package/lib/types/asyncapi2.js.map +1 -1
- package/lib/types/asyncapi3.d.ts.map +1 -1
- package/lib/types/asyncapi3.js +36 -4
- package/lib/types/asyncapi3.js.map +1 -1
- package/package.json +2 -2
|
@@ -0,0 +1,949 @@
|
|
|
1
|
+
import { isPlainObject } from '../utils/is-plain-object.js';
|
|
2
|
+
import { listOf } from './index.js';
|
|
3
|
+
const HttpChannelBinding = {
|
|
4
|
+
properties: {}, // empty object
|
|
5
|
+
description: 'Protocol-specific information for an HTTP channel.',
|
|
6
|
+
};
|
|
7
|
+
const HttpServerBinding = {
|
|
8
|
+
properties: {}, // empty object
|
|
9
|
+
description: 'Protocol-specific information for an HTTP server.',
|
|
10
|
+
};
|
|
11
|
+
const HttpMessageBinding = {
|
|
12
|
+
properties: {
|
|
13
|
+
headers: 'Schema',
|
|
14
|
+
statusCode: { type: 'number' },
|
|
15
|
+
bindingVersion: { type: 'string' },
|
|
16
|
+
},
|
|
17
|
+
description: 'Protocol-specific information for an HTTP message, i.e., a request or a response.',
|
|
18
|
+
};
|
|
19
|
+
const HttpOperationBinding = {
|
|
20
|
+
properties: {
|
|
21
|
+
type: { type: 'string' }, // bindingVersion 0.1.0 (removed since 0.2.0)
|
|
22
|
+
method: {
|
|
23
|
+
type: 'string',
|
|
24
|
+
enum: ['GET', 'POST', 'PUT', 'PATCH', 'DELETE', 'HEAD', 'OPTIONS', 'CONNECT', 'TRACE'],
|
|
25
|
+
},
|
|
26
|
+
query: 'Schema',
|
|
27
|
+
headers: 'Schema',
|
|
28
|
+
bindingVersion: { type: 'string' },
|
|
29
|
+
},
|
|
30
|
+
description: 'Protocol-specific information for an HTTP operation.',
|
|
31
|
+
};
|
|
32
|
+
const WsChannelBinding = {
|
|
33
|
+
properties: {
|
|
34
|
+
method: { type: 'string' },
|
|
35
|
+
query: 'Schema',
|
|
36
|
+
headers: 'Schema',
|
|
37
|
+
bindingVersion: { type: 'string' },
|
|
38
|
+
},
|
|
39
|
+
description: 'Protocol-specific information for a WebSockets channel.',
|
|
40
|
+
};
|
|
41
|
+
const WsServerBinding = {
|
|
42
|
+
properties: {}, // empty object
|
|
43
|
+
description: 'Protocol-specific information for a WebSockets server.',
|
|
44
|
+
};
|
|
45
|
+
const WsMessageBinding = {
|
|
46
|
+
properties: {}, // empty object
|
|
47
|
+
description: 'Protocol-specific information for a WebSockets message.',
|
|
48
|
+
};
|
|
49
|
+
const WsOperationBinding = {
|
|
50
|
+
properties: {}, // empty object
|
|
51
|
+
description: 'Protocol-specific information for a WebSockets operation.',
|
|
52
|
+
};
|
|
53
|
+
const KafkaTopicConfiguration = {
|
|
54
|
+
properties: {
|
|
55
|
+
'cleanup.policy': { type: 'array', items: { enum: ['delete', 'compact'] } },
|
|
56
|
+
'retention.ms': { type: 'integer' },
|
|
57
|
+
'retention.bytes': { type: 'integer' },
|
|
58
|
+
'delete.retention.ms': { type: 'integer' },
|
|
59
|
+
'max.message.bytes': { type: 'integer' },
|
|
60
|
+
'confluent.key.schema.validation': { type: 'boolean' },
|
|
61
|
+
'confluent.key.subject.name.strategy': { type: 'string' },
|
|
62
|
+
'confluent.value.schema.validation': { type: 'boolean' },
|
|
63
|
+
'confluent.value.subject.name.strategy': { type: 'string' },
|
|
64
|
+
},
|
|
65
|
+
};
|
|
66
|
+
const KafkaChannelBinding = {
|
|
67
|
+
properties: {
|
|
68
|
+
topic: { type: 'string' },
|
|
69
|
+
partitions: { type: 'integer' },
|
|
70
|
+
replicas: { type: 'integer' },
|
|
71
|
+
topicConfiguration: 'KafkaTopicConfiguration',
|
|
72
|
+
bindingVersion: { type: 'string' },
|
|
73
|
+
},
|
|
74
|
+
description: 'Protocol-specific information for a Kafka channel.',
|
|
75
|
+
};
|
|
76
|
+
const KafkaServerBinding = {
|
|
77
|
+
properties: {
|
|
78
|
+
schemaRegistryUrl: { type: 'string' },
|
|
79
|
+
schemaRegistryVendor: { type: 'string' },
|
|
80
|
+
bindingVersion: { type: 'string' },
|
|
81
|
+
},
|
|
82
|
+
description: 'Protocol-specific information for a Kafka server.',
|
|
83
|
+
};
|
|
84
|
+
const KafkaMessageBinding = {
|
|
85
|
+
properties: {
|
|
86
|
+
key: 'Schema',
|
|
87
|
+
schemaIdLocation: { type: 'string' },
|
|
88
|
+
schemaIdPayloadEncoding: { type: 'string' },
|
|
89
|
+
schemaLookupStrategy: { type: 'string' },
|
|
90
|
+
bindingVersion: { type: 'string' },
|
|
91
|
+
},
|
|
92
|
+
description: 'Protocol-specific information for a Kafka message.',
|
|
93
|
+
};
|
|
94
|
+
const KafkaOperationBinding = {
|
|
95
|
+
properties: {
|
|
96
|
+
groupId: 'Schema',
|
|
97
|
+
clientId: 'Schema',
|
|
98
|
+
bindingVersion: { type: 'string' },
|
|
99
|
+
},
|
|
100
|
+
description: 'Protocol-specific information for a Kafka operation.',
|
|
101
|
+
};
|
|
102
|
+
const AnypointmqChannelBinding = {
|
|
103
|
+
properties: {
|
|
104
|
+
destination: { type: 'string' },
|
|
105
|
+
destinationType: { type: 'string' },
|
|
106
|
+
bindingVersion: { type: 'string' },
|
|
107
|
+
},
|
|
108
|
+
description: 'Protocol-specific information for an Anypoint MQ channel.',
|
|
109
|
+
};
|
|
110
|
+
const AnypointmqServerBinding = {
|
|
111
|
+
properties: {}, // empty object
|
|
112
|
+
description: 'Protocol-specific information for an Anypoint MQ server.',
|
|
113
|
+
};
|
|
114
|
+
const AnypointmqMessageBinding = {
|
|
115
|
+
properties: {
|
|
116
|
+
headers: 'Schema',
|
|
117
|
+
bindingVersion: { type: 'string' },
|
|
118
|
+
},
|
|
119
|
+
description: 'Protocol-specific information for an Anypoint MQ message.',
|
|
120
|
+
};
|
|
121
|
+
const AnypointmqOperationBinding = {
|
|
122
|
+
properties: {}, // empty object
|
|
123
|
+
description: 'Protocol-specific information for an Anypoint MQ operation.',
|
|
124
|
+
};
|
|
125
|
+
const AmqpChannelExchange = {
|
|
126
|
+
properties: {
|
|
127
|
+
name: { type: 'string' },
|
|
128
|
+
type: { type: 'string', enum: ['topic', 'direct', 'fanout', 'default', 'headers'] },
|
|
129
|
+
durable: { type: 'boolean' },
|
|
130
|
+
autoDelete: { type: 'boolean' },
|
|
131
|
+
vhost: { type: 'string' },
|
|
132
|
+
},
|
|
133
|
+
description: 'The AMQP exchange the channel is bound to.',
|
|
134
|
+
};
|
|
135
|
+
const AmqpChannelQueue = {
|
|
136
|
+
properties: {
|
|
137
|
+
name: { type: 'string' },
|
|
138
|
+
durable: { type: 'boolean' },
|
|
139
|
+
exclusive: { type: 'boolean' },
|
|
140
|
+
autoDelete: { type: 'boolean' },
|
|
141
|
+
vhost: { type: 'string' },
|
|
142
|
+
},
|
|
143
|
+
description: 'The AMQP queue the channel is bound to.',
|
|
144
|
+
};
|
|
145
|
+
const AmqpChannelBinding = {
|
|
146
|
+
properties: {
|
|
147
|
+
is: { type: 'string', enum: ['queue', 'routingKey'] },
|
|
148
|
+
exchange: 'AmqpChannelExchange',
|
|
149
|
+
queue: 'AmqpChannelQueue',
|
|
150
|
+
bindingVersion: { type: 'string' },
|
|
151
|
+
},
|
|
152
|
+
description: 'Protocol-specific information for an AMQP 0-9-1 channel.',
|
|
153
|
+
};
|
|
154
|
+
const AmqpServerBinding = {
|
|
155
|
+
properties: {}, // empty object
|
|
156
|
+
description: 'Protocol-specific information for an AMQP 0-9-1 server.',
|
|
157
|
+
};
|
|
158
|
+
const AmqpMessageBinding = {
|
|
159
|
+
properties: {
|
|
160
|
+
contentEncoding: { type: 'string' },
|
|
161
|
+
messageType: { type: 'string' },
|
|
162
|
+
bindingVersion: { type: 'string' },
|
|
163
|
+
},
|
|
164
|
+
description: 'Protocol-specific information for an AMQP 0-9-1 message.',
|
|
165
|
+
};
|
|
166
|
+
const AmqpOperationBinding = {
|
|
167
|
+
properties: {
|
|
168
|
+
expiration: { type: 'integer' },
|
|
169
|
+
userId: { type: 'string' },
|
|
170
|
+
cc: { type: 'array', items: { type: 'string' } },
|
|
171
|
+
priority: { type: 'integer' },
|
|
172
|
+
deliveryMode: { type: 'integer' },
|
|
173
|
+
mandatory: { type: 'boolean' },
|
|
174
|
+
bcc: { type: 'array', items: { type: 'string' } },
|
|
175
|
+
replyTo: { type: 'string' }, // bindingVersion 0.2.0 (removed in 0.3.0)
|
|
176
|
+
timestamp: { type: 'boolean' },
|
|
177
|
+
ack: { type: 'boolean' },
|
|
178
|
+
bindingVersion: { type: 'string' },
|
|
179
|
+
},
|
|
180
|
+
description: 'Protocol-specific information for an AMQP 0-9-1 operation.',
|
|
181
|
+
};
|
|
182
|
+
const Amqp1ChannelBinding = {
|
|
183
|
+
properties: {}, // empty object
|
|
184
|
+
description: 'Protocol-specific information for an AMQP 1.0 channel.',
|
|
185
|
+
};
|
|
186
|
+
const Amqp1ServerBinding = {
|
|
187
|
+
properties: {}, // empty object
|
|
188
|
+
description: 'Protocol-specific information for an AMQP 1.0 server.',
|
|
189
|
+
};
|
|
190
|
+
const Amqp1MessageBinding = {
|
|
191
|
+
properties: {}, // empty object
|
|
192
|
+
description: 'Protocol-specific information for an AMQP 1.0 message.',
|
|
193
|
+
};
|
|
194
|
+
const Amqp1OperationBinding = {
|
|
195
|
+
properties: {}, // empty object
|
|
196
|
+
description: 'Protocol-specific information for an AMQP 1.0 operation.',
|
|
197
|
+
};
|
|
198
|
+
const MqttChannelBinding = {
|
|
199
|
+
properties: {}, // empty object
|
|
200
|
+
description: 'Protocol-specific information for an MQTT channel.',
|
|
201
|
+
};
|
|
202
|
+
const MqttServerBindingLastWill = {
|
|
203
|
+
properties: {
|
|
204
|
+
topic: { type: 'string' },
|
|
205
|
+
qos: { type: 'integer' },
|
|
206
|
+
message: { type: 'string' },
|
|
207
|
+
retain: { type: 'boolean' },
|
|
208
|
+
},
|
|
209
|
+
};
|
|
210
|
+
const MqttServerBinding = {
|
|
211
|
+
properties: {
|
|
212
|
+
clientId: { type: 'string' },
|
|
213
|
+
cleanSession: { type: 'boolean' },
|
|
214
|
+
lastWill: 'MqttServerBindingLastWill',
|
|
215
|
+
keepAlive: { type: 'integer' },
|
|
216
|
+
sessionExpiryInterval: (value) => isPlainObject(value) ? 'Schema' : { type: 'integer' },
|
|
217
|
+
maximumPacketSize: (value) => (isPlainObject(value) ? 'Schema' : { type: 'integer' }),
|
|
218
|
+
bindingVersion: { type: 'string' },
|
|
219
|
+
},
|
|
220
|
+
description: 'Protocol-specific information for an MQTT server.',
|
|
221
|
+
};
|
|
222
|
+
const MqttMessageBinding = {
|
|
223
|
+
properties: {
|
|
224
|
+
payloadFormatIndicator: { type: 'integer' }, // 0 or 1
|
|
225
|
+
correlationData: 'Schema',
|
|
226
|
+
contentType: { type: 'string' },
|
|
227
|
+
responseTopic: (value) => (isPlainObject(value) ? 'Schema' : { type: 'string' }),
|
|
228
|
+
bindingVersion: { type: 'string' },
|
|
229
|
+
},
|
|
230
|
+
description: 'Protocol-specific information for an MQTT message.',
|
|
231
|
+
};
|
|
232
|
+
const MqttOperationBinding = {
|
|
233
|
+
properties: {
|
|
234
|
+
qos: { type: 'integer' },
|
|
235
|
+
retain: { type: 'boolean' },
|
|
236
|
+
messageExpiryInterval: (value) => isPlainObject(value) ? 'Schema' : { type: 'integer' },
|
|
237
|
+
bindingVersion: { type: 'string' },
|
|
238
|
+
},
|
|
239
|
+
description: 'Protocol-specific information for an MQTT operation.',
|
|
240
|
+
};
|
|
241
|
+
const Mqtt5ChannelBinding = {
|
|
242
|
+
properties: {}, // empty object
|
|
243
|
+
description: 'Protocol-specific information for an MQTT 5 channel.',
|
|
244
|
+
};
|
|
245
|
+
const Mqtt5ServerBinding = {
|
|
246
|
+
properties: {
|
|
247
|
+
// defined by the mqtt5 binding README (no JSON Schema was ever published for mqtt5)
|
|
248
|
+
sessionExpiryInterval: (value) => isPlainObject(value) ? 'Schema' : { type: 'integer' },
|
|
249
|
+
bindingVersion: { type: 'string' },
|
|
250
|
+
},
|
|
251
|
+
description: 'Protocol-specific information for an MQTT 5 server.',
|
|
252
|
+
};
|
|
253
|
+
const Mqtt5MessageBinding = {
|
|
254
|
+
properties: {}, // empty object
|
|
255
|
+
description: 'Protocol-specific information for an MQTT 5 message.',
|
|
256
|
+
};
|
|
257
|
+
const Mqtt5OperationBinding = {
|
|
258
|
+
properties: {}, // empty object
|
|
259
|
+
description: 'Protocol-specific information for an MQTT 5 operation.',
|
|
260
|
+
};
|
|
261
|
+
const NatsChannelBinding = {
|
|
262
|
+
properties: {}, // empty object
|
|
263
|
+
description: 'Protocol-specific information for a NATS channel.',
|
|
264
|
+
};
|
|
265
|
+
const NatsServerBinding = {
|
|
266
|
+
properties: {}, // empty object
|
|
267
|
+
description: 'Protocol-specific information for a NATS server.',
|
|
268
|
+
};
|
|
269
|
+
const NatsMessageBinding = {
|
|
270
|
+
properties: {}, // empty object
|
|
271
|
+
description: 'Protocol-specific information for a NATS message.',
|
|
272
|
+
};
|
|
273
|
+
const NatsOperationBinding = {
|
|
274
|
+
properties: {
|
|
275
|
+
queue: { type: 'string' },
|
|
276
|
+
bindingVersion: { type: 'string' },
|
|
277
|
+
},
|
|
278
|
+
description: 'Protocol-specific information for a NATS operation.',
|
|
279
|
+
};
|
|
280
|
+
const JmsChannelBinding = {
|
|
281
|
+
properties: {
|
|
282
|
+
destination: { type: 'string' },
|
|
283
|
+
destinationType: { type: 'string' },
|
|
284
|
+
bindingVersion: { type: 'string' },
|
|
285
|
+
},
|
|
286
|
+
description: 'Protocol-specific information for a JMS channel.',
|
|
287
|
+
};
|
|
288
|
+
const JmsServerBindingProperty = {
|
|
289
|
+
properties: {
|
|
290
|
+
name: { type: 'string' },
|
|
291
|
+
value: {},
|
|
292
|
+
},
|
|
293
|
+
required: ['name', 'value'],
|
|
294
|
+
description: 'A name-value pair to set on the JMS ConnectionFactory implementation.',
|
|
295
|
+
};
|
|
296
|
+
const JmsServerBinding = {
|
|
297
|
+
properties: {
|
|
298
|
+
jmsConnectionFactory: { type: 'string' },
|
|
299
|
+
properties: listOf('JmsServerBindingProperty'),
|
|
300
|
+
clientID: { type: 'string' },
|
|
301
|
+
bindingVersion: { type: 'string' },
|
|
302
|
+
},
|
|
303
|
+
required: ['jmsConnectionFactory'],
|
|
304
|
+
description: 'Protocol-specific information for a JMS server.',
|
|
305
|
+
};
|
|
306
|
+
const JmsMessageBinding = {
|
|
307
|
+
properties: {
|
|
308
|
+
headers: 'Schema',
|
|
309
|
+
bindingVersion: { type: 'string' },
|
|
310
|
+
},
|
|
311
|
+
description: 'Protocol-specific information for a JMS message.',
|
|
312
|
+
};
|
|
313
|
+
const JmsOperationBinding = {
|
|
314
|
+
properties: {}, // empty object
|
|
315
|
+
description: 'Protocol-specific information for a JMS operation.',
|
|
316
|
+
};
|
|
317
|
+
// solace
|
|
318
|
+
const SolaceChannelBinding = {
|
|
319
|
+
properties: {}, // empty object
|
|
320
|
+
description: 'Protocol-specific information for a Solace channel.',
|
|
321
|
+
};
|
|
322
|
+
const SolaceServerBinding = {
|
|
323
|
+
properties: {
|
|
324
|
+
bindingVersion: { type: 'string' },
|
|
325
|
+
msgVpn: { type: 'string' },
|
|
326
|
+
clientName: { type: 'string' },
|
|
327
|
+
},
|
|
328
|
+
description: 'Protocol-specific information for a Solace server.',
|
|
329
|
+
};
|
|
330
|
+
const SolaceMessageBinding = {
|
|
331
|
+
properties: {}, // empty object
|
|
332
|
+
description: 'Protocol-specific information for a Solace message.',
|
|
333
|
+
};
|
|
334
|
+
const SolaceDestination = {
|
|
335
|
+
properties: {
|
|
336
|
+
destinationType: { type: 'string', enum: ['queue', 'topic'] },
|
|
337
|
+
deliveryMode: { type: 'string', enum: ['direct', 'persistent'] },
|
|
338
|
+
'queue.name': { type: 'string' },
|
|
339
|
+
'queue.topicSubscriptions': { type: 'array', items: { type: 'string' } },
|
|
340
|
+
'queue.accessType': { type: 'string', enum: ['exclusive', 'nonexclusive'] },
|
|
341
|
+
'queue.maxMsgSpoolSize': { type: 'string' },
|
|
342
|
+
'queue.maxMsgSpoolUsage': { type: 'string' },
|
|
343
|
+
'queue.maxTtl': { type: 'string' },
|
|
344
|
+
'topic.topicSubscriptions': { type: 'array', items: { type: 'string' } },
|
|
345
|
+
},
|
|
346
|
+
};
|
|
347
|
+
const SolaceOperationBinding = {
|
|
348
|
+
properties: {
|
|
349
|
+
bindingVersion: { type: 'string' },
|
|
350
|
+
destinations: listOf('SolaceDestination'),
|
|
351
|
+
dmqEligible: { type: 'boolean' },
|
|
352
|
+
priority: { type: 'integer', minimum: 0 },
|
|
353
|
+
timeToLive: { type: 'integer' },
|
|
354
|
+
},
|
|
355
|
+
description: 'Protocol-specific information for a Solace operation.',
|
|
356
|
+
};
|
|
357
|
+
const SnsIdentifier = {
|
|
358
|
+
properties: {
|
|
359
|
+
url: { type: 'string' },
|
|
360
|
+
email: { type: 'string' },
|
|
361
|
+
phone: { type: 'string' },
|
|
362
|
+
arn: { type: 'string' },
|
|
363
|
+
name: { type: 'string' },
|
|
364
|
+
},
|
|
365
|
+
description: 'Identifies an SNS resource: exactly one of url, email, phone, arn, or name.',
|
|
366
|
+
};
|
|
367
|
+
const SnsOrdering = {
|
|
368
|
+
properties: {
|
|
369
|
+
type: { type: 'string', enum: ['standard', 'FIFO'] },
|
|
370
|
+
contentBasedDeduplication: { type: 'boolean' },
|
|
371
|
+
},
|
|
372
|
+
required: ['type'],
|
|
373
|
+
description: 'Defines the ordering and deduplication properties of an SNS topic.',
|
|
374
|
+
};
|
|
375
|
+
const SnsStatement = {
|
|
376
|
+
properties: {
|
|
377
|
+
effect: { type: 'string', enum: ['Allow', 'Deny'] },
|
|
378
|
+
principal: {},
|
|
379
|
+
action: {},
|
|
380
|
+
resource: {},
|
|
381
|
+
condition: { type: 'object' },
|
|
382
|
+
},
|
|
383
|
+
required: ['effect', 'principal', 'action'],
|
|
384
|
+
description: 'An SNS access-policy statement.',
|
|
385
|
+
};
|
|
386
|
+
const SnsPolicy = {
|
|
387
|
+
properties: {
|
|
388
|
+
statements: listOf('SnsStatement'),
|
|
389
|
+
},
|
|
390
|
+
required: ['statements'],
|
|
391
|
+
description: 'The security policy for an SNS topic.',
|
|
392
|
+
};
|
|
393
|
+
const SnsChannelBinding = {
|
|
394
|
+
properties: {
|
|
395
|
+
name: { type: 'string' },
|
|
396
|
+
ordering: 'SnsOrdering',
|
|
397
|
+
policy: 'SnsPolicy',
|
|
398
|
+
tags: { type: 'object' },
|
|
399
|
+
bindingVersion: { type: 'string' },
|
|
400
|
+
},
|
|
401
|
+
required: ['name'],
|
|
402
|
+
description: 'Protocol-specific information for an SNS channel.',
|
|
403
|
+
};
|
|
404
|
+
const SnsRedrivePolicy = {
|
|
405
|
+
properties: {
|
|
406
|
+
deadLetterQueue: 'SnsIdentifier',
|
|
407
|
+
maxReceiveCount: { type: 'integer' },
|
|
408
|
+
},
|
|
409
|
+
required: ['deadLetterQueue'],
|
|
410
|
+
description: 'Defines where unprocessable SNS messages are moved.',
|
|
411
|
+
};
|
|
412
|
+
const SnsDeliveryPolicy = {
|
|
413
|
+
properties: {
|
|
414
|
+
minDelayTarget: { type: 'integer' },
|
|
415
|
+
maxDelayTarget: { type: 'integer' },
|
|
416
|
+
numRetries: { type: 'integer' },
|
|
417
|
+
numNoDelayRetries: { type: 'integer' },
|
|
418
|
+
numMinDelayRetries: { type: 'integer' },
|
|
419
|
+
numMaxDelayRetries: { type: 'integer' },
|
|
420
|
+
backoffFunction: {
|
|
421
|
+
type: 'string',
|
|
422
|
+
enum: ['arithmetic', 'exponential', 'geometric', 'linear'],
|
|
423
|
+
},
|
|
424
|
+
maxReceivesPerSecond: { type: 'integer' },
|
|
425
|
+
},
|
|
426
|
+
description: 'Defines how SNS retries the delivery of messages to a subscription endpoint.',
|
|
427
|
+
};
|
|
428
|
+
const SnsConsumer = {
|
|
429
|
+
properties: {
|
|
430
|
+
protocol: {
|
|
431
|
+
type: 'string',
|
|
432
|
+
enum: [
|
|
433
|
+
'http',
|
|
434
|
+
'https',
|
|
435
|
+
'email',
|
|
436
|
+
'email-json',
|
|
437
|
+
'sms',
|
|
438
|
+
'sqs',
|
|
439
|
+
'application',
|
|
440
|
+
'lambda',
|
|
441
|
+
'firehose',
|
|
442
|
+
],
|
|
443
|
+
},
|
|
444
|
+
endpoint: 'SnsIdentifier',
|
|
445
|
+
filterPolicy: { type: 'object' },
|
|
446
|
+
filterPolicyScope: { type: 'string', enum: ['MessageAttributes', 'MessageBody'] },
|
|
447
|
+
rawMessageDelivery: { type: 'boolean' },
|
|
448
|
+
redrivePolicy: 'SnsRedrivePolicy',
|
|
449
|
+
deliveryPolicy: 'SnsDeliveryPolicy',
|
|
450
|
+
displayName: { type: 'string' },
|
|
451
|
+
},
|
|
452
|
+
required: ['protocol', 'endpoint', 'rawMessageDelivery'],
|
|
453
|
+
description: 'Describes an SNS subscription consuming messages from a topic.',
|
|
454
|
+
};
|
|
455
|
+
const SnsOperationBinding = {
|
|
456
|
+
properties: {
|
|
457
|
+
topic: 'SnsIdentifier',
|
|
458
|
+
consumers: listOf('SnsConsumer'),
|
|
459
|
+
deliveryPolicy: 'SnsDeliveryPolicy',
|
|
460
|
+
bindingVersion: { type: 'string' },
|
|
461
|
+
},
|
|
462
|
+
required: ['consumers'],
|
|
463
|
+
description: 'Protocol-specific information for an SNS operation.',
|
|
464
|
+
};
|
|
465
|
+
// sqs
|
|
466
|
+
const SqsIdentifier = {
|
|
467
|
+
properties: {
|
|
468
|
+
arn: { type: 'string' },
|
|
469
|
+
name: { type: 'string' },
|
|
470
|
+
},
|
|
471
|
+
description: 'Identifies an SQS queue: exactly one of arn or name.',
|
|
472
|
+
};
|
|
473
|
+
const SqsRedrivePolicy = {
|
|
474
|
+
properties: {
|
|
475
|
+
deadLetterQueue: 'SqsIdentifier',
|
|
476
|
+
maxReceiveCount: { type: 'integer' },
|
|
477
|
+
},
|
|
478
|
+
required: ['deadLetterQueue'],
|
|
479
|
+
description: 'Defines where unprocessable SQS messages are moved.',
|
|
480
|
+
};
|
|
481
|
+
const SqsStatement = {
|
|
482
|
+
properties: {
|
|
483
|
+
effect: { type: 'string', enum: ['Allow', 'Deny'] },
|
|
484
|
+
principal: {},
|
|
485
|
+
action: {},
|
|
486
|
+
resource: {},
|
|
487
|
+
condition: { type: 'object' },
|
|
488
|
+
},
|
|
489
|
+
required: ['effect', 'principal', 'action'],
|
|
490
|
+
description: 'An SQS access-policy statement.',
|
|
491
|
+
};
|
|
492
|
+
const SqsPolicy = {
|
|
493
|
+
properties: {
|
|
494
|
+
statements: listOf('SqsStatement'),
|
|
495
|
+
},
|
|
496
|
+
required: ['statements'],
|
|
497
|
+
description: 'The security policy for an SQS queue.',
|
|
498
|
+
};
|
|
499
|
+
const SqsQueue = {
|
|
500
|
+
properties: {
|
|
501
|
+
name: { type: 'string' },
|
|
502
|
+
fifoQueue: { type: 'boolean' },
|
|
503
|
+
deduplicationScope: { type: 'string', enum: ['queue', 'messageGroup'] },
|
|
504
|
+
fifoThroughputLimit: { type: 'string', enum: ['perQueue', 'perMessageGroupId'] },
|
|
505
|
+
deliveryDelay: { type: 'integer' },
|
|
506
|
+
visibilityTimeout: { type: 'integer' },
|
|
507
|
+
receiveMessageWaitTime: { type: 'integer' },
|
|
508
|
+
messageRetentionPeriod: { type: 'integer' },
|
|
509
|
+
redrivePolicy: 'SqsRedrivePolicy',
|
|
510
|
+
policy: 'SqsPolicy',
|
|
511
|
+
tags: { type: 'object' },
|
|
512
|
+
},
|
|
513
|
+
required: ['name', 'fifoQueue'],
|
|
514
|
+
description: 'Describes an SQS queue (channel-level definition).',
|
|
515
|
+
};
|
|
516
|
+
const SqsOperationQueue = {
|
|
517
|
+
...SqsQueue,
|
|
518
|
+
required: ['name'],
|
|
519
|
+
description: 'Describes an SQS queue (operation-level definition).',
|
|
520
|
+
};
|
|
521
|
+
const SqsChannelBinding = {
|
|
522
|
+
properties: {
|
|
523
|
+
queue: 'SqsQueue',
|
|
524
|
+
deadLetterQueue: 'SqsQueue',
|
|
525
|
+
bindingVersion: { type: 'string' },
|
|
526
|
+
},
|
|
527
|
+
required: ['queue'],
|
|
528
|
+
description: 'Protocol-specific information for an SQS channel.',
|
|
529
|
+
};
|
|
530
|
+
const SqsOperationBinding = {
|
|
531
|
+
properties: {
|
|
532
|
+
queues: listOf('SqsOperationQueue'),
|
|
533
|
+
bindingVersion: { type: 'string' },
|
|
534
|
+
},
|
|
535
|
+
required: ['queues'],
|
|
536
|
+
description: 'Protocol-specific information for an SQS operation.',
|
|
537
|
+
};
|
|
538
|
+
const StompChannelBinding = {
|
|
539
|
+
properties: {}, // empty object
|
|
540
|
+
description: 'Protocol-specific information for a STOMP channel.',
|
|
541
|
+
};
|
|
542
|
+
const StompServerBinding = {
|
|
543
|
+
properties: {}, // empty object
|
|
544
|
+
description: 'Protocol-specific information for a STOMP server.',
|
|
545
|
+
};
|
|
546
|
+
const StompMessageBinding = {
|
|
547
|
+
properties: {}, // empty object
|
|
548
|
+
description: 'Protocol-specific information for a STOMP message.',
|
|
549
|
+
};
|
|
550
|
+
const StompOperationBinding = {
|
|
551
|
+
properties: {}, // empty object
|
|
552
|
+
description: 'Protocol-specific information for a STOMP operation.',
|
|
553
|
+
};
|
|
554
|
+
const RedisChannelBinding = {
|
|
555
|
+
properties: {}, // empty object
|
|
556
|
+
description: 'Protocol-specific information for a Redis channel.',
|
|
557
|
+
};
|
|
558
|
+
const RedisServerBinding = {
|
|
559
|
+
properties: {}, // empty object
|
|
560
|
+
description: 'Protocol-specific information for a Redis server.',
|
|
561
|
+
};
|
|
562
|
+
const RedisMessageBinding = {
|
|
563
|
+
properties: {}, // empty object
|
|
564
|
+
description: 'Protocol-specific information for a Redis message.',
|
|
565
|
+
};
|
|
566
|
+
const RedisOperationBinding = {
|
|
567
|
+
properties: {}, // empty object
|
|
568
|
+
description: 'Protocol-specific information for a Redis operation.',
|
|
569
|
+
};
|
|
570
|
+
const MercureChannelBinding = {
|
|
571
|
+
properties: {}, // empty object
|
|
572
|
+
description: 'Protocol-specific information for a Mercure channel.',
|
|
573
|
+
};
|
|
574
|
+
const MercureServerBinding = {
|
|
575
|
+
properties: {}, // empty object
|
|
576
|
+
description: 'Protocol-specific information for a Mercure server.',
|
|
577
|
+
};
|
|
578
|
+
const MercureMessageBinding = {
|
|
579
|
+
properties: {}, // empty object
|
|
580
|
+
description: 'Protocol-specific information for a Mercure message.',
|
|
581
|
+
};
|
|
582
|
+
const MercureOperationBinding = {
|
|
583
|
+
properties: {}, // empty object
|
|
584
|
+
description: 'Protocol-specific information for a Mercure operation.',
|
|
585
|
+
};
|
|
586
|
+
const IbmmqServerBinding = {
|
|
587
|
+
properties: {
|
|
588
|
+
groupId: { type: 'string' },
|
|
589
|
+
ccdtQueueManagerName: { type: 'string' },
|
|
590
|
+
cipherSpec: { type: 'string' },
|
|
591
|
+
multiEndpointServer: { type: 'boolean' },
|
|
592
|
+
heartBeatInterval: { type: 'integer' },
|
|
593
|
+
bindingVersion: { type: 'string' },
|
|
594
|
+
},
|
|
595
|
+
description: 'Protocol-specific information for an IBM MQ server.',
|
|
596
|
+
};
|
|
597
|
+
const IbmmqChannelQueue = {
|
|
598
|
+
properties: {
|
|
599
|
+
objectName: { type: 'string' },
|
|
600
|
+
isPartitioned: { type: 'boolean' },
|
|
601
|
+
exclusive: { type: 'boolean' },
|
|
602
|
+
},
|
|
603
|
+
required: ['objectName'],
|
|
604
|
+
description: 'Defines the properties of an IBM MQ queue.',
|
|
605
|
+
};
|
|
606
|
+
const IbmmqChannelTopic = {
|
|
607
|
+
properties: {
|
|
608
|
+
string: { type: 'string' },
|
|
609
|
+
objectName: { type: 'string' },
|
|
610
|
+
durablePermitted: { type: 'boolean' },
|
|
611
|
+
lastMsgRetained: { type: 'boolean' },
|
|
612
|
+
},
|
|
613
|
+
description: 'Defines the properties of an IBM MQ topic.',
|
|
614
|
+
};
|
|
615
|
+
const IbmmqChannelBinding = {
|
|
616
|
+
properties: {
|
|
617
|
+
destinationType: { type: 'string', enum: ['topic', 'queue'] },
|
|
618
|
+
queue: 'IbmmqChannelQueue',
|
|
619
|
+
topic: 'IbmmqChannelTopic',
|
|
620
|
+
maxMsgLength: { type: 'integer' },
|
|
621
|
+
bindingVersion: { type: 'string' },
|
|
622
|
+
},
|
|
623
|
+
description: 'Protocol-specific information for an IBM MQ channel.',
|
|
624
|
+
};
|
|
625
|
+
const IbmmqMessageBinding = {
|
|
626
|
+
properties: {
|
|
627
|
+
type: { type: 'string', enum: ['string', 'jms', 'binary'] },
|
|
628
|
+
headers: { type: 'string' },
|
|
629
|
+
description: { type: 'string' },
|
|
630
|
+
expiry: { type: 'integer' },
|
|
631
|
+
bindingVersion: { type: 'string' },
|
|
632
|
+
},
|
|
633
|
+
description: 'Protocol-specific information for an IBM MQ message.',
|
|
634
|
+
};
|
|
635
|
+
const GooglepubsubMessageStoragePolicy = {
|
|
636
|
+
properties: {
|
|
637
|
+
allowedPersistenceRegions: { type: 'array', items: { type: 'string' } },
|
|
638
|
+
},
|
|
639
|
+
description: 'Policy constraining the regions where Google Cloud Pub/Sub messages are stored.',
|
|
640
|
+
};
|
|
641
|
+
const GooglepubsubSchemaSettings = {
|
|
642
|
+
properties: {
|
|
643
|
+
encoding: { type: 'string' },
|
|
644
|
+
firstRevisionId: { type: 'string' },
|
|
645
|
+
lastRevisionId: { type: 'string' },
|
|
646
|
+
name: { type: 'string' },
|
|
647
|
+
},
|
|
648
|
+
required: ['encoding', 'name'],
|
|
649
|
+
description: 'Settings for validating Google Cloud Pub/Sub messages against a schema.',
|
|
650
|
+
};
|
|
651
|
+
const GooglepubsubChannelBinding = {
|
|
652
|
+
properties: {
|
|
653
|
+
labels: { type: 'object' },
|
|
654
|
+
messageRetentionDuration: { type: 'string' },
|
|
655
|
+
messageStoragePolicy: 'GooglepubsubMessageStoragePolicy',
|
|
656
|
+
schemaSettings: 'GooglepubsubSchemaSettings',
|
|
657
|
+
topic: { type: 'string' }, // only in bindingVersion 0.1.0
|
|
658
|
+
bindingVersion: { type: 'string' },
|
|
659
|
+
},
|
|
660
|
+
description: 'Protocol-specific information for a Google Cloud Pub/Sub channel.',
|
|
661
|
+
};
|
|
662
|
+
const GooglepubsubSchema = {
|
|
663
|
+
properties: {
|
|
664
|
+
name: { type: 'string' },
|
|
665
|
+
type: { type: 'string' }, // bindingVersion 0.1.0
|
|
666
|
+
},
|
|
667
|
+
required: ['name'],
|
|
668
|
+
description: 'Identifies the Google Cloud Pub/Sub schema a message is validated against.',
|
|
669
|
+
};
|
|
670
|
+
const GooglepubsubMessageBinding = {
|
|
671
|
+
properties: {
|
|
672
|
+
attributes: { type: 'object' },
|
|
673
|
+
orderingKey: { type: 'string' },
|
|
674
|
+
schema: 'GooglepubsubSchema',
|
|
675
|
+
bindingVersion: { type: 'string' },
|
|
676
|
+
},
|
|
677
|
+
description: 'Protocol-specific information for a Google Cloud Pub/Sub message.',
|
|
678
|
+
};
|
|
679
|
+
const PulsarServerBinding = {
|
|
680
|
+
properties: {
|
|
681
|
+
tenant: { type: 'string' },
|
|
682
|
+
bindingVersion: { type: 'string' },
|
|
683
|
+
},
|
|
684
|
+
description: 'Protocol-specific information for a Pulsar server.',
|
|
685
|
+
};
|
|
686
|
+
const PulsarRetention = {
|
|
687
|
+
properties: {
|
|
688
|
+
time: { type: 'integer' },
|
|
689
|
+
size: { type: 'integer' },
|
|
690
|
+
},
|
|
691
|
+
description: 'The retention policy of a Pulsar topic.',
|
|
692
|
+
};
|
|
693
|
+
const PulsarChannelBinding = {
|
|
694
|
+
properties: {
|
|
695
|
+
namespace: { type: 'string' },
|
|
696
|
+
persistence: { type: 'string', enum: ['persistent', 'non-persistent'] },
|
|
697
|
+
compaction: { type: 'integer' },
|
|
698
|
+
'geo-replication': { type: 'array', items: { type: 'string' } },
|
|
699
|
+
retention: 'PulsarRetention',
|
|
700
|
+
ttl: { type: 'integer' },
|
|
701
|
+
deduplication: { type: 'boolean' },
|
|
702
|
+
bindingVersion: { type: 'string' },
|
|
703
|
+
},
|
|
704
|
+
required: ['namespace', 'persistence'],
|
|
705
|
+
description: 'Protocol-specific information for a Pulsar channel.',
|
|
706
|
+
};
|
|
707
|
+
const Ros2ServerBinding = {
|
|
708
|
+
properties: {
|
|
709
|
+
rmwImplementation: { type: 'string' },
|
|
710
|
+
domainId: { type: 'integer', minimum: 0 },
|
|
711
|
+
},
|
|
712
|
+
description: 'Protocol-specific information for a ROS 2 server.',
|
|
713
|
+
};
|
|
714
|
+
const Ros2ChannelBinding = {
|
|
715
|
+
properties: {},
|
|
716
|
+
description: 'Protocol-specific information for a ROS 2 channel.',
|
|
717
|
+
};
|
|
718
|
+
const Ros2QosPolicies = {
|
|
719
|
+
properties: {
|
|
720
|
+
reliability: { type: 'string', enum: ['best_effort', 'reliable'] },
|
|
721
|
+
history: { type: 'string', enum: ['keep_last', 'keep_all', 'unknown'] },
|
|
722
|
+
durability: { type: 'string', enum: ['transient_local', 'volatile'] },
|
|
723
|
+
lifespan: { type: 'integer' },
|
|
724
|
+
deadline: { type: 'integer' },
|
|
725
|
+
liveliness: { type: 'string', enum: ['automatic', 'manual'] },
|
|
726
|
+
leaseDuration: { type: 'integer' },
|
|
727
|
+
},
|
|
728
|
+
description: 'Quality of Service settings for a ROS 2 operation.',
|
|
729
|
+
};
|
|
730
|
+
const Ros2OperationBinding = {
|
|
731
|
+
properties: {
|
|
732
|
+
role: {
|
|
733
|
+
type: 'string',
|
|
734
|
+
enum: [
|
|
735
|
+
'publisher',
|
|
736
|
+
'subscriber',
|
|
737
|
+
'service_client',
|
|
738
|
+
'service_server',
|
|
739
|
+
'action_client',
|
|
740
|
+
'action_server',
|
|
741
|
+
],
|
|
742
|
+
},
|
|
743
|
+
node: { type: 'string' },
|
|
744
|
+
qosPolicies: 'Ros2QosPolicies',
|
|
745
|
+
bindingVersion: { type: 'string' },
|
|
746
|
+
},
|
|
747
|
+
description: 'Protocol-specific information for a ROS 2 operation.',
|
|
748
|
+
};
|
|
749
|
+
const Ros2MessageBinding = {
|
|
750
|
+
properties: {},
|
|
751
|
+
description: 'Protocol-specific information for a ROS 2 message.',
|
|
752
|
+
};
|
|
753
|
+
export const ServerBindings = {
|
|
754
|
+
properties: {
|
|
755
|
+
http: 'HttpServerBinding',
|
|
756
|
+
ws: 'WsServerBinding',
|
|
757
|
+
kafka: 'KafkaServerBinding',
|
|
758
|
+
anypointmq: 'AnypointmqServerBinding',
|
|
759
|
+
amqp: 'AmqpServerBinding',
|
|
760
|
+
amqp1: 'Amqp1ServerBinding',
|
|
761
|
+
mqtt: 'MqttServerBinding',
|
|
762
|
+
mqtt5: 'Mqtt5ServerBinding',
|
|
763
|
+
nats: 'NatsServerBinding',
|
|
764
|
+
jms: 'JmsServerBinding',
|
|
765
|
+
solace: 'SolaceServerBinding',
|
|
766
|
+
stomp: 'StompServerBinding',
|
|
767
|
+
redis: 'RedisServerBinding',
|
|
768
|
+
mercure: 'MercureServerBinding',
|
|
769
|
+
ibmmq: 'IbmmqServerBinding',
|
|
770
|
+
pulsar: 'PulsarServerBinding',
|
|
771
|
+
},
|
|
772
|
+
additionalProperties: { type: 'object' },
|
|
773
|
+
description: 'Map describing protocol-specific definitions for a server.',
|
|
774
|
+
};
|
|
775
|
+
export const ChannelBindings = {
|
|
776
|
+
properties: {
|
|
777
|
+
http: 'HttpChannelBinding',
|
|
778
|
+
ws: 'WsChannelBinding',
|
|
779
|
+
kafka: 'KafkaChannelBinding',
|
|
780
|
+
anypointmq: 'AnypointmqChannelBinding',
|
|
781
|
+
amqp: 'AmqpChannelBinding',
|
|
782
|
+
amqp1: 'Amqp1ChannelBinding',
|
|
783
|
+
mqtt: 'MqttChannelBinding',
|
|
784
|
+
mqtt5: 'Mqtt5ChannelBinding',
|
|
785
|
+
nats: 'NatsChannelBinding',
|
|
786
|
+
jms: 'JmsChannelBinding',
|
|
787
|
+
solace: 'SolaceChannelBinding',
|
|
788
|
+
stomp: 'StompChannelBinding',
|
|
789
|
+
redis: 'RedisChannelBinding',
|
|
790
|
+
mercure: 'MercureChannelBinding',
|
|
791
|
+
sns: 'SnsChannelBinding',
|
|
792
|
+
sqs: 'SqsChannelBinding',
|
|
793
|
+
ibmmq: 'IbmmqChannelBinding',
|
|
794
|
+
googlepubsub: 'GooglepubsubChannelBinding',
|
|
795
|
+
pulsar: 'PulsarChannelBinding',
|
|
796
|
+
},
|
|
797
|
+
additionalProperties: { type: 'object' },
|
|
798
|
+
description: 'Map describing protocol-specific definitions for a channel.',
|
|
799
|
+
};
|
|
800
|
+
export const OperationBindings = {
|
|
801
|
+
properties: {
|
|
802
|
+
http: 'HttpOperationBinding',
|
|
803
|
+
ws: 'WsOperationBinding',
|
|
804
|
+
kafka: 'KafkaOperationBinding',
|
|
805
|
+
anypointmq: 'AnypointmqOperationBinding',
|
|
806
|
+
amqp: 'AmqpOperationBinding',
|
|
807
|
+
amqp1: 'Amqp1OperationBinding',
|
|
808
|
+
mqtt: 'MqttOperationBinding',
|
|
809
|
+
mqtt5: 'Mqtt5OperationBinding',
|
|
810
|
+
nats: 'NatsOperationBinding',
|
|
811
|
+
jms: 'JmsOperationBinding',
|
|
812
|
+
solace: 'SolaceOperationBinding',
|
|
813
|
+
stomp: 'StompOperationBinding',
|
|
814
|
+
redis: 'RedisOperationBinding',
|
|
815
|
+
mercure: 'MercureOperationBinding',
|
|
816
|
+
sns: 'SnsOperationBinding',
|
|
817
|
+
sqs: 'SqsOperationBinding',
|
|
818
|
+
},
|
|
819
|
+
additionalProperties: { type: 'object' },
|
|
820
|
+
description: 'Map describing protocol-specific definitions for an operation.',
|
|
821
|
+
};
|
|
822
|
+
export const MessageBindings = {
|
|
823
|
+
properties: {
|
|
824
|
+
http: 'HttpMessageBinding',
|
|
825
|
+
ws: 'WsMessageBinding',
|
|
826
|
+
kafka: 'KafkaMessageBinding',
|
|
827
|
+
anypointmq: 'AnypointmqMessageBinding',
|
|
828
|
+
amqp: 'AmqpMessageBinding',
|
|
829
|
+
amqp1: 'Amqp1MessageBinding',
|
|
830
|
+
mqtt: 'MqttMessageBinding',
|
|
831
|
+
mqtt5: 'Mqtt5MessageBinding',
|
|
832
|
+
nats: 'NatsMessageBinding',
|
|
833
|
+
jms: 'JmsMessageBinding',
|
|
834
|
+
solace: 'SolaceMessageBinding',
|
|
835
|
+
stomp: 'StompMessageBinding',
|
|
836
|
+
redis: 'RedisMessageBinding',
|
|
837
|
+
mercure: 'MercureMessageBinding',
|
|
838
|
+
ibmmq: 'IbmmqMessageBinding',
|
|
839
|
+
googlepubsub: 'GooglepubsubMessageBinding',
|
|
840
|
+
},
|
|
841
|
+
additionalProperties: { type: 'object' },
|
|
842
|
+
description: 'Map describing protocol-specific definitions for a message.',
|
|
843
|
+
};
|
|
844
|
+
export const AsyncApiBindings = {
|
|
845
|
+
HttpServerBinding,
|
|
846
|
+
HttpChannelBinding,
|
|
847
|
+
HttpMessageBinding,
|
|
848
|
+
HttpOperationBinding,
|
|
849
|
+
WsServerBinding,
|
|
850
|
+
WsChannelBinding,
|
|
851
|
+
WsMessageBinding,
|
|
852
|
+
WsOperationBinding,
|
|
853
|
+
KafkaServerBinding,
|
|
854
|
+
KafkaTopicConfiguration,
|
|
855
|
+
KafkaChannelBinding,
|
|
856
|
+
KafkaMessageBinding,
|
|
857
|
+
KafkaOperationBinding,
|
|
858
|
+
AnypointmqServerBinding,
|
|
859
|
+
AnypointmqChannelBinding,
|
|
860
|
+
AnypointmqMessageBinding,
|
|
861
|
+
AnypointmqOperationBinding,
|
|
862
|
+
AmqpServerBinding,
|
|
863
|
+
AmqpChannelExchange,
|
|
864
|
+
AmqpChannelQueue,
|
|
865
|
+
AmqpChannelBinding,
|
|
866
|
+
AmqpMessageBinding,
|
|
867
|
+
AmqpOperationBinding,
|
|
868
|
+
Amqp1ServerBinding,
|
|
869
|
+
Amqp1ChannelBinding,
|
|
870
|
+
Amqp1MessageBinding,
|
|
871
|
+
Amqp1OperationBinding,
|
|
872
|
+
MqttServerBindingLastWill,
|
|
873
|
+
MqttServerBinding,
|
|
874
|
+
MqttChannelBinding,
|
|
875
|
+
MqttMessageBinding,
|
|
876
|
+
MqttOperationBinding,
|
|
877
|
+
Mqtt5ServerBinding,
|
|
878
|
+
Mqtt5ChannelBinding,
|
|
879
|
+
Mqtt5MessageBinding,
|
|
880
|
+
Mqtt5OperationBinding,
|
|
881
|
+
NatsServerBinding,
|
|
882
|
+
NatsChannelBinding,
|
|
883
|
+
NatsMessageBinding,
|
|
884
|
+
NatsOperationBinding,
|
|
885
|
+
JmsServerBindingProperty,
|
|
886
|
+
JmsServerBinding,
|
|
887
|
+
JmsChannelBinding,
|
|
888
|
+
JmsMessageBinding,
|
|
889
|
+
JmsOperationBinding,
|
|
890
|
+
SolaceServerBinding,
|
|
891
|
+
SolaceChannelBinding,
|
|
892
|
+
SolaceMessageBinding,
|
|
893
|
+
SolaceDestination,
|
|
894
|
+
SolaceOperationBinding,
|
|
895
|
+
StompServerBinding,
|
|
896
|
+
StompChannelBinding,
|
|
897
|
+
StompMessageBinding,
|
|
898
|
+
StompOperationBinding,
|
|
899
|
+
RedisServerBinding,
|
|
900
|
+
RedisChannelBinding,
|
|
901
|
+
RedisMessageBinding,
|
|
902
|
+
RedisOperationBinding,
|
|
903
|
+
MercureServerBinding,
|
|
904
|
+
MercureChannelBinding,
|
|
905
|
+
MercureMessageBinding,
|
|
906
|
+
MercureOperationBinding,
|
|
907
|
+
SnsIdentifier,
|
|
908
|
+
SnsOrdering,
|
|
909
|
+
SnsStatement,
|
|
910
|
+
SnsPolicy,
|
|
911
|
+
SnsChannelBinding,
|
|
912
|
+
SnsRedrivePolicy,
|
|
913
|
+
SnsDeliveryPolicy,
|
|
914
|
+
SnsConsumer,
|
|
915
|
+
SnsOperationBinding,
|
|
916
|
+
SqsIdentifier,
|
|
917
|
+
SqsRedrivePolicy,
|
|
918
|
+
SqsStatement,
|
|
919
|
+
SqsPolicy,
|
|
920
|
+
SqsQueue,
|
|
921
|
+
SqsOperationQueue,
|
|
922
|
+
SqsChannelBinding,
|
|
923
|
+
SqsOperationBinding,
|
|
924
|
+
IbmmqServerBinding,
|
|
925
|
+
IbmmqChannelQueue,
|
|
926
|
+
IbmmqChannelTopic,
|
|
927
|
+
IbmmqChannelBinding,
|
|
928
|
+
IbmmqMessageBinding,
|
|
929
|
+
GooglepubsubMessageStoragePolicy,
|
|
930
|
+
GooglepubsubSchemaSettings,
|
|
931
|
+
GooglepubsubChannelBinding,
|
|
932
|
+
GooglepubsubSchema,
|
|
933
|
+
GooglepubsubMessageBinding,
|
|
934
|
+
PulsarServerBinding,
|
|
935
|
+
PulsarRetention,
|
|
936
|
+
PulsarChannelBinding,
|
|
937
|
+
ServerBindings,
|
|
938
|
+
ChannelBindings,
|
|
939
|
+
MessageBindings,
|
|
940
|
+
OperationBindings,
|
|
941
|
+
};
|
|
942
|
+
export const Ros2Bindings = {
|
|
943
|
+
Ros2ServerBinding,
|
|
944
|
+
Ros2ChannelBinding,
|
|
945
|
+
Ros2OperationBinding,
|
|
946
|
+
Ros2QosPolicies,
|
|
947
|
+
Ros2MessageBinding,
|
|
948
|
+
};
|
|
949
|
+
//# sourceMappingURL=asyncapi-bindings.js.map
|