@ryan-pip/pulumi-fivetran 0.1.0 → 0.2.2
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/connector.d.ts +3 -3
- package/connectorSchemaConfig.d.ts +2 -2
- package/connectorSchemaConfig.js +0 -3
- package/connectorSchemaConfig.js.map +1 -1
- package/dbtGitProjectConfig.d.ts +141 -0
- package/dbtGitProjectConfig.js +105 -0
- package/dbtGitProjectConfig.js.map +1 -0
- package/dbtProject.d.ts +32 -0
- package/dbtProject.js +17 -0
- package/dbtProject.js.map +1 -1
- package/getConnector.js +7 -1
- package/getConnector.js.map +1 -1
- package/getConnectorCertificates.js +5 -1
- package/getConnectorCertificates.js.map +1 -1
- package/getConnectorFingerprints.js +5 -1
- package/getConnectorFingerprints.js.map +1 -1
- package/getConnectorsMetadata.js +5 -1
- package/getConnectorsMetadata.js.map +1 -1
- package/getDbtModels.js +5 -1
- package/getDbtModels.js.map +1 -1
- package/getDbtProject.js +5 -1
- package/getDbtProject.js.map +1 -1
- package/getDbtProjects.js +2 -1
- package/getDbtProjects.js.map +1 -1
- package/getDbtTransformation.js +5 -1
- package/getDbtTransformation.js.map +1 -1
- package/getDestination.js +5 -1
- package/getDestination.js.map +1 -1
- package/getDestinationCertificates.js +5 -1
- package/getDestinationCertificates.js.map +1 -1
- package/getDestinationFingerprints.js +5 -1
- package/getDestinationFingerprints.js.map +1 -1
- package/getExternalLogging.js +6 -1
- package/getExternalLogging.js.map +1 -1
- package/getGroup.js +4 -1
- package/getGroup.js.map +1 -1
- package/getGroupConnectors.js +6 -1
- package/getGroupConnectors.js.map +1 -1
- package/getGroupServiceAccount.js +4 -1
- package/getGroupServiceAccount.js.map +1 -1
- package/getGroupSshKey.js +4 -1
- package/getGroupSshKey.js.map +1 -1
- package/getGroupUsers.js +5 -1
- package/getGroupUsers.js.map +1 -1
- package/getGroups.js +5 -1
- package/getGroups.js.map +1 -1
- package/getLocalProcessingAgent.js +4 -1
- package/getLocalProcessingAgent.js.map +1 -1
- package/getLocalProcessingAgents.js +2 -1
- package/getLocalProcessingAgents.js.map +1 -1
- package/getProxyAgent.js +4 -1
- package/getProxyAgent.js.map +1 -1
- package/getProxyAgents.js +5 -1
- package/getProxyAgents.js.map +1 -1
- package/getRoles.js +5 -1
- package/getRoles.js.map +1 -1
- package/getTeam.js +4 -1
- package/getTeam.js.map +1 -1
- package/getTeamConnectorMemberships.js +5 -1
- package/getTeamConnectorMemberships.js.map +1 -1
- package/getTeamGroupMemberships.js +5 -1
- package/getTeamGroupMemberships.js.map +1 -1
- package/getTeamUserMemberships.js +5 -1
- package/getTeamUserMemberships.js.map +1 -1
- package/getTeams.js +6 -1
- package/getTeams.js.map +1 -1
- package/getUser.js +4 -1
- package/getUser.js.map +1 -1
- package/getUserConnectorMemberships.js +5 -1
- package/getUserConnectorMemberships.js.map +1 -1
- package/getUserGroupMemberships.js +5 -1
- package/getUserGroupMemberships.js.map +1 -1
- package/getUsers.js +6 -1
- package/getUsers.js.map +1 -1
- package/getWebhook.js +4 -1
- package/getWebhook.js.map +1 -1
- package/getWebhooks.js +2 -1
- package/getWebhooks.js.map +1 -1
- package/group.d.ts +4 -0
- package/group.js +4 -0
- package/group.js.map +1 -1
- package/index.d.ts +3 -0
- package/index.js +7 -2
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/types/input.d.ts +1813 -92
- package/types/output.d.ts +1253 -60
package/connector.d.ts
CHANGED
|
@@ -56,7 +56,7 @@ export declare class Connector extends pulumi.CustomResource {
|
|
|
56
56
|
*/
|
|
57
57
|
readonly proxyAgentId: pulumi.Output<string | undefined>;
|
|
58
58
|
/**
|
|
59
|
-
* Specifies whether the setup tests should be run automatically. The default value is
|
|
59
|
+
* Specifies whether the setup tests should be run automatically. The default value is FALSE.
|
|
60
60
|
*/
|
|
61
61
|
readonly runSetupTests: pulumi.Output<boolean>;
|
|
62
62
|
/**
|
|
@@ -123,7 +123,7 @@ export interface ConnectorState {
|
|
|
123
123
|
*/
|
|
124
124
|
proxyAgentId?: pulumi.Input<string>;
|
|
125
125
|
/**
|
|
126
|
-
* Specifies whether the setup tests should be run automatically. The default value is
|
|
126
|
+
* Specifies whether the setup tests should be run automatically. The default value is FALSE.
|
|
127
127
|
*/
|
|
128
128
|
runSetupTests?: pulumi.Input<boolean>;
|
|
129
129
|
/**
|
|
@@ -169,7 +169,7 @@ export interface ConnectorArgs {
|
|
|
169
169
|
*/
|
|
170
170
|
proxyAgentId?: pulumi.Input<string>;
|
|
171
171
|
/**
|
|
172
|
-
* Specifies whether the setup tests should be run automatically. The default value is
|
|
172
|
+
* Specifies whether the setup tests should be run automatically. The default value is FALSE.
|
|
173
173
|
*/
|
|
174
174
|
runSetupTests?: pulumi.Input<boolean>;
|
|
175
175
|
/**
|
|
@@ -33,7 +33,7 @@ export declare class ConnectorSchemaConfig extends pulumi.CustomResource {
|
|
|
33
33
|
/**
|
|
34
34
|
* The value specifying how new source data is handled.
|
|
35
35
|
*/
|
|
36
|
-
readonly schemaChangeHandling: pulumi.Output<string>;
|
|
36
|
+
readonly schemaChangeHandling: pulumi.Output<string | undefined>;
|
|
37
37
|
/**
|
|
38
38
|
* Map of schema configurations.
|
|
39
39
|
*/
|
|
@@ -109,7 +109,7 @@ export interface ConnectorSchemaConfigArgs {
|
|
|
109
109
|
/**
|
|
110
110
|
* The value specifying how new source data is handled.
|
|
111
111
|
*/
|
|
112
|
-
schemaChangeHandling
|
|
112
|
+
schemaChangeHandling?: pulumi.Input<string>;
|
|
113
113
|
/**
|
|
114
114
|
* Map of schema configurations.
|
|
115
115
|
*/
|
package/connectorSchemaConfig.js
CHANGED
|
@@ -51,9 +51,6 @@ class ConnectorSchemaConfig extends pulumi.CustomResource {
|
|
|
51
51
|
if ((!args || args.connectorId === undefined) && !opts.urn) {
|
|
52
52
|
throw new Error("Missing required property 'connectorId'");
|
|
53
53
|
}
|
|
54
|
-
if ((!args || args.schemaChangeHandling === undefined) && !opts.urn) {
|
|
55
|
-
throw new Error("Missing required property 'schemaChangeHandling'");
|
|
56
|
-
}
|
|
57
54
|
resourceInputs["connectorId"] = args ? args.connectorId : undefined;
|
|
58
55
|
resourceInputs["schema"] = args ? args.schema : undefined;
|
|
59
56
|
resourceInputs["schemaChangeHandling"] = args ? args.schemaChangeHandling : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"connectorSchemaConfig.js","sourceRoot":"","sources":["../connectorSchemaConfig.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,MAAa,qBAAsB,SAAQ,MAAM,CAAC,cAAc;IAC5D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkC,EAAE,IAAmC;QAChI,OAAO,IAAI,qBAAqB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC5E,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,qBAAqB,CAAC,YAAY,CAAC;IACtE,CAAC;IAsCD,YAAY,IAAY,EAAE,WAAoE,EAAE,IAAmC;QAC/H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAqD,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;SACjF;aAAM;YACH,MAAM,IAAI,GAAG,WAAoD,CAAC;YAClE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,WAAW,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACxD,MAAM,IAAI,KAAK,CAAC,yCAAyC,CAAC,CAAC;aAC9D;YACD,
|
|
1
|
+
{"version":3,"file":"connectorSchemaConfig.js","sourceRoot":"","sources":["../connectorSchemaConfig.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Resource is in ALPHA state.
|
|
4
|
+
*
|
|
5
|
+
* This resource allows you to add and manage dbt Git Projects Configs.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
12
|
+
*
|
|
13
|
+
* const gitProjectConfig = new fivetran.DbtGitProjectConfig("gitProjectConfig", {
|
|
14
|
+
* folderPath: "/dbt/project/folder/path",
|
|
15
|
+
* gitBranch: "main",
|
|
16
|
+
* gitRemoteUrl: "your_git_remote_url",
|
|
17
|
+
* projectId: "project_id",
|
|
18
|
+
* });
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* ## Import
|
|
22
|
+
*
|
|
23
|
+
* 1. To import an existing `fivetran_dbt_git_project_config` resource into your Terraform state, you need to get **Dbt Project ID** via API call `GET https://api.fivetran.com/v1/dbt/projects` to retrieve available projects.
|
|
24
|
+
*
|
|
25
|
+
* 2. Fetch project details for particular `project-id` using `GET https://api.fivetran.com/v1/dbt/projects/{project-id}` to ensure that this is the project you want to import.
|
|
26
|
+
*
|
|
27
|
+
* 3. Define an empty resource in your `.tf` configuration:
|
|
28
|
+
*
|
|
29
|
+
* hcl
|
|
30
|
+
*
|
|
31
|
+
* resource "fivetran_dbt_git_project_config" "my_imported_fivetran_dbt_git_project_config" {
|
|
32
|
+
*
|
|
33
|
+
* }
|
|
34
|
+
*
|
|
35
|
+
* 4. Run the `pulumi import` command:
|
|
36
|
+
*
|
|
37
|
+
* ```sh
|
|
38
|
+
* $ pulumi import fivetran:index/dbtGitProjectConfig:DbtGitProjectConfig my_imported_fivetran_dbt_git_project_config {Dbt Project ID}
|
|
39
|
+
* ```
|
|
40
|
+
*
|
|
41
|
+
* 4. Use the `terraform state show` command to get the values from the state:
|
|
42
|
+
*
|
|
43
|
+
* terraform state show 'fivetran_dbt_git_project_config.my_imported_fivetran_dbt_git_project_config'
|
|
44
|
+
*
|
|
45
|
+
* 5. Copy the values and paste them to your `.tf` configuration.
|
|
46
|
+
*/
|
|
47
|
+
export declare class DbtGitProjectConfig extends pulumi.CustomResource {
|
|
48
|
+
/**
|
|
49
|
+
* Get an existing DbtGitProjectConfig resource's state with the given name, ID, and optional extra
|
|
50
|
+
* properties used to qualify the lookup.
|
|
51
|
+
*
|
|
52
|
+
* @param name The _unique_ name of the resulting resource.
|
|
53
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
54
|
+
* @param state Any extra arguments used during the lookup.
|
|
55
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
56
|
+
*/
|
|
57
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: DbtGitProjectConfigState, opts?: pulumi.CustomResourceOptions): DbtGitProjectConfig;
|
|
58
|
+
/**
|
|
59
|
+
* Returns true if the given object is an instance of DbtGitProjectConfig. This is designed to work even
|
|
60
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
61
|
+
*/
|
|
62
|
+
static isInstance(obj: any): obj is DbtGitProjectConfig;
|
|
63
|
+
/**
|
|
64
|
+
* Should resource wait for project to finish initialization. Default value: false.
|
|
65
|
+
*/
|
|
66
|
+
readonly ensureReadiness: pulumi.Output<boolean>;
|
|
67
|
+
/**
|
|
68
|
+
* Folder in Git repo with your dbt project.
|
|
69
|
+
*/
|
|
70
|
+
readonly folderPath: pulumi.Output<string | undefined>;
|
|
71
|
+
/**
|
|
72
|
+
* Git branch.
|
|
73
|
+
*/
|
|
74
|
+
readonly gitBranch: pulumi.Output<string | undefined>;
|
|
75
|
+
/**
|
|
76
|
+
* Git remote URL with your dbt project.
|
|
77
|
+
*/
|
|
78
|
+
readonly gitRemoteUrl: pulumi.Output<string | undefined>;
|
|
79
|
+
/**
|
|
80
|
+
* The unique identifier for the dbt Project within the Fivetran system.
|
|
81
|
+
*/
|
|
82
|
+
readonly projectId: pulumi.Output<string>;
|
|
83
|
+
/**
|
|
84
|
+
* Create a DbtGitProjectConfig resource with the given unique name, arguments, and options.
|
|
85
|
+
*
|
|
86
|
+
* @param name The _unique_ name of the resource.
|
|
87
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
88
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
89
|
+
*/
|
|
90
|
+
constructor(name: string, args: DbtGitProjectConfigArgs, opts?: pulumi.CustomResourceOptions);
|
|
91
|
+
}
|
|
92
|
+
/**
|
|
93
|
+
* Input properties used for looking up and filtering DbtGitProjectConfig resources.
|
|
94
|
+
*/
|
|
95
|
+
export interface DbtGitProjectConfigState {
|
|
96
|
+
/**
|
|
97
|
+
* Should resource wait for project to finish initialization. Default value: false.
|
|
98
|
+
*/
|
|
99
|
+
ensureReadiness?: pulumi.Input<boolean>;
|
|
100
|
+
/**
|
|
101
|
+
* Folder in Git repo with your dbt project.
|
|
102
|
+
*/
|
|
103
|
+
folderPath?: pulumi.Input<string>;
|
|
104
|
+
/**
|
|
105
|
+
* Git branch.
|
|
106
|
+
*/
|
|
107
|
+
gitBranch?: pulumi.Input<string>;
|
|
108
|
+
/**
|
|
109
|
+
* Git remote URL with your dbt project.
|
|
110
|
+
*/
|
|
111
|
+
gitRemoteUrl?: pulumi.Input<string>;
|
|
112
|
+
/**
|
|
113
|
+
* The unique identifier for the dbt Project within the Fivetran system.
|
|
114
|
+
*/
|
|
115
|
+
projectId?: pulumi.Input<string>;
|
|
116
|
+
}
|
|
117
|
+
/**
|
|
118
|
+
* The set of arguments for constructing a DbtGitProjectConfig resource.
|
|
119
|
+
*/
|
|
120
|
+
export interface DbtGitProjectConfigArgs {
|
|
121
|
+
/**
|
|
122
|
+
* Should resource wait for project to finish initialization. Default value: false.
|
|
123
|
+
*/
|
|
124
|
+
ensureReadiness?: pulumi.Input<boolean>;
|
|
125
|
+
/**
|
|
126
|
+
* Folder in Git repo with your dbt project.
|
|
127
|
+
*/
|
|
128
|
+
folderPath?: pulumi.Input<string>;
|
|
129
|
+
/**
|
|
130
|
+
* Git branch.
|
|
131
|
+
*/
|
|
132
|
+
gitBranch?: pulumi.Input<string>;
|
|
133
|
+
/**
|
|
134
|
+
* Git remote URL with your dbt project.
|
|
135
|
+
*/
|
|
136
|
+
gitRemoteUrl?: pulumi.Input<string>;
|
|
137
|
+
/**
|
|
138
|
+
* The unique identifier for the dbt Project within the Fivetran system.
|
|
139
|
+
*/
|
|
140
|
+
projectId: pulumi.Input<string>;
|
|
141
|
+
}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.DbtGitProjectConfig = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Resource is in ALPHA state.
|
|
10
|
+
*
|
|
11
|
+
* This resource allows you to add and manage dbt Git Projects Configs.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
18
|
+
*
|
|
19
|
+
* const gitProjectConfig = new fivetran.DbtGitProjectConfig("gitProjectConfig", {
|
|
20
|
+
* folderPath: "/dbt/project/folder/path",
|
|
21
|
+
* gitBranch: "main",
|
|
22
|
+
* gitRemoteUrl: "your_git_remote_url",
|
|
23
|
+
* projectId: "project_id",
|
|
24
|
+
* });
|
|
25
|
+
* ```
|
|
26
|
+
*
|
|
27
|
+
* ## Import
|
|
28
|
+
*
|
|
29
|
+
* 1. To import an existing `fivetran_dbt_git_project_config` resource into your Terraform state, you need to get **Dbt Project ID** via API call `GET https://api.fivetran.com/v1/dbt/projects` to retrieve available projects.
|
|
30
|
+
*
|
|
31
|
+
* 2. Fetch project details for particular `project-id` using `GET https://api.fivetran.com/v1/dbt/projects/{project-id}` to ensure that this is the project you want to import.
|
|
32
|
+
*
|
|
33
|
+
* 3. Define an empty resource in your `.tf` configuration:
|
|
34
|
+
*
|
|
35
|
+
* hcl
|
|
36
|
+
*
|
|
37
|
+
* resource "fivetran_dbt_git_project_config" "my_imported_fivetran_dbt_git_project_config" {
|
|
38
|
+
*
|
|
39
|
+
* }
|
|
40
|
+
*
|
|
41
|
+
* 4. Run the `pulumi import` command:
|
|
42
|
+
*
|
|
43
|
+
* ```sh
|
|
44
|
+
* $ pulumi import fivetran:index/dbtGitProjectConfig:DbtGitProjectConfig my_imported_fivetran_dbt_git_project_config {Dbt Project ID}
|
|
45
|
+
* ```
|
|
46
|
+
*
|
|
47
|
+
* 4. Use the `terraform state show` command to get the values from the state:
|
|
48
|
+
*
|
|
49
|
+
* terraform state show 'fivetran_dbt_git_project_config.my_imported_fivetran_dbt_git_project_config'
|
|
50
|
+
*
|
|
51
|
+
* 5. Copy the values and paste them to your `.tf` configuration.
|
|
52
|
+
*/
|
|
53
|
+
class DbtGitProjectConfig extends pulumi.CustomResource {
|
|
54
|
+
/**
|
|
55
|
+
* Get an existing DbtGitProjectConfig resource's state with the given name, ID, and optional extra
|
|
56
|
+
* properties used to qualify the lookup.
|
|
57
|
+
*
|
|
58
|
+
* @param name The _unique_ name of the resulting resource.
|
|
59
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
60
|
+
* @param state Any extra arguments used during the lookup.
|
|
61
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
62
|
+
*/
|
|
63
|
+
static get(name, id, state, opts) {
|
|
64
|
+
return new DbtGitProjectConfig(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* Returns true if the given object is an instance of DbtGitProjectConfig. This is designed to work even
|
|
68
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
69
|
+
*/
|
|
70
|
+
static isInstance(obj) {
|
|
71
|
+
if (obj === undefined || obj === null) {
|
|
72
|
+
return false;
|
|
73
|
+
}
|
|
74
|
+
return obj['__pulumiType'] === DbtGitProjectConfig.__pulumiType;
|
|
75
|
+
}
|
|
76
|
+
constructor(name, argsOrState, opts) {
|
|
77
|
+
let resourceInputs = {};
|
|
78
|
+
opts = opts || {};
|
|
79
|
+
if (opts.id) {
|
|
80
|
+
const state = argsOrState;
|
|
81
|
+
resourceInputs["ensureReadiness"] = state ? state.ensureReadiness : undefined;
|
|
82
|
+
resourceInputs["folderPath"] = state ? state.folderPath : undefined;
|
|
83
|
+
resourceInputs["gitBranch"] = state ? state.gitBranch : undefined;
|
|
84
|
+
resourceInputs["gitRemoteUrl"] = state ? state.gitRemoteUrl : undefined;
|
|
85
|
+
resourceInputs["projectId"] = state ? state.projectId : undefined;
|
|
86
|
+
}
|
|
87
|
+
else {
|
|
88
|
+
const args = argsOrState;
|
|
89
|
+
if ((!args || args.projectId === undefined) && !opts.urn) {
|
|
90
|
+
throw new Error("Missing required property 'projectId'");
|
|
91
|
+
}
|
|
92
|
+
resourceInputs["ensureReadiness"] = args ? args.ensureReadiness : undefined;
|
|
93
|
+
resourceInputs["folderPath"] = args ? args.folderPath : undefined;
|
|
94
|
+
resourceInputs["gitBranch"] = args ? args.gitBranch : undefined;
|
|
95
|
+
resourceInputs["gitRemoteUrl"] = args ? args.gitRemoteUrl : undefined;
|
|
96
|
+
resourceInputs["projectId"] = args ? args.projectId : undefined;
|
|
97
|
+
}
|
|
98
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
99
|
+
super(DbtGitProjectConfig.__pulumiType, name, resourceInputs, opts);
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
exports.DbtGitProjectConfig = DbtGitProjectConfig;
|
|
103
|
+
/** @internal */
|
|
104
|
+
DbtGitProjectConfig.__pulumiType = 'fivetran:index/dbtGitProjectConfig:DbtGitProjectConfig';
|
|
105
|
+
//# sourceMappingURL=dbtGitProjectConfig.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dbtGitProjectConfig.js","sourceRoot":"","sources":["../dbtGitProjectConfig.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,MAAa,mBAAoB,SAAQ,MAAM,CAAC,cAAc;IAC1D;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAgC,EAAE,IAAmC;QAC9H,OAAO,IAAI,mBAAmB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAC1E,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,mBAAmB,CAAC,YAAY,CAAC;IACpE,CAAC;IA+BD,YAAY,IAAY,EAAE,WAAgE,EAAE,IAAmC;QAC3H,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAmD,CAAC;YAClE,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACrE;aAAM;YACH,MAAM,IAAI,GAAG,WAAkD,CAAC;YAChE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,SAAS,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACtD,MAAM,IAAI,KAAK,CAAC,uCAAuC,CAAC,CAAC;aAC5D;YACD,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,mBAAmB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACxE,CAAC;;AAhFL,kDAiFC;AAnEG,gBAAgB;AACO,gCAAY,GAAG,wDAAwD,CAAC"}
|
package/dbtProject.d.ts
CHANGED
|
@@ -6,6 +6,23 @@ import * as outputs from "./types/output";
|
|
|
6
6
|
*
|
|
7
7
|
* This resource allows you to add, manage and delete dbt Projects in your account.
|
|
8
8
|
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
14
|
+
*
|
|
15
|
+
* const project = new fivetran.DbtProject("project", {
|
|
16
|
+
* dbtVersion: "1.4.1",
|
|
17
|
+
* defaultSchema: "default_schema",
|
|
18
|
+
* environmentVars: ["environment_var=value"],
|
|
19
|
+
* groupId: "group_id",
|
|
20
|
+
* targetName: "target_name",
|
|
21
|
+
* threads: 8,
|
|
22
|
+
* type: "GIT",
|
|
23
|
+
* });
|
|
24
|
+
* ```
|
|
25
|
+
*
|
|
9
26
|
* ## Import
|
|
10
27
|
*
|
|
11
28
|
* 1. To import an existing `fivetran_dbt_project` resource into your Terraform state, you need to get **Dbt Project ID** via API call `GET https://api.fivetran.com/v1/dbt/projects` to retrieve available projects.
|
|
@@ -66,6 +83,8 @@ export declare class DbtProject extends pulumi.CustomResource {
|
|
|
66
83
|
readonly defaultSchema: pulumi.Output<string>;
|
|
67
84
|
/**
|
|
68
85
|
* Should resource wait for project to finish initialization. Default value: true.
|
|
86
|
+
*
|
|
87
|
+
* @deprecated Deprecated attribute. Please migrate to the resource fivetran_dbt_git_project_config
|
|
69
88
|
*/
|
|
70
89
|
readonly ensureReadiness: pulumi.Output<boolean>;
|
|
71
90
|
/**
|
|
@@ -77,6 +96,9 @@ export declare class DbtProject extends pulumi.CustomResource {
|
|
|
77
96
|
*/
|
|
78
97
|
readonly groupId: pulumi.Output<string>;
|
|
79
98
|
readonly models: pulumi.Output<outputs.DbtProjectModel[]>;
|
|
99
|
+
/**
|
|
100
|
+
* @deprecated Deprecated block. The projectConfig block of the resource fivetran.DbtProject is deprecated and will be removed. Please migrate to the resource fivetran_dbt_git_project_config
|
|
101
|
+
*/
|
|
80
102
|
readonly projectConfig: pulumi.Output<outputs.DbtProjectProjectConfig | undefined>;
|
|
81
103
|
/**
|
|
82
104
|
* Public key to grant Fivetran SSH access to git repository.
|
|
@@ -130,6 +152,8 @@ export interface DbtProjectState {
|
|
|
130
152
|
defaultSchema?: pulumi.Input<string>;
|
|
131
153
|
/**
|
|
132
154
|
* Should resource wait for project to finish initialization. Default value: true.
|
|
155
|
+
*
|
|
156
|
+
* @deprecated Deprecated attribute. Please migrate to the resource fivetran_dbt_git_project_config
|
|
133
157
|
*/
|
|
134
158
|
ensureReadiness?: pulumi.Input<boolean>;
|
|
135
159
|
/**
|
|
@@ -141,6 +165,9 @@ export interface DbtProjectState {
|
|
|
141
165
|
*/
|
|
142
166
|
groupId?: pulumi.Input<string>;
|
|
143
167
|
models?: pulumi.Input<pulumi.Input<inputs.DbtProjectModel>[]>;
|
|
168
|
+
/**
|
|
169
|
+
* @deprecated Deprecated block. The projectConfig block of the resource fivetran.DbtProject is deprecated and will be removed. Please migrate to the resource fivetran_dbt_git_project_config
|
|
170
|
+
*/
|
|
144
171
|
projectConfig?: pulumi.Input<inputs.DbtProjectProjectConfig>;
|
|
145
172
|
/**
|
|
146
173
|
* Public key to grant Fivetran SSH access to git repository.
|
|
@@ -178,6 +205,8 @@ export interface DbtProjectArgs {
|
|
|
178
205
|
defaultSchema: pulumi.Input<string>;
|
|
179
206
|
/**
|
|
180
207
|
* Should resource wait for project to finish initialization. Default value: true.
|
|
208
|
+
*
|
|
209
|
+
* @deprecated Deprecated attribute. Please migrate to the resource fivetran_dbt_git_project_config
|
|
181
210
|
*/
|
|
182
211
|
ensureReadiness?: pulumi.Input<boolean>;
|
|
183
212
|
/**
|
|
@@ -188,6 +217,9 @@ export interface DbtProjectArgs {
|
|
|
188
217
|
* The unique identifier for the group within the Fivetran system.
|
|
189
218
|
*/
|
|
190
219
|
groupId: pulumi.Input<string>;
|
|
220
|
+
/**
|
|
221
|
+
* @deprecated Deprecated block. The projectConfig block of the resource fivetran.DbtProject is deprecated and will be removed. Please migrate to the resource fivetran_dbt_git_project_config
|
|
222
|
+
*/
|
|
191
223
|
projectConfig?: pulumi.Input<inputs.DbtProjectProjectConfig>;
|
|
192
224
|
/**
|
|
193
225
|
* Target name to set or override the value from the deployment.yaml
|
package/dbtProject.js
CHANGED
|
@@ -10,6 +10,23 @@ const utilities = require("./utilities");
|
|
|
10
10
|
*
|
|
11
11
|
* This resource allows you to add, manage and delete dbt Projects in your account.
|
|
12
12
|
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as fivetran from "@ryan-pip/pulumi-fivetran";
|
|
18
|
+
*
|
|
19
|
+
* const project = new fivetran.DbtProject("project", {
|
|
20
|
+
* dbtVersion: "1.4.1",
|
|
21
|
+
* defaultSchema: "default_schema",
|
|
22
|
+
* environmentVars: ["environment_var=value"],
|
|
23
|
+
* groupId: "group_id",
|
|
24
|
+
* targetName: "target_name",
|
|
25
|
+
* threads: 8,
|
|
26
|
+
* type: "GIT",
|
|
27
|
+
* });
|
|
28
|
+
* ```
|
|
29
|
+
*
|
|
13
30
|
* ## Import
|
|
14
31
|
*
|
|
15
32
|
* 1. To import an existing `fivetran_dbt_project` resource into your Terraform state, you need to get **Dbt Project ID** via API call `GET https://api.fivetran.com/v1/dbt/projects` to retrieve available projects.
|
package/dbtProject.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"dbtProject.js","sourceRoot":"","sources":["../dbtProject.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"dbtProject.js","sourceRoot":"","sources":["../dbtProject.ts"],"names":[],"mappings":"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"}
|
package/getConnector.js
CHANGED
|
@@ -44,7 +44,13 @@ exports.getConnector = getConnector;
|
|
|
44
44
|
* ```
|
|
45
45
|
*/
|
|
46
46
|
function getConnectorOutput(args, opts) {
|
|
47
|
-
|
|
47
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
48
|
+
return pulumi.runtime.invokeOutput("fivetran:index/getConnector:getConnector", {
|
|
49
|
+
"config": args.config,
|
|
50
|
+
"destinationSchema": args.destinationSchema,
|
|
51
|
+
"id": args.id,
|
|
52
|
+
"status": args.status,
|
|
53
|
+
}, opts);
|
|
48
54
|
}
|
|
49
55
|
exports.getConnectorOutput = getConnectorOutput;
|
|
50
56
|
//# sourceMappingURL=getConnector.js.map
|
package/getConnector.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getConnector.js","sourceRoot":"","sources":["../getConnector.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getConnector.js","sourceRoot":"","sources":["../getConnector.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAC5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,oCAQC;AAqCD;;;;;;;;;;;;;GAaG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0CAA0C,EAAE;QAC3E,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,gDAQC"}
|
|
@@ -14,7 +14,11 @@ function getConnectorCertificates(args, opts) {
|
|
|
14
14
|
}
|
|
15
15
|
exports.getConnectorCertificates = getConnectorCertificates;
|
|
16
16
|
function getConnectorCertificatesOutput(args, opts) {
|
|
17
|
-
|
|
17
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
18
|
+
return pulumi.runtime.invokeOutput("fivetran:index/getConnectorCertificates:getConnectorCertificates", {
|
|
19
|
+
"certificates": args.certificates,
|
|
20
|
+
"id": args.id,
|
|
21
|
+
}, opts);
|
|
18
22
|
}
|
|
19
23
|
exports.getConnectorCertificatesOutput = getConnectorCertificatesOutput;
|
|
20
24
|
//# sourceMappingURL=getConnectorCertificates.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getConnectorCertificates.js","sourceRoot":"","sources":["../getConnectorCertificates.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getConnectorCertificates.js","sourceRoot":"","sources":["../getConnectorCertificates.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IACpG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kEAAkE,EAAE;QAC7F,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4DAMC;AA2BD,SAAgB,8BAA8B,CAAC,IAAwC,EAAE,IAA2B;IAChH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kEAAkE,EAAE;QACnG,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wEAMC"}
|
|
@@ -42,7 +42,11 @@ exports.getConnectorFingerprints = getConnectorFingerprints;
|
|
|
42
42
|
* ```
|
|
43
43
|
*/
|
|
44
44
|
function getConnectorFingerprintsOutput(args, opts) {
|
|
45
|
-
|
|
45
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
46
|
+
return pulumi.runtime.invokeOutput("fivetran:index/getConnectorFingerprints:getConnectorFingerprints", {
|
|
47
|
+
"fingerprints": args.fingerprints,
|
|
48
|
+
"id": args.id,
|
|
49
|
+
}, opts);
|
|
46
50
|
}
|
|
47
51
|
exports.getConnectorFingerprintsOutput = getConnectorFingerprintsOutput;
|
|
48
52
|
//# sourceMappingURL=getConnectorFingerprints.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getConnectorFingerprints.js","sourceRoot":"","sources":["../getConnectorFingerprints.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getConnectorFingerprints.js","sourceRoot":"","sources":["../getConnectorFingerprints.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAA2B;IACpG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kEAAkE,EAAE;QAC7F,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4DAMC;AA2BD;;;;;;;;;;;;;GAaG;AACH,SAAgB,8BAA8B,CAAC,IAAwC,EAAE,IAA2B;IAChH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kEAAkE,EAAE;QACnG,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wEAMC"}
|
package/getConnectorsMetadata.js
CHANGED
|
@@ -38,7 +38,11 @@ exports.getConnectorsMetadata = getConnectorsMetadata;
|
|
|
38
38
|
* ```
|
|
39
39
|
*/
|
|
40
40
|
function getConnectorsMetadataOutput(args, opts) {
|
|
41
|
-
|
|
41
|
+
args = args || {};
|
|
42
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
43
|
+
return pulumi.runtime.invokeOutput("fivetran:index/getConnectorsMetadata:getConnectorsMetadata", {
|
|
44
|
+
"sources": args.sources,
|
|
45
|
+
}, opts);
|
|
42
46
|
}
|
|
43
47
|
exports.getConnectorsMetadataOutput = getConnectorsMetadataOutput;
|
|
44
48
|
//# sourceMappingURL=getConnectorsMetadata.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getConnectorsMetadata.js","sourceRoot":"","sources":["../getConnectorsMetadata.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,qBAAqB,CAAC,IAAgC,EAAE,IAA2B;IAC/F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;
|
|
1
|
+
{"version":3,"file":"getConnectorsMetadata.js","sourceRoot":"","sources":["../getConnectorsMetadata.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,qBAAqB,CAAC,IAAgC,EAAE,IAA2B;IAC/F,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4DAA4D,EAAE;QACvF,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sDAMC;AAmBD;;;;;;;;;;;GAWG;AACH,SAAgB,2BAA2B,CAAC,IAAsC,EAAE,IAA2B;IAC3G,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4DAA4D,EAAE;QAC7F,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kEAMC"}
|
package/getDbtModels.js
CHANGED
|
@@ -42,7 +42,11 @@ exports.getDbtModels = getDbtModels;
|
|
|
42
42
|
* ```
|
|
43
43
|
*/
|
|
44
44
|
function getDbtModelsOutput(args, opts) {
|
|
45
|
-
|
|
45
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
46
|
+
return pulumi.runtime.invokeOutput("fivetran:index/getDbtModels:getDbtModels", {
|
|
47
|
+
"models": args.models,
|
|
48
|
+
"projectId": args.projectId,
|
|
49
|
+
}, opts);
|
|
46
50
|
}
|
|
47
51
|
exports.getDbtModelsOutput = getDbtModelsOutput;
|
|
48
52
|
//# sourceMappingURL=getDbtModels.js.map
|
package/getDbtModels.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDbtModels.js","sourceRoot":"","sources":["../getDbtModels.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getDbtModels.js","sourceRoot":"","sources":["../getDbtModels.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAC5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oCAMC;AA2BD;;;;;;;;;;;;;GAaG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0CAA0C,EAAE;QAC3E,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gDAMC"}
|
package/getDbtProject.js
CHANGED
|
@@ -42,7 +42,11 @@ exports.getDbtProject = getDbtProject;
|
|
|
42
42
|
* ```
|
|
43
43
|
*/
|
|
44
44
|
function getDbtProjectOutput(args, opts) {
|
|
45
|
-
|
|
45
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
46
|
+
return pulumi.runtime.invokeOutput("fivetran:index/getDbtProject:getDbtProject", {
|
|
47
|
+
"id": args.id,
|
|
48
|
+
"projectConfig": args.projectConfig,
|
|
49
|
+
}, opts);
|
|
46
50
|
}
|
|
47
51
|
exports.getDbtProjectOutput = getDbtProjectOutput;
|
|
48
52
|
//# sourceMappingURL=getDbtProject.js.map
|
package/getDbtProject.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDbtProject.js","sourceRoot":"","sources":["../getDbtProject.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getDbtProject.js","sourceRoot":"","sources":["../getDbtProject.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sCAMC;AAwED;;;;;;;;;;;;;GAaG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4CAA4C,EAAE;QAC7E,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kDAMC"}
|
package/getDbtProjects.js
CHANGED
|
@@ -35,7 +35,8 @@ exports.getDbtProjects = getDbtProjects;
|
|
|
35
35
|
* ```
|
|
36
36
|
*/
|
|
37
37
|
function getDbtProjectsOutput(opts) {
|
|
38
|
-
|
|
38
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
39
|
+
return pulumi.runtime.invokeOutput("fivetran:index/getDbtProjects:getDbtProjects", {}, opts);
|
|
39
40
|
}
|
|
40
41
|
exports.getDbtProjectsOutput = getDbtProjectsOutput;
|
|
41
42
|
//# sourceMappingURL=getDbtProjects.js.map
|
package/getDbtProjects.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDbtProjects.js","sourceRoot":"","sources":["../getDbtProjects.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,cAAc,CAAC,IAA2B;
|
|
1
|
+
{"version":3,"file":"getDbtProjects.js","sourceRoot":"","sources":["../getDbtProjects.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,cAAc,CAAC,IAA2B;IACtD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE,EAC5E,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,wCAIC;AAYD;;;;;;;;;;;GAWG;AACH,SAAgB,oBAAoB,CAAC,IAA2B;IAC5D,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8CAA8C,EAAE,EAClF,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,oDAIC"}
|
package/getDbtTransformation.js
CHANGED
|
@@ -42,7 +42,11 @@ exports.getDbtTransformation = getDbtTransformation;
|
|
|
42
42
|
* ```
|
|
43
43
|
*/
|
|
44
44
|
function getDbtTransformationOutput(args, opts) {
|
|
45
|
-
|
|
45
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
46
|
+
return pulumi.runtime.invokeOutput("fivetran:index/getDbtTransformation:getDbtTransformation", {
|
|
47
|
+
"id": args.id,
|
|
48
|
+
"schedule": args.schedule,
|
|
49
|
+
}, opts);
|
|
46
50
|
}
|
|
47
51
|
exports.getDbtTransformationOutput = getDbtTransformationOutput;
|
|
48
52
|
//# sourceMappingURL=getDbtTransformation.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDbtTransformation.js","sourceRoot":"","sources":["../getDbtTransformation.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;
|
|
1
|
+
{"version":3,"file":"getDbtTransformation.js","sourceRoot":"","sources":["../getDbtTransformation.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0DAA0D,EAAE;QACrF,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oDAMC;AA2DD;;;;;;;;;;;;;GAaG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAA2B;IACxG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0DAA0D,EAAE;QAC3F,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gEAMC"}
|
package/getDestination.js
CHANGED
|
@@ -42,7 +42,11 @@ exports.getDestination = getDestination;
|
|
|
42
42
|
* ```
|
|
43
43
|
*/
|
|
44
44
|
function getDestinationOutput(args, opts) {
|
|
45
|
-
|
|
45
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
46
|
+
return pulumi.runtime.invokeOutput("fivetran:index/getDestination:getDestination", {
|
|
47
|
+
"config": args.config,
|
|
48
|
+
"id": args.id,
|
|
49
|
+
}, opts);
|
|
46
50
|
}
|
|
47
51
|
exports.getDestinationOutput = getDestinationOutput;
|
|
48
52
|
//# sourceMappingURL=getDestination.js.map
|