@ryan-pip/pulumi-fivetran 1.9.40 → 1.9.42
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/connection.d.ts +10 -10
- package/connection.js +10 -10
- package/connectionConfig.d.ts +10 -10
- package/connectionConfig.js +10 -10
- package/connectionV2.d.ts +2 -2
- package/connectionV2.d.ts.map +1 -1
- package/connectionV2.js +3 -0
- package/connectionV2.js.map +1 -1
- package/connector.d.ts +5 -5
- package/connector.js +5 -5
- package/connectorFingerprints.d.ts +1 -1
- package/connectorFingerprints.js +1 -1
- package/destination.d.ts +8 -8
- package/destination.js +8 -8
- package/destinationCertificates.d.ts +1 -1
- package/destinationCertificates.js +1 -1
- package/destinationFingerprints.d.ts +1 -1
- package/destinationFingerprints.js +1 -1
- package/externalLogging.d.ts +4 -4
- package/externalLogging.js +4 -4
- package/groupUsers.d.ts +1 -1
- package/groupUsers.js +1 -1
- package/package.json +2 -2
- package/privateLink.d.ts +3 -3
- package/privateLink.js +3 -3
- package/teamConnectorMembership.d.ts +1 -1
- package/teamConnectorMembership.js +1 -1
- package/teamGroupMembership.d.ts +1 -1
- package/teamGroupMembership.js +1 -1
- package/teamUserMembership.d.ts +1 -1
- package/teamUserMembership.js +1 -1
- package/transformation.d.ts +4 -4
- package/transformation.js +4 -4
- package/transformationProject.d.ts +6 -6
- package/transformationProject.js +6 -6
- package/types/input.d.ts +8 -0
- package/types/input.d.ts.map +1 -1
- package/types/output.d.ts +8 -0
- package/types/output.d.ts.map +1 -1
- package/userConnectorMembership.d.ts +1 -1
- package/userConnectorMembership.js +1 -1
- package/userGroupMembership.d.ts +1 -1
- package/userGroupMembership.js +1 -1
package/connection.d.ts
CHANGED
|
@@ -16,11 +16,11 @@ import * as outputs from "./types/output";
|
|
|
16
16
|
*
|
|
17
17
|
* const example = new fivetran.Group("example", {name: "My Destination"});
|
|
18
18
|
* const postgres = new fivetran.Connection("postgres", {
|
|
19
|
-
* groupId: example.id,
|
|
20
|
-
* service: "postgres",
|
|
21
19
|
* destinationSchema: {
|
|
22
20
|
* prefix: "my_postgres",
|
|
23
21
|
* },
|
|
22
|
+
* groupId: example.id,
|
|
23
|
+
* service: "postgres",
|
|
24
24
|
* config: JSON.stringify({
|
|
25
25
|
* update_method: "XMIN",
|
|
26
26
|
* }),
|
|
@@ -37,11 +37,11 @@ import * as outputs from "./types/output";
|
|
|
37
37
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
38
38
|
*
|
|
39
39
|
* const postgresFull = new fivetran.Connection("postgres_full", {
|
|
40
|
-
* groupId: example.id,
|
|
41
|
-
* service: "postgres",
|
|
42
40
|
* destinationSchema: {
|
|
43
41
|
* prefix: "my_postgres",
|
|
44
42
|
* },
|
|
43
|
+
* groupId: example.id,
|
|
44
|
+
* service: "postgres",
|
|
45
45
|
* config: JSON.stringify({
|
|
46
46
|
* update_method: "XMIN",
|
|
47
47
|
* host: databaseConfig.host,
|
|
@@ -64,11 +64,11 @@ import * as outputs from "./types/output";
|
|
|
64
64
|
* groupRegion: "GCP_US_EAST4",
|
|
65
65
|
* });
|
|
66
66
|
* const mysql = new fivetran.Connection("mysql", {
|
|
67
|
-
* groupId: exampleFivetranGroup.id,
|
|
68
|
-
* service: "mysql",
|
|
69
67
|
* destinationSchema: {
|
|
70
68
|
* prefix: "my_mysql",
|
|
71
69
|
* },
|
|
70
|
+
* groupId: exampleFivetranGroup.id,
|
|
71
|
+
* service: "mysql",
|
|
72
72
|
* networkingMethod: "ProxyAgent",
|
|
73
73
|
* proxyAgentId: example.id,
|
|
74
74
|
* runSetupTests: false,
|
|
@@ -82,11 +82,11 @@ import * as outputs from "./types/output";
|
|
|
82
82
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
83
83
|
*
|
|
84
84
|
* const s3 = new fivetran.Connection("s3", {
|
|
85
|
-
* groupId: example.id,
|
|
86
|
-
* service: "s3",
|
|
87
85
|
* destinationSchema: {
|
|
88
86
|
* name: "s3_data_schema",
|
|
89
87
|
* },
|
|
88
|
+
* groupId: example.id,
|
|
89
|
+
* service: "s3",
|
|
90
90
|
* runSetupTests: false,
|
|
91
91
|
* });
|
|
92
92
|
* ```
|
|
@@ -98,11 +98,11 @@ import * as outputs from "./types/output";
|
|
|
98
98
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
99
99
|
*
|
|
100
100
|
* const snowflakeConnection = new fivetran.Connection("snowflake_connection", {
|
|
101
|
-
* groupId: example.id,
|
|
102
|
-
* service: "snowflake",
|
|
103
101
|
* destinationSchema: {
|
|
104
102
|
* prefix: "snowflake_data",
|
|
105
103
|
* },
|
|
104
|
+
* groupId: example.id,
|
|
105
|
+
* service: "snowflake",
|
|
106
106
|
* dataDelaySensitivity: "HIGH",
|
|
107
107
|
* dataDelayThreshold: 30,
|
|
108
108
|
* runSetupTests: false,
|
package/connection.js
CHANGED
|
@@ -43,11 +43,11 @@ const utilities = __importStar(require("./utilities"));
|
|
|
43
43
|
*
|
|
44
44
|
* const example = new fivetran.Group("example", {name: "My Destination"});
|
|
45
45
|
* const postgres = new fivetran.Connection("postgres", {
|
|
46
|
-
* groupId: example.id,
|
|
47
|
-
* service: "postgres",
|
|
48
46
|
* destinationSchema: {
|
|
49
47
|
* prefix: "my_postgres",
|
|
50
48
|
* },
|
|
49
|
+
* groupId: example.id,
|
|
50
|
+
* service: "postgres",
|
|
51
51
|
* config: JSON.stringify({
|
|
52
52
|
* update_method: "XMIN",
|
|
53
53
|
* }),
|
|
@@ -64,11 +64,11 @@ const utilities = __importStar(require("./utilities"));
|
|
|
64
64
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
65
65
|
*
|
|
66
66
|
* const postgresFull = new fivetran.Connection("postgres_full", {
|
|
67
|
-
* groupId: example.id,
|
|
68
|
-
* service: "postgres",
|
|
69
67
|
* destinationSchema: {
|
|
70
68
|
* prefix: "my_postgres",
|
|
71
69
|
* },
|
|
70
|
+
* groupId: example.id,
|
|
71
|
+
* service: "postgres",
|
|
72
72
|
* config: JSON.stringify({
|
|
73
73
|
* update_method: "XMIN",
|
|
74
74
|
* host: databaseConfig.host,
|
|
@@ -91,11 +91,11 @@ const utilities = __importStar(require("./utilities"));
|
|
|
91
91
|
* groupRegion: "GCP_US_EAST4",
|
|
92
92
|
* });
|
|
93
93
|
* const mysql = new fivetran.Connection("mysql", {
|
|
94
|
-
* groupId: exampleFivetranGroup.id,
|
|
95
|
-
* service: "mysql",
|
|
96
94
|
* destinationSchema: {
|
|
97
95
|
* prefix: "my_mysql",
|
|
98
96
|
* },
|
|
97
|
+
* groupId: exampleFivetranGroup.id,
|
|
98
|
+
* service: "mysql",
|
|
99
99
|
* networkingMethod: "ProxyAgent",
|
|
100
100
|
* proxyAgentId: example.id,
|
|
101
101
|
* runSetupTests: false,
|
|
@@ -109,11 +109,11 @@ const utilities = __importStar(require("./utilities"));
|
|
|
109
109
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
110
110
|
*
|
|
111
111
|
* const s3 = new fivetran.Connection("s3", {
|
|
112
|
-
* groupId: example.id,
|
|
113
|
-
* service: "s3",
|
|
114
112
|
* destinationSchema: {
|
|
115
113
|
* name: "s3_data_schema",
|
|
116
114
|
* },
|
|
115
|
+
* groupId: example.id,
|
|
116
|
+
* service: "s3",
|
|
117
117
|
* runSetupTests: false,
|
|
118
118
|
* });
|
|
119
119
|
* ```
|
|
@@ -125,11 +125,11 @@ const utilities = __importStar(require("./utilities"));
|
|
|
125
125
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
126
126
|
*
|
|
127
127
|
* const snowflakeConnection = new fivetran.Connection("snowflake_connection", {
|
|
128
|
-
* groupId: example.id,
|
|
129
|
-
* service: "snowflake",
|
|
130
128
|
* destinationSchema: {
|
|
131
129
|
* prefix: "snowflake_data",
|
|
132
130
|
* },
|
|
131
|
+
* groupId: example.id,
|
|
132
|
+
* service: "snowflake",
|
|
133
133
|
* dataDelaySensitivity: "HIGH",
|
|
134
134
|
* dataDelayThreshold: 30,
|
|
135
135
|
* runSetupTests: false,
|
package/connectionConfig.d.ts
CHANGED
|
@@ -13,11 +13,11 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
13
13
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
14
14
|
*
|
|
15
15
|
* const postgres = new fivetran.Connection("postgres", {
|
|
16
|
-
* groupId: example.id,
|
|
17
|
-
* service: "postgres",
|
|
18
16
|
* destinationSchema: {
|
|
19
17
|
* prefix: "my_postgres",
|
|
20
18
|
* },
|
|
19
|
+
* groupId: example.id,
|
|
20
|
+
* service: "postgres",
|
|
21
21
|
* runSetupTests: false,
|
|
22
22
|
* });
|
|
23
23
|
* const postgresConnectionConfig = new fivetran.ConnectionConfig("postgres", {
|
|
@@ -45,11 +45,11 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
45
45
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
46
46
|
*
|
|
47
47
|
* const mysql = new fivetran.Connection("mysql", {
|
|
48
|
-
* groupId: example.id,
|
|
49
|
-
* service: "mysql",
|
|
50
48
|
* destinationSchema: {
|
|
51
49
|
* prefix: "my_mysql",
|
|
52
50
|
* },
|
|
51
|
+
* groupId: example.id,
|
|
52
|
+
* service: "mysql",
|
|
53
53
|
* });
|
|
54
54
|
* const mysqlConnectionConfig = new fivetran.ConnectionConfig("mysql", {
|
|
55
55
|
* connectionId: mysql.id,
|
|
@@ -72,11 +72,11 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
72
72
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
73
73
|
*
|
|
74
74
|
* const s3 = new fivetran.Connection("s3", {
|
|
75
|
-
* groupId: example.id,
|
|
76
|
-
* service: "s3",
|
|
77
75
|
* destinationSchema: {
|
|
78
76
|
* name: "s3_data",
|
|
79
77
|
* },
|
|
78
|
+
* groupId: example.id,
|
|
79
|
+
* service: "s3",
|
|
80
80
|
* });
|
|
81
81
|
* const s3ConnectionConfig = new fivetran.ConnectionConfig("s3", {
|
|
82
82
|
* connectionId: s3.id,
|
|
@@ -94,12 +94,12 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
94
94
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
95
95
|
*
|
|
96
96
|
* const postgresSecure = new fivetran.ConnectionConfig("postgres_secure", {
|
|
97
|
-
* connectionId:
|
|
97
|
+
* connectionId: postgres.id,
|
|
98
98
|
* config: JSON.stringify({
|
|
99
99
|
* update_method: "XMIN",
|
|
100
|
-
* host:
|
|
101
|
-
* port:
|
|
102
|
-
* database:
|
|
100
|
+
* host: postgresAwsDbInstance.address,
|
|
101
|
+
* port: postgresAwsDbInstance.port,
|
|
102
|
+
* database: postgresAwsDbInstance.dbName,
|
|
103
103
|
* }),
|
|
104
104
|
* auth: JSON.stringify({
|
|
105
105
|
* user: dbCreds.secretString.username,
|
package/connectionConfig.js
CHANGED
|
@@ -42,11 +42,11 @@ const utilities = __importStar(require("./utilities"));
|
|
|
42
42
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
43
43
|
*
|
|
44
44
|
* const postgres = new fivetran.Connection("postgres", {
|
|
45
|
-
* groupId: example.id,
|
|
46
|
-
* service: "postgres",
|
|
47
45
|
* destinationSchema: {
|
|
48
46
|
* prefix: "my_postgres",
|
|
49
47
|
* },
|
|
48
|
+
* groupId: example.id,
|
|
49
|
+
* service: "postgres",
|
|
50
50
|
* runSetupTests: false,
|
|
51
51
|
* });
|
|
52
52
|
* const postgresConnectionConfig = new fivetran.ConnectionConfig("postgres", {
|
|
@@ -74,11 +74,11 @@ const utilities = __importStar(require("./utilities"));
|
|
|
74
74
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
75
75
|
*
|
|
76
76
|
* const mysql = new fivetran.Connection("mysql", {
|
|
77
|
-
* groupId: example.id,
|
|
78
|
-
* service: "mysql",
|
|
79
77
|
* destinationSchema: {
|
|
80
78
|
* prefix: "my_mysql",
|
|
81
79
|
* },
|
|
80
|
+
* groupId: example.id,
|
|
81
|
+
* service: "mysql",
|
|
82
82
|
* });
|
|
83
83
|
* const mysqlConnectionConfig = new fivetran.ConnectionConfig("mysql", {
|
|
84
84
|
* connectionId: mysql.id,
|
|
@@ -101,11 +101,11 @@ const utilities = __importStar(require("./utilities"));
|
|
|
101
101
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
102
102
|
*
|
|
103
103
|
* const s3 = new fivetran.Connection("s3", {
|
|
104
|
-
* groupId: example.id,
|
|
105
|
-
* service: "s3",
|
|
106
104
|
* destinationSchema: {
|
|
107
105
|
* name: "s3_data",
|
|
108
106
|
* },
|
|
107
|
+
* groupId: example.id,
|
|
108
|
+
* service: "s3",
|
|
109
109
|
* });
|
|
110
110
|
* const s3ConnectionConfig = new fivetran.ConnectionConfig("s3", {
|
|
111
111
|
* connectionId: s3.id,
|
|
@@ -123,12 +123,12 @@ const utilities = __importStar(require("./utilities"));
|
|
|
123
123
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
124
124
|
*
|
|
125
125
|
* const postgresSecure = new fivetran.ConnectionConfig("postgres_secure", {
|
|
126
|
-
* connectionId:
|
|
126
|
+
* connectionId: postgres.id,
|
|
127
127
|
* config: JSON.stringify({
|
|
128
128
|
* update_method: "XMIN",
|
|
129
|
-
* host:
|
|
130
|
-
* port:
|
|
131
|
-
* database:
|
|
129
|
+
* host: postgresAwsDbInstance.address,
|
|
130
|
+
* port: postgresAwsDbInstance.port,
|
|
131
|
+
* database: postgresAwsDbInstance.dbName,
|
|
132
132
|
* }),
|
|
133
133
|
* auth: JSON.stringify({
|
|
134
134
|
* user: dbCreds.secretString.username,
|
package/connectionV2.d.ts
CHANGED
|
@@ -83,7 +83,7 @@ export declare class ConnectionV2 extends pulumi.CustomResource {
|
|
|
83
83
|
/**
|
|
84
84
|
* Defines how schema names appear in the destination. Supported values: `FIVETRAN_NAMING`, `SOURCE_NAMING`. Changing this forces the connection to be replaced.
|
|
85
85
|
*/
|
|
86
|
-
readonly destinationSchemaNames: pulumi.Output<string
|
|
86
|
+
readonly destinationSchemaNames: pulumi.Output<string>;
|
|
87
87
|
/**
|
|
88
88
|
* The timestamp of the time the connection sync failed last time.
|
|
89
89
|
*/
|
|
@@ -309,7 +309,7 @@ export interface ConnectionV2Args {
|
|
|
309
309
|
/**
|
|
310
310
|
* Defines how schema names appear in the destination. Supported values: `FIVETRAN_NAMING`, `SOURCE_NAMING`. Changing this forces the connection to be replaced.
|
|
311
311
|
*/
|
|
312
|
-
destinationSchemaNames
|
|
312
|
+
destinationSchemaNames: pulumi.Input<string>;
|
|
313
313
|
/**
|
|
314
314
|
* The unique identifier for the Group (Destination) within the Fivetran system. Changing this forces the connection to be replaced.
|
|
315
315
|
*/
|
package/connectionV2.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"connectionV2.d.ts","sourceRoot":"","sources":["../connectionV2.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,qBAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,iBAAiB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,YAAY;IAO1I;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,YAAY;IAOvD;;OAEG;IACH,SAAwB,IAAI,EAAE,MAAM,CAAC,MAAM,CAAC,GAAG,GAAG,SAAS,CAAC,CAAC;IAC7D;;OAEG;IACH,SAAwB,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,GAAG,CAAC,CAAC;IACnD;;OAEG;IACH,SAAwB,iBAAiB,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,6BAA6B,GAAG,SAAS,CAAC,CAAC;IAC5G;;OAEG;IACH,SAAgC,WAAW,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACnE;;OAEG;IACH,SAAgC,SAAS,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACjE;;OAEG;IACH,SAAwB,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC7D;;OAEG;IACH,SAAwB,oBAAoB,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACpE;;OAEG;IACH,SAAwB,kBAAkB,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAClE;;OAEG;IACH,SAAwB,wBAAwB,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,oCAAoC,CAAC,CAAC;IAC9G;;OAEG;IACH,SAAwB,sBAAsB,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,
|
|
1
|
+
{"version":3,"file":"connectionV2.d.ts","sourceRoot":"","sources":["../connectionV2.ts"],"names":[],"mappings":"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"}
|
package/connectionV2.js
CHANGED
|
@@ -115,6 +115,9 @@ class ConnectionV2 extends pulumi.CustomResource {
|
|
|
115
115
|
}
|
|
116
116
|
else {
|
|
117
117
|
const args = argsOrState;
|
|
118
|
+
if (args?.destinationSchemaNames === undefined && !opts.urn) {
|
|
119
|
+
throw new Error("Missing required property 'destinationSchemaNames'");
|
|
120
|
+
}
|
|
118
121
|
if (args?.groupId === undefined && !opts.urn) {
|
|
119
122
|
throw new Error("Missing required property 'groupId'");
|
|
120
123
|
}
|
package/connectionV2.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"connectionV2.js","sourceRoot":"","sources":["../connectionV2.ts"],"names":[],"mappings":"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
|
|
1
|
+
{"version":3,"file":"connectionV2.js","sourceRoot":"","sources":["../connectionV2.ts"],"names":[],"mappings":"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"}
|
package/connector.d.ts
CHANGED
|
@@ -13,8 +13,6 @@ import * as outputs from "./types/output";
|
|
|
13
13
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
14
14
|
*
|
|
15
15
|
* const amplitude = new fivetran.Connector("amplitude", {
|
|
16
|
-
* groupId: group.id,
|
|
17
|
-
* service: "amplitude",
|
|
18
16
|
* destinationSchema: {
|
|
19
17
|
* name: "amplitude_connector",
|
|
20
18
|
* },
|
|
@@ -32,6 +30,8 @@ import * as outputs from "./types/output";
|
|
|
32
30
|
* },
|
|
33
31
|
* ],
|
|
34
32
|
* },
|
|
33
|
+
* groupId: group.id,
|
|
34
|
+
* service: "amplitude",
|
|
35
35
|
* });
|
|
36
36
|
* ```
|
|
37
37
|
*
|
|
@@ -46,9 +46,6 @@ import * as outputs from "./types/output";
|
|
|
46
46
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
47
47
|
*
|
|
48
48
|
* const myGithubConnector = new fivetran.Connector("my_github_connector", {
|
|
49
|
-
* groupId: "group_id",
|
|
50
|
-
* service: "github",
|
|
51
|
-
* runSetupTests: true,
|
|
52
49
|
* destinationSchema: {
|
|
53
50
|
* name: "github_connector",
|
|
54
51
|
* },
|
|
@@ -59,6 +56,9 @@ import * as outputs from "./types/output";
|
|
|
59
56
|
* username: "git-hub-user-name",
|
|
60
57
|
* pat: "ghp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
|
61
58
|
* },
|
|
59
|
+
* groupId: "group_id",
|
|
60
|
+
* service: "github",
|
|
61
|
+
* runSetupTests: true,
|
|
62
62
|
* });
|
|
63
63
|
* ```
|
|
64
64
|
*
|
package/connector.js
CHANGED
|
@@ -40,8 +40,6 @@ const utilities = __importStar(require("./utilities"));
|
|
|
40
40
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
41
41
|
*
|
|
42
42
|
* const amplitude = new fivetran.Connector("amplitude", {
|
|
43
|
-
* groupId: group.id,
|
|
44
|
-
* service: "amplitude",
|
|
45
43
|
* destinationSchema: {
|
|
46
44
|
* name: "amplitude_connector",
|
|
47
45
|
* },
|
|
@@ -59,6 +57,8 @@ const utilities = __importStar(require("./utilities"));
|
|
|
59
57
|
* },
|
|
60
58
|
* ],
|
|
61
59
|
* },
|
|
60
|
+
* groupId: group.id,
|
|
61
|
+
* service: "amplitude",
|
|
62
62
|
* });
|
|
63
63
|
* ```
|
|
64
64
|
*
|
|
@@ -73,9 +73,6 @@ const utilities = __importStar(require("./utilities"));
|
|
|
73
73
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
74
74
|
*
|
|
75
75
|
* const myGithubConnector = new fivetran.Connector("my_github_connector", {
|
|
76
|
-
* groupId: "group_id",
|
|
77
|
-
* service: "github",
|
|
78
|
-
* runSetupTests: true,
|
|
79
76
|
* destinationSchema: {
|
|
80
77
|
* name: "github_connector",
|
|
81
78
|
* },
|
|
@@ -86,6 +83,9 @@ const utilities = __importStar(require("./utilities"));
|
|
|
86
83
|
* username: "git-hub-user-name",
|
|
87
84
|
* pat: "ghp_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
|
88
85
|
* },
|
|
86
|
+
* groupId: "group_id",
|
|
87
|
+
* service: "github",
|
|
88
|
+
* runSetupTests: true,
|
|
89
89
|
* });
|
|
90
90
|
* ```
|
|
91
91
|
*
|
|
@@ -11,7 +11,6 @@ import * as outputs from "./types/output";
|
|
|
11
11
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
12
12
|
*
|
|
13
13
|
* const myConnectorApprovedFingerprints = new fivetran.ConnectorFingerprints("my_connector_approved_fingerprints", {
|
|
14
|
-
* connectorId: myConnector.id,
|
|
15
14
|
* fingerprints: [
|
|
16
15
|
* {
|
|
17
16
|
* hash: "jhgfJfgrI6yy...",
|
|
@@ -22,6 +21,7 @@ import * as outputs from "./types/output";
|
|
|
22
21
|
* publicKey: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6 ... fivetran user key",
|
|
23
22
|
* },
|
|
24
23
|
* ],
|
|
24
|
+
* connectorId: myConnector.id,
|
|
25
25
|
* });
|
|
26
26
|
* ```
|
|
27
27
|
*
|
package/connectorFingerprints.js
CHANGED
|
@@ -38,7 +38,6 @@ const utilities = __importStar(require("./utilities"));
|
|
|
38
38
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
39
39
|
*
|
|
40
40
|
* const myConnectorApprovedFingerprints = new fivetran.ConnectorFingerprints("my_connector_approved_fingerprints", {
|
|
41
|
-
* connectorId: myConnector.id,
|
|
42
41
|
* fingerprints: [
|
|
43
42
|
* {
|
|
44
43
|
* hash: "jhgfJfgrI6yy...",
|
|
@@ -49,6 +48,7 @@ const utilities = __importStar(require("./utilities"));
|
|
|
49
48
|
* publicKey: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6 ... fivetran user key",
|
|
50
49
|
* },
|
|
51
50
|
* ],
|
|
51
|
+
* connectorId: myConnector.id,
|
|
52
52
|
* });
|
|
53
53
|
* ```
|
|
54
54
|
*
|
package/destination.d.ts
CHANGED
|
@@ -15,14 +15,6 @@ import * as outputs from "./types/output";
|
|
|
15
15
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
16
16
|
*
|
|
17
17
|
* const dest = new fivetran.Destination("dest", {
|
|
18
|
-
* groupId: group.id,
|
|
19
|
-
* service: "postgres_rds_warehouse",
|
|
20
|
-
* timeZoneOffset: "0",
|
|
21
|
-
* region: "GCP_US_EAST4",
|
|
22
|
-
* trustCertificates: true,
|
|
23
|
-
* trustFingerprints: true,
|
|
24
|
-
* daylightSavingTimeEnabled: true,
|
|
25
|
-
* runSetupTests: true,
|
|
26
18
|
* config: {
|
|
27
19
|
* host: "destination.fqdn",
|
|
28
20
|
* port: 5432,
|
|
@@ -31,6 +23,14 @@ import * as outputs from "./types/output";
|
|
|
31
23
|
* database: "fivetran",
|
|
32
24
|
* connectionType: "Directly",
|
|
33
25
|
* },
|
|
26
|
+
* groupId: group.id,
|
|
27
|
+
* service: "postgres_rds_warehouse",
|
|
28
|
+
* timeZoneOffset: "0",
|
|
29
|
+
* region: "GCP_US_EAST4",
|
|
30
|
+
* trustCertificates: true,
|
|
31
|
+
* trustFingerprints: true,
|
|
32
|
+
* daylightSavingTimeEnabled: true,
|
|
33
|
+
* runSetupTests: true,
|
|
34
34
|
* });
|
|
35
35
|
* ```
|
|
36
36
|
*
|
package/destination.js
CHANGED
|
@@ -42,14 +42,6 @@ const utilities = __importStar(require("./utilities"));
|
|
|
42
42
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
43
43
|
*
|
|
44
44
|
* const dest = new fivetran.Destination("dest", {
|
|
45
|
-
* groupId: group.id,
|
|
46
|
-
* service: "postgres_rds_warehouse",
|
|
47
|
-
* timeZoneOffset: "0",
|
|
48
|
-
* region: "GCP_US_EAST4",
|
|
49
|
-
* trustCertificates: true,
|
|
50
|
-
* trustFingerprints: true,
|
|
51
|
-
* daylightSavingTimeEnabled: true,
|
|
52
|
-
* runSetupTests: true,
|
|
53
45
|
* config: {
|
|
54
46
|
* host: "destination.fqdn",
|
|
55
47
|
* port: 5432,
|
|
@@ -58,6 +50,14 @@ const utilities = __importStar(require("./utilities"));
|
|
|
58
50
|
* database: "fivetran",
|
|
59
51
|
* connectionType: "Directly",
|
|
60
52
|
* },
|
|
53
|
+
* groupId: group.id,
|
|
54
|
+
* service: "postgres_rds_warehouse",
|
|
55
|
+
* timeZoneOffset: "0",
|
|
56
|
+
* region: "GCP_US_EAST4",
|
|
57
|
+
* trustCertificates: true,
|
|
58
|
+
* trustFingerprints: true,
|
|
59
|
+
* daylightSavingTimeEnabled: true,
|
|
60
|
+
* runSetupTests: true,
|
|
61
61
|
* });
|
|
62
62
|
* ```
|
|
63
63
|
*
|
|
@@ -11,7 +11,6 @@ import * as outputs from "./types/output";
|
|
|
11
11
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
12
12
|
*
|
|
13
13
|
* const myDestinationApprovedCertificates = new fivetran.DestinationCertificates("my_destination_approved_certificates", {
|
|
14
|
-
* destinationId: myDestination.id,
|
|
15
14
|
* certificates: [
|
|
16
15
|
* {
|
|
17
16
|
* hash: "jhgfJfgrI6yy...",
|
|
@@ -22,6 +21,7 @@ import * as outputs from "./types/output";
|
|
|
22
21
|
* encodedCert: "encoded_cert",
|
|
23
22
|
* },
|
|
24
23
|
* ],
|
|
24
|
+
* destinationId: myDestination.id,
|
|
25
25
|
* });
|
|
26
26
|
* ```
|
|
27
27
|
*
|
|
@@ -38,7 +38,6 @@ const utilities = __importStar(require("./utilities"));
|
|
|
38
38
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
39
39
|
*
|
|
40
40
|
* const myDestinationApprovedCertificates = new fivetran.DestinationCertificates("my_destination_approved_certificates", {
|
|
41
|
-
* destinationId: myDestination.id,
|
|
42
41
|
* certificates: [
|
|
43
42
|
* {
|
|
44
43
|
* hash: "jhgfJfgrI6yy...",
|
|
@@ -49,6 +48,7 @@ const utilities = __importStar(require("./utilities"));
|
|
|
49
48
|
* encodedCert: "encoded_cert",
|
|
50
49
|
* },
|
|
51
50
|
* ],
|
|
51
|
+
* destinationId: myDestination.id,
|
|
52
52
|
* });
|
|
53
53
|
* ```
|
|
54
54
|
*
|
|
@@ -11,7 +11,6 @@ import * as outputs from "./types/output";
|
|
|
11
11
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
12
12
|
*
|
|
13
13
|
* const myDestinationApprovedFingerprints = new fivetran.DestinationFingerprints("my_destination_approved_fingerprints", {
|
|
14
|
-
* destinationId: myDestination.id,
|
|
15
14
|
* fingerprints: [
|
|
16
15
|
* {
|
|
17
16
|
* hash: "jhgfJfgrI6yy...",
|
|
@@ -22,6 +21,7 @@ import * as outputs from "./types/output";
|
|
|
22
21
|
* publicKey: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6 ... fivetran user key",
|
|
23
22
|
* },
|
|
24
23
|
* ],
|
|
24
|
+
* destinationId: myDestination.id,
|
|
25
25
|
* });
|
|
26
26
|
* ```
|
|
27
27
|
*
|
|
@@ -38,7 +38,6 @@ const utilities = __importStar(require("./utilities"));
|
|
|
38
38
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
39
39
|
*
|
|
40
40
|
* const myDestinationApprovedFingerprints = new fivetran.DestinationFingerprints("my_destination_approved_fingerprints", {
|
|
41
|
-
* destinationId: myDestination.id,
|
|
42
41
|
* fingerprints: [
|
|
43
42
|
* {
|
|
44
43
|
* hash: "jhgfJfgrI6yy...",
|
|
@@ -49,6 +48,7 @@ const utilities = __importStar(require("./utilities"));
|
|
|
49
48
|
* publicKey: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC6 ... fivetran user key",
|
|
50
49
|
* },
|
|
51
50
|
* ],
|
|
51
|
+
* destinationId: myDestination.id,
|
|
52
52
|
* });
|
|
53
53
|
* ```
|
|
54
54
|
*
|
package/externalLogging.d.ts
CHANGED
|
@@ -11,14 +11,14 @@ import * as outputs from "./types/output";
|
|
|
11
11
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
12
12
|
*
|
|
13
13
|
* const extlog = new fivetran.ExternalLogging("extlog", {
|
|
14
|
-
* groupId: group.id,
|
|
15
|
-
* service: "azure_monitor_log",
|
|
16
|
-
* enabled: true,
|
|
17
|
-
* runSetupTests: true,
|
|
18
14
|
* config: {
|
|
19
15
|
* workspaceId: "workspace_id",
|
|
20
16
|
* primaryKey: "PASSWORD",
|
|
21
17
|
* },
|
|
18
|
+
* groupId: group.id,
|
|
19
|
+
* service: "azure_monitor_log",
|
|
20
|
+
* enabled: true,
|
|
21
|
+
* runSetupTests: true,
|
|
22
22
|
* });
|
|
23
23
|
* ```
|
|
24
24
|
*
|
package/externalLogging.js
CHANGED
|
@@ -38,14 +38,14 @@ const utilities = __importStar(require("./utilities"));
|
|
|
38
38
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
39
39
|
*
|
|
40
40
|
* const extlog = new fivetran.ExternalLogging("extlog", {
|
|
41
|
-
* groupId: group.id,
|
|
42
|
-
* service: "azure_monitor_log",
|
|
43
|
-
* enabled: true,
|
|
44
|
-
* runSetupTests: true,
|
|
45
41
|
* config: {
|
|
46
42
|
* workspaceId: "workspace_id",
|
|
47
43
|
* primaryKey: "PASSWORD",
|
|
48
44
|
* },
|
|
45
|
+
* groupId: group.id,
|
|
46
|
+
* service: "azure_monitor_log",
|
|
47
|
+
* enabled: true,
|
|
48
|
+
* runSetupTests: true,
|
|
49
49
|
* });
|
|
50
50
|
* ```
|
|
51
51
|
*
|
package/groupUsers.d.ts
CHANGED
|
@@ -11,7 +11,6 @@ import * as outputs from "./types/output";
|
|
|
11
11
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
12
12
|
*
|
|
13
13
|
* const groupUsers = new fivetran.GroupUsers("group_users", {
|
|
14
|
-
* groupId: group.id,
|
|
15
14
|
* users: [
|
|
16
15
|
* {
|
|
17
16
|
* email: "mail@example.com",
|
|
@@ -22,6 +21,7 @@ import * as outputs from "./types/output";
|
|
|
22
21
|
* role: "Edit Destination",
|
|
23
22
|
* },
|
|
24
23
|
* ],
|
|
24
|
+
* groupId: group.id,
|
|
25
25
|
* });
|
|
26
26
|
* ```
|
|
27
27
|
*
|
package/groupUsers.js
CHANGED
|
@@ -38,7 +38,6 @@ const utilities = __importStar(require("./utilities"));
|
|
|
38
38
|
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
39
39
|
*
|
|
40
40
|
* const groupUsers = new fivetran.GroupUsers("group_users", {
|
|
41
|
-
* groupId: group.id,
|
|
42
41
|
* users: [
|
|
43
42
|
* {
|
|
44
43
|
* email: "mail@example.com",
|
|
@@ -49,6 +48,7 @@ const utilities = __importStar(require("./utilities"));
|
|
|
49
48
|
* role: "Edit Destination",
|
|
50
49
|
* },
|
|
51
50
|
* ],
|
|
51
|
+
* groupId: group.id,
|
|
52
52
|
* });
|
|
53
53
|
* ```
|
|
54
54
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ryan-pip/pulumi-fivetran",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.42",
|
|
4
4
|
"description": "A Pulumi package for creating and managing fivetran cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"pulumi": {
|
|
25
25
|
"resource": true,
|
|
26
26
|
"name": "fivetran",
|
|
27
|
-
"version": "1.9.
|
|
27
|
+
"version": "1.9.42",
|
|
28
28
|
"server": "github://api.github.com/ryan-pip"
|
|
29
29
|
}
|
|
30
30
|
}
|