@pulumi/rabbitmq 3.3.3 → 3.3.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/rabbitmq",
3
- "version": "3.3.3",
3
+ "version": "3.3.4",
4
4
  "description": "A Pulumi package for creating and managing RabbitMQ resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -23,6 +23,6 @@
23
23
  "pulumi": {
24
24
  "resource": true,
25
25
  "name": "rabbitmq",
26
- "version": "3.3.3"
26
+ "version": "3.3.4"
27
27
  }
28
28
  }
package/types/input.d.ts CHANGED
@@ -152,38 +152,114 @@ export interface QueueSettings {
152
152
  durable?: pulumi.Input<boolean>;
153
153
  }
154
154
  export interface ShovelInfo {
155
+ /**
156
+ * Determines how the shovel should acknowledge messages. Possible values are: `on-confirm`, `on-publish` and `no-ack`.
157
+ * Defaults to `on-confirm`.
158
+ */
155
159
  ackMode?: pulumi.Input<string>;
156
160
  /**
161
+ * Whether to add `x-shovelled` headers to shovelled messages.
162
+ *
157
163
  * @deprecated use destinationAddForwardHeaders instead
158
164
  */
159
165
  addForwardHeaders?: pulumi.Input<boolean>;
160
166
  /**
167
+ * Determines when (if ever) the shovel should delete itself. Possible values are: `never`, `queue-length` or an integer.
168
+ *
161
169
  * @deprecated use sourceDeleteAfter instead
162
170
  */
163
171
  deleteAfter?: pulumi.Input<string>;
172
+ /**
173
+ * Whether to add `x-shovelled` headers to shovelled messages.
174
+ */
164
175
  destinationAddForwardHeaders?: pulumi.Input<boolean>;
165
176
  destinationAddTimestampHeader?: pulumi.Input<boolean>;
177
+ /**
178
+ * The AMQP 1.0 destination link address.
179
+ */
166
180
  destinationAddress?: pulumi.Input<string>;
181
+ /**
182
+ * Application properties to set when shovelling messages.
183
+ */
167
184
  destinationApplicationProperties?: pulumi.Input<string>;
185
+ /**
186
+ * The exchange to which messages should be published.
187
+ * Either this or `destinationQueue` must be specified but not both.
188
+ */
168
189
  destinationExchange?: pulumi.Input<string>;
190
+ /**
191
+ * The routing key when using `destinationExchange`.
192
+ */
169
193
  destinationExchangeKey?: pulumi.Input<string>;
194
+ /**
195
+ * Properties to overwrite when shovelling messages.
196
+ *
197
+ * For more details regarding dynamic shovel parameters please have a look at the official reference documentaion at [RabbitMQ: Configuring Dynamic Shovels](https://www.rabbitmq.com/shovel-dynamic.html).
198
+ */
170
199
  destinationProperties?: pulumi.Input<string>;
200
+ /**
201
+ * The protocol (`amqp091` or `amqp10`) to use when connecting to the destination.
202
+ * Defaults to `amqp091`.
203
+ */
171
204
  destinationProtocol?: pulumi.Input<string>;
205
+ /**
206
+ * A map of properties to overwrite when shovelling messages.
207
+ */
172
208
  destinationPublishProperties?: pulumi.Input<string>;
209
+ /**
210
+ * The queue to which messages should be published.
211
+ * Either this or `destinationExchange` must be specified but not both.
212
+ */
173
213
  destinationQueue?: pulumi.Input<string>;
214
+ /**
215
+ * The amqp uri for the destination .
216
+ */
174
217
  destinationUri: pulumi.Input<string>;
175
218
  /**
219
+ * The maximum number of unacknowledged messages copied over a shovel at any one time.
220
+ *
176
221
  * @deprecated use sourcePrefetchCount instead
177
222
  */
178
223
  prefetchCount?: pulumi.Input<number>;
224
+ /**
225
+ * The duration in seconds to reconnect to a broker after disconnected.
226
+ * Defaults to `1`.
227
+ */
179
228
  reconnectDelay?: pulumi.Input<number>;
229
+ /**
230
+ * The AMQP 1.0 source link address.
231
+ */
180
232
  sourceAddress?: pulumi.Input<string>;
233
+ /**
234
+ * Determines when (if ever) the shovel should delete itself. Possible values are: `never`, `queue-length` or an integer.
235
+ */
181
236
  sourceDeleteAfter?: pulumi.Input<string>;
237
+ /**
238
+ * The exchange from which to consume.
239
+ * Either this or `sourceQueue` must be specified but not both.
240
+ */
182
241
  sourceExchange?: pulumi.Input<string>;
242
+ /**
243
+ * The routing key when using `sourceExchange`.
244
+ */
183
245
  sourceExchangeKey?: pulumi.Input<string>;
246
+ /**
247
+ * The maximum number of unacknowledged messages copied over a shovel at any one time.
248
+ */
184
249
  sourcePrefetchCount?: pulumi.Input<number>;
250
+ /**
251
+ * The protocol (`amqp091` or `amqp10`) to use when connecting to the source.
252
+ * Defaults to `amqp091`.
253
+ */
185
254
  sourceProtocol?: pulumi.Input<string>;
255
+ /**
256
+ * The queue from which to consume.
257
+ * Either this or `sourceExchange` must be specified but not both.
258
+ */
186
259
  sourceQueue?: pulumi.Input<string>;
260
+ /**
261
+ * The amqp uri for the source.
262
+ */
187
263
  sourceUri: pulumi.Input<string>;
188
264
  }
189
265
  export interface TopicPermissionsPermission {
package/types/output.d.ts CHANGED
@@ -159,38 +159,114 @@ export interface QueueSettings {
159
159
  durable?: boolean;
160
160
  }
161
161
  export interface ShovelInfo {
162
+ /**
163
+ * Determines how the shovel should acknowledge messages. Possible values are: `on-confirm`, `on-publish` and `no-ack`.
164
+ * Defaults to `on-confirm`.
165
+ */
162
166
  ackMode?: string;
163
167
  /**
168
+ * Whether to add `x-shovelled` headers to shovelled messages.
169
+ *
164
170
  * @deprecated use destinationAddForwardHeaders instead
165
171
  */
166
172
  addForwardHeaders?: boolean;
167
173
  /**
174
+ * Determines when (if ever) the shovel should delete itself. Possible values are: `never`, `queue-length` or an integer.
175
+ *
168
176
  * @deprecated use sourceDeleteAfter instead
169
177
  */
170
178
  deleteAfter?: string;
179
+ /**
180
+ * Whether to add `x-shovelled` headers to shovelled messages.
181
+ */
171
182
  destinationAddForwardHeaders?: boolean;
172
183
  destinationAddTimestampHeader?: boolean;
184
+ /**
185
+ * The AMQP 1.0 destination link address.
186
+ */
173
187
  destinationAddress?: string;
188
+ /**
189
+ * Application properties to set when shovelling messages.
190
+ */
174
191
  destinationApplicationProperties?: string;
192
+ /**
193
+ * The exchange to which messages should be published.
194
+ * Either this or `destinationQueue` must be specified but not both.
195
+ */
175
196
  destinationExchange?: string;
197
+ /**
198
+ * The routing key when using `destinationExchange`.
199
+ */
176
200
  destinationExchangeKey?: string;
201
+ /**
202
+ * Properties to overwrite when shovelling messages.
203
+ *
204
+ * For more details regarding dynamic shovel parameters please have a look at the official reference documentaion at [RabbitMQ: Configuring Dynamic Shovels](https://www.rabbitmq.com/shovel-dynamic.html).
205
+ */
177
206
  destinationProperties?: string;
207
+ /**
208
+ * The protocol (`amqp091` or `amqp10`) to use when connecting to the destination.
209
+ * Defaults to `amqp091`.
210
+ */
178
211
  destinationProtocol?: string;
212
+ /**
213
+ * A map of properties to overwrite when shovelling messages.
214
+ */
179
215
  destinationPublishProperties?: string;
216
+ /**
217
+ * The queue to which messages should be published.
218
+ * Either this or `destinationExchange` must be specified but not both.
219
+ */
180
220
  destinationQueue?: string;
221
+ /**
222
+ * The amqp uri for the destination .
223
+ */
181
224
  destinationUri: string;
182
225
  /**
226
+ * The maximum number of unacknowledged messages copied over a shovel at any one time.
227
+ *
183
228
  * @deprecated use sourcePrefetchCount instead
184
229
  */
185
230
  prefetchCount?: number;
231
+ /**
232
+ * The duration in seconds to reconnect to a broker after disconnected.
233
+ * Defaults to `1`.
234
+ */
186
235
  reconnectDelay?: number;
236
+ /**
237
+ * The AMQP 1.0 source link address.
238
+ */
187
239
  sourceAddress?: string;
240
+ /**
241
+ * Determines when (if ever) the shovel should delete itself. Possible values are: `never`, `queue-length` or an integer.
242
+ */
188
243
  sourceDeleteAfter?: string;
244
+ /**
245
+ * The exchange from which to consume.
246
+ * Either this or `sourceQueue` must be specified but not both.
247
+ */
189
248
  sourceExchange?: string;
249
+ /**
250
+ * The routing key when using `sourceExchange`.
251
+ */
190
252
  sourceExchangeKey?: string;
253
+ /**
254
+ * The maximum number of unacknowledged messages copied over a shovel at any one time.
255
+ */
191
256
  sourcePrefetchCount?: number;
257
+ /**
258
+ * The protocol (`amqp091` or `amqp10`) to use when connecting to the source.
259
+ * Defaults to `amqp091`.
260
+ */
192
261
  sourceProtocol?: string;
262
+ /**
263
+ * The queue from which to consume.
264
+ * Either this or `sourceExchange` must be specified but not both.
265
+ */
193
266
  sourceQueue?: string;
267
+ /**
268
+ * The amqp uri for the source.
269
+ */
194
270
  sourceUri: string;
195
271
  }
196
272
  export interface TopicPermissionsPermission {