@ryan-pip/pulumi-fivetran 0.2.2 → 0.2.4

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 (43) hide show
  1. package/connector.d.ts +36 -3
  2. package/connector.js +4 -0
  3. package/connector.js.map +1 -1
  4. package/destination.d.ts +36 -3
  5. package/destination.js +4 -0
  6. package/destination.js.map +1 -1
  7. package/getConnector.d.ts +2 -0
  8. package/getConnector.js.map +1 -1
  9. package/getDestination.d.ts +2 -0
  10. package/getDestination.js.map +1 -1
  11. package/getHybridDeploymentAgent.d.ts +48 -0
  12. package/getHybridDeploymentAgent.js +28 -0
  13. package/getHybridDeploymentAgent.js.map +1 -0
  14. package/getHybridDeploymentAgents.d.ts +38 -0
  15. package/getHybridDeploymentAgents.js +42 -0
  16. package/getHybridDeploymentAgents.js.map +1 -0
  17. package/getLocalProcessingAgent.d.ts +4 -0
  18. package/getLocalProcessingAgent.js +4 -0
  19. package/getLocalProcessingAgent.js.map +1 -1
  20. package/getLocalProcessingAgents.d.ts +4 -0
  21. package/getLocalProcessingAgents.js +4 -0
  22. package/getLocalProcessingAgents.js.map +1 -1
  23. package/getPrivateLink.d.ts +96 -0
  24. package/getPrivateLink.js +50 -0
  25. package/getPrivateLink.js.map +1 -0
  26. package/getPrivateLinks.d.ts +27 -0
  27. package/getPrivateLinks.js +24 -0
  28. package/getPrivateLinks.js.map +1 -0
  29. package/hybridDeploymentAgent.d.ts +142 -0
  30. package/hybridDeploymentAgent.js +92 -0
  31. package/hybridDeploymentAgent.js.map +1 -0
  32. package/index.d.ts +18 -0
  33. package/index.js +25 -2
  34. package/index.js.map +1 -1
  35. package/localProcessingAgent.d.ts +2 -0
  36. package/localProcessingAgent.js +2 -0
  37. package/localProcessingAgent.js.map +1 -1
  38. package/package.json +1 -1
  39. package/privateLink.d.ts +136 -0
  40. package/privateLink.js +77 -0
  41. package/privateLink.js.map +1 -0
  42. package/types/input.d.ts +76 -0
  43. package/types/output.d.ts +56 -0
package/connector.d.ts CHANGED
@@ -38,9 +38,16 @@ export declare class Connector extends pulumi.CustomResource {
38
38
  */
39
39
  readonly groupId: pulumi.Output<string>;
40
40
  /**
41
- * The local processing agent ID that refers to the controller created for the group the connection belongs to. If the
41
+ * The hybrid deployment agent ID that refers to the controller created for the group the connection belongs to. If the
42
42
  * value is specified, the system will try to associate the connection with an existing agent.
43
43
  */
44
+ 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
+ */
44
51
  readonly localProcessingAgentId: pulumi.Output<string | undefined>;
45
52
  /**
46
53
  * The name used both as the connector's name within the Fivetran system and as the source schema's name within your
@@ -51,6 +58,10 @@ export declare class Connector extends pulumi.CustomResource {
51
58
  * Possible values: Directly, SshTunnel, ProxyAgent.
52
59
  */
53
60
  readonly networkingMethod: pulumi.Output<string>;
61
+ /**
62
+ * The private link ID.
63
+ */
64
+ readonly privateLinkId: pulumi.Output<string | undefined>;
54
65
  /**
55
66
  * The proxy agent ID.
56
67
  */
@@ -105,9 +116,16 @@ export interface ConnectorState {
105
116
  */
106
117
  groupId?: pulumi.Input<string>;
107
118
  /**
108
- * The local processing agent ID that refers to the controller created for the group the connection belongs to. If the
119
+ * The hybrid deployment agent ID that refers to the controller created for the group the connection belongs to. If the
109
120
  * value is specified, the system will try to associate the connection with an existing agent.
110
121
  */
122
+ 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
+ */
111
129
  localProcessingAgentId?: pulumi.Input<string>;
112
130
  /**
113
131
  * The name used both as the connector's name within the Fivetran system and as the source schema's name within your
@@ -118,6 +136,10 @@ export interface ConnectorState {
118
136
  * Possible values: Directly, SshTunnel, ProxyAgent.
119
137
  */
120
138
  networkingMethod?: pulumi.Input<string>;
139
+ /**
140
+ * The private link ID.
141
+ */
142
+ privateLinkId?: pulumi.Input<string>;
121
143
  /**
122
144
  * The proxy agent ID.
123
145
  */
@@ -156,14 +178,25 @@ export interface ConnectorArgs {
156
178
  */
157
179
  groupId: pulumi.Input<string>;
158
180
  /**
159
- * The local processing agent ID that refers to the controller created for the group the connection belongs to. If the
181
+ * The hybrid deployment agent ID that refers to the controller created for the group the connection belongs to. If the
160
182
  * value is specified, the system will try to associate the connection with an existing agent.
161
183
  */
184
+ 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
+ */
162
191
  localProcessingAgentId?: pulumi.Input<string>;
163
192
  /**
164
193
  * Possible values: Directly, SshTunnel, ProxyAgent.
165
194
  */
166
195
  networkingMethod?: pulumi.Input<string>;
196
+ /**
197
+ * The private link ID.
198
+ */
199
+ privateLinkId?: pulumi.Input<string>;
167
200
  /**
168
201
  * The proxy agent ID.
169
202
  */
package/connector.js CHANGED
@@ -44,9 +44,11 @@ class Connector extends pulumi.CustomResource {
44
44
  resourceInputs["createdAt"] = state ? state.createdAt : undefined;
45
45
  resourceInputs["destinationSchema"] = state ? state.destinationSchema : undefined;
46
46
  resourceInputs["groupId"] = state ? state.groupId : undefined;
47
+ resourceInputs["hybridDeploymentAgentId"] = state ? state.hybridDeploymentAgentId : undefined;
47
48
  resourceInputs["localProcessingAgentId"] = state ? state.localProcessingAgentId : undefined;
48
49
  resourceInputs["name"] = state ? state.name : undefined;
49
50
  resourceInputs["networkingMethod"] = state ? state.networkingMethod : undefined;
51
+ resourceInputs["privateLinkId"] = state ? state.privateLinkId : undefined;
50
52
  resourceInputs["proxyAgentId"] = state ? state.proxyAgentId : undefined;
51
53
  resourceInputs["runSetupTests"] = state ? state.runSetupTests : undefined;
52
54
  resourceInputs["service"] = state ? state.service : undefined;
@@ -66,8 +68,10 @@ class Connector extends pulumi.CustomResource {
66
68
  resourceInputs["config"] = args ? args.config : undefined;
67
69
  resourceInputs["destinationSchema"] = args ? args.destinationSchema : undefined;
68
70
  resourceInputs["groupId"] = args ? args.groupId : undefined;
71
+ resourceInputs["hybridDeploymentAgentId"] = args ? args.hybridDeploymentAgentId : undefined;
69
72
  resourceInputs["localProcessingAgentId"] = args ? args.localProcessingAgentId : undefined;
70
73
  resourceInputs["networkingMethod"] = args ? args.networkingMethod : undefined;
74
+ resourceInputs["privateLinkId"] = args ? args.privateLinkId : undefined;
71
75
  resourceInputs["proxyAgentId"] = args ? args.proxyAgentId : undefined;
72
76
  resourceInputs["runSetupTests"] = args ? args.runSetupTests : undefined;
73
77
  resourceInputs["service"] = args ? args.service : 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":"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"}
package/destination.d.ts CHANGED
@@ -56,14 +56,25 @@ export declare class Destination extends pulumi.CustomResource {
56
56
  */
57
57
  readonly groupId: pulumi.Output<string>;
58
58
  /**
59
- * The local processing agent ID that refers to the controller created for the group the connection belongs to. If the
59
+ * The hybrid deployment agent ID that refers to the controller created for the group the connection belongs to. If the
60
60
  * value is specified, the system will try to associate the connection with an existing agent.
61
61
  */
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
+ */
62
69
  readonly localProcessingAgentId: pulumi.Output<string | undefined>;
63
70
  /**
64
71
  * Possible values: Directly, SshTunnel, ProxyAgent.
65
72
  */
66
73
  readonly networkingMethod: pulumi.Output<string>;
74
+ /**
75
+ * The private link ID.
76
+ */
77
+ readonly privateLinkId: pulumi.Output<string | undefined>;
67
78
  /**
68
79
  * Data processing location. This is where Fivetran will operate and run computation on data.
69
80
  */
@@ -120,14 +131,25 @@ export interface DestinationState {
120
131
  */
121
132
  groupId?: pulumi.Input<string>;
122
133
  /**
123
- * The local processing agent ID that refers to the controller created for the group the connection belongs to. If the
134
+ * The hybrid deployment agent ID that refers to the controller created for the group the connection belongs to. If the
124
135
  * value is specified, the system will try to associate the connection with an existing agent.
125
136
  */
137
+ 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
+ */
126
144
  localProcessingAgentId?: pulumi.Input<string>;
127
145
  /**
128
146
  * Possible values: Directly, SshTunnel, ProxyAgent.
129
147
  */
130
148
  networkingMethod?: pulumi.Input<string>;
149
+ /**
150
+ * The private link ID.
151
+ */
152
+ privateLinkId?: pulumi.Input<string>;
131
153
  /**
132
154
  * Data processing location. This is where Fivetran will operate and run computation on data.
133
155
  */
@@ -176,14 +198,25 @@ export interface DestinationArgs {
176
198
  */
177
199
  groupId: pulumi.Input<string>;
178
200
  /**
179
- * The local processing agent ID that refers to the controller created for the group the connection belongs to. If the
201
+ * The hybrid deployment agent ID that refers to the controller created for the group the connection belongs to. If the
180
202
  * value is specified, the system will try to associate the connection with an existing agent.
181
203
  */
204
+ 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
+ */
182
211
  localProcessingAgentId?: pulumi.Input<string>;
183
212
  /**
184
213
  * Possible values: Directly, SshTunnel, ProxyAgent.
185
214
  */
186
215
  networkingMethod?: pulumi.Input<string>;
216
+ /**
217
+ * The private link ID.
218
+ */
219
+ privateLinkId?: pulumi.Input<string>;
187
220
  /**
188
221
  * Data processing location. This is where Fivetran will operate and run computation on data.
189
222
  */
package/destination.js CHANGED
@@ -65,8 +65,10 @@ class Destination extends pulumi.CustomResource {
65
65
  resourceInputs["config"] = state ? state.config : undefined;
66
66
  resourceInputs["daylightSavingTimeEnabled"] = state ? state.daylightSavingTimeEnabled : undefined;
67
67
  resourceInputs["groupId"] = state ? state.groupId : undefined;
68
+ resourceInputs["hybridDeploymentAgentId"] = state ? state.hybridDeploymentAgentId : undefined;
68
69
  resourceInputs["localProcessingAgentId"] = state ? state.localProcessingAgentId : undefined;
69
70
  resourceInputs["networkingMethod"] = state ? state.networkingMethod : undefined;
71
+ resourceInputs["privateLinkId"] = state ? state.privateLinkId : undefined;
70
72
  resourceInputs["region"] = state ? state.region : undefined;
71
73
  resourceInputs["runSetupTests"] = state ? state.runSetupTests : undefined;
72
74
  resourceInputs["service"] = state ? state.service : undefined;
@@ -93,8 +95,10 @@ class Destination extends pulumi.CustomResource {
93
95
  resourceInputs["config"] = args ? args.config : undefined;
94
96
  resourceInputs["daylightSavingTimeEnabled"] = args ? args.daylightSavingTimeEnabled : undefined;
95
97
  resourceInputs["groupId"] = args ? args.groupId : undefined;
98
+ resourceInputs["hybridDeploymentAgentId"] = args ? args.hybridDeploymentAgentId : undefined;
96
99
  resourceInputs["localProcessingAgentId"] = args ? args.localProcessingAgentId : undefined;
97
100
  resourceInputs["networkingMethod"] = args ? args.networkingMethod : undefined;
101
+ resourceInputs["privateLinkId"] = args ? args.privateLinkId : undefined;
98
102
  resourceInputs["region"] = args ? args.region : undefined;
99
103
  resourceInputs["runSetupTests"] = args ? args.runSetupTests : undefined;
100
104
  resourceInputs["service"] = args ? args.service : undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"destination.js","sourceRoot":"","sources":["../destination.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"destination.js","sourceRoot":"","sources":["../destination.ts"],"names":[],"mappings":"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"}
package/getConnector.d.ts CHANGED
@@ -36,12 +36,14 @@ export interface GetConnectorResult {
36
36
  readonly destinationSchema?: outputs.GetConnectorDestinationSchema;
37
37
  readonly failedAt: string;
38
38
  readonly groupId: string;
39
+ readonly hybridDeploymentAgentId: string;
39
40
  readonly id: string;
40
41
  readonly localProcessingAgentId: string;
41
42
  readonly name: string;
42
43
  readonly networkingMethod: string;
43
44
  readonly pauseAfterTrial: boolean;
44
45
  readonly paused: boolean;
46
+ readonly privateLinkId: string;
45
47
  readonly proxyAgentId: string;
46
48
  readonly scheduleType: string;
47
49
  readonly service: string;
@@ -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;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"}
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,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"}
@@ -30,9 +30,11 @@ export interface GetDestinationResult {
30
30
  readonly config?: outputs.GetDestinationConfig;
31
31
  readonly daylightSavingTimeEnabled: boolean;
32
32
  readonly groupId: string;
33
+ readonly hybridDeploymentAgentId: string;
33
34
  readonly id: string;
34
35
  readonly localProcessingAgentId: string;
35
36
  readonly networkingMethod: string;
37
+ readonly privateLinkId: string;
36
38
  readonly region: string;
37
39
  readonly service: string;
38
40
  readonly setupStatus: 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;AAyBD;;;;;;;;;;;;;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,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;AA2BD;;;;;;;;;;;;;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,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,48 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * This data source returns a hybrid deployment agent object.
4
+ */
5
+ export declare function getHybridDeploymentAgent(args: GetHybridDeploymentAgentArgs, opts?: pulumi.InvokeOptions): Promise<GetHybridDeploymentAgentResult>;
6
+ /**
7
+ * A collection of arguments for invoking getHybridDeploymentAgent.
8
+ */
9
+ export interface GetHybridDeploymentAgentArgs {
10
+ /**
11
+ * The unique identifier for the hybrid deployment agent within your account.
12
+ */
13
+ id: string;
14
+ }
15
+ /**
16
+ * A collection of values returned by getHybridDeploymentAgent.
17
+ */
18
+ export interface GetHybridDeploymentAgentResult {
19
+ /**
20
+ * The unique name for the hybrid deployment agent.
21
+ */
22
+ readonly displayName: string;
23
+ /**
24
+ * The unique identifier for the Group within the Fivetran system.
25
+ */
26
+ readonly groupId: string;
27
+ /**
28
+ * The unique identifier for the hybrid deployment agent within your account.
29
+ */
30
+ readonly id: string;
31
+ /**
32
+ * The timestamp of the time the hybrid deployment agent was created in your account.
33
+ */
34
+ readonly registeredAt: string;
35
+ }
36
+ /**
37
+ * This data source returns a hybrid deployment agent object.
38
+ */
39
+ export declare function getHybridDeploymentAgentOutput(args: GetHybridDeploymentAgentOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetHybridDeploymentAgentResult>;
40
+ /**
41
+ * A collection of arguments for invoking getHybridDeploymentAgent.
42
+ */
43
+ export interface GetHybridDeploymentAgentOutputArgs {
44
+ /**
45
+ * The unique identifier for the hybrid deployment agent within your account.
46
+ */
47
+ id: pulumi.Input<string>;
48
+ }
@@ -0,0 +1,28 @@
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.getHybridDeploymentAgentOutput = exports.getHybridDeploymentAgent = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * This data source returns a hybrid deployment agent object.
10
+ */
11
+ function getHybridDeploymentAgent(args, opts) {
12
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
13
+ return pulumi.runtime.invoke("fivetran:index/getHybridDeploymentAgent:getHybridDeploymentAgent", {
14
+ "id": args.id,
15
+ }, opts);
16
+ }
17
+ exports.getHybridDeploymentAgent = getHybridDeploymentAgent;
18
+ /**
19
+ * This data source returns a hybrid deployment agent object.
20
+ */
21
+ function getHybridDeploymentAgentOutput(args, opts) {
22
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
23
+ return pulumi.runtime.invokeOutput("fivetran:index/getHybridDeploymentAgent:getHybridDeploymentAgent", {
24
+ "id": args.id,
25
+ }, opts);
26
+ }
27
+ exports.getHybridDeploymentAgentOutput = getHybridDeploymentAgentOutput;
28
+ //# sourceMappingURL=getHybridDeploymentAgent.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getHybridDeploymentAgent.js","sourceRoot":"","sources":["../getHybridDeploymentAgent.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;GAEG;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;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,4DAKC;AAiCD;;GAEG;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,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,wEAKC"}
@@ -0,0 +1,38 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ import * as outputs from "./types/output";
3
+ /**
4
+ * This data source returns a list of all hybrid deployment agents 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 hybridDeploymentAgents = fivetran.getHybridDeploymentAgents({});
13
+ * ```
14
+ */
15
+ export declare function getHybridDeploymentAgents(opts?: pulumi.InvokeOptions): Promise<GetHybridDeploymentAgentsResult>;
16
+ /**
17
+ * A collection of values returned by getHybridDeploymentAgents.
18
+ */
19
+ export interface GetHybridDeploymentAgentsResult {
20
+ /**
21
+ * The provider-assigned unique ID for this managed resource.
22
+ */
23
+ readonly id: string;
24
+ readonly items: outputs.GetHybridDeploymentAgentsItem[];
25
+ }
26
+ /**
27
+ * This data source returns a list of all hybrid deployment agents 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 hybridDeploymentAgents = fivetran.getHybridDeploymentAgents({});
36
+ * ```
37
+ */
38
+ export declare function getHybridDeploymentAgentsOutput(opts?: pulumi.InvokeOptions): pulumi.Output<GetHybridDeploymentAgentsResult>;
@@ -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.getHybridDeploymentAgentsOutput = exports.getHybridDeploymentAgents = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ /**
9
+ * This data source returns a list of all hybrid deployment agents 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 hybridDeploymentAgents = fivetran.getHybridDeploymentAgents({});
18
+ * ```
19
+ */
20
+ function getHybridDeploymentAgents(opts) {
21
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
22
+ return pulumi.runtime.invoke("fivetran:index/getHybridDeploymentAgents:getHybridDeploymentAgents", {}, opts);
23
+ }
24
+ exports.getHybridDeploymentAgents = getHybridDeploymentAgents;
25
+ /**
26
+ * This data source returns a list of all hybrid deployment agents 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 hybridDeploymentAgents = fivetran.getHybridDeploymentAgents({});
35
+ * ```
36
+ */
37
+ function getHybridDeploymentAgentsOutput(opts) {
38
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
39
+ return pulumi.runtime.invokeOutput("fivetran:index/getHybridDeploymentAgents:getHybridDeploymentAgents", {}, opts);
40
+ }
41
+ exports.getHybridDeploymentAgentsOutput = getHybridDeploymentAgentsOutput;
42
+ //# sourceMappingURL=getHybridDeploymentAgents.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"getHybridDeploymentAgents.js","sourceRoot":"","sources":["../getHybridDeploymentAgents.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,IAA2B;IACvE,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"}
@@ -1,6 +1,8 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  import * as outputs from "./types/output";
3
3
  /**
4
+ * NOTE: In connection with the general availability of the hybrid deployment functionality and in order to synchronize internal terminology, we have deprecate this data source.
5
+ *
4
6
  * This data source returns a local processing agent object.
5
7
  *
6
8
  * ## Example Usage
@@ -47,6 +49,8 @@ export interface GetLocalProcessingAgentResult {
47
49
  readonly usages: outputs.GetLocalProcessingAgentUsage[];
48
50
  }
49
51
  /**
52
+ * NOTE: In connection with the general availability of the hybrid deployment functionality and in order to synchronize internal terminology, we have deprecate this data source.
53
+ *
50
54
  * This data source returns a local processing agent object.
51
55
  *
52
56
  * ## Example Usage
@@ -6,6 +6,8 @@ exports.getLocalProcessingAgentOutput = exports.getLocalProcessingAgent = void 0
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
+ * NOTE: In connection with the general availability of the hybrid deployment functionality and in order to synchronize internal terminology, we have deprecate this data source.
10
+ *
9
11
  * This data source returns a local processing agent object.
10
12
  *
11
13
  * ## Example Usage
@@ -27,6 +29,8 @@ function getLocalProcessingAgent(args, opts) {
27
29
  }
28
30
  exports.getLocalProcessingAgent = getLocalProcessingAgent;
29
31
  /**
32
+ * NOTE: In connection with the general availability of the hybrid deployment functionality and in order to synchronize internal terminology, we have deprecate this data source.
33
+ *
30
34
  * This data source returns a local processing agent object.
31
35
  *
32
36
  * ## Example Usage
@@ -1 +1 @@
1
- {"version":3,"file":"getLocalProcessingAgent.js","sourceRoot":"","sources":["../getLocalProcessingAgent.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gEAAgE,EAAE;QAC3F,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0DAKC;AAkCD;;;;;;;;;;;;;GAaG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;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,gEAAgE,EAAE;QACjG,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sEAKC"}
1
+ {"version":3,"file":"getLocalProcessingAgent.js","sourceRoot":"","sources":["../getLocalProcessingAgent.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gEAAgE,EAAE;QAC3F,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,0DAKC;AAkCD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;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,gEAAgE,EAAE;QACjG,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sEAKC"}
@@ -1,6 +1,8 @@
1
1
  import * as pulumi from "@pulumi/pulumi";
2
2
  import * as outputs from "./types/output";
3
3
  /**
4
+ * NOTE: In connection with the general availability of the hybrid deployment functionality and in order to synchronize internal terminology, we have deprecate this data source.
5
+ *
4
6
  * This data source returns a list of all local processing agents within your Fivetran account.
5
7
  *
6
8
  * ## Example Usage
@@ -24,6 +26,8 @@ export interface GetLocalProcessingAgentsResult {
24
26
  readonly items: outputs.GetLocalProcessingAgentsItem[];
25
27
  }
26
28
  /**
29
+ * NOTE: In connection with the general availability of the hybrid deployment functionality and in order to synchronize internal terminology, we have deprecate this data source.
30
+ *
27
31
  * This data source returns a list of all local processing agents within your Fivetran account.
28
32
  *
29
33
  * ## Example Usage
@@ -6,6 +6,8 @@ exports.getLocalProcessingAgentsOutput = exports.getLocalProcessingAgents = void
6
6
  const pulumi = require("@pulumi/pulumi");
7
7
  const utilities = require("./utilities");
8
8
  /**
9
+ * NOTE: In connection with the general availability of the hybrid deployment functionality and in order to synchronize internal terminology, we have deprecate this data source.
10
+ *
9
11
  * This data source returns a list of all local processing agents within your Fivetran account.
10
12
  *
11
13
  * ## Example Usage
@@ -23,6 +25,8 @@ function getLocalProcessingAgents(opts) {
23
25
  }
24
26
  exports.getLocalProcessingAgents = getLocalProcessingAgents;
25
27
  /**
28
+ * NOTE: In connection with the general availability of the hybrid deployment functionality and in order to synchronize internal terminology, we have deprecate this data source.
29
+ *
26
30
  * This data source returns a list of all local processing agents within your Fivetran account.
27
31
  *
28
32
  * ## Example Usage
@@ -1 +1 @@
1
- {"version":3,"file":"getLocalProcessingAgents.js","sourceRoot":"","sources":["../getLocalProcessingAgents.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,wBAAwB,CAAC,IAA2B;IAChE,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,EAChG,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,4DAIC;AAYD;;;;;;;;;;;GAWG;AACH,SAAgB,8BAA8B,CAAC,IAA2B;IACtE,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,EACtG,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,wEAIC"}
1
+ {"version":3,"file":"getLocalProcessingAgents.js","sourceRoot":"","sources":["../getLocalProcessingAgents.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,wBAAwB,CAAC,IAA2B;IAChE,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,EAChG,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,4DAIC;AAYD;;;;;;;;;;;;;GAaG;AACH,SAAgB,8BAA8B,CAAC,IAA2B;IACtE,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,EACtG,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAJD,wEAIC"}