@pulumi/cloudamqp 3.9.1 → 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 +2 -2
- package/package.json.dev +2 -2
- package/plugin.d.ts +0 -43
- package/plugin.js +0 -43
- package/plugin.js.map +1 -1
- package/pluginCommunity.d.ts +3 -1
- package/pluginCommunity.js +3 -1
- package/pluginCommunity.js.map +1 -1
- package/rabbitConfiguration.d.ts +8 -8
- package/types/input.d.ts +1 -1
- package/types/output.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/cloudamqp",
|
|
3
|
-
"version": "v3.9.
|
|
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.
|
|
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"
|
package/package.json.dev
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/cloudamqp",
|
|
3
|
-
"version": "v3.9.
|
|
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.
|
|
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"
|
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
|
|
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"}
|
package/pluginCommunity.d.ts
CHANGED
|
@@ -4,7 +4,9 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
4
4
|
*
|
|
5
5
|
* Only available for dedicated subscription plans.
|
|
6
6
|
*
|
|
7
|
-
*
|
|
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
|
*
|
package/pluginCommunity.js
CHANGED
|
@@ -10,7 +10,9 @@ const utilities = require("./utilities");
|
|
|
10
10
|
*
|
|
11
11
|
* Only available for dedicated subscription plans.
|
|
12
12
|
*
|
|
13
|
-
*
|
|
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
|
*
|
package/pluginCommunity.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"pluginCommunity.js","sourceRoot":"","sources":["../pluginCommunity.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
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"}
|
package/rabbitConfiguration.d.ts
CHANGED
|
@@ -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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
83
|
+
readonly vmMemoryHighWatermark: pulumi.Output<number>;
|
|
84
84
|
/**
|
|
85
85
|
* Create a RabbitConfiguration resource with the given unique name, arguments, and options.
|
|
86
86
|
*
|
package/types/input.d.ts
CHANGED
package/types/output.d.ts
CHANGED