@pulumi/cloudamqp 3.9.0 → 3.9.1
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 +4 -3
- package/package.json.bak +2 -1
- package/package.json.dev +4 -3
- package/rabbitConfiguration.d.ts +10 -10
- package/rabbitConfiguration.js +10 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/cloudamqp",
|
|
3
|
-
"version": "v3.9.
|
|
3
|
+
"version": "v3.9.1",
|
|
4
4
|
"description": "A Pulumi package for creating and managing CloudAMQP resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource cloudamqp v3.9.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource cloudamqp v3.9.1"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"typescript": "^4.3.5"
|
|
23
23
|
},
|
|
24
24
|
"pulumi": {
|
|
25
|
-
"resource": true
|
|
25
|
+
"resource": true,
|
|
26
|
+
"name": "cloudamqp"
|
|
26
27
|
}
|
|
27
28
|
}
|
package/package.json.bak
CHANGED
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/cloudamqp",
|
|
3
|
-
"version": "v3.9.
|
|
3
|
+
"version": "v3.9.1",
|
|
4
4
|
"description": "A Pulumi package for creating and managing CloudAMQP resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
"license": "Apache-2.0",
|
|
12
12
|
"scripts": {
|
|
13
13
|
"build": "tsc",
|
|
14
|
-
"install": "node scripts/install-pulumi-plugin.js resource cloudamqp v3.9.
|
|
14
|
+
"install": "node scripts/install-pulumi-plugin.js resource cloudamqp v3.9.1"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@pulumi/pulumi": "^3.0.0"
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"typescript": "^4.3.5"
|
|
23
23
|
},
|
|
24
24
|
"pulumi": {
|
|
25
|
-
"resource": true
|
|
25
|
+
"resource": true,
|
|
26
|
+
"name": "cloudamqp"
|
|
26
27
|
}
|
|
27
28
|
}
|
package/rabbitConfiguration.d.ts
CHANGED
|
@@ -6,16 +6,16 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
6
6
|
*
|
|
7
7
|
* ## Argument threshold values
|
|
8
8
|
*
|
|
9
|
-
* | Argument
|
|
10
|
-
*
|
|
11
|
-
* | heartbeat
|
|
12
|
-
* | connectionMax
|
|
13
|
-
* | channelMax
|
|
14
|
-
* | consumerTimeout
|
|
15
|
-
* | vmMemoryHighWatermark
|
|
16
|
-
* | queueIndexEmbedMsgsBelow | int
|
|
17
|
-
* | maxMessageSize
|
|
18
|
-
* | logExchangeLevel
|
|
9
|
+
* | Argument | Type | Default | Min | Max | Unit | Affect | Note |
|
|
10
|
+
* |---|---|---|---|---|---|---|---|
|
|
11
|
+
* | heartbeat | int | 120 | 0 | - | | Only effects new connections | |
|
|
12
|
+
* | connectionMax | int | -1 | 1 | - | | RabbitMQ restart required | -1 in the provider corresponds to INFINITY in the RabbitMQ config |
|
|
13
|
+
* | channelMax | int | 128 | 0 | - | | Only effects new connections | |
|
|
14
|
+
* | consumerTimeout | int | 7200000 | 10000 | 86400000 | milliseconds | Only effects new channels | -1 in the provider corresponds to false (disable) in the RabbitMQ config |
|
|
15
|
+
* | vmMemoryHighWatermark | float | 0.81 | 0.4 | 0.9 | | Applied immediately | |
|
|
16
|
+
* | queueIndexEmbedMsgsBelow | int | 4096 | 1 | 10485760 | bytes | Applied immediately for new queues, requires restart for existing queues | |
|
|
17
|
+
* | maxMessageSize | int | 134217728 | 1 | 536870912 | bytes | Only effects new channels | |
|
|
18
|
+
* | logExchangeLevel | string | error | - | - | | RabbitMQ restart required | debug, info, warning, error, critical |
|
|
19
19
|
*
|
|
20
20
|
* ## Dependency
|
|
21
21
|
*
|
package/rabbitConfiguration.js
CHANGED
|
@@ -12,16 +12,16 @@ const utilities = require("./utilities");
|
|
|
12
12
|
*
|
|
13
13
|
* ## Argument threshold values
|
|
14
14
|
*
|
|
15
|
-
* | Argument
|
|
16
|
-
*
|
|
17
|
-
* | heartbeat
|
|
18
|
-
* | connectionMax
|
|
19
|
-
* | channelMax
|
|
20
|
-
* | consumerTimeout
|
|
21
|
-
* | vmMemoryHighWatermark
|
|
22
|
-
* | queueIndexEmbedMsgsBelow | int
|
|
23
|
-
* | maxMessageSize
|
|
24
|
-
* | logExchangeLevel
|
|
15
|
+
* | Argument | Type | Default | Min | Max | Unit | Affect | Note |
|
|
16
|
+
* |---|---|---|---|---|---|---|---|
|
|
17
|
+
* | heartbeat | int | 120 | 0 | - | | Only effects new connections | |
|
|
18
|
+
* | connectionMax | int | -1 | 1 | - | | RabbitMQ restart required | -1 in the provider corresponds to INFINITY in the RabbitMQ config |
|
|
19
|
+
* | channelMax | int | 128 | 0 | - | | Only effects new connections | |
|
|
20
|
+
* | consumerTimeout | int | 7200000 | 10000 | 86400000 | milliseconds | Only effects new channels | -1 in the provider corresponds to false (disable) in the RabbitMQ config |
|
|
21
|
+
* | vmMemoryHighWatermark | float | 0.81 | 0.4 | 0.9 | | Applied immediately | |
|
|
22
|
+
* | queueIndexEmbedMsgsBelow | int | 4096 | 1 | 10485760 | bytes | Applied immediately for new queues, requires restart for existing queues | |
|
|
23
|
+
* | maxMessageSize | int | 134217728 | 1 | 536870912 | bytes | Only effects new channels | |
|
|
24
|
+
* | logExchangeLevel | string | error | - | - | | RabbitMQ restart required | debug, info, warning, error, critical |
|
|
25
25
|
*
|
|
26
26
|
* ## Dependency
|
|
27
27
|
*
|