@ryan-pip/pulumi-fivetran 0.2.6 → 1.5.1
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 +30 -21
- package/connector.js +4 -2
- package/connector.js.map +1 -1
- package/dbtGitProjectConfig.d.ts +1 -1
- package/dbtGitProjectConfig.js +1 -1
- package/dbtProject.d.ts +1 -1
- package/dbtProject.js +1 -1
- package/dbtTransformation.d.ts +1 -1
- package/dbtTransformation.js +1 -1
- package/destination.d.ts +1 -22
- package/destination.js +1 -3
- package/destination.js.map +1 -1
- package/getConnector.d.ts +2 -1
- package/getConnector.js.map +1 -1
- package/getConnectors.d.ts +33 -0
- package/getConnectors.js +30 -0
- package/getConnectors.js.map +1 -0
- package/getDestination.d.ts +0 -1
- package/getDestination.js.map +1 -1
- package/getDestinations.d.ts +33 -0
- package/getDestinations.js +30 -0
- package/getDestinations.js.map +1 -0
- package/getExternalLogs.d.ts +33 -0
- package/getExternalLogs.js +30 -0
- package/getExternalLogs.js.map +1 -0
- package/getQuickstartPackage.d.ts +74 -0
- package/getQuickstartPackage.js +50 -0
- package/getQuickstartPackage.js.map +1 -0
- package/getQuickstartPackages.d.ts +51 -0
- package/getQuickstartPackages.js +48 -0
- package/getQuickstartPackages.js.map +1 -0
- package/getTransformation.d.ts +90 -0
- package/getTransformation.js +54 -0
- package/getTransformation.js.map +1 -0
- package/getTransformationProject.d.ts +87 -0
- package/getTransformationProject.js +52 -0
- package/getTransformationProject.js.map +1 -0
- package/getTransformationProjects.d.ts +38 -0
- package/getTransformationProjects.js +42 -0
- package/getTransformationProjects.js.map +1 -0
- package/getTransformations.d.ts +51 -0
- package/getTransformations.js +48 -0
- package/getTransformations.js.map +1 -0
- package/index.d.ts +33 -9
- package/index.js +40 -14
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/transformation.d.ts +151 -0
- package/transformation.js +114 -0
- package/transformation.js.map +1 -0
- package/transformationProject.d.ts +136 -0
- package/transformationProject.js +96 -0
- package/transformationProject.js.map +1 -0
- package/types/input.d.ts +2417 -114
- package/types/output.d.ts +1538 -119
- package/getLocalProcessingAgent.d.ts +0 -76
- package/getLocalProcessingAgent.js +0 -54
- package/getLocalProcessingAgent.js.map +0 -1
- package/getLocalProcessingAgents.d.ts +0 -42
- package/getLocalProcessingAgents.js +0 -46
- package/getLocalProcessingAgents.js.map +0 -1
- package/localProcessingAgent.d.ts +0 -127
- package/localProcessingAgent.js +0 -88
- package/localProcessingAgent.js.map +0 -1
|
@@ -0,0 +1,50 @@
|
|
|
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.getQuickstartPackageOutput = exports.getQuickstartPackage = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* This data source returns the metadata details of the Quickstart transformation package if a valid identifier is provided
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
16
|
+
*
|
|
17
|
+
* const test = fivetran.getQuickstartPackage({
|
|
18
|
+
* id: "id",
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
function getQuickstartPackage(args, opts) {
|
|
23
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
24
|
+
return pulumi.runtime.invoke("fivetran:index/getQuickstartPackage:getQuickstartPackage", {
|
|
25
|
+
"id": args.id,
|
|
26
|
+
}, opts);
|
|
27
|
+
}
|
|
28
|
+
exports.getQuickstartPackage = getQuickstartPackage;
|
|
29
|
+
/**
|
|
30
|
+
* This data source returns the metadata details of the Quickstart transformation package if a valid identifier is provided
|
|
31
|
+
*
|
|
32
|
+
* ## Example Usage
|
|
33
|
+
*
|
|
34
|
+
* ```typescript
|
|
35
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
36
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
37
|
+
*
|
|
38
|
+
* const test = fivetran.getQuickstartPackage({
|
|
39
|
+
* id: "id",
|
|
40
|
+
* });
|
|
41
|
+
* ```
|
|
42
|
+
*/
|
|
43
|
+
function getQuickstartPackageOutput(args, opts) {
|
|
44
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
45
|
+
return pulumi.runtime.invokeOutput("fivetran:index/getQuickstartPackage:getQuickstartPackage", {
|
|
46
|
+
"id": args.id,
|
|
47
|
+
}, opts);
|
|
48
|
+
}
|
|
49
|
+
exports.getQuickstartPackageOutput = getQuickstartPackageOutput;
|
|
50
|
+
//# sourceMappingURL=getQuickstartPackage.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getQuickstartPackage.js","sourceRoot":"","sources":["../getQuickstartPackage.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,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;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oDAKC;AAqCD;;;;;;;;;;;;;GAaG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAAiC;IAC9G,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;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gEAKC"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Returns a list of available Quickstart transformation package metadata details
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
12
|
+
*
|
|
13
|
+
* const allPackagesMetadata = fivetran.getQuickstartPackages({});
|
|
14
|
+
* ```
|
|
15
|
+
*/
|
|
16
|
+
export declare function getQuickstartPackages(args?: GetQuickstartPackagesArgs, opts?: pulumi.InvokeOptions): Promise<GetQuickstartPackagesResult>;
|
|
17
|
+
/**
|
|
18
|
+
* A collection of arguments for invoking getQuickstartPackages.
|
|
19
|
+
*/
|
|
20
|
+
export interface GetQuickstartPackagesArgs {
|
|
21
|
+
packages?: inputs.GetQuickstartPackagesPackage[];
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* A collection of values returned by getQuickstartPackages.
|
|
25
|
+
*/
|
|
26
|
+
export interface GetQuickstartPackagesResult {
|
|
27
|
+
/**
|
|
28
|
+
* The provider-assigned unique ID for this managed resource.
|
|
29
|
+
*/
|
|
30
|
+
readonly id: string;
|
|
31
|
+
readonly packages?: outputs.GetQuickstartPackagesPackage[];
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Returns a list of available Quickstart transformation package metadata details
|
|
35
|
+
*
|
|
36
|
+
* ## Example Usage
|
|
37
|
+
*
|
|
38
|
+
* ```typescript
|
|
39
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
40
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
41
|
+
*
|
|
42
|
+
* const allPackagesMetadata = fivetran.getQuickstartPackages({});
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
export declare function getQuickstartPackagesOutput(args?: GetQuickstartPackagesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetQuickstartPackagesResult>;
|
|
46
|
+
/**
|
|
47
|
+
* A collection of arguments for invoking getQuickstartPackages.
|
|
48
|
+
*/
|
|
49
|
+
export interface GetQuickstartPackagesOutputArgs {
|
|
50
|
+
packages?: pulumi.Input<pulumi.Input<inputs.GetQuickstartPackagesPackageArgs>[]>;
|
|
51
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
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.getQuickstartPackagesOutput = exports.getQuickstartPackages = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Returns a list of available Quickstart transformation package metadata details
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
16
|
+
*
|
|
17
|
+
* const allPackagesMetadata = fivetran.getQuickstartPackages({});
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
function getQuickstartPackages(args, opts) {
|
|
21
|
+
args = args || {};
|
|
22
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
23
|
+
return pulumi.runtime.invoke("fivetran:index/getQuickstartPackages:getQuickstartPackages", {
|
|
24
|
+
"packages": args.packages,
|
|
25
|
+
}, opts);
|
|
26
|
+
}
|
|
27
|
+
exports.getQuickstartPackages = getQuickstartPackages;
|
|
28
|
+
/**
|
|
29
|
+
* Returns a list of available Quickstart transformation package metadata details
|
|
30
|
+
*
|
|
31
|
+
* ## Example Usage
|
|
32
|
+
*
|
|
33
|
+
* ```typescript
|
|
34
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
35
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
36
|
+
*
|
|
37
|
+
* const allPackagesMetadata = fivetran.getQuickstartPackages({});
|
|
38
|
+
* ```
|
|
39
|
+
*/
|
|
40
|
+
function getQuickstartPackagesOutput(args, opts) {
|
|
41
|
+
args = args || {};
|
|
42
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
43
|
+
return pulumi.runtime.invokeOutput("fivetran:index/getQuickstartPackages:getQuickstartPackages", {
|
|
44
|
+
"packages": args.packages,
|
|
45
|
+
}, opts);
|
|
46
|
+
}
|
|
47
|
+
exports.getQuickstartPackagesOutput = getQuickstartPackagesOutput;
|
|
48
|
+
//# sourceMappingURL=getQuickstartPackages.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getQuickstartPackages.js","sourceRoot":"","sources":["../getQuickstartPackages.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,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sDAMC;AAmBD;;;;;;;;;;;GAWG;AACH,SAAgB,2BAA2B,CAAC,IAAsC,EAAE,IAAiC;IACjH,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,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kEAMC"}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Returns transformation details if a valid identifier was provided
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
12
|
+
*
|
|
13
|
+
* const test = fivetran.getTransformation({
|
|
14
|
+
* id: "id",
|
|
15
|
+
* });
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
export declare function getTransformation(args: GetTransformationArgs, opts?: pulumi.InvokeOptions): Promise<GetTransformationResult>;
|
|
19
|
+
/**
|
|
20
|
+
* A collection of arguments for invoking getTransformation.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetTransformationArgs {
|
|
23
|
+
/**
|
|
24
|
+
* The unique identifier for the Transformation within the Fivetran system.
|
|
25
|
+
*/
|
|
26
|
+
id: string;
|
|
27
|
+
schedule?: inputs.GetTransformationSchedule;
|
|
28
|
+
transformationConfig?: inputs.GetTransformationTransformationConfig;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* A collection of values returned by getTransformation.
|
|
32
|
+
*/
|
|
33
|
+
export interface GetTransformationResult {
|
|
34
|
+
/**
|
|
35
|
+
* The timestamp of when the transformation was created in your account.
|
|
36
|
+
*/
|
|
37
|
+
readonly createdAt: string;
|
|
38
|
+
/**
|
|
39
|
+
* The unique identifier for the User within the Fivetran system who created the transformation.
|
|
40
|
+
*/
|
|
41
|
+
readonly createdById: string;
|
|
42
|
+
/**
|
|
43
|
+
* The unique identifier for the Transformation within the Fivetran system.
|
|
44
|
+
*/
|
|
45
|
+
readonly id: string;
|
|
46
|
+
/**
|
|
47
|
+
* Identifiers of related models.
|
|
48
|
+
*/
|
|
49
|
+
readonly outputModelNames: string[];
|
|
50
|
+
/**
|
|
51
|
+
* The field indicating whether the transformation will be set into the paused state. By default, the value is false.
|
|
52
|
+
*/
|
|
53
|
+
readonly paused: boolean;
|
|
54
|
+
readonly schedule?: outputs.GetTransformationSchedule;
|
|
55
|
+
/**
|
|
56
|
+
* Status of transformation Project (NOT_READY, READY, ERROR).
|
|
57
|
+
*/
|
|
58
|
+
readonly status: string;
|
|
59
|
+
readonly transformationConfig?: outputs.GetTransformationTransformationConfig;
|
|
60
|
+
/**
|
|
61
|
+
* Transformation type. The following values are supported: DBT_CORE, QUICKSTART.
|
|
62
|
+
*/
|
|
63
|
+
readonly type: string;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Returns transformation details if a valid identifier was provided
|
|
67
|
+
*
|
|
68
|
+
* ## Example Usage
|
|
69
|
+
*
|
|
70
|
+
* ```typescript
|
|
71
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
72
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
73
|
+
*
|
|
74
|
+
* const test = fivetran.getTransformation({
|
|
75
|
+
* id: "id",
|
|
76
|
+
* });
|
|
77
|
+
* ```
|
|
78
|
+
*/
|
|
79
|
+
export declare function getTransformationOutput(args: GetTransformationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTransformationResult>;
|
|
80
|
+
/**
|
|
81
|
+
* A collection of arguments for invoking getTransformation.
|
|
82
|
+
*/
|
|
83
|
+
export interface GetTransformationOutputArgs {
|
|
84
|
+
/**
|
|
85
|
+
* The unique identifier for the Transformation within the Fivetran system.
|
|
86
|
+
*/
|
|
87
|
+
id: pulumi.Input<string>;
|
|
88
|
+
schedule?: pulumi.Input<inputs.GetTransformationScheduleArgs>;
|
|
89
|
+
transformationConfig?: pulumi.Input<inputs.GetTransformationTransformationConfigArgs>;
|
|
90
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
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.getTransformationOutput = exports.getTransformation = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Returns transformation details if a valid identifier was provided
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
16
|
+
*
|
|
17
|
+
* const test = fivetran.getTransformation({
|
|
18
|
+
* id: "id",
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
function getTransformation(args, opts) {
|
|
23
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
24
|
+
return pulumi.runtime.invoke("fivetran:index/getTransformation:getTransformation", {
|
|
25
|
+
"id": args.id,
|
|
26
|
+
"schedule": args.schedule,
|
|
27
|
+
"transformationConfig": args.transformationConfig,
|
|
28
|
+
}, opts);
|
|
29
|
+
}
|
|
30
|
+
exports.getTransformation = getTransformation;
|
|
31
|
+
/**
|
|
32
|
+
* Returns transformation details if a valid identifier was provided
|
|
33
|
+
*
|
|
34
|
+
* ## Example Usage
|
|
35
|
+
*
|
|
36
|
+
* ```typescript
|
|
37
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
38
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
39
|
+
*
|
|
40
|
+
* const test = fivetran.getTransformation({
|
|
41
|
+
* id: "id",
|
|
42
|
+
* });
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
function getTransformationOutput(args, opts) {
|
|
46
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
47
|
+
return pulumi.runtime.invokeOutput("fivetran:index/getTransformation:getTransformation", {
|
|
48
|
+
"id": args.id,
|
|
49
|
+
"schedule": args.schedule,
|
|
50
|
+
"transformationConfig": args.transformationConfig,
|
|
51
|
+
}, opts);
|
|
52
|
+
}
|
|
53
|
+
exports.getTransformationOutput = getTransformationOutput;
|
|
54
|
+
//# sourceMappingURL=getTransformation.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getTransformation.js","sourceRoot":"","sources":["../getTransformation.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;KACpD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8CAOC;AAiDD;;;;;;;;;;;;;GAaG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAAiC;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,oDAAoD,EAAE;QACrF,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;KACpD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,0DAOC"}
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Returns transformation project details if a valid identifier was provided
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
12
|
+
*
|
|
13
|
+
* const test = fivetran.getTransformationProject({
|
|
14
|
+
* id: "id",
|
|
15
|
+
* });
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
export declare function getTransformationProject(args: GetTransformationProjectArgs, opts?: pulumi.InvokeOptions): Promise<GetTransformationProjectResult>;
|
|
19
|
+
/**
|
|
20
|
+
* A collection of arguments for invoking getTransformationProject.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetTransformationProjectArgs {
|
|
23
|
+
/**
|
|
24
|
+
* The unique identifier for the transformation Project within the Fivetran system.
|
|
25
|
+
*/
|
|
26
|
+
id: string;
|
|
27
|
+
projectConfig?: inputs.GetTransformationProjectProjectConfig;
|
|
28
|
+
}
|
|
29
|
+
/**
|
|
30
|
+
* A collection of values returned by getTransformationProject.
|
|
31
|
+
*/
|
|
32
|
+
export interface GetTransformationProjectResult {
|
|
33
|
+
/**
|
|
34
|
+
* The timestamp of the transformation Project creation.
|
|
35
|
+
*/
|
|
36
|
+
readonly createdAt: string;
|
|
37
|
+
/**
|
|
38
|
+
* The unique identifier for the User within the Fivetran system who created the dbt Project.
|
|
39
|
+
*/
|
|
40
|
+
readonly createdById: string;
|
|
41
|
+
/**
|
|
42
|
+
* List of environment variables defined as key-value pairs in the raw string format using = as a separator. The variable name should have the DBT_ prefix and can contain A-Z, 0-9, dash, underscore, or dot characters. Example: "DBT*VARIABLE=variable*value"
|
|
43
|
+
*/
|
|
44
|
+
readonly errors: string[];
|
|
45
|
+
/**
|
|
46
|
+
* The unique identifier for the group within the Fivetran system.
|
|
47
|
+
*/
|
|
48
|
+
readonly groupId: string;
|
|
49
|
+
/**
|
|
50
|
+
* The unique identifier for the transformation Project within the Fivetran system.
|
|
51
|
+
*/
|
|
52
|
+
readonly id: string;
|
|
53
|
+
readonly projectConfig?: outputs.GetTransformationProjectProjectConfig;
|
|
54
|
+
/**
|
|
55
|
+
* Status of transformation Project (NOT_READY, READY, ERROR).
|
|
56
|
+
*/
|
|
57
|
+
readonly status: string;
|
|
58
|
+
/**
|
|
59
|
+
* Transformation project type.
|
|
60
|
+
*/
|
|
61
|
+
readonly type: string;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* Returns transformation project details if a valid identifier was provided
|
|
65
|
+
*
|
|
66
|
+
* ## Example Usage
|
|
67
|
+
*
|
|
68
|
+
* ```typescript
|
|
69
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
70
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
71
|
+
*
|
|
72
|
+
* const test = fivetran.getTransformationProject({
|
|
73
|
+
* id: "id",
|
|
74
|
+
* });
|
|
75
|
+
* ```
|
|
76
|
+
*/
|
|
77
|
+
export declare function getTransformationProjectOutput(args: GetTransformationProjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTransformationProjectResult>;
|
|
78
|
+
/**
|
|
79
|
+
* A collection of arguments for invoking getTransformationProject.
|
|
80
|
+
*/
|
|
81
|
+
export interface GetTransformationProjectOutputArgs {
|
|
82
|
+
/**
|
|
83
|
+
* The unique identifier for the transformation Project within the Fivetran system.
|
|
84
|
+
*/
|
|
85
|
+
id: pulumi.Input<string>;
|
|
86
|
+
projectConfig?: pulumi.Input<inputs.GetTransformationProjectProjectConfigArgs>;
|
|
87
|
+
}
|
|
@@ -0,0 +1,52 @@
|
|
|
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.getTransformationProjectOutput = exports.getTransformationProject = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Returns transformation project details if a valid identifier was provided
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
16
|
+
*
|
|
17
|
+
* const test = fivetran.getTransformationProject({
|
|
18
|
+
* id: "id",
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
function getTransformationProject(args, opts) {
|
|
23
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
24
|
+
return pulumi.runtime.invoke("fivetran:index/getTransformationProject:getTransformationProject", {
|
|
25
|
+
"id": args.id,
|
|
26
|
+
"projectConfig": args.projectConfig,
|
|
27
|
+
}, opts);
|
|
28
|
+
}
|
|
29
|
+
exports.getTransformationProject = getTransformationProject;
|
|
30
|
+
/**
|
|
31
|
+
* Returns transformation project details if a valid identifier was provided
|
|
32
|
+
*
|
|
33
|
+
* ## Example Usage
|
|
34
|
+
*
|
|
35
|
+
* ```typescript
|
|
36
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
37
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
38
|
+
*
|
|
39
|
+
* const test = fivetran.getTransformationProject({
|
|
40
|
+
* id: "id",
|
|
41
|
+
* });
|
|
42
|
+
* ```
|
|
43
|
+
*/
|
|
44
|
+
function getTransformationProjectOutput(args, opts) {
|
|
45
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
46
|
+
return pulumi.runtime.invokeOutput("fivetran:index/getTransformationProject:getTransformationProject", {
|
|
47
|
+
"id": args.id,
|
|
48
|
+
"projectConfig": args.projectConfig,
|
|
49
|
+
}, opts);
|
|
50
|
+
}
|
|
51
|
+
exports.getTransformationProjectOutput = getTransformationProjectOutput;
|
|
52
|
+
//# sourceMappingURL=getTransformationProject.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getTransformationProject.js","sourceRoot":"","sources":["../getTransformationProject.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,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4DAMC;AA+CD;;;;;;;;;;;;;GAaG;AACH,SAAgB,8BAA8B,CAAC,IAAwC,EAAE,IAAiC;IACtH,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,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wEAMC"}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Returns a list of all transformation projects available via API within your Fivetran account.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
11
|
+
*
|
|
12
|
+
* const test = fivetran.getTransformationProjects({});
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
export declare function getTransformationProjects(opts?: pulumi.InvokeOptions): Promise<GetTransformationProjectsResult>;
|
|
16
|
+
/**
|
|
17
|
+
* A collection of values returned by getTransformationProjects.
|
|
18
|
+
*/
|
|
19
|
+
export interface GetTransformationProjectsResult {
|
|
20
|
+
/**
|
|
21
|
+
* The provider-assigned unique ID for this managed resource.
|
|
22
|
+
*/
|
|
23
|
+
readonly id: string;
|
|
24
|
+
readonly projects: outputs.GetTransformationProjectsProject[];
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Returns a list of all transformation projects available via API within your Fivetran account.
|
|
28
|
+
*
|
|
29
|
+
* ## Example Usage
|
|
30
|
+
*
|
|
31
|
+
* ```typescript
|
|
32
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
33
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
34
|
+
*
|
|
35
|
+
* const test = fivetran.getTransformationProjects({});
|
|
36
|
+
* ```
|
|
37
|
+
*/
|
|
38
|
+
export declare function getTransformationProjectsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTransformationProjectsResult>;
|
|
@@ -0,0 +1,42 @@
|
|
|
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.getTransformationProjectsOutput = exports.getTransformationProjects = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Returns a list of all transformation projects available via API within your Fivetran account.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
16
|
+
*
|
|
17
|
+
* const test = fivetran.getTransformationProjects({});
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
function getTransformationProjects(opts) {
|
|
21
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
22
|
+
return pulumi.runtime.invoke("fivetran:index/getTransformationProjects:getTransformationProjects", {}, opts);
|
|
23
|
+
}
|
|
24
|
+
exports.getTransformationProjects = getTransformationProjects;
|
|
25
|
+
/**
|
|
26
|
+
* Returns a list of all transformation projects available via API within your Fivetran account.
|
|
27
|
+
*
|
|
28
|
+
* ## Example Usage
|
|
29
|
+
*
|
|
30
|
+
* ```typescript
|
|
31
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
32
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
33
|
+
*
|
|
34
|
+
* const test = fivetran.getTransformationProjects({});
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
function getTransformationProjectsOutput(opts) {
|
|
38
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
39
|
+
return pulumi.runtime.invokeOutput("fivetran:index/getTransformationProjects:getTransformationProjects", {}, opts);
|
|
40
|
+
}
|
|
41
|
+
exports.getTransformationProjectsOutput = getTransformationProjectsOutput;
|
|
42
|
+
//# sourceMappingURL=getTransformationProjects.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getTransformationProjects.js","sourceRoot":"","sources":["../getTransformationProjects.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,yBAAyB,CAAC,IAA2B;IACjE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oEAAoE,EAAE,EAClG,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,8DAIC;AAYD;;;;;;;;;;;GAWG;AACH,SAAgB,+BAA+B,CAAC,IAAiC;IAC7E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,oEAAoE,EAAE,EACxG,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,0EAIC"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Returns a list of all transformations available via API within your Fivetran account.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
12
|
+
*
|
|
13
|
+
* const test = fivetran.getTransformations({});
|
|
14
|
+
* ```
|
|
15
|
+
*/
|
|
16
|
+
export declare function getTransformations(args?: GetTransformationsArgs, opts?: pulumi.InvokeOptions): Promise<GetTransformationsResult>;
|
|
17
|
+
/**
|
|
18
|
+
* A collection of arguments for invoking getTransformations.
|
|
19
|
+
*/
|
|
20
|
+
export interface GetTransformationsArgs {
|
|
21
|
+
transformations?: inputs.GetTransformationsTransformation[];
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* A collection of values returned by getTransformations.
|
|
25
|
+
*/
|
|
26
|
+
export interface GetTransformationsResult {
|
|
27
|
+
/**
|
|
28
|
+
* The provider-assigned unique ID for this managed resource.
|
|
29
|
+
*/
|
|
30
|
+
readonly id: string;
|
|
31
|
+
readonly transformations?: outputs.GetTransformationsTransformation[];
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Returns a list of all transformations available via API within your Fivetran account.
|
|
35
|
+
*
|
|
36
|
+
* ## Example Usage
|
|
37
|
+
*
|
|
38
|
+
* ```typescript
|
|
39
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
40
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
41
|
+
*
|
|
42
|
+
* const test = fivetran.getTransformations({});
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
export declare function getTransformationsOutput(args?: GetTransformationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTransformationsResult>;
|
|
46
|
+
/**
|
|
47
|
+
* A collection of arguments for invoking getTransformations.
|
|
48
|
+
*/
|
|
49
|
+
export interface GetTransformationsOutputArgs {
|
|
50
|
+
transformations?: pulumi.Input<pulumi.Input<inputs.GetTransformationsTransformationArgs>[]>;
|
|
51
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
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.getTransformationsOutput = exports.getTransformations = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Returns a list of all transformations available via API within your Fivetran account.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
16
|
+
*
|
|
17
|
+
* const test = fivetran.getTransformations({});
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
function getTransformations(args, opts) {
|
|
21
|
+
args = args || {};
|
|
22
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
23
|
+
return pulumi.runtime.invoke("fivetran:index/getTransformations:getTransformations", {
|
|
24
|
+
"transformations": args.transformations,
|
|
25
|
+
}, opts);
|
|
26
|
+
}
|
|
27
|
+
exports.getTransformations = getTransformations;
|
|
28
|
+
/**
|
|
29
|
+
* Returns a list of all transformations available via API within your Fivetran account.
|
|
30
|
+
*
|
|
31
|
+
* ## Example Usage
|
|
32
|
+
*
|
|
33
|
+
* ```typescript
|
|
34
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
35
|
+
* import * as fivetran from "@pulumi/fivetran";
|
|
36
|
+
*
|
|
37
|
+
* const test = fivetran.getTransformations({});
|
|
38
|
+
* ```
|
|
39
|
+
*/
|
|
40
|
+
function getTransformationsOutput(args, opts) {
|
|
41
|
+
args = args || {};
|
|
42
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
43
|
+
return pulumi.runtime.invokeOutput("fivetran:index/getTransformations:getTransformations", {
|
|
44
|
+
"transformations": args.transformations,
|
|
45
|
+
}, opts);
|
|
46
|
+
}
|
|
47
|
+
exports.getTransformationsOutput = getTransformationsOutput;
|
|
48
|
+
//# sourceMappingURL=getTransformations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getTransformations.js","sourceRoot":"","sources":["../getTransformations.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,kBAAkB,CAAC,IAA6B,EAAE,IAA2B;IACzF,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,sDAAsD,EAAE;QACjF,iBAAiB,EAAE,IAAI,CAAC,eAAe;KAC1C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gDAMC;AAmBD;;;;;;;;;;;GAWG;AACH,SAAgB,wBAAwB,CAAC,IAAmC,EAAE,IAAiC;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,sDAAsD,EAAE;QACvF,iBAAiB,EAAE,IAAI,CAAC,eAAe;KAC1C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4DAMC"}
|