@aws-sdk/client-appflow 3.48.0 → 3.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +38 -0
- package/dist-cjs/Appflow.js +60 -0
- package/dist-cjs/commands/DescribeConnectorCommand.js +36 -0
- package/dist-cjs/commands/ListConnectorsCommand.js +36 -0
- package/dist-cjs/commands/RegisterConnectorCommand.js +36 -0
- package/dist-cjs/commands/UnregisterConnectorCommand.js +36 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +239 -16
- package/dist-cjs/pagination/DescribeConnectorsPaginator.js +1 -0
- package/dist-cjs/pagination/ListConnectorsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +986 -1
- package/dist-es/Appflow.js +60 -0
- package/dist-es/commands/DescribeConnectorCommand.js +39 -0
- package/dist-es/commands/ListConnectorsCommand.js +39 -0
- package/dist-es/commands/RegisterConnectorCommand.js +39 -0
- package/dist-es/commands/UnregisterConnectorCommand.js +39 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +168 -15
- package/dist-es/pagination/DescribeConnectorsPaginator.js +1 -0
- package/dist-es/pagination/ListConnectorsPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +1032 -45
- package/dist-types/Appflow.d.ts +38 -4
- package/dist-types/AppflowClient.d.ts +6 -2
- package/dist-types/commands/CreateConnectorProfileCommand.d.ts +4 -4
- package/dist-types/commands/DescribeConnectorCommand.d.ts +37 -0
- package/dist-types/commands/ListConnectorsCommand.d.ts +37 -0
- package/dist-types/commands/RegisterConnectorCommand.d.ts +36 -0
- package/dist-types/commands/UnregisterConnectorCommand.d.ts +36 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +965 -52
- package/dist-types/pagination/ListConnectorsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +12 -0
- package/dist-types/ts3.4/Appflow.d.ts +20 -0
- package/dist-types/ts3.4/AppflowClient.d.ts +6 -2
- package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RegisterConnectorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UnregisterConnectorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +522 -16
- package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +40 -34
package/dist-es/Appflow.js
CHANGED
|
@@ -4,17 +4,21 @@ import { CreateConnectorProfileCommand, } from "./commands/CreateConnectorProfil
|
|
|
4
4
|
import { CreateFlowCommand } from "./commands/CreateFlowCommand";
|
|
5
5
|
import { DeleteConnectorProfileCommand, } from "./commands/DeleteConnectorProfileCommand";
|
|
6
6
|
import { DeleteFlowCommand } from "./commands/DeleteFlowCommand";
|
|
7
|
+
import { DescribeConnectorCommand, } from "./commands/DescribeConnectorCommand";
|
|
7
8
|
import { DescribeConnectorEntityCommand, } from "./commands/DescribeConnectorEntityCommand";
|
|
8
9
|
import { DescribeConnectorProfilesCommand, } from "./commands/DescribeConnectorProfilesCommand";
|
|
9
10
|
import { DescribeConnectorsCommand, } from "./commands/DescribeConnectorsCommand";
|
|
10
11
|
import { DescribeFlowCommand, } from "./commands/DescribeFlowCommand";
|
|
11
12
|
import { DescribeFlowExecutionRecordsCommand, } from "./commands/DescribeFlowExecutionRecordsCommand";
|
|
12
13
|
import { ListConnectorEntitiesCommand, } from "./commands/ListConnectorEntitiesCommand";
|
|
14
|
+
import { ListConnectorsCommand, } from "./commands/ListConnectorsCommand";
|
|
13
15
|
import { ListFlowsCommand } from "./commands/ListFlowsCommand";
|
|
14
16
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
17
|
+
import { RegisterConnectorCommand, } from "./commands/RegisterConnectorCommand";
|
|
15
18
|
import { StartFlowCommand } from "./commands/StartFlowCommand";
|
|
16
19
|
import { StopFlowCommand } from "./commands/StopFlowCommand";
|
|
17
20
|
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
21
|
+
import { UnregisterConnectorCommand, } from "./commands/UnregisterConnectorCommand";
|
|
18
22
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
19
23
|
import { UpdateConnectorProfileCommand, } from "./commands/UpdateConnectorProfileCommand";
|
|
20
24
|
import { UpdateFlowCommand } from "./commands/UpdateFlowCommand";
|
|
@@ -79,6 +83,20 @@ var Appflow = (function (_super) {
|
|
|
79
83
|
return this.send(command, optionsOrCb);
|
|
80
84
|
}
|
|
81
85
|
};
|
|
86
|
+
Appflow.prototype.describeConnector = function (args, optionsOrCb, cb) {
|
|
87
|
+
var command = new DescribeConnectorCommand(args);
|
|
88
|
+
if (typeof optionsOrCb === "function") {
|
|
89
|
+
this.send(command, optionsOrCb);
|
|
90
|
+
}
|
|
91
|
+
else if (typeof cb === "function") {
|
|
92
|
+
if (typeof optionsOrCb !== "object")
|
|
93
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
94
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
95
|
+
}
|
|
96
|
+
else {
|
|
97
|
+
return this.send(command, optionsOrCb);
|
|
98
|
+
}
|
|
99
|
+
};
|
|
82
100
|
Appflow.prototype.describeConnectorEntity = function (args, optionsOrCb, cb) {
|
|
83
101
|
var command = new DescribeConnectorEntityCommand(args);
|
|
84
102
|
if (typeof optionsOrCb === "function") {
|
|
@@ -163,6 +181,20 @@ var Appflow = (function (_super) {
|
|
|
163
181
|
return this.send(command, optionsOrCb);
|
|
164
182
|
}
|
|
165
183
|
};
|
|
184
|
+
Appflow.prototype.listConnectors = function (args, optionsOrCb, cb) {
|
|
185
|
+
var command = new ListConnectorsCommand(args);
|
|
186
|
+
if (typeof optionsOrCb === "function") {
|
|
187
|
+
this.send(command, optionsOrCb);
|
|
188
|
+
}
|
|
189
|
+
else if (typeof cb === "function") {
|
|
190
|
+
if (typeof optionsOrCb !== "object")
|
|
191
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
192
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
193
|
+
}
|
|
194
|
+
else {
|
|
195
|
+
return this.send(command, optionsOrCb);
|
|
196
|
+
}
|
|
197
|
+
};
|
|
166
198
|
Appflow.prototype.listFlows = function (args, optionsOrCb, cb) {
|
|
167
199
|
var command = new ListFlowsCommand(args);
|
|
168
200
|
if (typeof optionsOrCb === "function") {
|
|
@@ -191,6 +223,20 @@ var Appflow = (function (_super) {
|
|
|
191
223
|
return this.send(command, optionsOrCb);
|
|
192
224
|
}
|
|
193
225
|
};
|
|
226
|
+
Appflow.prototype.registerConnector = function (args, optionsOrCb, cb) {
|
|
227
|
+
var command = new RegisterConnectorCommand(args);
|
|
228
|
+
if (typeof optionsOrCb === "function") {
|
|
229
|
+
this.send(command, optionsOrCb);
|
|
230
|
+
}
|
|
231
|
+
else if (typeof cb === "function") {
|
|
232
|
+
if (typeof optionsOrCb !== "object")
|
|
233
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
234
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
235
|
+
}
|
|
236
|
+
else {
|
|
237
|
+
return this.send(command, optionsOrCb);
|
|
238
|
+
}
|
|
239
|
+
};
|
|
194
240
|
Appflow.prototype.startFlow = function (args, optionsOrCb, cb) {
|
|
195
241
|
var command = new StartFlowCommand(args);
|
|
196
242
|
if (typeof optionsOrCb === "function") {
|
|
@@ -233,6 +279,20 @@ var Appflow = (function (_super) {
|
|
|
233
279
|
return this.send(command, optionsOrCb);
|
|
234
280
|
}
|
|
235
281
|
};
|
|
282
|
+
Appflow.prototype.unregisterConnector = function (args, optionsOrCb, cb) {
|
|
283
|
+
var command = new UnregisterConnectorCommand(args);
|
|
284
|
+
if (typeof optionsOrCb === "function") {
|
|
285
|
+
this.send(command, optionsOrCb);
|
|
286
|
+
}
|
|
287
|
+
else if (typeof cb === "function") {
|
|
288
|
+
if (typeof optionsOrCb !== "object")
|
|
289
|
+
throw new Error("Expect http options but get " + typeof optionsOrCb);
|
|
290
|
+
this.send(command, optionsOrCb || {}, cb);
|
|
291
|
+
}
|
|
292
|
+
else {
|
|
293
|
+
return this.send(command, optionsOrCb);
|
|
294
|
+
}
|
|
295
|
+
};
|
|
236
296
|
Appflow.prototype.untagResource = function (args, optionsOrCb, cb) {
|
|
237
297
|
var command = new UntagResourceCommand(args);
|
|
238
298
|
if (typeof optionsOrCb === "function") {
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { DescribeConnectorRequest, DescribeConnectorResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1DescribeConnectorCommand, serializeAws_restJson1DescribeConnectorCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var DescribeConnectorCommand = (function (_super) {
|
|
7
|
+
__extends(DescribeConnectorCommand, _super);
|
|
8
|
+
function DescribeConnectorCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
DescribeConnectorCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "AppflowClient";
|
|
18
|
+
var commandName = "DescribeConnectorCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: DescribeConnectorRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: DescribeConnectorResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
DescribeConnectorCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1DescribeConnectorCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
DescribeConnectorCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1DescribeConnectorCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return DescribeConnectorCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { DescribeConnectorCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { ListConnectorsRequest, ListConnectorsResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1ListConnectorsCommand, serializeAws_restJson1ListConnectorsCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var ListConnectorsCommand = (function (_super) {
|
|
7
|
+
__extends(ListConnectorsCommand, _super);
|
|
8
|
+
function ListConnectorsCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
ListConnectorsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "AppflowClient";
|
|
18
|
+
var commandName = "ListConnectorsCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: ListConnectorsRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: ListConnectorsResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
ListConnectorsCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1ListConnectorsCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
ListConnectorsCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1ListConnectorsCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return ListConnectorsCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { ListConnectorsCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { RegisterConnectorRequest, RegisterConnectorResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1RegisterConnectorCommand, serializeAws_restJson1RegisterConnectorCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var RegisterConnectorCommand = (function (_super) {
|
|
7
|
+
__extends(RegisterConnectorCommand, _super);
|
|
8
|
+
function RegisterConnectorCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
RegisterConnectorCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "AppflowClient";
|
|
18
|
+
var commandName = "RegisterConnectorCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: RegisterConnectorRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: RegisterConnectorResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
RegisterConnectorCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1RegisterConnectorCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
RegisterConnectorCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1RegisterConnectorCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return RegisterConnectorCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { RegisterConnectorCommand };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { __extends } from "tslib";
|
|
2
|
+
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
|
+
import { UnregisterConnectorRequest, UnregisterConnectorResponse } from "../models/models_0";
|
|
5
|
+
import { deserializeAws_restJson1UnregisterConnectorCommand, serializeAws_restJson1UnregisterConnectorCommand, } from "../protocols/Aws_restJson1";
|
|
6
|
+
var UnregisterConnectorCommand = (function (_super) {
|
|
7
|
+
__extends(UnregisterConnectorCommand, _super);
|
|
8
|
+
function UnregisterConnectorCommand(input) {
|
|
9
|
+
var _this = _super.call(this) || this;
|
|
10
|
+
_this.input = input;
|
|
11
|
+
return _this;
|
|
12
|
+
}
|
|
13
|
+
UnregisterConnectorCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
|
|
14
|
+
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
+
var stack = clientStack.concat(this.middlewareStack);
|
|
16
|
+
var logger = configuration.logger;
|
|
17
|
+
var clientName = "AppflowClient";
|
|
18
|
+
var commandName = "UnregisterConnectorCommand";
|
|
19
|
+
var handlerExecutionContext = {
|
|
20
|
+
logger: logger,
|
|
21
|
+
clientName: clientName,
|
|
22
|
+
commandName: commandName,
|
|
23
|
+
inputFilterSensitiveLog: UnregisterConnectorRequest.filterSensitiveLog,
|
|
24
|
+
outputFilterSensitiveLog: UnregisterConnectorResponse.filterSensitiveLog,
|
|
25
|
+
};
|
|
26
|
+
var requestHandler = configuration.requestHandler;
|
|
27
|
+
return stack.resolve(function (request) {
|
|
28
|
+
return requestHandler.handle(request.request, options || {});
|
|
29
|
+
}, handlerExecutionContext);
|
|
30
|
+
};
|
|
31
|
+
UnregisterConnectorCommand.prototype.serialize = function (input, context) {
|
|
32
|
+
return serializeAws_restJson1UnregisterConnectorCommand(input, context);
|
|
33
|
+
};
|
|
34
|
+
UnregisterConnectorCommand.prototype.deserialize = function (output, context) {
|
|
35
|
+
return deserializeAws_restJson1UnregisterConnectorCommand(output, context);
|
|
36
|
+
};
|
|
37
|
+
return UnregisterConnectorCommand;
|
|
38
|
+
}($Command));
|
|
39
|
+
export { UnregisterConnectorCommand };
|
|
@@ -2,17 +2,21 @@ export * from "./CreateConnectorProfileCommand";
|
|
|
2
2
|
export * from "./CreateFlowCommand";
|
|
3
3
|
export * from "./DeleteConnectorProfileCommand";
|
|
4
4
|
export * from "./DeleteFlowCommand";
|
|
5
|
+
export * from "./DescribeConnectorCommand";
|
|
5
6
|
export * from "./DescribeConnectorEntityCommand";
|
|
6
7
|
export * from "./DescribeConnectorProfilesCommand";
|
|
7
8
|
export * from "./DescribeConnectorsCommand";
|
|
8
9
|
export * from "./DescribeFlowCommand";
|
|
9
10
|
export * from "./DescribeFlowExecutionRecordsCommand";
|
|
10
11
|
export * from "./ListConnectorEntitiesCommand";
|
|
12
|
+
export * from "./ListConnectorsCommand";
|
|
11
13
|
export * from "./ListFlowsCommand";
|
|
12
14
|
export * from "./ListTagsForResourceCommand";
|
|
15
|
+
export * from "./RegisterConnectorCommand";
|
|
13
16
|
export * from "./StartFlowCommand";
|
|
14
17
|
export * from "./StopFlowCommand";
|
|
15
18
|
export * from "./TagResourceCommand";
|
|
19
|
+
export * from "./UnregisterConnectorCommand";
|
|
16
20
|
export * from "./UntagResourceCommand";
|
|
17
21
|
export * from "./UpdateConnectorProfileCommand";
|
|
18
22
|
export * from "./UpdateFlowCommand";
|
|
@@ -15,7 +15,7 @@ export var AmplitudeConnectorOperator;
|
|
|
15
15
|
})(AmplitudeConnectorOperator || (AmplitudeConnectorOperator = {}));
|
|
16
16
|
export var AmplitudeConnectorProfileCredentials;
|
|
17
17
|
(function (AmplitudeConnectorProfileCredentials) {
|
|
18
|
-
AmplitudeConnectorProfileCredentials.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.secretKey && { secretKey: SENSITIVE_STRING }))); };
|
|
18
|
+
AmplitudeConnectorProfileCredentials.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.apiKey && { apiKey: SENSITIVE_STRING })), (obj.secretKey && { secretKey: SENSITIVE_STRING }))); };
|
|
19
19
|
})(AmplitudeConnectorProfileCredentials || (AmplitudeConnectorProfileCredentials = {}));
|
|
20
20
|
export var AmplitudeConnectorProfileProperties;
|
|
21
21
|
(function (AmplitudeConnectorProfileProperties) {
|
|
@@ -29,6 +29,38 @@ export var AmplitudeSourceProperties;
|
|
|
29
29
|
(function (AmplitudeSourceProperties) {
|
|
30
30
|
AmplitudeSourceProperties.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
31
31
|
})(AmplitudeSourceProperties || (AmplitudeSourceProperties = {}));
|
|
32
|
+
export var ApiKeyCredentials;
|
|
33
|
+
(function (ApiKeyCredentials) {
|
|
34
|
+
ApiKeyCredentials.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.apiKey && { apiKey: SENSITIVE_STRING })), (obj.apiSecretKey && { apiSecretKey: SENSITIVE_STRING }))); };
|
|
35
|
+
})(ApiKeyCredentials || (ApiKeyCredentials = {}));
|
|
36
|
+
export var AuthParameter;
|
|
37
|
+
(function (AuthParameter) {
|
|
38
|
+
AuthParameter.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
39
|
+
})(AuthParameter || (AuthParameter = {}));
|
|
40
|
+
export var CustomAuthConfig;
|
|
41
|
+
(function (CustomAuthConfig) {
|
|
42
|
+
CustomAuthConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
43
|
+
})(CustomAuthConfig || (CustomAuthConfig = {}));
|
|
44
|
+
export var OAuth2GrantType;
|
|
45
|
+
(function (OAuth2GrantType) {
|
|
46
|
+
OAuth2GrantType["AUTHORIZATION_CODE"] = "AUTHORIZATION_CODE";
|
|
47
|
+
OAuth2GrantType["CLIENT_CREDENTIALS"] = "CLIENT_CREDENTIALS";
|
|
48
|
+
})(OAuth2GrantType || (OAuth2GrantType = {}));
|
|
49
|
+
export var OAuth2Defaults;
|
|
50
|
+
(function (OAuth2Defaults) {
|
|
51
|
+
OAuth2Defaults.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
52
|
+
})(OAuth2Defaults || (OAuth2Defaults = {}));
|
|
53
|
+
export var AuthenticationConfig;
|
|
54
|
+
(function (AuthenticationConfig) {
|
|
55
|
+
AuthenticationConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
56
|
+
})(AuthenticationConfig || (AuthenticationConfig = {}));
|
|
57
|
+
export var AuthenticationType;
|
|
58
|
+
(function (AuthenticationType) {
|
|
59
|
+
AuthenticationType["APIKEY"] = "APIKEY";
|
|
60
|
+
AuthenticationType["BASIC"] = "BASIC";
|
|
61
|
+
AuthenticationType["CUSTOM"] = "CUSTOM";
|
|
62
|
+
AuthenticationType["OAUTH2"] = "OAUTH2";
|
|
63
|
+
})(AuthenticationType || (AuthenticationType = {}));
|
|
32
64
|
export var BasicAuthCredentials;
|
|
33
65
|
(function (BasicAuthCredentials) {
|
|
34
66
|
BasicAuthCredentials.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.password && { password: SENSITIVE_STRING }))); };
|
|
@@ -122,9 +154,26 @@ export var ConnectorMetadata;
|
|
|
122
154
|
(function (ConnectorMetadata) {
|
|
123
155
|
ConnectorMetadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
124
156
|
})(ConnectorMetadata || (ConnectorMetadata = {}));
|
|
157
|
+
export var LambdaConnectorProvisioningConfig;
|
|
158
|
+
(function (LambdaConnectorProvisioningConfig) {
|
|
159
|
+
LambdaConnectorProvisioningConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
160
|
+
})(LambdaConnectorProvisioningConfig || (LambdaConnectorProvisioningConfig = {}));
|
|
161
|
+
export var ConnectorProvisioningConfig;
|
|
162
|
+
(function (ConnectorProvisioningConfig) {
|
|
163
|
+
ConnectorProvisioningConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
164
|
+
})(ConnectorProvisioningConfig || (ConnectorProvisioningConfig = {}));
|
|
165
|
+
export var ConnectorProvisioningType;
|
|
166
|
+
(function (ConnectorProvisioningType) {
|
|
167
|
+
ConnectorProvisioningType["LAMBDA"] = "LAMBDA";
|
|
168
|
+
})(ConnectorProvisioningType || (ConnectorProvisioningType = {}));
|
|
169
|
+
export var ConnectorRuntimeSetting;
|
|
170
|
+
(function (ConnectorRuntimeSetting) {
|
|
171
|
+
ConnectorRuntimeSetting.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
172
|
+
})(ConnectorRuntimeSetting || (ConnectorRuntimeSetting = {}));
|
|
125
173
|
export var ConnectorType;
|
|
126
174
|
(function (ConnectorType) {
|
|
127
175
|
ConnectorType["AMPLITUDE"] = "Amplitude";
|
|
176
|
+
ConnectorType["CUSTOMCONNECTOR"] = "CustomConnector";
|
|
128
177
|
ConnectorType["CUSTOMERPROFILES"] = "CustomerProfiles";
|
|
129
178
|
ConnectorType["DATADOG"] = "Datadog";
|
|
130
179
|
ConnectorType["DYNATRACE"] = "Dynatrace";
|
|
@@ -147,6 +196,30 @@ export var ConnectorType;
|
|
|
147
196
|
ConnectorType["VEEVA"] = "Veeva";
|
|
148
197
|
ConnectorType["ZENDESK"] = "Zendesk";
|
|
149
198
|
})(ConnectorType || (ConnectorType = {}));
|
|
199
|
+
export var Operators;
|
|
200
|
+
(function (Operators) {
|
|
201
|
+
Operators["ADDITION"] = "ADDITION";
|
|
202
|
+
Operators["BETWEEN"] = "BETWEEN";
|
|
203
|
+
Operators["CONTAINS"] = "CONTAINS";
|
|
204
|
+
Operators["DIVISION"] = "DIVISION";
|
|
205
|
+
Operators["EQUAL_TO"] = "EQUAL_TO";
|
|
206
|
+
Operators["GREATER_THAN"] = "GREATER_THAN";
|
|
207
|
+
Operators["GREATER_THAN_OR_EQUAL_TO"] = "GREATER_THAN_OR_EQUAL_TO";
|
|
208
|
+
Operators["LESS_THAN"] = "LESS_THAN";
|
|
209
|
+
Operators["LESS_THAN_OR_EQUAL_TO"] = "LESS_THAN_OR_EQUAL_TO";
|
|
210
|
+
Operators["MASK_ALL"] = "MASK_ALL";
|
|
211
|
+
Operators["MASK_FIRST_N"] = "MASK_FIRST_N";
|
|
212
|
+
Operators["MASK_LAST_N"] = "MASK_LAST_N";
|
|
213
|
+
Operators["MULTIPLICATION"] = "MULTIPLICATION";
|
|
214
|
+
Operators["NOT_EQUAL_TO"] = "NOT_EQUAL_TO";
|
|
215
|
+
Operators["NO_OP"] = "NO_OP";
|
|
216
|
+
Operators["PROJECTION"] = "PROJECTION";
|
|
217
|
+
Operators["SUBTRACTION"] = "SUBTRACTION";
|
|
218
|
+
Operators["VALIDATE_NON_NEGATIVE"] = "VALIDATE_NON_NEGATIVE";
|
|
219
|
+
Operators["VALIDATE_NON_NULL"] = "VALIDATE_NON_NULL";
|
|
220
|
+
Operators["VALIDATE_NON_ZERO"] = "VALIDATE_NON_ZERO";
|
|
221
|
+
Operators["VALIDATE_NUMERIC"] = "VALIDATE_NUMERIC";
|
|
222
|
+
})(Operators || (Operators = {}));
|
|
150
223
|
export var ScheduleFrequencyType;
|
|
151
224
|
(function (ScheduleFrequencyType) {
|
|
152
225
|
ScheduleFrequencyType["BYMINUTE"] = "BYMINUTE";
|
|
@@ -162,20 +235,25 @@ export var TriggerType;
|
|
|
162
235
|
TriggerType["ONDEMAND"] = "OnDemand";
|
|
163
236
|
TriggerType["SCHEDULED"] = "Scheduled";
|
|
164
237
|
})(TriggerType || (TriggerType = {}));
|
|
238
|
+
export var WriteOperationType;
|
|
239
|
+
(function (WriteOperationType) {
|
|
240
|
+
WriteOperationType["DELETE"] = "DELETE";
|
|
241
|
+
WriteOperationType["INSERT"] = "INSERT";
|
|
242
|
+
WriteOperationType["UPDATE"] = "UPDATE";
|
|
243
|
+
WriteOperationType["UPSERT"] = "UPSERT";
|
|
244
|
+
})(WriteOperationType || (WriteOperationType = {}));
|
|
165
245
|
export var ConnectorConfiguration;
|
|
166
246
|
(function (ConnectorConfiguration) {
|
|
167
247
|
ConnectorConfiguration.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
168
248
|
})(ConnectorConfiguration || (ConnectorConfiguration = {}));
|
|
249
|
+
export var ConnectorDetail;
|
|
250
|
+
(function (ConnectorDetail) {
|
|
251
|
+
ConnectorDetail.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
252
|
+
})(ConnectorDetail || (ConnectorDetail = {}));
|
|
169
253
|
export var ConnectorEntity;
|
|
170
254
|
(function (ConnectorEntity) {
|
|
171
255
|
ConnectorEntity.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
172
256
|
})(ConnectorEntity || (ConnectorEntity = {}));
|
|
173
|
-
export var WriteOperationType;
|
|
174
|
-
(function (WriteOperationType) {
|
|
175
|
-
WriteOperationType["INSERT"] = "INSERT";
|
|
176
|
-
WriteOperationType["UPDATE"] = "UPDATE";
|
|
177
|
-
WriteOperationType["UPSERT"] = "UPSERT";
|
|
178
|
-
})(WriteOperationType || (WriteOperationType = {}));
|
|
179
257
|
export var DestinationFieldProperties;
|
|
180
258
|
(function (DestinationFieldProperties) {
|
|
181
259
|
DestinationFieldProperties.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -184,6 +262,10 @@ export var SourceFieldProperties;
|
|
|
184
262
|
(function (SourceFieldProperties) {
|
|
185
263
|
SourceFieldProperties.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
186
264
|
})(SourceFieldProperties || (SourceFieldProperties = {}));
|
|
265
|
+
export var Range;
|
|
266
|
+
(function (Range) {
|
|
267
|
+
Range.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
268
|
+
})(Range || (Range = {}));
|
|
187
269
|
export var Operator;
|
|
188
270
|
(function (Operator) {
|
|
189
271
|
Operator["ADDITION"] = "ADDITION";
|
|
@@ -498,6 +580,14 @@ export var ConnectorOperator;
|
|
|
498
580
|
(function (ConnectorOperator) {
|
|
499
581
|
ConnectorOperator.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
500
582
|
})(ConnectorOperator || (ConnectorOperator = {}));
|
|
583
|
+
export var OAuth2Properties;
|
|
584
|
+
(function (OAuth2Properties) {
|
|
585
|
+
OAuth2Properties.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
586
|
+
})(OAuth2Properties || (OAuth2Properties = {}));
|
|
587
|
+
export var CustomConnectorProfileProperties;
|
|
588
|
+
(function (CustomConnectorProfileProperties) {
|
|
589
|
+
CustomConnectorProfileProperties.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
590
|
+
})(CustomConnectorProfileProperties || (CustomConnectorProfileProperties = {}));
|
|
501
591
|
export var DatadogConnectorProfileProperties;
|
|
502
592
|
(function (DatadogConnectorProfileProperties) {
|
|
503
593
|
DatadogConnectorProfileProperties.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -592,9 +682,21 @@ export var ConnectorProfile;
|
|
|
592
682
|
(function (ConnectorProfile) {
|
|
593
683
|
ConnectorProfile.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
594
684
|
})(ConnectorProfile || (ConnectorProfile = {}));
|
|
685
|
+
export var CustomAuthCredentials;
|
|
686
|
+
(function (CustomAuthCredentials) {
|
|
687
|
+
CustomAuthCredentials.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.credentialsMap && { credentialsMap: SENSITIVE_STRING }))); };
|
|
688
|
+
})(CustomAuthCredentials || (CustomAuthCredentials = {}));
|
|
689
|
+
export var OAuth2Credentials;
|
|
690
|
+
(function (OAuth2Credentials) {
|
|
691
|
+
OAuth2Credentials.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign({}, obj), (obj.clientSecret && { clientSecret: SENSITIVE_STRING })), (obj.accessToken && { accessToken: SENSITIVE_STRING }))); };
|
|
692
|
+
})(OAuth2Credentials || (OAuth2Credentials = {}));
|
|
693
|
+
export var CustomConnectorProfileCredentials;
|
|
694
|
+
(function (CustomConnectorProfileCredentials) {
|
|
695
|
+
CustomConnectorProfileCredentials.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign({}, obj), (obj.basic && { basic: BasicAuthCredentials.filterSensitiveLog(obj.basic) })), (obj.oauth2 && { oauth2: OAuth2Credentials.filterSensitiveLog(obj.oauth2) })), (obj.apiKey && { apiKey: ApiKeyCredentials.filterSensitiveLog(obj.apiKey) })), (obj.custom && { custom: CustomAuthCredentials.filterSensitiveLog(obj.custom) }))); };
|
|
696
|
+
})(CustomConnectorProfileCredentials || (CustomConnectorProfileCredentials = {}));
|
|
595
697
|
export var DatadogConnectorProfileCredentials;
|
|
596
698
|
(function (DatadogConnectorProfileCredentials) {
|
|
597
|
-
DatadogConnectorProfileCredentials.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
699
|
+
DatadogConnectorProfileCredentials.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.apiKey && { apiKey: SENSITIVE_STRING }))); };
|
|
598
700
|
})(DatadogConnectorProfileCredentials || (DatadogConnectorProfileCredentials = {}));
|
|
599
701
|
export var DynatraceConnectorProfileCredentials;
|
|
600
702
|
(function (DynatraceConnectorProfileCredentials) {
|
|
@@ -640,7 +742,7 @@ export var ServiceNowConnectorProfileCredentials;
|
|
|
640
742
|
})(ServiceNowConnectorProfileCredentials || (ServiceNowConnectorProfileCredentials = {}));
|
|
641
743
|
export var SingularConnectorProfileCredentials;
|
|
642
744
|
(function (SingularConnectorProfileCredentials) {
|
|
643
|
-
SingularConnectorProfileCredentials.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
745
|
+
SingularConnectorProfileCredentials.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.apiKey && { apiKey: SENSITIVE_STRING }))); };
|
|
644
746
|
})(SingularConnectorProfileCredentials || (SingularConnectorProfileCredentials = {}));
|
|
645
747
|
export var SlackConnectorProfileCredentials;
|
|
646
748
|
(function (SlackConnectorProfileCredentials) {
|
|
@@ -664,9 +766,11 @@ export var ZendeskConnectorProfileCredentials;
|
|
|
664
766
|
})(ZendeskConnectorProfileCredentials || (ZendeskConnectorProfileCredentials = {}));
|
|
665
767
|
export var ConnectorProfileCredentials;
|
|
666
768
|
(function (ConnectorProfileCredentials) {
|
|
667
|
-
ConnectorProfileCredentials.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, obj), (obj.Amplitude && { Amplitude: AmplitudeConnectorProfileCredentials.filterSensitiveLog(obj.Amplitude) })), (obj.GoogleAnalytics && {
|
|
769
|
+
ConnectorProfileCredentials.filterSensitiveLog = function (obj) { return (__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign(__assign({}, obj), (obj.Amplitude && { Amplitude: AmplitudeConnectorProfileCredentials.filterSensitiveLog(obj.Amplitude) })), (obj.Datadog && { Datadog: DatadogConnectorProfileCredentials.filterSensitiveLog(obj.Datadog) })), (obj.GoogleAnalytics && {
|
|
668
770
|
GoogleAnalytics: GoogleAnalyticsConnectorProfileCredentials.filterSensitiveLog(obj.GoogleAnalytics),
|
|
669
|
-
})), (obj.Honeycode && { Honeycode: HoneycodeConnectorProfileCredentials.filterSensitiveLog(obj.Honeycode) })), (obj.InforNexus && { InforNexus: InforNexusConnectorProfileCredentials.filterSensitiveLog(obj.InforNexus) })), (obj.Marketo && { Marketo: MarketoConnectorProfileCredentials.filterSensitiveLog(obj.Marketo) })), (obj.Redshift && { Redshift: RedshiftConnectorProfileCredentials.filterSensitiveLog(obj.Redshift) })), (obj.Salesforce && { Salesforce: SalesforceConnectorProfileCredentials.filterSensitiveLog(obj.Salesforce) })), (obj.ServiceNow && { ServiceNow: ServiceNowConnectorProfileCredentials.filterSensitiveLog(obj.ServiceNow) })), (obj.Slack && { Slack: SlackConnectorProfileCredentials.filterSensitiveLog(obj.Slack) })), (obj.Snowflake && { Snowflake: SnowflakeConnectorProfileCredentials.filterSensitiveLog(obj.Snowflake) })), (obj.Trendmicro && { Trendmicro: TrendmicroConnectorProfileCredentials.filterSensitiveLog(obj.Trendmicro) })), (obj.Veeva && { Veeva: VeevaConnectorProfileCredentials.filterSensitiveLog(obj.Veeva) })), (obj.Zendesk && { Zendesk: ZendeskConnectorProfileCredentials.filterSensitiveLog(obj.Zendesk) })), (obj.SAPOData && { SAPOData: SAPODataConnectorProfileCredentials.filterSensitiveLog(obj.SAPOData) }))
|
|
771
|
+
})), (obj.Honeycode && { Honeycode: HoneycodeConnectorProfileCredentials.filterSensitiveLog(obj.Honeycode) })), (obj.InforNexus && { InforNexus: InforNexusConnectorProfileCredentials.filterSensitiveLog(obj.InforNexus) })), (obj.Marketo && { Marketo: MarketoConnectorProfileCredentials.filterSensitiveLog(obj.Marketo) })), (obj.Redshift && { Redshift: RedshiftConnectorProfileCredentials.filterSensitiveLog(obj.Redshift) })), (obj.Salesforce && { Salesforce: SalesforceConnectorProfileCredentials.filterSensitiveLog(obj.Salesforce) })), (obj.ServiceNow && { ServiceNow: ServiceNowConnectorProfileCredentials.filterSensitiveLog(obj.ServiceNow) })), (obj.Singular && { Singular: SingularConnectorProfileCredentials.filterSensitiveLog(obj.Singular) })), (obj.Slack && { Slack: SlackConnectorProfileCredentials.filterSensitiveLog(obj.Slack) })), (obj.Snowflake && { Snowflake: SnowflakeConnectorProfileCredentials.filterSensitiveLog(obj.Snowflake) })), (obj.Trendmicro && { Trendmicro: TrendmicroConnectorProfileCredentials.filterSensitiveLog(obj.Trendmicro) })), (obj.Veeva && { Veeva: VeevaConnectorProfileCredentials.filterSensitiveLog(obj.Veeva) })), (obj.Zendesk && { Zendesk: ZendeskConnectorProfileCredentials.filterSensitiveLog(obj.Zendesk) })), (obj.SAPOData && { SAPOData: SAPODataConnectorProfileCredentials.filterSensitiveLog(obj.SAPOData) })), (obj.CustomConnector && {
|
|
772
|
+
CustomConnector: CustomConnectorProfileCredentials.filterSensitiveLog(obj.CustomConnector),
|
|
773
|
+
}))); };
|
|
670
774
|
})(ConnectorProfileCredentials || (ConnectorProfileCredentials = {}));
|
|
671
775
|
export var ConnectorProfileConfig;
|
|
672
776
|
(function (ConnectorProfileConfig) {
|
|
@@ -682,14 +786,18 @@ export var CreateConnectorProfileResponse;
|
|
|
682
786
|
(function (CreateConnectorProfileResponse) {
|
|
683
787
|
CreateConnectorProfileResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
684
788
|
})(CreateConnectorProfileResponse || (CreateConnectorProfileResponse = {}));
|
|
685
|
-
export var CustomerProfilesDestinationProperties;
|
|
686
|
-
(function (CustomerProfilesDestinationProperties) {
|
|
687
|
-
CustomerProfilesDestinationProperties.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
688
|
-
})(CustomerProfilesDestinationProperties || (CustomerProfilesDestinationProperties = {}));
|
|
689
789
|
export var ErrorHandlingConfig;
|
|
690
790
|
(function (ErrorHandlingConfig) {
|
|
691
791
|
ErrorHandlingConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
692
792
|
})(ErrorHandlingConfig || (ErrorHandlingConfig = {}));
|
|
793
|
+
export var CustomConnectorDestinationProperties;
|
|
794
|
+
(function (CustomConnectorDestinationProperties) {
|
|
795
|
+
CustomConnectorDestinationProperties.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
796
|
+
})(CustomConnectorDestinationProperties || (CustomConnectorDestinationProperties = {}));
|
|
797
|
+
export var CustomerProfilesDestinationProperties;
|
|
798
|
+
(function (CustomerProfilesDestinationProperties) {
|
|
799
|
+
CustomerProfilesDestinationProperties.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
800
|
+
})(CustomerProfilesDestinationProperties || (CustomerProfilesDestinationProperties = {}));
|
|
693
801
|
export var EventBridgeDestinationProperties;
|
|
694
802
|
(function (EventBridgeDestinationProperties) {
|
|
695
803
|
EventBridgeDestinationProperties.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -742,6 +850,14 @@ export var SalesforceDestinationProperties;
|
|
|
742
850
|
(function (SalesforceDestinationProperties) {
|
|
743
851
|
SalesforceDestinationProperties.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
744
852
|
})(SalesforceDestinationProperties || (SalesforceDestinationProperties = {}));
|
|
853
|
+
export var SuccessResponseHandlingConfig;
|
|
854
|
+
(function (SuccessResponseHandlingConfig) {
|
|
855
|
+
SuccessResponseHandlingConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
856
|
+
})(SuccessResponseHandlingConfig || (SuccessResponseHandlingConfig = {}));
|
|
857
|
+
export var SAPODataDestinationProperties;
|
|
858
|
+
(function (SAPODataDestinationProperties) {
|
|
859
|
+
SAPODataDestinationProperties.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
860
|
+
})(SAPODataDestinationProperties || (SAPODataDestinationProperties = {}));
|
|
745
861
|
export var SnowflakeDestinationProperties;
|
|
746
862
|
(function (SnowflakeDestinationProperties) {
|
|
747
863
|
SnowflakeDestinationProperties.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -770,6 +886,10 @@ export var IncrementalPullConfig;
|
|
|
770
886
|
(function (IncrementalPullConfig) {
|
|
771
887
|
IncrementalPullConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
772
888
|
})(IncrementalPullConfig || (IncrementalPullConfig = {}));
|
|
889
|
+
export var CustomConnectorSourceProperties;
|
|
890
|
+
(function (CustomConnectorSourceProperties) {
|
|
891
|
+
CustomConnectorSourceProperties.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
892
|
+
})(CustomConnectorSourceProperties || (CustomConnectorSourceProperties = {}));
|
|
773
893
|
export var DatadogSourceProperties;
|
|
774
894
|
(function (DatadogSourceProperties) {
|
|
775
895
|
DatadogSourceProperties.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -869,6 +989,7 @@ export var TaskType;
|
|
|
869
989
|
TaskType["MAP_ALL"] = "Map_all";
|
|
870
990
|
TaskType["MASK"] = "Mask";
|
|
871
991
|
TaskType["MERGE"] = "Merge";
|
|
992
|
+
TaskType["PASSTHROUGH"] = "Passthrough";
|
|
872
993
|
TaskType["TRUNCATE"] = "Truncate";
|
|
873
994
|
TaskType["VALIDATE"] = "Validate";
|
|
874
995
|
})(TaskType || (TaskType = {}));
|
|
@@ -926,6 +1047,14 @@ export var DeleteFlowResponse;
|
|
|
926
1047
|
(function (DeleteFlowResponse) {
|
|
927
1048
|
DeleteFlowResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
928
1049
|
})(DeleteFlowResponse || (DeleteFlowResponse = {}));
|
|
1050
|
+
export var DescribeConnectorRequest;
|
|
1051
|
+
(function (DescribeConnectorRequest) {
|
|
1052
|
+
DescribeConnectorRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1053
|
+
})(DescribeConnectorRequest || (DescribeConnectorRequest = {}));
|
|
1054
|
+
export var DescribeConnectorResponse;
|
|
1055
|
+
(function (DescribeConnectorResponse) {
|
|
1056
|
+
DescribeConnectorResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1057
|
+
})(DescribeConnectorResponse || (DescribeConnectorResponse = {}));
|
|
929
1058
|
export var DescribeConnectorEntityRequest;
|
|
930
1059
|
(function (DescribeConnectorEntityRequest) {
|
|
931
1060
|
DescribeConnectorEntityRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1000,6 +1129,14 @@ export var ListConnectorEntitiesResponse;
|
|
|
1000
1129
|
(function (ListConnectorEntitiesResponse) {
|
|
1001
1130
|
ListConnectorEntitiesResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1002
1131
|
})(ListConnectorEntitiesResponse || (ListConnectorEntitiesResponse = {}));
|
|
1132
|
+
export var ListConnectorsRequest;
|
|
1133
|
+
(function (ListConnectorsRequest) {
|
|
1134
|
+
ListConnectorsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1135
|
+
})(ListConnectorsRequest || (ListConnectorsRequest = {}));
|
|
1136
|
+
export var ListConnectorsResponse;
|
|
1137
|
+
(function (ListConnectorsResponse) {
|
|
1138
|
+
ListConnectorsResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1139
|
+
})(ListConnectorsResponse || (ListConnectorsResponse = {}));
|
|
1003
1140
|
export var ListFlowsRequest;
|
|
1004
1141
|
(function (ListFlowsRequest) {
|
|
1005
1142
|
ListFlowsRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1016,6 +1153,14 @@ export var ListTagsForResourceResponse;
|
|
|
1016
1153
|
(function (ListTagsForResourceResponse) {
|
|
1017
1154
|
ListTagsForResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1018
1155
|
})(ListTagsForResourceResponse || (ListTagsForResourceResponse = {}));
|
|
1156
|
+
export var RegisterConnectorRequest;
|
|
1157
|
+
(function (RegisterConnectorRequest) {
|
|
1158
|
+
RegisterConnectorRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1159
|
+
})(RegisterConnectorRequest || (RegisterConnectorRequest = {}));
|
|
1160
|
+
export var RegisterConnectorResponse;
|
|
1161
|
+
(function (RegisterConnectorResponse) {
|
|
1162
|
+
RegisterConnectorResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1163
|
+
})(RegisterConnectorResponse || (RegisterConnectorResponse = {}));
|
|
1019
1164
|
export var StartFlowRequest;
|
|
1020
1165
|
(function (StartFlowRequest) {
|
|
1021
1166
|
StartFlowRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -1040,6 +1185,14 @@ export var TagResourceResponse;
|
|
|
1040
1185
|
(function (TagResourceResponse) {
|
|
1041
1186
|
TagResourceResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1042
1187
|
})(TagResourceResponse || (TagResourceResponse = {}));
|
|
1188
|
+
export var UnregisterConnectorRequest;
|
|
1189
|
+
(function (UnregisterConnectorRequest) {
|
|
1190
|
+
UnregisterConnectorRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1191
|
+
})(UnregisterConnectorRequest || (UnregisterConnectorRequest = {}));
|
|
1192
|
+
export var UnregisterConnectorResponse;
|
|
1193
|
+
(function (UnregisterConnectorResponse) {
|
|
1194
|
+
UnregisterConnectorResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
1195
|
+
})(UnregisterConnectorResponse || (UnregisterConnectorResponse = {}));
|
|
1043
1196
|
export var UntagResourceRequest;
|
|
1044
1197
|
(function (UntagResourceRequest) {
|
|
1045
1198
|
UntagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
|
|
@@ -46,6 +46,7 @@ export function paginateDescribeConnectors(config, input) {
|
|
|
46
46
|
case 1:
|
|
47
47
|
if (!hasNext) return [3, 9];
|
|
48
48
|
input.nextToken = token;
|
|
49
|
+
input["maxResults"] = config.pageSize;
|
|
49
50
|
if (!(config.client instanceof Appflow)) return [3, 3];
|
|
50
51
|
return [4, __await(makePagedRequest.apply(void 0, __spreadArray([config.client, input], __read(additionalArguments))))];
|
|
51
52
|
case 2:
|