@pulumi/rabbitmq 3.3.4 → 3.3.5
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/binding.d.ts +3 -3
- package/getExchange.js +5 -1
- package/getExchange.js.map +1 -1
- package/getUser.js +4 -1
- package/getUser.js.map +1 -1
- package/getVHost.js +4 -1
- package/getVHost.js.map +1 -1
- package/operatorPolicy.d.ts +2 -2
- package/operatorPolicy.js +2 -2
- package/package.json +2 -2
- package/types/input.d.ts +4 -4
- package/types/output.d.ts +5 -5
package/binding.d.ts
CHANGED
|
@@ -74,7 +74,7 @@ export declare class Binding extends pulumi.CustomResource {
|
|
|
74
74
|
* Additional key/value arguments for the binding.
|
|
75
75
|
*/
|
|
76
76
|
readonly arguments: pulumi.Output<{
|
|
77
|
-
[key: string]:
|
|
77
|
+
[key: string]: string;
|
|
78
78
|
} | undefined>;
|
|
79
79
|
readonly argumentsJson: pulumi.Output<string | undefined>;
|
|
80
80
|
/**
|
|
@@ -118,7 +118,7 @@ export interface BindingState {
|
|
|
118
118
|
* Additional key/value arguments for the binding.
|
|
119
119
|
*/
|
|
120
120
|
arguments?: pulumi.Input<{
|
|
121
|
-
[key: string]:
|
|
121
|
+
[key: string]: pulumi.Input<string>;
|
|
122
122
|
}>;
|
|
123
123
|
argumentsJson?: pulumi.Input<string>;
|
|
124
124
|
/**
|
|
@@ -154,7 +154,7 @@ export interface BindingArgs {
|
|
|
154
154
|
* Additional key/value arguments for the binding.
|
|
155
155
|
*/
|
|
156
156
|
arguments?: pulumi.Input<{
|
|
157
|
-
[key: string]:
|
|
157
|
+
[key: string]: pulumi.Input<string>;
|
|
158
158
|
}>;
|
|
159
159
|
argumentsJson?: pulumi.Input<string>;
|
|
160
160
|
/**
|
package/getExchange.js
CHANGED
|
@@ -14,7 +14,11 @@ function getExchange(args, opts) {
|
|
|
14
14
|
}
|
|
15
15
|
exports.getExchange = getExchange;
|
|
16
16
|
function getExchangeOutput(args, opts) {
|
|
17
|
-
|
|
17
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
18
|
+
return pulumi.runtime.invokeOutput("rabbitmq:index/getExchange:getExchange", {
|
|
19
|
+
"name": args.name,
|
|
20
|
+
"vhost": args.vhost,
|
|
21
|
+
}, opts);
|
|
18
22
|
}
|
|
19
23
|
exports.getExchangeOutput = getExchangeOutput;
|
|
20
24
|
//# sourceMappingURL=getExchange.js.map
|
package/getExchange.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getExchange.js","sourceRoot":"","sources":["../getExchange.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getExchange.js","sourceRoot":"","sources":["../getExchange.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,EAAE;QACnE,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kCAMC;AAmBD,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wCAAwC,EAAE;QACzE,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8CAMC"}
|
package/getUser.js
CHANGED
|
@@ -13,7 +13,10 @@ function getUser(args, opts) {
|
|
|
13
13
|
}
|
|
14
14
|
exports.getUser = getUser;
|
|
15
15
|
function getUserOutput(args, opts) {
|
|
16
|
-
|
|
16
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
17
|
+
return pulumi.runtime.invokeOutput("rabbitmq:index/getUser:getUser", {
|
|
18
|
+
"name": args.name,
|
|
19
|
+
}, opts);
|
|
17
20
|
}
|
|
18
21
|
exports.getUserOutput = getUserOutput;
|
|
19
22
|
//# sourceMappingURL=getUser.js.map
|
package/getUser.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getUser.js","sourceRoot":"","sources":["../getUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getUser.js","sourceRoot":"","sources":["../getUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,SAAgB,OAAO,CAAC,IAAiB,EAAE,IAA2B;IAClE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gCAAgC,EAAE;QAC3D,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0BAKC;AAiBD,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,gCAAgC,EAAE;QACjE,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sCAKC"}
|
package/getVHost.js
CHANGED
|
@@ -13,7 +13,10 @@ function getVHost(args, opts) {
|
|
|
13
13
|
}
|
|
14
14
|
exports.getVHost = getVHost;
|
|
15
15
|
function getVHostOutput(args, opts) {
|
|
16
|
-
|
|
16
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
17
|
+
return pulumi.runtime.invokeOutput("rabbitmq:index/getVHost:getVHost", {
|
|
18
|
+
"name": args.name,
|
|
19
|
+
}, opts);
|
|
17
20
|
}
|
|
18
21
|
exports.getVHostOutput = getVHostOutput;
|
|
19
22
|
//# sourceMappingURL=getVHost.js.map
|
package/getVHost.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getVHost.js","sourceRoot":"","sources":["../getVHost.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getVHost.js","sourceRoot":"","sources":["../getVHost.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IACpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4BAKC;AAgBD,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kCAAkC,EAAE;QACnE,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wCAKC"}
|
package/operatorPolicy.d.ts
CHANGED
package/operatorPolicy.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/rabbitmq",
|
|
3
|
-
"version": "3.3.
|
|
3
|
+
"version": "3.3.5",
|
|
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.
|
|
26
|
+
"version": "3.3.5"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ export interface ExchangeSettings {
|
|
|
4
4
|
* Additional key/value settings for the exchange.
|
|
5
5
|
*/
|
|
6
6
|
arguments?: pulumi.Input<{
|
|
7
|
-
[key: string]:
|
|
7
|
+
[key: string]: pulumi.Input<string>;
|
|
8
8
|
}>;
|
|
9
9
|
/**
|
|
10
10
|
* Whether the exchange will self-delete when all
|
|
@@ -79,7 +79,7 @@ export interface OperatorPolicyPolicy {
|
|
|
79
79
|
* RabbitMQ documentation for definition references and examples.
|
|
80
80
|
*/
|
|
81
81
|
definition: pulumi.Input<{
|
|
82
|
-
[key: string]:
|
|
82
|
+
[key: string]: pulumi.Input<string>;
|
|
83
83
|
}>;
|
|
84
84
|
/**
|
|
85
85
|
* A pattern to match an exchange or queue name.
|
|
@@ -114,7 +114,7 @@ export interface PolicyPolicy {
|
|
|
114
114
|
* RabbitMQ documentation for definition references and examples.
|
|
115
115
|
*/
|
|
116
116
|
definition: pulumi.Input<{
|
|
117
|
-
[key: string]:
|
|
117
|
+
[key: string]: pulumi.Input<string>;
|
|
118
118
|
}>;
|
|
119
119
|
/**
|
|
120
120
|
* A pattern to match an exchange or queue name.
|
|
@@ -132,7 +132,7 @@ export interface QueueSettings {
|
|
|
132
132
|
* values, use `argumentsJson`.
|
|
133
133
|
*/
|
|
134
134
|
arguments?: pulumi.Input<{
|
|
135
|
-
[key: string]:
|
|
135
|
+
[key: string]: pulumi.Input<string>;
|
|
136
136
|
}>;
|
|
137
137
|
/**
|
|
138
138
|
* A nested JSON string which contains additional
|
package/types/output.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ export interface ExchangeSettings {
|
|
|
3
3
|
* Additional key/value settings for the exchange.
|
|
4
4
|
*/
|
|
5
5
|
arguments?: {
|
|
6
|
-
[key: string]:
|
|
6
|
+
[key: string]: string;
|
|
7
7
|
};
|
|
8
8
|
/**
|
|
9
9
|
* Whether the exchange will self-delete when all
|
|
@@ -70,7 +70,7 @@ export interface FederationUpstreamDefinition {
|
|
|
70
70
|
}
|
|
71
71
|
export interface GetExchangeSetting {
|
|
72
72
|
arguments?: {
|
|
73
|
-
[key: string]:
|
|
73
|
+
[key: string]: string;
|
|
74
74
|
};
|
|
75
75
|
autoDelete?: boolean;
|
|
76
76
|
durable?: boolean;
|
|
@@ -86,7 +86,7 @@ export interface OperatorPolicyPolicy {
|
|
|
86
86
|
* RabbitMQ documentation for definition references and examples.
|
|
87
87
|
*/
|
|
88
88
|
definition: {
|
|
89
|
-
[key: string]:
|
|
89
|
+
[key: string]: string;
|
|
90
90
|
};
|
|
91
91
|
/**
|
|
92
92
|
* A pattern to match an exchange or queue name.
|
|
@@ -121,7 +121,7 @@ export interface PolicyPolicy {
|
|
|
121
121
|
* RabbitMQ documentation for definition references and examples.
|
|
122
122
|
*/
|
|
123
123
|
definition: {
|
|
124
|
-
[key: string]:
|
|
124
|
+
[key: string]: string;
|
|
125
125
|
};
|
|
126
126
|
/**
|
|
127
127
|
* A pattern to match an exchange or queue name.
|
|
@@ -139,7 +139,7 @@ export interface QueueSettings {
|
|
|
139
139
|
* values, use `argumentsJson`.
|
|
140
140
|
*/
|
|
141
141
|
arguments?: {
|
|
142
|
-
[key: string]:
|
|
142
|
+
[key: string]: string;
|
|
143
143
|
};
|
|
144
144
|
/**
|
|
145
145
|
* A nested JSON string which contains additional
|