@pulumiverse/vercel 3.0.0-alpha.1770817564 → 3.0.0-alpha.1770821530

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.
@@ -27,19 +27,19 @@ import * as pulumi from "@pulumi/pulumi";
27
27
  * //
28
28
  * // External DNS provider example
29
29
  * //
30
- * const exampleComA = new aws.index.Route53Record("example_com_a", {
30
+ * const exampleComA = new aws.route53.Record("example_com_a", {
31
31
  * zoneId: "...zone_id_from_somewhere...",
32
- * name: exampleCom.domain,
33
- * type: "A",
32
+ * name: exampleCom.apply(exampleCom => exampleCom.domain),
33
+ * type: aws.route53.RecordType.A,
34
34
  * ttl: 300,
35
- * records: exampleCom.recommendedIpv4s,
35
+ * records: exampleCom.apply(exampleCom => exampleCom.recommendedIpv4s),
36
36
  * });
37
- * const wwwExampleComCname = new aws.index.Route53Record("www_example_com_cname", {
37
+ * const wwwExampleComCname = new aws.route53.Record("www_example_com_cname", {
38
38
  * zoneId: "...zone_id_from_somewhere...",
39
- * name: wwwExampleCom.domain,
40
- * type: "CNAME",
39
+ * name: wwwExampleCom.apply(wwwExampleCom => wwwExampleCom.domain),
40
+ * type: aws.route53.RecordType.CNAME,
41
41
  * ttl: 300,
42
- * records: [wwwExampleCom.recommendedCname],
42
+ * records: [wwwExampleCom.apply(wwwExampleCom => wwwExampleCom.recommendedCname)],
43
43
  * });
44
44
  * ```
45
45
  */
@@ -118,19 +118,19 @@ export interface GetDomainConfigResult {
118
118
  * //
119
119
  * // External DNS provider example
120
120
  * //
121
- * const exampleComA = new aws.index.Route53Record("example_com_a", {
121
+ * const exampleComA = new aws.route53.Record("example_com_a", {
122
122
  * zoneId: "...zone_id_from_somewhere...",
123
- * name: exampleCom.domain,
124
- * type: "A",
123
+ * name: exampleCom.apply(exampleCom => exampleCom.domain),
124
+ * type: aws.route53.RecordType.A,
125
125
  * ttl: 300,
126
- * records: exampleCom.recommendedIpv4s,
126
+ * records: exampleCom.apply(exampleCom => exampleCom.recommendedIpv4s),
127
127
  * });
128
- * const wwwExampleComCname = new aws.index.Route53Record("www_example_com_cname", {
128
+ * const wwwExampleComCname = new aws.route53.Record("www_example_com_cname", {
129
129
  * zoneId: "...zone_id_from_somewhere...",
130
- * name: wwwExampleCom.domain,
131
- * type: "CNAME",
130
+ * name: wwwExampleCom.apply(wwwExampleCom => wwwExampleCom.domain),
131
+ * type: aws.route53.RecordType.CNAME,
132
132
  * ttl: 300,
133
- * records: [wwwExampleCom.recommendedCname],
133
+ * records: [wwwExampleCom.apply(wwwExampleCom => wwwExampleCom.recommendedCname)],
134
134
  * });
135
135
  * ```
136
136
  */
@@ -33,19 +33,19 @@ const utilities = require("./utilities");
33
33
  * //
34
34
  * // External DNS provider example
35
35
  * //
36
- * const exampleComA = new aws.index.Route53Record("example_com_a", {
36
+ * const exampleComA = new aws.route53.Record("example_com_a", {
37
37
  * zoneId: "...zone_id_from_somewhere...",
38
- * name: exampleCom.domain,
39
- * type: "A",
38
+ * name: exampleCom.apply(exampleCom => exampleCom.domain),
39
+ * type: aws.route53.RecordType.A,
40
40
  * ttl: 300,
41
- * records: exampleCom.recommendedIpv4s,
41
+ * records: exampleCom.apply(exampleCom => exampleCom.recommendedIpv4s),
42
42
  * });
43
- * const wwwExampleComCname = new aws.index.Route53Record("www_example_com_cname", {
43
+ * const wwwExampleComCname = new aws.route53.Record("www_example_com_cname", {
44
44
  * zoneId: "...zone_id_from_somewhere...",
45
- * name: wwwExampleCom.domain,
46
- * type: "CNAME",
45
+ * name: wwwExampleCom.apply(wwwExampleCom => wwwExampleCom.domain),
46
+ * type: aws.route53.RecordType.CNAME,
47
47
  * ttl: 300,
48
- * records: [wwwExampleCom.recommendedCname],
48
+ * records: [wwwExampleCom.apply(wwwExampleCom => wwwExampleCom.recommendedCname)],
49
49
  * });
50
50
  * ```
51
51
  */
@@ -86,19 +86,19 @@ exports.getDomainConfig = getDomainConfig;
86
86
  * //
87
87
  * // External DNS provider example
88
88
  * //
89
- * const exampleComA = new aws.index.Route53Record("example_com_a", {
89
+ * const exampleComA = new aws.route53.Record("example_com_a", {
90
90
  * zoneId: "...zone_id_from_somewhere...",
91
- * name: exampleCom.domain,
92
- * type: "A",
91
+ * name: exampleCom.apply(exampleCom => exampleCom.domain),
92
+ * type: aws.route53.RecordType.A,
93
93
  * ttl: 300,
94
- * records: exampleCom.recommendedIpv4s,
94
+ * records: exampleCom.apply(exampleCom => exampleCom.recommendedIpv4s),
95
95
  * });
96
- * const wwwExampleComCname = new aws.index.Route53Record("www_example_com_cname", {
96
+ * const wwwExampleComCname = new aws.route53.Record("www_example_com_cname", {
97
97
  * zoneId: "...zone_id_from_somewhere...",
98
- * name: wwwExampleCom.domain,
99
- * type: "CNAME",
98
+ * name: wwwExampleCom.apply(wwwExampleCom => wwwExampleCom.domain),
99
+ * type: aws.route53.RecordType.CNAME,
100
100
  * ttl: 300,
101
- * records: [wwwExampleCom.recommendedCname],
101
+ * records: [wwwExampleCom.apply(wwwExampleCom => wwwExampleCom.recommendedCname)],
102
102
  * });
103
103
  * ```
104
104
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumiverse/vercel",
3
- "version": "3.0.0-alpha.1770817564",
3
+ "version": "3.0.0-alpha.1770821530",
4
4
  "keywords": [
5
5
  "pulumi",
6
6
  "vercel",
@@ -22,7 +22,7 @@
22
22
  "pulumi": {
23
23
  "resource": true,
24
24
  "name": "vercel",
25
- "version": "3.0.0-alpha.1770817564",
25
+ "version": "3.0.0-alpha.1770821530",
26
26
  "server": "github://api.github.com/pulumiverse"
27
27
  }
28
28
  }