@pulumi/rabbitmq 1.4.0 → 1.7.0
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/README.md +15 -3
- package/binding.d.ts +27 -15
- package/binding.js +37 -29
- package/binding.js.map +1 -1
- package/config/index.js +15 -4
- package/config/index.js.map +1 -1
- package/config/vars.d.ts +8 -5
- package/config/vars.js +51 -6
- package/config/vars.js.map +1 -1
- package/exchange.d.ts +18 -10
- package/exchange.js +24 -18
- package/exchange.js.map +1 -1
- package/federationUpstream.d.ts +141 -0
- package/federationUpstream.js +121 -0
- package/federationUpstream.js.map +1 -0
- package/getExchange.d.ts +27 -0
- package/getExchange.js +23 -0
- package/getExchange.js.map +1 -0
- package/getUser.d.ts +23 -0
- package/getUser.js +22 -0
- package/getUser.js.map +1 -0
- package/getVHost.d.ts +22 -0
- package/getVHost.js +22 -0
- package/getVHost.js.map +1 -0
- package/index.d.ts +10 -4
- package/index.js +98 -14
- package/index.js.map +1 -1
- package/operatorPolicy.d.ts +117 -0
- package/operatorPolicy.js +100 -0
- package/operatorPolicy.js.map +1 -0
- package/package.json +7 -5
- package/package.json.bak +7 -4
- package/package.json.dev +8 -5
- package/permissions.d.ts +18 -10
- package/permissions.js +25 -19
- package/permissions.js.map +1 -1
- package/policy.d.ts +16 -10
- package/policy.js +23 -19
- package/policy.js.map +1 -1
- package/provider.d.ts +16 -8
- package/provider.js +23 -15
- package/provider.js.map +1 -1
- package/queue.d.ts +26 -19
- package/queue.js +32 -27
- package/queue.js.map +1 -1
- package/shovel.d.ts +121 -0
- package/shovel.js +104 -0
- package/shovel.js.map +1 -0
- package/topicPermissions.d.ts +18 -10
- package/topicPermissions.js +25 -19
- package/topicPermissions.js.map +1 -1
- package/types/index.d.ts +1 -1
- package/types/index.js +1 -0
- package/types/index.js.map +1 -1
- package/types/input.d.ts +172 -0
- package/types/output.d.ts +180 -0
- package/user.d.ts +15 -8
- package/user.js +22 -18
- package/user.js.map +1 -1
- package/utilities.js +6 -0
- package/utilities.js.map +1 -1
- package/{vHost.d.ts → vhost.d.ts} +12 -5
- package/{vHost.js → vhost.js} +19 -15
- package/vhost.js.map +1 -0
- package/vHost.js.map +0 -1
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import { input as inputs, output as outputs } from "./types";
|
|
3
|
+
/**
|
|
4
|
+
* The ``rabbitmq.FederationUpstream`` resource creates and manages a federation upstream parameter.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as rabbitmq from "@pulumi/rabbitmq";
|
|
11
|
+
*
|
|
12
|
+
* const test = new rabbitmq.VHost("test", {});
|
|
13
|
+
* const guest = new rabbitmq.Permissions("guest", {
|
|
14
|
+
* user: "guest",
|
|
15
|
+
* vhost: test.name,
|
|
16
|
+
* permissions: {
|
|
17
|
+
* configure: ".*",
|
|
18
|
+
* write: ".*",
|
|
19
|
+
* read: ".*",
|
|
20
|
+
* },
|
|
21
|
+
* });
|
|
22
|
+
* // downstream exchange
|
|
23
|
+
* const fooExchange = new rabbitmq.Exchange("fooExchange", {
|
|
24
|
+
* vhost: guest.vhost,
|
|
25
|
+
* settings: {
|
|
26
|
+
* type: "topic",
|
|
27
|
+
* durable: true,
|
|
28
|
+
* },
|
|
29
|
+
* });
|
|
30
|
+
* // upstream broker
|
|
31
|
+
* const fooFederationUpstream = new rabbitmq.FederationUpstream("fooFederationUpstream", {
|
|
32
|
+
* vhost: guest.vhost,
|
|
33
|
+
* definition: {
|
|
34
|
+
* uri: `amqp://guest:guest@upstream-server-name:5672/%2f`,
|
|
35
|
+
* prefetchCount: 1000,
|
|
36
|
+
* reconnectDelay: 5,
|
|
37
|
+
* ackMode: "on-confirm",
|
|
38
|
+
* trustUserId: false,
|
|
39
|
+
* maxHops: 1,
|
|
40
|
+
* },
|
|
41
|
+
* });
|
|
42
|
+
* const fooPolicy = new rabbitmq.Policy("fooPolicy", {
|
|
43
|
+
* vhost: guest.vhost,
|
|
44
|
+
* policy: {
|
|
45
|
+
* pattern: pulumi.interpolate`(^${fooExchange.name}$)`,
|
|
46
|
+
* priority: 1,
|
|
47
|
+
* applyTo: "exchanges",
|
|
48
|
+
* definition: {
|
|
49
|
+
* "federation-upstream": fooFederationUpstream.name,
|
|
50
|
+
* },
|
|
51
|
+
* },
|
|
52
|
+
* });
|
|
53
|
+
* ```
|
|
54
|
+
*
|
|
55
|
+
* ## Import
|
|
56
|
+
*
|
|
57
|
+
* A Federation upstream can be imported using the resource `id` which is composed of `name@vhost`, e.g.
|
|
58
|
+
*
|
|
59
|
+
* ```sh
|
|
60
|
+
* $ pulumi import rabbitmq:index/federationUpstream:FederationUpstream foo foo@test
|
|
61
|
+
* ```
|
|
62
|
+
*/
|
|
63
|
+
export declare class FederationUpstream extends pulumi.CustomResource {
|
|
64
|
+
/**
|
|
65
|
+
* Get an existing FederationUpstream resource's state with the given name, ID, and optional extra
|
|
66
|
+
* properties used to qualify the lookup.
|
|
67
|
+
*
|
|
68
|
+
* @param name The _unique_ name of the resulting resource.
|
|
69
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
70
|
+
* @param state Any extra arguments used during the lookup.
|
|
71
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
72
|
+
*/
|
|
73
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: FederationUpstreamState, opts?: pulumi.CustomResourceOptions): FederationUpstream;
|
|
74
|
+
/**
|
|
75
|
+
* Returns true if the given object is an instance of FederationUpstream. This is designed to work even
|
|
76
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
77
|
+
*/
|
|
78
|
+
static isInstance(obj: any): obj is FederationUpstream;
|
|
79
|
+
/**
|
|
80
|
+
* Set to `federation-upstream` by the underlying RabbitMQ provider. You do not set this attribute but will see it in state and plan output.
|
|
81
|
+
*/
|
|
82
|
+
readonly component: pulumi.Output<string>;
|
|
83
|
+
/**
|
|
84
|
+
* The configuration of the federation upstream. The structure is described below.
|
|
85
|
+
*/
|
|
86
|
+
readonly definition: pulumi.Output<outputs.FederationUpstreamDefinition>;
|
|
87
|
+
/**
|
|
88
|
+
* The name of the federation upstream.
|
|
89
|
+
*/
|
|
90
|
+
readonly name: pulumi.Output<string>;
|
|
91
|
+
/**
|
|
92
|
+
* The vhost to create the resource in.
|
|
93
|
+
*/
|
|
94
|
+
readonly vhost: pulumi.Output<string>;
|
|
95
|
+
/**
|
|
96
|
+
* Create a FederationUpstream resource with the given unique name, arguments, and options.
|
|
97
|
+
*
|
|
98
|
+
* @param name The _unique_ name of the resource.
|
|
99
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
100
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
101
|
+
*/
|
|
102
|
+
constructor(name: string, args: FederationUpstreamArgs, opts?: pulumi.CustomResourceOptions);
|
|
103
|
+
}
|
|
104
|
+
/**
|
|
105
|
+
* Input properties used for looking up and filtering FederationUpstream resources.
|
|
106
|
+
*/
|
|
107
|
+
export interface FederationUpstreamState {
|
|
108
|
+
/**
|
|
109
|
+
* Set to `federation-upstream` by the underlying RabbitMQ provider. You do not set this attribute but will see it in state and plan output.
|
|
110
|
+
*/
|
|
111
|
+
component?: pulumi.Input<string>;
|
|
112
|
+
/**
|
|
113
|
+
* The configuration of the federation upstream. The structure is described below.
|
|
114
|
+
*/
|
|
115
|
+
definition?: pulumi.Input<inputs.FederationUpstreamDefinition>;
|
|
116
|
+
/**
|
|
117
|
+
* The name of the federation upstream.
|
|
118
|
+
*/
|
|
119
|
+
name?: pulumi.Input<string>;
|
|
120
|
+
/**
|
|
121
|
+
* The vhost to create the resource in.
|
|
122
|
+
*/
|
|
123
|
+
vhost?: pulumi.Input<string>;
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* The set of arguments for constructing a FederationUpstream resource.
|
|
127
|
+
*/
|
|
128
|
+
export interface FederationUpstreamArgs {
|
|
129
|
+
/**
|
|
130
|
+
* The configuration of the federation upstream. The structure is described below.
|
|
131
|
+
*/
|
|
132
|
+
definition: pulumi.Input<inputs.FederationUpstreamDefinition>;
|
|
133
|
+
/**
|
|
134
|
+
* The name of the federation upstream.
|
|
135
|
+
*/
|
|
136
|
+
name?: pulumi.Input<string>;
|
|
137
|
+
/**
|
|
138
|
+
* The vhost to create the resource in.
|
|
139
|
+
*/
|
|
140
|
+
vhost: pulumi.Input<string>;
|
|
141
|
+
}
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.FederationUpstream = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* The ``rabbitmq.FederationUpstream`` resource creates and manages a federation upstream parameter.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as rabbitmq from "@pulumi/rabbitmq";
|
|
16
|
+
*
|
|
17
|
+
* const test = new rabbitmq.VHost("test", {});
|
|
18
|
+
* const guest = new rabbitmq.Permissions("guest", {
|
|
19
|
+
* user: "guest",
|
|
20
|
+
* vhost: test.name,
|
|
21
|
+
* permissions: {
|
|
22
|
+
* configure: ".*",
|
|
23
|
+
* write: ".*",
|
|
24
|
+
* read: ".*",
|
|
25
|
+
* },
|
|
26
|
+
* });
|
|
27
|
+
* // downstream exchange
|
|
28
|
+
* const fooExchange = new rabbitmq.Exchange("fooExchange", {
|
|
29
|
+
* vhost: guest.vhost,
|
|
30
|
+
* settings: {
|
|
31
|
+
* type: "topic",
|
|
32
|
+
* durable: true,
|
|
33
|
+
* },
|
|
34
|
+
* });
|
|
35
|
+
* // upstream broker
|
|
36
|
+
* const fooFederationUpstream = new rabbitmq.FederationUpstream("fooFederationUpstream", {
|
|
37
|
+
* vhost: guest.vhost,
|
|
38
|
+
* definition: {
|
|
39
|
+
* uri: `amqp://guest:guest@upstream-server-name:5672/%2f`,
|
|
40
|
+
* prefetchCount: 1000,
|
|
41
|
+
* reconnectDelay: 5,
|
|
42
|
+
* ackMode: "on-confirm",
|
|
43
|
+
* trustUserId: false,
|
|
44
|
+
* maxHops: 1,
|
|
45
|
+
* },
|
|
46
|
+
* });
|
|
47
|
+
* const fooPolicy = new rabbitmq.Policy("fooPolicy", {
|
|
48
|
+
* vhost: guest.vhost,
|
|
49
|
+
* policy: {
|
|
50
|
+
* pattern: pulumi.interpolate`(^${fooExchange.name}$)`,
|
|
51
|
+
* priority: 1,
|
|
52
|
+
* applyTo: "exchanges",
|
|
53
|
+
* definition: {
|
|
54
|
+
* "federation-upstream": fooFederationUpstream.name,
|
|
55
|
+
* },
|
|
56
|
+
* },
|
|
57
|
+
* });
|
|
58
|
+
* ```
|
|
59
|
+
*
|
|
60
|
+
* ## Import
|
|
61
|
+
*
|
|
62
|
+
* A Federation upstream can be imported using the resource `id` which is composed of `name@vhost`, e.g.
|
|
63
|
+
*
|
|
64
|
+
* ```sh
|
|
65
|
+
* $ pulumi import rabbitmq:index/federationUpstream:FederationUpstream foo foo@test
|
|
66
|
+
* ```
|
|
67
|
+
*/
|
|
68
|
+
class FederationUpstream extends pulumi.CustomResource {
|
|
69
|
+
constructor(name, argsOrState, opts) {
|
|
70
|
+
let resourceInputs = {};
|
|
71
|
+
opts = opts || {};
|
|
72
|
+
if (opts.id) {
|
|
73
|
+
const state = argsOrState;
|
|
74
|
+
resourceInputs["component"] = state ? state.component : undefined;
|
|
75
|
+
resourceInputs["definition"] = state ? state.definition : undefined;
|
|
76
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
77
|
+
resourceInputs["vhost"] = state ? state.vhost : undefined;
|
|
78
|
+
}
|
|
79
|
+
else {
|
|
80
|
+
const args = argsOrState;
|
|
81
|
+
if ((!args || args.definition === undefined) && !opts.urn) {
|
|
82
|
+
throw new Error("Missing required property 'definition'");
|
|
83
|
+
}
|
|
84
|
+
if ((!args || args.vhost === undefined) && !opts.urn) {
|
|
85
|
+
throw new Error("Missing required property 'vhost'");
|
|
86
|
+
}
|
|
87
|
+
resourceInputs["definition"] = args ? args.definition : undefined;
|
|
88
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
89
|
+
resourceInputs["vhost"] = args ? args.vhost : undefined;
|
|
90
|
+
resourceInputs["component"] = undefined /*out*/;
|
|
91
|
+
}
|
|
92
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
93
|
+
super(FederationUpstream.__pulumiType, name, resourceInputs, opts);
|
|
94
|
+
}
|
|
95
|
+
/**
|
|
96
|
+
* Get an existing FederationUpstream resource's state with the given name, ID, and optional extra
|
|
97
|
+
* properties used to qualify the lookup.
|
|
98
|
+
*
|
|
99
|
+
* @param name The _unique_ name of the resulting resource.
|
|
100
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
101
|
+
* @param state Any extra arguments used during the lookup.
|
|
102
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
103
|
+
*/
|
|
104
|
+
static get(name, id, state, opts) {
|
|
105
|
+
return new FederationUpstream(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* Returns true if the given object is an instance of FederationUpstream. This is designed to work even
|
|
109
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
110
|
+
*/
|
|
111
|
+
static isInstance(obj) {
|
|
112
|
+
if (obj === undefined || obj === null) {
|
|
113
|
+
return false;
|
|
114
|
+
}
|
|
115
|
+
return obj['__pulumiType'] === FederationUpstream.__pulumiType;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
exports.FederationUpstream = FederationUpstream;
|
|
119
|
+
/** @internal */
|
|
120
|
+
FederationUpstream.__pulumiType = 'rabbitmq:index/federationUpstream:FederationUpstream';
|
|
121
|
+
//# sourceMappingURL=federationUpstream.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"federationUpstream.js","sourceRoot":"","sources":["../federationUpstream.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2DG;AACH,MAAa,kBAAmB,SAAQ,MAAM,CAAC,cAAc;IAqDzD,YAAY,IAAY,EAAE,WAA8D,EAAE,IAAmC;QACzH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAkD,CAAC;YACjE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,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;YACxD,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;SAC7D;aAAM;YACH,MAAM,IAAI,GAAG,WAAiD,CAAC;YAC/D,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,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,KAAK,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;aACxD;YACD,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;YACtD,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACnD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,kBAAkB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACvE,CAAC;IA5ED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA+B,EAAE,IAAmC;QAC7H,OAAO,IAAI,kBAAkB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACzE,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,kBAAkB,CAAC,YAAY,CAAC;IACnE,CAAC;;AA1BL,gDA8EC;AAhEG,gBAAgB;AACO,+BAAY,GAAG,sDAAsD,CAAC"}
|
package/getExchange.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import { output as outputs } from "./types";
|
|
3
|
+
export declare function getExchange(args: GetExchangeArgs, opts?: pulumi.InvokeOptions): Promise<GetExchangeResult>;
|
|
4
|
+
/**
|
|
5
|
+
* A collection of arguments for invoking getExchange.
|
|
6
|
+
*/
|
|
7
|
+
export interface GetExchangeArgs {
|
|
8
|
+
name: string;
|
|
9
|
+
vhost?: string;
|
|
10
|
+
}
|
|
11
|
+
/**
|
|
12
|
+
* A collection of values returned by getExchange.
|
|
13
|
+
*/
|
|
14
|
+
export interface GetExchangeResult {
|
|
15
|
+
readonly id: string;
|
|
16
|
+
readonly name: string;
|
|
17
|
+
readonly settings: outputs.GetExchangeSetting[];
|
|
18
|
+
readonly vhost?: string;
|
|
19
|
+
}
|
|
20
|
+
export declare function getExchangeOutput(args: GetExchangeOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetExchangeResult>;
|
|
21
|
+
/**
|
|
22
|
+
* A collection of arguments for invoking getExchange.
|
|
23
|
+
*/
|
|
24
|
+
export interface GetExchangeOutputArgs {
|
|
25
|
+
name: pulumi.Input<string>;
|
|
26
|
+
vhost?: pulumi.Input<string>;
|
|
27
|
+
}
|
package/getExchange.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getExchangeOutput = exports.getExchange = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
function getExchange(args, opts) {
|
|
9
|
+
if (!opts) {
|
|
10
|
+
opts = {};
|
|
11
|
+
}
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
13
|
+
return pulumi.runtime.invoke("rabbitmq:index/getExchange:getExchange", {
|
|
14
|
+
"name": args.name,
|
|
15
|
+
"vhost": args.vhost,
|
|
16
|
+
}, opts);
|
|
17
|
+
}
|
|
18
|
+
exports.getExchange = getExchange;
|
|
19
|
+
function getExchangeOutput(args, opts) {
|
|
20
|
+
return pulumi.output(args).apply(a => getExchange(a, opts));
|
|
21
|
+
}
|
|
22
|
+
exports.getExchangeOutput = getExchangeOutput;
|
|
23
|
+
//# sourceMappingURL=getExchange.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getExchange.js","sourceRoot":"","sources":["../getExchange.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,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;AAVD,kCAUC;AAoBD,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC/D,CAAC;AAFD,8CAEC"}
|
package/getUser.d.ts
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
export declare function getUser(args: GetUserArgs, opts?: pulumi.InvokeOptions): Promise<GetUserResult>;
|
|
3
|
+
/**
|
|
4
|
+
* A collection of arguments for invoking getUser.
|
|
5
|
+
*/
|
|
6
|
+
export interface GetUserArgs {
|
|
7
|
+
name: string;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* A collection of values returned by getUser.
|
|
11
|
+
*/
|
|
12
|
+
export interface GetUserResult {
|
|
13
|
+
readonly id: string;
|
|
14
|
+
readonly name: string;
|
|
15
|
+
readonly tags: string[];
|
|
16
|
+
}
|
|
17
|
+
export declare function getUserOutput(args: GetUserOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetUserResult>;
|
|
18
|
+
/**
|
|
19
|
+
* A collection of arguments for invoking getUser.
|
|
20
|
+
*/
|
|
21
|
+
export interface GetUserOutputArgs {
|
|
22
|
+
name: pulumi.Input<string>;
|
|
23
|
+
}
|
package/getUser.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getUserOutput = exports.getUser = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
function getUser(args, opts) {
|
|
9
|
+
if (!opts) {
|
|
10
|
+
opts = {};
|
|
11
|
+
}
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
13
|
+
return pulumi.runtime.invoke("rabbitmq:index/getUser:getUser", {
|
|
14
|
+
"name": args.name,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getUser = getUser;
|
|
18
|
+
function getUserOutput(args, opts) {
|
|
19
|
+
return pulumi.output(args).apply(a => getUser(a, opts));
|
|
20
|
+
}
|
|
21
|
+
exports.getUserOutput = getUserOutput;
|
|
22
|
+
//# sourceMappingURL=getUser.js.map
|
package/getUser.js.map
ADDED
|
@@ -0,0 +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;IAClE,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gCAAgC,EAAE;QAC3D,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,0BASC;AAkBD,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3D,CAAC;AAFD,sCAEC"}
|
package/getVHost.d.ts
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
export declare function getVHost(args: GetVHostArgs, opts?: pulumi.InvokeOptions): Promise<GetVHostResult>;
|
|
3
|
+
/**
|
|
4
|
+
* A collection of arguments for invoking getVHost.
|
|
5
|
+
*/
|
|
6
|
+
export interface GetVHostArgs {
|
|
7
|
+
name: string;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* A collection of values returned by getVHost.
|
|
11
|
+
*/
|
|
12
|
+
export interface GetVHostResult {
|
|
13
|
+
readonly id: string;
|
|
14
|
+
readonly name: string;
|
|
15
|
+
}
|
|
16
|
+
export declare function getVHostOutput(args: GetVHostOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetVHostResult>;
|
|
17
|
+
/**
|
|
18
|
+
* A collection of arguments for invoking getVHost.
|
|
19
|
+
*/
|
|
20
|
+
export interface GetVHostOutputArgs {
|
|
21
|
+
name: pulumi.Input<string>;
|
|
22
|
+
}
|
package/getVHost.js
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getVHostOutput = exports.getVHost = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
function getVHost(args, opts) {
|
|
9
|
+
if (!opts) {
|
|
10
|
+
opts = {};
|
|
11
|
+
}
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
13
|
+
return pulumi.runtime.invoke("rabbitmq:index/getVHost:getVHost", {
|
|
14
|
+
"name": args.name,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getVHost = getVHost;
|
|
18
|
+
function getVHostOutput(args, opts) {
|
|
19
|
+
return pulumi.output(args).apply(a => getVHost(a, opts));
|
|
20
|
+
}
|
|
21
|
+
exports.getVHostOutput = getVHostOutput;
|
|
22
|
+
//# sourceMappingURL=getVHost.js.map
|
package/getVHost.js.map
ADDED
|
@@ -0,0 +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;IACpE,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,4BASC;AAiBD,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5D,CAAC;AAFD,wCAEC"}
|
package/index.d.ts
CHANGED
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
export * from "./binding";
|
|
2
2
|
export * from "./exchange";
|
|
3
|
+
export * from "./federationUpstream";
|
|
4
|
+
export * from "./getExchange";
|
|
5
|
+
export * from "./getUser";
|
|
6
|
+
export * from "./getVHost";
|
|
7
|
+
export * from "./operatorPolicy";
|
|
3
8
|
export * from "./permissions";
|
|
4
9
|
export * from "./policy";
|
|
5
10
|
export * from "./provider";
|
|
6
11
|
export * from "./queue";
|
|
12
|
+
export * from "./shovel";
|
|
7
13
|
export * from "./topicPermissions";
|
|
8
14
|
export * from "./user";
|
|
9
|
-
export * from "./
|
|
10
|
-
import * as config from "./config
|
|
11
|
-
import * as types from "./types
|
|
12
|
-
export { config, types };
|
|
15
|
+
export * from "./vhost";
|
|
16
|
+
import * as config from "./config";
|
|
17
|
+
import * as types from "./types";
|
|
18
|
+
export { config, types, };
|
package/index.js
CHANGED
|
@@ -1,23 +1,107 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
-
function
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
16
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
17
|
+
};
|
|
7
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
+
exports.types = exports.config = void 0;
|
|
20
|
+
const pulumi = require("@pulumi/pulumi");
|
|
21
|
+
const utilities = require("./utilities");
|
|
8
22
|
// Export members:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
23
|
+
__exportStar(require("./binding"), exports);
|
|
24
|
+
__exportStar(require("./exchange"), exports);
|
|
25
|
+
__exportStar(require("./federationUpstream"), exports);
|
|
26
|
+
__exportStar(require("./getExchange"), exports);
|
|
27
|
+
__exportStar(require("./getUser"), exports);
|
|
28
|
+
__exportStar(require("./getVHost"), exports);
|
|
29
|
+
__exportStar(require("./operatorPolicy"), exports);
|
|
30
|
+
__exportStar(require("./permissions"), exports);
|
|
31
|
+
__exportStar(require("./policy"), exports);
|
|
32
|
+
__exportStar(require("./provider"), exports);
|
|
33
|
+
__exportStar(require("./queue"), exports);
|
|
34
|
+
__exportStar(require("./shovel"), exports);
|
|
35
|
+
__exportStar(require("./topicPermissions"), exports);
|
|
36
|
+
__exportStar(require("./user"), exports);
|
|
37
|
+
__exportStar(require("./vhost"), exports);
|
|
18
38
|
// Export sub-modules:
|
|
19
|
-
const config = require("./config
|
|
39
|
+
const config = require("./config");
|
|
20
40
|
exports.config = config;
|
|
21
|
-
const types = require("./types
|
|
41
|
+
const types = require("./types");
|
|
22
42
|
exports.types = types;
|
|
43
|
+
// Import resources to register:
|
|
44
|
+
const binding_1 = require("./binding");
|
|
45
|
+
const exchange_1 = require("./exchange");
|
|
46
|
+
const federationUpstream_1 = require("./federationUpstream");
|
|
47
|
+
const operatorPolicy_1 = require("./operatorPolicy");
|
|
48
|
+
const permissions_1 = require("./permissions");
|
|
49
|
+
const policy_1 = require("./policy");
|
|
50
|
+
const queue_1 = require("./queue");
|
|
51
|
+
const shovel_1 = require("./shovel");
|
|
52
|
+
const topicPermissions_1 = require("./topicPermissions");
|
|
53
|
+
const user_1 = require("./user");
|
|
54
|
+
const vhost_1 = require("./vhost");
|
|
55
|
+
const _module = {
|
|
56
|
+
version: utilities.getVersion(),
|
|
57
|
+
construct: (name, type, urn) => {
|
|
58
|
+
switch (type) {
|
|
59
|
+
case "rabbitmq:index/binding:Binding":
|
|
60
|
+
return new binding_1.Binding(name, undefined, { urn });
|
|
61
|
+
case "rabbitmq:index/exchange:Exchange":
|
|
62
|
+
return new exchange_1.Exchange(name, undefined, { urn });
|
|
63
|
+
case "rabbitmq:index/federationUpstream:FederationUpstream":
|
|
64
|
+
return new federationUpstream_1.FederationUpstream(name, undefined, { urn });
|
|
65
|
+
case "rabbitmq:index/operatorPolicy:OperatorPolicy":
|
|
66
|
+
return new operatorPolicy_1.OperatorPolicy(name, undefined, { urn });
|
|
67
|
+
case "rabbitmq:index/permissions:Permissions":
|
|
68
|
+
return new permissions_1.Permissions(name, undefined, { urn });
|
|
69
|
+
case "rabbitmq:index/policy:Policy":
|
|
70
|
+
return new policy_1.Policy(name, undefined, { urn });
|
|
71
|
+
case "rabbitmq:index/queue:Queue":
|
|
72
|
+
return new queue_1.Queue(name, undefined, { urn });
|
|
73
|
+
case "rabbitmq:index/shovel:Shovel":
|
|
74
|
+
return new shovel_1.Shovel(name, undefined, { urn });
|
|
75
|
+
case "rabbitmq:index/topicPermissions:TopicPermissions":
|
|
76
|
+
return new topicPermissions_1.TopicPermissions(name, undefined, { urn });
|
|
77
|
+
case "rabbitmq:index/user:User":
|
|
78
|
+
return new user_1.User(name, undefined, { urn });
|
|
79
|
+
case "rabbitmq:index/vHost:VHost":
|
|
80
|
+
return new vhost_1.VHost(name, undefined, { urn });
|
|
81
|
+
default:
|
|
82
|
+
throw new Error(`unknown resource type ${type}`);
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
};
|
|
86
|
+
pulumi.runtime.registerResourceModule("rabbitmq", "index/binding", _module);
|
|
87
|
+
pulumi.runtime.registerResourceModule("rabbitmq", "index/exchange", _module);
|
|
88
|
+
pulumi.runtime.registerResourceModule("rabbitmq", "index/federationUpstream", _module);
|
|
89
|
+
pulumi.runtime.registerResourceModule("rabbitmq", "index/operatorPolicy", _module);
|
|
90
|
+
pulumi.runtime.registerResourceModule("rabbitmq", "index/permissions", _module);
|
|
91
|
+
pulumi.runtime.registerResourceModule("rabbitmq", "index/policy", _module);
|
|
92
|
+
pulumi.runtime.registerResourceModule("rabbitmq", "index/queue", _module);
|
|
93
|
+
pulumi.runtime.registerResourceModule("rabbitmq", "index/shovel", _module);
|
|
94
|
+
pulumi.runtime.registerResourceModule("rabbitmq", "index/topicPermissions", _module);
|
|
95
|
+
pulumi.runtime.registerResourceModule("rabbitmq", "index/user", _module);
|
|
96
|
+
pulumi.runtime.registerResourceModule("rabbitmq", "index/vHost", _module);
|
|
97
|
+
const provider_1 = require("./provider");
|
|
98
|
+
pulumi.runtime.registerResourcePackage("rabbitmq", {
|
|
99
|
+
version: utilities.getVersion(),
|
|
100
|
+
constructProvider: (name, type, urn) => {
|
|
101
|
+
if (type !== "pulumi:providers:rabbitmq") {
|
|
102
|
+
throw new Error(`unknown provider type ${type}`);
|
|
103
|
+
}
|
|
104
|
+
return new provider_1.Provider(name, undefined, { urn });
|
|
105
|
+
},
|
|
106
|
+
});
|
|
23
107
|
//# sourceMappingURL=index.js.map
|
package/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"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"}
|