@pulumi/cloudamqp 3.17.4 → 3.17.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/alarm.d.ts +55 -1
- package/alarm.js +55 -1
- package/alarm.js.map +1 -1
- package/customDomain.d.ts +3 -0
- package/customDomain.js +3 -0
- package/customDomain.js.map +1 -1
- package/extraDiskSize.d.ts +9 -0
- package/extraDiskSize.js +9 -0
- package/extraDiskSize.js.map +1 -1
- package/getAccount.d.ts +6 -0
- package/getAccount.js +6 -0
- package/getAccount.js.map +1 -1
- package/getAccountVpcs.d.ts +6 -0
- package/getAccountVpcs.js +6 -0
- package/getAccountVpcs.js.map +1 -1
- package/getAlarm.d.ts +6 -0
- package/getAlarm.js +6 -0
- package/getAlarm.js.map +1 -1
- package/getCredentials.d.ts +6 -0
- package/getCredentials.js +6 -0
- package/getCredentials.js.map +1 -1
- package/getInstance.d.ts +0 -42
- package/getInstance.js +0 -42
- package/getInstance.js.map +1 -1
- package/getNodes.d.ts +6 -0
- package/getNodes.js +6 -0
- package/getNodes.js.map +1 -1
- package/getNotification.d.ts +6 -0
- package/getNotification.js +6 -0
- package/getNotification.js.map +1 -1
- package/getPlugins.d.ts +6 -0
- package/getPlugins.js +6 -0
- package/getPlugins.js.map +1 -1
- package/getPluginsCommunity.d.ts +6 -0
- package/getPluginsCommunity.js +6 -0
- package/getPluginsCommunity.js.map +1 -1
- package/getUpgradableVersions.d.ts +6 -0
- package/getUpgradableVersions.js +6 -0
- package/getUpgradableVersions.js.map +1 -1
- package/getVpcGcpInfo.d.ts +10 -0
- package/getVpcGcpInfo.js +10 -0
- package/getVpcGcpInfo.js.map +1 -1
- package/getVpcInfo.d.ts +10 -0
- package/getVpcInfo.js +10 -0
- package/getVpcInfo.js.map +1 -1
- package/instance.d.ts +18 -1
- package/instance.js +18 -1
- package/instance.js.map +1 -1
- package/integrationAwsEventbridge.d.ts +3 -0
- package/integrationAwsEventbridge.js +3 -0
- package/integrationAwsEventbridge.js.map +1 -1
- package/integrationLog.d.ts +223 -18
- package/integrationLog.js +223 -18
- package/integrationLog.js.map +1 -1
- package/integrationMetric.d.ts +6 -6
- package/nodeActions.d.ts +7 -0
- package/nodeActions.js +7 -0
- package/nodeActions.js.map +1 -1
- package/notification.d.ts +17 -2
- package/notification.js +17 -2
- package/notification.js.map +1 -1
- package/package.json +1 -1
- package/pluginCommunity.d.ts +1 -1
- package/pluginCommunity.js +1 -1
- package/privatelinkAws.d.ts +11 -1
- package/privatelinkAws.js +11 -1
- package/privatelinkAws.js.map +1 -1
- package/privatelinkAzure.d.ts +11 -1
- package/privatelinkAzure.js +11 -1
- package/privatelinkAzure.js.map +1 -1
- package/upgradeRabbitmq.d.ts +6 -0
- package/upgradeRabbitmq.js +6 -0
- package/upgradeRabbitmq.js.map +1 -1
- package/vpc.d.ts +4 -2
- package/vpc.js +4 -2
- package/vpc.js.map +1 -1
- package/vpcConnect.d.ts +15 -1
- package/vpcConnect.js +15 -1
- package/vpcConnect.js.map +1 -1
- package/vpcGcpPeering.d.ts +47 -0
- package/vpcGcpPeering.js +47 -0
- package/vpcGcpPeering.js.map +1 -1
- package/webhook.d.ts +3 -0
- package/webhook.js +3 -0
- package/webhook.js.map +1 -1
package/alarm.d.ts
CHANGED
|
@@ -8,6 +8,14 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
8
8
|
*
|
|
9
9
|
* ## Example Usage
|
|
10
10
|
*
|
|
11
|
+
* <details>
|
|
12
|
+
* <summary>
|
|
13
|
+
* <b>
|
|
14
|
+
* <i>Basic example of CPU and memory alarm</i>
|
|
15
|
+
* </b>
|
|
16
|
+
* </summary>
|
|
17
|
+
*
|
|
18
|
+
* <!--Start PulumiCodeChooser -->
|
|
11
19
|
* ```typescript
|
|
12
20
|
* import * as pulumi from "@pulumi/pulumi";
|
|
13
21
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -39,6 +47,42 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
39
47
|
* recipients: [recipient01.id],
|
|
40
48
|
* });
|
|
41
49
|
* ```
|
|
50
|
+
* <!--End PulumiCodeChooser -->
|
|
51
|
+
*
|
|
52
|
+
* </details>
|
|
53
|
+
*
|
|
54
|
+
* <details>
|
|
55
|
+
* <summary>
|
|
56
|
+
* <b>
|
|
57
|
+
* <i>Manage notice alarm, available from v1.29.5</i>
|
|
58
|
+
* </b>
|
|
59
|
+
* </summary>
|
|
60
|
+
*
|
|
61
|
+
* Only one notice alarm can exists and cannot be created, instead the alarm resource will be updated.
|
|
62
|
+
*
|
|
63
|
+
* <!--Start PulumiCodeChooser -->
|
|
64
|
+
* ```typescript
|
|
65
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
66
|
+
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
67
|
+
*
|
|
68
|
+
* // New recipient
|
|
69
|
+
* const recipient01 = new cloudamqp.Notification("recipient01", {
|
|
70
|
+
* instanceId: cloudamqp_instance.instance.id,
|
|
71
|
+
* type: "email",
|
|
72
|
+
* value: "alarm@example.com",
|
|
73
|
+
* });
|
|
74
|
+
* // Update existing notice alarm
|
|
75
|
+
* const notice = new cloudamqp.Alarm("notice", {
|
|
76
|
+
* instanceId: cloudamqp_instance.instance.id,
|
|
77
|
+
* type: "notice",
|
|
78
|
+
* enabled: true,
|
|
79
|
+
* recipients: [recipient01.id],
|
|
80
|
+
* });
|
|
81
|
+
* ```
|
|
82
|
+
* <!--End PulumiCodeChooser -->
|
|
83
|
+
*
|
|
84
|
+
* </details>
|
|
85
|
+
*
|
|
42
86
|
* ## Alarm Type reference
|
|
43
87
|
*
|
|
44
88
|
* Supported alarm types: `cpu, memory, disk, queue, connection, flow, consumer, netsplit, server_unreachable, notice`
|
|
@@ -59,12 +103,22 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
59
103
|
* | Server unreachable | serverUnreachable | - | ✔ | timeThreshold |
|
|
60
104
|
* | Notice | notice | ✔ | ✔ | |
|
|
61
105
|
*
|
|
62
|
-
* > Notice alarm is manadatory! Only one can exists and cannot be deleted. Setting `noDefaultAlarm` to true, will still create this alarm.
|
|
106
|
+
* > Notice alarm is manadatory! Only one can exists and cannot be deleted. Setting `noDefaultAlarm` to true, will still create this alarm. See updated changes to notice alarm below.
|
|
63
107
|
*
|
|
64
108
|
* ## Dependency
|
|
65
109
|
*
|
|
66
110
|
* This resource depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
|
|
67
111
|
*
|
|
112
|
+
* ## Notice alarm
|
|
113
|
+
*
|
|
114
|
+
* There is a limitation for notice alarm in the API backend. This alarm is mandatory, multiple
|
|
115
|
+
* alarms cannot exists or be deleted.
|
|
116
|
+
*
|
|
117
|
+
* From provider version v1.29.5
|
|
118
|
+
* it's possible to manage the notice alarm and no longer needs to be imported. Just create the
|
|
119
|
+
* alarm resource as usually and it will be updated with given recipients. If the alarm is deleted
|
|
120
|
+
* it will only be removed from the state file, but will still be enabled in the backend.
|
|
121
|
+
*
|
|
68
122
|
* ## Import
|
|
69
123
|
*
|
|
70
124
|
* `cloudamqp_alarm` can be imported using CloudAMQP internal identifier of the alarm together (CSV separated) with the instance identifier. To retrieve the alarm identifier, use [CloudAMQP API](https://docs.cloudamqp.com/cloudamqp_api.html#list-alarms)
|
package/alarm.js
CHANGED
|
@@ -14,6 +14,14 @@ const utilities = require("./utilities");
|
|
|
14
14
|
*
|
|
15
15
|
* ## Example Usage
|
|
16
16
|
*
|
|
17
|
+
* <details>
|
|
18
|
+
* <summary>
|
|
19
|
+
* <b>
|
|
20
|
+
* <i>Basic example of CPU and memory alarm</i>
|
|
21
|
+
* </b>
|
|
22
|
+
* </summary>
|
|
23
|
+
*
|
|
24
|
+
* <!--Start PulumiCodeChooser -->
|
|
17
25
|
* ```typescript
|
|
18
26
|
* import * as pulumi from "@pulumi/pulumi";
|
|
19
27
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -45,6 +53,42 @@ const utilities = require("./utilities");
|
|
|
45
53
|
* recipients: [recipient01.id],
|
|
46
54
|
* });
|
|
47
55
|
* ```
|
|
56
|
+
* <!--End PulumiCodeChooser -->
|
|
57
|
+
*
|
|
58
|
+
* </details>
|
|
59
|
+
*
|
|
60
|
+
* <details>
|
|
61
|
+
* <summary>
|
|
62
|
+
* <b>
|
|
63
|
+
* <i>Manage notice alarm, available from v1.29.5</i>
|
|
64
|
+
* </b>
|
|
65
|
+
* </summary>
|
|
66
|
+
*
|
|
67
|
+
* Only one notice alarm can exists and cannot be created, instead the alarm resource will be updated.
|
|
68
|
+
*
|
|
69
|
+
* <!--Start PulumiCodeChooser -->
|
|
70
|
+
* ```typescript
|
|
71
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
72
|
+
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
73
|
+
*
|
|
74
|
+
* // New recipient
|
|
75
|
+
* const recipient01 = new cloudamqp.Notification("recipient01", {
|
|
76
|
+
* instanceId: cloudamqp_instance.instance.id,
|
|
77
|
+
* type: "email",
|
|
78
|
+
* value: "alarm@example.com",
|
|
79
|
+
* });
|
|
80
|
+
* // Update existing notice alarm
|
|
81
|
+
* const notice = new cloudamqp.Alarm("notice", {
|
|
82
|
+
* instanceId: cloudamqp_instance.instance.id,
|
|
83
|
+
* type: "notice",
|
|
84
|
+
* enabled: true,
|
|
85
|
+
* recipients: [recipient01.id],
|
|
86
|
+
* });
|
|
87
|
+
* ```
|
|
88
|
+
* <!--End PulumiCodeChooser -->
|
|
89
|
+
*
|
|
90
|
+
* </details>
|
|
91
|
+
*
|
|
48
92
|
* ## Alarm Type reference
|
|
49
93
|
*
|
|
50
94
|
* Supported alarm types: `cpu, memory, disk, queue, connection, flow, consumer, netsplit, server_unreachable, notice`
|
|
@@ -65,12 +109,22 @@ const utilities = require("./utilities");
|
|
|
65
109
|
* | Server unreachable | serverUnreachable | - | ✔ | timeThreshold |
|
|
66
110
|
* | Notice | notice | ✔ | ✔ | |
|
|
67
111
|
*
|
|
68
|
-
* > Notice alarm is manadatory! Only one can exists and cannot be deleted. Setting `noDefaultAlarm` to true, will still create this alarm.
|
|
112
|
+
* > Notice alarm is manadatory! Only one can exists and cannot be deleted. Setting `noDefaultAlarm` to true, will still create this alarm. See updated changes to notice alarm below.
|
|
69
113
|
*
|
|
70
114
|
* ## Dependency
|
|
71
115
|
*
|
|
72
116
|
* This resource depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
|
|
73
117
|
*
|
|
118
|
+
* ## Notice alarm
|
|
119
|
+
*
|
|
120
|
+
* There is a limitation for notice alarm in the API backend. This alarm is mandatory, multiple
|
|
121
|
+
* alarms cannot exists or be deleted.
|
|
122
|
+
*
|
|
123
|
+
* From provider version v1.29.5
|
|
124
|
+
* it's possible to manage the notice alarm and no longer needs to be imported. Just create the
|
|
125
|
+
* alarm resource as usually and it will be updated with given recipients. If the alarm is deleted
|
|
126
|
+
* it will only be removed from the state file, but will still be enabled in the backend.
|
|
127
|
+
*
|
|
74
128
|
* ## Import
|
|
75
129
|
*
|
|
76
130
|
* `cloudamqp_alarm` can be imported using CloudAMQP internal identifier of the alarm together (CSV separated) with the instance identifier. To retrieve the alarm identifier, use [CloudAMQP API](https://docs.cloudamqp.com/cloudamqp_api.html#list-alarms)
|
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
|
|
1
|
+
{"version":3,"file":"alarm.js","sourceRoot":"","sources":["../alarm.ts"],"names":[],"mappings":"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"}
|
package/customDomain.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
12
12
|
*
|
|
13
13
|
* ## Example Usage
|
|
14
14
|
*
|
|
15
|
+
* <!--Start PulumiCodeChooser -->
|
|
15
16
|
* ```typescript
|
|
16
17
|
* import * as pulumi from "@pulumi/pulumi";
|
|
17
18
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -21,6 +22,8 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
21
22
|
* hostname: "myname.mydomain",
|
|
22
23
|
* });
|
|
23
24
|
* ```
|
|
25
|
+
* <!--End PulumiCodeChooser -->
|
|
26
|
+
*
|
|
24
27
|
* ## Depedency
|
|
25
28
|
*
|
|
26
29
|
* This resource depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
|
package/customDomain.js
CHANGED
|
@@ -18,6 +18,7 @@ const utilities = require("./utilities");
|
|
|
18
18
|
*
|
|
19
19
|
* ## Example Usage
|
|
20
20
|
*
|
|
21
|
+
* <!--Start PulumiCodeChooser -->
|
|
21
22
|
* ```typescript
|
|
22
23
|
* import * as pulumi from "@pulumi/pulumi";
|
|
23
24
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -27,6 +28,8 @@ const utilities = require("./utilities");
|
|
|
27
28
|
* hostname: "myname.mydomain",
|
|
28
29
|
* });
|
|
29
30
|
* ```
|
|
31
|
+
* <!--End PulumiCodeChooser -->
|
|
32
|
+
*
|
|
30
33
|
* ## Depedency
|
|
31
34
|
*
|
|
32
35
|
* This resource depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
|
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
|
|
1
|
+
{"version":3,"file":"customDomain.js","sourceRoot":"","sources":["../customDomain.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;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;IAmBD,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;;AAjEL,oCAkEC;AApDG,gBAAgB;AACO,yBAAY,GAAG,2CAA2C,CAAC"}
|
package/extraDiskSize.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ import * as outputs from "./types/output";
|
|
|
34
34
|
* </b>
|
|
35
35
|
* </summary>
|
|
36
36
|
*
|
|
37
|
+
* <!--Start PulumiCodeChooser -->
|
|
37
38
|
* ```typescript
|
|
38
39
|
* import * as pulumi from "@pulumi/pulumi";
|
|
39
40
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -52,6 +53,7 @@ import * as outputs from "./types/output";
|
|
|
52
53
|
* instanceId: id,
|
|
53
54
|
* }));
|
|
54
55
|
* ```
|
|
56
|
+
* <!--End PulumiCodeChooser -->
|
|
55
57
|
*
|
|
56
58
|
* </details>
|
|
57
59
|
*
|
|
@@ -62,6 +64,7 @@ import * as outputs from "./types/output";
|
|
|
62
64
|
* </b>
|
|
63
65
|
* </summary>
|
|
64
66
|
*
|
|
67
|
+
* <!--Start PulumiCodeChooser -->
|
|
65
68
|
* ```typescript
|
|
66
69
|
* import * as pulumi from "@pulumi/pulumi";
|
|
67
70
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -80,6 +83,7 @@ import * as outputs from "./types/output";
|
|
|
80
83
|
* instanceId: id,
|
|
81
84
|
* }));
|
|
82
85
|
* ```
|
|
86
|
+
* <!--End PulumiCodeChooser -->
|
|
83
87
|
*
|
|
84
88
|
* </details>
|
|
85
89
|
*
|
|
@@ -90,6 +94,7 @@ import * as outputs from "./types/output";
|
|
|
90
94
|
* </b>
|
|
91
95
|
* </summary>
|
|
92
96
|
*
|
|
97
|
+
* <!--Start PulumiCodeChooser -->
|
|
93
98
|
* ```typescript
|
|
94
99
|
* import * as pulumi from "@pulumi/pulumi";
|
|
95
100
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -108,6 +113,7 @@ import * as outputs from "./types/output";
|
|
|
108
113
|
* instanceId: id,
|
|
109
114
|
* }));
|
|
110
115
|
* ```
|
|
116
|
+
* <!--End PulumiCodeChooser -->
|
|
111
117
|
*
|
|
112
118
|
* </details>
|
|
113
119
|
*
|
|
@@ -118,6 +124,7 @@ import * as outputs from "./types/output";
|
|
|
118
124
|
* </b>
|
|
119
125
|
* </summary>
|
|
120
126
|
*
|
|
127
|
+
* <!--Start PulumiCodeChooser -->
|
|
121
128
|
* ```typescript
|
|
122
129
|
* import * as pulumi from "@pulumi/pulumi";
|
|
123
130
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -137,8 +144,10 @@ import * as outputs from "./types/output";
|
|
|
137
144
|
* instanceId: id,
|
|
138
145
|
* }));
|
|
139
146
|
* ```
|
|
147
|
+
* <!--End PulumiCodeChooser -->
|
|
140
148
|
*
|
|
141
149
|
* </details>
|
|
150
|
+
*
|
|
142
151
|
* ## Attributes reference
|
|
143
152
|
*
|
|
144
153
|
* All attributes reference are computed
|
package/extraDiskSize.js
CHANGED
|
@@ -38,6 +38,7 @@ const utilities = require("./utilities");
|
|
|
38
38
|
* </b>
|
|
39
39
|
* </summary>
|
|
40
40
|
*
|
|
41
|
+
* <!--Start PulumiCodeChooser -->
|
|
41
42
|
* ```typescript
|
|
42
43
|
* import * as pulumi from "@pulumi/pulumi";
|
|
43
44
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -56,6 +57,7 @@ const utilities = require("./utilities");
|
|
|
56
57
|
* instanceId: id,
|
|
57
58
|
* }));
|
|
58
59
|
* ```
|
|
60
|
+
* <!--End PulumiCodeChooser -->
|
|
59
61
|
*
|
|
60
62
|
* </details>
|
|
61
63
|
*
|
|
@@ -66,6 +68,7 @@ const utilities = require("./utilities");
|
|
|
66
68
|
* </b>
|
|
67
69
|
* </summary>
|
|
68
70
|
*
|
|
71
|
+
* <!--Start PulumiCodeChooser -->
|
|
69
72
|
* ```typescript
|
|
70
73
|
* import * as pulumi from "@pulumi/pulumi";
|
|
71
74
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -84,6 +87,7 @@ const utilities = require("./utilities");
|
|
|
84
87
|
* instanceId: id,
|
|
85
88
|
* }));
|
|
86
89
|
* ```
|
|
90
|
+
* <!--End PulumiCodeChooser -->
|
|
87
91
|
*
|
|
88
92
|
* </details>
|
|
89
93
|
*
|
|
@@ -94,6 +98,7 @@ const utilities = require("./utilities");
|
|
|
94
98
|
* </b>
|
|
95
99
|
* </summary>
|
|
96
100
|
*
|
|
101
|
+
* <!--Start PulumiCodeChooser -->
|
|
97
102
|
* ```typescript
|
|
98
103
|
* import * as pulumi from "@pulumi/pulumi";
|
|
99
104
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -112,6 +117,7 @@ const utilities = require("./utilities");
|
|
|
112
117
|
* instanceId: id,
|
|
113
118
|
* }));
|
|
114
119
|
* ```
|
|
120
|
+
* <!--End PulumiCodeChooser -->
|
|
115
121
|
*
|
|
116
122
|
* </details>
|
|
117
123
|
*
|
|
@@ -122,6 +128,7 @@ const utilities = require("./utilities");
|
|
|
122
128
|
* </b>
|
|
123
129
|
* </summary>
|
|
124
130
|
*
|
|
131
|
+
* <!--Start PulumiCodeChooser -->
|
|
125
132
|
* ```typescript
|
|
126
133
|
* import * as pulumi from "@pulumi/pulumi";
|
|
127
134
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -141,8 +148,10 @@ const utilities = require("./utilities");
|
|
|
141
148
|
* instanceId: id,
|
|
142
149
|
* }));
|
|
143
150
|
* ```
|
|
151
|
+
* <!--End PulumiCodeChooser -->
|
|
144
152
|
*
|
|
145
153
|
* </details>
|
|
154
|
+
*
|
|
146
155
|
* ## Attributes reference
|
|
147
156
|
*
|
|
148
157
|
* All attributes reference are computed
|
package/extraDiskSize.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"extraDiskSize.js","sourceRoot":"","sources":["../extraDiskSize.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"extraDiskSize.js","sourceRoot":"","sources":["../extraDiskSize.ts"],"names":[],"mappings":"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"}
|
package/getAccount.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import * as outputs from "./types/output";
|
|
|
7
7
|
*
|
|
8
8
|
* Can be used in other resources/data sources when instance identifier is unknown, while other attributes are known. E.g. find correct instance from `instance name`. Then iterate over instances to find the matching one and extract the instance identifier.
|
|
9
9
|
*
|
|
10
|
+
* <!--Start PulumiCodeChooser -->
|
|
10
11
|
* ```typescript
|
|
11
12
|
* import * as pulumi from "@pulumi/pulumi";
|
|
12
13
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -15,6 +16,8 @@ import * as outputs from "./types/output";
|
|
|
15
16
|
* const instanceList = cloudamqp.getAccount({});
|
|
16
17
|
* export const instanceId = <nil>;
|
|
17
18
|
* ```
|
|
19
|
+
* <!--End PulumiCodeChooser -->
|
|
20
|
+
*
|
|
18
21
|
* ## Attributes reference
|
|
19
22
|
*
|
|
20
23
|
* All attributes reference are computed
|
|
@@ -54,6 +57,7 @@ export interface GetAccountResult {
|
|
|
54
57
|
*
|
|
55
58
|
* Can be used in other resources/data sources when instance identifier is unknown, while other attributes are known. E.g. find correct instance from `instance name`. Then iterate over instances to find the matching one and extract the instance identifier.
|
|
56
59
|
*
|
|
60
|
+
* <!--Start PulumiCodeChooser -->
|
|
57
61
|
* ```typescript
|
|
58
62
|
* import * as pulumi from "@pulumi/pulumi";
|
|
59
63
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -62,6 +66,8 @@ export interface GetAccountResult {
|
|
|
62
66
|
* const instanceList = cloudamqp.getAccount({});
|
|
63
67
|
* export const instanceId = <nil>;
|
|
64
68
|
* ```
|
|
69
|
+
* <!--End PulumiCodeChooser -->
|
|
70
|
+
*
|
|
65
71
|
* ## Attributes reference
|
|
66
72
|
*
|
|
67
73
|
* All attributes reference are computed
|
package/getAccount.js
CHANGED
|
@@ -12,6 +12,7 @@ const utilities = require("./utilities");
|
|
|
12
12
|
*
|
|
13
13
|
* Can be used in other resources/data sources when instance identifier is unknown, while other attributes are known. E.g. find correct instance from `instance name`. Then iterate over instances to find the matching one and extract the instance identifier.
|
|
14
14
|
*
|
|
15
|
+
* <!--Start PulumiCodeChooser -->
|
|
15
16
|
* ```typescript
|
|
16
17
|
* import * as pulumi from "@pulumi/pulumi";
|
|
17
18
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -20,6 +21,8 @@ const utilities = require("./utilities");
|
|
|
20
21
|
* const instanceList = cloudamqp.getAccount({});
|
|
21
22
|
* export const instanceId = <nil>;
|
|
22
23
|
* ```
|
|
24
|
+
* <!--End PulumiCodeChooser -->
|
|
25
|
+
*
|
|
23
26
|
* ## Attributes reference
|
|
24
27
|
*
|
|
25
28
|
* All attributes reference are computed
|
|
@@ -53,6 +56,7 @@ exports.getAccount = getAccount;
|
|
|
53
56
|
*
|
|
54
57
|
* Can be used in other resources/data sources when instance identifier is unknown, while other attributes are known. E.g. find correct instance from `instance name`. Then iterate over instances to find the matching one and extract the instance identifier.
|
|
55
58
|
*
|
|
59
|
+
* <!--Start PulumiCodeChooser -->
|
|
56
60
|
* ```typescript
|
|
57
61
|
* import * as pulumi from "@pulumi/pulumi";
|
|
58
62
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -61,6 +65,8 @@ exports.getAccount = getAccount;
|
|
|
61
65
|
* const instanceList = cloudamqp.getAccount({});
|
|
62
66
|
* export const instanceId = <nil>;
|
|
63
67
|
* ```
|
|
68
|
+
* <!--End PulumiCodeChooser -->
|
|
69
|
+
*
|
|
64
70
|
* ## Attributes reference
|
|
65
71
|
*
|
|
66
72
|
* All attributes reference are computed
|
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;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getAccount.js","sourceRoot":"","sources":["../getAccount.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AACH,SAAgB,UAAU,CAAC,IAA2B;IAElD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uCAAuC,EAAE,EACrE,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gCAKC;AAYD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;AACH,SAAgB,gBAAgB,CAAC,IAA2B;IACxD,OAAO,MAAM,CAAC,MAAM,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAA;AAC1C,CAAC;AAFD,4CAEC"}
|
package/getAccountVpcs.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import * as outputs from "./types/output";
|
|
|
7
7
|
*
|
|
8
8
|
* Can be used in other resources/data sources when the VPC identifier is unknown, while other attributes are known. E.g. find correct VPC using the `name` you gave your VPC. Then iterate over VPCs to find the matching one and extract the VPC identifier.
|
|
9
9
|
*
|
|
10
|
+
* <!--Start PulumiCodeChooser -->
|
|
10
11
|
* ```typescript
|
|
11
12
|
* import * as pulumi from "@pulumi/pulumi";
|
|
12
13
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -15,6 +16,8 @@ import * as outputs from "./types/output";
|
|
|
15
16
|
* const vpcList = cloudamqp.getAccountVpcs({});
|
|
16
17
|
* export const vpcId = vpcList.then(vpcList => .filter(vpc => vpc.name == myVpcName).map(vpc => (vpc))[0].id);
|
|
17
18
|
* ```
|
|
19
|
+
* <!--End PulumiCodeChooser -->
|
|
20
|
+
*
|
|
18
21
|
* ## Attributes reference
|
|
19
22
|
*
|
|
20
23
|
* All attributes reference are computed
|
|
@@ -55,6 +58,7 @@ export interface GetAccountVpcsResult {
|
|
|
55
58
|
*
|
|
56
59
|
* Can be used in other resources/data sources when the VPC identifier is unknown, while other attributes are known. E.g. find correct VPC using the `name` you gave your VPC. Then iterate over VPCs to find the matching one and extract the VPC identifier.
|
|
57
60
|
*
|
|
61
|
+
* <!--Start PulumiCodeChooser -->
|
|
58
62
|
* ```typescript
|
|
59
63
|
* import * as pulumi from "@pulumi/pulumi";
|
|
60
64
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -63,6 +67,8 @@ export interface GetAccountVpcsResult {
|
|
|
63
67
|
* const vpcList = cloudamqp.getAccountVpcs({});
|
|
64
68
|
* export const vpcId = vpcList.then(vpcList => .filter(vpc => vpc.name == myVpcName).map(vpc => (vpc))[0].id);
|
|
65
69
|
* ```
|
|
70
|
+
* <!--End PulumiCodeChooser -->
|
|
71
|
+
*
|
|
66
72
|
* ## Attributes reference
|
|
67
73
|
*
|
|
68
74
|
* All attributes reference are computed
|
package/getAccountVpcs.js
CHANGED
|
@@ -12,6 +12,7 @@ const utilities = require("./utilities");
|
|
|
12
12
|
*
|
|
13
13
|
* Can be used in other resources/data sources when the VPC identifier is unknown, while other attributes are known. E.g. find correct VPC using the `name` you gave your VPC. Then iterate over VPCs to find the matching one and extract the VPC identifier.
|
|
14
14
|
*
|
|
15
|
+
* <!--Start PulumiCodeChooser -->
|
|
15
16
|
* ```typescript
|
|
16
17
|
* import * as pulumi from "@pulumi/pulumi";
|
|
17
18
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -20,6 +21,8 @@ const utilities = require("./utilities");
|
|
|
20
21
|
* const vpcList = cloudamqp.getAccountVpcs({});
|
|
21
22
|
* export const vpcId = vpcList.then(vpcList => .filter(vpc => vpc.name == myVpcName).map(vpc => (vpc))[0].id);
|
|
22
23
|
* ```
|
|
24
|
+
* <!--End PulumiCodeChooser -->
|
|
25
|
+
*
|
|
23
26
|
* ## Attributes reference
|
|
24
27
|
*
|
|
25
28
|
* All attributes reference are computed
|
|
@@ -54,6 +57,7 @@ exports.getAccountVpcs = getAccountVpcs;
|
|
|
54
57
|
*
|
|
55
58
|
* Can be used in other resources/data sources when the VPC identifier is unknown, while other attributes are known. E.g. find correct VPC using the `name` you gave your VPC. Then iterate over VPCs to find the matching one and extract the VPC identifier.
|
|
56
59
|
*
|
|
60
|
+
* <!--Start PulumiCodeChooser -->
|
|
57
61
|
* ```typescript
|
|
58
62
|
* import * as pulumi from "@pulumi/pulumi";
|
|
59
63
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -62,6 +66,8 @@ exports.getAccountVpcs = getAccountVpcs;
|
|
|
62
66
|
* const vpcList = cloudamqp.getAccountVpcs({});
|
|
63
67
|
* export const vpcId = vpcList.then(vpcList => .filter(vpc => vpc.name == myVpcName).map(vpc => (vpc))[0].id);
|
|
64
68
|
* ```
|
|
69
|
+
* <!--End PulumiCodeChooser -->
|
|
70
|
+
*
|
|
65
71
|
* ## Attributes reference
|
|
66
72
|
*
|
|
67
73
|
* All attributes reference are computed
|
package/getAccountVpcs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAccountVpcs.js","sourceRoot":"","sources":["../getAccountVpcs.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getAccountVpcs.js","sourceRoot":"","sources":["../getAccountVpcs.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,SAAgB,cAAc,CAAC,IAA2B;IAEtD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+CAA+C,EAAE,EAC7E,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wCAKC;AAYD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCG;AACH,SAAgB,oBAAoB,CAAC,IAA2B;IAC5D,OAAO,MAAM,CAAC,MAAM,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC,CAAA;AAC9C,CAAC;AAFD,oDAEC"}
|
package/getAlarm.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
4
4
|
*
|
|
5
5
|
* ## Example Usage
|
|
6
6
|
*
|
|
7
|
+
* <!--Start PulumiCodeChooser -->
|
|
7
8
|
* ```typescript
|
|
8
9
|
* import * as pulumi from "@pulumi/pulumi";
|
|
9
10
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -13,6 +14,8 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
13
14
|
* type: "cpu",
|
|
14
15
|
* });
|
|
15
16
|
* ```
|
|
17
|
+
* <!--End PulumiCodeChooser -->
|
|
18
|
+
*
|
|
16
19
|
* ## Attributes reference
|
|
17
20
|
*
|
|
18
21
|
* All attributes reference are computed
|
|
@@ -84,6 +87,7 @@ export interface GetAlarmResult {
|
|
|
84
87
|
*
|
|
85
88
|
* ## Example Usage
|
|
86
89
|
*
|
|
90
|
+
* <!--Start PulumiCodeChooser -->
|
|
87
91
|
* ```typescript
|
|
88
92
|
* import * as pulumi from "@pulumi/pulumi";
|
|
89
93
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -93,6 +97,8 @@ export interface GetAlarmResult {
|
|
|
93
97
|
* type: "cpu",
|
|
94
98
|
* });
|
|
95
99
|
* ```
|
|
100
|
+
* <!--End PulumiCodeChooser -->
|
|
101
|
+
*
|
|
96
102
|
* ## Attributes reference
|
|
97
103
|
*
|
|
98
104
|
* All attributes reference are computed
|
package/getAlarm.js
CHANGED
|
@@ -10,6 +10,7 @@ const utilities = require("./utilities");
|
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
|
13
|
+
* <!--Start PulumiCodeChooser -->
|
|
13
14
|
* ```typescript
|
|
14
15
|
* import * as pulumi from "@pulumi/pulumi";
|
|
15
16
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -19,6 +20,8 @@ const utilities = require("./utilities");
|
|
|
19
20
|
* type: "cpu",
|
|
20
21
|
* });
|
|
21
22
|
* ```
|
|
23
|
+
* <!--End PulumiCodeChooser -->
|
|
24
|
+
*
|
|
22
25
|
* ## Attributes reference
|
|
23
26
|
*
|
|
24
27
|
* All attributes reference are computed
|
|
@@ -60,6 +63,7 @@ exports.getAlarm = getAlarm;
|
|
|
60
63
|
*
|
|
61
64
|
* ## Example Usage
|
|
62
65
|
*
|
|
66
|
+
* <!--Start PulumiCodeChooser -->
|
|
63
67
|
* ```typescript
|
|
64
68
|
* import * as pulumi from "@pulumi/pulumi";
|
|
65
69
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -69,6 +73,8 @@ exports.getAlarm = getAlarm;
|
|
|
69
73
|
* type: "cpu",
|
|
70
74
|
* });
|
|
71
75
|
* ```
|
|
76
|
+
* <!--End PulumiCodeChooser -->
|
|
77
|
+
*
|
|
72
78
|
* ## Attributes reference
|
|
73
79
|
*
|
|
74
80
|
* All attributes reference are computed
|
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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IAEpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,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;QACjB,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,4BASC;AA0CD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACnE,CAAC;AAFD,wCAEC"}
|
package/getCredentials.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
4
4
|
*
|
|
5
5
|
* ## Example Usage
|
|
6
6
|
*
|
|
7
|
+
* <!--Start PulumiCodeChooser -->
|
|
7
8
|
* ```typescript
|
|
8
9
|
* import * as pulumi from "@pulumi/pulumi";
|
|
9
10
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -12,6 +13,8 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
12
13
|
* instanceId: cloudamqp_instance.instance.id,
|
|
13
14
|
* });
|
|
14
15
|
* ```
|
|
16
|
+
* <!--End PulumiCodeChooser -->
|
|
17
|
+
*
|
|
15
18
|
* ## Attributes reference
|
|
16
19
|
*
|
|
17
20
|
* All attributes reference are computed.
|
|
@@ -51,6 +54,7 @@ export interface GetCredentialsResult {
|
|
|
51
54
|
*
|
|
52
55
|
* ## Example Usage
|
|
53
56
|
*
|
|
57
|
+
* <!--Start PulumiCodeChooser -->
|
|
54
58
|
* ```typescript
|
|
55
59
|
* import * as pulumi from "@pulumi/pulumi";
|
|
56
60
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -59,6 +63,8 @@ export interface GetCredentialsResult {
|
|
|
59
63
|
* instanceId: cloudamqp_instance.instance.id,
|
|
60
64
|
* });
|
|
61
65
|
* ```
|
|
66
|
+
* <!--End PulumiCodeChooser -->
|
|
67
|
+
*
|
|
62
68
|
* ## Attributes reference
|
|
63
69
|
*
|
|
64
70
|
* All attributes reference are computed.
|
package/getCredentials.js
CHANGED
|
@@ -10,6 +10,7 @@ const utilities = require("./utilities");
|
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
|
13
|
+
* <!--Start PulumiCodeChooser -->
|
|
13
14
|
* ```typescript
|
|
14
15
|
* import * as pulumi from "@pulumi/pulumi";
|
|
15
16
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -18,6 +19,8 @@ const utilities = require("./utilities");
|
|
|
18
19
|
* instanceId: cloudamqp_instance.instance.id,
|
|
19
20
|
* });
|
|
20
21
|
* ```
|
|
22
|
+
* <!--End PulumiCodeChooser -->
|
|
23
|
+
*
|
|
21
24
|
* ## Attributes reference
|
|
22
25
|
*
|
|
23
26
|
* All attributes reference are computed.
|
|
@@ -42,6 +45,7 @@ exports.getCredentials = getCredentials;
|
|
|
42
45
|
*
|
|
43
46
|
* ## Example Usage
|
|
44
47
|
*
|
|
48
|
+
* <!--Start PulumiCodeChooser -->
|
|
45
49
|
* ```typescript
|
|
46
50
|
* import * as pulumi from "@pulumi/pulumi";
|
|
47
51
|
* import * as cloudamqp from "@pulumi/cloudamqp";
|
|
@@ -50,6 +54,8 @@ exports.getCredentials = getCredentials;
|
|
|
50
54
|
* instanceId: cloudamqp_instance.instance.id,
|
|
51
55
|
* });
|
|
52
56
|
* ```
|
|
57
|
+
* <!--End PulumiCodeChooser -->
|
|
58
|
+
*
|
|
53
59
|
* ## Attributes reference
|
|
54
60
|
*
|
|
55
61
|
* All attributes reference are computed.
|
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;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAEhF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+CAA+C,EAAE;QAC1E,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wCAMC;AAwBD;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2BG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,cAAc,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzE,CAAC;AAFD,oDAEC"}
|