@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
@@ -1,76 +0,0 @@
1
- import * as pulumi from "@pulumi/pulumi";
2
- import * as outputs from "./types/output";
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
- *
6
- * This data source returns a local processing agent object.
7
- *
8
- * ## Example Usage
9
- *
10
- * ```typescript
11
- * import * as pulumi from "@pulumi/pulumi";
12
- * import * as fivetran from "@pulumi/fivetran";
13
- *
14
- * const localProcessingAgent = fivetran.getLocalProcessingAgent({
15
- * id: "local_processing_agent_id",
16
- * });
17
- * ```
18
- */
19
- export declare function getLocalProcessingAgent(args: GetLocalProcessingAgentArgs, opts?: pulumi.InvokeOptions): Promise<GetLocalProcessingAgentResult>;
20
- /**
21
- * A collection of arguments for invoking getLocalProcessingAgent.
22
- */
23
- export interface GetLocalProcessingAgentArgs {
24
- /**
25
- * The unique identifier for the local processing agent within your account.
26
- */
27
- id: string;
28
- }
29
- /**
30
- * A collection of values returned by getLocalProcessingAgent.
31
- */
32
- export interface GetLocalProcessingAgentResult {
33
- /**
34
- * The unique name for the local processing agent.
35
- */
36
- readonly displayName: string;
37
- /**
38
- * The unique identifier for the Group within the Fivetran system.
39
- */
40
- readonly groupId: string;
41
- /**
42
- * The unique identifier for the local processing agent within your account.
43
- */
44
- readonly id: string;
45
- /**
46
- * The timestamp of the time the local processing agent was created in your account.
47
- */
48
- readonly registeredAt: string;
49
- readonly usages: outputs.GetLocalProcessingAgentUsage[];
50
- }
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
- *
54
- * This data source returns a local processing agent object.
55
- *
56
- * ## Example Usage
57
- *
58
- * ```typescript
59
- * import * as pulumi from "@pulumi/pulumi";
60
- * import * as fivetran from "@pulumi/fivetran";
61
- *
62
- * const localProcessingAgent = fivetran.getLocalProcessingAgent({
63
- * id: "local_processing_agent_id",
64
- * });
65
- * ```
66
- */
67
- export declare function getLocalProcessingAgentOutput(args: GetLocalProcessingAgentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLocalProcessingAgentResult>;
68
- /**
69
- * A collection of arguments for invoking getLocalProcessingAgent.
70
- */
71
- export interface GetLocalProcessingAgentOutputArgs {
72
- /**
73
- * The unique identifier for the local processing agent within your account.
74
- */
75
- id: pulumi.Input<string>;
76
- }
@@ -1,54 +0,0 @@
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.getLocalProcessingAgentOutput = exports.getLocalProcessingAgent = void 0;
6
- const pulumi = require("@pulumi/pulumi");
7
- const utilities = require("./utilities");
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
- *
11
- * This data source returns a local processing agent object.
12
- *
13
- * ## Example Usage
14
- *
15
- * ```typescript
16
- * import * as pulumi from "@pulumi/pulumi";
17
- * import * as fivetran from "@pulumi/fivetran";
18
- *
19
- * const localProcessingAgent = fivetran.getLocalProcessingAgent({
20
- * id: "local_processing_agent_id",
21
- * });
22
- * ```
23
- */
24
- function getLocalProcessingAgent(args, opts) {
25
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
26
- return pulumi.runtime.invoke("fivetran:index/getLocalProcessingAgent:getLocalProcessingAgent", {
27
- "id": args.id,
28
- }, opts);
29
- }
30
- exports.getLocalProcessingAgent = getLocalProcessingAgent;
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
- *
34
- * This data source returns a local processing agent object.
35
- *
36
- * ## Example Usage
37
- *
38
- * ```typescript
39
- * import * as pulumi from "@pulumi/pulumi";
40
- * import * as fivetran from "@pulumi/fivetran";
41
- *
42
- * const localProcessingAgent = fivetran.getLocalProcessingAgent({
43
- * id: "local_processing_agent_id",
44
- * });
45
- * ```
46
- */
47
- function getLocalProcessingAgentOutput(args, opts) {
48
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
49
- return pulumi.runtime.invokeOutput("fivetran:index/getLocalProcessingAgent:getLocalProcessingAgent", {
50
- "id": args.id,
51
- }, opts);
52
- }
53
- exports.getLocalProcessingAgentOutput = getLocalProcessingAgentOutput;
54
- //# sourceMappingURL=getLocalProcessingAgent.js.map
@@ -1 +0,0 @@
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,IAAiC;IACpH,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,42 +0,0 @@
1
- import * as pulumi from "@pulumi/pulumi";
2
- import * as outputs from "./types/output";
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
- *
6
- * This data source returns a list of all local processing agents within your Fivetran account.
7
- *
8
- * ## Example Usage
9
- *
10
- * ```typescript
11
- * import * as pulumi from "@pulumi/pulumi";
12
- * import * as fivetran from "@pulumi/fivetran";
13
- *
14
- * const localProcessingAgents = fivetran.getLocalProcessingAgents({});
15
- * ```
16
- */
17
- export declare function getLocalProcessingAgents(opts?: pulumi.InvokeOptions): Promise<GetLocalProcessingAgentsResult>;
18
- /**
19
- * A collection of values returned by getLocalProcessingAgents.
20
- */
21
- export interface GetLocalProcessingAgentsResult {
22
- /**
23
- * The provider-assigned unique ID for this managed resource.
24
- */
25
- readonly id: string;
26
- readonly items: outputs.GetLocalProcessingAgentsItem[];
27
- }
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
- *
31
- * This data source returns a list of all local processing agents within your Fivetran account.
32
- *
33
- * ## Example Usage
34
- *
35
- * ```typescript
36
- * import * as pulumi from "@pulumi/pulumi";
37
- * import * as fivetran from "@pulumi/fivetran";
38
- *
39
- * const localProcessingAgents = fivetran.getLocalProcessingAgents({});
40
- * ```
41
- */
42
- export declare function getLocalProcessingAgentsOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLocalProcessingAgentsResult>;
@@ -1,46 +0,0 @@
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.getLocalProcessingAgentsOutput = exports.getLocalProcessingAgents = void 0;
6
- const pulumi = require("@pulumi/pulumi");
7
- const utilities = require("./utilities");
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
- *
11
- * This data source returns a list of all local processing agents within your Fivetran account.
12
- *
13
- * ## Example Usage
14
- *
15
- * ```typescript
16
- * import * as pulumi from "@pulumi/pulumi";
17
- * import * as fivetran from "@pulumi/fivetran";
18
- *
19
- * const localProcessingAgents = fivetran.getLocalProcessingAgents({});
20
- * ```
21
- */
22
- function getLocalProcessingAgents(opts) {
23
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
24
- return pulumi.runtime.invoke("fivetran:index/getLocalProcessingAgents:getLocalProcessingAgents", {}, opts);
25
- }
26
- exports.getLocalProcessingAgents = getLocalProcessingAgents;
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
- *
30
- * This data source returns a list of all local processing agents within your Fivetran account.
31
- *
32
- * ## Example Usage
33
- *
34
- * ```typescript
35
- * import * as pulumi from "@pulumi/pulumi";
36
- * import * as fivetran from "@pulumi/fivetran";
37
- *
38
- * const localProcessingAgents = fivetran.getLocalProcessingAgents({});
39
- * ```
40
- */
41
- function getLocalProcessingAgentsOutput(opts) {
42
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
43
- return pulumi.runtime.invokeOutput("fivetran:index/getLocalProcessingAgents:getLocalProcessingAgents", {}, opts);
44
- }
45
- exports.getLocalProcessingAgentsOutput = getLocalProcessingAgentsOutput;
46
- //# sourceMappingURL=getLocalProcessingAgents.js.map
@@ -1 +0,0 @@
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,IAAiC;IAC5E,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,127 +0,0 @@
1
- import * as pulumi from "@pulumi/pulumi";
2
- import * as inputs from "./types/input";
3
- import * as outputs from "./types/output";
4
- /**
5
- * NOTE: In connection with the general availability of the hybrid deployment functionality and in order to synchronize internal terminology, we have deprecate this resource.
6
- *
7
- * This resource allows you to create, update, and delete local processing agents.
8
- *
9
- * ## Example Usage
10
- *
11
- * ```typescript
12
- * import * as pulumi from "@pulumi/pulumi";
13
- * import * as fivetran from "@ryan-pip/pulumi-fivetran";
14
- *
15
- * const testLpa = new fivetran.LocalProcessingAgent("testLpa", {
16
- * displayName: "display_name",
17
- * groupId: "group_id",
18
- * }, {
19
- * provider: fivetran_provider,
20
- * });
21
- * ```
22
- */
23
- export declare class LocalProcessingAgent extends pulumi.CustomResource {
24
- /**
25
- * Get an existing LocalProcessingAgent resource's state with the given name, ID, and optional extra
26
- * properties used to qualify the lookup.
27
- *
28
- * @param name The _unique_ name of the resulting resource.
29
- * @param id The _unique_ provider ID of the resource to lookup.
30
- * @param state Any extra arguments used during the lookup.
31
- * @param opts Optional settings to control the behavior of the CustomResource.
32
- */
33
- static get(name: string, id: pulumi.Input<pulumi.ID>, state?: LocalProcessingAgentState, opts?: pulumi.CustomResourceOptions): LocalProcessingAgent;
34
- /**
35
- * Returns true if the given object is an instance of LocalProcessingAgent. This is designed to work even
36
- * when multiple copies of the Pulumi SDK have been loaded into the same process.
37
- */
38
- static isInstance(obj: any): obj is LocalProcessingAgent;
39
- /**
40
- * Base64-encoded content of the auth.json file.
41
- */
42
- readonly authJson: pulumi.Output<string>;
43
- /**
44
- * Determines whether re-authentication needs to be performed.
45
- */
46
- readonly authenticationCounter: pulumi.Output<number>;
47
- /**
48
- * Base64-encoded content of the config.json file.
49
- */
50
- readonly configJson: pulumi.Output<string>;
51
- /**
52
- * The unique name for the local processing agent.
53
- */
54
- readonly displayName: pulumi.Output<string>;
55
- /**
56
- * Base64-encoded content of the compose file for the chosen containerization type.
57
- */
58
- readonly dockerComposeYaml: pulumi.Output<string>;
59
- /**
60
- * The unique identifier for the Group within the Fivetran system.
61
- */
62
- readonly groupId: pulumi.Output<string>;
63
- /**
64
- * The timestamp of the time the local processing agent was created in your account.
65
- */
66
- readonly registeredAt: pulumi.Output<string>;
67
- readonly usages: pulumi.Output<outputs.LocalProcessingAgentUsage[]>;
68
- /**
69
- * Create a LocalProcessingAgent resource with the given unique name, arguments, and options.
70
- *
71
- * @param name The _unique_ name of the resource.
72
- * @param args The arguments to use to populate this resource's properties.
73
- * @param opts A bag of options that control this resource's behavior.
74
- */
75
- constructor(name: string, args: LocalProcessingAgentArgs, opts?: pulumi.CustomResourceOptions);
76
- }
77
- /**
78
- * Input properties used for looking up and filtering LocalProcessingAgent resources.
79
- */
80
- export interface LocalProcessingAgentState {
81
- /**
82
- * Base64-encoded content of the auth.json file.
83
- */
84
- authJson?: pulumi.Input<string>;
85
- /**
86
- * Determines whether re-authentication needs to be performed.
87
- */
88
- authenticationCounter?: pulumi.Input<number>;
89
- /**
90
- * Base64-encoded content of the config.json file.
91
- */
92
- configJson?: pulumi.Input<string>;
93
- /**
94
- * The unique name for the local processing agent.
95
- */
96
- displayName?: pulumi.Input<string>;
97
- /**
98
- * Base64-encoded content of the compose file for the chosen containerization type.
99
- */
100
- dockerComposeYaml?: pulumi.Input<string>;
101
- /**
102
- * The unique identifier for the Group within the Fivetran system.
103
- */
104
- groupId?: pulumi.Input<string>;
105
- /**
106
- * The timestamp of the time the local processing agent was created in your account.
107
- */
108
- registeredAt?: pulumi.Input<string>;
109
- usages?: pulumi.Input<pulumi.Input<inputs.LocalProcessingAgentUsage>[]>;
110
- }
111
- /**
112
- * The set of arguments for constructing a LocalProcessingAgent resource.
113
- */
114
- export interface LocalProcessingAgentArgs {
115
- /**
116
- * Determines whether re-authentication needs to be performed.
117
- */
118
- authenticationCounter?: pulumi.Input<number>;
119
- /**
120
- * The unique name for the local processing agent.
121
- */
122
- displayName: pulumi.Input<string>;
123
- /**
124
- * The unique identifier for the Group within the Fivetran system.
125
- */
126
- groupId: pulumi.Input<string>;
127
- }
@@ -1,88 +0,0 @@
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.LocalProcessingAgent = void 0;
6
- const pulumi = require("@pulumi/pulumi");
7
- const utilities = require("./utilities");
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 resource.
10
- *
11
- * This resource allows you to create, update, and delete local processing agents.
12
- *
13
- * ## Example Usage
14
- *
15
- * ```typescript
16
- * import * as pulumi from "@pulumi/pulumi";
17
- * import * as fivetran from "@ryan-pip/pulumi-fivetran";
18
- *
19
- * const testLpa = new fivetran.LocalProcessingAgent("testLpa", {
20
- * displayName: "display_name",
21
- * groupId: "group_id",
22
- * }, {
23
- * provider: fivetran_provider,
24
- * });
25
- * ```
26
- */
27
- class LocalProcessingAgent extends pulumi.CustomResource {
28
- /**
29
- * Get an existing LocalProcessingAgent resource's state with the given name, ID, and optional extra
30
- * properties used to qualify the lookup.
31
- *
32
- * @param name The _unique_ name of the resulting resource.
33
- * @param id The _unique_ provider ID of the resource to lookup.
34
- * @param state Any extra arguments used during the lookup.
35
- * @param opts Optional settings to control the behavior of the CustomResource.
36
- */
37
- static get(name, id, state, opts) {
38
- return new LocalProcessingAgent(name, state, Object.assign(Object.assign({}, opts), { id: id }));
39
- }
40
- /**
41
- * Returns true if the given object is an instance of LocalProcessingAgent. This is designed to work even
42
- * when multiple copies of the Pulumi SDK have been loaded into the same process.
43
- */
44
- static isInstance(obj) {
45
- if (obj === undefined || obj === null) {
46
- return false;
47
- }
48
- return obj['__pulumiType'] === LocalProcessingAgent.__pulumiType;
49
- }
50
- constructor(name, argsOrState, opts) {
51
- let resourceInputs = {};
52
- opts = opts || {};
53
- if (opts.id) {
54
- const state = argsOrState;
55
- resourceInputs["authJson"] = state ? state.authJson : undefined;
56
- resourceInputs["authenticationCounter"] = state ? state.authenticationCounter : undefined;
57
- resourceInputs["configJson"] = state ? state.configJson : undefined;
58
- resourceInputs["displayName"] = state ? state.displayName : undefined;
59
- resourceInputs["dockerComposeYaml"] = state ? state.dockerComposeYaml : undefined;
60
- resourceInputs["groupId"] = state ? state.groupId : undefined;
61
- resourceInputs["registeredAt"] = state ? state.registeredAt : undefined;
62
- resourceInputs["usages"] = state ? state.usages : undefined;
63
- }
64
- else {
65
- const args = argsOrState;
66
- if ((!args || args.displayName === undefined) && !opts.urn) {
67
- throw new Error("Missing required property 'displayName'");
68
- }
69
- if ((!args || args.groupId === undefined) && !opts.urn) {
70
- throw new Error("Missing required property 'groupId'");
71
- }
72
- resourceInputs["authenticationCounter"] = args ? args.authenticationCounter : undefined;
73
- resourceInputs["displayName"] = args ? args.displayName : undefined;
74
- resourceInputs["groupId"] = args ? args.groupId : undefined;
75
- resourceInputs["authJson"] = undefined /*out*/;
76
- resourceInputs["configJson"] = undefined /*out*/;
77
- resourceInputs["dockerComposeYaml"] = undefined /*out*/;
78
- resourceInputs["registeredAt"] = undefined /*out*/;
79
- resourceInputs["usages"] = undefined /*out*/;
80
- }
81
- opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
82
- super(LocalProcessingAgent.__pulumiType, name, resourceInputs, opts);
83
- }
84
- }
85
- exports.LocalProcessingAgent = LocalProcessingAgent;
86
- /** @internal */
87
- LocalProcessingAgent.__pulumiType = 'fivetran:index/localProcessingAgent:LocalProcessingAgent';
88
- //# sourceMappingURL=localProcessingAgent.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"localProcessingAgent.js","sourceRoot":"","sources":["../localProcessingAgent.ts"],"names":[],"mappings":"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"}