@aws-sdk/client-appflow 3.928.0 → 3.930.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 (49) hide show
  1. package/dist-cjs/index.js +2103 -1536
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/AppflowClient.js +2 -0
  4. package/dist-es/commands/CancelFlowExecutionsCommand.js +3 -9
  5. package/dist-es/commands/CreateConnectorProfileCommand.js +3 -10
  6. package/dist-es/commands/CreateFlowCommand.js +3 -9
  7. package/dist-es/commands/DeleteConnectorProfileCommand.js +3 -9
  8. package/dist-es/commands/DeleteFlowCommand.js +3 -9
  9. package/dist-es/commands/DescribeConnectorCommand.js +3 -9
  10. package/dist-es/commands/DescribeConnectorEntityCommand.js +3 -9
  11. package/dist-es/commands/DescribeConnectorProfilesCommand.js +3 -9
  12. package/dist-es/commands/DescribeConnectorsCommand.js +3 -9
  13. package/dist-es/commands/DescribeFlowCommand.js +3 -9
  14. package/dist-es/commands/DescribeFlowExecutionRecordsCommand.js +3 -9
  15. package/dist-es/commands/ListConnectorEntitiesCommand.js +3 -9
  16. package/dist-es/commands/ListConnectorsCommand.js +3 -9
  17. package/dist-es/commands/ListFlowsCommand.js +3 -9
  18. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  19. package/dist-es/commands/RegisterConnectorCommand.js +3 -9
  20. package/dist-es/commands/ResetConnectorMetadataCacheCommand.js +3 -9
  21. package/dist-es/commands/StartFlowCommand.js +3 -9
  22. package/dist-es/commands/StopFlowCommand.js +3 -9
  23. package/dist-es/commands/TagResourceCommand.js +3 -9
  24. package/dist-es/commands/UnregisterConnectorCommand.js +3 -9
  25. package/dist-es/commands/UntagResourceCommand.js +3 -9
  26. package/dist-es/commands/UpdateConnectorProfileCommand.js +3 -10
  27. package/dist-es/commands/UpdateConnectorRegistrationCommand.js +3 -9
  28. package/dist-es/commands/UpdateFlowCommand.js +3 -9
  29. package/dist-es/models/models_0.js +0 -148
  30. package/dist-es/runtimeConfig.shared.js +2 -0
  31. package/dist-es/schemas/schemas_0.js +2052 -0
  32. package/dist-types/AppflowClient.d.ts +10 -1
  33. package/dist-types/models/models_0.d.ts +0 -108
  34. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  35. package/dist-types/runtimeConfig.d.ts +1 -0
  36. package/dist-types/runtimeConfig.native.d.ts +1 -0
  37. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  38. package/dist-types/schemas/schemas_0.d.ts +295 -0
  39. package/dist-types/ts3.4/AppflowClient.d.ts +4 -0
  40. package/dist-types/ts3.4/models/models_0.d.ts +0 -81
  41. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  42. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  43. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  44. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  45. package/dist-types/ts3.4/schemas/schemas_0.d.ts +302 -0
  46. package/package.json +33 -34
  47. package/dist-es/protocols/Aws_restJson1.js +0 -1159
  48. package/dist-types/protocols/Aws_restJson1.d.ts +0 -227
  49. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -305
package/dist-cjs/index.js CHANGED
@@ -6,6 +6,7 @@ var middlewareRecursionDetection = require('@aws-sdk/middleware-recursion-detect
6
6
  var middlewareUserAgent = require('@aws-sdk/middleware-user-agent');
7
7
  var configResolver = require('@smithy/config-resolver');
8
8
  var core = require('@smithy/core');
9
+ var schema = require('@smithy/core/schema');
9
10
  var middlewareContentLength = require('@smithy/middleware-content-length');
10
11
  var middlewareEndpoint = require('@smithy/middleware-endpoint');
11
12
  var middlewareRetry = require('@smithy/middleware-retry');
@@ -14,9 +15,6 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
14
15
  var runtimeConfig = require('./runtimeConfig');
15
16
  var regionConfigResolver = require('@aws-sdk/region-config-resolver');
16
17
  var protocolHttp = require('@smithy/protocol-http');
17
- var middlewareSerde = require('@smithy/middleware-serde');
18
- var core$1 = require('@aws-sdk/core');
19
- var uuid = require('@smithy/uuid');
20
18
 
21
19
  const resolveClientEndpointParameters = (options) => {
22
20
  return Object.assign(options, {
@@ -92,6 +90,7 @@ class AppflowClient extends smithyClient.Client {
92
90
  const _config_7 = httpAuthSchemeProvider.resolveHttpAuthSchemeConfig(_config_6);
93
91
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
94
92
  this.config = _config_8;
93
+ this.middlewareStack.use(schema.getSchemaSerdePlugin(this.config));
95
94
  this.middlewareStack.use(middlewareUserAgent.getUserAgentPlugin(this.config));
96
95
  this.middlewareStack.use(middlewareRetry.getRetryPlugin(this.config));
97
96
  this.middlewareStack.use(middlewareContentLength.getContentLengthPlugin(this.config));
@@ -111,14 +110,14 @@ class AppflowClient extends smithyClient.Client {
111
110
  }
112
111
  }
113
112
 
114
- class AppflowServiceException extends smithyClient.ServiceException {
113
+ let AppflowServiceException$1 = class AppflowServiceException extends smithyClient.ServiceException {
115
114
  constructor(options) {
116
115
  super(options);
117
116
  Object.setPrototypeOf(this, AppflowServiceException.prototype);
118
117
  }
119
- }
118
+ };
120
119
 
121
- class AccessDeniedException extends AppflowServiceException {
120
+ let AccessDeniedException$1 = class AccessDeniedException extends AppflowServiceException$1 {
122
121
  name = "AccessDeniedException";
123
122
  $fault = "client";
124
123
  constructor(opts) {
@@ -129,7 +128,7 @@ class AccessDeniedException extends AppflowServiceException {
129
128
  });
130
129
  Object.setPrototypeOf(this, AccessDeniedException.prototype);
131
130
  }
132
- }
131
+ };
133
132
  const AggregationType = {
134
133
  NONE: "None",
135
134
  SINGLE_FILE: "SingleFile",
@@ -152,7 +151,7 @@ const AuthenticationType = {
152
151
  CUSTOM: "CUSTOM",
153
152
  OAUTH2: "OAUTH2",
154
153
  };
155
- class InternalServerException extends AppflowServiceException {
154
+ let InternalServerException$1 = class InternalServerException extends AppflowServiceException$1 {
156
155
  name = "InternalServerException";
157
156
  $fault = "server";
158
157
  constructor(opts) {
@@ -163,8 +162,8 @@ class InternalServerException extends AppflowServiceException {
163
162
  });
164
163
  Object.setPrototypeOf(this, InternalServerException.prototype);
165
164
  }
166
- }
167
- class ResourceNotFoundException extends AppflowServiceException {
165
+ };
166
+ let ResourceNotFoundException$1 = class ResourceNotFoundException extends AppflowServiceException$1 {
168
167
  name = "ResourceNotFoundException";
169
168
  $fault = "client";
170
169
  constructor(opts) {
@@ -175,8 +174,8 @@ class ResourceNotFoundException extends AppflowServiceException {
175
174
  });
176
175
  Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
177
176
  }
178
- }
179
- class ThrottlingException extends AppflowServiceException {
177
+ };
178
+ let ThrottlingException$1 = class ThrottlingException extends AppflowServiceException$1 {
180
179
  name = "ThrottlingException";
181
180
  $fault = "client";
182
181
  constructor(opts) {
@@ -187,8 +186,8 @@ class ThrottlingException extends AppflowServiceException {
187
186
  });
188
187
  Object.setPrototypeOf(this, ThrottlingException.prototype);
189
188
  }
190
- }
191
- class ValidationException extends AppflowServiceException {
189
+ };
190
+ let ValidationException$1 = class ValidationException extends AppflowServiceException$1 {
192
191
  name = "ValidationException";
193
192
  $fault = "client";
194
193
  constructor(opts) {
@@ -199,11 +198,11 @@ class ValidationException extends AppflowServiceException {
199
198
  });
200
199
  Object.setPrototypeOf(this, ValidationException.prototype);
201
200
  }
202
- }
201
+ };
203
202
  const CatalogType = {
204
203
  GLUE: "GLUE",
205
204
  };
206
- class ConflictException extends AppflowServiceException {
205
+ let ConflictException$1 = class ConflictException extends AppflowServiceException$1 {
207
206
  name = "ConflictException";
208
207
  $fault = "client";
209
208
  constructor(opts) {
@@ -214,12 +213,12 @@ class ConflictException extends AppflowServiceException {
214
213
  });
215
214
  Object.setPrototypeOf(this, ConflictException.prototype);
216
215
  }
217
- }
216
+ };
218
217
  const ConnectionMode = {
219
218
  PRIVATE: "Private",
220
219
  PUBLIC: "Public",
221
220
  };
222
- class ConnectorAuthenticationException extends AppflowServiceException {
221
+ let ConnectorAuthenticationException$1 = class ConnectorAuthenticationException extends AppflowServiceException$1 {
223
222
  name = "ConnectorAuthenticationException";
224
223
  $fault = "client";
225
224
  constructor(opts) {
@@ -230,7 +229,7 @@ class ConnectorAuthenticationException extends AppflowServiceException {
230
229
  });
231
230
  Object.setPrototypeOf(this, ConnectorAuthenticationException.prototype);
232
231
  }
233
- }
232
+ };
234
233
  const SalesforceDataTransferApi = {
235
234
  AUTOMATIC: "AUTOMATIC",
236
235
  BULKV2: "BULKV2",
@@ -623,7 +622,7 @@ const PrivateConnectionProvisioningStatus = {
623
622
  FAILED: "FAILED",
624
623
  PENDING: "PENDING",
625
624
  };
626
- class ConnectorServerException extends AppflowServiceException {
625
+ let ConnectorServerException$1 = class ConnectorServerException extends AppflowServiceException$1 {
627
626
  name = "ConnectorServerException";
628
627
  $fault = "client";
629
628
  constructor(opts) {
@@ -634,8 +633,8 @@ class ConnectorServerException extends AppflowServiceException {
634
633
  });
635
634
  Object.setPrototypeOf(this, ConnectorServerException.prototype);
636
635
  }
637
- }
638
- class ServiceQuotaExceededException extends AppflowServiceException {
636
+ };
637
+ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends AppflowServiceException$1 {
639
638
  name = "ServiceQuotaExceededException";
640
639
  $fault = "client";
641
640
  constructor(opts) {
@@ -646,7 +645,7 @@ class ServiceQuotaExceededException extends AppflowServiceException {
646
645
  });
647
646
  Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
648
647
  }
649
- }
648
+ };
650
649
  const FileType = {
651
650
  CSV: "CSV",
652
651
  JSON: "JSON",
@@ -722,7 +721,7 @@ const ExecutionStatus = {
722
721
  INPROGRESS: "InProgress",
723
722
  SUCCESSFUL: "Successful",
724
723
  };
725
- class UnsupportedOperationException extends AppflowServiceException {
724
+ let UnsupportedOperationException$1 = class UnsupportedOperationException extends AppflowServiceException$1 {
726
725
  name = "UnsupportedOperationException";
727
726
  $fault = "client";
728
727
  constructor(opts) {
@@ -733,1322 +732,2037 @@ class UnsupportedOperationException extends AppflowServiceException {
733
732
  });
734
733
  Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
735
734
  }
736
- }
737
- const AmplitudeConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
738
- ...obj,
739
- ...(obj.apiKey && { apiKey: smithyClient.SENSITIVE_STRING }),
740
- ...(obj.secretKey && { secretKey: smithyClient.SENSITIVE_STRING }),
741
- });
742
- const ApiKeyCredentialsFilterSensitiveLog = (obj) => ({
743
- ...obj,
744
- ...(obj.apiKey && { apiKey: smithyClient.SENSITIVE_STRING }),
745
- ...(obj.apiSecretKey && { apiSecretKey: smithyClient.SENSITIVE_STRING }),
746
- });
747
- const BasicAuthCredentialsFilterSensitiveLog = (obj) => ({
748
- ...obj,
749
- ...(obj.password && { password: smithyClient.SENSITIVE_STRING }),
750
- });
751
- const CustomAuthCredentialsFilterSensitiveLog = (obj) => ({
752
- ...obj,
753
- ...(obj.credentialsMap && { credentialsMap: smithyClient.SENSITIVE_STRING }),
754
- });
755
- const OAuth2CredentialsFilterSensitiveLog = (obj) => ({
756
- ...obj,
757
- ...(obj.clientSecret && { clientSecret: smithyClient.SENSITIVE_STRING }),
758
- ...(obj.accessToken && { accessToken: smithyClient.SENSITIVE_STRING }),
759
- });
760
- const CustomConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
761
- ...obj,
762
- ...(obj.basic && { basic: BasicAuthCredentialsFilterSensitiveLog(obj.basic) }),
763
- ...(obj.oauth2 && { oauth2: OAuth2CredentialsFilterSensitiveLog(obj.oauth2) }),
764
- ...(obj.apiKey && { apiKey: ApiKeyCredentialsFilterSensitiveLog(obj.apiKey) }),
765
- ...(obj.custom && { custom: CustomAuthCredentialsFilterSensitiveLog(obj.custom) }),
766
- });
767
- const DatadogConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
768
- ...obj,
769
- ...(obj.apiKey && { apiKey: smithyClient.SENSITIVE_STRING }),
770
- });
771
- const GoogleAnalyticsConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
772
- ...obj,
773
- ...(obj.clientSecret && { clientSecret: smithyClient.SENSITIVE_STRING }),
774
- ...(obj.accessToken && { accessToken: smithyClient.SENSITIVE_STRING }),
775
- });
776
- const HoneycodeConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
777
- ...obj,
778
- ...(obj.accessToken && { accessToken: smithyClient.SENSITIVE_STRING }),
779
- });
780
- const InforNexusConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
781
- ...obj,
782
- ...(obj.accessKeyId && { accessKeyId: smithyClient.SENSITIVE_STRING }),
783
- });
784
- const MarketoConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
785
- ...obj,
786
- ...(obj.clientSecret && { clientSecret: smithyClient.SENSITIVE_STRING }),
787
- ...(obj.accessToken && { accessToken: smithyClient.SENSITIVE_STRING }),
788
- });
789
- const PardotConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
790
- ...obj,
791
- ...(obj.accessToken && { accessToken: smithyClient.SENSITIVE_STRING }),
792
- ...(obj.clientCredentialsArn && { clientCredentialsArn: smithyClient.SENSITIVE_STRING }),
793
- });
794
- const RedshiftConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
795
- ...obj,
796
- ...(obj.password && { password: smithyClient.SENSITIVE_STRING }),
797
- });
798
- const SalesforceConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
799
- ...obj,
800
- ...(obj.accessToken && { accessToken: smithyClient.SENSITIVE_STRING }),
801
- ...(obj.clientCredentialsArn && { clientCredentialsArn: smithyClient.SENSITIVE_STRING }),
802
- ...(obj.jwtToken && { jwtToken: smithyClient.SENSITIVE_STRING }),
803
- });
804
- const OAuthCredentialsFilterSensitiveLog = (obj) => ({
805
- ...obj,
806
- ...(obj.clientSecret && { clientSecret: smithyClient.SENSITIVE_STRING }),
807
- ...(obj.accessToken && { accessToken: smithyClient.SENSITIVE_STRING }),
808
- });
809
- const SAPODataConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
810
- ...obj,
811
- ...(obj.basicAuthCredentials && {
812
- basicAuthCredentials: BasicAuthCredentialsFilterSensitiveLog(obj.basicAuthCredentials),
813
- }),
814
- ...(obj.oAuthCredentials && { oAuthCredentials: OAuthCredentialsFilterSensitiveLog(obj.oAuthCredentials) }),
815
- });
816
- const ServiceNowConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
817
- ...obj,
818
- ...(obj.password && { password: smithyClient.SENSITIVE_STRING }),
819
- ...(obj.oAuth2Credentials && { oAuth2Credentials: OAuth2CredentialsFilterSensitiveLog(obj.oAuth2Credentials) }),
820
- });
821
- const SingularConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
822
- ...obj,
823
- ...(obj.apiKey && { apiKey: smithyClient.SENSITIVE_STRING }),
824
- });
825
- const SlackConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
826
- ...obj,
827
- ...(obj.clientSecret && { clientSecret: smithyClient.SENSITIVE_STRING }),
828
- ...(obj.accessToken && { accessToken: smithyClient.SENSITIVE_STRING }),
829
- });
830
- const SnowflakeConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
831
- ...obj,
832
- ...(obj.password && { password: smithyClient.SENSITIVE_STRING }),
833
- });
834
- const TrendmicroConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
835
- ...obj,
836
- ...(obj.apiSecretKey && { apiSecretKey: smithyClient.SENSITIVE_STRING }),
837
- });
838
- const VeevaConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
839
- ...obj,
840
- ...(obj.password && { password: smithyClient.SENSITIVE_STRING }),
841
- });
842
- const ZendeskConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
843
- ...obj,
844
- ...(obj.clientSecret && { clientSecret: smithyClient.SENSITIVE_STRING }),
845
- ...(obj.accessToken && { accessToken: smithyClient.SENSITIVE_STRING }),
846
- });
847
- const ConnectorProfileCredentialsFilterSensitiveLog = (obj) => ({
848
- ...obj,
849
- ...(obj.Amplitude && { Amplitude: AmplitudeConnectorProfileCredentialsFilterSensitiveLog(obj.Amplitude) }),
850
- ...(obj.Datadog && { Datadog: DatadogConnectorProfileCredentialsFilterSensitiveLog(obj.Datadog) }),
851
- ...(obj.GoogleAnalytics && {
852
- GoogleAnalytics: GoogleAnalyticsConnectorProfileCredentialsFilterSensitiveLog(obj.GoogleAnalytics),
853
- }),
854
- ...(obj.Honeycode && { Honeycode: HoneycodeConnectorProfileCredentialsFilterSensitiveLog(obj.Honeycode) }),
855
- ...(obj.InforNexus && { InforNexus: InforNexusConnectorProfileCredentialsFilterSensitiveLog(obj.InforNexus) }),
856
- ...(obj.Marketo && { Marketo: MarketoConnectorProfileCredentialsFilterSensitiveLog(obj.Marketo) }),
857
- ...(obj.Redshift && { Redshift: RedshiftConnectorProfileCredentialsFilterSensitiveLog(obj.Redshift) }),
858
- ...(obj.Salesforce && { Salesforce: SalesforceConnectorProfileCredentialsFilterSensitiveLog(obj.Salesforce) }),
859
- ...(obj.ServiceNow && { ServiceNow: ServiceNowConnectorProfileCredentialsFilterSensitiveLog(obj.ServiceNow) }),
860
- ...(obj.Singular && { Singular: SingularConnectorProfileCredentialsFilterSensitiveLog(obj.Singular) }),
861
- ...(obj.Slack && { Slack: SlackConnectorProfileCredentialsFilterSensitiveLog(obj.Slack) }),
862
- ...(obj.Snowflake && { Snowflake: SnowflakeConnectorProfileCredentialsFilterSensitiveLog(obj.Snowflake) }),
863
- ...(obj.Trendmicro && { Trendmicro: TrendmicroConnectorProfileCredentialsFilterSensitiveLog(obj.Trendmicro) }),
864
- ...(obj.Veeva && { Veeva: VeevaConnectorProfileCredentialsFilterSensitiveLog(obj.Veeva) }),
865
- ...(obj.Zendesk && { Zendesk: ZendeskConnectorProfileCredentialsFilterSensitiveLog(obj.Zendesk) }),
866
- ...(obj.SAPOData && { SAPOData: SAPODataConnectorProfileCredentialsFilterSensitiveLog(obj.SAPOData) }),
867
- ...(obj.CustomConnector && {
868
- CustomConnector: CustomConnectorProfileCredentialsFilterSensitiveLog(obj.CustomConnector),
869
- }),
870
- ...(obj.Pardot && { Pardot: PardotConnectorProfileCredentialsFilterSensitiveLog(obj.Pardot) }),
871
- });
872
- const ConnectorProfileConfigFilterSensitiveLog = (obj) => ({
873
- ...obj,
874
- ...(obj.connectorProfileCredentials && {
875
- connectorProfileCredentials: ConnectorProfileCredentialsFilterSensitiveLog(obj.connectorProfileCredentials),
876
- }),
877
- });
878
- const CreateConnectorProfileRequestFilterSensitiveLog = (obj) => ({
879
- ...obj,
880
- });
881
- const UpdateConnectorProfileRequestFilterSensitiveLog = (obj) => ({
882
- ...obj,
883
- });
884
-
885
- const se_CancelFlowExecutionsCommand = async (input, context) => {
886
- const b = core.requestBuilder(input, context);
887
- const headers = {
888
- "content-type": "application/json",
889
- };
890
- b.bp("/cancel-flow-executions");
891
- let body;
892
- body = JSON.stringify(smithyClient.take(input, {
893
- executionIds: (_) => smithyClient._json(_),
894
- flowName: [],
895
- }));
896
- b.m("POST").h(headers).b(body);
897
- return b.build();
898
- };
899
- const se_CreateConnectorProfileCommand = async (input, context) => {
900
- const b = core.requestBuilder(input, context);
901
- const headers = {
902
- "content-type": "application/json",
903
- };
904
- b.bp("/create-connector-profile");
905
- let body;
906
- body = JSON.stringify(smithyClient.take(input, {
907
- clientToken: [true, (_) => _ ?? uuid.v4()],
908
- connectionMode: [],
909
- connectorLabel: [],
910
- connectorProfileConfig: (_) => smithyClient._json(_),
911
- connectorProfileName: [],
912
- connectorType: [],
913
- kmsArn: [],
914
- }));
915
- b.m("POST").h(headers).b(body);
916
- return b.build();
917
- };
918
- const se_CreateFlowCommand = async (input, context) => {
919
- const b = core.requestBuilder(input, context);
920
- const headers = {
921
- "content-type": "application/json",
922
- };
923
- b.bp("/create-flow");
924
- let body;
925
- body = JSON.stringify(smithyClient.take(input, {
926
- clientToken: [true, (_) => _ ?? uuid.v4()],
927
- description: [],
928
- destinationFlowConfigList: (_) => smithyClient._json(_),
929
- flowName: [],
930
- kmsArn: [],
931
- metadataCatalogConfig: (_) => smithyClient._json(_),
932
- sourceFlowConfig: (_) => smithyClient._json(_),
933
- tags: (_) => smithyClient._json(_),
934
- tasks: (_) => smithyClient._json(_),
935
- triggerConfig: (_) => se_TriggerConfig(_),
936
- }));
937
- b.m("POST").h(headers).b(body);
938
- return b.build();
939
- };
940
- const se_DeleteConnectorProfileCommand = async (input, context) => {
941
- const b = core.requestBuilder(input, context);
942
- const headers = {
943
- "content-type": "application/json",
944
- };
945
- b.bp("/delete-connector-profile");
946
- let body;
947
- body = JSON.stringify(smithyClient.take(input, {
948
- connectorProfileName: [],
949
- forceDelete: [],
950
- }));
951
- b.m("POST").h(headers).b(body);
952
- return b.build();
953
- };
954
- const se_DeleteFlowCommand = async (input, context) => {
955
- const b = core.requestBuilder(input, context);
956
- const headers = {
957
- "content-type": "application/json",
958
- };
959
- b.bp("/delete-flow");
960
- let body;
961
- body = JSON.stringify(smithyClient.take(input, {
962
- flowName: [],
963
- forceDelete: [],
964
- }));
965
- b.m("POST").h(headers).b(body);
966
- return b.build();
967
- };
968
- const se_DescribeConnectorCommand = async (input, context) => {
969
- const b = core.requestBuilder(input, context);
970
- const headers = {
971
- "content-type": "application/json",
972
- };
973
- b.bp("/describe-connector");
974
- let body;
975
- body = JSON.stringify(smithyClient.take(input, {
976
- connectorLabel: [],
977
- connectorType: [],
978
- }));
979
- b.m("POST").h(headers).b(body);
980
- return b.build();
981
- };
982
- const se_DescribeConnectorEntityCommand = async (input, context) => {
983
- const b = core.requestBuilder(input, context);
984
- const headers = {
985
- "content-type": "application/json",
986
- };
987
- b.bp("/describe-connector-entity");
988
- let body;
989
- body = JSON.stringify(smithyClient.take(input, {
990
- apiVersion: [],
991
- connectorEntityName: [],
992
- connectorProfileName: [],
993
- connectorType: [],
994
- }));
995
- b.m("POST").h(headers).b(body);
996
- return b.build();
997
- };
998
- const se_DescribeConnectorProfilesCommand = async (input, context) => {
999
- const b = core.requestBuilder(input, context);
1000
- const headers = {
1001
- "content-type": "application/json",
1002
- };
1003
- b.bp("/describe-connector-profiles");
1004
- let body;
1005
- body = JSON.stringify(smithyClient.take(input, {
1006
- connectorLabel: [],
1007
- connectorProfileNames: (_) => smithyClient._json(_),
1008
- connectorType: [],
1009
- maxResults: [],
1010
- nextToken: [],
1011
- }));
1012
- b.m("POST").h(headers).b(body);
1013
- return b.build();
1014
- };
1015
- const se_DescribeConnectorsCommand = async (input, context) => {
1016
- const b = core.requestBuilder(input, context);
1017
- const headers = {
1018
- "content-type": "application/json",
1019
- };
1020
- b.bp("/describe-connectors");
1021
- let body;
1022
- body = JSON.stringify(smithyClient.take(input, {
1023
- connectorTypes: (_) => smithyClient._json(_),
1024
- maxResults: [],
1025
- nextToken: [],
1026
- }));
1027
- b.m("POST").h(headers).b(body);
1028
- return b.build();
1029
- };
1030
- const se_DescribeFlowCommand = async (input, context) => {
1031
- const b = core.requestBuilder(input, context);
1032
- const headers = {
1033
- "content-type": "application/json",
1034
- };
1035
- b.bp("/describe-flow");
1036
- let body;
1037
- body = JSON.stringify(smithyClient.take(input, {
1038
- flowName: [],
1039
- }));
1040
- b.m("POST").h(headers).b(body);
1041
- return b.build();
1042
- };
1043
- const se_DescribeFlowExecutionRecordsCommand = async (input, context) => {
1044
- const b = core.requestBuilder(input, context);
1045
- const headers = {
1046
- "content-type": "application/json",
1047
- };
1048
- b.bp("/describe-flow-execution-records");
1049
- let body;
1050
- body = JSON.stringify(smithyClient.take(input, {
1051
- flowName: [],
1052
- maxResults: [],
1053
- nextToken: [],
1054
- }));
1055
- b.m("POST").h(headers).b(body);
1056
- return b.build();
1057
- };
1058
- const se_ListConnectorEntitiesCommand = async (input, context) => {
1059
- const b = core.requestBuilder(input, context);
1060
- const headers = {
1061
- "content-type": "application/json",
1062
- };
1063
- b.bp("/list-connector-entities");
1064
- let body;
1065
- body = JSON.stringify(smithyClient.take(input, {
1066
- apiVersion: [],
1067
- connectorProfileName: [],
1068
- connectorType: [],
1069
- entitiesPath: [],
1070
- maxResults: [],
1071
- nextToken: [],
1072
- }));
1073
- b.m("POST").h(headers).b(body);
1074
- return b.build();
1075
- };
1076
- const se_ListConnectorsCommand = async (input, context) => {
1077
- const b = core.requestBuilder(input, context);
1078
- const headers = {
1079
- "content-type": "application/json",
1080
- };
1081
- b.bp("/list-connectors");
1082
- let body;
1083
- body = JSON.stringify(smithyClient.take(input, {
1084
- maxResults: [],
1085
- nextToken: [],
1086
- }));
1087
- b.m("POST").h(headers).b(body);
1088
- return b.build();
1089
- };
1090
- const se_ListFlowsCommand = async (input, context) => {
1091
- const b = core.requestBuilder(input, context);
1092
- const headers = {
1093
- "content-type": "application/json",
1094
- };
1095
- b.bp("/list-flows");
1096
- let body;
1097
- body = JSON.stringify(smithyClient.take(input, {
1098
- maxResults: [],
1099
- nextToken: [],
1100
- }));
1101
- b.m("POST").h(headers).b(body);
1102
- return b.build();
1103
- };
1104
- const se_ListTagsForResourceCommand = async (input, context) => {
1105
- const b = core.requestBuilder(input, context);
1106
- const headers = {};
1107
- b.bp("/tags/{resourceArn}");
1108
- b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
1109
- let body;
1110
- b.m("GET").h(headers).b(body);
1111
- return b.build();
1112
- };
1113
- const se_RegisterConnectorCommand = async (input, context) => {
1114
- const b = core.requestBuilder(input, context);
1115
- const headers = {
1116
- "content-type": "application/json",
1117
- };
1118
- b.bp("/register-connector");
1119
- let body;
1120
- body = JSON.stringify(smithyClient.take(input, {
1121
- clientToken: [true, (_) => _ ?? uuid.v4()],
1122
- connectorLabel: [],
1123
- connectorProvisioningConfig: (_) => smithyClient._json(_),
1124
- connectorProvisioningType: [],
1125
- description: [],
1126
- }));
1127
- b.m("POST").h(headers).b(body);
1128
- return b.build();
1129
- };
1130
- const se_ResetConnectorMetadataCacheCommand = async (input, context) => {
1131
- const b = core.requestBuilder(input, context);
1132
- const headers = {
1133
- "content-type": "application/json",
1134
- };
1135
- b.bp("/reset-connector-metadata-cache");
1136
- let body;
1137
- body = JSON.stringify(smithyClient.take(input, {
1138
- apiVersion: [],
1139
- connectorEntityName: [],
1140
- connectorProfileName: [],
1141
- connectorType: [],
1142
- entitiesPath: [],
1143
- }));
1144
- b.m("POST").h(headers).b(body);
1145
- return b.build();
1146
- };
1147
- const se_StartFlowCommand = async (input, context) => {
1148
- const b = core.requestBuilder(input, context);
1149
- const headers = {
1150
- "content-type": "application/json",
1151
- };
1152
- b.bp("/start-flow");
1153
- let body;
1154
- body = JSON.stringify(smithyClient.take(input, {
1155
- clientToken: [true, (_) => _ ?? uuid.v4()],
1156
- flowName: [],
1157
- }));
1158
- b.m("POST").h(headers).b(body);
1159
- return b.build();
1160
- };
1161
- const se_StopFlowCommand = async (input, context) => {
1162
- const b = core.requestBuilder(input, context);
1163
- const headers = {
1164
- "content-type": "application/json",
1165
- };
1166
- b.bp("/stop-flow");
1167
- let body;
1168
- body = JSON.stringify(smithyClient.take(input, {
1169
- flowName: [],
1170
- }));
1171
- b.m("POST").h(headers).b(body);
1172
- return b.build();
1173
- };
1174
- const se_TagResourceCommand = async (input, context) => {
1175
- const b = core.requestBuilder(input, context);
1176
- const headers = {
1177
- "content-type": "application/json",
1178
- };
1179
- b.bp("/tags/{resourceArn}");
1180
- b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
1181
- let body;
1182
- body = JSON.stringify(smithyClient.take(input, {
1183
- tags: (_) => smithyClient._json(_),
1184
- }));
1185
- b.m("POST").h(headers).b(body);
1186
- return b.build();
1187
- };
1188
- const se_UnregisterConnectorCommand = async (input, context) => {
1189
- const b = core.requestBuilder(input, context);
1190
- const headers = {
1191
- "content-type": "application/json",
1192
- };
1193
- b.bp("/unregister-connector");
1194
- let body;
1195
- body = JSON.stringify(smithyClient.take(input, {
1196
- connectorLabel: [],
1197
- forceDelete: [],
1198
- }));
1199
- b.m("POST").h(headers).b(body);
1200
- return b.build();
1201
- };
1202
- const se_UntagResourceCommand = async (input, context) => {
1203
- const b = core.requestBuilder(input, context);
1204
- const headers = {};
1205
- b.bp("/tags/{resourceArn}");
1206
- b.p("resourceArn", () => input.resourceArn, "{resourceArn}", false);
1207
- const query = smithyClient.map({
1208
- [_tK]: [smithyClient.expectNonNull(input.tagKeys, `tagKeys`) != null, () => input[_tK] || []],
1209
- });
1210
- let body;
1211
- b.m("DELETE").h(headers).q(query).b(body);
1212
- return b.build();
1213
- };
1214
- const se_UpdateConnectorProfileCommand = async (input, context) => {
1215
- const b = core.requestBuilder(input, context);
1216
- const headers = {
1217
- "content-type": "application/json",
1218
- };
1219
- b.bp("/update-connector-profile");
1220
- let body;
1221
- body = JSON.stringify(smithyClient.take(input, {
1222
- clientToken: [true, (_) => _ ?? uuid.v4()],
1223
- connectionMode: [],
1224
- connectorProfileConfig: (_) => smithyClient._json(_),
1225
- connectorProfileName: [],
1226
- }));
1227
- b.m("POST").h(headers).b(body);
1228
- return b.build();
1229
- };
1230
- const se_UpdateConnectorRegistrationCommand = async (input, context) => {
1231
- const b = core.requestBuilder(input, context);
1232
- const headers = {
1233
- "content-type": "application/json",
1234
- };
1235
- b.bp("/update-connector-registration");
1236
- let body;
1237
- body = JSON.stringify(smithyClient.take(input, {
1238
- clientToken: [true, (_) => _ ?? uuid.v4()],
1239
- connectorLabel: [],
1240
- connectorProvisioningConfig: (_) => smithyClient._json(_),
1241
- description: [],
1242
- }));
1243
- b.m("POST").h(headers).b(body);
1244
- return b.build();
1245
- };
1246
- const se_UpdateFlowCommand = async (input, context) => {
1247
- const b = core.requestBuilder(input, context);
1248
- const headers = {
1249
- "content-type": "application/json",
1250
- };
1251
- b.bp("/update-flow");
1252
- let body;
1253
- body = JSON.stringify(smithyClient.take(input, {
1254
- clientToken: [true, (_) => _ ?? uuid.v4()],
1255
- description: [],
1256
- destinationFlowConfigList: (_) => smithyClient._json(_),
1257
- flowName: [],
1258
- metadataCatalogConfig: (_) => smithyClient._json(_),
1259
- sourceFlowConfig: (_) => smithyClient._json(_),
1260
- tasks: (_) => smithyClient._json(_),
1261
- triggerConfig: (_) => se_TriggerConfig(_),
1262
- }));
1263
- b.m("POST").h(headers).b(body);
1264
- return b.build();
1265
- };
1266
- const de_CancelFlowExecutionsCommand = async (output, context) => {
1267
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1268
- return de_CommandError(output, context);
1269
- }
1270
- const contents = smithyClient.map({
1271
- $metadata: deserializeMetadata(output),
1272
- });
1273
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1274
- const doc = smithyClient.take(data, {
1275
- invalidExecutions: smithyClient._json,
1276
- });
1277
- Object.assign(contents, doc);
1278
- return contents;
1279
- };
1280
- const de_CreateConnectorProfileCommand = async (output, context) => {
1281
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1282
- return de_CommandError(output, context);
1283
- }
1284
- const contents = smithyClient.map({
1285
- $metadata: deserializeMetadata(output),
1286
- });
1287
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1288
- const doc = smithyClient.take(data, {
1289
- connectorProfileArn: smithyClient.expectString,
1290
- });
1291
- Object.assign(contents, doc);
1292
- return contents;
1293
- };
1294
- const de_CreateFlowCommand = async (output, context) => {
1295
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1296
- return de_CommandError(output, context);
1297
- }
1298
- const contents = smithyClient.map({
1299
- $metadata: deserializeMetadata(output),
1300
- });
1301
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1302
- const doc = smithyClient.take(data, {
1303
- flowArn: smithyClient.expectString,
1304
- flowStatus: smithyClient.expectString,
1305
- });
1306
- Object.assign(contents, doc);
1307
- return contents;
1308
- };
1309
- const de_DeleteConnectorProfileCommand = async (output, context) => {
1310
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1311
- return de_CommandError(output, context);
1312
- }
1313
- const contents = smithyClient.map({
1314
- $metadata: deserializeMetadata(output),
1315
- });
1316
- await smithyClient.collectBody(output.body, context);
1317
- return contents;
1318
- };
1319
- const de_DeleteFlowCommand = async (output, context) => {
1320
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1321
- return de_CommandError(output, context);
1322
- }
1323
- const contents = smithyClient.map({
1324
- $metadata: deserializeMetadata(output),
1325
- });
1326
- await smithyClient.collectBody(output.body, context);
1327
- return contents;
1328
- };
1329
- const de_DescribeConnectorCommand = async (output, context) => {
1330
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1331
- return de_CommandError(output, context);
1332
- }
1333
- const contents = smithyClient.map({
1334
- $metadata: deserializeMetadata(output),
1335
- });
1336
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1337
- const doc = smithyClient.take(data, {
1338
- connectorConfiguration: (_) => de_ConnectorConfiguration(_),
1339
- });
1340
- Object.assign(contents, doc);
1341
- return contents;
1342
- };
1343
- const de_DescribeConnectorEntityCommand = async (output, context) => {
1344
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1345
- return de_CommandError(output, context);
1346
- }
1347
- const contents = smithyClient.map({
1348
- $metadata: deserializeMetadata(output),
1349
- });
1350
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1351
- const doc = smithyClient.take(data, {
1352
- connectorEntityFields: (_) => de_ConnectorEntityFieldList(_),
1353
- });
1354
- Object.assign(contents, doc);
1355
- return contents;
1356
- };
1357
- const de_DescribeConnectorProfilesCommand = async (output, context) => {
1358
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1359
- return de_CommandError(output, context);
1360
- }
1361
- const contents = smithyClient.map({
1362
- $metadata: deserializeMetadata(output),
1363
- });
1364
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1365
- const doc = smithyClient.take(data, {
1366
- connectorProfileDetails: (_) => de_ConnectorProfileDetailList(_),
1367
- nextToken: smithyClient.expectString,
1368
- });
1369
- Object.assign(contents, doc);
1370
- return contents;
1371
- };
1372
- const de_DescribeConnectorsCommand = async (output, context) => {
1373
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1374
- return de_CommandError(output, context);
1375
- }
1376
- const contents = smithyClient.map({
1377
- $metadata: deserializeMetadata(output),
1378
- });
1379
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1380
- const doc = smithyClient.take(data, {
1381
- connectorConfigurations: (_) => de_ConnectorConfigurationsMap(_),
1382
- connectors: (_) => de_ConnectorList(_),
1383
- nextToken: smithyClient.expectString,
1384
- });
1385
- Object.assign(contents, doc);
1386
- return contents;
1387
- };
1388
- const de_DescribeFlowCommand = async (output, context) => {
1389
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1390
- return de_CommandError(output, context);
1391
- }
1392
- const contents = smithyClient.map({
1393
- $metadata: deserializeMetadata(output),
1394
- });
1395
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1396
- const doc = smithyClient.take(data, {
1397
- createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1398
- createdBy: smithyClient.expectString,
1399
- description: smithyClient.expectString,
1400
- destinationFlowConfigList: smithyClient._json,
1401
- flowArn: smithyClient.expectString,
1402
- flowName: smithyClient.expectString,
1403
- flowStatus: smithyClient.expectString,
1404
- flowStatusMessage: smithyClient.expectString,
1405
- kmsArn: smithyClient.expectString,
1406
- lastRunExecutionDetails: (_) => de_ExecutionDetails(_),
1407
- lastRunMetadataCatalogDetails: smithyClient._json,
1408
- lastUpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1409
- lastUpdatedBy: smithyClient.expectString,
1410
- metadataCatalogConfig: smithyClient._json,
1411
- schemaVersion: smithyClient.expectLong,
1412
- sourceFlowConfig: smithyClient._json,
1413
- tags: smithyClient._json,
1414
- tasks: smithyClient._json,
1415
- triggerConfig: (_) => de_TriggerConfig(_),
1416
- });
1417
- Object.assign(contents, doc);
1418
- return contents;
1419
735
  };
1420
- const de_DescribeFlowExecutionRecordsCommand = async (output, context) => {
1421
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1422
- return de_CommandError(output, context);
1423
- }
1424
- const contents = smithyClient.map({
1425
- $metadata: deserializeMetadata(output),
1426
- });
1427
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1428
- const doc = smithyClient.take(data, {
1429
- flowExecutions: (_) => de_FlowExecutionList(_),
1430
- nextToken: smithyClient.expectString,
1431
- });
1432
- Object.assign(contents, doc);
1433
- return contents;
1434
- };
1435
- const de_ListConnectorEntitiesCommand = async (output, context) => {
1436
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1437
- return de_CommandError(output, context);
1438
- }
1439
- const contents = smithyClient.map({
1440
- $metadata: deserializeMetadata(output),
1441
- });
1442
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1443
- const doc = smithyClient.take(data, {
1444
- connectorEntityMap: smithyClient._json,
1445
- nextToken: smithyClient.expectString,
1446
- });
1447
- Object.assign(contents, doc);
1448
- return contents;
1449
- };
1450
- const de_ListConnectorsCommand = async (output, context) => {
1451
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1452
- return de_CommandError(output, context);
1453
- }
1454
- const contents = smithyClient.map({
1455
- $metadata: deserializeMetadata(output),
1456
- });
1457
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1458
- const doc = smithyClient.take(data, {
1459
- connectors: (_) => de_ConnectorList(_),
1460
- nextToken: smithyClient.expectString,
1461
- });
1462
- Object.assign(contents, doc);
1463
- return contents;
1464
- };
1465
- const de_ListFlowsCommand = async (output, context) => {
1466
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1467
- return de_CommandError(output, context);
1468
- }
1469
- const contents = smithyClient.map({
1470
- $metadata: deserializeMetadata(output),
1471
- });
1472
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1473
- const doc = smithyClient.take(data, {
1474
- flows: (_) => de_FlowList(_),
1475
- nextToken: smithyClient.expectString,
1476
- });
1477
- Object.assign(contents, doc);
1478
- return contents;
1479
- };
1480
- const de_ListTagsForResourceCommand = async (output, context) => {
1481
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1482
- return de_CommandError(output, context);
1483
- }
1484
- const contents = smithyClient.map({
1485
- $metadata: deserializeMetadata(output),
1486
- });
1487
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1488
- const doc = smithyClient.take(data, {
1489
- tags: smithyClient._json,
1490
- });
1491
- Object.assign(contents, doc);
1492
- return contents;
1493
- };
1494
- const de_RegisterConnectorCommand = async (output, context) => {
1495
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1496
- return de_CommandError(output, context);
1497
- }
1498
- const contents = smithyClient.map({
1499
- $metadata: deserializeMetadata(output),
1500
- });
1501
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1502
- const doc = smithyClient.take(data, {
1503
- connectorArn: smithyClient.expectString,
1504
- });
1505
- Object.assign(contents, doc);
1506
- return contents;
1507
- };
1508
- const de_ResetConnectorMetadataCacheCommand = async (output, context) => {
1509
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1510
- return de_CommandError(output, context);
1511
- }
1512
- const contents = smithyClient.map({
1513
- $metadata: deserializeMetadata(output),
1514
- });
1515
- await smithyClient.collectBody(output.body, context);
1516
- return contents;
1517
- };
1518
- const de_StartFlowCommand = async (output, context) => {
1519
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1520
- return de_CommandError(output, context);
1521
- }
1522
- const contents = smithyClient.map({
1523
- $metadata: deserializeMetadata(output),
1524
- });
1525
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1526
- const doc = smithyClient.take(data, {
1527
- executionId: smithyClient.expectString,
1528
- flowArn: smithyClient.expectString,
1529
- flowStatus: smithyClient.expectString,
1530
- });
1531
- Object.assign(contents, doc);
1532
- return contents;
1533
- };
1534
- const de_StopFlowCommand = async (output, context) => {
1535
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1536
- return de_CommandError(output, context);
1537
- }
1538
- const contents = smithyClient.map({
1539
- $metadata: deserializeMetadata(output),
1540
- });
1541
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1542
- const doc = smithyClient.take(data, {
1543
- flowArn: smithyClient.expectString,
1544
- flowStatus: smithyClient.expectString,
1545
- });
1546
- Object.assign(contents, doc);
1547
- return contents;
1548
- };
1549
- const de_TagResourceCommand = async (output, context) => {
1550
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1551
- return de_CommandError(output, context);
1552
- }
1553
- const contents = smithyClient.map({
1554
- $metadata: deserializeMetadata(output),
1555
- });
1556
- await smithyClient.collectBody(output.body, context);
1557
- return contents;
1558
- };
1559
- const de_UnregisterConnectorCommand = async (output, context) => {
1560
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1561
- return de_CommandError(output, context);
1562
- }
1563
- const contents = smithyClient.map({
1564
- $metadata: deserializeMetadata(output),
1565
- });
1566
- await smithyClient.collectBody(output.body, context);
1567
- return contents;
1568
- };
1569
- const de_UntagResourceCommand = async (output, context) => {
1570
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1571
- return de_CommandError(output, context);
1572
- }
1573
- const contents = smithyClient.map({
1574
- $metadata: deserializeMetadata(output),
1575
- });
1576
- await smithyClient.collectBody(output.body, context);
1577
- return contents;
1578
- };
1579
- const de_UpdateConnectorProfileCommand = async (output, context) => {
1580
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1581
- return de_CommandError(output, context);
1582
- }
1583
- const contents = smithyClient.map({
1584
- $metadata: deserializeMetadata(output),
1585
- });
1586
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1587
- const doc = smithyClient.take(data, {
1588
- connectorProfileArn: smithyClient.expectString,
1589
- });
1590
- Object.assign(contents, doc);
1591
- return contents;
1592
- };
1593
- const de_UpdateConnectorRegistrationCommand = async (output, context) => {
1594
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1595
- return de_CommandError(output, context);
1596
- }
1597
- const contents = smithyClient.map({
1598
- $metadata: deserializeMetadata(output),
1599
- });
1600
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1601
- const doc = smithyClient.take(data, {
1602
- connectorArn: smithyClient.expectString,
1603
- });
1604
- Object.assign(contents, doc);
1605
- return contents;
1606
- };
1607
- const de_UpdateFlowCommand = async (output, context) => {
1608
- if (output.statusCode !== 200 && output.statusCode >= 300) {
1609
- return de_CommandError(output, context);
1610
- }
1611
- const contents = smithyClient.map({
1612
- $metadata: deserializeMetadata(output),
1613
- });
1614
- const data = smithyClient.expectNonNull(smithyClient.expectObject(await core$1.parseJsonBody(output.body, context)), "body");
1615
- const doc = smithyClient.take(data, {
1616
- flowStatus: smithyClient.expectString,
1617
- });
1618
- Object.assign(contents, doc);
1619
- return contents;
1620
- };
1621
- const de_CommandError = async (output, context) => {
1622
- const parsedOutput = {
1623
- ...output,
1624
- body: await core$1.parseJsonErrorBody(output.body, context),
1625
- };
1626
- const errorCode = core$1.loadRestJsonErrorCode(output, parsedOutput.body);
1627
- switch (errorCode) {
1628
- case "AccessDeniedException":
1629
- case "com.amazonaws.appflow#AccessDeniedException":
1630
- throw await de_AccessDeniedExceptionRes(parsedOutput);
1631
- case "InternalServerException":
1632
- case "com.amazonaws.appflow#InternalServerException":
1633
- throw await de_InternalServerExceptionRes(parsedOutput);
1634
- case "ResourceNotFoundException":
1635
- case "com.amazonaws.appflow#ResourceNotFoundException":
1636
- throw await de_ResourceNotFoundExceptionRes(parsedOutput);
1637
- case "ThrottlingException":
1638
- case "com.amazonaws.appflow#ThrottlingException":
1639
- throw await de_ThrottlingExceptionRes(parsedOutput);
1640
- case "ValidationException":
1641
- case "com.amazonaws.appflow#ValidationException":
1642
- throw await de_ValidationExceptionRes(parsedOutput);
1643
- case "ConflictException":
1644
- case "com.amazonaws.appflow#ConflictException":
1645
- throw await de_ConflictExceptionRes(parsedOutput);
1646
- case "ConnectorAuthenticationException":
1647
- case "com.amazonaws.appflow#ConnectorAuthenticationException":
1648
- throw await de_ConnectorAuthenticationExceptionRes(parsedOutput);
1649
- case "ServiceQuotaExceededException":
1650
- case "com.amazonaws.appflow#ServiceQuotaExceededException":
1651
- throw await de_ServiceQuotaExceededExceptionRes(parsedOutput);
1652
- case "ConnectorServerException":
1653
- case "com.amazonaws.appflow#ConnectorServerException":
1654
- throw await de_ConnectorServerExceptionRes(parsedOutput);
1655
- case "UnsupportedOperationException":
1656
- case "com.amazonaws.appflow#UnsupportedOperationException":
1657
- throw await de_UnsupportedOperationExceptionRes(parsedOutput);
1658
- default:
1659
- const parsedBody = parsedOutput.body;
1660
- return throwDefaultError({
1661
- output,
1662
- parsedBody,
1663
- errorCode,
1664
- });
1665
- }
1666
- };
1667
- const throwDefaultError = smithyClient.withBaseException(AppflowServiceException);
1668
- const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
1669
- const contents = smithyClient.map({});
1670
- const data = parsedOutput.body;
1671
- const doc = smithyClient.take(data, {
1672
- message: smithyClient.expectString,
1673
- });
1674
- Object.assign(contents, doc);
1675
- const exception = new AccessDeniedException({
1676
- $metadata: deserializeMetadata(parsedOutput),
1677
- ...contents,
1678
- });
1679
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1680
- };
1681
- const de_ConflictExceptionRes = async (parsedOutput, context) => {
1682
- const contents = smithyClient.map({});
1683
- const data = parsedOutput.body;
1684
- const doc = smithyClient.take(data, {
1685
- message: smithyClient.expectString,
1686
- });
1687
- Object.assign(contents, doc);
1688
- const exception = new ConflictException({
1689
- $metadata: deserializeMetadata(parsedOutput),
1690
- ...contents,
1691
- });
1692
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1693
- };
1694
- const de_ConnectorAuthenticationExceptionRes = async (parsedOutput, context) => {
1695
- const contents = smithyClient.map({});
1696
- const data = parsedOutput.body;
1697
- const doc = smithyClient.take(data, {
1698
- message: smithyClient.expectString,
1699
- });
1700
- Object.assign(contents, doc);
1701
- const exception = new ConnectorAuthenticationException({
1702
- $metadata: deserializeMetadata(parsedOutput),
1703
- ...contents,
1704
- });
1705
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1706
- };
1707
- const de_ConnectorServerExceptionRes = async (parsedOutput, context) => {
1708
- const contents = smithyClient.map({});
1709
- const data = parsedOutput.body;
1710
- const doc = smithyClient.take(data, {
1711
- message: smithyClient.expectString,
1712
- });
1713
- Object.assign(contents, doc);
1714
- const exception = new ConnectorServerException({
1715
- $metadata: deserializeMetadata(parsedOutput),
1716
- ...contents,
1717
- });
1718
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1719
- };
1720
- const de_InternalServerExceptionRes = async (parsedOutput, context) => {
1721
- const contents = smithyClient.map({});
1722
- const data = parsedOutput.body;
1723
- const doc = smithyClient.take(data, {
1724
- message: smithyClient.expectString,
1725
- });
1726
- Object.assign(contents, doc);
1727
- const exception = new InternalServerException({
1728
- $metadata: deserializeMetadata(parsedOutput),
1729
- ...contents,
1730
- });
1731
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1732
- };
1733
- const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
1734
- const contents = smithyClient.map({});
1735
- const data = parsedOutput.body;
1736
- const doc = smithyClient.take(data, {
1737
- message: smithyClient.expectString,
1738
- });
1739
- Object.assign(contents, doc);
1740
- const exception = new ResourceNotFoundException({
1741
- $metadata: deserializeMetadata(parsedOutput),
1742
- ...contents,
1743
- });
1744
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1745
- };
1746
- const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
1747
- const contents = smithyClient.map({});
1748
- const data = parsedOutput.body;
1749
- const doc = smithyClient.take(data, {
1750
- message: smithyClient.expectString,
1751
- });
1752
- Object.assign(contents, doc);
1753
- const exception = new ServiceQuotaExceededException({
1754
- $metadata: deserializeMetadata(parsedOutput),
1755
- ...contents,
1756
- });
1757
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1758
- };
1759
- const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
1760
- const contents = smithyClient.map({});
1761
- const data = parsedOutput.body;
1762
- const doc = smithyClient.take(data, {
1763
- message: smithyClient.expectString,
1764
- });
1765
- Object.assign(contents, doc);
1766
- const exception = new ThrottlingException({
1767
- $metadata: deserializeMetadata(parsedOutput),
1768
- ...contents,
1769
- });
1770
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1771
- };
1772
- const de_UnsupportedOperationExceptionRes = async (parsedOutput, context) => {
1773
- const contents = smithyClient.map({});
1774
- const data = parsedOutput.body;
1775
- const doc = smithyClient.take(data, {
1776
- message: smithyClient.expectString,
1777
- });
1778
- Object.assign(contents, doc);
1779
- const exception = new UnsupportedOperationException({
1780
- $metadata: deserializeMetadata(parsedOutput),
1781
- ...contents,
1782
- });
1783
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1784
- };
1785
- const de_ValidationExceptionRes = async (parsedOutput, context) => {
1786
- const contents = smithyClient.map({});
1787
- const data = parsedOutput.body;
1788
- const doc = smithyClient.take(data, {
1789
- message: smithyClient.expectString,
1790
- });
1791
- Object.assign(contents, doc);
1792
- const exception = new ValidationException({
1793
- $metadata: deserializeMetadata(parsedOutput),
1794
- ...contents,
1795
- });
1796
- return smithyClient.decorateServiceException(exception, parsedOutput.body);
1797
- };
1798
- const se_ScheduledTriggerProperties = (input, context) => {
1799
- return smithyClient.take(input, {
1800
- dataPullMode: [],
1801
- firstExecutionFrom: (_) => _.getTime() / 1_000,
1802
- flowErrorDeactivationThreshold: [],
1803
- scheduleEndTime: (_) => _.getTime() / 1_000,
1804
- scheduleExpression: [],
1805
- scheduleOffset: [],
1806
- scheduleStartTime: (_) => _.getTime() / 1_000,
1807
- timezone: [],
1808
- });
1809
- };
1810
- const se_TriggerConfig = (input, context) => {
1811
- return smithyClient.take(input, {
1812
- triggerProperties: (_) => se_TriggerProperties(_),
1813
- triggerType: [],
1814
- });
1815
- };
1816
- const se_TriggerProperties = (input, context) => {
1817
- return smithyClient.take(input, {
1818
- Scheduled: (_) => se_ScheduledTriggerProperties(_),
1819
- });
1820
- };
1821
- const de_ConnectorConfiguration = (output, context) => {
1822
- return smithyClient.take(output, {
1823
- authenticationConfig: smithyClient._json,
1824
- canUseAsDestination: smithyClient.expectBoolean,
1825
- canUseAsSource: smithyClient.expectBoolean,
1826
- connectorArn: smithyClient.expectString,
1827
- connectorDescription: smithyClient.expectString,
1828
- connectorLabel: smithyClient.expectString,
1829
- connectorMetadata: smithyClient._json,
1830
- connectorModes: smithyClient._json,
1831
- connectorName: smithyClient.expectString,
1832
- connectorOwner: smithyClient.expectString,
1833
- connectorProvisioningConfig: smithyClient._json,
1834
- connectorProvisioningType: smithyClient.expectString,
1835
- connectorRuntimeSettings: smithyClient._json,
1836
- connectorType: smithyClient.expectString,
1837
- connectorVersion: smithyClient.expectString,
1838
- isPrivateLinkEnabled: smithyClient.expectBoolean,
1839
- isPrivateLinkEndpointUrlRequired: smithyClient.expectBoolean,
1840
- logoURL: smithyClient.expectString,
1841
- registeredAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1842
- registeredBy: smithyClient.expectString,
1843
- supportedApiVersions: smithyClient._json,
1844
- supportedDataTransferApis: smithyClient._json,
1845
- supportedDataTransferTypes: smithyClient._json,
1846
- supportedDestinationConnectors: smithyClient._json,
1847
- supportedOperators: smithyClient._json,
1848
- supportedSchedulingFrequencies: smithyClient._json,
1849
- supportedTriggerTypes: smithyClient._json,
1850
- supportedWriteOperations: smithyClient._json,
1851
- });
1852
- };
1853
- const de_ConnectorConfigurationsMap = (output, context) => {
1854
- return Object.entries(output).reduce((acc, [key, value]) => {
1855
- if (value === null) {
1856
- return acc;
1857
- }
1858
- acc[key] = de_ConnectorConfiguration(value);
1859
- return acc;
1860
- }, {});
1861
- };
1862
- const de_ConnectorDetail = (output, context) => {
1863
- return smithyClient.take(output, {
1864
- applicationType: smithyClient.expectString,
1865
- connectorDescription: smithyClient.expectString,
1866
- connectorLabel: smithyClient.expectString,
1867
- connectorModes: smithyClient._json,
1868
- connectorName: smithyClient.expectString,
1869
- connectorOwner: smithyClient.expectString,
1870
- connectorProvisioningType: smithyClient.expectString,
1871
- connectorType: smithyClient.expectString,
1872
- connectorVersion: smithyClient.expectString,
1873
- registeredAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1874
- registeredBy: smithyClient.expectString,
1875
- supportedDataTransferTypes: smithyClient._json,
1876
- });
1877
- };
1878
- const de_ConnectorEntityField = (output, context) => {
1879
- return smithyClient.take(output, {
1880
- customProperties: smithyClient._json,
1881
- defaultValue: smithyClient.expectString,
1882
- description: smithyClient.expectString,
1883
- destinationProperties: smithyClient._json,
1884
- identifier: smithyClient.expectString,
1885
- isDeprecated: smithyClient.expectBoolean,
1886
- isPrimaryKey: smithyClient.expectBoolean,
1887
- label: smithyClient.expectString,
1888
- parentIdentifier: smithyClient.expectString,
1889
- sourceProperties: smithyClient._json,
1890
- supportedFieldTypeDetails: (_) => de_SupportedFieldTypeDetails(_),
1891
- });
1892
- };
1893
- const de_ConnectorEntityFieldList = (output, context) => {
1894
- const retVal = (output || [])
1895
- .filter((e) => e != null)
1896
- .map((entry) => {
1897
- return de_ConnectorEntityField(entry);
1898
- });
1899
- return retVal;
1900
- };
1901
- const de_ConnectorList = (output, context) => {
1902
- const retVal = (output || [])
1903
- .filter((e) => e != null)
1904
- .map((entry) => {
1905
- return de_ConnectorDetail(entry);
1906
- });
1907
- return retVal;
1908
- };
1909
- const de_ConnectorProfile = (output, context) => {
1910
- return smithyClient.take(output, {
1911
- connectionMode: smithyClient.expectString,
1912
- connectorLabel: smithyClient.expectString,
1913
- connectorProfileArn: smithyClient.expectString,
1914
- connectorProfileName: smithyClient.expectString,
1915
- connectorProfileProperties: smithyClient._json,
1916
- connectorType: smithyClient.expectString,
1917
- createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1918
- credentialsArn: smithyClient.expectString,
1919
- lastUpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1920
- privateConnectionProvisioningState: smithyClient._json,
1921
- });
1922
- };
1923
- const de_ConnectorProfileDetailList = (output, context) => {
1924
- const retVal = (output || [])
1925
- .filter((e) => e != null)
1926
- .map((entry) => {
1927
- return de_ConnectorProfile(entry);
1928
- });
1929
- return retVal;
1930
- };
1931
- const de_ExecutionDetails = (output, context) => {
1932
- return smithyClient.take(output, {
1933
- mostRecentExecutionMessage: smithyClient.expectString,
1934
- mostRecentExecutionStatus: smithyClient.expectString,
1935
- mostRecentExecutionTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1936
- });
1937
- };
1938
- const de_ExecutionRecord = (output, context) => {
1939
- return smithyClient.take(output, {
1940
- dataPullEndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1941
- dataPullStartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1942
- executionId: smithyClient.expectString,
1943
- executionResult: smithyClient._json,
1944
- executionStatus: smithyClient.expectString,
1945
- lastUpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1946
- metadataCatalogDetails: smithyClient._json,
1947
- startedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1948
- });
1949
- };
1950
- const de_FieldTypeDetails = (output, context) => {
1951
- return smithyClient.take(output, {
1952
- fieldLengthRange: (_) => de_Range(_),
1953
- fieldType: smithyClient.expectString,
1954
- fieldValueRange: (_) => de_Range(_),
1955
- filterOperators: smithyClient._json,
1956
- supportedDateFormat: smithyClient.expectString,
1957
- supportedValues: smithyClient._json,
1958
- valueRegexPattern: smithyClient.expectString,
1959
- });
1960
- };
1961
- const de_FlowDefinition = (output, context) => {
1962
- return smithyClient.take(output, {
1963
- createdAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1964
- createdBy: smithyClient.expectString,
1965
- description: smithyClient.expectString,
1966
- destinationConnectorLabel: smithyClient.expectString,
1967
- destinationConnectorType: smithyClient.expectString,
1968
- flowArn: smithyClient.expectString,
1969
- flowName: smithyClient.expectString,
1970
- flowStatus: smithyClient.expectString,
1971
- lastRunExecutionDetails: (_) => de_ExecutionDetails(_),
1972
- lastUpdatedAt: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
1973
- lastUpdatedBy: smithyClient.expectString,
1974
- sourceConnectorLabel: smithyClient.expectString,
1975
- sourceConnectorType: smithyClient.expectString,
1976
- tags: smithyClient._json,
1977
- triggerType: smithyClient.expectString,
1978
- });
1979
- };
1980
- const de_FlowExecutionList = (output, context) => {
1981
- const retVal = (output || [])
1982
- .filter((e) => e != null)
1983
- .map((entry) => {
1984
- return de_ExecutionRecord(entry);
1985
- });
1986
- return retVal;
1987
- };
1988
- const de_FlowList = (output, context) => {
1989
- const retVal = (output || [])
1990
- .filter((e) => e != null)
1991
- .map((entry) => {
1992
- return de_FlowDefinition(entry);
1993
- });
1994
- return retVal;
1995
- };
1996
- const de_Range = (output, context) => {
1997
- return smithyClient.take(output, {
1998
- maximum: smithyClient.limitedParseDouble,
1999
- minimum: smithyClient.limitedParseDouble,
2000
- });
2001
- };
2002
- const de_ScheduledTriggerProperties = (output, context) => {
2003
- return smithyClient.take(output, {
2004
- dataPullMode: smithyClient.expectString,
2005
- firstExecutionFrom: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2006
- flowErrorDeactivationThreshold: smithyClient.expectInt32,
2007
- scheduleEndTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2008
- scheduleExpression: smithyClient.expectString,
2009
- scheduleOffset: smithyClient.expectLong,
2010
- scheduleStartTime: (_) => smithyClient.expectNonNull(smithyClient.parseEpochTimestamp(smithyClient.expectNumber(_))),
2011
- timezone: smithyClient.expectString,
2012
- });
2013
- };
2014
- const de_SupportedFieldTypeDetails = (output, context) => {
2015
- return smithyClient.take(output, {
2016
- v1: (_) => de_FieldTypeDetails(_),
2017
- });
2018
- };
2019
- const de_TriggerConfig = (output, context) => {
2020
- return smithyClient.take(output, {
2021
- triggerProperties: (_) => de_TriggerProperties(_),
2022
- triggerType: smithyClient.expectString,
2023
- });
2024
- };
2025
- const de_TriggerProperties = (output, context) => {
2026
- return smithyClient.take(output, {
2027
- Scheduled: (_) => de_ScheduledTriggerProperties(_),
2028
- });
2029
- };
2030
- const deserializeMetadata = (output) => ({
2031
- httpStatusCode: output.statusCode,
2032
- requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
2033
- extendedRequestId: output.headers["x-amz-id-2"],
2034
- cfId: output.headers["x-amz-cf-id"],
2035
- });
736
+
737
+ const _A = "Amplitude";
738
+ const _AC = "AggregationConfig";
739
+ const _ACPC = "AmplitudeConnectorProfileCredentials";
740
+ const _ACPP = "AmplitudeConnectorProfileProperties";
741
+ const _ACu = "AuthenticationConfig";
742
+ const _ADE = "AccessDeniedException";
743
+ const _AK = "ApiKey";
744
+ const _AKC = "ApiKeyCredentials";
745
+ const _AKI = "AccessKeyId";
746
+ const _AM = "AmplitudeMetadata";
747
+ const _AP = "AuthParameter";
748
+ const _APL = "AuthParameterList";
749
+ const _ASK = "ApiSecretKey";
750
+ const _ASP = "AmplitudeSourceProperties";
751
+ const _AT = "AccessToken";
752
+ const _BAC = "BasicAuthCredentials";
753
+ const _CAC = "CustomAuthConfig";
754
+ const _CACL = "CustomAuthConfigList";
755
+ const _CACu = "CustomAuthCredentials";
756
+ const _CAE = "ConnectorAuthenticationException";
757
+ const _CC = "ConnectorConfiguration";
758
+ const _CCA = "ClientCredentialsArn";
759
+ const _CCDP = "CustomConnectorDestinationProperties";
760
+ const _CCM = "ConnectorConfigurationsMap";
761
+ const _CCP = "CreateConnectorProfile";
762
+ const _CCPC = "CustomConnectorProfileCredentials";
763
+ const _CCPP = "CustomConnectorProfileProperties";
764
+ const _CCPR = "CreateConnectorProfileRequest";
765
+ const _CCPRr = "CreateConnectorProfileResponse";
766
+ const _CCSP = "CustomConnectorSourceProperties";
767
+ const _CCu = "CustomConnector";
768
+ const _CD = "ConnectorDetail";
769
+ const _CE = "ConflictException";
770
+ const _CEF = "ConnectorEntityField";
771
+ const _CEFL = "ConnectorEntityFieldList";
772
+ const _CEL = "ConnectorEntityList";
773
+ const _CEM = "ConnectorEntityMap";
774
+ const _CEo = "ConnectorEntity";
775
+ const _CF = "CreateFlow";
776
+ const _CFE = "CancelFlowExecutions";
777
+ const _CFER = "CancelFlowExecutionsRequest";
778
+ const _CFERa = "CancelFlowExecutionsResponse";
779
+ const _CFR = "CreateFlowRequest";
780
+ const _CFRr = "CreateFlowResponse";
781
+ const _CL = "ConnectorList";
782
+ const _CM = "ConnectorMetadata";
783
+ const _CMK = "CredentialsMapKey";
784
+ const _CMV = "CredentialsMapValue";
785
+ const _CMr = "CredentialsMap";
786
+ const _CO = "ConnectorOperator";
787
+ const _COAR = "ConnectorOAuthRequest";
788
+ const _CP = "CustomerProfiles";
789
+ const _CPC = "ConnectorProfileConfig";
790
+ const _CPCo = "ConnectorProfileCredentials";
791
+ const _CPCon = "ConnectorProvisioningConfig";
792
+ const _CPDL = "ConnectorProfileDetailList";
793
+ const _CPDP = "CustomerProfilesDestinationProperties";
794
+ const _CPM = "CustomerProfilesMetadata";
795
+ const _CPP = "ConnectorProfileProperties";
796
+ const _CPo = "ConnectorProfile";
797
+ const _CRS = "ConnectorRuntimeSetting";
798
+ const _CRSL = "ConnectorRuntimeSettingList";
799
+ const _CS = "ClientSecret";
800
+ const _CSE = "ConnectorServerException";
801
+ const _D = "Datadog";
802
+ const _DC = "DescribeConnector";
803
+ const _DCE = "DescribeConnectorEntity";
804
+ const _DCER = "DescribeConnectorEntityRequest";
805
+ const _DCERe = "DescribeConnectorEntityResponse";
806
+ const _DCP = "DestinationConnectorProperties";
807
+ const _DCPC = "DatadogConnectorProfileCredentials";
808
+ const _DCPCy = "DynatraceConnectorProfileCredentials";
809
+ const _DCPP = "DatadogConnectorProfileProperties";
810
+ const _DCPPy = "DynatraceConnectorProfileProperties";
811
+ const _DCPR = "DeleteConnectorProfileRequest";
812
+ const _DCPRe = "DeleteConnectorProfileResponse";
813
+ const _DCPRes = "DescribeConnectorProfilesRequest";
814
+ const _DCPResc = "DescribeConnectorProfilesResponse";
815
+ const _DCPe = "DeleteConnectorProfile";
816
+ const _DCPes = "DescribeConnectorProfiles";
817
+ const _DCR = "DescribeConnectorRequest";
818
+ const _DCRe = "DescribeConnectorResponse";
819
+ const _DCRes = "DescribeConnectorsRequest";
820
+ const _DCResc = "DescribeConnectorsResponse";
821
+ const _DCe = "DescribeConnectors";
822
+ const _DF = "DeleteFlow";
823
+ const _DFC = "DestinationFlowConfig";
824
+ const _DFCL = "DestinationFlowConfigList";
825
+ const _DFER = "DescribeFlowExecutionRecords";
826
+ const _DFERR = "DescribeFlowExecutionRecordsRequest";
827
+ const _DFERRe = "DescribeFlowExecutionRecordsResponse";
828
+ const _DFP = "DestinationFieldProperties";
829
+ const _DFR = "DeleteFlowRequest";
830
+ const _DFRe = "DeleteFlowResponse";
831
+ const _DFRes = "DescribeFlowRequest";
832
+ const _DFResc = "DescribeFlowResponse";
833
+ const _DFe = "DescribeFlow";
834
+ const _DM = "DatadogMetadata";
835
+ const _DMy = "DynatraceMetadata";
836
+ const _DSP = "DatadogSourceProperties";
837
+ const _DSPy = "DynatraceSourceProperties";
838
+ const _DTA = "DataTransferApi";
839
+ const _Dy = "Dynatrace";
840
+ const _EB = "EventBridge";
841
+ const _EBDP = "EventBridgeDestinationProperties";
842
+ const _EBM = "EventBridgeMetadata";
843
+ const _ED = "ExecutionDetails";
844
+ const _EHC = "ErrorHandlingConfig";
845
+ const _EI = "ErrorInfo";
846
+ const _ER = "ExecutionRecord";
847
+ const _ERx = "ExecutionResult";
848
+ const _FD = "FlowDefinition";
849
+ const _FEL = "FlowExecutionList";
850
+ const _FL = "FlowList";
851
+ const _FTD = "FieldTypeDetails";
852
+ const _GA = "GoogleAnalytics";
853
+ const _GACPC = "GoogleAnalyticsConnectorProfileCredentials";
854
+ const _GACPP = "GoogleAnalyticsConnectorProfileProperties";
855
+ const _GAM = "GoogleAnalyticsMetadata";
856
+ const _GASP = "GoogleAnalyticsSourceProperties";
857
+ const _GDCC = "GlueDataCatalogConfig";
858
+ const _H = "Honeycode";
859
+ const _HCPC = "HoneycodeConnectorProfileCredentials";
860
+ const _HCPP = "HoneycodeConnectorProfileProperties";
861
+ const _HDP = "HoneycodeDestinationProperties";
862
+ const _HM = "HoneycodeMetadata";
863
+ const _IN = "InforNexus";
864
+ const _INCPC = "InforNexusConnectorProfileCredentials";
865
+ const _INCPP = "InforNexusConnectorProfileProperties";
866
+ const _INM = "InforNexusMetadata";
867
+ const _INSP = "InforNexusSourceProperties";
868
+ const _IPC = "IncrementalPullConfig";
869
+ const _ISE = "InternalServerException";
870
+ const _JT = "JwtToken";
871
+ const _LC = "ListConnectors";
872
+ const _LCE = "ListConnectorEntities";
873
+ const _LCER = "ListConnectorEntitiesRequest";
874
+ const _LCERi = "ListConnectorEntitiesResponse";
875
+ const _LCPC = "LambdaConnectorProvisioningConfig";
876
+ const _LCR = "ListConnectorsRequest";
877
+ const _LCRi = "ListConnectorsResponse";
878
+ const _LF = "ListFlows";
879
+ const _LFR = "ListFlowsRequest";
880
+ const _LFRi = "ListFlowsResponse";
881
+ const _LM = "LookoutMetrics";
882
+ const _LMDP = "LookoutMetricsDestinationProperties";
883
+ const _LTFR = "ListTagsForResource";
884
+ const _LTFRR = "ListTagsForResourceRequest";
885
+ const _LTFRRi = "ListTagsForResourceResponse";
886
+ const _M = "Marketo";
887
+ const _MCC = "MetadataCatalogConfig";
888
+ const _MCD = "MetadataCatalogDetail";
889
+ const _MCDe = "MetadataCatalogDetails";
890
+ const _MCPC = "MarketoConnectorProfileCredentials";
891
+ const _MCPP = "MarketoConnectorProfileProperties";
892
+ const _MDP = "MarketoDestinationProperties";
893
+ const _MM = "MarketoMetadata";
894
+ const _MSP = "MarketoSourceProperties";
895
+ const _N = "Name";
896
+ const _OAC = "OAuth2Credentials";
897
+ const _OACP = "OAuth2CustomParameter";
898
+ const _OACPL = "OAuth2CustomPropertiesList";
899
+ const _OACu = "OAuthCredentials";
900
+ const _OAD = "OAuth2Defaults";
901
+ const _OAP = "OAuth2Properties";
902
+ const _OAPu = "OAuthProperties";
903
+ const _P = "Password";
904
+ const _PC = "PrefixConfig";
905
+ const _PCPC = "PardotConnectorProfileCredentials";
906
+ const _PCPP = "PardotConnectorProfileProperties";
907
+ const _PCPS = "PrivateConnectionProvisioningState";
908
+ const _PM = "PardotMetadata";
909
+ const _PSP = "PardotSourceProperties";
910
+ const _Pa = "Pardot";
911
+ const _R = "Redshift";
912
+ const _RC = "RegisterConnector";
913
+ const _RCMC = "ResetConnectorMetadataCache";
914
+ const _RCMCR = "ResetConnectorMetadataCacheRequest";
915
+ const _RCMCRe = "ResetConnectorMetadataCacheResponse";
916
+ const _RCPC = "RedshiftConnectorProfileCredentials";
917
+ const _RCPP = "RedshiftConnectorProfileProperties";
918
+ const _RCR = "RegisterConnectorRequest";
919
+ const _RCRe = "RegisterConnectorResponse";
920
+ const _RDP = "RedshiftDestinationProperties";
921
+ const _RM = "RedshiftMetadata";
922
+ const _RNFE = "ResourceNotFoundException";
923
+ const _RO = "RegistrationOutput";
924
+ const _Ra = "Range";
925
+ const _S = "S3";
926
+ const _SAPOD = "SAPOData";
927
+ const _SAPODCPC = "SAPODataConnectorProfileCredentials";
928
+ const _SAPODCPP = "SAPODataConnectorProfileProperties";
929
+ const _SAPODDP = "SAPODataDestinationProperties";
930
+ const _SAPODM = "SAPODataMetadata";
931
+ const _SAPODPC = "SAPODataPaginationConfig";
932
+ const _SAPODPCa = "SAPODataParallelismConfig";
933
+ const _SAPODSP = "SAPODataSourceProperties";
934
+ const _SCP = "SourceConnectorProperties";
935
+ const _SCPC = "SalesforceConnectorProfileCredentials";
936
+ const _SCPCi = "SingularConnectorProfileCredentials";
937
+ const _SCPCl = "SlackConnectorProfileCredentials";
938
+ const _SCPCn = "SnowflakeConnectorProfileCredentials";
939
+ const _SCPP = "SalesforceConnectorProfileProperties";
940
+ const _SCPPi = "SingularConnectorProfileProperties";
941
+ const _SCPPl = "SlackConnectorProfileProperties";
942
+ const _SCPPn = "SnowflakeConnectorProfileProperties";
943
+ const _SDP = "S3DestinationProperties";
944
+ const _SDPa = "SalesforceDestinationProperties";
945
+ const _SDPn = "SnowflakeDestinationProperties";
946
+ const _SDTA = "SupportedDataTransferApis";
947
+ const _SF = "StartFlow";
948
+ const _SFC = "SourceFlowConfig";
949
+ const _SFP = "SourceFieldProperties";
950
+ const _SFR = "StartFlowRequest";
951
+ const _SFRt = "StartFlowResponse";
952
+ const _SFRto = "StopFlowRequest";
953
+ const _SFRtop = "StopFlowResponse";
954
+ const _SFTD = "SupportedFieldTypeDetails";
955
+ const _SFt = "StopFlow";
956
+ const _SIFC = "S3InputFormatConfig";
957
+ const _SK = "SecretKey";
958
+ const _SM = "S3Metadata";
959
+ const _SMa = "SalesforceMetadata";
960
+ const _SMi = "SingularMetadata";
961
+ const _SMl = "SlackMetadata";
962
+ const _SMn = "SnowflakeMetadata";
963
+ const _SN = "ServiceNow";
964
+ const _SNCPC = "ServiceNowConnectorProfileCredentials";
965
+ const _SNCPP = "ServiceNowConnectorProfileProperties";
966
+ const _SNM = "ServiceNowMetadata";
967
+ const _SNSP = "ServiceNowSourceProperties";
968
+ const _SOFC = "S3OutputFormatConfig";
969
+ const _SQEE = "ServiceQuotaExceededException";
970
+ const _SRHC = "SuccessResponseHandlingConfig";
971
+ const _SSP = "S3SourceProperties";
972
+ const _SSPa = "SalesforceSourceProperties";
973
+ const _SSPi = "SingularSourceProperties";
974
+ const _SSPl = "SlackSourceProperties";
975
+ const _STP = "ScheduledTriggerProperties";
976
+ const _Sa = "Salesforce";
977
+ const _Sc = "Scheduled";
978
+ const _Si = "Singular";
979
+ const _Sl = "Slack";
980
+ const _Sn = "Snowflake";
981
+ const _T = "Trendmicro";
982
+ const _TC = "TriggerConfig";
983
+ const _TCPC = "TrendmicroConnectorProfileCredentials";
984
+ const _TCPP = "TrendmicroConnectorProfileProperties";
985
+ const _TE = "ThrottlingException";
986
+ const _TM = "TrendmicroMetadata";
987
+ const _TP = "TriggerProperties";
988
+ const _TR = "TagResource";
989
+ const _TRR = "TagResourceRequest";
990
+ const _TRRa = "TagResourceResponse";
991
+ const _TSP = "TrendmicroSourceProperties";
992
+ const _Ta = "Task";
993
+ const _Tas = "Tasks";
994
+ const _Ty = "Type";
995
+ const _U = "Upsolver";
996
+ const _UC = "UnregisterConnector";
997
+ const _UCP = "UpdateConnectorProfile";
998
+ const _UCPR = "UpdateConnectorProfileRequest";
999
+ const _UCPRp = "UpdateConnectorProfileResponse";
1000
+ const _UCR = "UnregisterConnectorRequest";
1001
+ const _UCRR = "UpdateConnectorRegistrationRequest";
1002
+ const _UCRRp = "UpdateConnectorRegistrationResponse";
1003
+ const _UCRn = "UnregisterConnectorResponse";
1004
+ const _UCRp = "UpdateConnectorRegistration";
1005
+ const _UDP = "UpsolverDestinationProperties";
1006
+ const _UF = "UpdateFlow";
1007
+ const _UFR = "UpdateFlowRequest";
1008
+ const _UFRp = "UpdateFlowResponse";
1009
+ const _UM = "UpsolverMetadata";
1010
+ const _UOE = "UnsupportedOperationException";
1011
+ const _UR = "UntagResource";
1012
+ const _URR = "UntagResourceRequest";
1013
+ const _URRn = "UntagResourceResponse";
1014
+ const _USOFC = "UpsolverS3OutputFormatConfig";
1015
+ const _V = "Veeva";
1016
+ const _VCPC = "VeevaConnectorProfileCredentials";
1017
+ const _VCPP = "VeevaConnectorProfileProperties";
1018
+ const _VE = "ValidationException";
1019
+ const _VM = "VeevaMetadata";
1020
+ const _VSP = "VeevaSourceProperties";
1021
+ const _Z = "Zendesk";
1022
+ const _ZCPC = "ZendeskConnectorProfileCredentials";
1023
+ const _ZCPP = "ZendeskConnectorProfileProperties";
1024
+ const _ZDP = "ZendeskDestinationProperties";
1025
+ const _ZM = "ZendeskMetadata";
1026
+ const _ZSP = "ZendeskSourceProperties";
1027
+ const _aC = "authenticationConfig";
1028
+ const _aCU = "authCodeUrls";
1029
+ const _aCUu = "authCodeUrl";
1030
+ const _aCg = "aggregationConfig";
1031
+ const _aCu = "authCode";
1032
+ const _aHU = "applicationHostUrl";
1033
+ const _aK = "apiKey";
1034
+ const _aKI = "accessKeyId";
1035
+ const _aKp = "applicationKey";
1036
+ const _aN = "accountName";
1037
+ const _aP = "authParameters";
1038
+ const _aSK = "apiSecretKey";
1039
+ const _aSP = "applicationServicePath";
1040
+ const _aT = "aggregationType";
1041
+ const _aTc = "accessToken";
1042
+ const _aTp = "applicationType";
1043
+ const _aTpi = "apiToken";
1044
+ const _aTu = "authenticationType";
1045
+ const _aV = "apiVersion";
1046
+ const _b = "basic";
1047
+ const _bAC = "basicAuthCredentials";
1048
+ const _bN = "bucketName";
1049
+ const _bP = "bucketPrefix";
1050
+ const _bPy = "bytesProcessed";
1051
+ const _bUI = "businessUnitId";
1052
+ const _bW = "bytesWritten";
1053
+ const _c = "client";
1054
+ const _cA = "connectorArn";
1055
+ const _cAC = "customAuthConfigs";
1056
+ const _cAT = "customAuthenticationType";
1057
+ const _cAr = "credentialsArn";
1058
+ const _cAre = "createdAt";
1059
+ const _cB = "createdBy";
1060
+ const _cC = "connectorConfiguration";
1061
+ const _cCA = "clientCredentialsArn";
1062
+ const _cCo = "connectorConfigurations";
1063
+ const _cD = "connectorDescription";
1064
+ const _cEF = "connectorEntityFields";
1065
+ const _cEM = "connectorEntityMap";
1066
+ const _cEN = "connectorEntityName";
1067
+ const _cI = "clientId";
1068
+ const _cIl = "clusterIdentifier";
1069
+ const _cL = "connectorLabel";
1070
+ const _cM = "connectorMetadata";
1071
+ const _cMo = "connectorModes";
1072
+ const _cMon = "connectionMode";
1073
+ const _cMr = "credentialsMap";
1074
+ const _cN = "connectorName";
1075
+ const _cNl = "clientNumber";
1076
+ const _cO = "connectorOwner";
1077
+ const _cOo = "connectorOperator";
1078
+ const _cP = "customProperties";
1079
+ const _cPA = "connectorProfileArn";
1080
+ const _cPC = "connectorProvisioningConfig";
1081
+ const _cPCo = "connectorProfileCredentials";
1082
+ const _cPCon = "connectorProfileConfig";
1083
+ const _cPD = "connectorProfileDetails";
1084
+ const _cPN = "connectorProfileName";
1085
+ const _cPNo = "connectorProfileNames";
1086
+ const _cPP = "connectorProfileProperties";
1087
+ const _cPT = "connectorProvisioningType";
1088
+ const _cRS = "connectorRuntimeSettings";
1089
+ const _cS = "clientSecret";
1090
+ const _cSV = "connectorSuppliedValues";
1091
+ const _cSVO = "connectorSuppliedValueOptions";
1092
+ const _cT = "connectorType";
1093
+ const _cTa = "catalogType";
1094
+ const _cTl = "clientToken";
1095
+ const _cTo = "connectorTypes";
1096
+ const _cUAD = "canUseAsDestination";
1097
+ const _cUAS = "canUseAsSource";
1098
+ const _cV = "connectorVersion";
1099
+ const _co = "connectors";
1100
+ const _cu = "custom";
1101
+ const _d = "description";
1102
+ const _dARA = "dataApiRoleArn";
1103
+ const _dCL = "destinationConnectorLabel";
1104
+ const _dCP = "destinationConnectorProperties";
1105
+ const _dCT = "destinationConnectorType";
1106
+ const _dF = "destinationField";
1107
+ const _dFCL = "destinationFlowConfigList";
1108
+ const _dN = "domainName";
1109
+ const _dNa = "databaseName";
1110
+ const _dP = "destinationProperties";
1111
+ const _dPET = "dataPullEndTime";
1112
+ const _dPM = "dataPullMode";
1113
+ const _dPST = "dataPullStartTime";
1114
+ const _dSSO = "disableSSO";
1115
+ const _dT = "dataType";
1116
+ const _dTA = "dataTransferApi";
1117
+ const _dTAa = "dataTransferApis";
1118
+ const _dTFN = "datetimeTypeFieldName";
1119
+ const _dTo = "documentType";
1120
+ const _dU = "databaseUrl";
1121
+ const _dV = "defaultValue";
1122
+ const _da = "datakey";
1123
+ const _e = "error";
1124
+ const _eDFU = "enableDynamicFieldUpdate";
1125
+ const _eHC = "errorHandlingConfig";
1126
+ const _eI = "executionIds";
1127
+ const _eIr = "errorInfo";
1128
+ const _eIx = "executionId";
1129
+ const _eM = "executionMessage";
1130
+ const _eN = "entityName";
1131
+ const _eP = "entitiesPath";
1132
+ const _eR = "executionResult";
1133
+ const _eS = "executionStatus";
1134
+ const _f = "flows";
1135
+ const _fA = "flowArn";
1136
+ const _fC = "failureCause";
1137
+ const _fD = "forceDelete";
1138
+ const _fE = "flowExecutions";
1139
+ const _fEDT = "flowErrorDeactivationThreshold";
1140
+ const _fEF = "firstExecutionFrom";
1141
+ const _fLR = "fieldLengthRange";
1142
+ const _fM = "failureMessage";
1143
+ const _fN = "flowName";
1144
+ const _fO = "filterOperators";
1145
+ const _fOFDE = "failOnFirstDestinationError";
1146
+ const _fS = "flowStatus";
1147
+ const _fSM = "flowStatusMessage";
1148
+ const _fT = "fieldType";
1149
+ const _fTi = "fileType";
1150
+ const _fVR = "fieldValueRange";
1151
+ const _gDC = "glueDataCatalog";
1152
+ const _h = "http";
1153
+ const _hE = "httpError";
1154
+ const _hNE = "hasNestedEntities";
1155
+ const _hQ = "httpQuery";
1156
+ const _i = "identifier";
1157
+ const _iAKAS = "isApiKeyAuthSupported";
1158
+ const _iAV = "includeAllVersions";
1159
+ const _iBAS = "isBasicAuthSupported";
1160
+ const _iBN = "intermediateBucketName";
1161
+ const _iC = "isCreatable";
1162
+ const _iCAS = "isCustomAuthSupported";
1163
+ const _iD = "isDeprecated";
1164
+ const _iDOC = "isDefaultedOnCreate";
1165
+ const _iDR = "includeDeletedRecords";
1166
+ const _iE = "invalidExecutions";
1167
+ const _iFN = "idFieldNames";
1168
+ const _iN = "isNullable";
1169
+ const _iOAS = "isOAuth2Supported";
1170
+ const _iPC = "incrementalPullConfig";
1171
+ const _iPK = "isPrimaryKey";
1172
+ const _iPLE = "isPrivateLinkEnabled";
1173
+ const _iPLEUR = "isPrivateLinkEndpointUrlRequired";
1174
+ const _iQ = "isQueryable";
1175
+ const _iR = "isRequired";
1176
+ const _iRS = "isRedshiftServerless";
1177
+ const _iRn = "includeRenditions";
1178
+ const _iRs = "isRetrievable";
1179
+ const _iSE = "isSandboxEnvironment";
1180
+ const _iSF = "isSensitiveField";
1181
+ const _iSFn = "includeSourceFiles";
1182
+ const _iTFFIQ = "isTimestampFieldForIncrementalQueries";
1183
+ const _iU = "instanceUrl";
1184
+ const _iUs = "isUpsertable";
1185
+ const _iUsp = "isUpdatable";
1186
+ const _jT = "jwtToken";
1187
+ const _k = "key";
1188
+ const _kA = "kmsArn";
1189
+ const _l = "label";
1190
+ const _lA = "lambdaArn";
1191
+ const _lL = "logonLanguage";
1192
+ const _lRED = "lastRunExecutionDetails";
1193
+ const _lRMCD = "lastRunMetadataCatalogDetails";
1194
+ const _lUA = "lastUpdatedAt";
1195
+ const _lUB = "lastUpdatedBy";
1196
+ const _lURL = "logoURL";
1197
+ const _la = "lambda";
1198
+ const _m = "message";
1199
+ const _mCC = "metadataCatalogConfig";
1200
+ const _mCD = "metadataCatalogDetails";
1201
+ const _mP = "maxParallelism";
1202
+ const _mPS = "maxPageSize";
1203
+ const _mR = "maxResults";
1204
+ const _mREM = "mostRecentExecutionMessage";
1205
+ const _mRES = "mostRecentExecutionStatus";
1206
+ const _mRET = "mostRecentExecutionTime";
1207
+ const _ma = "maximum";
1208
+ const _mi = "minimum";
1209
+ const _n = "name";
1210
+ const _nPP = "numParallelProcesses";
1211
+ const _nT = "nextToken";
1212
+ const _o = "object";
1213
+ const _oAC = "oAuthCredentials";
1214
+ const _oACu = "oAuth2Credentials";
1215
+ const _oAD = "oAuth2Defaults";
1216
+ const _oAGT = "oAuth2GrantType";
1217
+ const _oAP = "oAuth2Properties";
1218
+ const _oAPu = "oAuthProperties";
1219
+ const _oAR = "oAuthRequest";
1220
+ const _oAS = "oAuthScopes";
1221
+ const _oCP = "oauth2CustomProperties";
1222
+ const _oGTS = "oauth2GrantTypesSupported";
1223
+ const _oP = "objectPath";
1224
+ const _oS = "oauthScopes";
1225
+ const _oTN = "objectTypeName";
1226
+ const _oa = "oauth2";
1227
+ const _p = "password";
1228
+ const _pC = "prefixConfig";
1229
+ const _pCPS = "privateConnectionProvisioningState";
1230
+ const _pCa = "parallelismConfig";
1231
+ const _pCag = "paginationConfig";
1232
+ const _pF = "prefixFormat";
1233
+ const _pFC = "putFailuresCount";
1234
+ const _pI = "parentIdentifier";
1235
+ const _pLSN = "privateLinkServiceName";
1236
+ const _pN = "portNumber";
1237
+ const _pP = "profileProperties";
1238
+ const _pPH = "pathPrefixHierarchy";
1239
+ const _pRO = "partitionRegistrationOutput";
1240
+ const _pSDT = "preserveSourceDataTyping";
1241
+ const _pT = "prefixType";
1242
+ const _r = "result";
1243
+ const _rA = "registeredAt";
1244
+ const _rAe = "resourceArn";
1245
+ const _rAo = "roleArn";
1246
+ const _rB = "registeredBy";
1247
+ const _rP = "recordsProcessed";
1248
+ const _rT = "refreshToken";
1249
+ const _rU = "redirectUri";
1250
+ const _re = "region";
1251
+ const _s = "scope";
1252
+ const _sA = "startedAt";
1253
+ const _sAK = "secretAccessKey";
1254
+ const _sAV = "supportedApiVersions";
1255
+ const _sCL = "sourceConnectorLabel";
1256
+ const _sCP = "sourceConnectorProperties";
1257
+ const _sCT = "sourceConnectorType";
1258
+ const _sDC = "supportedDestinationConnectors";
1259
+ const _sDF = "supportedDateFormat";
1260
+ const _sDTA = "supportedDataTransferApis";
1261
+ const _sDTT = "supportedDataTransferTypes";
1262
+ const _sE = "scheduleExpression";
1263
+ const _sET = "scheduleEndTime";
1264
+ const _sF = "sourceFields";
1265
+ const _sFC = "sourceFlowConfig";
1266
+ const _sFTD = "supportedFieldTypeDetails";
1267
+ const _sIFC = "s3InputFormatConfig";
1268
+ const _sIFT = "s3InputFileType";
1269
+ const _sK = "secretKey";
1270
+ const _sO = "supportedOperators";
1271
+ const _sOFC = "s3OutputFormatConfig";
1272
+ const _sOc = "scheduleOffset";
1273
+ const _sP = "sourceProperties";
1274
+ const _sR = "supportedRegions";
1275
+ const _sRHC = "successResponseHandlingConfig";
1276
+ const _sSF = "supportedSchedulingFrequencies";
1277
+ const _sST = "scheduleStartTime";
1278
+ const _sTT = "supportedTriggerTypes";
1279
+ const _sV = "schemaVersion";
1280
+ const _sVu = "supportedValues";
1281
+ const _sWO = "supportedWriteOperations";
1282
+ const _se = "server";
1283
+ const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.appflow";
1284
+ const _st = "status";
1285
+ const _sta = "stage";
1286
+ const _t = "tasks";
1287
+ const _tC = "triggerConfig";
1288
+ const _tFS = "targetFileSize";
2036
1289
  const _tK = "tagKeys";
1290
+ const _tN = "tableName";
1291
+ const _tP = "tablePrefix";
1292
+ const _tPa = "taskProperties";
1293
+ const _tPr = "triggerProperties";
1294
+ const _tRO = "tableRegistrationOutput";
1295
+ const _tT = "triggerType";
1296
+ const _tTa = "taskType";
1297
+ const _tU = "tokenUrls";
1298
+ const _tUCP = "tokenUrlCustomProperties";
1299
+ const _tUo = "tokenUrl";
1300
+ const _ta = "tags";
1301
+ const _ti = "timezone";
1302
+ const _ty = "type";
1303
+ const _u = "username";
1304
+ const _uI = "userId";
1305
+ const _uPLFMAA = "usePrivateLinkForMetadataAndAuthorization";
1306
+ const _v = "v1";
1307
+ const _vRP = "valueRegexPattern";
1308
+ const _w = "warehouse";
1309
+ const _wN = "workgroupName";
1310
+ const _wOT = "writeOperationType";
1311
+ const n0 = "com.amazonaws.appflow";
1312
+ var AccessKeyId = [0, n0, _AKI, 8, 0];
1313
+ var AccessToken = [0, n0, _AT, 8, 0];
1314
+ var ApiKey = [0, n0, _AK, 8, 0];
1315
+ var ApiSecretKey = [0, n0, _ASK, 8, 0];
1316
+ var ClientCredentialsArn = [0, n0, _CCA, 8, 0];
1317
+ var ClientSecret = [0, n0, _CS, 8, 0];
1318
+ var CredentialsMapKey = [0, n0, _CMK, 8, 0];
1319
+ var CredentialsMapValue = [0, n0, _CMV, 8, 0];
1320
+ var JwtToken = [0, n0, _JT, 8, 0];
1321
+ var Password = [0, n0, _P, 8, 0];
1322
+ var SecretKey = [0, n0, _SK, 8, 0];
1323
+ var AccessDeniedException = [
1324
+ -3,
1325
+ n0,
1326
+ _ADE,
1327
+ {
1328
+ [_e]: _c,
1329
+ [_hE]: 403,
1330
+ },
1331
+ [_m],
1332
+ [0],
1333
+ ];
1334
+ schema.TypeRegistry.for(n0).registerError(AccessDeniedException, AccessDeniedException$1);
1335
+ var AggregationConfig = [3, n0, _AC, 0, [_aT, _tFS], [0, 1]];
1336
+ var AmplitudeConnectorProfileCredentials = [
1337
+ 3,
1338
+ n0,
1339
+ _ACPC,
1340
+ 0,
1341
+ [_aK, _sK],
1342
+ [
1343
+ [() => ApiKey, 0],
1344
+ [() => SecretKey, 0],
1345
+ ],
1346
+ ];
1347
+ var AmplitudeConnectorProfileProperties = [3, n0, _ACPP, 0, [], []];
1348
+ var AmplitudeMetadata = [3, n0, _AM, 0, [], []];
1349
+ var AmplitudeSourceProperties = [3, n0, _ASP, 0, [_o], [0]];
1350
+ var ApiKeyCredentials = [
1351
+ 3,
1352
+ n0,
1353
+ _AKC,
1354
+ 0,
1355
+ [_aK, _aSK],
1356
+ [
1357
+ [() => ApiKey, 0],
1358
+ [() => ApiSecretKey, 0],
1359
+ ],
1360
+ ];
1361
+ var AuthenticationConfig = [
1362
+ 3,
1363
+ n0,
1364
+ _ACu,
1365
+ 0,
1366
+ [_iBAS, _iAKAS, _iOAS, _iCAS, _oAD, _cAC],
1367
+ [2, 2, 2, 2, () => OAuth2Defaults, () => CustomAuthConfigList],
1368
+ ];
1369
+ var AuthParameter = [
1370
+ 3,
1371
+ n0,
1372
+ _AP,
1373
+ 0,
1374
+ [_k, _iR, _l, _d, _iSF, _cSV],
1375
+ [0, 2, 0, 0, 2, 64 | 0],
1376
+ ];
1377
+ var BasicAuthCredentials = [3, n0, _BAC, 0, [_u, _p], [0, [() => Password, 0]]];
1378
+ var CancelFlowExecutionsRequest = [3, n0, _CFER, 0, [_fN, _eI], [0, 64 | 0]];
1379
+ var CancelFlowExecutionsResponse = [3, n0, _CFERa, 0, [_iE], [64 | 0]];
1380
+ var ConflictException = [
1381
+ -3,
1382
+ n0,
1383
+ _CE,
1384
+ {
1385
+ [_e]: _c,
1386
+ [_hE]: 409,
1387
+ },
1388
+ [_m],
1389
+ [0],
1390
+ ];
1391
+ schema.TypeRegistry.for(n0).registerError(ConflictException, ConflictException$1);
1392
+ var ConnectorAuthenticationException = [
1393
+ -3,
1394
+ n0,
1395
+ _CAE,
1396
+ {
1397
+ [_e]: _c,
1398
+ [_hE]: 401,
1399
+ },
1400
+ [_m],
1401
+ [0],
1402
+ ];
1403
+ schema.TypeRegistry.for(n0).registerError(ConnectorAuthenticationException, ConnectorAuthenticationException$1);
1404
+ var ConnectorConfiguration = [
1405
+ 3,
1406
+ n0,
1407
+ _CC,
1408
+ 0,
1409
+ [
1410
+ _cUAS,
1411
+ _cUAD,
1412
+ _sDC,
1413
+ _sSF,
1414
+ _iPLE,
1415
+ _iPLEUR,
1416
+ _sTT,
1417
+ _cM,
1418
+ _cT,
1419
+ _cL,
1420
+ _cD,
1421
+ _cO,
1422
+ _cN,
1423
+ _cV,
1424
+ _cA,
1425
+ _cMo,
1426
+ _aC,
1427
+ _cRS,
1428
+ _sAV,
1429
+ _sO,
1430
+ _sWO,
1431
+ _cPT,
1432
+ _cPC,
1433
+ _lURL,
1434
+ _rA,
1435
+ _rB,
1436
+ _sDTT,
1437
+ _sDTA,
1438
+ ],
1439
+ [
1440
+ 2,
1441
+ 2,
1442
+ 64 | 0,
1443
+ 64 | 0,
1444
+ 2,
1445
+ 2,
1446
+ 64 | 0,
1447
+ () => ConnectorMetadata,
1448
+ 0,
1449
+ 0,
1450
+ 0,
1451
+ 0,
1452
+ 0,
1453
+ 0,
1454
+ 0,
1455
+ 64 | 0,
1456
+ () => AuthenticationConfig,
1457
+ () => ConnectorRuntimeSettingList,
1458
+ 64 | 0,
1459
+ 64 | 0,
1460
+ 64 | 0,
1461
+ 0,
1462
+ () => ConnectorProvisioningConfig,
1463
+ 0,
1464
+ 4,
1465
+ 0,
1466
+ 64 | 0,
1467
+ () => SupportedDataTransferApis,
1468
+ ],
1469
+ ];
1470
+ var ConnectorDetail = [
1471
+ 3,
1472
+ n0,
1473
+ _CD,
1474
+ 0,
1475
+ [_cD, _cN, _cO, _cV, _aTp, _cT, _cL, _rA, _rB, _cPT, _cMo, _sDTT],
1476
+ [0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 64 | 0, 64 | 0],
1477
+ ];
1478
+ var ConnectorEntity = [3, n0, _CEo, 0, [_n, _l, _hNE], [0, 0, 2]];
1479
+ var ConnectorEntityField = [
1480
+ 3,
1481
+ n0,
1482
+ _CEF,
1483
+ 0,
1484
+ [_i, _pI, _l, _iPK, _dV, _iD, _sFTD, _d, _sP, _dP, _cP],
1485
+ [
1486
+ 0,
1487
+ 0,
1488
+ 0,
1489
+ 2,
1490
+ 0,
1491
+ 2,
1492
+ () => SupportedFieldTypeDetails,
1493
+ 0,
1494
+ () => SourceFieldProperties,
1495
+ () => DestinationFieldProperties,
1496
+ 128 | 0,
1497
+ ],
1498
+ ];
1499
+ var ConnectorMetadata = [
1500
+ 3,
1501
+ n0,
1502
+ _CM,
1503
+ 0,
1504
+ [_A, _D, _Dy, _GA, _IN, _M, _R, _S, _Sa, _SN, _Si, _Sl, _Sn, _T, _V, _Z, _EB, _U, _CP, _H, _SAPOD, _Pa],
1505
+ [
1506
+ () => AmplitudeMetadata,
1507
+ () => DatadogMetadata,
1508
+ () => DynatraceMetadata,
1509
+ () => GoogleAnalyticsMetadata,
1510
+ () => InforNexusMetadata,
1511
+ () => MarketoMetadata,
1512
+ () => RedshiftMetadata,
1513
+ () => S3Metadata,
1514
+ () => SalesforceMetadata,
1515
+ () => ServiceNowMetadata,
1516
+ () => SingularMetadata,
1517
+ () => SlackMetadata,
1518
+ () => SnowflakeMetadata,
1519
+ () => TrendmicroMetadata,
1520
+ () => VeevaMetadata,
1521
+ () => ZendeskMetadata,
1522
+ () => EventBridgeMetadata,
1523
+ () => UpsolverMetadata,
1524
+ () => CustomerProfilesMetadata,
1525
+ () => HoneycodeMetadata,
1526
+ () => SAPODataMetadata,
1527
+ () => PardotMetadata,
1528
+ ],
1529
+ ];
1530
+ var ConnectorOAuthRequest = [3, n0, _COAR, 0, [_aCu, _rU], [0, 0]];
1531
+ var ConnectorOperator = [
1532
+ 3,
1533
+ n0,
1534
+ _CO,
1535
+ 0,
1536
+ [_A, _D, _Dy, _GA, _IN, _M, _S, _Sa, _SN, _Si, _Sl, _T, _V, _Z, _SAPOD, _CCu, _Pa],
1537
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
1538
+ ];
1539
+ var ConnectorProfile = [
1540
+ 3,
1541
+ n0,
1542
+ _CPo,
1543
+ 0,
1544
+ [_cPA, _cPN, _cT, _cL, _cMon, _cAr, _cPP, _cAre, _lUA, _pCPS],
1545
+ [0, 0, 0, 0, 0, 0, () => ConnectorProfileProperties, 4, 4, () => PrivateConnectionProvisioningState],
1546
+ ];
1547
+ var ConnectorProfileConfig = [
1548
+ 3,
1549
+ n0,
1550
+ _CPC,
1551
+ 0,
1552
+ [_cPP, _cPCo],
1553
+ [() => ConnectorProfileProperties, [() => ConnectorProfileCredentials, 0]],
1554
+ ];
1555
+ var ConnectorProfileCredentials = [
1556
+ 3,
1557
+ n0,
1558
+ _CPCo,
1559
+ 0,
1560
+ [_A, _D, _Dy, _GA, _H, _IN, _M, _R, _Sa, _SN, _Si, _Sl, _Sn, _T, _V, _Z, _SAPOD, _CCu, _Pa],
1561
+ [
1562
+ [() => AmplitudeConnectorProfileCredentials, 0],
1563
+ [() => DatadogConnectorProfileCredentials, 0],
1564
+ () => DynatraceConnectorProfileCredentials,
1565
+ [() => GoogleAnalyticsConnectorProfileCredentials, 0],
1566
+ [() => HoneycodeConnectorProfileCredentials, 0],
1567
+ [() => InforNexusConnectorProfileCredentials, 0],
1568
+ [() => MarketoConnectorProfileCredentials, 0],
1569
+ [() => RedshiftConnectorProfileCredentials, 0],
1570
+ [() => SalesforceConnectorProfileCredentials, 0],
1571
+ [() => ServiceNowConnectorProfileCredentials, 0],
1572
+ [() => SingularConnectorProfileCredentials, 0],
1573
+ [() => SlackConnectorProfileCredentials, 0],
1574
+ [() => SnowflakeConnectorProfileCredentials, 0],
1575
+ [() => TrendmicroConnectorProfileCredentials, 0],
1576
+ [() => VeevaConnectorProfileCredentials, 0],
1577
+ [() => ZendeskConnectorProfileCredentials, 0],
1578
+ [() => SAPODataConnectorProfileCredentials, 0],
1579
+ [() => CustomConnectorProfileCredentials, 0],
1580
+ [() => PardotConnectorProfileCredentials, 0],
1581
+ ],
1582
+ ];
1583
+ var ConnectorProfileProperties = [
1584
+ 3,
1585
+ n0,
1586
+ _CPP,
1587
+ 0,
1588
+ [_A, _D, _Dy, _GA, _H, _IN, _M, _R, _Sa, _SN, _Si, _Sl, _Sn, _T, _V, _Z, _SAPOD, _CCu, _Pa],
1589
+ [
1590
+ () => AmplitudeConnectorProfileProperties,
1591
+ () => DatadogConnectorProfileProperties,
1592
+ () => DynatraceConnectorProfileProperties,
1593
+ () => GoogleAnalyticsConnectorProfileProperties,
1594
+ () => HoneycodeConnectorProfileProperties,
1595
+ () => InforNexusConnectorProfileProperties,
1596
+ () => MarketoConnectorProfileProperties,
1597
+ () => RedshiftConnectorProfileProperties,
1598
+ () => SalesforceConnectorProfileProperties,
1599
+ () => ServiceNowConnectorProfileProperties,
1600
+ () => SingularConnectorProfileProperties,
1601
+ () => SlackConnectorProfileProperties,
1602
+ () => SnowflakeConnectorProfileProperties,
1603
+ () => TrendmicroConnectorProfileProperties,
1604
+ () => VeevaConnectorProfileProperties,
1605
+ () => ZendeskConnectorProfileProperties,
1606
+ () => SAPODataConnectorProfileProperties,
1607
+ () => CustomConnectorProfileProperties,
1608
+ () => PardotConnectorProfileProperties,
1609
+ ],
1610
+ ];
1611
+ var ConnectorProvisioningConfig = [
1612
+ 3,
1613
+ n0,
1614
+ _CPCon,
1615
+ 0,
1616
+ [_la],
1617
+ [() => LambdaConnectorProvisioningConfig],
1618
+ ];
1619
+ var ConnectorRuntimeSetting = [
1620
+ 3,
1621
+ n0,
1622
+ _CRS,
1623
+ 0,
1624
+ [_k, _dT, _iR, _l, _d, _s, _cSVO],
1625
+ [0, 0, 2, 0, 0, 0, 64 | 0],
1626
+ ];
1627
+ var ConnectorServerException = [
1628
+ -3,
1629
+ n0,
1630
+ _CSE,
1631
+ {
1632
+ [_e]: _c,
1633
+ [_hE]: 400,
1634
+ },
1635
+ [_m],
1636
+ [0],
1637
+ ];
1638
+ schema.TypeRegistry.for(n0).registerError(ConnectorServerException, ConnectorServerException$1);
1639
+ var CreateConnectorProfileRequest = [
1640
+ 3,
1641
+ n0,
1642
+ _CCPR,
1643
+ 0,
1644
+ [_cPN, _kA, _cT, _cL, _cMon, _cPCon, _cTl],
1645
+ [0, 0, 0, 0, 0, [() => ConnectorProfileConfig, 0], [0, 4]],
1646
+ ];
1647
+ var CreateConnectorProfileResponse = [3, n0, _CCPRr, 0, [_cPA], [0]];
1648
+ var CreateFlowRequest = [
1649
+ 3,
1650
+ n0,
1651
+ _CFR,
1652
+ 0,
1653
+ [_fN, _d, _kA, _tC, _sFC, _dFCL, _t, _ta, _mCC, _cTl],
1654
+ [
1655
+ 0,
1656
+ 0,
1657
+ 0,
1658
+ () => TriggerConfig,
1659
+ () => SourceFlowConfig,
1660
+ () => DestinationFlowConfigList,
1661
+ () => Tasks,
1662
+ 128 | 0,
1663
+ () => MetadataCatalogConfig,
1664
+ [0, 4],
1665
+ ],
1666
+ ];
1667
+ var CreateFlowResponse = [3, n0, _CFRr, 0, [_fA, _fS], [0, 0]];
1668
+ var CustomAuthConfig = [3, n0, _CAC, 0, [_cAT, _aP], [0, () => AuthParameterList]];
1669
+ var CustomAuthCredentials = [
1670
+ 3,
1671
+ n0,
1672
+ _CACu,
1673
+ 0,
1674
+ [_cAT, _cMr],
1675
+ [0, [() => CredentialsMap, 0]],
1676
+ ];
1677
+ var CustomConnectorDestinationProperties = [
1678
+ 3,
1679
+ n0,
1680
+ _CCDP,
1681
+ 0,
1682
+ [_eN, _eHC, _wOT, _iFN, _cP],
1683
+ [0, () => ErrorHandlingConfig, 0, 64 | 0, 128 | 0],
1684
+ ];
1685
+ var CustomConnectorProfileCredentials = [
1686
+ 3,
1687
+ n0,
1688
+ _CCPC,
1689
+ 0,
1690
+ [_aTu, _b, _oa, _aK, _cu],
1691
+ [
1692
+ 0,
1693
+ [() => BasicAuthCredentials, 0],
1694
+ [() => OAuth2Credentials, 0],
1695
+ [() => ApiKeyCredentials, 0],
1696
+ [() => CustomAuthCredentials, 0],
1697
+ ],
1698
+ ];
1699
+ var CustomConnectorProfileProperties = [
1700
+ 3,
1701
+ n0,
1702
+ _CCPP,
1703
+ 0,
1704
+ [_pP, _oAP],
1705
+ [128 | 0, () => OAuth2Properties],
1706
+ ];
1707
+ var CustomConnectorSourceProperties = [
1708
+ 3,
1709
+ n0,
1710
+ _CCSP,
1711
+ 0,
1712
+ [_eN, _cP, _dTA],
1713
+ [0, 128 | 0, () => DataTransferApi],
1714
+ ];
1715
+ var CustomerProfilesDestinationProperties = [3, n0, _CPDP, 0, [_dN, _oTN], [0, 0]];
1716
+ var CustomerProfilesMetadata = [3, n0, _CPM, 0, [], []];
1717
+ var DatadogConnectorProfileCredentials = [
1718
+ 3,
1719
+ n0,
1720
+ _DCPC,
1721
+ 0,
1722
+ [_aK, _aKp],
1723
+ [[() => ApiKey, 0], 0],
1724
+ ];
1725
+ var DatadogConnectorProfileProperties = [3, n0, _DCPP, 0, [_iU], [0]];
1726
+ var DatadogMetadata = [3, n0, _DM, 0, [], []];
1727
+ var DatadogSourceProperties = [3, n0, _DSP, 0, [_o], [0]];
1728
+ var DataTransferApi = [3, n0, _DTA, 0, [_N, _Ty], [0, 0]];
1729
+ var DeleteConnectorProfileRequest = [3, n0, _DCPR, 0, [_cPN, _fD], [0, 2]];
1730
+ var DeleteConnectorProfileResponse = [3, n0, _DCPRe, 0, [], []];
1731
+ var DeleteFlowRequest = [3, n0, _DFR, 0, [_fN, _fD], [0, 2]];
1732
+ var DeleteFlowResponse = [3, n0, _DFRe, 0, [], []];
1733
+ var DescribeConnectorEntityRequest = [
1734
+ 3,
1735
+ n0,
1736
+ _DCER,
1737
+ 0,
1738
+ [_cEN, _cT, _cPN, _aV],
1739
+ [0, 0, 0, 0],
1740
+ ];
1741
+ var DescribeConnectorEntityResponse = [
1742
+ 3,
1743
+ n0,
1744
+ _DCERe,
1745
+ 0,
1746
+ [_cEF],
1747
+ [() => ConnectorEntityFieldList],
1748
+ ];
1749
+ var DescribeConnectorProfilesRequest = [
1750
+ 3,
1751
+ n0,
1752
+ _DCPRes,
1753
+ 0,
1754
+ [_cPNo, _cT, _cL, _mR, _nT],
1755
+ [64 | 0, 0, 0, 1, 0],
1756
+ ];
1757
+ var DescribeConnectorProfilesResponse = [
1758
+ 3,
1759
+ n0,
1760
+ _DCPResc,
1761
+ 0,
1762
+ [_cPD, _nT],
1763
+ [() => ConnectorProfileDetailList, 0],
1764
+ ];
1765
+ var DescribeConnectorRequest = [3, n0, _DCR, 0, [_cT, _cL], [0, 0]];
1766
+ var DescribeConnectorResponse = [3, n0, _DCRe, 0, [_cC], [() => ConnectorConfiguration]];
1767
+ var DescribeConnectorsRequest = [3, n0, _DCRes, 0, [_cTo, _mR, _nT], [64 | 0, 1, 0]];
1768
+ var DescribeConnectorsResponse = [
1769
+ 3,
1770
+ n0,
1771
+ _DCResc,
1772
+ 0,
1773
+ [_cCo, _co, _nT],
1774
+ [() => ConnectorConfigurationsMap, () => ConnectorList, 0],
1775
+ ];
1776
+ var DescribeFlowExecutionRecordsRequest = [3, n0, _DFERR, 0, [_fN, _mR, _nT], [0, 1, 0]];
1777
+ var DescribeFlowExecutionRecordsResponse = [
1778
+ 3,
1779
+ n0,
1780
+ _DFERRe,
1781
+ 0,
1782
+ [_fE, _nT],
1783
+ [() => FlowExecutionList, 0],
1784
+ ];
1785
+ var DescribeFlowRequest = [3, n0, _DFRes, 0, [_fN], [0]];
1786
+ var DescribeFlowResponse = [
1787
+ 3,
1788
+ n0,
1789
+ _DFResc,
1790
+ 0,
1791
+ [_fA, _d, _fN, _kA, _fS, _fSM, _sFC, _dFCL, _lRED, _tC, _t, _cAre, _lUA, _cB, _lUB, _ta, _mCC, _lRMCD, _sV],
1792
+ [
1793
+ 0,
1794
+ 0,
1795
+ 0,
1796
+ 0,
1797
+ 0,
1798
+ 0,
1799
+ () => SourceFlowConfig,
1800
+ () => DestinationFlowConfigList,
1801
+ () => ExecutionDetails,
1802
+ () => TriggerConfig,
1803
+ () => Tasks,
1804
+ 4,
1805
+ 4,
1806
+ 0,
1807
+ 0,
1808
+ 128 | 0,
1809
+ () => MetadataCatalogConfig,
1810
+ () => MetadataCatalogDetails,
1811
+ 1,
1812
+ ],
1813
+ ];
1814
+ var DestinationConnectorProperties = [
1815
+ 3,
1816
+ n0,
1817
+ _DCP,
1818
+ 0,
1819
+ [_R, _S, _Sa, _Sn, _EB, _LM, _U, _H, _CP, _Z, _M, _CCu, _SAPOD],
1820
+ [
1821
+ () => RedshiftDestinationProperties,
1822
+ () => S3DestinationProperties,
1823
+ () => SalesforceDestinationProperties,
1824
+ () => SnowflakeDestinationProperties,
1825
+ () => EventBridgeDestinationProperties,
1826
+ () => LookoutMetricsDestinationProperties,
1827
+ () => UpsolverDestinationProperties,
1828
+ () => HoneycodeDestinationProperties,
1829
+ () => CustomerProfilesDestinationProperties,
1830
+ () => ZendeskDestinationProperties,
1831
+ () => MarketoDestinationProperties,
1832
+ () => CustomConnectorDestinationProperties,
1833
+ () => SAPODataDestinationProperties,
1834
+ ],
1835
+ ];
1836
+ var DestinationFieldProperties = [
1837
+ 3,
1838
+ n0,
1839
+ _DFP,
1840
+ 0,
1841
+ [_iC, _iN, _iUs, _iUsp, _iDOC, _sWO],
1842
+ [2, 2, 2, 2, 2, 64 | 0],
1843
+ ];
1844
+ var DestinationFlowConfig = [
1845
+ 3,
1846
+ n0,
1847
+ _DFC,
1848
+ 0,
1849
+ [_cT, _aV, _cPN, _dCP],
1850
+ [0, 0, 0, () => DestinationConnectorProperties],
1851
+ ];
1852
+ var DynatraceConnectorProfileCredentials = [3, n0, _DCPCy, 0, [_aTpi], [0]];
1853
+ var DynatraceConnectorProfileProperties = [3, n0, _DCPPy, 0, [_iU], [0]];
1854
+ var DynatraceMetadata = [3, n0, _DMy, 0, [], []];
1855
+ var DynatraceSourceProperties = [3, n0, _DSPy, 0, [_o], [0]];
1856
+ var ErrorHandlingConfig = [3, n0, _EHC, 0, [_fOFDE, _bP, _bN], [2, 0, 0]];
1857
+ var ErrorInfo = [3, n0, _EI, 0, [_pFC, _eM], [1, 0]];
1858
+ var EventBridgeDestinationProperties = [
1859
+ 3,
1860
+ n0,
1861
+ _EBDP,
1862
+ 0,
1863
+ [_o, _eHC],
1864
+ [0, () => ErrorHandlingConfig],
1865
+ ];
1866
+ var EventBridgeMetadata = [3, n0, _EBM, 0, [], []];
1867
+ var ExecutionDetails = [3, n0, _ED, 0, [_mREM, _mRET, _mRES], [0, 4, 0]];
1868
+ var ExecutionRecord = [
1869
+ 3,
1870
+ n0,
1871
+ _ER,
1872
+ 0,
1873
+ [_eIx, _eS, _eR, _sA, _lUA, _dPST, _dPET, _mCD],
1874
+ [0, 0, () => ExecutionResult, 4, 4, 4, 4, () => MetadataCatalogDetails],
1875
+ ];
1876
+ var ExecutionResult = [
1877
+ 3,
1878
+ n0,
1879
+ _ERx,
1880
+ 0,
1881
+ [_eIr, _bPy, _bW, _rP, _nPP, _mPS],
1882
+ [() => ErrorInfo, 1, 1, 1, 1, 1],
1883
+ ];
1884
+ var FieldTypeDetails = [
1885
+ 3,
1886
+ n0,
1887
+ _FTD,
1888
+ 0,
1889
+ [_fT, _fO, _sVu, _vRP, _sDF, _fVR, _fLR],
1890
+ [0, 64 | 0, 64 | 0, 0, 0, () => Range, () => Range],
1891
+ ];
1892
+ var FlowDefinition = [
1893
+ 3,
1894
+ n0,
1895
+ _FD,
1896
+ 0,
1897
+ [_fA, _d, _fN, _fS, _sCT, _sCL, _dCT, _dCL, _tT, _cAre, _lUA, _cB, _lUB, _ta, _lRED],
1898
+ [0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 128 | 0, () => ExecutionDetails],
1899
+ ];
1900
+ var GlueDataCatalogConfig = [3, n0, _GDCC, 0, [_rAo, _dNa, _tP], [0, 0, 0]];
1901
+ var GoogleAnalyticsConnectorProfileCredentials = [
1902
+ 3,
1903
+ n0,
1904
+ _GACPC,
1905
+ 0,
1906
+ [_cI, _cS, _aTc, _rT, _oAR],
1907
+ [0, [() => ClientSecret, 0], [() => AccessToken, 0], 0, () => ConnectorOAuthRequest],
1908
+ ];
1909
+ var GoogleAnalyticsConnectorProfileProperties = [3, n0, _GACPP, 0, [], []];
1910
+ var GoogleAnalyticsMetadata = [3, n0, _GAM, 0, [_oAS], [64 | 0]];
1911
+ var GoogleAnalyticsSourceProperties = [3, n0, _GASP, 0, [_o], [0]];
1912
+ var HoneycodeConnectorProfileCredentials = [
1913
+ 3,
1914
+ n0,
1915
+ _HCPC,
1916
+ 0,
1917
+ [_aTc, _rT, _oAR],
1918
+ [[() => AccessToken, 0], 0, () => ConnectorOAuthRequest],
1919
+ ];
1920
+ var HoneycodeConnectorProfileProperties = [3, n0, _HCPP, 0, [], []];
1921
+ var HoneycodeDestinationProperties = [
1922
+ 3,
1923
+ n0,
1924
+ _HDP,
1925
+ 0,
1926
+ [_o, _eHC],
1927
+ [0, () => ErrorHandlingConfig],
1928
+ ];
1929
+ var HoneycodeMetadata = [3, n0, _HM, 0, [_oAS], [64 | 0]];
1930
+ var IncrementalPullConfig = [3, n0, _IPC, 0, [_dTFN], [0]];
1931
+ var InforNexusConnectorProfileCredentials = [
1932
+ 3,
1933
+ n0,
1934
+ _INCPC,
1935
+ 0,
1936
+ [_aKI, _uI, _sAK, _da],
1937
+ [[() => AccessKeyId, 0], 0, 0, 0],
1938
+ ];
1939
+ var InforNexusConnectorProfileProperties = [3, n0, _INCPP, 0, [_iU], [0]];
1940
+ var InforNexusMetadata = [3, n0, _INM, 0, [], []];
1941
+ var InforNexusSourceProperties = [3, n0, _INSP, 0, [_o], [0]];
1942
+ var InternalServerException = [
1943
+ -3,
1944
+ n0,
1945
+ _ISE,
1946
+ {
1947
+ [_e]: _se,
1948
+ [_hE]: 500,
1949
+ },
1950
+ [_m],
1951
+ [0],
1952
+ ];
1953
+ schema.TypeRegistry.for(n0).registerError(InternalServerException, InternalServerException$1);
1954
+ var LambdaConnectorProvisioningConfig = [3, n0, _LCPC, 0, [_lA], [0]];
1955
+ var ListConnectorEntitiesRequest = [
1956
+ 3,
1957
+ n0,
1958
+ _LCER,
1959
+ 0,
1960
+ [_cPN, _cT, _eP, _aV, _mR, _nT],
1961
+ [0, 0, 0, 0, 1, 0],
1962
+ ];
1963
+ var ListConnectorEntitiesResponse = [
1964
+ 3,
1965
+ n0,
1966
+ _LCERi,
1967
+ 0,
1968
+ [_cEM, _nT],
1969
+ [() => ConnectorEntityMap, 0],
1970
+ ];
1971
+ var ListConnectorsRequest = [3, n0, _LCR, 0, [_mR, _nT], [1, 0]];
1972
+ var ListConnectorsResponse = [3, n0, _LCRi, 0, [_co, _nT], [() => ConnectorList, 0]];
1973
+ var ListFlowsRequest = [3, n0, _LFR, 0, [_mR, _nT], [1, 0]];
1974
+ var ListFlowsResponse = [3, n0, _LFRi, 0, [_f, _nT], [() => FlowList, 0]];
1975
+ var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rAe], [[0, 1]]];
1976
+ var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [128 | 0]];
1977
+ var LookoutMetricsDestinationProperties = [3, n0, _LMDP, 0, [], []];
1978
+ var MarketoConnectorProfileCredentials = [
1979
+ 3,
1980
+ n0,
1981
+ _MCPC,
1982
+ 0,
1983
+ [_cI, _cS, _aTc, _oAR],
1984
+ [0, [() => ClientSecret, 0], [() => AccessToken, 0], () => ConnectorOAuthRequest],
1985
+ ];
1986
+ var MarketoConnectorProfileProperties = [3, n0, _MCPP, 0, [_iU], [0]];
1987
+ var MarketoDestinationProperties = [
1988
+ 3,
1989
+ n0,
1990
+ _MDP,
1991
+ 0,
1992
+ [_o, _eHC],
1993
+ [0, () => ErrorHandlingConfig],
1994
+ ];
1995
+ var MarketoMetadata = [3, n0, _MM, 0, [], []];
1996
+ var MarketoSourceProperties = [3, n0, _MSP, 0, [_o], [0]];
1997
+ var MetadataCatalogConfig = [3, n0, _MCC, 0, [_gDC], [() => GlueDataCatalogConfig]];
1998
+ var MetadataCatalogDetail = [
1999
+ 3,
2000
+ n0,
2001
+ _MCD,
2002
+ 0,
2003
+ [_cTa, _tN, _tRO, _pRO],
2004
+ [0, 0, () => RegistrationOutput, () => RegistrationOutput],
2005
+ ];
2006
+ var OAuth2Credentials = [
2007
+ 3,
2008
+ n0,
2009
+ _OAC,
2010
+ 0,
2011
+ [_cI, _cS, _aTc, _rT, _oAR],
2012
+ [0, [() => ClientSecret, 0], [() => AccessToken, 0], 0, () => ConnectorOAuthRequest],
2013
+ ];
2014
+ var OAuth2CustomParameter = [
2015
+ 3,
2016
+ n0,
2017
+ _OACP,
2018
+ 0,
2019
+ [_k, _iR, _l, _d, _iSF, _cSV, _ty],
2020
+ [0, 2, 0, 0, 2, 64 | 0, 0],
2021
+ ];
2022
+ var OAuth2Defaults = [
2023
+ 3,
2024
+ n0,
2025
+ _OAD,
2026
+ 0,
2027
+ [_oS, _tU, _aCU, _oGTS, _oCP],
2028
+ [64 | 0, 64 | 0, 64 | 0, 64 | 0, () => OAuth2CustomPropertiesList],
2029
+ ];
2030
+ var OAuth2Properties = [3, n0, _OAP, 0, [_tUo, _oAGT, _tUCP], [0, 0, 128 | 0]];
2031
+ var OAuthCredentials = [
2032
+ 3,
2033
+ n0,
2034
+ _OACu,
2035
+ 0,
2036
+ [_cI, _cS, _aTc, _rT, _oAR],
2037
+ [0, [() => ClientSecret, 0], [() => AccessToken, 0], 0, () => ConnectorOAuthRequest],
2038
+ ];
2039
+ var OAuthProperties = [3, n0, _OAPu, 0, [_tUo, _aCUu, _oAS], [0, 0, 64 | 0]];
2040
+ var PardotConnectorProfileCredentials = [
2041
+ 3,
2042
+ n0,
2043
+ _PCPC,
2044
+ 0,
2045
+ [_aTc, _rT, _oAR, _cCA],
2046
+ [[() => AccessToken, 0], 0, () => ConnectorOAuthRequest, [() => ClientCredentialsArn, 0]],
2047
+ ];
2048
+ var PardotConnectorProfileProperties = [3, n0, _PCPP, 0, [_iU, _iSE, _bUI], [0, 2, 0]];
2049
+ var PardotMetadata = [3, n0, _PM, 0, [], []];
2050
+ var PardotSourceProperties = [3, n0, _PSP, 0, [_o], [0]];
2051
+ var PrefixConfig = [3, n0, _PC, 0, [_pT, _pF, _pPH], [0, 0, 64 | 0]];
2052
+ var PrivateConnectionProvisioningState = [3, n0, _PCPS, 0, [_st, _fM, _fC], [0, 0, 0]];
2053
+ var Range = [3, n0, _Ra, 0, [_ma, _mi], [1, 1]];
2054
+ var RedshiftConnectorProfileCredentials = [
2055
+ 3,
2056
+ n0,
2057
+ _RCPC,
2058
+ 0,
2059
+ [_u, _p],
2060
+ [0, [() => Password, 0]],
2061
+ ];
2062
+ var RedshiftConnectorProfileProperties = [
2063
+ 3,
2064
+ n0,
2065
+ _RCPP,
2066
+ 0,
2067
+ [_dU, _bN, _bP, _rAo, _dARA, _iRS, _cIl, _wN, _dNa],
2068
+ [0, 0, 0, 0, 0, 2, 0, 0, 0],
2069
+ ];
2070
+ var RedshiftDestinationProperties = [
2071
+ 3,
2072
+ n0,
2073
+ _RDP,
2074
+ 0,
2075
+ [_o, _iBN, _bP, _eHC],
2076
+ [0, 0, 0, () => ErrorHandlingConfig],
2077
+ ];
2078
+ var RedshiftMetadata = [3, n0, _RM, 0, [], []];
2079
+ var RegisterConnectorRequest = [
2080
+ 3,
2081
+ n0,
2082
+ _RCR,
2083
+ 0,
2084
+ [_cL, _d, _cPT, _cPC, _cTl],
2085
+ [0, 0, 0, () => ConnectorProvisioningConfig, [0, 4]],
2086
+ ];
2087
+ var RegisterConnectorResponse = [3, n0, _RCRe, 0, [_cA], [0]];
2088
+ var RegistrationOutput = [3, n0, _RO, 0, [_m, _r, _st], [0, 0, 0]];
2089
+ var ResetConnectorMetadataCacheRequest = [
2090
+ 3,
2091
+ n0,
2092
+ _RCMCR,
2093
+ 0,
2094
+ [_cPN, _cT, _cEN, _eP, _aV],
2095
+ [0, 0, 0, 0, 0],
2096
+ ];
2097
+ var ResetConnectorMetadataCacheResponse = [3, n0, _RCMCRe, 0, [], []];
2098
+ var ResourceNotFoundException = [
2099
+ -3,
2100
+ n0,
2101
+ _RNFE,
2102
+ {
2103
+ [_e]: _c,
2104
+ [_hE]: 404,
2105
+ },
2106
+ [_m],
2107
+ [0],
2108
+ ];
2109
+ schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException, ResourceNotFoundException$1);
2110
+ var S3DestinationProperties = [
2111
+ 3,
2112
+ n0,
2113
+ _SDP,
2114
+ 0,
2115
+ [_bN, _bP, _sOFC],
2116
+ [0, 0, () => S3OutputFormatConfig],
2117
+ ];
2118
+ var S3InputFormatConfig = [3, n0, _SIFC, 0, [_sIFT], [0]];
2119
+ var S3Metadata = [3, n0, _SM, 0, [], []];
2120
+ var S3OutputFormatConfig = [
2121
+ 3,
2122
+ n0,
2123
+ _SOFC,
2124
+ 0,
2125
+ [_fTi, _pC, _aCg, _pSDT],
2126
+ [0, () => PrefixConfig, () => AggregationConfig, 2],
2127
+ ];
2128
+ var S3SourceProperties = [
2129
+ 3,
2130
+ n0,
2131
+ _SSP,
2132
+ 0,
2133
+ [_bN, _bP, _sIFC],
2134
+ [0, 0, () => S3InputFormatConfig],
2135
+ ];
2136
+ var SalesforceConnectorProfileCredentials = [
2137
+ 3,
2138
+ n0,
2139
+ _SCPC,
2140
+ 0,
2141
+ [_aTc, _rT, _oAR, _cCA, _oAGT, _jT],
2142
+ [[() => AccessToken, 0], 0, () => ConnectorOAuthRequest, [() => ClientCredentialsArn, 0], 0, [() => JwtToken, 0]],
2143
+ ];
2144
+ var SalesforceConnectorProfileProperties = [
2145
+ 3,
2146
+ n0,
2147
+ _SCPP,
2148
+ 0,
2149
+ [_iU, _iSE, _uPLFMAA],
2150
+ [0, 2, 2],
2151
+ ];
2152
+ var SalesforceDestinationProperties = [
2153
+ 3,
2154
+ n0,
2155
+ _SDPa,
2156
+ 0,
2157
+ [_o, _iFN, _eHC, _wOT, _dTA],
2158
+ [0, 64 | 0, () => ErrorHandlingConfig, 0, 0],
2159
+ ];
2160
+ var SalesforceMetadata = [3, n0, _SMa, 0, [_oAS, _dTAa, _oGTS], [64 | 0, 64 | 0, 64 | 0]];
2161
+ var SalesforceSourceProperties = [3, n0, _SSPa, 0, [_o, _eDFU, _iDR, _dTA], [0, 2, 2, 0]];
2162
+ var SAPODataConnectorProfileCredentials = [
2163
+ 3,
2164
+ n0,
2165
+ _SAPODCPC,
2166
+ 0,
2167
+ [_bAC, _oAC],
2168
+ [
2169
+ [() => BasicAuthCredentials, 0],
2170
+ [() => OAuthCredentials, 0],
2171
+ ],
2172
+ ];
2173
+ var SAPODataConnectorProfileProperties = [
2174
+ 3,
2175
+ n0,
2176
+ _SAPODCPP,
2177
+ 0,
2178
+ [_aHU, _aSP, _pN, _cNl, _lL, _pLSN, _oAPu, _dSSO],
2179
+ [0, 0, 1, 0, 0, 0, () => OAuthProperties, 2],
2180
+ ];
2181
+ var SAPODataDestinationProperties = [
2182
+ 3,
2183
+ n0,
2184
+ _SAPODDP,
2185
+ 0,
2186
+ [_oP, _sRHC, _iFN, _eHC, _wOT],
2187
+ [0, () => SuccessResponseHandlingConfig, 64 | 0, () => ErrorHandlingConfig, 0],
2188
+ ];
2189
+ var SAPODataMetadata = [3, n0, _SAPODM, 0, [], []];
2190
+ var SAPODataPaginationConfig = [3, n0, _SAPODPC, 0, [_mPS], [1]];
2191
+ var SAPODataParallelismConfig = [3, n0, _SAPODPCa, 0, [_mP], [1]];
2192
+ var SAPODataSourceProperties = [
2193
+ 3,
2194
+ n0,
2195
+ _SAPODSP,
2196
+ 0,
2197
+ [_oP, _pCa, _pCag],
2198
+ [0, () => SAPODataParallelismConfig, () => SAPODataPaginationConfig],
2199
+ ];
2200
+ var ScheduledTriggerProperties = [
2201
+ 3,
2202
+ n0,
2203
+ _STP,
2204
+ 0,
2205
+ [_sE, _dPM, _sST, _sET, _ti, _sOc, _fEF, _fEDT],
2206
+ [0, 0, 4, 4, 0, 1, 4, 1],
2207
+ ];
2208
+ var ServiceNowConnectorProfileCredentials = [
2209
+ 3,
2210
+ n0,
2211
+ _SNCPC,
2212
+ 0,
2213
+ [_u, _p, _oACu],
2214
+ [0, [() => Password, 0], [() => OAuth2Credentials, 0]],
2215
+ ];
2216
+ var ServiceNowConnectorProfileProperties = [3, n0, _SNCPP, 0, [_iU], [0]];
2217
+ var ServiceNowMetadata = [3, n0, _SNM, 0, [], []];
2218
+ var ServiceNowSourceProperties = [3, n0, _SNSP, 0, [_o], [0]];
2219
+ var ServiceQuotaExceededException = [
2220
+ -3,
2221
+ n0,
2222
+ _SQEE,
2223
+ {
2224
+ [_e]: _c,
2225
+ [_hE]: 402,
2226
+ },
2227
+ [_m],
2228
+ [0],
2229
+ ];
2230
+ schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException, ServiceQuotaExceededException$1);
2231
+ var SingularConnectorProfileCredentials = [3, n0, _SCPCi, 0, [_aK], [[() => ApiKey, 0]]];
2232
+ var SingularConnectorProfileProperties = [3, n0, _SCPPi, 0, [], []];
2233
+ var SingularMetadata = [3, n0, _SMi, 0, [], []];
2234
+ var SingularSourceProperties = [3, n0, _SSPi, 0, [_o], [0]];
2235
+ var SlackConnectorProfileCredentials = [
2236
+ 3,
2237
+ n0,
2238
+ _SCPCl,
2239
+ 0,
2240
+ [_cI, _cS, _aTc, _oAR],
2241
+ [0, [() => ClientSecret, 0], [() => AccessToken, 0], () => ConnectorOAuthRequest],
2242
+ ];
2243
+ var SlackConnectorProfileProperties = [3, n0, _SCPPl, 0, [_iU], [0]];
2244
+ var SlackMetadata = [3, n0, _SMl, 0, [_oAS], [64 | 0]];
2245
+ var SlackSourceProperties = [3, n0, _SSPl, 0, [_o], [0]];
2246
+ var SnowflakeConnectorProfileCredentials = [
2247
+ 3,
2248
+ n0,
2249
+ _SCPCn,
2250
+ 0,
2251
+ [_u, _p],
2252
+ [0, [() => Password, 0]],
2253
+ ];
2254
+ var SnowflakeConnectorProfileProperties = [
2255
+ 3,
2256
+ n0,
2257
+ _SCPPn,
2258
+ 0,
2259
+ [_w, _sta, _bN, _bP, _pLSN, _aN, _re],
2260
+ [0, 0, 0, 0, 0, 0, 0],
2261
+ ];
2262
+ var SnowflakeDestinationProperties = [
2263
+ 3,
2264
+ n0,
2265
+ _SDPn,
2266
+ 0,
2267
+ [_o, _iBN, _bP, _eHC],
2268
+ [0, 0, 0, () => ErrorHandlingConfig],
2269
+ ];
2270
+ var SnowflakeMetadata = [3, n0, _SMn, 0, [_sR], [64 | 0]];
2271
+ var SourceConnectorProperties = [
2272
+ 3,
2273
+ n0,
2274
+ _SCP,
2275
+ 0,
2276
+ [_A, _D, _Dy, _GA, _IN, _M, _S, _Sa, _SN, _Si, _Sl, _T, _V, _Z, _SAPOD, _CCu, _Pa],
2277
+ [
2278
+ () => AmplitudeSourceProperties,
2279
+ () => DatadogSourceProperties,
2280
+ () => DynatraceSourceProperties,
2281
+ () => GoogleAnalyticsSourceProperties,
2282
+ () => InforNexusSourceProperties,
2283
+ () => MarketoSourceProperties,
2284
+ () => S3SourceProperties,
2285
+ () => SalesforceSourceProperties,
2286
+ () => ServiceNowSourceProperties,
2287
+ () => SingularSourceProperties,
2288
+ () => SlackSourceProperties,
2289
+ () => TrendmicroSourceProperties,
2290
+ () => VeevaSourceProperties,
2291
+ () => ZendeskSourceProperties,
2292
+ () => SAPODataSourceProperties,
2293
+ () => CustomConnectorSourceProperties,
2294
+ () => PardotSourceProperties,
2295
+ ],
2296
+ ];
2297
+ var SourceFieldProperties = [3, n0, _SFP, 0, [_iRs, _iQ, _iTFFIQ], [2, 2, 2]];
2298
+ var SourceFlowConfig = [
2299
+ 3,
2300
+ n0,
2301
+ _SFC,
2302
+ 0,
2303
+ [_cT, _aV, _cPN, _sCP, _iPC],
2304
+ [0, 0, 0, () => SourceConnectorProperties, () => IncrementalPullConfig],
2305
+ ];
2306
+ var StartFlowRequest = [3, n0, _SFR, 0, [_fN, _cTl], [0, [0, 4]]];
2307
+ var StartFlowResponse = [3, n0, _SFRt, 0, [_fA, _fS, _eIx], [0, 0, 0]];
2308
+ var StopFlowRequest = [3, n0, _SFRto, 0, [_fN], [0]];
2309
+ var StopFlowResponse = [3, n0, _SFRtop, 0, [_fA, _fS], [0, 0]];
2310
+ var SuccessResponseHandlingConfig = [3, n0, _SRHC, 0, [_bP, _bN], [0, 0]];
2311
+ var SupportedFieldTypeDetails = [3, n0, _SFTD, 0, [_v], [() => FieldTypeDetails]];
2312
+ var TagResourceRequest = [3, n0, _TRR, 0, [_rAe, _ta], [[0, 1], 128 | 0]];
2313
+ var TagResourceResponse = [3, n0, _TRRa, 0, [], []];
2314
+ var Task = [
2315
+ 3,
2316
+ n0,
2317
+ _Ta,
2318
+ 0,
2319
+ [_sF, _cOo, _dF, _tTa, _tPa],
2320
+ [64 | 0, () => ConnectorOperator, 0, 0, 128 | 0],
2321
+ ];
2322
+ var ThrottlingException = [
2323
+ -3,
2324
+ n0,
2325
+ _TE,
2326
+ {
2327
+ [_e]: _c,
2328
+ [_hE]: 429,
2329
+ },
2330
+ [_m],
2331
+ [0],
2332
+ ];
2333
+ schema.TypeRegistry.for(n0).registerError(ThrottlingException, ThrottlingException$1);
2334
+ var TrendmicroConnectorProfileCredentials = [
2335
+ 3,
2336
+ n0,
2337
+ _TCPC,
2338
+ 0,
2339
+ [_aSK],
2340
+ [[() => ApiSecretKey, 0]],
2341
+ ];
2342
+ var TrendmicroConnectorProfileProperties = [3, n0, _TCPP, 0, [], []];
2343
+ var TrendmicroMetadata = [3, n0, _TM, 0, [], []];
2344
+ var TrendmicroSourceProperties = [3, n0, _TSP, 0, [_o], [0]];
2345
+ var TriggerConfig = [3, n0, _TC, 0, [_tT, _tPr], [0, () => TriggerProperties]];
2346
+ var TriggerProperties = [3, n0, _TP, 0, [_Sc], [() => ScheduledTriggerProperties]];
2347
+ var UnregisterConnectorRequest = [3, n0, _UCR, 0, [_cL, _fD], [0, 2]];
2348
+ var UnregisterConnectorResponse = [3, n0, _UCRn, 0, [], []];
2349
+ var UnsupportedOperationException = [
2350
+ -3,
2351
+ n0,
2352
+ _UOE,
2353
+ {
2354
+ [_e]: _c,
2355
+ [_hE]: 400,
2356
+ },
2357
+ [_m],
2358
+ [0],
2359
+ ];
2360
+ schema.TypeRegistry.for(n0).registerError(UnsupportedOperationException, UnsupportedOperationException$1);
2361
+ var UntagResourceRequest = [
2362
+ 3,
2363
+ n0,
2364
+ _URR,
2365
+ 0,
2366
+ [_rAe, _tK],
2367
+ [
2368
+ [0, 1],
2369
+ [
2370
+ 64 | 0,
2371
+ {
2372
+ [_hQ]: _tK,
2373
+ },
2374
+ ],
2375
+ ],
2376
+ ];
2377
+ var UntagResourceResponse = [3, n0, _URRn, 0, [], []];
2378
+ var UpdateConnectorProfileRequest = [
2379
+ 3,
2380
+ n0,
2381
+ _UCPR,
2382
+ 0,
2383
+ [_cPN, _cMon, _cPCon, _cTl],
2384
+ [0, 0, [() => ConnectorProfileConfig, 0], [0, 4]],
2385
+ ];
2386
+ var UpdateConnectorProfileResponse = [3, n0, _UCPRp, 0, [_cPA], [0]];
2387
+ var UpdateConnectorRegistrationRequest = [
2388
+ 3,
2389
+ n0,
2390
+ _UCRR,
2391
+ 0,
2392
+ [_cL, _d, _cPC, _cTl],
2393
+ [0, 0, () => ConnectorProvisioningConfig, [0, 4]],
2394
+ ];
2395
+ var UpdateConnectorRegistrationResponse = [3, n0, _UCRRp, 0, [_cA], [0]];
2396
+ var UpdateFlowRequest = [
2397
+ 3,
2398
+ n0,
2399
+ _UFR,
2400
+ 0,
2401
+ [_fN, _d, _tC, _sFC, _dFCL, _t, _mCC, _cTl],
2402
+ [
2403
+ 0,
2404
+ 0,
2405
+ () => TriggerConfig,
2406
+ () => SourceFlowConfig,
2407
+ () => DestinationFlowConfigList,
2408
+ () => Tasks,
2409
+ () => MetadataCatalogConfig,
2410
+ [0, 4],
2411
+ ],
2412
+ ];
2413
+ var UpdateFlowResponse = [3, n0, _UFRp, 0, [_fS], [0]];
2414
+ var UpsolverDestinationProperties = [
2415
+ 3,
2416
+ n0,
2417
+ _UDP,
2418
+ 0,
2419
+ [_bN, _bP, _sOFC],
2420
+ [0, 0, () => UpsolverS3OutputFormatConfig],
2421
+ ];
2422
+ var UpsolverMetadata = [3, n0, _UM, 0, [], []];
2423
+ var UpsolverS3OutputFormatConfig = [
2424
+ 3,
2425
+ n0,
2426
+ _USOFC,
2427
+ 0,
2428
+ [_fTi, _pC, _aCg],
2429
+ [0, () => PrefixConfig, () => AggregationConfig],
2430
+ ];
2431
+ var ValidationException = [
2432
+ -3,
2433
+ n0,
2434
+ _VE,
2435
+ {
2436
+ [_e]: _c,
2437
+ [_hE]: 400,
2438
+ },
2439
+ [_m],
2440
+ [0],
2441
+ ];
2442
+ schema.TypeRegistry.for(n0).registerError(ValidationException, ValidationException$1);
2443
+ var VeevaConnectorProfileCredentials = [
2444
+ 3,
2445
+ n0,
2446
+ _VCPC,
2447
+ 0,
2448
+ [_u, _p],
2449
+ [0, [() => Password, 0]],
2450
+ ];
2451
+ var VeevaConnectorProfileProperties = [3, n0, _VCPP, 0, [_iU], [0]];
2452
+ var VeevaMetadata = [3, n0, _VM, 0, [], []];
2453
+ var VeevaSourceProperties = [
2454
+ 3,
2455
+ n0,
2456
+ _VSP,
2457
+ 0,
2458
+ [_o, _dTo, _iSFn, _iRn, _iAV],
2459
+ [0, 0, 2, 2, 2],
2460
+ ];
2461
+ var ZendeskConnectorProfileCredentials = [
2462
+ 3,
2463
+ n0,
2464
+ _ZCPC,
2465
+ 0,
2466
+ [_cI, _cS, _aTc, _oAR],
2467
+ [0, [() => ClientSecret, 0], [() => AccessToken, 0], () => ConnectorOAuthRequest],
2468
+ ];
2469
+ var ZendeskConnectorProfileProperties = [3, n0, _ZCPP, 0, [_iU], [0]];
2470
+ var ZendeskDestinationProperties = [
2471
+ 3,
2472
+ n0,
2473
+ _ZDP,
2474
+ 0,
2475
+ [_o, _iFN, _eHC, _wOT],
2476
+ [0, 64 | 0, () => ErrorHandlingConfig, 0],
2477
+ ];
2478
+ var ZendeskMetadata = [3, n0, _ZM, 0, [_oAS], [64 | 0]];
2479
+ var ZendeskSourceProperties = [3, n0, _ZSP, 0, [_o], [0]];
2480
+ var AppflowServiceException = [-3, _sm, "AppflowServiceException", 0, [], []];
2481
+ schema.TypeRegistry.for(_sm).registerError(AppflowServiceException, AppflowServiceException$1);
2482
+ var AuthParameterList = [1, n0, _APL, 0, () => AuthParameter];
2483
+ var ConnectorEntityFieldList = [1, n0, _CEFL, 0, () => ConnectorEntityField];
2484
+ var ConnectorEntityList = [1, n0, _CEL, 0, () => ConnectorEntity];
2485
+ var ConnectorList = [1, n0, _CL, 0, () => ConnectorDetail];
2486
+ var ConnectorProfileDetailList = [1, n0, _CPDL, 0, () => ConnectorProfile];
2487
+ var ConnectorRuntimeSettingList = [1, n0, _CRSL, 0, () => ConnectorRuntimeSetting];
2488
+ var CustomAuthConfigList = [1, n0, _CACL, 0, () => CustomAuthConfig];
2489
+ var DestinationFlowConfigList = [1, n0, _DFCL, 0, () => DestinationFlowConfig];
2490
+ var FlowExecutionList = [1, n0, _FEL, 0, () => ExecutionRecord];
2491
+ var FlowList = [1, n0, _FL, 0, () => FlowDefinition];
2492
+ var MetadataCatalogDetails = [1, n0, _MCDe, 0, () => MetadataCatalogDetail];
2493
+ var OAuth2CustomPropertiesList = [1, n0, _OACPL, 0, () => OAuth2CustomParameter];
2494
+ var SupportedDataTransferApis = [1, n0, _SDTA, 0, () => DataTransferApi];
2495
+ var Tasks = [1, n0, _Tas, 0, () => Task];
2496
+ var ConnectorConfigurationsMap = [2, n0, _CCM, 0, 0, () => ConnectorConfiguration];
2497
+ var ConnectorEntityMap = [2, n0, _CEM, 0, 0, () => ConnectorEntityList];
2498
+ var CredentialsMap = [
2499
+ 2,
2500
+ n0,
2501
+ _CMr,
2502
+ 0,
2503
+ [() => CredentialsMapKey, 0],
2504
+ [() => CredentialsMapValue, 0],
2505
+ ];
2506
+ var CancelFlowExecutions = [
2507
+ 9,
2508
+ n0,
2509
+ _CFE,
2510
+ {
2511
+ [_h]: ["POST", "/cancel-flow-executions", 200],
2512
+ },
2513
+ () => CancelFlowExecutionsRequest,
2514
+ () => CancelFlowExecutionsResponse,
2515
+ ];
2516
+ var CreateConnectorProfile = [
2517
+ 9,
2518
+ n0,
2519
+ _CCP,
2520
+ {
2521
+ [_h]: ["POST", "/create-connector-profile", 200],
2522
+ },
2523
+ () => CreateConnectorProfileRequest,
2524
+ () => CreateConnectorProfileResponse,
2525
+ ];
2526
+ var CreateFlow = [
2527
+ 9,
2528
+ n0,
2529
+ _CF,
2530
+ {
2531
+ [_h]: ["POST", "/create-flow", 200],
2532
+ },
2533
+ () => CreateFlowRequest,
2534
+ () => CreateFlowResponse,
2535
+ ];
2536
+ var DeleteConnectorProfile = [
2537
+ 9,
2538
+ n0,
2539
+ _DCPe,
2540
+ {
2541
+ [_h]: ["POST", "/delete-connector-profile", 200],
2542
+ },
2543
+ () => DeleteConnectorProfileRequest,
2544
+ () => DeleteConnectorProfileResponse,
2545
+ ];
2546
+ var DeleteFlow = [
2547
+ 9,
2548
+ n0,
2549
+ _DF,
2550
+ {
2551
+ [_h]: ["POST", "/delete-flow", 200],
2552
+ },
2553
+ () => DeleteFlowRequest,
2554
+ () => DeleteFlowResponse,
2555
+ ];
2556
+ var DescribeConnector = [
2557
+ 9,
2558
+ n0,
2559
+ _DC,
2560
+ {
2561
+ [_h]: ["POST", "/describe-connector", 200],
2562
+ },
2563
+ () => DescribeConnectorRequest,
2564
+ () => DescribeConnectorResponse,
2565
+ ];
2566
+ var DescribeConnectorEntity = [
2567
+ 9,
2568
+ n0,
2569
+ _DCE,
2570
+ {
2571
+ [_h]: ["POST", "/describe-connector-entity", 200],
2572
+ },
2573
+ () => DescribeConnectorEntityRequest,
2574
+ () => DescribeConnectorEntityResponse,
2575
+ ];
2576
+ var DescribeConnectorProfiles = [
2577
+ 9,
2578
+ n0,
2579
+ _DCPes,
2580
+ {
2581
+ [_h]: ["POST", "/describe-connector-profiles", 200],
2582
+ },
2583
+ () => DescribeConnectorProfilesRequest,
2584
+ () => DescribeConnectorProfilesResponse,
2585
+ ];
2586
+ var DescribeConnectors = [
2587
+ 9,
2588
+ n0,
2589
+ _DCe,
2590
+ {
2591
+ [_h]: ["POST", "/describe-connectors", 200],
2592
+ },
2593
+ () => DescribeConnectorsRequest,
2594
+ () => DescribeConnectorsResponse,
2595
+ ];
2596
+ var DescribeFlow = [
2597
+ 9,
2598
+ n0,
2599
+ _DFe,
2600
+ {
2601
+ [_h]: ["POST", "/describe-flow", 200],
2602
+ },
2603
+ () => DescribeFlowRequest,
2604
+ () => DescribeFlowResponse,
2605
+ ];
2606
+ var DescribeFlowExecutionRecords = [
2607
+ 9,
2608
+ n0,
2609
+ _DFER,
2610
+ {
2611
+ [_h]: ["POST", "/describe-flow-execution-records", 200],
2612
+ },
2613
+ () => DescribeFlowExecutionRecordsRequest,
2614
+ () => DescribeFlowExecutionRecordsResponse,
2615
+ ];
2616
+ var ListConnectorEntities = [
2617
+ 9,
2618
+ n0,
2619
+ _LCE,
2620
+ {
2621
+ [_h]: ["POST", "/list-connector-entities", 200],
2622
+ },
2623
+ () => ListConnectorEntitiesRequest,
2624
+ () => ListConnectorEntitiesResponse,
2625
+ ];
2626
+ var ListConnectors = [
2627
+ 9,
2628
+ n0,
2629
+ _LC,
2630
+ {
2631
+ [_h]: ["POST", "/list-connectors", 200],
2632
+ },
2633
+ () => ListConnectorsRequest,
2634
+ () => ListConnectorsResponse,
2635
+ ];
2636
+ var ListFlows = [
2637
+ 9,
2638
+ n0,
2639
+ _LF,
2640
+ {
2641
+ [_h]: ["POST", "/list-flows", 200],
2642
+ },
2643
+ () => ListFlowsRequest,
2644
+ () => ListFlowsResponse,
2645
+ ];
2646
+ var ListTagsForResource = [
2647
+ 9,
2648
+ n0,
2649
+ _LTFR,
2650
+ {
2651
+ [_h]: ["GET", "/tags/{resourceArn}", 200],
2652
+ },
2653
+ () => ListTagsForResourceRequest,
2654
+ () => ListTagsForResourceResponse,
2655
+ ];
2656
+ var RegisterConnector = [
2657
+ 9,
2658
+ n0,
2659
+ _RC,
2660
+ {
2661
+ [_h]: ["POST", "/register-connector", 200],
2662
+ },
2663
+ () => RegisterConnectorRequest,
2664
+ () => RegisterConnectorResponse,
2665
+ ];
2666
+ var ResetConnectorMetadataCache = [
2667
+ 9,
2668
+ n0,
2669
+ _RCMC,
2670
+ {
2671
+ [_h]: ["POST", "/reset-connector-metadata-cache", 200],
2672
+ },
2673
+ () => ResetConnectorMetadataCacheRequest,
2674
+ () => ResetConnectorMetadataCacheResponse,
2675
+ ];
2676
+ var StartFlow = [
2677
+ 9,
2678
+ n0,
2679
+ _SF,
2680
+ {
2681
+ [_h]: ["POST", "/start-flow", 200],
2682
+ },
2683
+ () => StartFlowRequest,
2684
+ () => StartFlowResponse,
2685
+ ];
2686
+ var StopFlow = [
2687
+ 9,
2688
+ n0,
2689
+ _SFt,
2690
+ {
2691
+ [_h]: ["POST", "/stop-flow", 200],
2692
+ },
2693
+ () => StopFlowRequest,
2694
+ () => StopFlowResponse,
2695
+ ];
2696
+ var TagResource = [
2697
+ 9,
2698
+ n0,
2699
+ _TR,
2700
+ {
2701
+ [_h]: ["POST", "/tags/{resourceArn}", 200],
2702
+ },
2703
+ () => TagResourceRequest,
2704
+ () => TagResourceResponse,
2705
+ ];
2706
+ var UnregisterConnector = [
2707
+ 9,
2708
+ n0,
2709
+ _UC,
2710
+ {
2711
+ [_h]: ["POST", "/unregister-connector", 200],
2712
+ },
2713
+ () => UnregisterConnectorRequest,
2714
+ () => UnregisterConnectorResponse,
2715
+ ];
2716
+ var UntagResource = [
2717
+ 9,
2718
+ n0,
2719
+ _UR,
2720
+ {
2721
+ [_h]: ["DELETE", "/tags/{resourceArn}", 200],
2722
+ },
2723
+ () => UntagResourceRequest,
2724
+ () => UntagResourceResponse,
2725
+ ];
2726
+ var UpdateConnectorProfile = [
2727
+ 9,
2728
+ n0,
2729
+ _UCP,
2730
+ {
2731
+ [_h]: ["POST", "/update-connector-profile", 200],
2732
+ },
2733
+ () => UpdateConnectorProfileRequest,
2734
+ () => UpdateConnectorProfileResponse,
2735
+ ];
2736
+ var UpdateConnectorRegistration = [
2737
+ 9,
2738
+ n0,
2739
+ _UCRp,
2740
+ {
2741
+ [_h]: ["POST", "/update-connector-registration", 200],
2742
+ },
2743
+ () => UpdateConnectorRegistrationRequest,
2744
+ () => UpdateConnectorRegistrationResponse,
2745
+ ];
2746
+ var UpdateFlow = [
2747
+ 9,
2748
+ n0,
2749
+ _UF,
2750
+ {
2751
+ [_h]: ["POST", "/update-flow", 200],
2752
+ },
2753
+ () => UpdateFlowRequest,
2754
+ () => UpdateFlowResponse,
2755
+ ];
2037
2756
 
2038
2757
  class CancelFlowExecutionsCommand extends smithyClient.Command
2039
2758
  .classBuilder()
2040
2759
  .ep(commonParams)
2041
2760
  .m(function (Command, cs, config, o) {
2042
- return [
2043
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2044
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2045
- ];
2761
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2046
2762
  })
2047
2763
  .s("SandstoneConfigurationServiceLambda", "CancelFlowExecutions", {})
2048
2764
  .n("AppflowClient", "CancelFlowExecutionsCommand")
2049
- .f(void 0, void 0)
2050
- .ser(se_CancelFlowExecutionsCommand)
2051
- .de(de_CancelFlowExecutionsCommand)
2765
+ .sc(CancelFlowExecutions)
2052
2766
  .build() {
2053
2767
  }
2054
2768
 
@@ -2056,16 +2770,11 @@ class CreateConnectorProfileCommand extends smithyClient.Command
2056
2770
  .classBuilder()
2057
2771
  .ep(commonParams)
2058
2772
  .m(function (Command, cs, config, o) {
2059
- return [
2060
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2061
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2062
- ];
2773
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2063
2774
  })
2064
2775
  .s("SandstoneConfigurationServiceLambda", "CreateConnectorProfile", {})
2065
2776
  .n("AppflowClient", "CreateConnectorProfileCommand")
2066
- .f(CreateConnectorProfileRequestFilterSensitiveLog, void 0)
2067
- .ser(se_CreateConnectorProfileCommand)
2068
- .de(de_CreateConnectorProfileCommand)
2777
+ .sc(CreateConnectorProfile)
2069
2778
  .build() {
2070
2779
  }
2071
2780
 
@@ -2073,16 +2782,11 @@ class CreateFlowCommand extends smithyClient.Command
2073
2782
  .classBuilder()
2074
2783
  .ep(commonParams)
2075
2784
  .m(function (Command, cs, config, o) {
2076
- return [
2077
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2078
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2079
- ];
2785
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2080
2786
  })
2081
2787
  .s("SandstoneConfigurationServiceLambda", "CreateFlow", {})
2082
2788
  .n("AppflowClient", "CreateFlowCommand")
2083
- .f(void 0, void 0)
2084
- .ser(se_CreateFlowCommand)
2085
- .de(de_CreateFlowCommand)
2789
+ .sc(CreateFlow)
2086
2790
  .build() {
2087
2791
  }
2088
2792
 
@@ -2090,16 +2794,11 @@ class DeleteConnectorProfileCommand extends smithyClient.Command
2090
2794
  .classBuilder()
2091
2795
  .ep(commonParams)
2092
2796
  .m(function (Command, cs, config, o) {
2093
- return [
2094
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2095
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2096
- ];
2797
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2097
2798
  })
2098
2799
  .s("SandstoneConfigurationServiceLambda", "DeleteConnectorProfile", {})
2099
2800
  .n("AppflowClient", "DeleteConnectorProfileCommand")
2100
- .f(void 0, void 0)
2101
- .ser(se_DeleteConnectorProfileCommand)
2102
- .de(de_DeleteConnectorProfileCommand)
2801
+ .sc(DeleteConnectorProfile)
2103
2802
  .build() {
2104
2803
  }
2105
2804
 
@@ -2107,16 +2806,11 @@ class DeleteFlowCommand extends smithyClient.Command
2107
2806
  .classBuilder()
2108
2807
  .ep(commonParams)
2109
2808
  .m(function (Command, cs, config, o) {
2110
- return [
2111
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2112
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2113
- ];
2809
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2114
2810
  })
2115
2811
  .s("SandstoneConfigurationServiceLambda", "DeleteFlow", {})
2116
2812
  .n("AppflowClient", "DeleteFlowCommand")
2117
- .f(void 0, void 0)
2118
- .ser(se_DeleteFlowCommand)
2119
- .de(de_DeleteFlowCommand)
2813
+ .sc(DeleteFlow)
2120
2814
  .build() {
2121
2815
  }
2122
2816
 
@@ -2124,16 +2818,11 @@ class DescribeConnectorCommand extends smithyClient.Command
2124
2818
  .classBuilder()
2125
2819
  .ep(commonParams)
2126
2820
  .m(function (Command, cs, config, o) {
2127
- return [
2128
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2129
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2130
- ];
2821
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2131
2822
  })
2132
2823
  .s("SandstoneConfigurationServiceLambda", "DescribeConnector", {})
2133
2824
  .n("AppflowClient", "DescribeConnectorCommand")
2134
- .f(void 0, void 0)
2135
- .ser(se_DescribeConnectorCommand)
2136
- .de(de_DescribeConnectorCommand)
2825
+ .sc(DescribeConnector)
2137
2826
  .build() {
2138
2827
  }
2139
2828
 
@@ -2141,16 +2830,11 @@ class DescribeConnectorEntityCommand extends smithyClient.Command
2141
2830
  .classBuilder()
2142
2831
  .ep(commonParams)
2143
2832
  .m(function (Command, cs, config, o) {
2144
- return [
2145
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2146
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2147
- ];
2833
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2148
2834
  })
2149
2835
  .s("SandstoneConfigurationServiceLambda", "DescribeConnectorEntity", {})
2150
2836
  .n("AppflowClient", "DescribeConnectorEntityCommand")
2151
- .f(void 0, void 0)
2152
- .ser(se_DescribeConnectorEntityCommand)
2153
- .de(de_DescribeConnectorEntityCommand)
2837
+ .sc(DescribeConnectorEntity)
2154
2838
  .build() {
2155
2839
  }
2156
2840
 
@@ -2158,16 +2842,11 @@ class DescribeConnectorProfilesCommand extends smithyClient.Command
2158
2842
  .classBuilder()
2159
2843
  .ep(commonParams)
2160
2844
  .m(function (Command, cs, config, o) {
2161
- return [
2162
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2163
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2164
- ];
2845
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2165
2846
  })
2166
2847
  .s("SandstoneConfigurationServiceLambda", "DescribeConnectorProfiles", {})
2167
2848
  .n("AppflowClient", "DescribeConnectorProfilesCommand")
2168
- .f(void 0, void 0)
2169
- .ser(se_DescribeConnectorProfilesCommand)
2170
- .de(de_DescribeConnectorProfilesCommand)
2849
+ .sc(DescribeConnectorProfiles)
2171
2850
  .build() {
2172
2851
  }
2173
2852
 
@@ -2175,16 +2854,11 @@ class DescribeConnectorsCommand extends smithyClient.Command
2175
2854
  .classBuilder()
2176
2855
  .ep(commonParams)
2177
2856
  .m(function (Command, cs, config, o) {
2178
- return [
2179
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2180
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2181
- ];
2857
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2182
2858
  })
2183
2859
  .s("SandstoneConfigurationServiceLambda", "DescribeConnectors", {})
2184
2860
  .n("AppflowClient", "DescribeConnectorsCommand")
2185
- .f(void 0, void 0)
2186
- .ser(se_DescribeConnectorsCommand)
2187
- .de(de_DescribeConnectorsCommand)
2861
+ .sc(DescribeConnectors)
2188
2862
  .build() {
2189
2863
  }
2190
2864
 
@@ -2192,16 +2866,11 @@ class DescribeFlowCommand extends smithyClient.Command
2192
2866
  .classBuilder()
2193
2867
  .ep(commonParams)
2194
2868
  .m(function (Command, cs, config, o) {
2195
- return [
2196
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2197
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2198
- ];
2869
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2199
2870
  })
2200
2871
  .s("SandstoneConfigurationServiceLambda", "DescribeFlow", {})
2201
2872
  .n("AppflowClient", "DescribeFlowCommand")
2202
- .f(void 0, void 0)
2203
- .ser(se_DescribeFlowCommand)
2204
- .de(de_DescribeFlowCommand)
2873
+ .sc(DescribeFlow)
2205
2874
  .build() {
2206
2875
  }
2207
2876
 
@@ -2209,16 +2878,11 @@ class DescribeFlowExecutionRecordsCommand extends smithyClient.Command
2209
2878
  .classBuilder()
2210
2879
  .ep(commonParams)
2211
2880
  .m(function (Command, cs, config, o) {
2212
- return [
2213
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2214
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2215
- ];
2881
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2216
2882
  })
2217
2883
  .s("SandstoneConfigurationServiceLambda", "DescribeFlowExecutionRecords", {})
2218
2884
  .n("AppflowClient", "DescribeFlowExecutionRecordsCommand")
2219
- .f(void 0, void 0)
2220
- .ser(se_DescribeFlowExecutionRecordsCommand)
2221
- .de(de_DescribeFlowExecutionRecordsCommand)
2885
+ .sc(DescribeFlowExecutionRecords)
2222
2886
  .build() {
2223
2887
  }
2224
2888
 
@@ -2226,16 +2890,11 @@ class ListConnectorEntitiesCommand extends smithyClient.Command
2226
2890
  .classBuilder()
2227
2891
  .ep(commonParams)
2228
2892
  .m(function (Command, cs, config, o) {
2229
- return [
2230
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2231
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2232
- ];
2893
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2233
2894
  })
2234
2895
  .s("SandstoneConfigurationServiceLambda", "ListConnectorEntities", {})
2235
2896
  .n("AppflowClient", "ListConnectorEntitiesCommand")
2236
- .f(void 0, void 0)
2237
- .ser(se_ListConnectorEntitiesCommand)
2238
- .de(de_ListConnectorEntitiesCommand)
2897
+ .sc(ListConnectorEntities)
2239
2898
  .build() {
2240
2899
  }
2241
2900
 
@@ -2243,16 +2902,11 @@ class ListConnectorsCommand extends smithyClient.Command
2243
2902
  .classBuilder()
2244
2903
  .ep(commonParams)
2245
2904
  .m(function (Command, cs, config, o) {
2246
- return [
2247
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2248
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2249
- ];
2905
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2250
2906
  })
2251
2907
  .s("SandstoneConfigurationServiceLambda", "ListConnectors", {})
2252
2908
  .n("AppflowClient", "ListConnectorsCommand")
2253
- .f(void 0, void 0)
2254
- .ser(se_ListConnectorsCommand)
2255
- .de(de_ListConnectorsCommand)
2909
+ .sc(ListConnectors)
2256
2910
  .build() {
2257
2911
  }
2258
2912
 
@@ -2260,16 +2914,11 @@ class ListFlowsCommand extends smithyClient.Command
2260
2914
  .classBuilder()
2261
2915
  .ep(commonParams)
2262
2916
  .m(function (Command, cs, config, o) {
2263
- return [
2264
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2265
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2266
- ];
2917
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2267
2918
  })
2268
2919
  .s("SandstoneConfigurationServiceLambda", "ListFlows", {})
2269
2920
  .n("AppflowClient", "ListFlowsCommand")
2270
- .f(void 0, void 0)
2271
- .ser(se_ListFlowsCommand)
2272
- .de(de_ListFlowsCommand)
2921
+ .sc(ListFlows)
2273
2922
  .build() {
2274
2923
  }
2275
2924
 
@@ -2277,16 +2926,11 @@ class ListTagsForResourceCommand extends smithyClient.Command
2277
2926
  .classBuilder()
2278
2927
  .ep(commonParams)
2279
2928
  .m(function (Command, cs, config, o) {
2280
- return [
2281
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2282
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2283
- ];
2929
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2284
2930
  })
2285
2931
  .s("SandstoneConfigurationServiceLambda", "ListTagsForResource", {})
2286
2932
  .n("AppflowClient", "ListTagsForResourceCommand")
2287
- .f(void 0, void 0)
2288
- .ser(se_ListTagsForResourceCommand)
2289
- .de(de_ListTagsForResourceCommand)
2933
+ .sc(ListTagsForResource)
2290
2934
  .build() {
2291
2935
  }
2292
2936
 
@@ -2294,16 +2938,11 @@ class RegisterConnectorCommand extends smithyClient.Command
2294
2938
  .classBuilder()
2295
2939
  .ep(commonParams)
2296
2940
  .m(function (Command, cs, config, o) {
2297
- return [
2298
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2299
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2300
- ];
2941
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2301
2942
  })
2302
2943
  .s("SandstoneConfigurationServiceLambda", "RegisterConnector", {})
2303
2944
  .n("AppflowClient", "RegisterConnectorCommand")
2304
- .f(void 0, void 0)
2305
- .ser(se_RegisterConnectorCommand)
2306
- .de(de_RegisterConnectorCommand)
2945
+ .sc(RegisterConnector)
2307
2946
  .build() {
2308
2947
  }
2309
2948
 
@@ -2311,16 +2950,11 @@ class ResetConnectorMetadataCacheCommand extends smithyClient.Command
2311
2950
  .classBuilder()
2312
2951
  .ep(commonParams)
2313
2952
  .m(function (Command, cs, config, o) {
2314
- return [
2315
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2316
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2317
- ];
2953
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2318
2954
  })
2319
2955
  .s("SandstoneConfigurationServiceLambda", "ResetConnectorMetadataCache", {})
2320
2956
  .n("AppflowClient", "ResetConnectorMetadataCacheCommand")
2321
- .f(void 0, void 0)
2322
- .ser(se_ResetConnectorMetadataCacheCommand)
2323
- .de(de_ResetConnectorMetadataCacheCommand)
2957
+ .sc(ResetConnectorMetadataCache)
2324
2958
  .build() {
2325
2959
  }
2326
2960
 
@@ -2328,16 +2962,11 @@ class StartFlowCommand extends smithyClient.Command
2328
2962
  .classBuilder()
2329
2963
  .ep(commonParams)
2330
2964
  .m(function (Command, cs, config, o) {
2331
- return [
2332
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2333
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2334
- ];
2965
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2335
2966
  })
2336
2967
  .s("SandstoneConfigurationServiceLambda", "StartFlow", {})
2337
2968
  .n("AppflowClient", "StartFlowCommand")
2338
- .f(void 0, void 0)
2339
- .ser(se_StartFlowCommand)
2340
- .de(de_StartFlowCommand)
2969
+ .sc(StartFlow)
2341
2970
  .build() {
2342
2971
  }
2343
2972
 
@@ -2345,16 +2974,11 @@ class StopFlowCommand extends smithyClient.Command
2345
2974
  .classBuilder()
2346
2975
  .ep(commonParams)
2347
2976
  .m(function (Command, cs, config, o) {
2348
- return [
2349
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2350
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2351
- ];
2977
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2352
2978
  })
2353
2979
  .s("SandstoneConfigurationServiceLambda", "StopFlow", {})
2354
2980
  .n("AppflowClient", "StopFlowCommand")
2355
- .f(void 0, void 0)
2356
- .ser(se_StopFlowCommand)
2357
- .de(de_StopFlowCommand)
2981
+ .sc(StopFlow)
2358
2982
  .build() {
2359
2983
  }
2360
2984
 
@@ -2362,16 +2986,11 @@ class TagResourceCommand extends smithyClient.Command
2362
2986
  .classBuilder()
2363
2987
  .ep(commonParams)
2364
2988
  .m(function (Command, cs, config, o) {
2365
- return [
2366
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2367
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2368
- ];
2989
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2369
2990
  })
2370
2991
  .s("SandstoneConfigurationServiceLambda", "TagResource", {})
2371
2992
  .n("AppflowClient", "TagResourceCommand")
2372
- .f(void 0, void 0)
2373
- .ser(se_TagResourceCommand)
2374
- .de(de_TagResourceCommand)
2993
+ .sc(TagResource)
2375
2994
  .build() {
2376
2995
  }
2377
2996
 
@@ -2379,16 +2998,11 @@ class UnregisterConnectorCommand extends smithyClient.Command
2379
2998
  .classBuilder()
2380
2999
  .ep(commonParams)
2381
3000
  .m(function (Command, cs, config, o) {
2382
- return [
2383
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2384
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2385
- ];
3001
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2386
3002
  })
2387
3003
  .s("SandstoneConfigurationServiceLambda", "UnregisterConnector", {})
2388
3004
  .n("AppflowClient", "UnregisterConnectorCommand")
2389
- .f(void 0, void 0)
2390
- .ser(se_UnregisterConnectorCommand)
2391
- .de(de_UnregisterConnectorCommand)
3005
+ .sc(UnregisterConnector)
2392
3006
  .build() {
2393
3007
  }
2394
3008
 
@@ -2396,16 +3010,11 @@ class UntagResourceCommand extends smithyClient.Command
2396
3010
  .classBuilder()
2397
3011
  .ep(commonParams)
2398
3012
  .m(function (Command, cs, config, o) {
2399
- return [
2400
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2401
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2402
- ];
3013
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2403
3014
  })
2404
3015
  .s("SandstoneConfigurationServiceLambda", "UntagResource", {})
2405
3016
  .n("AppflowClient", "UntagResourceCommand")
2406
- .f(void 0, void 0)
2407
- .ser(se_UntagResourceCommand)
2408
- .de(de_UntagResourceCommand)
3017
+ .sc(UntagResource)
2409
3018
  .build() {
2410
3019
  }
2411
3020
 
@@ -2413,16 +3022,11 @@ class UpdateConnectorProfileCommand extends smithyClient.Command
2413
3022
  .classBuilder()
2414
3023
  .ep(commonParams)
2415
3024
  .m(function (Command, cs, config, o) {
2416
- return [
2417
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2418
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2419
- ];
3025
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2420
3026
  })
2421
3027
  .s("SandstoneConfigurationServiceLambda", "UpdateConnectorProfile", {})
2422
3028
  .n("AppflowClient", "UpdateConnectorProfileCommand")
2423
- .f(UpdateConnectorProfileRequestFilterSensitiveLog, void 0)
2424
- .ser(se_UpdateConnectorProfileCommand)
2425
- .de(de_UpdateConnectorProfileCommand)
3029
+ .sc(UpdateConnectorProfile)
2426
3030
  .build() {
2427
3031
  }
2428
3032
 
@@ -2430,16 +3034,11 @@ class UpdateConnectorRegistrationCommand extends smithyClient.Command
2430
3034
  .classBuilder()
2431
3035
  .ep(commonParams)
2432
3036
  .m(function (Command, cs, config, o) {
2433
- return [
2434
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2435
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2436
- ];
3037
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2437
3038
  })
2438
3039
  .s("SandstoneConfigurationServiceLambda", "UpdateConnectorRegistration", {})
2439
3040
  .n("AppflowClient", "UpdateConnectorRegistrationCommand")
2440
- .f(void 0, void 0)
2441
- .ser(se_UpdateConnectorRegistrationCommand)
2442
- .de(de_UpdateConnectorRegistrationCommand)
3041
+ .sc(UpdateConnectorRegistration)
2443
3042
  .build() {
2444
3043
  }
2445
3044
 
@@ -2447,16 +3046,11 @@ class UpdateFlowCommand extends smithyClient.Command
2447
3046
  .classBuilder()
2448
3047
  .ep(commonParams)
2449
3048
  .m(function (Command, cs, config, o) {
2450
- return [
2451
- middlewareSerde.getSerdePlugin(config, this.serialize, this.deserialize),
2452
- middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
2453
- ];
3049
+ return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
2454
3050
  })
2455
3051
  .s("SandstoneConfigurationServiceLambda", "UpdateFlow", {})
2456
3052
  .n("AppflowClient", "UpdateFlowCommand")
2457
- .f(void 0, void 0)
2458
- .ser(se_UpdateFlowCommand)
2459
- .de(de_UpdateFlowCommand)
3053
+ .sc(UpdateFlow)
2460
3054
  .build() {
2461
3055
  }
2462
3056
 
@@ -2509,35 +3103,26 @@ Object.defineProperty(exports, "__Client", {
2509
3103
  enumerable: true,
2510
3104
  get: function () { return smithyClient.Client; }
2511
3105
  });
2512
- exports.AccessDeniedException = AccessDeniedException;
3106
+ exports.AccessDeniedException = AccessDeniedException$1;
2513
3107
  exports.AggregationType = AggregationType;
2514
3108
  exports.AmplitudeConnectorOperator = AmplitudeConnectorOperator;
2515
- exports.AmplitudeConnectorProfileCredentialsFilterSensitiveLog = AmplitudeConnectorProfileCredentialsFilterSensitiveLog;
2516
- exports.ApiKeyCredentialsFilterSensitiveLog = ApiKeyCredentialsFilterSensitiveLog;
2517
3109
  exports.Appflow = Appflow;
2518
3110
  exports.AppflowClient = AppflowClient;
2519
- exports.AppflowServiceException = AppflowServiceException;
3111
+ exports.AppflowServiceException = AppflowServiceException$1;
2520
3112
  exports.AuthenticationType = AuthenticationType;
2521
- exports.BasicAuthCredentialsFilterSensitiveLog = BasicAuthCredentialsFilterSensitiveLog;
2522
3113
  exports.CancelFlowExecutionsCommand = CancelFlowExecutionsCommand;
2523
3114
  exports.CatalogType = CatalogType;
2524
- exports.ConflictException = ConflictException;
3115
+ exports.ConflictException = ConflictException$1;
2525
3116
  exports.ConnectionMode = ConnectionMode;
2526
- exports.ConnectorAuthenticationException = ConnectorAuthenticationException;
2527
- exports.ConnectorProfileConfigFilterSensitiveLog = ConnectorProfileConfigFilterSensitiveLog;
2528
- exports.ConnectorProfileCredentialsFilterSensitiveLog = ConnectorProfileCredentialsFilterSensitiveLog;
3117
+ exports.ConnectorAuthenticationException = ConnectorAuthenticationException$1;
2529
3118
  exports.ConnectorProvisioningType = ConnectorProvisioningType;
2530
- exports.ConnectorServerException = ConnectorServerException;
3119
+ exports.ConnectorServerException = ConnectorServerException$1;
2531
3120
  exports.ConnectorType = ConnectorType;
2532
3121
  exports.CreateConnectorProfileCommand = CreateConnectorProfileCommand;
2533
- exports.CreateConnectorProfileRequestFilterSensitiveLog = CreateConnectorProfileRequestFilterSensitiveLog;
2534
3122
  exports.CreateFlowCommand = CreateFlowCommand;
2535
- exports.CustomAuthCredentialsFilterSensitiveLog = CustomAuthCredentialsFilterSensitiveLog;
2536
- exports.CustomConnectorProfileCredentialsFilterSensitiveLog = CustomConnectorProfileCredentialsFilterSensitiveLog;
2537
3123
  exports.DataPullMode = DataPullMode;
2538
3124
  exports.DataTransferApiType = DataTransferApiType;
2539
3125
  exports.DatadogConnectorOperator = DatadogConnectorOperator;
2540
- exports.DatadogConnectorProfileCredentialsFilterSensitiveLog = DatadogConnectorProfileCredentialsFilterSensitiveLog;
2541
3126
  exports.DeleteConnectorProfileCommand = DeleteConnectorProfileCommand;
2542
3127
  exports.DeleteFlowCommand = DeleteFlowCommand;
2543
3128
  exports.DescribeConnectorCommand = DescribeConnectorCommand;
@@ -2551,73 +3136,55 @@ exports.ExecutionStatus = ExecutionStatus;
2551
3136
  exports.FileType = FileType;
2552
3137
  exports.FlowStatus = FlowStatus;
2553
3138
  exports.GoogleAnalyticsConnectorOperator = GoogleAnalyticsConnectorOperator;
2554
- exports.GoogleAnalyticsConnectorProfileCredentialsFilterSensitiveLog = GoogleAnalyticsConnectorProfileCredentialsFilterSensitiveLog;
2555
- exports.HoneycodeConnectorProfileCredentialsFilterSensitiveLog = HoneycodeConnectorProfileCredentialsFilterSensitiveLog;
2556
3139
  exports.InforNexusConnectorOperator = InforNexusConnectorOperator;
2557
- exports.InforNexusConnectorProfileCredentialsFilterSensitiveLog = InforNexusConnectorProfileCredentialsFilterSensitiveLog;
2558
- exports.InternalServerException = InternalServerException;
3140
+ exports.InternalServerException = InternalServerException$1;
2559
3141
  exports.ListConnectorEntitiesCommand = ListConnectorEntitiesCommand;
2560
3142
  exports.ListConnectorsCommand = ListConnectorsCommand;
2561
3143
  exports.ListFlowsCommand = ListFlowsCommand;
2562
3144
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2563
3145
  exports.MarketoConnectorOperator = MarketoConnectorOperator;
2564
- exports.MarketoConnectorProfileCredentialsFilterSensitiveLog = MarketoConnectorProfileCredentialsFilterSensitiveLog;
2565
- exports.OAuth2CredentialsFilterSensitiveLog = OAuth2CredentialsFilterSensitiveLog;
2566
3146
  exports.OAuth2CustomPropType = OAuth2CustomPropType;
2567
3147
  exports.OAuth2GrantType = OAuth2GrantType;
2568
- exports.OAuthCredentialsFilterSensitiveLog = OAuthCredentialsFilterSensitiveLog;
2569
3148
  exports.Operator = Operator;
2570
3149
  exports.OperatorPropertiesKeys = OperatorPropertiesKeys;
2571
3150
  exports.Operators = Operators;
2572
3151
  exports.PardotConnectorOperator = PardotConnectorOperator;
2573
- exports.PardotConnectorProfileCredentialsFilterSensitiveLog = PardotConnectorProfileCredentialsFilterSensitiveLog;
2574
3152
  exports.PathPrefix = PathPrefix;
2575
3153
  exports.PrefixFormat = PrefixFormat;
2576
3154
  exports.PrefixType = PrefixType;
2577
3155
  exports.PrivateConnectionProvisioningFailureCause = PrivateConnectionProvisioningFailureCause;
2578
3156
  exports.PrivateConnectionProvisioningStatus = PrivateConnectionProvisioningStatus;
2579
- exports.RedshiftConnectorProfileCredentialsFilterSensitiveLog = RedshiftConnectorProfileCredentialsFilterSensitiveLog;
2580
3157
  exports.RegisterConnectorCommand = RegisterConnectorCommand;
2581
3158
  exports.ResetConnectorMetadataCacheCommand = ResetConnectorMetadataCacheCommand;
2582
- exports.ResourceNotFoundException = ResourceNotFoundException;
3159
+ exports.ResourceNotFoundException = ResourceNotFoundException$1;
2583
3160
  exports.S3ConnectorOperator = S3ConnectorOperator;
2584
3161
  exports.S3InputFileType = S3InputFileType;
2585
3162
  exports.SAPODataConnectorOperator = SAPODataConnectorOperator;
2586
- exports.SAPODataConnectorProfileCredentialsFilterSensitiveLog = SAPODataConnectorProfileCredentialsFilterSensitiveLog;
2587
3163
  exports.SalesforceConnectorOperator = SalesforceConnectorOperator;
2588
- exports.SalesforceConnectorProfileCredentialsFilterSensitiveLog = SalesforceConnectorProfileCredentialsFilterSensitiveLog;
2589
3164
  exports.SalesforceDataTransferApi = SalesforceDataTransferApi;
2590
3165
  exports.ScheduleFrequencyType = ScheduleFrequencyType;
2591
3166
  exports.ServiceNowConnectorOperator = ServiceNowConnectorOperator;
2592
- exports.ServiceNowConnectorProfileCredentialsFilterSensitiveLog = ServiceNowConnectorProfileCredentialsFilterSensitiveLog;
2593
- exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
3167
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException$1;
2594
3168
  exports.SingularConnectorOperator = SingularConnectorOperator;
2595
- exports.SingularConnectorProfileCredentialsFilterSensitiveLog = SingularConnectorProfileCredentialsFilterSensitiveLog;
2596
3169
  exports.SlackConnectorOperator = SlackConnectorOperator;
2597
- exports.SlackConnectorProfileCredentialsFilterSensitiveLog = SlackConnectorProfileCredentialsFilterSensitiveLog;
2598
- exports.SnowflakeConnectorProfileCredentialsFilterSensitiveLog = SnowflakeConnectorProfileCredentialsFilterSensitiveLog;
2599
3170
  exports.StartFlowCommand = StartFlowCommand;
2600
3171
  exports.StopFlowCommand = StopFlowCommand;
2601
3172
  exports.SupportedDataTransferType = SupportedDataTransferType;
2602
3173
  exports.TagResourceCommand = TagResourceCommand;
2603
3174
  exports.TaskType = TaskType;
2604
- exports.ThrottlingException = ThrottlingException;
3175
+ exports.ThrottlingException = ThrottlingException$1;
2605
3176
  exports.TrendmicroConnectorOperator = TrendmicroConnectorOperator;
2606
- exports.TrendmicroConnectorProfileCredentialsFilterSensitiveLog = TrendmicroConnectorProfileCredentialsFilterSensitiveLog;
2607
3177
  exports.TriggerType = TriggerType;
2608
3178
  exports.UnregisterConnectorCommand = UnregisterConnectorCommand;
2609
- exports.UnsupportedOperationException = UnsupportedOperationException;
3179
+ exports.UnsupportedOperationException = UnsupportedOperationException$1;
2610
3180
  exports.UntagResourceCommand = UntagResourceCommand;
2611
3181
  exports.UpdateConnectorProfileCommand = UpdateConnectorProfileCommand;
2612
- exports.UpdateConnectorProfileRequestFilterSensitiveLog = UpdateConnectorProfileRequestFilterSensitiveLog;
2613
3182
  exports.UpdateConnectorRegistrationCommand = UpdateConnectorRegistrationCommand;
2614
3183
  exports.UpdateFlowCommand = UpdateFlowCommand;
2615
- exports.ValidationException = ValidationException;
3184
+ exports.ValidationException = ValidationException$1;
2616
3185
  exports.VeevaConnectorOperator = VeevaConnectorOperator;
2617
- exports.VeevaConnectorProfileCredentialsFilterSensitiveLog = VeevaConnectorProfileCredentialsFilterSensitiveLog;
2618
3186
  exports.WriteOperationType = WriteOperationType;
2619
3187
  exports.ZendeskConnectorOperator = ZendeskConnectorOperator;
2620
- exports.ZendeskConnectorProfileCredentialsFilterSensitiveLog = ZendeskConnectorProfileCredentialsFilterSensitiveLog;
2621
3188
  exports.paginateDescribeConnectorProfiles = paginateDescribeConnectorProfiles;
2622
3189
  exports.paginateDescribeConnectors = paginateDescribeConnectors;
2623
3190
  exports.paginateDescribeFlowExecutionRecords = paginateDescribeFlowExecutionRecords;