@aws-sdk/client-appflow 3.52.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.
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)); };
@@ -1031,6 +1116,18 @@ export var CreateFlowResponse;
1031
1116
  (function (CreateFlowResponse) {
1032
1117
  CreateFlowResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1033
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 };
1034
1131
  export var DeleteConnectorProfileRequest;
1035
1132
  (function (DeleteConnectorProfileRequest) {
1036
1133
  DeleteConnectorProfileRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -1161,6 +1258,18 @@ export var RegisterConnectorResponse;
1161
1258
  (function (RegisterConnectorResponse) {
1162
1259
  RegisterConnectorResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1163
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 };
1164
1273
  export var StartFlowRequest;
1165
1274
  (function (StartFlowRequest) {
1166
1275
  StartFlowRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
@@ -1177,6 +1286,18 @@ export var StopFlowResponse;
1177
1286
  (function (StopFlowResponse) {
1178
1287
  StopFlowResponse.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };
1179
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 };
1180
1301
  export var TagResourceRequest;
1181
1302
  (function (TagResourceRequest) {
1182
1303
  TagResourceRequest.filterSensitiveLog = function (obj) { return (__assign({}, obj)); };