@pulumi/cloudamqp 3.30.0-alpha.1779432002 → 3.30.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.
@@ -57,9 +57,9 @@ import * as outputs from "./types/output";
57
57
  * });
58
58
  * // Optional, refresh nodes info after disk resize by adding dependency
59
59
  * // to cloudamqp_extra_disk_size.resize_disk resource
60
- * const nodes = instance.id.apply(id => cloudamqp.getNodesOutput({
61
- * instanceId: Number(id),
62
- * }));
60
+ * const nodes = cloudamqp.getNodesOutput({
61
+ * instanceId: instance.id.apply(x =>Number(x)),
62
+ * });
63
63
  * ```
64
64
  *
65
65
  * </details>
@@ -88,9 +88,9 @@ import * as outputs from "./types/output";
88
88
  * });
89
89
  * // Optional, refresh nodes info after disk resize by adding dependency
90
90
  * // to cloudamqp_extra_disk_size.resize_disk resource
91
- * const nodes = instance.id.apply(id => cloudamqp.getNodesOutput({
92
- * instanceId: Number(id),
93
- * }));
91
+ * const nodes = cloudamqp.getNodesOutput({
92
+ * instanceId: instance.id.apply(x =>Number(x)),
93
+ * });
94
94
  * ```
95
95
  *
96
96
  * </details>
@@ -119,9 +119,9 @@ import * as outputs from "./types/output";
119
119
  * });
120
120
  * // Optional, refresh nodes info after disk resize by adding dependency
121
121
  * // to cloudamqp_extra_disk_size.resize_disk resource
122
- * const nodes = instance.id.apply(id => cloudamqp.getNodesOutput({
123
- * instanceId: Number(id),
124
- * }));
122
+ * const nodes = cloudamqp.getNodesOutput({
123
+ * instanceId: instance.id.apply(x =>Number(x)),
124
+ * });
125
125
  * ```
126
126
  *
127
127
  * </details>
@@ -150,9 +150,9 @@ import * as outputs from "./types/output";
150
150
  * });
151
151
  * // Optional, refresh nodes info after disk resize by adding dependency
152
152
  * // to cloudamqp_extra_disk_size.resize_disk resource
153
- * const nodes = instance.id.apply(id => cloudamqp.getNodesOutput({
154
- * instanceId: Number(id),
155
- * }));
153
+ * const nodes = cloudamqp.getNodesOutput({
154
+ * instanceId: instance.id.apply(x =>Number(x)),
155
+ * });
156
156
  * ```
157
157
  *
158
158
  * </details>
package/extraDiskSize.js CHANGED
@@ -84,9 +84,9 @@ const utilities = __importStar(require("./utilities"));
84
84
  * });
85
85
  * // Optional, refresh nodes info after disk resize by adding dependency
86
86
  * // to cloudamqp_extra_disk_size.resize_disk resource
87
- * const nodes = instance.id.apply(id => cloudamqp.getNodesOutput({
88
- * instanceId: Number(id),
89
- * }));
87
+ * const nodes = cloudamqp.getNodesOutput({
88
+ * instanceId: instance.id.apply(x =>Number(x)),
89
+ * });
90
90
  * ```
91
91
  *
92
92
  * </details>
@@ -115,9 +115,9 @@ const utilities = __importStar(require("./utilities"));
115
115
  * });
116
116
  * // Optional, refresh nodes info after disk resize by adding dependency
117
117
  * // to cloudamqp_extra_disk_size.resize_disk resource
118
- * const nodes = instance.id.apply(id => cloudamqp.getNodesOutput({
119
- * instanceId: Number(id),
120
- * }));
118
+ * const nodes = cloudamqp.getNodesOutput({
119
+ * instanceId: instance.id.apply(x =>Number(x)),
120
+ * });
121
121
  * ```
122
122
  *
123
123
  * </details>
@@ -146,9 +146,9 @@ const utilities = __importStar(require("./utilities"));
146
146
  * });
147
147
  * // Optional, refresh nodes info after disk resize by adding dependency
148
148
  * // to cloudamqp_extra_disk_size.resize_disk resource
149
- * const nodes = instance.id.apply(id => cloudamqp.getNodesOutput({
150
- * instanceId: Number(id),
151
- * }));
149
+ * const nodes = cloudamqp.getNodesOutput({
150
+ * instanceId: instance.id.apply(x =>Number(x)),
151
+ * });
152
152
  * ```
153
153
  *
154
154
  * </details>
@@ -177,9 +177,9 @@ const utilities = __importStar(require("./utilities"));
177
177
  * });
178
178
  * // Optional, refresh nodes info after disk resize by adding dependency
179
179
  * // to cloudamqp_extra_disk_size.resize_disk resource
180
- * const nodes = instance.id.apply(id => cloudamqp.getNodesOutput({
181
- * instanceId: Number(id),
182
- * }));
180
+ * const nodes = cloudamqp.getNodesOutput({
181
+ * instanceId: instance.id.apply(x =>Number(x)),
182
+ * });
183
183
  * ```
184
184
  *
185
185
  * </details>
@@ -34,9 +34,9 @@ import * as pulumi from "@pulumi/pulumi";
34
34
  * // Access credentials directly from the resource
35
35
  * const instance = new cloudamqp.Instance("instance", {});
36
36
  * // Old (deprecated)
37
- * const credentials = instance.id.apply(id => cloudamqp.getCredentialsOutput({
38
- * instanceId: Number(id),
39
- * }));
37
+ * const credentials = cloudamqp.getCredentialsOutput({
38
+ * instanceId: instance.id.apply(x =>Number(x)),
39
+ * });
40
40
  * ```
41
41
  */
42
42
  export declare function getCredentials(args: GetCredentialsArgs, opts?: pulumi.InvokeOptions): Promise<GetCredentialsResult>;
@@ -102,9 +102,9 @@ export interface GetCredentialsResult {
102
102
  * // Access credentials directly from the resource
103
103
  * const instance = new cloudamqp.Instance("instance", {});
104
104
  * // Old (deprecated)
105
- * const credentials = instance.id.apply(id => cloudamqp.getCredentialsOutput({
106
- * instanceId: Number(id),
107
- * }));
105
+ * const credentials = cloudamqp.getCredentialsOutput({
106
+ * instanceId: instance.id.apply(x =>Number(x)),
107
+ * });
108
108
  * ```
109
109
  */
110
110
  export declare function getCredentialsOutput(args: GetCredentialsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCredentialsResult>;
package/getCredentials.js CHANGED
@@ -63,9 +63,9 @@ const utilities = __importStar(require("./utilities"));
63
63
  * // Access credentials directly from the resource
64
64
  * const instance = new cloudamqp.Instance("instance", {});
65
65
  * // Old (deprecated)
66
- * const credentials = instance.id.apply(id => cloudamqp.getCredentialsOutput({
67
- * instanceId: Number(id),
68
- * }));
66
+ * const credentials = cloudamqp.getCredentialsOutput({
67
+ * instanceId: instance.id.apply(x =>Number(x)),
68
+ * });
69
69
  * ```
70
70
  */
71
71
  function getCredentials(args, opts) {
@@ -110,9 +110,9 @@ exports.getCredentials = getCredentials;
110
110
  * // Access credentials directly from the resource
111
111
  * const instance = new cloudamqp.Instance("instance", {});
112
112
  * // Old (deprecated)
113
- * const credentials = instance.id.apply(id => cloudamqp.getCredentialsOutput({
114
- * instanceId: Number(id),
115
- * }));
113
+ * const credentials = cloudamqp.getCredentialsOutput({
114
+ * instanceId: instance.id.apply(x =>Number(x)),
115
+ * });
116
116
  * ```
117
117
  */
118
118
  function getCredentialsOutput(args, opts) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/cloudamqp",
3
- "version": "3.30.0-alpha.1779432002",
3
+ "version": "3.30.0",
4
4
  "description": "A Pulumi package for creating and managing CloudAMQP resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -23,6 +23,6 @@
23
23
  "pulumi": {
24
24
  "resource": true,
25
25
  "name": "cloudamqp",
26
- "version": "3.30.0-alpha.1779432002"
26
+ "version": "3.30.0"
27
27
  }
28
28
  }
@@ -67,9 +67,9 @@ import * as pulumi from "@pulumi/pulumi";
67
67
  * plan: "bunny-1",
68
68
  * region: "amazon-web-services::us-west-1",
69
69
  * });
70
- * const upgradableVersions = instance.id.apply(id => cloudamqp.getUpgradableVersionsOutput({
71
- * instanceId: Number(id),
72
- * }));
70
+ * const upgradableVersions = cloudamqp.getUpgradableVersionsOutput({
71
+ * instanceId: instance.id.apply(x =>Number(x)),
72
+ * });
73
73
  * const upgrade = new cloudamqp.UpgradeRabbitmq("upgrade", {
74
74
  * instanceId: instance.id.apply(x =>Number(x)),
75
75
  * currentVersion: instance.rmqVersion,
@@ -96,9 +96,9 @@ const utilities = __importStar(require("./utilities"));
96
96
  * plan: "bunny-1",
97
97
  * region: "amazon-web-services::us-west-1",
98
98
  * });
99
- * const upgradableVersions = instance.id.apply(id => cloudamqp.getUpgradableVersionsOutput({
100
- * instanceId: Number(id),
101
- * }));
99
+ * const upgradableVersions = cloudamqp.getUpgradableVersionsOutput({
100
+ * instanceId: instance.id.apply(x =>Number(x)),
101
+ * });
102
102
  * const upgrade = new cloudamqp.UpgradeRabbitmq("upgrade", {
103
103
  * instanceId: instance.id.apply(x =>Number(x)),
104
104
  * currentVersion: instance.rmqVersion,
@@ -37,9 +37,9 @@ import * as pulumi from "@pulumi/pulumi";
37
37
  * vpcSubnet: "10.40.72.0/24",
38
38
  * });
39
39
  * // VPC information
40
- * const vpcInfo = instance.id.apply(id => cloudamqp.getVpcGcpInfoOutput({
41
- * instanceId: Number(id),
42
- * }));
40
+ * const vpcInfo = cloudamqp.getVpcGcpInfoOutput({
41
+ * instanceId: instance.id.apply(x =>Number(x)),
42
+ * });
43
43
  * // VPC peering configuration
44
44
  * const vpcPeeringRequest = new cloudamqp.VpcGcpPeering("vpc_peering_request", {
45
45
  * instanceId: instance.id.apply(x =>Number(x)),
package/vpcGcpPeering.js CHANGED
@@ -66,9 +66,9 @@ const utilities = __importStar(require("./utilities"));
66
66
  * vpcSubnet: "10.40.72.0/24",
67
67
  * });
68
68
  * // VPC information
69
- * const vpcInfo = instance.id.apply(id => cloudamqp.getVpcGcpInfoOutput({
70
- * instanceId: Number(id),
71
- * }));
69
+ * const vpcInfo = cloudamqp.getVpcGcpInfoOutput({
70
+ * instanceId: instance.id.apply(x =>Number(x)),
71
+ * });
72
72
  * // VPC peering configuration
73
73
  * const vpcPeeringRequest = new cloudamqp.VpcGcpPeering("vpc_peering_request", {
74
74
  * instanceId: instance.id.apply(x =>Number(x)),
package/vpcPeering.d.ts CHANGED
@@ -40,9 +40,9 @@ import * as pulumi from "@pulumi/pulumi";
40
40
  * vpcSubnet: "10.40.72.0/24",
41
41
  * });
42
42
  * // CloudAMQP - Extract vpc information
43
- * const vpcInfo = instance.id.apply(id => cloudamqp.getVpcInfoOutput({
44
- * instanceId: Number(id),
45
- * }));
43
+ * const vpcInfo = cloudamqp.getVpcInfoOutput({
44
+ * instanceId: instance.id.apply(x =>Number(x)),
45
+ * });
46
46
  * // AWS - retrieve instance to get subnet identifier
47
47
  * const awsInstance = aws.Instance({
48
48
  * instanceTags: {
package/vpcPeering.js CHANGED
@@ -69,9 +69,9 @@ const utilities = __importStar(require("./utilities"));
69
69
  * vpcSubnet: "10.40.72.0/24",
70
70
  * });
71
71
  * // CloudAMQP - Extract vpc information
72
- * const vpcInfo = instance.id.apply(id => cloudamqp.getVpcInfoOutput({
73
- * instanceId: Number(id),
74
- * }));
72
+ * const vpcInfo = cloudamqp.getVpcInfoOutput({
73
+ * instanceId: instance.id.apply(x =>Number(x)),
74
+ * });
75
75
  * // AWS - retrieve instance to get subnet identifier
76
76
  * const awsInstance = aws.Instance({
77
77
  * instanceTags: {