@pulumi/cloudamqp 3.6.0 → 3.7.0-alpha.1643837431
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/alarm.js +21 -23
- package/alarm.js.map +1 -1
- package/customDomain.js +7 -9
- package/customDomain.js.map +1 -1
- package/getAccount.js +1 -3
- package/getAccount.js.map +1 -1
- package/getAlarm.d.ts +18 -6
- package/getAlarm.js +1 -9
- package/getAlarm.js.map +1 -1
- package/getCredentials.d.ts +6 -4
- package/getCredentials.js +1 -7
- package/getCredentials.js.map +1 -1
- package/getInstance.d.ts +6 -4
- package/getInstance.js +1 -7
- package/getInstance.js.map +1 -1
- package/getNodes.d.ts +6 -4
- package/getNodes.js +1 -7
- package/getNodes.js.map +1 -1
- package/getNotification.d.ts +18 -6
- package/getNotification.js +1 -9
- package/getNotification.js.map +1 -1
- package/getPlugins.d.ts +6 -4
- package/getPlugins.js +1 -7
- package/getPlugins.js.map +1 -1
- package/getPluginsCommunity.d.ts +6 -4
- package/getPluginsCommunity.js +1 -7
- package/getPluginsCommunity.js.map +1 -1
- package/getVpcInfo.d.ts +6 -4
- package/getVpcInfo.js +1 -7
- package/getVpcInfo.js.map +1 -1
- package/instance.js +35 -37
- package/instance.js.map +1 -1
- package/integrationLog.js +29 -31
- package/integrationLog.js.map +1 -1
- package/integrationMetric.js +35 -37
- package/integrationMetric.js.map +1 -1
- package/notification.js +11 -13
- package/notification.js.map +1 -1
- package/package.json +2 -2
- package/package.json.bak +2 -1
- package/package.json.dev +3 -2
- package/plugin.js +9 -11
- package/plugin.js.map +1 -1
- package/pluginCommunity.js +9 -11
- package/pluginCommunity.js.map +1 -1
- package/provider.js +5 -7
- package/provider.js.map +1 -1
- package/securityFirewall.js +7 -9
- package/securityFirewall.js.map +1 -1
- package/utilities.js +6 -1
- package/utilities.js.map +1 -1
- package/vpcPeering.js +9 -11
- package/vpcPeering.js.map +1 -1
- package/webhook.js +15 -17
- package/webhook.js.map +1 -1
package/alarm.js
CHANGED
|
@@ -76,19 +76,19 @@ const utilities = require("./utilities");
|
|
|
76
76
|
*/
|
|
77
77
|
class Alarm extends pulumi.CustomResource {
|
|
78
78
|
constructor(name, argsOrState, opts) {
|
|
79
|
-
let
|
|
79
|
+
let resourceInputs = {};
|
|
80
80
|
opts = opts || {};
|
|
81
81
|
if (opts.id) {
|
|
82
82
|
const state = argsOrState;
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
83
|
+
resourceInputs["enabled"] = state ? state.enabled : undefined;
|
|
84
|
+
resourceInputs["instanceId"] = state ? state.instanceId : undefined;
|
|
85
|
+
resourceInputs["messageType"] = state ? state.messageType : undefined;
|
|
86
|
+
resourceInputs["queueRegex"] = state ? state.queueRegex : undefined;
|
|
87
|
+
resourceInputs["recipients"] = state ? state.recipients : undefined;
|
|
88
|
+
resourceInputs["timeThreshold"] = state ? state.timeThreshold : undefined;
|
|
89
|
+
resourceInputs["type"] = state ? state.type : undefined;
|
|
90
|
+
resourceInputs["valueThreshold"] = state ? state.valueThreshold : undefined;
|
|
91
|
+
resourceInputs["vhostRegex"] = state ? state.vhostRegex : undefined;
|
|
92
92
|
}
|
|
93
93
|
else {
|
|
94
94
|
const args = argsOrState;
|
|
@@ -104,20 +104,18 @@ class Alarm extends pulumi.CustomResource {
|
|
|
104
104
|
if ((!args || args.type === undefined) && !opts.urn) {
|
|
105
105
|
throw new Error("Missing required property 'type'");
|
|
106
106
|
}
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
107
|
+
resourceInputs["enabled"] = args ? args.enabled : undefined;
|
|
108
|
+
resourceInputs["instanceId"] = args ? args.instanceId : undefined;
|
|
109
|
+
resourceInputs["messageType"] = args ? args.messageType : undefined;
|
|
110
|
+
resourceInputs["queueRegex"] = args ? args.queueRegex : undefined;
|
|
111
|
+
resourceInputs["recipients"] = args ? args.recipients : undefined;
|
|
112
|
+
resourceInputs["timeThreshold"] = args ? args.timeThreshold : undefined;
|
|
113
|
+
resourceInputs["type"] = args ? args.type : undefined;
|
|
114
|
+
resourceInputs["valueThreshold"] = args ? args.valueThreshold : undefined;
|
|
115
|
+
resourceInputs["vhostRegex"] = args ? args.vhostRegex : undefined;
|
|
116
116
|
}
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
}
|
|
120
|
-
super(Alarm.__pulumiType, name, inputs, opts);
|
|
117
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
118
|
+
super(Alarm.__pulumiType, name, resourceInputs, opts);
|
|
121
119
|
}
|
|
122
120
|
/**
|
|
123
121
|
* Get an existing Alarm resource's state with the given name, ID, and optional extra
|
package/alarm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"alarm.js","sourceRoot":"","sources":["../alarm.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoEG;AACH,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;IAyE5C,YAAY,IAAY,EAAE,WAAoC,EAAE,IAAmC;QAC/F,IAAI,
|
|
1
|
+
{"version":3,"file":"alarm.js","sourceRoot":"","sources":["../alarm.ts"],"names":[],"mappings":"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"}
|
package/customDomain.js
CHANGED
|
@@ -43,12 +43,12 @@ const utilities = require("./utilities");
|
|
|
43
43
|
*/
|
|
44
44
|
class CustomDomain extends pulumi.CustomResource {
|
|
45
45
|
constructor(name, argsOrState, opts) {
|
|
46
|
-
let
|
|
46
|
+
let resourceInputs = {};
|
|
47
47
|
opts = opts || {};
|
|
48
48
|
if (opts.id) {
|
|
49
49
|
const state = argsOrState;
|
|
50
|
-
|
|
51
|
-
|
|
50
|
+
resourceInputs["hostname"] = state ? state.hostname : undefined;
|
|
51
|
+
resourceInputs["instanceId"] = state ? state.instanceId : undefined;
|
|
52
52
|
}
|
|
53
53
|
else {
|
|
54
54
|
const args = argsOrState;
|
|
@@ -58,13 +58,11 @@ class CustomDomain extends pulumi.CustomResource {
|
|
|
58
58
|
if ((!args || args.instanceId === undefined) && !opts.urn) {
|
|
59
59
|
throw new Error("Missing required property 'instanceId'");
|
|
60
60
|
}
|
|
61
|
-
|
|
62
|
-
|
|
61
|
+
resourceInputs["hostname"] = args ? args.hostname : undefined;
|
|
62
|
+
resourceInputs["instanceId"] = args ? args.instanceId : undefined;
|
|
63
63
|
}
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
}
|
|
67
|
-
super(CustomDomain.__pulumiType, name, inputs, opts);
|
|
64
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
65
|
+
super(CustomDomain.__pulumiType, name, resourceInputs, opts);
|
|
68
66
|
}
|
|
69
67
|
/**
|
|
70
68
|
* Get an existing CustomDomain resource's state with the given name, ID, and optional extra
|
package/customDomain.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"customDomain.js","sourceRoot":"","sources":["../customDomain.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IA6CnD,YAAY,IAAY,EAAE,WAAkD,EAAE,IAAmC;QAC7G,IAAI,
|
|
1
|
+
{"version":3,"file":"customDomain.js","sourceRoot":"","sources":["../customDomain.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IA6CnD,YAAY,IAAY,EAAE,WAAkD,EAAE,IAAmC;QAC7G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4C,CAAC;YAC3D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;SACvE;aAAM;YACH,MAAM,IAAI,GAAG,WAA2C,CAAC;YACzD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,QAAQ,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACrD,MAAM,IAAI,KAAK,CAAC,sCAAsC,CAAC,CAAC;aAC3D;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,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,YAAY,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjE,CAAC;IAhED;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACnE,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,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;;AA1BL,oCAkEC;AApDG,gBAAgB;AACO,yBAAY,GAAG,2CAA2C,CAAC"}
|
package/getAccount.js
CHANGED
|
@@ -26,9 +26,7 @@ function getAccount(opts) {
|
|
|
26
26
|
if (!opts) {
|
|
27
27
|
opts = {};
|
|
28
28
|
}
|
|
29
|
-
|
|
30
|
-
opts.version = utilities.getVersion();
|
|
31
|
-
}
|
|
29
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
32
30
|
return pulumi.runtime.invoke("cloudamqp:index/getAccount:getAccount", {}, opts);
|
|
33
31
|
}
|
|
34
32
|
exports.getAccount = getAccount;
|
package/getAccount.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAccount.js","sourceRoot":"","sources":["../getAccount.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,UAAU,CAAC,IAA2B;IAClD,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,
|
|
1
|
+
{"version":3,"file":"getAccount.js","sourceRoot":"","sources":["../getAccount.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,UAAU,CAAC,IAA2B;IAClD,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,uCAAuC,EAAE,EACrE,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,gCAQC"}
|
package/getAlarm.d.ts
CHANGED
|
@@ -13,12 +13,6 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
13
13
|
* type: "cpu",
|
|
14
14
|
* });
|
|
15
15
|
* ```
|
|
16
|
-
* ## Argument reference
|
|
17
|
-
*
|
|
18
|
-
* * `instanceId` - (Required) The CloudAMQP instance identifier.
|
|
19
|
-
* * `alarmId` - (Optional) The alarm identifier. Either use this or `type` to give `cloudamqp.Alarm` necessary information to retrieve the alarm.
|
|
20
|
-
* * `type` - (Optional) The alarm type. Either use this or `alarmId` to give `cloudamqp.Alarm` necessary information when retrieve the alarm.
|
|
21
|
-
*
|
|
22
16
|
* ## Attributes reference
|
|
23
17
|
*
|
|
24
18
|
* All attributes reference are computed
|
|
@@ -41,8 +35,17 @@ export declare function getAlarm(args: GetAlarmArgs, opts?: pulumi.InvokeOptions
|
|
|
41
35
|
* A collection of arguments for invoking getAlarm.
|
|
42
36
|
*/
|
|
43
37
|
export interface GetAlarmArgs {
|
|
38
|
+
/**
|
|
39
|
+
* The alarm identifier. Either use this or `type` to give `cloudamqp.Alarm` necessary information to retrieve the alarm.
|
|
40
|
+
*/
|
|
44
41
|
alarmId?: number;
|
|
42
|
+
/**
|
|
43
|
+
* The CloudAMQP instance identifier.
|
|
44
|
+
*/
|
|
45
45
|
instanceId: number;
|
|
46
|
+
/**
|
|
47
|
+
* The alarm type. Either use this or `alarmId` to give `cloudamqp.Alarm` necessary information when retrieve the alarm.
|
|
48
|
+
*/
|
|
46
49
|
type?: string;
|
|
47
50
|
}
|
|
48
51
|
/**
|
|
@@ -69,7 +72,16 @@ export declare function getAlarmOutput(args: GetAlarmOutputArgs, opts?: pulumi.I
|
|
|
69
72
|
* A collection of arguments for invoking getAlarm.
|
|
70
73
|
*/
|
|
71
74
|
export interface GetAlarmOutputArgs {
|
|
75
|
+
/**
|
|
76
|
+
* The alarm identifier. Either use this or `type` to give `cloudamqp.Alarm` necessary information to retrieve the alarm.
|
|
77
|
+
*/
|
|
72
78
|
alarmId?: pulumi.Input<number>;
|
|
79
|
+
/**
|
|
80
|
+
* The CloudAMQP instance identifier.
|
|
81
|
+
*/
|
|
73
82
|
instanceId: pulumi.Input<number>;
|
|
83
|
+
/**
|
|
84
|
+
* The alarm type. Either use this or `alarmId` to give `cloudamqp.Alarm` necessary information when retrieve the alarm.
|
|
85
|
+
*/
|
|
74
86
|
type?: pulumi.Input<string>;
|
|
75
87
|
}
|
package/getAlarm.js
CHANGED
|
@@ -19,12 +19,6 @@ const utilities = require("./utilities");
|
|
|
19
19
|
* type: "cpu",
|
|
20
20
|
* });
|
|
21
21
|
* ```
|
|
22
|
-
* ## Argument reference
|
|
23
|
-
*
|
|
24
|
-
* * `instanceId` - (Required) The CloudAMQP instance identifier.
|
|
25
|
-
* * `alarmId` - (Optional) The alarm identifier. Either use this or `type` to give `cloudamqp.Alarm` necessary information to retrieve the alarm.
|
|
26
|
-
* * `type` - (Optional) The alarm type. Either use this or `alarmId` to give `cloudamqp.Alarm` necessary information when retrieve the alarm.
|
|
27
|
-
*
|
|
28
22
|
* ## Attributes reference
|
|
29
23
|
*
|
|
30
24
|
* All attributes reference are computed
|
|
@@ -46,9 +40,7 @@ function getAlarm(args, opts) {
|
|
|
46
40
|
if (!opts) {
|
|
47
41
|
opts = {};
|
|
48
42
|
}
|
|
49
|
-
|
|
50
|
-
opts.version = utilities.getVersion();
|
|
51
|
-
}
|
|
43
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
52
44
|
return pulumi.runtime.invoke("cloudamqp:index/getAlarm:getAlarm", {
|
|
53
45
|
"alarmId": args.alarmId,
|
|
54
46
|
"instanceId": args.instanceId,
|
package/getAlarm.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAlarm.js","sourceRoot":"","sources":["../getAlarm.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getAlarm.js","sourceRoot":"","sources":["../getAlarm.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,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,mCAAmC,EAAE;QAC9D,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,4BAWC;AAwCD,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/getCredentials.d.ts
CHANGED
|
@@ -12,10 +12,6 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
12
12
|
* instanceId: cloudamqp_instance.instance.id,
|
|
13
13
|
* });
|
|
14
14
|
* ```
|
|
15
|
-
* ## Argument reference
|
|
16
|
-
*
|
|
17
|
-
* * `instanceId` - (Required) The CloudAMQP instance identifier.
|
|
18
|
-
*
|
|
19
15
|
* ## Attributes reference
|
|
20
16
|
*
|
|
21
17
|
* All attributes reference are computed.
|
|
@@ -33,6 +29,9 @@ export declare function getCredentials(args: GetCredentialsArgs, opts?: pulumi.I
|
|
|
33
29
|
* A collection of arguments for invoking getCredentials.
|
|
34
30
|
*/
|
|
35
31
|
export interface GetCredentialsArgs {
|
|
32
|
+
/**
|
|
33
|
+
* The CloudAMQP instance identifier.
|
|
34
|
+
*/
|
|
36
35
|
instanceId: number;
|
|
37
36
|
}
|
|
38
37
|
/**
|
|
@@ -52,5 +51,8 @@ export declare function getCredentialsOutput(args: GetCredentialsOutputArgs, opt
|
|
|
52
51
|
* A collection of arguments for invoking getCredentials.
|
|
53
52
|
*/
|
|
54
53
|
export interface GetCredentialsOutputArgs {
|
|
54
|
+
/**
|
|
55
|
+
* The CloudAMQP instance identifier.
|
|
56
|
+
*/
|
|
55
57
|
instanceId: pulumi.Input<number>;
|
|
56
58
|
}
|
package/getCredentials.js
CHANGED
|
@@ -18,10 +18,6 @@ const utilities = require("./utilities");
|
|
|
18
18
|
* instanceId: cloudamqp_instance.instance.id,
|
|
19
19
|
* });
|
|
20
20
|
* ```
|
|
21
|
-
* ## Argument reference
|
|
22
|
-
*
|
|
23
|
-
* * `instanceId` - (Required) The CloudAMQP instance identifier.
|
|
24
|
-
*
|
|
25
21
|
* ## Attributes reference
|
|
26
22
|
*
|
|
27
23
|
* All attributes reference are computed.
|
|
@@ -38,9 +34,7 @@ function getCredentials(args, opts) {
|
|
|
38
34
|
if (!opts) {
|
|
39
35
|
opts = {};
|
|
40
36
|
}
|
|
41
|
-
|
|
42
|
-
opts.version = utilities.getVersion();
|
|
43
|
-
}
|
|
37
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
44
38
|
return pulumi.runtime.invoke("cloudamqp:index/getCredentials:getCredentials", {
|
|
45
39
|
"instanceId": args.instanceId,
|
|
46
40
|
}, opts);
|
package/getCredentials.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getCredentials.js","sourceRoot":"","sources":["../getCredentials.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getCredentials.js","sourceRoot":"","sources":["../getCredentials.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,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,+CAA+C,EAAE;QAC1E,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,wCASC;AAyBD,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAClE,CAAC;AAFD,oDAEC"}
|
package/getInstance.d.ts
CHANGED
|
@@ -2,10 +2,6 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* Use this data source to retrieve information about an already created CloudAMQP instance. In order to retrieve the correct information, the CoudAMQP instance identifier is needed.
|
|
4
4
|
*
|
|
5
|
-
* ## Argument reference
|
|
6
|
-
*
|
|
7
|
-
* * `instanceId` - (Required) The CloudAMQP instance identifier.
|
|
8
|
-
*
|
|
9
5
|
* ## Attributes reference
|
|
10
6
|
*
|
|
11
7
|
* All attributes reference are computed
|
|
@@ -30,6 +26,9 @@ export declare function getInstance(args: GetInstanceArgs, opts?: pulumi.InvokeO
|
|
|
30
26
|
* A collection of arguments for invoking getInstance.
|
|
31
27
|
*/
|
|
32
28
|
export interface GetInstanceArgs {
|
|
29
|
+
/**
|
|
30
|
+
* The CloudAMQP instance identifier.
|
|
31
|
+
*/
|
|
33
32
|
instanceId: number;
|
|
34
33
|
}
|
|
35
34
|
/**
|
|
@@ -63,5 +62,8 @@ export declare function getInstanceOutput(args: GetInstanceOutputArgs, opts?: pu
|
|
|
63
62
|
* A collection of arguments for invoking getInstance.
|
|
64
63
|
*/
|
|
65
64
|
export interface GetInstanceOutputArgs {
|
|
65
|
+
/**
|
|
66
|
+
* The CloudAMQP instance identifier.
|
|
67
|
+
*/
|
|
66
68
|
instanceId: pulumi.Input<number>;
|
|
67
69
|
}
|
package/getInstance.js
CHANGED
|
@@ -8,10 +8,6 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Use this data source to retrieve information about an already created CloudAMQP instance. In order to retrieve the correct information, the CoudAMQP instance identifier is needed.
|
|
10
10
|
*
|
|
11
|
-
* ## Argument reference
|
|
12
|
-
*
|
|
13
|
-
* * `instanceId` - (Required) The CloudAMQP instance identifier.
|
|
14
|
-
*
|
|
15
11
|
* ## Attributes reference
|
|
16
12
|
*
|
|
17
13
|
* All attributes reference are computed
|
|
@@ -35,9 +31,7 @@ function getInstance(args, opts) {
|
|
|
35
31
|
if (!opts) {
|
|
36
32
|
opts = {};
|
|
37
33
|
}
|
|
38
|
-
|
|
39
|
-
opts.version = utilities.getVersion();
|
|
40
|
-
}
|
|
34
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
41
35
|
return pulumi.runtime.invoke("cloudamqp:index/getInstance:getInstance", {
|
|
42
36
|
"instanceId": args.instanceId,
|
|
43
37
|
}, opts);
|
package/getInstance.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getInstance.js","sourceRoot":"","sources":["../getInstance.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getInstance.js","sourceRoot":"","sources":["../getInstance.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,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,yCAAyC,EAAE;QACpE,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,kCASC;AAuCD,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/getNodes.d.ts
CHANGED
|
@@ -13,10 +13,6 @@ import { output as outputs } from "./types";
|
|
|
13
13
|
* instanceId: cloudamqp_instance.instance.id,
|
|
14
14
|
* });
|
|
15
15
|
* ```
|
|
16
|
-
* ## Argument reference
|
|
17
|
-
*
|
|
18
|
-
* * `instanceId` - (Required) The CloudAMQP instance identifier.
|
|
19
|
-
*
|
|
20
16
|
* ## Attributes reference
|
|
21
17
|
*
|
|
22
18
|
* All attributes reference are computed
|
|
@@ -45,6 +41,9 @@ export declare function getNodes(args: GetNodesArgs, opts?: pulumi.InvokeOptions
|
|
|
45
41
|
* A collection of arguments for invoking getNodes.
|
|
46
42
|
*/
|
|
47
43
|
export interface GetNodesArgs {
|
|
44
|
+
/**
|
|
45
|
+
* The CloudAMQP instance identifier.
|
|
46
|
+
*/
|
|
48
47
|
instanceId: number;
|
|
49
48
|
}
|
|
50
49
|
/**
|
|
@@ -63,5 +62,8 @@ export declare function getNodesOutput(args: GetNodesOutputArgs, opts?: pulumi.I
|
|
|
63
62
|
* A collection of arguments for invoking getNodes.
|
|
64
63
|
*/
|
|
65
64
|
export interface GetNodesOutputArgs {
|
|
65
|
+
/**
|
|
66
|
+
* The CloudAMQP instance identifier.
|
|
67
|
+
*/
|
|
66
68
|
instanceId: pulumi.Input<number>;
|
|
67
69
|
}
|
package/getNodes.js
CHANGED
|
@@ -18,10 +18,6 @@ const utilities = require("./utilities");
|
|
|
18
18
|
* instanceId: cloudamqp_instance.instance.id,
|
|
19
19
|
* });
|
|
20
20
|
* ```
|
|
21
|
-
* ## Argument reference
|
|
22
|
-
*
|
|
23
|
-
* * `instanceId` - (Required) The CloudAMQP instance identifier.
|
|
24
|
-
*
|
|
25
21
|
* ## Attributes reference
|
|
26
22
|
*
|
|
27
23
|
* All attributes reference are computed
|
|
@@ -49,9 +45,7 @@ function getNodes(args, opts) {
|
|
|
49
45
|
if (!opts) {
|
|
50
46
|
opts = {};
|
|
51
47
|
}
|
|
52
|
-
|
|
53
|
-
opts.version = utilities.getVersion();
|
|
54
|
-
}
|
|
48
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
55
49
|
return pulumi.runtime.invoke("cloudamqp:index/getNodes:getNodes", {
|
|
56
50
|
"instanceId": args.instanceId,
|
|
57
51
|
}, opts);
|
package/getNodes.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getNodes.js","sourceRoot":"","sources":["../getNodes.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getNodes.js","sourceRoot":"","sources":["../getNodes.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmCG;AACH,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,mCAAmC,EAAE;QAC9D,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,4BASC;AAwBD,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/getNotification.d.ts
CHANGED
|
@@ -13,12 +13,6 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
13
13
|
* name: "default",
|
|
14
14
|
* });
|
|
15
15
|
* ```
|
|
16
|
-
* ## Argument reference
|
|
17
|
-
*
|
|
18
|
-
* * `instanceId` - (Required) The CloudAMQP instance identifier.
|
|
19
|
-
* * `recipientId` - (Optional) The recipient identifier.
|
|
20
|
-
* * `name` - (Optional) The name set for the recipient.
|
|
21
|
-
*
|
|
22
16
|
* ## Attributes reference
|
|
23
17
|
*
|
|
24
18
|
* All attributes reference are computed
|
|
@@ -36,8 +30,17 @@ export declare function getNotification(args: GetNotificationArgs, opts?: pulumi
|
|
|
36
30
|
* A collection of arguments for invoking getNotification.
|
|
37
31
|
*/
|
|
38
32
|
export interface GetNotificationArgs {
|
|
33
|
+
/**
|
|
34
|
+
* The CloudAMQP instance identifier.
|
|
35
|
+
*/
|
|
39
36
|
instanceId: number;
|
|
37
|
+
/**
|
|
38
|
+
* The name set for the recipient.
|
|
39
|
+
*/
|
|
40
40
|
name?: string;
|
|
41
|
+
/**
|
|
42
|
+
* The recipient identifier.
|
|
43
|
+
*/
|
|
41
44
|
recipientId?: number;
|
|
42
45
|
}
|
|
43
46
|
/**
|
|
@@ -59,7 +62,16 @@ export declare function getNotificationOutput(args: GetNotificationOutputArgs, o
|
|
|
59
62
|
* A collection of arguments for invoking getNotification.
|
|
60
63
|
*/
|
|
61
64
|
export interface GetNotificationOutputArgs {
|
|
65
|
+
/**
|
|
66
|
+
* The CloudAMQP instance identifier.
|
|
67
|
+
*/
|
|
62
68
|
instanceId: pulumi.Input<number>;
|
|
69
|
+
/**
|
|
70
|
+
* The name set for the recipient.
|
|
71
|
+
*/
|
|
63
72
|
name?: pulumi.Input<string>;
|
|
73
|
+
/**
|
|
74
|
+
* The recipient identifier.
|
|
75
|
+
*/
|
|
64
76
|
recipientId?: pulumi.Input<number>;
|
|
65
77
|
}
|
package/getNotification.js
CHANGED
|
@@ -19,12 +19,6 @@ const utilities = require("./utilities");
|
|
|
19
19
|
* name: "default",
|
|
20
20
|
* });
|
|
21
21
|
* ```
|
|
22
|
-
* ## Argument reference
|
|
23
|
-
*
|
|
24
|
-
* * `instanceId` - (Required) The CloudAMQP instance identifier.
|
|
25
|
-
* * `recipientId` - (Optional) The recipient identifier.
|
|
26
|
-
* * `name` - (Optional) The name set for the recipient.
|
|
27
|
-
*
|
|
28
22
|
* ## Attributes reference
|
|
29
23
|
*
|
|
30
24
|
* All attributes reference are computed
|
|
@@ -41,9 +35,7 @@ function getNotification(args, opts) {
|
|
|
41
35
|
if (!opts) {
|
|
42
36
|
opts = {};
|
|
43
37
|
}
|
|
44
|
-
|
|
45
|
-
opts.version = utilities.getVersion();
|
|
46
|
-
}
|
|
38
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
47
39
|
return pulumi.runtime.invoke("cloudamqp:index/getNotification:getNotification", {
|
|
48
40
|
"instanceId": args.instanceId,
|
|
49
41
|
"name": args.name,
|
package/getNotification.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getNotification.js","sourceRoot":"","sources":["../getNotification.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getNotification.js","sourceRoot":"","sources":["../getNotification.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,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,iDAAiD,EAAE;QAC5E,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,aAAa,EAAE,IAAI,CAAC,WAAW;KAClC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAXD,0CAWC;AAmCD,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,sDAEC"}
|
package/getPlugins.d.ts
CHANGED
|
@@ -15,10 +15,6 @@ import { output as outputs } from "./types";
|
|
|
15
15
|
* instanceId: cloudamqp_instance.instance.id,
|
|
16
16
|
* });
|
|
17
17
|
* ```
|
|
18
|
-
* ## Argument reference
|
|
19
|
-
*
|
|
20
|
-
* * `instanceId` - (Required) The CloudAMQP instance identifier.
|
|
21
|
-
*
|
|
22
18
|
* ## Attributes reference
|
|
23
19
|
*
|
|
24
20
|
* All attributes reference are computed
|
|
@@ -44,6 +40,9 @@ export declare function getPlugins(args: GetPluginsArgs, opts?: pulumi.InvokeOpt
|
|
|
44
40
|
* A collection of arguments for invoking getPlugins.
|
|
45
41
|
*/
|
|
46
42
|
export interface GetPluginsArgs {
|
|
43
|
+
/**
|
|
44
|
+
* The CloudAMQP instance identifier.
|
|
45
|
+
*/
|
|
47
46
|
instanceId: number;
|
|
48
47
|
}
|
|
49
48
|
/**
|
|
@@ -62,5 +61,8 @@ export declare function getPluginsOutput(args: GetPluginsOutputArgs, opts?: pulu
|
|
|
62
61
|
* A collection of arguments for invoking getPlugins.
|
|
63
62
|
*/
|
|
64
63
|
export interface GetPluginsOutputArgs {
|
|
64
|
+
/**
|
|
65
|
+
* The CloudAMQP instance identifier.
|
|
66
|
+
*/
|
|
65
67
|
instanceId: pulumi.Input<number>;
|
|
66
68
|
}
|
package/getPlugins.js
CHANGED
|
@@ -20,10 +20,6 @@ const utilities = require("./utilities");
|
|
|
20
20
|
* instanceId: cloudamqp_instance.instance.id,
|
|
21
21
|
* });
|
|
22
22
|
* ```
|
|
23
|
-
* ## Argument reference
|
|
24
|
-
*
|
|
25
|
-
* * `instanceId` - (Required) The CloudAMQP instance identifier.
|
|
26
|
-
*
|
|
27
23
|
* ## Attributes reference
|
|
28
24
|
*
|
|
29
25
|
* All attributes reference are computed
|
|
@@ -48,9 +44,7 @@ function getPlugins(args, opts) {
|
|
|
48
44
|
if (!opts) {
|
|
49
45
|
opts = {};
|
|
50
46
|
}
|
|
51
|
-
|
|
52
|
-
opts.version = utilities.getVersion();
|
|
53
|
-
}
|
|
47
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
54
48
|
return pulumi.runtime.invoke("cloudamqp:index/getPlugins:getPlugins", {
|
|
55
49
|
"instanceId": args.instanceId,
|
|
56
50
|
}, opts);
|
package/getPlugins.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getPlugins.js","sourceRoot":"","sources":["../getPlugins.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getPlugins.js","sourceRoot":"","sources":["../getPlugins.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkCG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IACxE,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,uCAAuC,EAAE;QAClE,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,gCASC;AAwBD,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC9D,CAAC;AAFD,4CAEC"}
|
package/getPluginsCommunity.d.ts
CHANGED
|
@@ -15,10 +15,6 @@ import { output as outputs } from "./types";
|
|
|
15
15
|
* instanceId: cloudamqp_instance.instance.id,
|
|
16
16
|
* });
|
|
17
17
|
* ```
|
|
18
|
-
* ## Argument reference
|
|
19
|
-
*
|
|
20
|
-
* * `instanceId` - (Required) The CloudAMQP instance identifier.
|
|
21
|
-
*
|
|
22
18
|
* ## Attributes reference
|
|
23
19
|
*
|
|
24
20
|
* All attributes reference are computed
|
|
@@ -43,6 +39,9 @@ export declare function getPluginsCommunity(args: GetPluginsCommunityArgs, opts?
|
|
|
43
39
|
* A collection of arguments for invoking getPluginsCommunity.
|
|
44
40
|
*/
|
|
45
41
|
export interface GetPluginsCommunityArgs {
|
|
42
|
+
/**
|
|
43
|
+
* The CloudAMQP instance identifier.
|
|
44
|
+
*/
|
|
46
45
|
instanceId: number;
|
|
47
46
|
}
|
|
48
47
|
/**
|
|
@@ -61,5 +60,8 @@ export declare function getPluginsCommunityOutput(args: GetPluginsCommunityOutpu
|
|
|
61
60
|
* A collection of arguments for invoking getPluginsCommunity.
|
|
62
61
|
*/
|
|
63
62
|
export interface GetPluginsCommunityOutputArgs {
|
|
63
|
+
/**
|
|
64
|
+
* The CloudAMQP instance identifier.
|
|
65
|
+
*/
|
|
64
66
|
instanceId: pulumi.Input<number>;
|
|
65
67
|
}
|
package/getPluginsCommunity.js
CHANGED
|
@@ -20,10 +20,6 @@ const utilities = require("./utilities");
|
|
|
20
20
|
* instanceId: cloudamqp_instance.instance.id,
|
|
21
21
|
* });
|
|
22
22
|
* ```
|
|
23
|
-
* ## Argument reference
|
|
24
|
-
*
|
|
25
|
-
* * `instanceId` - (Required) The CloudAMQP instance identifier.
|
|
26
|
-
*
|
|
27
23
|
* ## Attributes reference
|
|
28
24
|
*
|
|
29
25
|
* All attributes reference are computed
|
|
@@ -47,9 +43,7 @@ function getPluginsCommunity(args, opts) {
|
|
|
47
43
|
if (!opts) {
|
|
48
44
|
opts = {};
|
|
49
45
|
}
|
|
50
|
-
|
|
51
|
-
opts.version = utilities.getVersion();
|
|
52
|
-
}
|
|
46
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
53
47
|
return pulumi.runtime.invoke("cloudamqp:index/getPluginsCommunity:getPluginsCommunity", {
|
|
54
48
|
"instanceId": args.instanceId,
|
|
55
49
|
}, opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getPluginsCommunity.js","sourceRoot":"","sources":["../getPluginsCommunity.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getPluginsCommunity.js","sourceRoot":"","sources":["../getPluginsCommunity.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiCG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,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,yDAAyD,EAAE;QACpF,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,kDASC;AAwBD,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IACtG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,mBAAmB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACvE,CAAC;AAFD,8DAEC"}
|
package/getVpcInfo.d.ts
CHANGED
|
@@ -14,10 +14,6 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
14
14
|
* instanceId: cloudamqp_instance.instance.id,
|
|
15
15
|
* });
|
|
16
16
|
* ```
|
|
17
|
-
* ## Argument reference
|
|
18
|
-
*
|
|
19
|
-
* * `instanceId` - (Required) The CloudAMQP instance identifier.
|
|
20
|
-
*
|
|
21
17
|
* ## Attributes reference
|
|
22
18
|
*
|
|
23
19
|
* All attributes reference are computed
|
|
@@ -37,6 +33,9 @@ export declare function getVpcInfo(args: GetVpcInfoArgs, opts?: pulumi.InvokeOpt
|
|
|
37
33
|
* A collection of arguments for invoking getVpcInfo.
|
|
38
34
|
*/
|
|
39
35
|
export interface GetVpcInfoArgs {
|
|
36
|
+
/**
|
|
37
|
+
* The CloudAMQP instance identifier.
|
|
38
|
+
*/
|
|
40
39
|
instanceId: number;
|
|
41
40
|
}
|
|
42
41
|
/**
|
|
@@ -58,5 +57,8 @@ export declare function getVpcInfoOutput(args: GetVpcInfoOutputArgs, opts?: pulu
|
|
|
58
57
|
* A collection of arguments for invoking getVpcInfo.
|
|
59
58
|
*/
|
|
60
59
|
export interface GetVpcInfoOutputArgs {
|
|
60
|
+
/**
|
|
61
|
+
* The CloudAMQP instance identifier.
|
|
62
|
+
*/
|
|
61
63
|
instanceId: pulumi.Input<number>;
|
|
62
64
|
}
|