@pulumi/cloudamqp 3.9.0 → 3.9.2

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.2",
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.2"
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.2",
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.2"
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/plugin.d.ts CHANGED
@@ -1,48 +1,5 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
- * This resource allows you to enable or disable Rabbit MQ plugins.
4
- *
5
- * Only available for dedicated subscription plans.
6
- *
7
- * ⚠️ From our go API wrapper [v1.4.0](https://github.com/84codes/go-api/releases/tag/v1.4.0) there is support for multiple retries when requesting information about plugins. This was introduced to avoid `ReadPlugin error 400: Timeout talking to backend`.
8
- *
9
- * **Enable multiple plugins:** Rabbit MQ can only change one plugin at a time. It will fail if multiple plugins resources are used, unless by creating dependencies with `dependOn` between the resources. Once one plugin has been enabled, the other will continue. See example below.
10
- *
11
- * ## Example Usage
12
- *
13
- * ```typescript
14
- * import * as pulumi from "@pulumi/pulumi";
15
- * import * as cloudamqp from "@pulumi/cloudamqp";
16
- *
17
- * const rabbitmqTop = new cloudamqp.Plugin("rabbitmqTop", {
18
- * instanceId: cloudamqp_instance.instance.id,
19
- * enabled: true,
20
- * });
21
- * ```
22
- *
23
- * **Enable multiple plugins**
24
- *
25
- * ```typescript
26
- * import * as pulumi from "@pulumi/pulumi";
27
- * import * as cloudamqp from "@pulumi/cloudamqp";
28
- *
29
- * const rabbitmqTop = new cloudamqp.Plugin("rabbitmqTop", {
30
- * instanceId: cloudamqp_instance.instance.id,
31
- * enabled: true,
32
- * });
33
- * const rabbitmqAmqp10 = new cloudamqp.Plugin("rabbitmqAmqp10", {
34
- * instanceId: cloudamqp_instance.instance.id,
35
- * enabled: true,
36
- * }, {
37
- * dependsOn: [rabbitmqTop],
38
- * });
39
- * ```
40
- * ## Dependency
41
- *
42
- * This resource depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
43
- *
44
- * If multiple plugins should be enable, create dependencies between the plugin resources. See example above.
45
- *
46
3
  * ## Import
47
4
  *
48
5
  * `cloudamqp_plugin` can be imported using the name argument of the resource together with CloudAMQP instance identifier. The name and identifier are CSV separated, see example below.
package/plugin.js CHANGED
@@ -6,49 +6,6 @@ exports.Plugin = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
- * This resource allows you to enable or disable Rabbit MQ plugins.
10
- *
11
- * Only available for dedicated subscription plans.
12
- *
13
- * ⚠️ From our go API wrapper [v1.4.0](https://github.com/84codes/go-api/releases/tag/v1.4.0) there is support for multiple retries when requesting information about plugins. This was introduced to avoid `ReadPlugin error 400: Timeout talking to backend`.
14
- *
15
- * **Enable multiple plugins:** Rabbit MQ can only change one plugin at a time. It will fail if multiple plugins resources are used, unless by creating dependencies with `dependOn` between the resources. Once one plugin has been enabled, the other will continue. See example below.
16
- *
17
- * ## Example Usage
18
- *
19
- * ```typescript
20
- * import * as pulumi from "@pulumi/pulumi";
21
- * import * as cloudamqp from "@pulumi/cloudamqp";
22
- *
23
- * const rabbitmqTop = new cloudamqp.Plugin("rabbitmqTop", {
24
- * instanceId: cloudamqp_instance.instance.id,
25
- * enabled: true,
26
- * });
27
- * ```
28
- *
29
- * **Enable multiple plugins**
30
- *
31
- * ```typescript
32
- * import * as pulumi from "@pulumi/pulumi";
33
- * import * as cloudamqp from "@pulumi/cloudamqp";
34
- *
35
- * const rabbitmqTop = new cloudamqp.Plugin("rabbitmqTop", {
36
- * instanceId: cloudamqp_instance.instance.id,
37
- * enabled: true,
38
- * });
39
- * const rabbitmqAmqp10 = new cloudamqp.Plugin("rabbitmqAmqp10", {
40
- * instanceId: cloudamqp_instance.instance.id,
41
- * enabled: true,
42
- * }, {
43
- * dependsOn: [rabbitmqTop],
44
- * });
45
- * ```
46
- * ## Dependency
47
- *
48
- * This resource depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
49
- *
50
- * If multiple plugins should be enable, create dependencies between the plugin resources. See example above.
51
- *
52
9
  * ## Import
53
10
  *
54
11
  * `cloudamqp_plugin` can be imported using the name argument of the resource together with CloudAMQP instance identifier. The name and identifier are CSV separated, see example below.
package/plugin.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"plugin.js","sourceRoot":"","sources":["../plugin.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmDG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAiD7C,YAAY,IAAY,EAAE,WAAsC,EAAE,IAAmC;QACjG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAsC,CAAC;YACrD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAAqC,CAAC;YACnD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,MAAM,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC3D,CAAC;IAtED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;;AA1BL,wBAwEC;AA1DG,gBAAgB;AACO,mBAAY,GAAG,+BAA+B,CAAC"}
1
+ {"version":3,"file":"plugin.js","sourceRoot":"","sources":["../plugin.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;GAQG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAiD7C,YAAY,IAAY,EAAE,WAAsC,EAAE,IAAmC;QACjG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAsC,CAAC;YACrD,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAAqC,CAAC;YACnD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,MAAM,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC3D,CAAC;IAtED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC7D,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;;AA1BL,wBAwEC;AA1DG,gBAAgB;AACO,mBAAY,GAAG,+BAA+B,CAAC"}
@@ -4,7 +4,9 @@ import * as pulumi from "@pulumi/pulumi";
4
4
  *
5
5
  * Only available for dedicated subscription plans.
6
6
  *
7
- * ⚠️ From our go API wrapper [v1.5.0](https://github.com/84codes/go-api/releases/tag/v1.5.0) there is support for multiple retries when requesting information about community plugins. This was introduced to avoid `ReadPluginCommunity error 400: Timeout talking to backend`.
7
+ * > From our go API wrapper [v1.5.0](https://github.com/84codes/go-api/releases/tag/v1.5.0) there is support for multiple retries when requesting information about community plugins. This was introduced to avoid `ReadPluginCommunity error 400: Timeout talking to backend`.
8
+ *
9
+ * > From our go API wrapper [v1.9.1](https://github.com/84codes/go-api/releases/tag/v1.9.1) there is support for asynchronous request for plugin/community actions. Solve issues reported when enable multiple plugins.
8
10
  *
9
11
  * ## Example Usage
10
12
  *
@@ -10,7 +10,9 @@ const utilities = require("./utilities");
10
10
  *
11
11
  * Only available for dedicated subscription plans.
12
12
  *
13
- * ⚠️ From our go API wrapper [v1.5.0](https://github.com/84codes/go-api/releases/tag/v1.5.0) there is support for multiple retries when requesting information about community plugins. This was introduced to avoid `ReadPluginCommunity error 400: Timeout talking to backend`.
13
+ * > From our go API wrapper [v1.5.0](https://github.com/84codes/go-api/releases/tag/v1.5.0) there is support for multiple retries when requesting information about community plugins. This was introduced to avoid `ReadPluginCommunity error 400: Timeout talking to backend`.
14
+ *
15
+ * > From our go API wrapper [v1.9.1](https://github.com/84codes/go-api/releases/tag/v1.9.1) there is support for asynchronous request for plugin/community actions. Solve issues reported when enable multiple plugins.
14
16
  *
15
17
  * ## Example Usage
16
18
  *
@@ -1 +1 @@
1
- {"version":3,"file":"pluginCommunity.js","sourceRoot":"","sources":["../pluginCommunity.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IAiDtD,YAAY,IAAY,EAAE,WAAwD,EAAE,IAAmC;QACnH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+C,CAAC;YAC9D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,eAAe,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACpE,CAAC;IAtED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;;AA1BL,0CAwEC;AA1DG,gBAAgB;AACO,4BAAY,GAAG,iDAAiD,CAAC"}
1
+ {"version":3,"file":"pluginCommunity.js","sourceRoot":"","sources":["../pluginCommunity.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,MAAa,eAAgB,SAAQ,MAAM,CAAC,cAAc;IAiDtD,YAAY,IAAY,EAAE,WAAwD,EAAE,IAAmC;QACnH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA+C,CAAC;YAC9D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SAC3D;aAAM;YACH,MAAM,IAAI,GAAG,WAA8C,CAAC;YAC5D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,UAAU,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvD,MAAM,IAAI,KAAK,CAAC,wCAAwC,CAAC,CAAC;aAC7D;YACD,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;SACzD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,eAAe,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACpE,CAAC;IAtED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA4B,EAAE,IAAmC;QAC1H,OAAO,IAAI,eAAe,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACtE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,eAAe,CAAC,YAAY,CAAC;IAChE,CAAC;;AA1BL,0CAwEC;AA1DG,gBAAgB;AACO,4BAAY,GAAG,iDAAiD,CAAC"}
@@ -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
  *
@@ -48,19 +48,19 @@ export declare class RabbitConfiguration extends pulumi.CustomResource {
48
48
  /**
49
49
  * Set the maximum permissible number of channels per connection.
50
50
  */
51
- readonly channelMax: pulumi.Output<number | undefined>;
51
+ readonly channelMax: pulumi.Output<number>;
52
52
  /**
53
53
  * Set the maximum permissible number of connection.
54
54
  */
55
- readonly connectionMax: pulumi.Output<number | undefined>;
55
+ readonly connectionMax: pulumi.Output<number>;
56
56
  /**
57
57
  * A consumer that has recevied a message and does not acknowledge that message within the timeout in milliseconds
58
58
  */
59
- readonly consumerTimeout: pulumi.Output<number | undefined>;
59
+ readonly consumerTimeout: pulumi.Output<number>;
60
60
  /**
61
61
  * Set the server AMQP 0-9-1 heartbeat timeout in seconds.
62
62
  */
63
- readonly heartbeat: pulumi.Output<number | undefined>;
63
+ readonly heartbeat: pulumi.Output<number>;
64
64
  /**
65
65
  * The CloudAMQP instance ID.
66
66
  */
@@ -68,19 +68,19 @@ export declare class RabbitConfiguration extends pulumi.CustomResource {
68
68
  /**
69
69
  * Log level for the logger used for log integrations and the CloudAMQP Console log view.
70
70
  */
71
- readonly logExchangeLevel: pulumi.Output<string | undefined>;
71
+ readonly logExchangeLevel: pulumi.Output<string>;
72
72
  /**
73
73
  * The largest allowed message payload size in bytes.
74
74
  */
75
- readonly maxMessageSize: pulumi.Output<number | undefined>;
75
+ readonly maxMessageSize: pulumi.Output<number>;
76
76
  /**
77
77
  * Size in bytes below which to embed messages in the queue index.
78
78
  */
79
- readonly queueIndexEmbedMsgsBelow: pulumi.Output<number | undefined>;
79
+ readonly queueIndexEmbedMsgsBelow: pulumi.Output<number>;
80
80
  /**
81
81
  * When the server will enter memory based flow-control as relative to the maximum available memory.
82
82
  */
83
- readonly vmMemoryHighWatermark: pulumi.Output<number | undefined>;
83
+ readonly vmMemoryHighWatermark: pulumi.Output<number>;
84
84
  /**
85
85
  * Create a RabbitConfiguration resource with the given unique name, arguments, and options.
86
86
  *
@@ -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
  *
package/types/input.d.ts CHANGED
@@ -5,7 +5,7 @@ export interface SecurityFirewallRule {
5
5
  */
6
6
  description?: pulumi.Input<string>;
7
7
  /**
8
- * Source ip and netmask for the rule. (e.g. 10.56.72.0/24)
8
+ * CIDR address: IP address with CIDR notation (e.g. 10.56.72.0/24)
9
9
  */
10
10
  ip: pulumi.Input<string>;
11
11
  /**
package/types/output.d.ts CHANGED
@@ -41,7 +41,7 @@ export interface SecurityFirewallRule {
41
41
  */
42
42
  description?: string;
43
43
  /**
44
- * Source ip and netmask for the rule. (e.g. 10.56.72.0/24)
44
+ * CIDR address: IP address with CIDR notation (e.g. 10.56.72.0/24)
45
45
  */
46
46
  ip: string;
47
47
  /**