@aws-sdk/client-appflow 3.51.0 → 3.54.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 +33 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/AppflowServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +155 -5
- package/dist-cjs/protocols/Aws_restJson1.js +370 -829
- package/dist-es/index.js +1 -0
- package/dist-es/models/AppflowServiceException.js +12 -0
- package/dist-es/models/models_0.js +135 -1
- package/dist-es/protocols/Aws_restJson1.js +600 -930
- package/dist-types/AppflowClient.d.ts +2 -2
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/AppflowServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +167 -41
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/AppflowClient.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/AppflowServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +96 -41
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/package.json +33 -33
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,39 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.54.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.53.1...v3.54.0) (2022-03-11)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **clients:** update clients as of 2022/03/10 ([#3411](https://github.com/aws/aws-sdk-js-v3/issues/3411)) ([8fa517a](https://github.com/aws/aws-sdk-js-v3/commit/8fa517a2c56d2f98a2e4a9c4ea6fd99b6ce61a71))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.53.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.52.0...v3.53.0) (2022-02-24)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **clients:** generate service exceptions as classes ([#3267](https://github.com/aws/aws-sdk-js-v3/issues/3267)) ([ca64fee](https://github.com/aws/aws-sdk-js-v3/commit/ca64feed3351c394c07dc26b782a5760a396a074))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
# [3.52.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.51.0...v3.52.0) (2022-02-18)
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
* **clients:** update clients as of 2022/02/18 ([#3335](https://github.com/aws/aws-sdk-js-v3/issues/3335)) ([717b06f](https://github.com/aws/aws-sdk-js-v3/commit/717b06fc43e9876a6f8040147b75ad5da38b1e0f))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
6
39
|
# [3.51.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.50.0...v3.51.0) (2022-02-12)
|
|
7
40
|
|
|
8
41
|
**Note:** Version bump only for package @aws-sdk/client-appflow
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AppflowServiceException = void 0;
|
|
3
4
|
const tslib_1 = require("tslib");
|
|
4
5
|
tslib_1.__exportStar(require("./Appflow"), exports);
|
|
5
6
|
tslib_1.__exportStar(require("./AppflowClient"), exports);
|
|
6
7
|
tslib_1.__exportStar(require("./commands"), exports);
|
|
7
8
|
tslib_1.__exportStar(require("./models"), exports);
|
|
8
9
|
tslib_1.__exportStar(require("./pagination"), exports);
|
|
10
|
+
var AppflowServiceException_1 = require("./models/AppflowServiceException");
|
|
11
|
+
Object.defineProperty(exports, "AppflowServiceException", { enumerable: true, get: function () { return AppflowServiceException_1.AppflowServiceException; } });
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.AppflowServiceException = void 0;
|
|
4
|
+
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
5
|
+
class AppflowServiceException extends smithy_client_1.ServiceException {
|
|
6
|
+
constructor(options) {
|
|
7
|
+
super(options);
|
|
8
|
+
Object.setPrototypeOf(this, AppflowServiceException.prototype);
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
exports.AppflowServiceException = AppflowServiceException;
|
|
@@ -1,11 +1,25 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
4
|
-
exports.
|
|
5
|
-
exports.
|
|
6
|
-
exports.
|
|
7
|
-
exports.UpdateFlowResponse = exports.UpdateFlowRequest = exports.UpdateConnectorProfileResponse = exports.UpdateConnectorProfileRequest = exports.UntagResourceResponse = exports.UntagResourceRequest = exports.UnregisterConnectorResponse = exports.UnregisterConnectorRequest = exports.TagResourceResponse = exports.TagResourceRequest = exports.StopFlowResponse = exports.StopFlowRequest = exports.StartFlowResponse = exports.StartFlowRequest = exports.RegisterConnectorResponse = exports.RegisterConnectorRequest = void 0;
|
|
3
|
+
exports.ConnectorConfiguration = exports.WriteOperationType = exports.TriggerType = exports.ScheduleFrequencyType = exports.Operators = exports.ConnectorType = exports.ConnectorRuntimeSetting = exports.ConnectorProvisioningType = exports.ConnectorProvisioningConfig = exports.LambdaConnectorProvisioningConfig = exports.ConnectorMetadata = exports.ZendeskMetadata = exports.VeevaMetadata = exports.UpsolverMetadata = exports.TrendmicroMetadata = exports.SnowflakeMetadata = exports.SlackMetadata = exports.SingularMetadata = exports.ServiceNowMetadata = exports.SAPODataMetadata = exports.SalesforceMetadata = exports.S3Metadata = exports.RedshiftMetadata = exports.MarketoMetadata = exports.InforNexusMetadata = exports.HoneycodeMetadata = exports.GoogleAnalyticsMetadata = exports.EventBridgeMetadata = exports.DynatraceMetadata = exports.DatadogMetadata = exports.CustomerProfilesMetadata = exports.ConnectorAuthenticationException = exports.ConnectionMode = exports.ConflictException = exports.BasicAuthCredentials = exports.AuthenticationType = exports.AuthenticationConfig = exports.OAuth2Defaults = exports.OAuth2GrantType = exports.CustomAuthConfig = exports.AuthParameter = exports.ApiKeyCredentials = exports.AmplitudeSourceProperties = exports.AmplitudeMetadata = exports.AmplitudeConnectorProfileProperties = exports.AmplitudeConnectorProfileCredentials = exports.AmplitudeConnectorOperator = exports.AggregationConfig = exports.AggregationType = exports.AccessDeniedException = void 0;
|
|
4
|
+
exports.CustomAuthCredentials = exports.ConnectorProfile = exports.PrivateConnectionProvisioningState = exports.PrivateConnectionProvisioningStatus = exports.PrivateConnectionProvisioningFailureCause = exports.ConnectorProfileProperties = exports.ZendeskConnectorProfileProperties = exports.VeevaConnectorProfileProperties = exports.TrendmicroConnectorProfileProperties = exports.SnowflakeConnectorProfileProperties = exports.SlackConnectorProfileProperties = exports.SingularConnectorProfileProperties = exports.ServiceNowConnectorProfileProperties = exports.SAPODataConnectorProfileProperties = exports.OAuthProperties = exports.SalesforceConnectorProfileProperties = exports.RedshiftConnectorProfileProperties = exports.MarketoConnectorProfileProperties = exports.InforNexusConnectorProfileProperties = exports.HoneycodeConnectorProfileProperties = exports.GoogleAnalyticsConnectorProfileProperties = exports.DynatraceConnectorProfileProperties = exports.DatadogConnectorProfileProperties = exports.CustomConnectorProfileProperties = exports.OAuth2Properties = exports.ConnectorOperator = exports.ZendeskConnectorOperator = exports.VeevaConnectorOperator = exports.TrendmicroConnectorOperator = exports.SlackConnectorOperator = exports.SingularConnectorOperator = exports.ServiceNowConnectorOperator = exports.SAPODataConnectorOperator = exports.SalesforceConnectorOperator = exports.S3ConnectorOperator = exports.MarketoConnectorOperator = exports.InforNexusConnectorOperator = exports.GoogleAnalyticsConnectorOperator = exports.DynatraceConnectorOperator = exports.DatadogConnectorOperator = exports.ConnectorOAuthRequest = exports.ConnectorEntityField = exports.SupportedFieldTypeDetails = exports.FieldTypeDetails = exports.Operator = exports.Range = exports.SourceFieldProperties = exports.DestinationFieldProperties = exports.ConnectorEntity = exports.ConnectorDetail = void 0;
|
|
5
|
+
exports.DestinationFlowConfig = exports.DestinationConnectorProperties = exports.ZendeskDestinationProperties = exports.UpsolverDestinationProperties = exports.UpsolverS3OutputFormatConfig = exports.SnowflakeDestinationProperties = exports.SAPODataDestinationProperties = exports.SuccessResponseHandlingConfig = exports.SalesforceDestinationProperties = exports.S3DestinationProperties = exports.S3OutputFormatConfig = exports.PrefixConfig = exports.PrefixType = exports.PrefixFormat = exports.FileType = exports.RedshiftDestinationProperties = exports.MarketoDestinationProperties = exports.LookoutMetricsDestinationProperties = exports.HoneycodeDestinationProperties = exports.EventBridgeDestinationProperties = exports.CustomerProfilesDestinationProperties = exports.CustomConnectorDestinationProperties = exports.ErrorHandlingConfig = exports.ValidationException = exports.ServiceQuotaExceededException = exports.InternalServerException = exports.CreateConnectorProfileResponse = exports.CreateConnectorProfileRequest = exports.ConnectorServerException = exports.ConnectorProfileConfig = exports.ConnectorProfileCredentials = exports.ZendeskConnectorProfileCredentials = exports.VeevaConnectorProfileCredentials = exports.TrendmicroConnectorProfileCredentials = exports.SnowflakeConnectorProfileCredentials = exports.SlackConnectorProfileCredentials = exports.SingularConnectorProfileCredentials = exports.ServiceNowConnectorProfileCredentials = exports.SAPODataConnectorProfileCredentials = exports.OAuthCredentials = exports.SalesforceConnectorProfileCredentials = exports.RedshiftConnectorProfileCredentials = exports.MarketoConnectorProfileCredentials = exports.InforNexusConnectorProfileCredentials = exports.HoneycodeConnectorProfileCredentials = exports.GoogleAnalyticsConnectorProfileCredentials = exports.DynatraceConnectorProfileCredentials = exports.DatadogConnectorProfileCredentials = exports.CustomConnectorProfileCredentials = exports.OAuth2Credentials = void 0;
|
|
6
|
+
exports.ExecutionResult = exports.ErrorInfo = exports.DescribeFlowExecutionRecordsRequest = exports.DescribeFlowResponse = exports.ExecutionDetails = exports.ExecutionStatus = exports.DescribeFlowRequest = exports.DescribeConnectorsResponse = exports.DescribeConnectorsRequest = exports.DescribeConnectorProfilesResponse = exports.DescribeConnectorProfilesRequest = exports.DescribeConnectorEntityResponse = exports.DescribeConnectorEntityRequest = exports.DescribeConnectorResponse = exports.DescribeConnectorRequest = exports.DeleteFlowResponse = exports.DeleteFlowRequest = exports.DeleteConnectorProfileResponse = exports.DeleteConnectorProfileRequest = exports.ResourceNotFoundException = exports.CreateFlowResponse = exports.FlowStatus = exports.CreateFlowRequest = exports.TriggerConfig = exports.TriggerProperties = exports.ScheduledTriggerProperties = exports.DataPullMode = exports.Task = exports.TaskType = exports.OperatorPropertiesKeys = exports.SourceFlowConfig = exports.SourceConnectorProperties = exports.ZendeskSourceProperties = exports.VeevaSourceProperties = exports.TrendmicroSourceProperties = exports.SlackSourceProperties = exports.SingularSourceProperties = exports.ServiceNowSourceProperties = exports.SAPODataSourceProperties = exports.SalesforceSourceProperties = exports.S3SourceProperties = exports.S3InputFormatConfig = exports.S3InputFileType = exports.MarketoSourceProperties = exports.InforNexusSourceProperties = exports.GoogleAnalyticsSourceProperties = exports.DynatraceSourceProperties = exports.DatadogSourceProperties = exports.CustomConnectorSourceProperties = exports.IncrementalPullConfig = void 0;
|
|
7
|
+
exports.UpdateFlowResponse = exports.UpdateFlowRequest = exports.UpdateConnectorProfileResponse = exports.UpdateConnectorProfileRequest = exports.UntagResourceResponse = exports.UntagResourceRequest = exports.UnregisterConnectorResponse = exports.UnregisterConnectorRequest = exports.TagResourceResponse = exports.TagResourceRequest = exports.UnsupportedOperationException = exports.StopFlowResponse = exports.StopFlowRequest = exports.StartFlowResponse = exports.StartFlowRequest = exports.ThrottlingException = exports.RegisterConnectorResponse = exports.RegisterConnectorRequest = exports.ListTagsForResourceResponse = exports.ListTagsForResourceRequest = exports.ListFlowsResponse = exports.ListFlowsRequest = exports.ListConnectorsResponse = exports.ListConnectorsRequest = exports.ListConnectorEntitiesResponse = exports.ListConnectorEntitiesRequest = exports.FlowDefinition = exports.DescribeFlowExecutionRecordsResponse = exports.ExecutionRecord = void 0;
|
|
8
8
|
const smithy_client_1 = require("@aws-sdk/smithy-client");
|
|
9
|
+
const AppflowServiceException_1 = require("./AppflowServiceException");
|
|
10
|
+
class AccessDeniedException extends AppflowServiceException_1.AppflowServiceException {
|
|
11
|
+
constructor(opts) {
|
|
12
|
+
super({
|
|
13
|
+
name: "AccessDeniedException",
|
|
14
|
+
$fault: "client",
|
|
15
|
+
...opts,
|
|
16
|
+
});
|
|
17
|
+
this.name = "AccessDeniedException";
|
|
18
|
+
this.$fault = "client";
|
|
19
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
9
23
|
var AggregationType;
|
|
10
24
|
(function (AggregationType) {
|
|
11
25
|
AggregationType["NONE"] = "None";
|
|
@@ -98,11 +112,37 @@ var BasicAuthCredentials;
|
|
|
98
112
|
...(obj.password && { password: smithy_client_1.SENSITIVE_STRING }),
|
|
99
113
|
});
|
|
100
114
|
})(BasicAuthCredentials = exports.BasicAuthCredentials || (exports.BasicAuthCredentials = {}));
|
|
115
|
+
class ConflictException extends AppflowServiceException_1.AppflowServiceException {
|
|
116
|
+
constructor(opts) {
|
|
117
|
+
super({
|
|
118
|
+
name: "ConflictException",
|
|
119
|
+
$fault: "client",
|
|
120
|
+
...opts,
|
|
121
|
+
});
|
|
122
|
+
this.name = "ConflictException";
|
|
123
|
+
this.$fault = "client";
|
|
124
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
exports.ConflictException = ConflictException;
|
|
101
128
|
var ConnectionMode;
|
|
102
129
|
(function (ConnectionMode) {
|
|
103
130
|
ConnectionMode["PRIVATE"] = "Private";
|
|
104
131
|
ConnectionMode["PUBLIC"] = "Public";
|
|
105
132
|
})(ConnectionMode = exports.ConnectionMode || (exports.ConnectionMode = {}));
|
|
133
|
+
class ConnectorAuthenticationException extends AppflowServiceException_1.AppflowServiceException {
|
|
134
|
+
constructor(opts) {
|
|
135
|
+
super({
|
|
136
|
+
name: "ConnectorAuthenticationException",
|
|
137
|
+
$fault: "client",
|
|
138
|
+
...opts,
|
|
139
|
+
});
|
|
140
|
+
this.name = "ConnectorAuthenticationException";
|
|
141
|
+
this.$fault = "client";
|
|
142
|
+
Object.setPrototypeOf(this, ConnectorAuthenticationException.prototype);
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
exports.ConnectorAuthenticationException = ConnectorAuthenticationException;
|
|
106
146
|
var CustomerProfilesMetadata;
|
|
107
147
|
(function (CustomerProfilesMetadata) {
|
|
108
148
|
CustomerProfilesMetadata.filterSensitiveLog = (obj) => ({
|
|
@@ -1017,6 +1057,19 @@ var ConnectorProfileConfig;
|
|
|
1017
1057
|
}),
|
|
1018
1058
|
});
|
|
1019
1059
|
})(ConnectorProfileConfig = exports.ConnectorProfileConfig || (exports.ConnectorProfileConfig = {}));
|
|
1060
|
+
class ConnectorServerException extends AppflowServiceException_1.AppflowServiceException {
|
|
1061
|
+
constructor(opts) {
|
|
1062
|
+
super({
|
|
1063
|
+
name: "ConnectorServerException",
|
|
1064
|
+
$fault: "client",
|
|
1065
|
+
...opts,
|
|
1066
|
+
});
|
|
1067
|
+
this.name = "ConnectorServerException";
|
|
1068
|
+
this.$fault = "client";
|
|
1069
|
+
Object.setPrototypeOf(this, ConnectorServerException.prototype);
|
|
1070
|
+
}
|
|
1071
|
+
}
|
|
1072
|
+
exports.ConnectorServerException = ConnectorServerException;
|
|
1020
1073
|
var CreateConnectorProfileRequest;
|
|
1021
1074
|
(function (CreateConnectorProfileRequest) {
|
|
1022
1075
|
CreateConnectorProfileRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -1029,6 +1082,45 @@ var CreateConnectorProfileResponse;
|
|
|
1029
1082
|
...obj,
|
|
1030
1083
|
});
|
|
1031
1084
|
})(CreateConnectorProfileResponse = exports.CreateConnectorProfileResponse || (exports.CreateConnectorProfileResponse = {}));
|
|
1085
|
+
class InternalServerException extends AppflowServiceException_1.AppflowServiceException {
|
|
1086
|
+
constructor(opts) {
|
|
1087
|
+
super({
|
|
1088
|
+
name: "InternalServerException",
|
|
1089
|
+
$fault: "server",
|
|
1090
|
+
...opts,
|
|
1091
|
+
});
|
|
1092
|
+
this.name = "InternalServerException";
|
|
1093
|
+
this.$fault = "server";
|
|
1094
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
1095
|
+
}
|
|
1096
|
+
}
|
|
1097
|
+
exports.InternalServerException = InternalServerException;
|
|
1098
|
+
class ServiceQuotaExceededException extends AppflowServiceException_1.AppflowServiceException {
|
|
1099
|
+
constructor(opts) {
|
|
1100
|
+
super({
|
|
1101
|
+
name: "ServiceQuotaExceededException",
|
|
1102
|
+
$fault: "client",
|
|
1103
|
+
...opts,
|
|
1104
|
+
});
|
|
1105
|
+
this.name = "ServiceQuotaExceededException";
|
|
1106
|
+
this.$fault = "client";
|
|
1107
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
1108
|
+
}
|
|
1109
|
+
}
|
|
1110
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1111
|
+
class ValidationException extends AppflowServiceException_1.AppflowServiceException {
|
|
1112
|
+
constructor(opts) {
|
|
1113
|
+
super({
|
|
1114
|
+
name: "ValidationException",
|
|
1115
|
+
$fault: "client",
|
|
1116
|
+
...opts,
|
|
1117
|
+
});
|
|
1118
|
+
this.name = "ValidationException";
|
|
1119
|
+
this.$fault = "client";
|
|
1120
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
1121
|
+
}
|
|
1122
|
+
}
|
|
1123
|
+
exports.ValidationException = ValidationException;
|
|
1032
1124
|
var ErrorHandlingConfig;
|
|
1033
1125
|
(function (ErrorHandlingConfig) {
|
|
1034
1126
|
ErrorHandlingConfig.filterSensitiveLog = (obj) => ({
|
|
@@ -1065,6 +1157,12 @@ var LookoutMetricsDestinationProperties;
|
|
|
1065
1157
|
...obj,
|
|
1066
1158
|
});
|
|
1067
1159
|
})(LookoutMetricsDestinationProperties = exports.LookoutMetricsDestinationProperties || (exports.LookoutMetricsDestinationProperties = {}));
|
|
1160
|
+
var MarketoDestinationProperties;
|
|
1161
|
+
(function (MarketoDestinationProperties) {
|
|
1162
|
+
MarketoDestinationProperties.filterSensitiveLog = (obj) => ({
|
|
1163
|
+
...obj,
|
|
1164
|
+
});
|
|
1165
|
+
})(MarketoDestinationProperties = exports.MarketoDestinationProperties || (exports.MarketoDestinationProperties = {}));
|
|
1068
1166
|
var RedshiftDestinationProperties;
|
|
1069
1167
|
(function (RedshiftDestinationProperties) {
|
|
1070
1168
|
RedshiftDestinationProperties.filterSensitiveLog = (obj) => ({
|
|
@@ -1115,6 +1213,18 @@ var SalesforceDestinationProperties;
|
|
|
1115
1213
|
...obj,
|
|
1116
1214
|
});
|
|
1117
1215
|
})(SalesforceDestinationProperties = exports.SalesforceDestinationProperties || (exports.SalesforceDestinationProperties = {}));
|
|
1216
|
+
var SuccessResponseHandlingConfig;
|
|
1217
|
+
(function (SuccessResponseHandlingConfig) {
|
|
1218
|
+
SuccessResponseHandlingConfig.filterSensitiveLog = (obj) => ({
|
|
1219
|
+
...obj,
|
|
1220
|
+
});
|
|
1221
|
+
})(SuccessResponseHandlingConfig = exports.SuccessResponseHandlingConfig || (exports.SuccessResponseHandlingConfig = {}));
|
|
1222
|
+
var SAPODataDestinationProperties;
|
|
1223
|
+
(function (SAPODataDestinationProperties) {
|
|
1224
|
+
SAPODataDestinationProperties.filterSensitiveLog = (obj) => ({
|
|
1225
|
+
...obj,
|
|
1226
|
+
});
|
|
1227
|
+
})(SAPODataDestinationProperties = exports.SAPODataDestinationProperties || (exports.SAPODataDestinationProperties = {}));
|
|
1118
1228
|
var SnowflakeDestinationProperties;
|
|
1119
1229
|
(function (SnowflakeDestinationProperties) {
|
|
1120
1230
|
SnowflakeDestinationProperties.filterSensitiveLog = (obj) => ({
|
|
@@ -1296,6 +1406,7 @@ var TaskType;
|
|
|
1296
1406
|
TaskType["MAP_ALL"] = "Map_all";
|
|
1297
1407
|
TaskType["MASK"] = "Mask";
|
|
1298
1408
|
TaskType["MERGE"] = "Merge";
|
|
1409
|
+
TaskType["PASSTHROUGH"] = "Passthrough";
|
|
1299
1410
|
TaskType["TRUNCATE"] = "Truncate";
|
|
1300
1411
|
TaskType["VALIDATE"] = "Validate";
|
|
1301
1412
|
})(TaskType = exports.TaskType || (exports.TaskType = {}));
|
|
@@ -1349,6 +1460,19 @@ var CreateFlowResponse;
|
|
|
1349
1460
|
...obj,
|
|
1350
1461
|
});
|
|
1351
1462
|
})(CreateFlowResponse = exports.CreateFlowResponse || (exports.CreateFlowResponse = {}));
|
|
1463
|
+
class ResourceNotFoundException extends AppflowServiceException_1.AppflowServiceException {
|
|
1464
|
+
constructor(opts) {
|
|
1465
|
+
super({
|
|
1466
|
+
name: "ResourceNotFoundException",
|
|
1467
|
+
$fault: "client",
|
|
1468
|
+
...opts,
|
|
1469
|
+
});
|
|
1470
|
+
this.name = "ResourceNotFoundException";
|
|
1471
|
+
this.$fault = "client";
|
|
1472
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
1473
|
+
}
|
|
1474
|
+
}
|
|
1475
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1352
1476
|
var DeleteConnectorProfileRequest;
|
|
1353
1477
|
(function (DeleteConnectorProfileRequest) {
|
|
1354
1478
|
DeleteConnectorProfileRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -1541,6 +1665,19 @@ var RegisterConnectorResponse;
|
|
|
1541
1665
|
...obj,
|
|
1542
1666
|
});
|
|
1543
1667
|
})(RegisterConnectorResponse = exports.RegisterConnectorResponse || (exports.RegisterConnectorResponse = {}));
|
|
1668
|
+
class ThrottlingException extends AppflowServiceException_1.AppflowServiceException {
|
|
1669
|
+
constructor(opts) {
|
|
1670
|
+
super({
|
|
1671
|
+
name: "ThrottlingException",
|
|
1672
|
+
$fault: "client",
|
|
1673
|
+
...opts,
|
|
1674
|
+
});
|
|
1675
|
+
this.name = "ThrottlingException";
|
|
1676
|
+
this.$fault = "client";
|
|
1677
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
1678
|
+
}
|
|
1679
|
+
}
|
|
1680
|
+
exports.ThrottlingException = ThrottlingException;
|
|
1544
1681
|
var StartFlowRequest;
|
|
1545
1682
|
(function (StartFlowRequest) {
|
|
1546
1683
|
StartFlowRequest.filterSensitiveLog = (obj) => ({
|
|
@@ -1565,6 +1702,19 @@ var StopFlowResponse;
|
|
|
1565
1702
|
...obj,
|
|
1566
1703
|
});
|
|
1567
1704
|
})(StopFlowResponse = exports.StopFlowResponse || (exports.StopFlowResponse = {}));
|
|
1705
|
+
class UnsupportedOperationException extends AppflowServiceException_1.AppflowServiceException {
|
|
1706
|
+
constructor(opts) {
|
|
1707
|
+
super({
|
|
1708
|
+
name: "UnsupportedOperationException",
|
|
1709
|
+
$fault: "client",
|
|
1710
|
+
...opts,
|
|
1711
|
+
});
|
|
1712
|
+
this.name = "UnsupportedOperationException";
|
|
1713
|
+
this.$fault = "client";
|
|
1714
|
+
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
1715
|
+
}
|
|
1716
|
+
}
|
|
1717
|
+
exports.UnsupportedOperationException = UnsupportedOperationException;
|
|
1568
1718
|
var TagResourceRequest;
|
|
1569
1719
|
(function (TagResourceRequest) {
|
|
1570
1720
|
TagResourceRequest.filterSensitiveLog = (obj) => ({
|