@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.
Files changed (64) hide show
  1. package/connector.d.ts +30 -21
  2. package/connector.js +4 -2
  3. package/connector.js.map +1 -1
  4. package/dbtGitProjectConfig.d.ts +1 -1
  5. package/dbtGitProjectConfig.js +1 -1
  6. package/dbtProject.d.ts +1 -1
  7. package/dbtProject.js +1 -1
  8. package/dbtTransformation.d.ts +1 -1
  9. package/dbtTransformation.js +1 -1
  10. package/destination.d.ts +1 -22
  11. package/destination.js +1 -3
  12. package/destination.js.map +1 -1
  13. package/getConnector.d.ts +2 -1
  14. package/getConnector.js.map +1 -1
  15. package/getConnectors.d.ts +33 -0
  16. package/getConnectors.js +30 -0
  17. package/getConnectors.js.map +1 -0
  18. package/getDestination.d.ts +0 -1
  19. package/getDestination.js.map +1 -1
  20. package/getDestinations.d.ts +33 -0
  21. package/getDestinations.js +30 -0
  22. package/getDestinations.js.map +1 -0
  23. package/getExternalLogs.d.ts +33 -0
  24. package/getExternalLogs.js +30 -0
  25. package/getExternalLogs.js.map +1 -0
  26. package/getQuickstartPackage.d.ts +74 -0
  27. package/getQuickstartPackage.js +50 -0
  28. package/getQuickstartPackage.js.map +1 -0
  29. package/getQuickstartPackages.d.ts +51 -0
  30. package/getQuickstartPackages.js +48 -0
  31. package/getQuickstartPackages.js.map +1 -0
  32. package/getTransformation.d.ts +90 -0
  33. package/getTransformation.js +54 -0
  34. package/getTransformation.js.map +1 -0
  35. package/getTransformationProject.d.ts +87 -0
  36. package/getTransformationProject.js +52 -0
  37. package/getTransformationProject.js.map +1 -0
  38. package/getTransformationProjects.d.ts +38 -0
  39. package/getTransformationProjects.js +42 -0
  40. package/getTransformationProjects.js.map +1 -0
  41. package/getTransformations.d.ts +51 -0
  42. package/getTransformations.js +48 -0
  43. package/getTransformations.js.map +1 -0
  44. package/index.d.ts +33 -9
  45. package/index.js +40 -14
  46. package/index.js.map +1 -1
  47. package/package.json +1 -1
  48. package/transformation.d.ts +151 -0
  49. package/transformation.js +114 -0
  50. package/transformation.js.map +1 -0
  51. package/transformationProject.d.ts +136 -0
  52. package/transformationProject.js +96 -0
  53. package/transformationProject.js.map +1 -0
  54. package/types/input.d.ts +2417 -114
  55. package/types/output.d.ts +1538 -119
  56. package/getLocalProcessingAgent.d.ts +0 -76
  57. package/getLocalProcessingAgent.js +0 -54
  58. package/getLocalProcessingAgent.js.map +0 -1
  59. package/getLocalProcessingAgents.d.ts +0 -42
  60. package/getLocalProcessingAgents.js +0 -46
  61. package/getLocalProcessingAgents.js.map +0 -1
  62. package/localProcessingAgent.d.ts +0 -127
  63. package/localProcessingAgent.js +0 -88
  64. package/localProcessingAgent.js.map +0 -1
package/connector.d.ts CHANGED
@@ -32,6 +32,16 @@ export declare class Connector extends pulumi.CustomResource {
32
32
  * The timestamp of the time the connector was created in your account.
33
33
  */
34
34
  readonly createdAt: pulumi.Output<string>;
35
+ /**
36
+ * The level of data delay notification threshold. Possible values: LOW, NORMAL, HIGH, CUSTOM. The default value NORMAL.
37
+ * CUSTOM is only available for customers using the Enterprise plan or above.
38
+ */
39
+ readonly dataDelaySensitivity: pulumi.Output<string | undefined>;
40
+ /**
41
+ * Custom sync delay notification threshold in minutes. The default value is 0. This parameter is only used when
42
+ * dataDelaySensitivity set to CUSTOM.
43
+ */
44
+ readonly dataDelayThreshold: pulumi.Output<number>;
35
45
  readonly destinationSchema: pulumi.Output<outputs.ConnectorDestinationSchema | undefined>;
36
46
  /**
37
47
  * The unique identifier for the Group (Destination) within the Fivetran system.
@@ -42,13 +52,6 @@ export declare class Connector extends pulumi.CustomResource {
42
52
  * value is specified, the system will try to associate the connection with an existing agent.
43
53
  */
44
54
  readonly hybridDeploymentAgentId: pulumi.Output<string | undefined>;
45
- /**
46
- * (Deprecated) The hybrid deployment agent ID that refers to the controller created for the group the connection belongs
47
- * to. If the value is specified, the system will try to associate the connection with an existing agent.
48
- *
49
- * @deprecated This field is Deprecated, please follow the 1.4.0 migration guide to update the schema
50
- */
51
- readonly localProcessingAgentId: pulumi.Output<string | undefined>;
52
55
  /**
53
56
  * The name used both as the connector's name within the Fivetran system and as the source schema's name within your
54
57
  * destination.
@@ -110,6 +113,16 @@ export interface ConnectorState {
110
113
  * The timestamp of the time the connector was created in your account.
111
114
  */
112
115
  createdAt?: pulumi.Input<string>;
116
+ /**
117
+ * The level of data delay notification threshold. Possible values: LOW, NORMAL, HIGH, CUSTOM. The default value NORMAL.
118
+ * CUSTOM is only available for customers using the Enterprise plan or above.
119
+ */
120
+ dataDelaySensitivity?: pulumi.Input<string>;
121
+ /**
122
+ * Custom sync delay notification threshold in minutes. The default value is 0. This parameter is only used when
123
+ * dataDelaySensitivity set to CUSTOM.
124
+ */
125
+ dataDelayThreshold?: pulumi.Input<number>;
113
126
  destinationSchema?: pulumi.Input<inputs.ConnectorDestinationSchema>;
114
127
  /**
115
128
  * The unique identifier for the Group (Destination) within the Fivetran system.
@@ -120,13 +133,6 @@ export interface ConnectorState {
120
133
  * value is specified, the system will try to associate the connection with an existing agent.
121
134
  */
122
135
  hybridDeploymentAgentId?: pulumi.Input<string>;
123
- /**
124
- * (Deprecated) The hybrid deployment agent ID that refers to the controller created for the group the connection belongs
125
- * to. If the value is specified, the system will try to associate the connection with an existing agent.
126
- *
127
- * @deprecated This field is Deprecated, please follow the 1.4.0 migration guide to update the schema
128
- */
129
- localProcessingAgentId?: pulumi.Input<string>;
130
136
  /**
131
137
  * The name used both as the connector's name within the Fivetran system and as the source schema's name within your
132
138
  * destination.
@@ -172,6 +178,16 @@ export interface ConnectorState {
172
178
  export interface ConnectorArgs {
173
179
  auth?: pulumi.Input<inputs.ConnectorAuth>;
174
180
  config?: pulumi.Input<inputs.ConnectorConfig>;
181
+ /**
182
+ * The level of data delay notification threshold. Possible values: LOW, NORMAL, HIGH, CUSTOM. The default value NORMAL.
183
+ * CUSTOM is only available for customers using the Enterprise plan or above.
184
+ */
185
+ dataDelaySensitivity?: pulumi.Input<string>;
186
+ /**
187
+ * Custom sync delay notification threshold in minutes. The default value is 0. This parameter is only used when
188
+ * dataDelaySensitivity set to CUSTOM.
189
+ */
190
+ dataDelayThreshold?: pulumi.Input<number>;
175
191
  destinationSchema?: pulumi.Input<inputs.ConnectorDestinationSchema>;
176
192
  /**
177
193
  * The unique identifier for the Group (Destination) within the Fivetran system.
@@ -182,13 +198,6 @@ export interface ConnectorArgs {
182
198
  * value is specified, the system will try to associate the connection with an existing agent.
183
199
  */
184
200
  hybridDeploymentAgentId?: pulumi.Input<string>;
185
- /**
186
- * (Deprecated) The hybrid deployment agent ID that refers to the controller created for the group the connection belongs
187
- * to. If the value is specified, the system will try to associate the connection with an existing agent.
188
- *
189
- * @deprecated This field is Deprecated, please follow the 1.4.0 migration guide to update the schema
190
- */
191
- localProcessingAgentId?: pulumi.Input<string>;
192
201
  /**
193
202
  * Possible values: Directly, SshTunnel, ProxyAgent.
194
203
  */
package/connector.js CHANGED
@@ -42,10 +42,11 @@ class Connector extends pulumi.CustomResource {
42
42
  resourceInputs["config"] = state ? state.config : undefined;
43
43
  resourceInputs["connectedBy"] = state ? state.connectedBy : undefined;
44
44
  resourceInputs["createdAt"] = state ? state.createdAt : undefined;
45
+ resourceInputs["dataDelaySensitivity"] = state ? state.dataDelaySensitivity : undefined;
46
+ resourceInputs["dataDelayThreshold"] = state ? state.dataDelayThreshold : undefined;
45
47
  resourceInputs["destinationSchema"] = state ? state.destinationSchema : undefined;
46
48
  resourceInputs["groupId"] = state ? state.groupId : undefined;
47
49
  resourceInputs["hybridDeploymentAgentId"] = state ? state.hybridDeploymentAgentId : undefined;
48
- resourceInputs["localProcessingAgentId"] = state ? state.localProcessingAgentId : undefined;
49
50
  resourceInputs["name"] = state ? state.name : undefined;
50
51
  resourceInputs["networkingMethod"] = state ? state.networkingMethod : undefined;
51
52
  resourceInputs["privateLinkId"] = state ? state.privateLinkId : undefined;
@@ -66,10 +67,11 @@ class Connector extends pulumi.CustomResource {
66
67
  }
67
68
  resourceInputs["auth"] = args ? args.auth : undefined;
68
69
  resourceInputs["config"] = args ? args.config : undefined;
70
+ resourceInputs["dataDelaySensitivity"] = args ? args.dataDelaySensitivity : undefined;
71
+ resourceInputs["dataDelayThreshold"] = args ? args.dataDelayThreshold : undefined;
69
72
  resourceInputs["destinationSchema"] = args ? args.destinationSchema : undefined;
70
73
  resourceInputs["groupId"] = args ? args.groupId : undefined;
71
74
  resourceInputs["hybridDeploymentAgentId"] = args ? args.hybridDeploymentAgentId : undefined;
72
- resourceInputs["localProcessingAgentId"] = args ? args.localProcessingAgentId : undefined;
73
75
  resourceInputs["networkingMethod"] = args ? args.networkingMethod : undefined;
74
76
  resourceInputs["privateLinkId"] = args ? args.privateLinkId : undefined;
75
77
  resourceInputs["proxyAgentId"] = args ? args.proxyAgentId : undefined;
package/connector.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"connector.js","sourceRoot":"","sources":["../connector.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"connector.js","sourceRoot":"","sources":["../connector.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;GAIG;AACH,MAAa,SAAU,SAAQ,MAAM,CAAC,cAAc;IAChD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAsB,EAAE,IAAmC;QACpH,OAAO,IAAI,SAAS,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAChE,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,SAAS,CAAC,YAAY,CAAC;IAC1D,CAAC;IA+ED,YAAY,IAAY,EAAE,WAA4C,EAAE,IAAmC;QACvG,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAyC,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9F,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;SACrF;aAAM;YACH,MAAM,IAAI,GAAG,WAAwC,CAAC;YACtD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,yBAAyB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAClD,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAC9C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,SAAS,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC9D,CAAC;;AA7JL,8BA8JC;AAhJG,gBAAgB;AACO,sBAAY,GAAG,oCAAoC,CAAC"}
@@ -1,6 +1,6 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
- * Resource is in ALPHA state.
3
+ * This resource is Deprecated, please follow the 1.5.0 migration guide to update the schema.
4
4
  *
5
5
  * This resource allows you to add and manage dbt Git Projects Configs.
6
6
  *
@@ -6,7 +6,7 @@ exports.DbtGitProjectConfig = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
- * Resource is in ALPHA state.
9
+ * This resource is Deprecated, please follow the 1.5.0 migration guide to update the schema.
10
10
  *
11
11
  * This resource allows you to add and manage dbt Git Projects Configs.
12
12
  *
package/dbtProject.d.ts CHANGED
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "./types/input";
3
3
  import * as outputs from "./types/output";
4
4
  /**
5
- * Resource is in ALPHA state.
5
+ * This resource is Deprecated, please follow the 1.5.0 migration guide to update the schema.
6
6
  *
7
7
  * This resource allows you to add, manage and delete dbt Projects in your account.
8
8
  *
package/dbtProject.js CHANGED
@@ -6,7 +6,7 @@ exports.DbtProject = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
- * Resource is in ALPHA state.
9
+ * This resource is Deprecated, please follow the 1.5.0 migration guide to update the schema.
10
10
  *
11
11
  * This resource allows you to add, manage and delete dbt Projects in your account.
12
12
  *
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  import * as inputs from "./types/input";
3
3
  import * as outputs from "./types/output";
4
4
  /**
5
- * Resource is in ALPHA state.
5
+ * This resource is Deprecated, please follow the 1.5.0 migration guide to update the schema.
6
6
  *
7
7
  * This resource allows you to add, manage and delete dbt Transformations for existing dbt Model.
8
8
  * To retrieve available dbt Models use this [Retrieve dbt Project models](https://fivetran.com/docs/rest-api/dbt-transformation-management#retrievedbtprojectmodels) endpoint.
@@ -6,7 +6,7 @@ exports.DbtTransformation = void 0;
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
- * Resource is in ALPHA state.
9
+ * This resource is Deprecated, please follow the 1.5.0 migration guide to update the schema.
10
10
  *
11
11
  * This resource allows you to add, manage and delete dbt Transformations for existing dbt Model.
12
12
  * To retrieve available dbt Models use this [Retrieve dbt Project models](https://fivetran.com/docs/rest-api/dbt-transformation-management#retrievedbtprojectmodels) endpoint.
package/destination.d.ts CHANGED
@@ -6,7 +6,7 @@ import * as outputs from "./types/output";
6
6
  *
7
7
  * 1. To import an existing `fivetran_destination` resource into your Terraform state, you need to get **Destination Group ID** on the destination page in your Fivetran dashboard.
8
8
  *
9
- * To retrieve existing groups, use the [fivetran_groups data source](/docs/data-sources/groups).
9
+ * To retrieve existing groups, use the [fivetran_groups data source](/providers/fivetran/fivetran/latest/docs/data-sources/groups).
10
10
  *
11
11
  * 2. Define an empty resource in your `.tf` configuration:
12
12
  *
@@ -60,13 +60,6 @@ export declare class Destination extends pulumi.CustomResource {
60
60
  * value is specified, the system will try to associate the connection with an existing agent.
61
61
  */
62
62
  readonly hybridDeploymentAgentId: pulumi.Output<string | undefined>;
63
- /**
64
- * (Deprecated) The hybrid deployment agent ID that refers to the controller created for the group the connection belongs
65
- * to. If the value is specified, the system will try to associate the connection with an existing agent.
66
- *
67
- * @deprecated This field is Deprecated, please follow the 1.4.0 migration guide to update the schema
68
- */
69
- readonly localProcessingAgentId: pulumi.Output<string | undefined>;
70
63
  /**
71
64
  * Possible values: Directly, SshTunnel, ProxyAgent.
72
65
  */
@@ -135,13 +128,6 @@ export interface DestinationState {
135
128
  * value is specified, the system will try to associate the connection with an existing agent.
136
129
  */
137
130
  hybridDeploymentAgentId?: pulumi.Input<string>;
138
- /**
139
- * (Deprecated) The hybrid deployment agent ID that refers to the controller created for the group the connection belongs
140
- * to. If the value is specified, the system will try to associate the connection with an existing agent.
141
- *
142
- * @deprecated This field is Deprecated, please follow the 1.4.0 migration guide to update the schema
143
- */
144
- localProcessingAgentId?: pulumi.Input<string>;
145
131
  /**
146
132
  * Possible values: Directly, SshTunnel, ProxyAgent.
147
133
  */
@@ -202,13 +188,6 @@ export interface DestinationArgs {
202
188
  * value is specified, the system will try to associate the connection with an existing agent.
203
189
  */
204
190
  hybridDeploymentAgentId?: pulumi.Input<string>;
205
- /**
206
- * (Deprecated) The hybrid deployment agent ID that refers to the controller created for the group the connection belongs
207
- * to. If the value is specified, the system will try to associate the connection with an existing agent.
208
- *
209
- * @deprecated This field is Deprecated, please follow the 1.4.0 migration guide to update the schema
210
- */
211
- localProcessingAgentId?: pulumi.Input<string>;
212
191
  /**
213
192
  * Possible values: Directly, SshTunnel, ProxyAgent.
214
193
  */
package/destination.js CHANGED
@@ -10,7 +10,7 @@ const utilities = require("./utilities");
10
10
  *
11
11
  * 1. To import an existing `fivetran_destination` resource into your Terraform state, you need to get **Destination Group ID** on the destination page in your Fivetran dashboard.
12
12
  *
13
- * To retrieve existing groups, use the [fivetran_groups data source](/docs/data-sources/groups).
13
+ * To retrieve existing groups, use the [fivetran_groups data source](/providers/fivetran/fivetran/latest/docs/data-sources/groups).
14
14
  *
15
15
  * 2. Define an empty resource in your `.tf` configuration:
16
16
  *
@@ -66,7 +66,6 @@ class Destination extends pulumi.CustomResource {
66
66
  resourceInputs["daylightSavingTimeEnabled"] = state ? state.daylightSavingTimeEnabled : undefined;
67
67
  resourceInputs["groupId"] = state ? state.groupId : undefined;
68
68
  resourceInputs["hybridDeploymentAgentId"] = state ? state.hybridDeploymentAgentId : undefined;
69
- resourceInputs["localProcessingAgentId"] = state ? state.localProcessingAgentId : undefined;
70
69
  resourceInputs["networkingMethod"] = state ? state.networkingMethod : undefined;
71
70
  resourceInputs["privateLinkId"] = state ? state.privateLinkId : undefined;
72
71
  resourceInputs["region"] = state ? state.region : undefined;
@@ -96,7 +95,6 @@ class Destination extends pulumi.CustomResource {
96
95
  resourceInputs["daylightSavingTimeEnabled"] = args ? args.daylightSavingTimeEnabled : undefined;
97
96
  resourceInputs["groupId"] = args ? args.groupId : undefined;
98
97
  resourceInputs["hybridDeploymentAgentId"] = args ? args.hybridDeploymentAgentId : undefined;
99
- resourceInputs["localProcessingAgentId"] = args ? args.localProcessingAgentId : undefined;
100
98
  resourceInputs["networkingMethod"] = args ? args.networkingMethod : undefined;
101
99
  resourceInputs["privateLinkId"] = args ? args.privateLinkId : undefined;
102
100
  resourceInputs["region"] = args ? args.region : undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"destination.js","sourceRoot":"","sources":["../destination.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,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,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;IAyED,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,2BAA2B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClG,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9F,cAAc,CAAC,wBAAwB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,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,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;SACrF;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,cAAc,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3D,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,2BAA2B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,yBAAyB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,wBAAwB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1F,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACrD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;;AAvJL,kCAwJC;AA1IG,gBAAgB;AACO,wBAAY,GAAG,wCAAwC,CAAC"}
1
+ {"version":3,"file":"destination.js","sourceRoot":"","sources":["../destination.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4BG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,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,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;IAkED,YAAY,IAAY,EAAE,WAAgD,EAAE,IAAmC;QAC3G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2C,CAAC;YAC1D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,2BAA2B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClG,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9F,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,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,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;SACrF;aAAM;YACH,MAAM,IAAI,GAAG,WAA0C,CAAC;YACxD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,MAAM,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACnD,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;aACzD;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,cAAc,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3D,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,2BAA2B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,yBAAyB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,yBAAyB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9E,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,aAAa,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACrD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,WAAW,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChE,CAAC;;AA9IL,kCA+IC;AAjIG,gBAAgB;AACO,wBAAY,GAAG,wCAAwC,CAAC"}
package/getConnector.d.ts CHANGED
@@ -33,12 +33,13 @@ export interface GetConnectorResult {
33
33
  readonly connectedBy: string;
34
34
  readonly createdAt: string;
35
35
  readonly dailySyncTime: string;
36
+ readonly dataDelaySensitivity: string;
37
+ readonly dataDelayThreshold: number;
36
38
  readonly destinationSchema?: outputs.GetConnectorDestinationSchema;
37
39
  readonly failedAt: string;
38
40
  readonly groupId: string;
39
41
  readonly hybridDeploymentAgentId: string;
40
42
  readonly id: string;
41
- readonly localProcessingAgentId: string;
42
43
  readonly name: string;
43
44
  readonly networkingMethod: string;
44
45
  readonly pauseAfterTrial: boolean;
@@ -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;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;AAuCD;;;;;;;;;;;;;GAaG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAAiC;IAC9F,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"}
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;AAwCD;;;;;;;;;;;;;GAaG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAAiC;IAC9F,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"}
@@ -0,0 +1,33 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * This data source returns list of connector objects.
6
+ */
7
+ export declare function getConnectors(args?: GetConnectorsArgs, opts?: pulumi.InvokeOptions): Promise<GetConnectorsResult>;
8
+ /**
9
+ * A collection of arguments for invoking getConnectors.
10
+ */
11
+ export interface GetConnectorsArgs {
12
+ connectors?: inputs.GetConnectorsConnector[];
13
+ }
14
+ /**
15
+ * A collection of values returned by getConnectors.
16
+ */
17
+ export interface GetConnectorsResult {
18
+ readonly connectors?: outputs.GetConnectorsConnector[];
19
+ /**
20
+ * The ID of this resource.
21
+ */
22
+ readonly id: string;
23
+ }
24
+ /**
25
+ * This data source returns list of connector objects.
26
+ */
27
+ export declare function getConnectorsOutput(args?: GetConnectorsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConnectorsResult>;
28
+ /**
29
+ * A collection of arguments for invoking getConnectors.
30
+ */
31
+ export interface GetConnectorsOutputArgs {
32
+ connectors?: pulumi.Input<pulumi.Input<inputs.GetConnectorsConnectorArgs>[]>;
33
+ }
@@ -0,0 +1,30 @@
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.getConnectorsOutput = exports.getConnectors = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * This data source returns list of connector objects.
10
+ */
11
+ function getConnectors(args, opts) {
12
+ args = args || {};
13
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
14
+ return pulumi.runtime.invoke("fivetran:index/getConnectors:getConnectors", {
15
+ "connectors": args.connectors,
16
+ }, opts);
17
+ }
18
+ exports.getConnectors = getConnectors;
19
+ /**
20
+ * This data source returns list of connector objects.
21
+ */
22
+ function getConnectorsOutput(args, opts) {
23
+ args = args || {};
24
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
25
+ return pulumi.runtime.invokeOutput("fivetran:index/getConnectors:getConnectors", {
26
+ "connectors": args.connectors,
27
+ }, opts);
28
+ }
29
+ exports.getConnectorsOutput = getConnectorsOutput;
30
+ //# sourceMappingURL=getConnectors.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getConnectors.js","sourceRoot":"","sources":["../getConnectors.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,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,4CAA4C,EAAE;QACvE,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sCAMC;AAmBD;;GAEG;AACH,SAAgB,mBAAmB,CAAC,IAA8B,EAAE,IAAiC;IACjG,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,4CAA4C,EAAE;QAC7E,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kDAMC"}
@@ -32,7 +32,6 @@ export interface GetDestinationResult {
32
32
  readonly groupId: string;
33
33
  readonly hybridDeploymentAgentId: string;
34
34
  readonly id: string;
35
- readonly localProcessingAgentId: string;
36
35
  readonly networkingMethod: string;
37
36
  readonly privateLinkId: string;
38
37
  readonly region: string;
@@ -1 +1 @@
1
- {"version":3,"file":"getDestination.js","sourceRoot":"","sources":["../getDestination.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,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;QACzE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wCAMC;AA2BD;;;;;;;;;;;;;GAaG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAAiC;IAClG,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;QAC/E,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oDAMC"}
1
+ {"version":3,"file":"getDestination.js","sourceRoot":"","sources":["../getDestination.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,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;QACzE,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wCAMC;AA0BD;;;;;;;;;;;;;GAaG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAAiC;IAClG,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;QAC/E,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oDAMC"}
@@ -0,0 +1,33 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * This data source returns list of destination objects.
6
+ */
7
+ export declare function getDestinations(args?: GetDestinationsArgs, opts?: pulumi.InvokeOptions): Promise<GetDestinationsResult>;
8
+ /**
9
+ * A collection of arguments for invoking getDestinations.
10
+ */
11
+ export interface GetDestinationsArgs {
12
+ destinations?: inputs.GetDestinationsDestination[];
13
+ }
14
+ /**
15
+ * A collection of values returned by getDestinations.
16
+ */
17
+ export interface GetDestinationsResult {
18
+ readonly destinations?: outputs.GetDestinationsDestination[];
19
+ /**
20
+ * The ID of this resource.
21
+ */
22
+ readonly id: string;
23
+ }
24
+ /**
25
+ * This data source returns list of destination objects.
26
+ */
27
+ export declare function getDestinationsOutput(args?: GetDestinationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDestinationsResult>;
28
+ /**
29
+ * A collection of arguments for invoking getDestinations.
30
+ */
31
+ export interface GetDestinationsOutputArgs {
32
+ destinations?: pulumi.Input<pulumi.Input<inputs.GetDestinationsDestinationArgs>[]>;
33
+ }
@@ -0,0 +1,30 @@
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.getDestinationsOutput = exports.getDestinations = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * This data source returns list of destination objects.
10
+ */
11
+ function getDestinations(args, opts) {
12
+ args = args || {};
13
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
14
+ return pulumi.runtime.invoke("fivetran:index/getDestinations:getDestinations", {
15
+ "destinations": args.destinations,
16
+ }, opts);
17
+ }
18
+ exports.getDestinations = getDestinations;
19
+ /**
20
+ * This data source returns list of destination objects.
21
+ */
22
+ function getDestinationsOutput(args, opts) {
23
+ args = args || {};
24
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
25
+ return pulumi.runtime.invokeOutput("fivetran:index/getDestinations:getDestinations", {
26
+ "destinations": args.destinations,
27
+ }, opts);
28
+ }
29
+ exports.getDestinationsOutput = getDestinationsOutput;
30
+ //# sourceMappingURL=getDestinations.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getDestinations.js","sourceRoot":"","sources":["../getDestinations.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,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,gDAAgD,EAAE;QAC3E,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0CAMC;AAmBD;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAAgC,EAAE,IAAiC;IACrG,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,gDAAgD,EAAE;QACjF,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sDAMC"}
@@ -0,0 +1,33 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as inputs from "./types/input";
3
+ import * as outputs from "./types/output";
4
+ /**
5
+ * This data source returns list of logging service objects.
6
+ */
7
+ export declare function getExternalLogs(args?: GetExternalLogsArgs, opts?: pulumi.InvokeOptions): Promise<GetExternalLogsResult>;
8
+ /**
9
+ * A collection of arguments for invoking getExternalLogs.
10
+ */
11
+ export interface GetExternalLogsArgs {
12
+ logs?: inputs.GetExternalLogsLog[];
13
+ }
14
+ /**
15
+ * A collection of values returned by getExternalLogs.
16
+ */
17
+ export interface GetExternalLogsResult {
18
+ /**
19
+ * The ID of this resource.
20
+ */
21
+ readonly id: string;
22
+ readonly logs?: outputs.GetExternalLogsLog[];
23
+ }
24
+ /**
25
+ * This data source returns list of logging service objects.
26
+ */
27
+ export declare function getExternalLogsOutput(args?: GetExternalLogsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetExternalLogsResult>;
28
+ /**
29
+ * A collection of arguments for invoking getExternalLogs.
30
+ */
31
+ export interface GetExternalLogsOutputArgs {
32
+ logs?: pulumi.Input<pulumi.Input<inputs.GetExternalLogsLogArgs>[]>;
33
+ }
@@ -0,0 +1,30 @@
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.getExternalLogsOutput = exports.getExternalLogs = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * This data source returns list of logging service objects.
10
+ */
11
+ function getExternalLogs(args, opts) {
12
+ args = args || {};
13
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
14
+ return pulumi.runtime.invoke("fivetran:index/getExternalLogs:getExternalLogs", {
15
+ "logs": args.logs,
16
+ }, opts);
17
+ }
18
+ exports.getExternalLogs = getExternalLogs;
19
+ /**
20
+ * This data source returns list of logging service objects.
21
+ */
22
+ function getExternalLogsOutput(args, opts) {
23
+ args = args || {};
24
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
25
+ return pulumi.runtime.invokeOutput("fivetran:index/getExternalLogs:getExternalLogs", {
26
+ "logs": args.logs,
27
+ }, opts);
28
+ }
29
+ exports.getExternalLogsOutput = getExternalLogsOutput;
30
+ //# sourceMappingURL=getExternalLogs.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getExternalLogs.js","sourceRoot":"","sources":["../getExternalLogs.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,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,gDAAgD,EAAE;QAC3E,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0CAMC;AAmBD;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAAgC,EAAE,IAAiC;IACrG,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,gDAAgD,EAAE;QACjF,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sDAMC"}
@@ -0,0 +1,74 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * This data source returns the metadata details of the Quickstart transformation package if a valid identifier is provided
4
+ *
5
+ * ## Example Usage
6
+ *
7
+ * ```typescript
8
+ * import * as pulumi from "@pulumi/pulumi";
9
+ * import * as fivetran from "@pulumi/fivetran";
10
+ *
11
+ * const test = fivetran.getQuickstartPackage({
12
+ * id: "id",
13
+ * });
14
+ * ```
15
+ */
16
+ export declare function getQuickstartPackage(args: GetQuickstartPackageArgs, opts?: pulumi.InvokeOptions): Promise<GetQuickstartPackageResult>;
17
+ /**
18
+ * A collection of arguments for invoking getQuickstartPackage.
19
+ */
20
+ export interface GetQuickstartPackageArgs {
21
+ /**
22
+ * The unique identifier for the Quickstart transformation package definition within the Fivetran system
23
+ */
24
+ id: string;
25
+ }
26
+ /**
27
+ * A collection of values returned by getQuickstartPackage.
28
+ */
29
+ export interface GetQuickstartPackageResult {
30
+ /**
31
+ * The set of connector types
32
+ */
33
+ readonly connectorTypes: string[];
34
+ /**
35
+ * The unique identifier for the Quickstart transformation package definition within the Fivetran system
36
+ */
37
+ readonly id: string;
38
+ /**
39
+ * The Quickstart transformation package name
40
+ */
41
+ readonly name: string;
42
+ /**
43
+ * The list of transformation output models
44
+ */
45
+ readonly outputModelNames: string[];
46
+ /**
47
+ * The Quickstart package definition version
48
+ */
49
+ readonly version: string;
50
+ }
51
+ /**
52
+ * This data source returns the metadata details of the Quickstart transformation package if a valid identifier is provided
53
+ *
54
+ * ## Example Usage
55
+ *
56
+ * ```typescript
57
+ * import * as pulumi from "@pulumi/pulumi";
58
+ * import * as fivetran from "@pulumi/fivetran";
59
+ *
60
+ * const test = fivetran.getQuickstartPackage({
61
+ * id: "id",
62
+ * });
63
+ * ```
64
+ */
65
+ export declare function getQuickstartPackageOutput(args: GetQuickstartPackageOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetQuickstartPackageResult>;
66
+ /**
67
+ * A collection of arguments for invoking getQuickstartPackage.
68
+ */
69
+ export interface GetQuickstartPackageOutputArgs {
70
+ /**
71
+ * The unique identifier for the Quickstart transformation package definition within the Fivetran system
72
+ */
73
+ id: pulumi.Input<string>;
74
+ }