@aws-sdk/client-appflow 3.50.0 → 3.53.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.
Files changed (55) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/AppflowServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +149 -5
  5. package/dist-cjs/protocols/Aws_restJson1.js +346 -829
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/AppflowServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +131 -1
  9. package/dist-es/protocols/Aws_restJson1.js +580 -930
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/AppflowServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +140 -41
  13. package/dist-types/ts3.4/Appflow.d.ts +115 -0
  14. package/dist-types/ts3.4/AppflowClient.d.ts +95 -0
  15. package/dist-types/ts3.4/commands/CreateConnectorProfileCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateFlowCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/DeleteConnectorProfileCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/DeleteFlowCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DescribeConnectorEntityCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/DescribeConnectorProfilesCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/DescribeConnectorsCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/DescribeFlowCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/DescribeFlowExecutionRecordsCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/ListConnectorEntitiesCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/ListFlowsCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/RegisterConnectorCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/StartFlowCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/StopFlowCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/UnregisterConnectorCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  35. package/dist-types/ts3.4/commands/UpdateConnectorProfileCommand.d.ts +17 -0
  36. package/dist-types/ts3.4/commands/UpdateFlowCommand.d.ts +17 -0
  37. package/dist-types/ts3.4/commands/index.d.ts +22 -0
  38. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  39. package/dist-types/ts3.4/index.d.ts +6 -0
  40. package/dist-types/ts3.4/models/AppflowServiceException.d.ts +6 -0
  41. package/dist-types/ts3.4/models/index.d.ts +1 -0
  42. package/dist-types/ts3.4/models/models_0.d.ts +2897 -0
  43. package/dist-types/ts3.4/pagination/DescribeConnectorProfilesPaginator.d.ts +4 -0
  44. package/dist-types/ts3.4/pagination/DescribeConnectorsPaginator.d.ts +4 -0
  45. package/dist-types/ts3.4/pagination/DescribeFlowExecutionRecordsPaginator.d.ts +4 -0
  46. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  47. package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +4 -0
  48. package/dist-types/ts3.4/pagination/ListFlowsPaginator.d.ts +4 -0
  49. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  50. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +68 -0
  51. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  52. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  53. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  54. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  55. package/package.json +33 -33
package/dist-es/index.js CHANGED
@@ -3,3 +3,4 @@ export * from "./AppflowClient";
3
3
  export * from "./commands";
4
4
  export * from "./models";
5
5
  export * from "./pagination";
6
+ export { AppflowServiceException } from "./models/AppflowServiceException";
@@ -0,0 +1,12 @@
1
+ import { __extends } from "tslib";
2
+ import { ServiceException as __ServiceException, } from "@aws-sdk/smithy-client";
3
+ var AppflowServiceException = (function (_super) {
4
+ __extends(AppflowServiceException, _super);
5
+ function AppflowServiceException(options) {
6
+ var _this = _super.call(this, options) || this;
7
+ Object.setPrototypeOf(_this, AppflowServiceException.prototype);
8
+ return _this;
9
+ }
10
+ return AppflowServiceException;
11
+ }(__ServiceException));
12
+ export { AppflowServiceException };
@@ -1,5 +1,18 @@
1
- import { __assign } from "tslib";
1
+ import { __assign, __extends } from "tslib";
2
2
  import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
3
+ import { AppflowServiceException as __BaseException } from "./AppflowServiceException";
4
+ var AccessDeniedException = (function (_super) {
5
+ __extends(AccessDeniedException, _super);
6
+ function AccessDeniedException(opts) {
7
+ var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
8
+ _this.name = "AccessDeniedException";
9
+ _this.$fault = "client";
10
+ Object.setPrototypeOf(_this, AccessDeniedException.prototype);
11
+ return _this;
12
+ }
13
+ return AccessDeniedException;
14
+ }(__BaseException));
15
+ export { AccessDeniedException };
3
16
  export var AggregationType;
4
17
  (function (AggregationType) {
5
18
  AggregationType["NONE"] = "None";
@@ -65,11 +78,35 @@ export var BasicAuthCredentials;
65
78
  (function (BasicAuthCredentials) {
66
79
  BasicAuthCredentials.filterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.password && { password: SENSITIVE_STRING }))); };
67
80
  })(BasicAuthCredentials || (BasicAuthCredentials = {}));
81
+ var ConflictException = (function (_super) {
82
+ __extends(ConflictException, _super);
83
+ function ConflictException(opts) {
84
+ var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
85
+ _this.name = "ConflictException";
86
+ _this.$fault = "client";
87
+ Object.setPrototypeOf(_this, ConflictException.prototype);
88
+ return _this;
89
+ }
90
+ return ConflictException;
91
+ }(__BaseException));
92
+ export { ConflictException };
68
93
  export var ConnectionMode;
69
94
  (function (ConnectionMode) {
70
95
  ConnectionMode["PRIVATE"] = "Private";
71
96
  ConnectionMode["PUBLIC"] = "Public";
72
97
  })(ConnectionMode || (ConnectionMode = {}));
98
+ var ConnectorAuthenticationException = (function (_super) {
99
+ __extends(ConnectorAuthenticationException, _super);
100
+ function ConnectorAuthenticationException(opts) {
101
+ var _this = _super.call(this, __assign({ name: "ConnectorAuthenticationException", $fault: "client" }, opts)) || this;
102
+ _this.name = "ConnectorAuthenticationException";
103
+ _this.$fault = "client";
104
+ Object.setPrototypeOf(_this, ConnectorAuthenticationException.prototype);
105
+ return _this;
106
+ }
107
+ return ConnectorAuthenticationException;
108
+ }(__BaseException));
109
+ export { ConnectorAuthenticationException };
73
110
  export var CustomerProfilesMetadata;
74
111
  (function (CustomerProfilesMetadata) {
75
112
  CustomerProfilesMetadata.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -778,6 +815,18 @@ export var ConnectorProfileConfig;
778
815
  connectorProfileCredentials: ConnectorProfileCredentials.filterSensitiveLog(obj.connectorProfileCredentials),
779
816
  }))); };
780
817
  })(ConnectorProfileConfig || (ConnectorProfileConfig = {}));
818
+ var ConnectorServerException = (function (_super) {
819
+ __extends(ConnectorServerException, _super);
820
+ function ConnectorServerException(opts) {
821
+ var _this = _super.call(this, __assign({ name: "ConnectorServerException", $fault: "client" }, opts)) || this;
822
+ _this.name = "ConnectorServerException";
823
+ _this.$fault = "client";
824
+ Object.setPrototypeOf(_this, ConnectorServerException.prototype);
825
+ return _this;
826
+ }
827
+ return ConnectorServerException;
828
+ }(__BaseException));
829
+ export { ConnectorServerException };
781
830
  export var CreateConnectorProfileRequest;
782
831
  (function (CreateConnectorProfileRequest) {
783
832
  CreateConnectorProfileRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -786,6 +835,42 @@ export var CreateConnectorProfileResponse;
786
835
  (function (CreateConnectorProfileResponse) {
787
836
  CreateConnectorProfileResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
788
837
  })(CreateConnectorProfileResponse || (CreateConnectorProfileResponse = {}));
838
+ var InternalServerException = (function (_super) {
839
+ __extends(InternalServerException, _super);
840
+ function InternalServerException(opts) {
841
+ var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
842
+ _this.name = "InternalServerException";
843
+ _this.$fault = "server";
844
+ Object.setPrototypeOf(_this, InternalServerException.prototype);
845
+ return _this;
846
+ }
847
+ return InternalServerException;
848
+ }(__BaseException));
849
+ export { InternalServerException };
850
+ var ServiceQuotaExceededException = (function (_super) {
851
+ __extends(ServiceQuotaExceededException, _super);
852
+ function ServiceQuotaExceededException(opts) {
853
+ var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
854
+ _this.name = "ServiceQuotaExceededException";
855
+ _this.$fault = "client";
856
+ Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
857
+ return _this;
858
+ }
859
+ return ServiceQuotaExceededException;
860
+ }(__BaseException));
861
+ export { ServiceQuotaExceededException };
862
+ var ValidationException = (function (_super) {
863
+ __extends(ValidationException, _super);
864
+ function ValidationException(opts) {
865
+ var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
866
+ _this.name = "ValidationException";
867
+ _this.$fault = "client";
868
+ Object.setPrototypeOf(_this, ValidationException.prototype);
869
+ return _this;
870
+ }
871
+ return ValidationException;
872
+ }(__BaseException));
873
+ export { ValidationException };
789
874
  export var ErrorHandlingConfig;
790
875
  (function (ErrorHandlingConfig) {
791
876
  ErrorHandlingConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -850,6 +935,14 @@ export var SalesforceDestinationProperties;
850
935
  (function (SalesforceDestinationProperties) {
851
936
  SalesforceDestinationProperties.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
852
937
  })(SalesforceDestinationProperties || (SalesforceDestinationProperties = {}));
938
+ export var SuccessResponseHandlingConfig;
939
+ (function (SuccessResponseHandlingConfig) {
940
+ SuccessResponseHandlingConfig.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
941
+ })(SuccessResponseHandlingConfig || (SuccessResponseHandlingConfig = {}));
942
+ export var SAPODataDestinationProperties;
943
+ (function (SAPODataDestinationProperties) {
944
+ SAPODataDestinationProperties.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
945
+ })(SAPODataDestinationProperties || (SAPODataDestinationProperties = {}));
853
946
  export var SnowflakeDestinationProperties;
854
947
  (function (SnowflakeDestinationProperties) {
855
948
  SnowflakeDestinationProperties.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -981,6 +1074,7 @@ export var TaskType;
981
1074
  TaskType["MAP_ALL"] = "Map_all";
982
1075
  TaskType["MASK"] = "Mask";
983
1076
  TaskType["MERGE"] = "Merge";
1077
+ TaskType["PASSTHROUGH"] = "Passthrough";
984
1078
  TaskType["TRUNCATE"] = "Truncate";
985
1079
  TaskType["VALIDATE"] = "Validate";
986
1080
  })(TaskType || (TaskType = {}));
@@ -1022,6 +1116,18 @@ export var CreateFlowResponse;
1022
1116
  (function (CreateFlowResponse) {
1023
1117
  CreateFlowResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1024
1118
  })(CreateFlowResponse || (CreateFlowResponse = {}));
1119
+ var ResourceNotFoundException = (function (_super) {
1120
+ __extends(ResourceNotFoundException, _super);
1121
+ function ResourceNotFoundException(opts) {
1122
+ var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
1123
+ _this.name = "ResourceNotFoundException";
1124
+ _this.$fault = "client";
1125
+ Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
1126
+ return _this;
1127
+ }
1128
+ return ResourceNotFoundException;
1129
+ }(__BaseException));
1130
+ export { ResourceNotFoundException };
1025
1131
  export var DeleteConnectorProfileRequest;
1026
1132
  (function (DeleteConnectorProfileRequest) {
1027
1133
  DeleteConnectorProfileRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -1152,6 +1258,18 @@ export var RegisterConnectorResponse;
1152
1258
  (function (RegisterConnectorResponse) {
1153
1259
  RegisterConnectorResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1154
1260
  })(RegisterConnectorResponse || (RegisterConnectorResponse = {}));
1261
+ var ThrottlingException = (function (_super) {
1262
+ __extends(ThrottlingException, _super);
1263
+ function ThrottlingException(opts) {
1264
+ var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
1265
+ _this.name = "ThrottlingException";
1266
+ _this.$fault = "client";
1267
+ Object.setPrototypeOf(_this, ThrottlingException.prototype);
1268
+ return _this;
1269
+ }
1270
+ return ThrottlingException;
1271
+ }(__BaseException));
1272
+ export { ThrottlingException };
1155
1273
  export var StartFlowRequest;
1156
1274
  (function (StartFlowRequest) {
1157
1275
  StartFlowRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -1168,6 +1286,18 @@ export var StopFlowResponse;
1168
1286
  (function (StopFlowResponse) {
1169
1287
  StopFlowResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1170
1288
  })(StopFlowResponse || (StopFlowResponse = {}));
1289
+ var UnsupportedOperationException = (function (_super) {
1290
+ __extends(UnsupportedOperationException, _super);
1291
+ function UnsupportedOperationException(opts) {
1292
+ var _this = _super.call(this, __assign({ name: "UnsupportedOperationException", $fault: "client" }, opts)) || this;
1293
+ _this.name = "UnsupportedOperationException";
1294
+ _this.$fault = "client";
1295
+ Object.setPrototypeOf(_this, UnsupportedOperationException.prototype);
1296
+ return _this;
1297
+ }
1298
+ return UnsupportedOperationException;
1299
+ }(__BaseException));
1300
+ export { UnsupportedOperationException };
1171
1301
  export var TagResourceRequest;
1172
1302
  (function (TagResourceRequest) {
1173
1303
  TagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };