@pulumi/dbtcloud 1.7.0 → 1.8.0-alpha.1775837411
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.
|
@@ -25,7 +25,7 @@ import * as outputs from "./types/output";
|
|
|
25
25
|
* const snowflakeEndpoints = .filter(endpoint => endpoint.type == "snowflake").map(endpoint => (endpoint));
|
|
26
26
|
* // Create connections for all Snowflake endpoints
|
|
27
27
|
* const snowflakeConnections: dbtcloud.GlobalConnection[] = [];
|
|
28
|
-
* for (const range of Object.entries(.reduce((__obj, ep) => ({ ...__obj, [ep.id]: ep }))).map(([k, v]) => ({key: k, value: v}))) {
|
|
28
|
+
* for (const range of Object.entries(.reduce((__obj, ep) => ({ ...__obj, [ep.id]: ep }), {})).map(([k, v]) => ({key: k, value: v}))) {
|
|
29
29
|
* snowflakeConnections.push(new dbtcloud.GlobalConnection(`snowflake_connections-${range.key}`, {
|
|
30
30
|
* name: `Connection for ${range.value.name}`,
|
|
31
31
|
* privateLinkEndpointId: range.value.id,
|
|
@@ -78,7 +78,7 @@ export interface GetPrivatelinkEndpointsResult {
|
|
|
78
78
|
* const snowflakeEndpoints = .filter(endpoint => endpoint.type == "snowflake").map(endpoint => (endpoint));
|
|
79
79
|
* // Create connections for all Snowflake endpoints
|
|
80
80
|
* const snowflakeConnections: dbtcloud.GlobalConnection[] = [];
|
|
81
|
-
* for (const range of Object.entries(.reduce((__obj, ep) => ({ ...__obj, [ep.id]: ep }))).map(([k, v]) => ({key: k, value: v}))) {
|
|
81
|
+
* for (const range of Object.entries(.reduce((__obj, ep) => ({ ...__obj, [ep.id]: ep }), {})).map(([k, v]) => ({key: k, value: v}))) {
|
|
82
82
|
* snowflakeConnections.push(new dbtcloud.GlobalConnection(`snowflake_connections-${range.key}`, {
|
|
83
83
|
* name: `Connection for ${range.value.name}`,
|
|
84
84
|
* privateLinkEndpointId: range.value.id,
|
|
@@ -30,7 +30,7 @@ const utilities = require("./utilities");
|
|
|
30
30
|
* const snowflakeEndpoints = .filter(endpoint => endpoint.type == "snowflake").map(endpoint => (endpoint));
|
|
31
31
|
* // Create connections for all Snowflake endpoints
|
|
32
32
|
* const snowflakeConnections: dbtcloud.GlobalConnection[] = [];
|
|
33
|
-
* for (const range of Object.entries(.reduce((__obj, ep) => ({ ...__obj, [ep.id]: ep }))).map(([k, v]) => ({key: k, value: v}))) {
|
|
33
|
+
* for (const range of Object.entries(.reduce((__obj, ep) => ({ ...__obj, [ep.id]: ep }), {})).map(([k, v]) => ({key: k, value: v}))) {
|
|
34
34
|
* snowflakeConnections.push(new dbtcloud.GlobalConnection(`snowflake_connections-${range.key}`, {
|
|
35
35
|
* name: `Connection for ${range.value.name}`,
|
|
36
36
|
* privateLinkEndpointId: range.value.id,
|
|
@@ -74,7 +74,7 @@ exports.getPrivatelinkEndpoints = getPrivatelinkEndpoints;
|
|
|
74
74
|
* const snowflakeEndpoints = .filter(endpoint => endpoint.type == "snowflake").map(endpoint => (endpoint));
|
|
75
75
|
* // Create connections for all Snowflake endpoints
|
|
76
76
|
* const snowflakeConnections: dbtcloud.GlobalConnection[] = [];
|
|
77
|
-
* for (const range of Object.entries(.reduce((__obj, ep) => ({ ...__obj, [ep.id]: ep }))).map(([k, v]) => ({key: k, value: v}))) {
|
|
77
|
+
* for (const range of Object.entries(.reduce((__obj, ep) => ({ ...__obj, [ep.id]: ep }), {})).map(([k, v]) => ({key: k, value: v}))) {
|
|
78
78
|
* snowflakeConnections.push(new dbtcloud.GlobalConnection(`snowflake_connections-${range.key}`, {
|
|
79
79
|
* name: `Connection for ${range.value.name}`,
|
|
80
80
|
* privateLinkEndpointId: range.value.id,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/dbtcloud",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.0-alpha.1775837411",
|
|
4
4
|
"description": "A Pulumi package for creating and managing dbt Cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"pulumi": {
|
|
27
27
|
"resource": true,
|
|
28
28
|
"name": "dbtcloud",
|
|
29
|
-
"version": "1.
|
|
29
|
+
"version": "1.8.0-alpha.1775837411",
|
|
30
30
|
"server": "github://api.github.com/pulumi/pulumi-dbtcloud"
|
|
31
31
|
}
|
|
32
32
|
}
|