@pulumi/openstack 5.5.0-alpha.1779347983 → 5.5.0-alpha.1779452089

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.
@@ -199,10 +199,10 @@ import * as outputs from "../types/output";
199
199
  * },
200
200
  * ],
201
201
  * });
202
- * const vm_port = pulumi.all([multi_net.id, multi_net.networks]).apply(([id, networks]) => openstack.networking.getPortOutput({
203
- * deviceId: id,
204
- * networkId: networks[1].uuid,
205
- * }));
202
+ * const vm_port = openstack.networking.getPortOutput({
203
+ * deviceId: multi_net.id,
204
+ * networkId: multi_net.networks.apply(networks => networks[1].uuid),
205
+ * });
206
206
  * const fipVm = new openstack.networking.FloatingIpAssociate("fip_vm", {
207
207
  * floatingIp: myip.address,
208
208
  * portId: vm_port.apply(vm_port => vm_port.id),
@@ -226,10 +226,10 @@ const utilities = __importStar(require("../utilities"));
226
226
  * },
227
227
  * ],
228
228
  * });
229
- * const vm_port = pulumi.all([multi_net.id, multi_net.networks]).apply(([id, networks]) => openstack.networking.getPortOutput({
230
- * deviceId: id,
231
- * networkId: networks[1].uuid,
232
- * }));
229
+ * const vm_port = openstack.networking.getPortOutput({
230
+ * deviceId: multi_net.id,
231
+ * networkId: multi_net.networks.apply(networks => networks[1].uuid),
232
+ * });
233
233
  * const fipVm = new openstack.networking.FloatingIpAssociate("fip_vm", {
234
234
  * floatingIp: myip.address,
235
235
  * portId: vm_port.apply(vm_port => vm_port.id),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/openstack",
3
- "version": "5.5.0-alpha.1779347983",
3
+ "version": "5.5.0-alpha.1779452089",
4
4
  "description": "A Pulumi package for creating and managing OpenStack cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -22,6 +22,6 @@
22
22
  "pulumi": {
23
23
  "resource": true,
24
24
  "name": "openstack",
25
- "version": "5.5.0-alpha.1779347983"
25
+ "version": "5.5.0-alpha.1779452089"
26
26
  }
27
27
  }