@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/cloudamqp",
3
- "version": "v3.9.0",
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.0"
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
@@ -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.dev CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/cloudamqp",
3
- "version": "v3.9.0",
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.0"
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
  }
@@ -6,16 +6,16 @@ import * as pulumi from "@pulumi/pulumi";
6
6
  *
7
7
  * ## Argument threshold values
8
8
  *
9
- * | Argument | Type | Default | Min | Max | Note |
10
- * |------------------------------|--------|-----------|-------|-----------|-------------------------------------------------------------------|
11
- * | heartbeat | int | 120 | 1 | - | |
12
- * | connectionMax | int | -1 | 1 | - | -1 in the provider corresponds to INFINITY in the RabbitMQ config |
13
- * | channelMax | int | 0 | 0 | - | 0 means "no limit" |
14
- * | consumerTimeout | int | 7200000 | 10000 | 25000000 | Timeout in milliseconds |
15
- * | vmMemoryHighWatermark | float | 0.81 | 0.4 | 0.9 | |
16
- * | queueIndexEmbedMsgsBelow | int | 4096 | 1 | 10485760 | |
17
- * | maxMessageSize | int | 134217728 | 1 | 536870912 | Size in bytes |
18
- * | logExchangeLevel | string | error | - | - | debug, info, warning, error, critical |
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
  *
@@ -12,16 +12,16 @@ const utilities = require("./utilities");
12
12
  *
13
13
  * ## Argument threshold values
14
14
  *
15
- * | Argument | Type | Default | Min | Max | Note |
16
- * |------------------------------|--------|-----------|-------|-----------|-------------------------------------------------------------------|
17
- * | heartbeat | int | 120 | 1 | - | |
18
- * | connectionMax | int | -1 | 1 | - | -1 in the provider corresponds to INFINITY in the RabbitMQ config |
19
- * | channelMax | int | 0 | 0 | - | 0 means "no limit" |
20
- * | consumerTimeout | int | 7200000 | 10000 | 25000000 | Timeout in milliseconds |
21
- * | vmMemoryHighWatermark | float | 0.81 | 0.4 | 0.9 | |
22
- * | queueIndexEmbedMsgsBelow | int | 4096 | 1 | 10485760 | |
23
- * | maxMessageSize | int | 134217728 | 1 | 536870912 | Size in bytes |
24
- * | logExchangeLevel | string | error | - | - | debug, info, warning, error, critical |
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
  *