@aws-sdk/client-appflow 3.987.0 → 3.989.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +44 -2178
- package/dist-cjs/models/AppflowServiceException.js +12 -0
- package/dist-cjs/models/errors.js +134 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +1822 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +71 -65
- package/dist-types/schemas/schemas_0.d.ts +17 -10
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +12 -10
- package/package.json +13 -13
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var AppflowServiceException = require('./models/AppflowServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1912 +113,6 @@ class AppflowClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class AppflowServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, AppflowServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends AppflowServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
constructor(opts) {
|
|
124
|
-
super({
|
|
125
|
-
name: "AccessDeniedException",
|
|
126
|
-
$fault: "client",
|
|
127
|
-
...opts,
|
|
128
|
-
});
|
|
129
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
class InternalServerException extends AppflowServiceException {
|
|
133
|
-
name = "InternalServerException";
|
|
134
|
-
$fault = "server";
|
|
135
|
-
constructor(opts) {
|
|
136
|
-
super({
|
|
137
|
-
name: "InternalServerException",
|
|
138
|
-
$fault: "server",
|
|
139
|
-
...opts,
|
|
140
|
-
});
|
|
141
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
class ResourceNotFoundException extends AppflowServiceException {
|
|
145
|
-
name = "ResourceNotFoundException";
|
|
146
|
-
$fault = "client";
|
|
147
|
-
constructor(opts) {
|
|
148
|
-
super({
|
|
149
|
-
name: "ResourceNotFoundException",
|
|
150
|
-
$fault: "client",
|
|
151
|
-
...opts,
|
|
152
|
-
});
|
|
153
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
154
|
-
}
|
|
155
|
-
}
|
|
156
|
-
class ThrottlingException extends AppflowServiceException {
|
|
157
|
-
name = "ThrottlingException";
|
|
158
|
-
$fault = "client";
|
|
159
|
-
constructor(opts) {
|
|
160
|
-
super({
|
|
161
|
-
name: "ThrottlingException",
|
|
162
|
-
$fault: "client",
|
|
163
|
-
...opts,
|
|
164
|
-
});
|
|
165
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
class ValidationException extends AppflowServiceException {
|
|
169
|
-
name = "ValidationException";
|
|
170
|
-
$fault = "client";
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "ValidationException",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
class ConflictException extends AppflowServiceException {
|
|
181
|
-
name = "ConflictException";
|
|
182
|
-
$fault = "client";
|
|
183
|
-
constructor(opts) {
|
|
184
|
-
super({
|
|
185
|
-
name: "ConflictException",
|
|
186
|
-
$fault: "client",
|
|
187
|
-
...opts,
|
|
188
|
-
});
|
|
189
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
190
|
-
}
|
|
191
|
-
}
|
|
192
|
-
class ConnectorAuthenticationException extends AppflowServiceException {
|
|
193
|
-
name = "ConnectorAuthenticationException";
|
|
194
|
-
$fault = "client";
|
|
195
|
-
constructor(opts) {
|
|
196
|
-
super({
|
|
197
|
-
name: "ConnectorAuthenticationException",
|
|
198
|
-
$fault: "client",
|
|
199
|
-
...opts,
|
|
200
|
-
});
|
|
201
|
-
Object.setPrototypeOf(this, ConnectorAuthenticationException.prototype);
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
class ConnectorServerException extends AppflowServiceException {
|
|
205
|
-
name = "ConnectorServerException";
|
|
206
|
-
$fault = "client";
|
|
207
|
-
constructor(opts) {
|
|
208
|
-
super({
|
|
209
|
-
name: "ConnectorServerException",
|
|
210
|
-
$fault: "client",
|
|
211
|
-
...opts,
|
|
212
|
-
});
|
|
213
|
-
Object.setPrototypeOf(this, ConnectorServerException.prototype);
|
|
214
|
-
}
|
|
215
|
-
}
|
|
216
|
-
class ServiceQuotaExceededException extends AppflowServiceException {
|
|
217
|
-
name = "ServiceQuotaExceededException";
|
|
218
|
-
$fault = "client";
|
|
219
|
-
constructor(opts) {
|
|
220
|
-
super({
|
|
221
|
-
name: "ServiceQuotaExceededException",
|
|
222
|
-
$fault: "client",
|
|
223
|
-
...opts,
|
|
224
|
-
});
|
|
225
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
226
|
-
}
|
|
227
|
-
}
|
|
228
|
-
class UnsupportedOperationException extends AppflowServiceException {
|
|
229
|
-
name = "UnsupportedOperationException";
|
|
230
|
-
$fault = "client";
|
|
231
|
-
constructor(opts) {
|
|
232
|
-
super({
|
|
233
|
-
name: "UnsupportedOperationException",
|
|
234
|
-
$fault: "client",
|
|
235
|
-
...opts,
|
|
236
|
-
});
|
|
237
|
-
Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
|
|
238
|
-
}
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
const _A = "Amplitude";
|
|
242
|
-
const _AC = "AggregationConfig";
|
|
243
|
-
const _ACPC = "AmplitudeConnectorProfileCredentials";
|
|
244
|
-
const _ACPP = "AmplitudeConnectorProfileProperties";
|
|
245
|
-
const _ACu = "AuthenticationConfig";
|
|
246
|
-
const _ADE = "AccessDeniedException";
|
|
247
|
-
const _AK = "ApiKey";
|
|
248
|
-
const _AKC = "ApiKeyCredentials";
|
|
249
|
-
const _AKI = "AccessKeyId";
|
|
250
|
-
const _AM = "AmplitudeMetadata";
|
|
251
|
-
const _AP = "AuthParameter";
|
|
252
|
-
const _APL = "AuthParameterList";
|
|
253
|
-
const _ASK = "ApiSecretKey";
|
|
254
|
-
const _ASP = "AmplitudeSourceProperties";
|
|
255
|
-
const _AT = "AccessToken";
|
|
256
|
-
const _BAC = "BasicAuthCredentials";
|
|
257
|
-
const _CAC = "CustomAuthConfig";
|
|
258
|
-
const _CACL = "CustomAuthConfigList";
|
|
259
|
-
const _CACu = "CustomAuthCredentials";
|
|
260
|
-
const _CAE = "ConnectorAuthenticationException";
|
|
261
|
-
const _CC = "ConnectorConfiguration";
|
|
262
|
-
const _CCA = "ClientCredentialsArn";
|
|
263
|
-
const _CCDP = "CustomConnectorDestinationProperties";
|
|
264
|
-
const _CCM = "ConnectorConfigurationsMap";
|
|
265
|
-
const _CCP = "CreateConnectorProfile";
|
|
266
|
-
const _CCPC = "CustomConnectorProfileCredentials";
|
|
267
|
-
const _CCPP = "CustomConnectorProfileProperties";
|
|
268
|
-
const _CCPR = "CreateConnectorProfileRequest";
|
|
269
|
-
const _CCPRr = "CreateConnectorProfileResponse";
|
|
270
|
-
const _CCSP = "CustomConnectorSourceProperties";
|
|
271
|
-
const _CCu = "CustomConnector";
|
|
272
|
-
const _CD = "ConnectorDetail";
|
|
273
|
-
const _CE = "ConflictException";
|
|
274
|
-
const _CEF = "ConnectorEntityField";
|
|
275
|
-
const _CEFL = "ConnectorEntityFieldList";
|
|
276
|
-
const _CEL = "ConnectorEntityList";
|
|
277
|
-
const _CEM = "ConnectorEntityMap";
|
|
278
|
-
const _CEo = "ConnectorEntity";
|
|
279
|
-
const _CF = "CreateFlow";
|
|
280
|
-
const _CFE = "CancelFlowExecutions";
|
|
281
|
-
const _CFER = "CancelFlowExecutionsRequest";
|
|
282
|
-
const _CFERa = "CancelFlowExecutionsResponse";
|
|
283
|
-
const _CFR = "CreateFlowRequest";
|
|
284
|
-
const _CFRr = "CreateFlowResponse";
|
|
285
|
-
const _CL = "ConnectorList";
|
|
286
|
-
const _CM = "ConnectorMetadata";
|
|
287
|
-
const _CMK = "CredentialsMapKey";
|
|
288
|
-
const _CMV = "CredentialsMapValue";
|
|
289
|
-
const _CMr = "CredentialsMap";
|
|
290
|
-
const _CO = "ConnectorOperator";
|
|
291
|
-
const _COAR = "ConnectorOAuthRequest";
|
|
292
|
-
const _CP = "CustomerProfiles";
|
|
293
|
-
const _CPC = "ConnectorProfileConfig";
|
|
294
|
-
const _CPCo = "ConnectorProfileCredentials";
|
|
295
|
-
const _CPCon = "ConnectorProvisioningConfig";
|
|
296
|
-
const _CPDL = "ConnectorProfileDetailList";
|
|
297
|
-
const _CPDP = "CustomerProfilesDestinationProperties";
|
|
298
|
-
const _CPM = "CustomerProfilesMetadata";
|
|
299
|
-
const _CPP = "ConnectorProfileProperties";
|
|
300
|
-
const _CPo = "ConnectorProfile";
|
|
301
|
-
const _CRS = "ConnectorRuntimeSetting";
|
|
302
|
-
const _CRSL = "ConnectorRuntimeSettingList";
|
|
303
|
-
const _CS = "ClientSecret";
|
|
304
|
-
const _CSE = "ConnectorServerException";
|
|
305
|
-
const _D = "Datadog";
|
|
306
|
-
const _DC = "DescribeConnector";
|
|
307
|
-
const _DCE = "DescribeConnectorEntity";
|
|
308
|
-
const _DCER = "DescribeConnectorEntityRequest";
|
|
309
|
-
const _DCERe = "DescribeConnectorEntityResponse";
|
|
310
|
-
const _DCP = "DestinationConnectorProperties";
|
|
311
|
-
const _DCPC = "DatadogConnectorProfileCredentials";
|
|
312
|
-
const _DCPCy = "DynatraceConnectorProfileCredentials";
|
|
313
|
-
const _DCPP = "DatadogConnectorProfileProperties";
|
|
314
|
-
const _DCPPy = "DynatraceConnectorProfileProperties";
|
|
315
|
-
const _DCPR = "DeleteConnectorProfileRequest";
|
|
316
|
-
const _DCPRe = "DeleteConnectorProfileResponse";
|
|
317
|
-
const _DCPRes = "DescribeConnectorProfilesRequest";
|
|
318
|
-
const _DCPResc = "DescribeConnectorProfilesResponse";
|
|
319
|
-
const _DCPe = "DeleteConnectorProfile";
|
|
320
|
-
const _DCPes = "DescribeConnectorProfiles";
|
|
321
|
-
const _DCR = "DescribeConnectorRequest";
|
|
322
|
-
const _DCRe = "DescribeConnectorResponse";
|
|
323
|
-
const _DCRes = "DescribeConnectorsRequest";
|
|
324
|
-
const _DCResc = "DescribeConnectorsResponse";
|
|
325
|
-
const _DCe = "DescribeConnectors";
|
|
326
|
-
const _DF = "DeleteFlow";
|
|
327
|
-
const _DFC = "DestinationFlowConfig";
|
|
328
|
-
const _DFCL = "DestinationFlowConfigList";
|
|
329
|
-
const _DFER = "DescribeFlowExecutionRecords";
|
|
330
|
-
const _DFERR = "DescribeFlowExecutionRecordsRequest";
|
|
331
|
-
const _DFERRe = "DescribeFlowExecutionRecordsResponse";
|
|
332
|
-
const _DFP = "DestinationFieldProperties";
|
|
333
|
-
const _DFR = "DeleteFlowRequest";
|
|
334
|
-
const _DFRe = "DeleteFlowResponse";
|
|
335
|
-
const _DFRes = "DescribeFlowRequest";
|
|
336
|
-
const _DFResc = "DescribeFlowResponse";
|
|
337
|
-
const _DFe = "DescribeFlow";
|
|
338
|
-
const _DM = "DatadogMetadata";
|
|
339
|
-
const _DMy = "DynatraceMetadata";
|
|
340
|
-
const _DSP = "DatadogSourceProperties";
|
|
341
|
-
const _DSPy = "DynatraceSourceProperties";
|
|
342
|
-
const _DTA = "DataTransferApi";
|
|
343
|
-
const _Dy = "Dynatrace";
|
|
344
|
-
const _EB = "EventBridge";
|
|
345
|
-
const _EBDP = "EventBridgeDestinationProperties";
|
|
346
|
-
const _EBM = "EventBridgeMetadata";
|
|
347
|
-
const _ED = "ExecutionDetails";
|
|
348
|
-
const _EHC = "ErrorHandlingConfig";
|
|
349
|
-
const _EI = "ErrorInfo";
|
|
350
|
-
const _ER = "ExecutionRecord";
|
|
351
|
-
const _ERx = "ExecutionResult";
|
|
352
|
-
const _FD = "FlowDefinition";
|
|
353
|
-
const _FEL = "FlowExecutionList";
|
|
354
|
-
const _FL = "FlowList";
|
|
355
|
-
const _FTD = "FieldTypeDetails";
|
|
356
|
-
const _GA = "GoogleAnalytics";
|
|
357
|
-
const _GACPC = "GoogleAnalyticsConnectorProfileCredentials";
|
|
358
|
-
const _GACPP = "GoogleAnalyticsConnectorProfileProperties";
|
|
359
|
-
const _GAM = "GoogleAnalyticsMetadata";
|
|
360
|
-
const _GASP = "GoogleAnalyticsSourceProperties";
|
|
361
|
-
const _GDCC = "GlueDataCatalogConfig";
|
|
362
|
-
const _H = "Honeycode";
|
|
363
|
-
const _HCPC = "HoneycodeConnectorProfileCredentials";
|
|
364
|
-
const _HCPP = "HoneycodeConnectorProfileProperties";
|
|
365
|
-
const _HDP = "HoneycodeDestinationProperties";
|
|
366
|
-
const _HM = "HoneycodeMetadata";
|
|
367
|
-
const _IN = "InforNexus";
|
|
368
|
-
const _INCPC = "InforNexusConnectorProfileCredentials";
|
|
369
|
-
const _INCPP = "InforNexusConnectorProfileProperties";
|
|
370
|
-
const _INM = "InforNexusMetadata";
|
|
371
|
-
const _INSP = "InforNexusSourceProperties";
|
|
372
|
-
const _IPC = "IncrementalPullConfig";
|
|
373
|
-
const _ISE = "InternalServerException";
|
|
374
|
-
const _JT = "JwtToken";
|
|
375
|
-
const _LC = "ListConnectors";
|
|
376
|
-
const _LCE = "ListConnectorEntities";
|
|
377
|
-
const _LCER = "ListConnectorEntitiesRequest";
|
|
378
|
-
const _LCERi = "ListConnectorEntitiesResponse";
|
|
379
|
-
const _LCPC = "LambdaConnectorProvisioningConfig";
|
|
380
|
-
const _LCR = "ListConnectorsRequest";
|
|
381
|
-
const _LCRi = "ListConnectorsResponse";
|
|
382
|
-
const _LF = "ListFlows";
|
|
383
|
-
const _LFR = "ListFlowsRequest";
|
|
384
|
-
const _LFRi = "ListFlowsResponse";
|
|
385
|
-
const _LM = "LookoutMetrics";
|
|
386
|
-
const _LMDP = "LookoutMetricsDestinationProperties";
|
|
387
|
-
const _LTFR = "ListTagsForResource";
|
|
388
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
389
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
390
|
-
const _M = "Marketo";
|
|
391
|
-
const _MCC = "MetadataCatalogConfig";
|
|
392
|
-
const _MCD = "MetadataCatalogDetail";
|
|
393
|
-
const _MCDe = "MetadataCatalogDetails";
|
|
394
|
-
const _MCPC = "MarketoConnectorProfileCredentials";
|
|
395
|
-
const _MCPP = "MarketoConnectorProfileProperties";
|
|
396
|
-
const _MDP = "MarketoDestinationProperties";
|
|
397
|
-
const _MM = "MarketoMetadata";
|
|
398
|
-
const _MSP = "MarketoSourceProperties";
|
|
399
|
-
const _N = "Name";
|
|
400
|
-
const _OAC = "OAuth2Credentials";
|
|
401
|
-
const _OACP = "OAuth2CustomParameter";
|
|
402
|
-
const _OACPL = "OAuth2CustomPropertiesList";
|
|
403
|
-
const _OACu = "OAuthCredentials";
|
|
404
|
-
const _OAD = "OAuth2Defaults";
|
|
405
|
-
const _OAP = "OAuth2Properties";
|
|
406
|
-
const _OAPu = "OAuthProperties";
|
|
407
|
-
const _P = "Password";
|
|
408
|
-
const _PC = "PrefixConfig";
|
|
409
|
-
const _PCPC = "PardotConnectorProfileCredentials";
|
|
410
|
-
const _PCPP = "PardotConnectorProfileProperties";
|
|
411
|
-
const _PCPS = "PrivateConnectionProvisioningState";
|
|
412
|
-
const _PM = "PardotMetadata";
|
|
413
|
-
const _PSP = "PardotSourceProperties";
|
|
414
|
-
const _Pa = "Pardot";
|
|
415
|
-
const _R = "Redshift";
|
|
416
|
-
const _RC = "RegisterConnector";
|
|
417
|
-
const _RCMC = "ResetConnectorMetadataCache";
|
|
418
|
-
const _RCMCR = "ResetConnectorMetadataCacheRequest";
|
|
419
|
-
const _RCMCRe = "ResetConnectorMetadataCacheResponse";
|
|
420
|
-
const _RCPC = "RedshiftConnectorProfileCredentials";
|
|
421
|
-
const _RCPP = "RedshiftConnectorProfileProperties";
|
|
422
|
-
const _RCR = "RegisterConnectorRequest";
|
|
423
|
-
const _RCRe = "RegisterConnectorResponse";
|
|
424
|
-
const _RDP = "RedshiftDestinationProperties";
|
|
425
|
-
const _RM = "RedshiftMetadata";
|
|
426
|
-
const _RNFE = "ResourceNotFoundException";
|
|
427
|
-
const _RO = "RegistrationOutput";
|
|
428
|
-
const _Ra = "Range";
|
|
429
|
-
const _S = "S3";
|
|
430
|
-
const _SAPOD = "SAPOData";
|
|
431
|
-
const _SAPODCPC = "SAPODataConnectorProfileCredentials";
|
|
432
|
-
const _SAPODCPP = "SAPODataConnectorProfileProperties";
|
|
433
|
-
const _SAPODDP = "SAPODataDestinationProperties";
|
|
434
|
-
const _SAPODM = "SAPODataMetadata";
|
|
435
|
-
const _SAPODPC = "SAPODataPaginationConfig";
|
|
436
|
-
const _SAPODPCa = "SAPODataParallelismConfig";
|
|
437
|
-
const _SAPODSP = "SAPODataSourceProperties";
|
|
438
|
-
const _SCP = "SourceConnectorProperties";
|
|
439
|
-
const _SCPC = "SalesforceConnectorProfileCredentials";
|
|
440
|
-
const _SCPCi = "SingularConnectorProfileCredentials";
|
|
441
|
-
const _SCPCl = "SlackConnectorProfileCredentials";
|
|
442
|
-
const _SCPCn = "SnowflakeConnectorProfileCredentials";
|
|
443
|
-
const _SCPP = "SalesforceConnectorProfileProperties";
|
|
444
|
-
const _SCPPi = "SingularConnectorProfileProperties";
|
|
445
|
-
const _SCPPl = "SlackConnectorProfileProperties";
|
|
446
|
-
const _SCPPn = "SnowflakeConnectorProfileProperties";
|
|
447
|
-
const _SDP = "S3DestinationProperties";
|
|
448
|
-
const _SDPa = "SalesforceDestinationProperties";
|
|
449
|
-
const _SDPn = "SnowflakeDestinationProperties";
|
|
450
|
-
const _SDTA = "SupportedDataTransferApis";
|
|
451
|
-
const _SF = "StartFlow";
|
|
452
|
-
const _SFC = "SourceFlowConfig";
|
|
453
|
-
const _SFP = "SourceFieldProperties";
|
|
454
|
-
const _SFR = "StartFlowRequest";
|
|
455
|
-
const _SFRt = "StartFlowResponse";
|
|
456
|
-
const _SFRto = "StopFlowRequest";
|
|
457
|
-
const _SFRtop = "StopFlowResponse";
|
|
458
|
-
const _SFTD = "SupportedFieldTypeDetails";
|
|
459
|
-
const _SFt = "StopFlow";
|
|
460
|
-
const _SIFC = "S3InputFormatConfig";
|
|
461
|
-
const _SK = "SecretKey";
|
|
462
|
-
const _SM = "S3Metadata";
|
|
463
|
-
const _SMa = "SalesforceMetadata";
|
|
464
|
-
const _SMi = "SingularMetadata";
|
|
465
|
-
const _SMl = "SlackMetadata";
|
|
466
|
-
const _SMn = "SnowflakeMetadata";
|
|
467
|
-
const _SN = "ServiceNow";
|
|
468
|
-
const _SNCPC = "ServiceNowConnectorProfileCredentials";
|
|
469
|
-
const _SNCPP = "ServiceNowConnectorProfileProperties";
|
|
470
|
-
const _SNM = "ServiceNowMetadata";
|
|
471
|
-
const _SNSP = "ServiceNowSourceProperties";
|
|
472
|
-
const _SOFC = "S3OutputFormatConfig";
|
|
473
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
474
|
-
const _SRHC = "SuccessResponseHandlingConfig";
|
|
475
|
-
const _SSP = "S3SourceProperties";
|
|
476
|
-
const _SSPa = "SalesforceSourceProperties";
|
|
477
|
-
const _SSPi = "SingularSourceProperties";
|
|
478
|
-
const _SSPl = "SlackSourceProperties";
|
|
479
|
-
const _STP = "ScheduledTriggerProperties";
|
|
480
|
-
const _Sa = "Salesforce";
|
|
481
|
-
const _Sc = "Scheduled";
|
|
482
|
-
const _Si = "Singular";
|
|
483
|
-
const _Sl = "Slack";
|
|
484
|
-
const _Sn = "Snowflake";
|
|
485
|
-
const _T = "Trendmicro";
|
|
486
|
-
const _TC = "TriggerConfig";
|
|
487
|
-
const _TCPC = "TrendmicroConnectorProfileCredentials";
|
|
488
|
-
const _TCPP = "TrendmicroConnectorProfileProperties";
|
|
489
|
-
const _TE = "ThrottlingException";
|
|
490
|
-
const _TM = "TrendmicroMetadata";
|
|
491
|
-
const _TP = "TriggerProperties";
|
|
492
|
-
const _TR = "TagResource";
|
|
493
|
-
const _TRR = "TagResourceRequest";
|
|
494
|
-
const _TRRa = "TagResourceResponse";
|
|
495
|
-
const _TSP = "TrendmicroSourceProperties";
|
|
496
|
-
const _Ta = "Task";
|
|
497
|
-
const _Tas = "Tasks";
|
|
498
|
-
const _Ty = "Type";
|
|
499
|
-
const _U = "Upsolver";
|
|
500
|
-
const _UC = "UnregisterConnector";
|
|
501
|
-
const _UCP = "UpdateConnectorProfile";
|
|
502
|
-
const _UCPR = "UpdateConnectorProfileRequest";
|
|
503
|
-
const _UCPRp = "UpdateConnectorProfileResponse";
|
|
504
|
-
const _UCR = "UnregisterConnectorRequest";
|
|
505
|
-
const _UCRR = "UpdateConnectorRegistrationRequest";
|
|
506
|
-
const _UCRRp = "UpdateConnectorRegistrationResponse";
|
|
507
|
-
const _UCRn = "UnregisterConnectorResponse";
|
|
508
|
-
const _UCRp = "UpdateConnectorRegistration";
|
|
509
|
-
const _UDP = "UpsolverDestinationProperties";
|
|
510
|
-
const _UF = "UpdateFlow";
|
|
511
|
-
const _UFR = "UpdateFlowRequest";
|
|
512
|
-
const _UFRp = "UpdateFlowResponse";
|
|
513
|
-
const _UM = "UpsolverMetadata";
|
|
514
|
-
const _UOE = "UnsupportedOperationException";
|
|
515
|
-
const _UR = "UntagResource";
|
|
516
|
-
const _URR = "UntagResourceRequest";
|
|
517
|
-
const _URRn = "UntagResourceResponse";
|
|
518
|
-
const _USOFC = "UpsolverS3OutputFormatConfig";
|
|
519
|
-
const _V = "Veeva";
|
|
520
|
-
const _VCPC = "VeevaConnectorProfileCredentials";
|
|
521
|
-
const _VCPP = "VeevaConnectorProfileProperties";
|
|
522
|
-
const _VE = "ValidationException";
|
|
523
|
-
const _VM = "VeevaMetadata";
|
|
524
|
-
const _VSP = "VeevaSourceProperties";
|
|
525
|
-
const _Z = "Zendesk";
|
|
526
|
-
const _ZCPC = "ZendeskConnectorProfileCredentials";
|
|
527
|
-
const _ZCPP = "ZendeskConnectorProfileProperties";
|
|
528
|
-
const _ZDP = "ZendeskDestinationProperties";
|
|
529
|
-
const _ZM = "ZendeskMetadata";
|
|
530
|
-
const _ZSP = "ZendeskSourceProperties";
|
|
531
|
-
const _aC = "authenticationConfig";
|
|
532
|
-
const _aCU = "authCodeUrls";
|
|
533
|
-
const _aCUu = "authCodeUrl";
|
|
534
|
-
const _aCg = "aggregationConfig";
|
|
535
|
-
const _aCu = "authCode";
|
|
536
|
-
const _aHU = "applicationHostUrl";
|
|
537
|
-
const _aK = "apiKey";
|
|
538
|
-
const _aKI = "accessKeyId";
|
|
539
|
-
const _aKp = "applicationKey";
|
|
540
|
-
const _aN = "accountName";
|
|
541
|
-
const _aP = "authParameters";
|
|
542
|
-
const _aSK = "apiSecretKey";
|
|
543
|
-
const _aSP = "applicationServicePath";
|
|
544
|
-
const _aT = "aggregationType";
|
|
545
|
-
const _aTc = "accessToken";
|
|
546
|
-
const _aTp = "applicationType";
|
|
547
|
-
const _aTpi = "apiToken";
|
|
548
|
-
const _aTu = "authenticationType";
|
|
549
|
-
const _aV = "apiVersion";
|
|
550
|
-
const _b = "basic";
|
|
551
|
-
const _bAC = "basicAuthCredentials";
|
|
552
|
-
const _bN = "bucketName";
|
|
553
|
-
const _bP = "bucketPrefix";
|
|
554
|
-
const _bPy = "bytesProcessed";
|
|
555
|
-
const _bUI = "businessUnitId";
|
|
556
|
-
const _bW = "bytesWritten";
|
|
557
|
-
const _c = "client";
|
|
558
|
-
const _cA = "connectorArn";
|
|
559
|
-
const _cAC = "customAuthConfigs";
|
|
560
|
-
const _cAT = "customAuthenticationType";
|
|
561
|
-
const _cAr = "credentialsArn";
|
|
562
|
-
const _cAre = "createdAt";
|
|
563
|
-
const _cB = "createdBy";
|
|
564
|
-
const _cC = "connectorConfiguration";
|
|
565
|
-
const _cCA = "clientCredentialsArn";
|
|
566
|
-
const _cCo = "connectorConfigurations";
|
|
567
|
-
const _cD = "connectorDescription";
|
|
568
|
-
const _cEF = "connectorEntityFields";
|
|
569
|
-
const _cEM = "connectorEntityMap";
|
|
570
|
-
const _cEN = "connectorEntityName";
|
|
571
|
-
const _cI = "clientId";
|
|
572
|
-
const _cIl = "clusterIdentifier";
|
|
573
|
-
const _cL = "connectorLabel";
|
|
574
|
-
const _cM = "connectorMetadata";
|
|
575
|
-
const _cMo = "connectorModes";
|
|
576
|
-
const _cMon = "connectionMode";
|
|
577
|
-
const _cMr = "credentialsMap";
|
|
578
|
-
const _cN = "connectorName";
|
|
579
|
-
const _cNl = "clientNumber";
|
|
580
|
-
const _cO = "connectorOwner";
|
|
581
|
-
const _cOo = "connectorOperator";
|
|
582
|
-
const _cP = "customProperties";
|
|
583
|
-
const _cPA = "connectorProfileArn";
|
|
584
|
-
const _cPC = "connectorProvisioningConfig";
|
|
585
|
-
const _cPCo = "connectorProfileCredentials";
|
|
586
|
-
const _cPCon = "connectorProfileConfig";
|
|
587
|
-
const _cPD = "connectorProfileDetails";
|
|
588
|
-
const _cPN = "connectorProfileName";
|
|
589
|
-
const _cPNo = "connectorProfileNames";
|
|
590
|
-
const _cPP = "connectorProfileProperties";
|
|
591
|
-
const _cPT = "connectorProvisioningType";
|
|
592
|
-
const _cRS = "connectorRuntimeSettings";
|
|
593
|
-
const _cS = "clientSecret";
|
|
594
|
-
const _cSV = "connectorSuppliedValues";
|
|
595
|
-
const _cSVO = "connectorSuppliedValueOptions";
|
|
596
|
-
const _cT = "connectorType";
|
|
597
|
-
const _cTa = "catalogType";
|
|
598
|
-
const _cTl = "clientToken";
|
|
599
|
-
const _cTo = "connectorTypes";
|
|
600
|
-
const _cUAD = "canUseAsDestination";
|
|
601
|
-
const _cUAS = "canUseAsSource";
|
|
602
|
-
const _cV = "connectorVersion";
|
|
603
|
-
const _co = "connectors";
|
|
604
|
-
const _cu = "custom";
|
|
605
|
-
const _d = "description";
|
|
606
|
-
const _dARA = "dataApiRoleArn";
|
|
607
|
-
const _dCL = "destinationConnectorLabel";
|
|
608
|
-
const _dCP = "destinationConnectorProperties";
|
|
609
|
-
const _dCT = "destinationConnectorType";
|
|
610
|
-
const _dF = "destinationField";
|
|
611
|
-
const _dFCL = "destinationFlowConfigList";
|
|
612
|
-
const _dN = "domainName";
|
|
613
|
-
const _dNa = "databaseName";
|
|
614
|
-
const _dP = "destinationProperties";
|
|
615
|
-
const _dPET = "dataPullEndTime";
|
|
616
|
-
const _dPM = "dataPullMode";
|
|
617
|
-
const _dPST = "dataPullStartTime";
|
|
618
|
-
const _dSSO = "disableSSO";
|
|
619
|
-
const _dT = "dataType";
|
|
620
|
-
const _dTA = "dataTransferApi";
|
|
621
|
-
const _dTAa = "dataTransferApis";
|
|
622
|
-
const _dTFN = "datetimeTypeFieldName";
|
|
623
|
-
const _dTo = "documentType";
|
|
624
|
-
const _dU = "databaseUrl";
|
|
625
|
-
const _dV = "defaultValue";
|
|
626
|
-
const _da = "datakey";
|
|
627
|
-
const _e = "error";
|
|
628
|
-
const _eDFU = "enableDynamicFieldUpdate";
|
|
629
|
-
const _eHC = "errorHandlingConfig";
|
|
630
|
-
const _eI = "executionIds";
|
|
631
|
-
const _eIr = "errorInfo";
|
|
632
|
-
const _eIx = "executionId";
|
|
633
|
-
const _eM = "executionMessage";
|
|
634
|
-
const _eN = "entityName";
|
|
635
|
-
const _eP = "entitiesPath";
|
|
636
|
-
const _eR = "executionResult";
|
|
637
|
-
const _eS = "executionStatus";
|
|
638
|
-
const _f = "flows";
|
|
639
|
-
const _fA = "flowArn";
|
|
640
|
-
const _fC = "failureCause";
|
|
641
|
-
const _fD = "forceDelete";
|
|
642
|
-
const _fE = "flowExecutions";
|
|
643
|
-
const _fEDT = "flowErrorDeactivationThreshold";
|
|
644
|
-
const _fEF = "firstExecutionFrom";
|
|
645
|
-
const _fLR = "fieldLengthRange";
|
|
646
|
-
const _fM = "failureMessage";
|
|
647
|
-
const _fN = "flowName";
|
|
648
|
-
const _fO = "filterOperators";
|
|
649
|
-
const _fOFDE = "failOnFirstDestinationError";
|
|
650
|
-
const _fS = "flowStatus";
|
|
651
|
-
const _fSM = "flowStatusMessage";
|
|
652
|
-
const _fT = "fieldType";
|
|
653
|
-
const _fTi = "fileType";
|
|
654
|
-
const _fVR = "fieldValueRange";
|
|
655
|
-
const _gDC = "glueDataCatalog";
|
|
656
|
-
const _h = "http";
|
|
657
|
-
const _hE = "httpError";
|
|
658
|
-
const _hNE = "hasNestedEntities";
|
|
659
|
-
const _hQ = "httpQuery";
|
|
660
|
-
const _i = "identifier";
|
|
661
|
-
const _iAKAS = "isApiKeyAuthSupported";
|
|
662
|
-
const _iAV = "includeAllVersions";
|
|
663
|
-
const _iBAS = "isBasicAuthSupported";
|
|
664
|
-
const _iBN = "intermediateBucketName";
|
|
665
|
-
const _iC = "isCreatable";
|
|
666
|
-
const _iCAS = "isCustomAuthSupported";
|
|
667
|
-
const _iD = "isDeprecated";
|
|
668
|
-
const _iDOC = "isDefaultedOnCreate";
|
|
669
|
-
const _iDR = "includeDeletedRecords";
|
|
670
|
-
const _iE = "invalidExecutions";
|
|
671
|
-
const _iFN = "idFieldNames";
|
|
672
|
-
const _iN = "isNullable";
|
|
673
|
-
const _iOAS = "isOAuth2Supported";
|
|
674
|
-
const _iPC = "incrementalPullConfig";
|
|
675
|
-
const _iPK = "isPrimaryKey";
|
|
676
|
-
const _iPLE = "isPrivateLinkEnabled";
|
|
677
|
-
const _iPLEUR = "isPrivateLinkEndpointUrlRequired";
|
|
678
|
-
const _iQ = "isQueryable";
|
|
679
|
-
const _iR = "isRequired";
|
|
680
|
-
const _iRS = "isRedshiftServerless";
|
|
681
|
-
const _iRn = "includeRenditions";
|
|
682
|
-
const _iRs = "isRetrievable";
|
|
683
|
-
const _iSE = "isSandboxEnvironment";
|
|
684
|
-
const _iSF = "isSensitiveField";
|
|
685
|
-
const _iSFn = "includeSourceFiles";
|
|
686
|
-
const _iTFFIQ = "isTimestampFieldForIncrementalQueries";
|
|
687
|
-
const _iU = "instanceUrl";
|
|
688
|
-
const _iUs = "isUpsertable";
|
|
689
|
-
const _iUsp = "isUpdatable";
|
|
690
|
-
const _jT = "jwtToken";
|
|
691
|
-
const _k = "key";
|
|
692
|
-
const _kA = "kmsArn";
|
|
693
|
-
const _l = "label";
|
|
694
|
-
const _lA = "lambdaArn";
|
|
695
|
-
const _lL = "logonLanguage";
|
|
696
|
-
const _lRED = "lastRunExecutionDetails";
|
|
697
|
-
const _lRMCD = "lastRunMetadataCatalogDetails";
|
|
698
|
-
const _lUA = "lastUpdatedAt";
|
|
699
|
-
const _lUB = "lastUpdatedBy";
|
|
700
|
-
const _lURL = "logoURL";
|
|
701
|
-
const _la = "lambda";
|
|
702
|
-
const _m = "message";
|
|
703
|
-
const _mCC = "metadataCatalogConfig";
|
|
704
|
-
const _mCD = "metadataCatalogDetails";
|
|
705
|
-
const _mP = "maxParallelism";
|
|
706
|
-
const _mPS = "maxPageSize";
|
|
707
|
-
const _mR = "maxResults";
|
|
708
|
-
const _mREM = "mostRecentExecutionMessage";
|
|
709
|
-
const _mRES = "mostRecentExecutionStatus";
|
|
710
|
-
const _mRET = "mostRecentExecutionTime";
|
|
711
|
-
const _ma = "maximum";
|
|
712
|
-
const _mi = "minimum";
|
|
713
|
-
const _n = "name";
|
|
714
|
-
const _nPP = "numParallelProcesses";
|
|
715
|
-
const _nT = "nextToken";
|
|
716
|
-
const _o = "object";
|
|
717
|
-
const _oAC = "oAuthCredentials";
|
|
718
|
-
const _oACu = "oAuth2Credentials";
|
|
719
|
-
const _oAD = "oAuth2Defaults";
|
|
720
|
-
const _oAGT = "oAuth2GrantType";
|
|
721
|
-
const _oAP = "oAuth2Properties";
|
|
722
|
-
const _oAPu = "oAuthProperties";
|
|
723
|
-
const _oAR = "oAuthRequest";
|
|
724
|
-
const _oAS = "oAuthScopes";
|
|
725
|
-
const _oCP = "oauth2CustomProperties";
|
|
726
|
-
const _oGTS = "oauth2GrantTypesSupported";
|
|
727
|
-
const _oP = "objectPath";
|
|
728
|
-
const _oS = "oauthScopes";
|
|
729
|
-
const _oTN = "objectTypeName";
|
|
730
|
-
const _oa = "oauth2";
|
|
731
|
-
const _p = "password";
|
|
732
|
-
const _pC = "prefixConfig";
|
|
733
|
-
const _pCPS = "privateConnectionProvisioningState";
|
|
734
|
-
const _pCa = "parallelismConfig";
|
|
735
|
-
const _pCag = "paginationConfig";
|
|
736
|
-
const _pF = "prefixFormat";
|
|
737
|
-
const _pFC = "putFailuresCount";
|
|
738
|
-
const _pI = "parentIdentifier";
|
|
739
|
-
const _pLSN = "privateLinkServiceName";
|
|
740
|
-
const _pN = "portNumber";
|
|
741
|
-
const _pP = "profileProperties";
|
|
742
|
-
const _pPH = "pathPrefixHierarchy";
|
|
743
|
-
const _pRO = "partitionRegistrationOutput";
|
|
744
|
-
const _pSDT = "preserveSourceDataTyping";
|
|
745
|
-
const _pT = "prefixType";
|
|
746
|
-
const _r = "result";
|
|
747
|
-
const _rA = "registeredAt";
|
|
748
|
-
const _rAe = "resourceArn";
|
|
749
|
-
const _rAo = "roleArn";
|
|
750
|
-
const _rB = "registeredBy";
|
|
751
|
-
const _rP = "recordsProcessed";
|
|
752
|
-
const _rT = "refreshToken";
|
|
753
|
-
const _rU = "redirectUri";
|
|
754
|
-
const _re = "region";
|
|
755
|
-
const _s = "scope";
|
|
756
|
-
const _sA = "startedAt";
|
|
757
|
-
const _sAK = "secretAccessKey";
|
|
758
|
-
const _sAV = "supportedApiVersions";
|
|
759
|
-
const _sCL = "sourceConnectorLabel";
|
|
760
|
-
const _sCP = "sourceConnectorProperties";
|
|
761
|
-
const _sCT = "sourceConnectorType";
|
|
762
|
-
const _sDC = "supportedDestinationConnectors";
|
|
763
|
-
const _sDF = "supportedDateFormat";
|
|
764
|
-
const _sDTA = "supportedDataTransferApis";
|
|
765
|
-
const _sDTT = "supportedDataTransferTypes";
|
|
766
|
-
const _sE = "scheduleExpression";
|
|
767
|
-
const _sET = "scheduleEndTime";
|
|
768
|
-
const _sF = "sourceFields";
|
|
769
|
-
const _sFC = "sourceFlowConfig";
|
|
770
|
-
const _sFTD = "supportedFieldTypeDetails";
|
|
771
|
-
const _sIFC = "s3InputFormatConfig";
|
|
772
|
-
const _sIFT = "s3InputFileType";
|
|
773
|
-
const _sK = "secretKey";
|
|
774
|
-
const _sO = "supportedOperators";
|
|
775
|
-
const _sOFC = "s3OutputFormatConfig";
|
|
776
|
-
const _sOc = "scheduleOffset";
|
|
777
|
-
const _sP = "sourceProperties";
|
|
778
|
-
const _sR = "supportedRegions";
|
|
779
|
-
const _sRHC = "successResponseHandlingConfig";
|
|
780
|
-
const _sSF = "supportedSchedulingFrequencies";
|
|
781
|
-
const _sST = "scheduleStartTime";
|
|
782
|
-
const _sTT = "supportedTriggerTypes";
|
|
783
|
-
const _sV = "schemaVersion";
|
|
784
|
-
const _sVu = "supportedValues";
|
|
785
|
-
const _sWO = "supportedWriteOperations";
|
|
786
|
-
const _se = "server";
|
|
787
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.appflow";
|
|
788
|
-
const _st = "status";
|
|
789
|
-
const _sta = "stage";
|
|
790
|
-
const _t = "tasks";
|
|
791
|
-
const _tC = "triggerConfig";
|
|
792
|
-
const _tFS = "targetFileSize";
|
|
793
|
-
const _tK = "tagKeys";
|
|
794
|
-
const _tN = "tableName";
|
|
795
|
-
const _tP = "tablePrefix";
|
|
796
|
-
const _tPa = "taskProperties";
|
|
797
|
-
const _tPr = "triggerProperties";
|
|
798
|
-
const _tRO = "tableRegistrationOutput";
|
|
799
|
-
const _tT = "triggerType";
|
|
800
|
-
const _tTa = "taskType";
|
|
801
|
-
const _tU = "tokenUrls";
|
|
802
|
-
const _tUCP = "tokenUrlCustomProperties";
|
|
803
|
-
const _tUo = "tokenUrl";
|
|
804
|
-
const _ta = "tags";
|
|
805
|
-
const _ti = "timezone";
|
|
806
|
-
const _ty = "type";
|
|
807
|
-
const _u = "username";
|
|
808
|
-
const _uI = "userId";
|
|
809
|
-
const _uPLFMAA = "usePrivateLinkForMetadataAndAuthorization";
|
|
810
|
-
const _v = "v1";
|
|
811
|
-
const _vRP = "valueRegexPattern";
|
|
812
|
-
const _w = "warehouse";
|
|
813
|
-
const _wN = "workgroupName";
|
|
814
|
-
const _wOT = "writeOperationType";
|
|
815
|
-
const n0 = "com.amazonaws.appflow";
|
|
816
|
-
var AccessKeyId = [0, n0, _AKI, 8, 0];
|
|
817
|
-
var AccessToken = [0, n0, _AT, 8, 0];
|
|
818
|
-
var ApiKey = [0, n0, _AK, 8, 0];
|
|
819
|
-
var ApiSecretKey = [0, n0, _ASK, 8, 0];
|
|
820
|
-
var ClientCredentialsArn = [0, n0, _CCA, 8, 0];
|
|
821
|
-
var ClientSecret = [0, n0, _CS, 8, 0];
|
|
822
|
-
var CredentialsMapKey = [0, n0, _CMK, 8, 0];
|
|
823
|
-
var CredentialsMapValue = [0, n0, _CMV, 8, 0];
|
|
824
|
-
var JwtToken = [0, n0, _JT, 8, 0];
|
|
825
|
-
var Password = [0, n0, _P, 8, 0];
|
|
826
|
-
var SecretKey = [0, n0, _SK, 8, 0];
|
|
827
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
828
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
829
|
-
[_m],
|
|
830
|
-
[0]
|
|
831
|
-
];
|
|
832
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
833
|
-
var AggregationConfig$ = [3, n0, _AC,
|
|
834
|
-
0,
|
|
835
|
-
[_aT, _tFS],
|
|
836
|
-
[0, 1]
|
|
837
|
-
];
|
|
838
|
-
var AmplitudeConnectorProfileCredentials$ = [3, n0, _ACPC,
|
|
839
|
-
0,
|
|
840
|
-
[_aK, _sK],
|
|
841
|
-
[[() => ApiKey, 0], [() => SecretKey, 0]], 2
|
|
842
|
-
];
|
|
843
|
-
var AmplitudeConnectorProfileProperties$ = [3, n0, _ACPP,
|
|
844
|
-
0,
|
|
845
|
-
[],
|
|
846
|
-
[]
|
|
847
|
-
];
|
|
848
|
-
var AmplitudeMetadata$ = [3, n0, _AM,
|
|
849
|
-
0,
|
|
850
|
-
[],
|
|
851
|
-
[]
|
|
852
|
-
];
|
|
853
|
-
var AmplitudeSourceProperties$ = [3, n0, _ASP,
|
|
854
|
-
0,
|
|
855
|
-
[_o],
|
|
856
|
-
[0], 1
|
|
857
|
-
];
|
|
858
|
-
var ApiKeyCredentials$ = [3, n0, _AKC,
|
|
859
|
-
0,
|
|
860
|
-
[_aK, _aSK],
|
|
861
|
-
[[() => ApiKey, 0], [() => ApiSecretKey, 0]], 1
|
|
862
|
-
];
|
|
863
|
-
var AuthenticationConfig$ = [3, n0, _ACu,
|
|
864
|
-
0,
|
|
865
|
-
[_iBAS, _iAKAS, _iOAS, _iCAS, _oAD, _cAC],
|
|
866
|
-
[2, 2, 2, 2, () => OAuth2Defaults$, () => CustomAuthConfigList]
|
|
867
|
-
];
|
|
868
|
-
var AuthParameter$ = [3, n0, _AP,
|
|
869
|
-
0,
|
|
870
|
-
[_k, _iR, _l, _d, _iSF, _cSV],
|
|
871
|
-
[0, 2, 0, 0, 2, 64 | 0]
|
|
872
|
-
];
|
|
873
|
-
var BasicAuthCredentials$ = [3, n0, _BAC,
|
|
874
|
-
0,
|
|
875
|
-
[_u, _p],
|
|
876
|
-
[0, [() => Password, 0]], 2
|
|
877
|
-
];
|
|
878
|
-
var CancelFlowExecutionsRequest$ = [3, n0, _CFER,
|
|
879
|
-
0,
|
|
880
|
-
[_fN, _eI],
|
|
881
|
-
[0, 64 | 0], 1
|
|
882
|
-
];
|
|
883
|
-
var CancelFlowExecutionsResponse$ = [3, n0, _CFERa,
|
|
884
|
-
0,
|
|
885
|
-
[_iE],
|
|
886
|
-
[64 | 0]
|
|
887
|
-
];
|
|
888
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
889
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
890
|
-
[_m],
|
|
891
|
-
[0]
|
|
892
|
-
];
|
|
893
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
894
|
-
var ConnectorAuthenticationException$ = [-3, n0, _CAE,
|
|
895
|
-
{ [_e]: _c, [_hE]: 401 },
|
|
896
|
-
[_m],
|
|
897
|
-
[0]
|
|
898
|
-
];
|
|
899
|
-
schema.TypeRegistry.for(n0).registerError(ConnectorAuthenticationException$, ConnectorAuthenticationException);
|
|
900
|
-
var ConnectorConfiguration$ = [3, n0, _CC,
|
|
901
|
-
0,
|
|
902
|
-
[_cUAS, _cUAD, _sDC, _sSF, _iPLE, _iPLEUR, _sTT, _cM, _cT, _cL, _cD, _cO, _cN, _cV, _cA, _cMo, _aC, _cRS, _sAV, _sO, _sWO, _cPT, _cPC, _lURL, _rA, _rB, _sDTT, _sDTA],
|
|
903
|
-
[2, 2, 64 | 0, 64 | 0, 2, 2, 64 | 0, () => ConnectorMetadata$, 0, 0, 0, 0, 0, 0, 0, 64 | 0, () => AuthenticationConfig$, () => ConnectorRuntimeSettingList, 64 | 0, 64 | 0, 64 | 0, 0, () => ConnectorProvisioningConfig$, 0, 4, 0, 64 | 0, () => SupportedDataTransferApis]
|
|
904
|
-
];
|
|
905
|
-
var ConnectorDetail$ = [3, n0, _CD,
|
|
906
|
-
0,
|
|
907
|
-
[_cD, _cN, _cO, _cV, _aTp, _cT, _cL, _rA, _rB, _cPT, _cMo, _sDTT],
|
|
908
|
-
[0, 0, 0, 0, 0, 0, 0, 4, 0, 0, 64 | 0, 64 | 0]
|
|
909
|
-
];
|
|
910
|
-
var ConnectorEntity$ = [3, n0, _CEo,
|
|
911
|
-
0,
|
|
912
|
-
[_n, _l, _hNE],
|
|
913
|
-
[0, 0, 2], 1
|
|
914
|
-
];
|
|
915
|
-
var ConnectorEntityField$ = [3, n0, _CEF,
|
|
916
|
-
0,
|
|
917
|
-
[_i, _pI, _l, _iPK, _dV, _iD, _sFTD, _d, _sP, _dP, _cP],
|
|
918
|
-
[0, 0, 0, 2, 0, 2, () => SupportedFieldTypeDetails$, 0, () => SourceFieldProperties$, () => DestinationFieldProperties$, 128 | 0], 1
|
|
919
|
-
];
|
|
920
|
-
var ConnectorMetadata$ = [3, n0, _CM,
|
|
921
|
-
0,
|
|
922
|
-
[_A, _D, _Dy, _GA, _IN, _M, _R, _S, _Sa, _SN, _Si, _Sl, _Sn, _T, _V, _Z, _EB, _U, _CP, _H, _SAPOD, _Pa],
|
|
923
|
-
[() => AmplitudeMetadata$, () => DatadogMetadata$, () => DynatraceMetadata$, () => GoogleAnalyticsMetadata$, () => InforNexusMetadata$, () => MarketoMetadata$, () => RedshiftMetadata$, () => S3Metadata$, () => SalesforceMetadata$, () => ServiceNowMetadata$, () => SingularMetadata$, () => SlackMetadata$, () => SnowflakeMetadata$, () => TrendmicroMetadata$, () => VeevaMetadata$, () => ZendeskMetadata$, () => EventBridgeMetadata$, () => UpsolverMetadata$, () => CustomerProfilesMetadata$, () => HoneycodeMetadata$, () => SAPODataMetadata$, () => PardotMetadata$]
|
|
924
|
-
];
|
|
925
|
-
var ConnectorOAuthRequest$ = [3, n0, _COAR,
|
|
926
|
-
0,
|
|
927
|
-
[_aCu, _rU],
|
|
928
|
-
[0, 0]
|
|
929
|
-
];
|
|
930
|
-
var ConnectorOperator$ = [3, n0, _CO,
|
|
931
|
-
0,
|
|
932
|
-
[_A, _D, _Dy, _GA, _IN, _M, _S, _Sa, _SN, _Si, _Sl, _T, _V, _Z, _SAPOD, _CCu, _Pa],
|
|
933
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
|
|
934
|
-
];
|
|
935
|
-
var ConnectorProfile$ = [3, n0, _CPo,
|
|
936
|
-
0,
|
|
937
|
-
[_cPA, _cPN, _cT, _cL, _cMon, _cAr, _cPP, _cAre, _lUA, _pCPS],
|
|
938
|
-
[0, 0, 0, 0, 0, 0, () => ConnectorProfileProperties$, 4, 4, () => PrivateConnectionProvisioningState$]
|
|
939
|
-
];
|
|
940
|
-
var ConnectorProfileConfig$ = [3, n0, _CPC,
|
|
941
|
-
0,
|
|
942
|
-
[_cPP, _cPCo],
|
|
943
|
-
[() => ConnectorProfileProperties$, [() => ConnectorProfileCredentials$, 0]], 1
|
|
944
|
-
];
|
|
945
|
-
var ConnectorProfileCredentials$ = [3, n0, _CPCo,
|
|
946
|
-
0,
|
|
947
|
-
[_A, _D, _Dy, _GA, _H, _IN, _M, _R, _Sa, _SN, _Si, _Sl, _Sn, _T, _V, _Z, _SAPOD, _CCu, _Pa],
|
|
948
|
-
[[() => AmplitudeConnectorProfileCredentials$, 0], [() => DatadogConnectorProfileCredentials$, 0], () => DynatraceConnectorProfileCredentials$, [() => GoogleAnalyticsConnectorProfileCredentials$, 0], [() => HoneycodeConnectorProfileCredentials$, 0], [() => InforNexusConnectorProfileCredentials$, 0], [() => MarketoConnectorProfileCredentials$, 0], [() => RedshiftConnectorProfileCredentials$, 0], [() => SalesforceConnectorProfileCredentials$, 0], [() => ServiceNowConnectorProfileCredentials$, 0], [() => SingularConnectorProfileCredentials$, 0], [() => SlackConnectorProfileCredentials$, 0], [() => SnowflakeConnectorProfileCredentials$, 0], [() => TrendmicroConnectorProfileCredentials$, 0], [() => VeevaConnectorProfileCredentials$, 0], [() => ZendeskConnectorProfileCredentials$, 0], [() => SAPODataConnectorProfileCredentials$, 0], [() => CustomConnectorProfileCredentials$, 0], [() => PardotConnectorProfileCredentials$, 0]]
|
|
949
|
-
];
|
|
950
|
-
var ConnectorProfileProperties$ = [3, n0, _CPP,
|
|
951
|
-
0,
|
|
952
|
-
[_A, _D, _Dy, _GA, _H, _IN, _M, _R, _Sa, _SN, _Si, _Sl, _Sn, _T, _V, _Z, _SAPOD, _CCu, _Pa],
|
|
953
|
-
[() => AmplitudeConnectorProfileProperties$, () => DatadogConnectorProfileProperties$, () => DynatraceConnectorProfileProperties$, () => GoogleAnalyticsConnectorProfileProperties$, () => HoneycodeConnectorProfileProperties$, () => InforNexusConnectorProfileProperties$, () => MarketoConnectorProfileProperties$, () => RedshiftConnectorProfileProperties$, () => SalesforceConnectorProfileProperties$, () => ServiceNowConnectorProfileProperties$, () => SingularConnectorProfileProperties$, () => SlackConnectorProfileProperties$, () => SnowflakeConnectorProfileProperties$, () => TrendmicroConnectorProfileProperties$, () => VeevaConnectorProfileProperties$, () => ZendeskConnectorProfileProperties$, () => SAPODataConnectorProfileProperties$, () => CustomConnectorProfileProperties$, () => PardotConnectorProfileProperties$]
|
|
954
|
-
];
|
|
955
|
-
var ConnectorProvisioningConfig$ = [3, n0, _CPCon,
|
|
956
|
-
0,
|
|
957
|
-
[_la],
|
|
958
|
-
[() => LambdaConnectorProvisioningConfig$]
|
|
959
|
-
];
|
|
960
|
-
var ConnectorRuntimeSetting$ = [3, n0, _CRS,
|
|
961
|
-
0,
|
|
962
|
-
[_k, _dT, _iR, _l, _d, _s, _cSVO],
|
|
963
|
-
[0, 0, 2, 0, 0, 0, 64 | 0]
|
|
964
|
-
];
|
|
965
|
-
var ConnectorServerException$ = [-3, n0, _CSE,
|
|
966
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
967
|
-
[_m],
|
|
968
|
-
[0]
|
|
969
|
-
];
|
|
970
|
-
schema.TypeRegistry.for(n0).registerError(ConnectorServerException$, ConnectorServerException);
|
|
971
|
-
var CreateConnectorProfileRequest$ = [3, n0, _CCPR,
|
|
972
|
-
0,
|
|
973
|
-
[_cPN, _cT, _cMon, _cPCon, _kA, _cL, _cTl],
|
|
974
|
-
[0, 0, 0, [() => ConnectorProfileConfig$, 0], 0, 0, [0, 4]], 4
|
|
975
|
-
];
|
|
976
|
-
var CreateConnectorProfileResponse$ = [3, n0, _CCPRr,
|
|
977
|
-
0,
|
|
978
|
-
[_cPA],
|
|
979
|
-
[0]
|
|
980
|
-
];
|
|
981
|
-
var CreateFlowRequest$ = [3, n0, _CFR,
|
|
982
|
-
0,
|
|
983
|
-
[_fN, _tC, _sFC, _dFCL, _t, _d, _kA, _ta, _mCC, _cTl],
|
|
984
|
-
[0, () => TriggerConfig$, () => SourceFlowConfig$, () => DestinationFlowConfigList, () => Tasks, 0, 0, 128 | 0, () => MetadataCatalogConfig$, [0, 4]], 5
|
|
985
|
-
];
|
|
986
|
-
var CreateFlowResponse$ = [3, n0, _CFRr,
|
|
987
|
-
0,
|
|
988
|
-
[_fA, _fS],
|
|
989
|
-
[0, 0]
|
|
990
|
-
];
|
|
991
|
-
var CustomAuthConfig$ = [3, n0, _CAC,
|
|
992
|
-
0,
|
|
993
|
-
[_cAT, _aP],
|
|
994
|
-
[0, () => AuthParameterList]
|
|
995
|
-
];
|
|
996
|
-
var CustomAuthCredentials$ = [3, n0, _CACu,
|
|
997
|
-
0,
|
|
998
|
-
[_cAT, _cMr],
|
|
999
|
-
[0, [() => CredentialsMap, 0]], 1
|
|
1000
|
-
];
|
|
1001
|
-
var CustomConnectorDestinationProperties$ = [3, n0, _CCDP,
|
|
1002
|
-
0,
|
|
1003
|
-
[_eN, _eHC, _wOT, _iFN, _cP],
|
|
1004
|
-
[0, () => ErrorHandlingConfig$, 0, 64 | 0, 128 | 0], 1
|
|
1005
|
-
];
|
|
1006
|
-
var CustomConnectorProfileCredentials$ = [3, n0, _CCPC,
|
|
1007
|
-
0,
|
|
1008
|
-
[_aTu, _b, _oa, _aK, _cu],
|
|
1009
|
-
[0, [() => BasicAuthCredentials$, 0], [() => OAuth2Credentials$, 0], [() => ApiKeyCredentials$, 0], [() => CustomAuthCredentials$, 0]], 1
|
|
1010
|
-
];
|
|
1011
|
-
var CustomConnectorProfileProperties$ = [3, n0, _CCPP,
|
|
1012
|
-
0,
|
|
1013
|
-
[_pP, _oAP],
|
|
1014
|
-
[128 | 0, () => OAuth2Properties$]
|
|
1015
|
-
];
|
|
1016
|
-
var CustomConnectorSourceProperties$ = [3, n0, _CCSP,
|
|
1017
|
-
0,
|
|
1018
|
-
[_eN, _cP, _dTA],
|
|
1019
|
-
[0, 128 | 0, () => DataTransferApi$], 1
|
|
1020
|
-
];
|
|
1021
|
-
var CustomerProfilesDestinationProperties$ = [3, n0, _CPDP,
|
|
1022
|
-
0,
|
|
1023
|
-
[_dN, _oTN],
|
|
1024
|
-
[0, 0], 1
|
|
1025
|
-
];
|
|
1026
|
-
var CustomerProfilesMetadata$ = [3, n0, _CPM,
|
|
1027
|
-
0,
|
|
1028
|
-
[],
|
|
1029
|
-
[]
|
|
1030
|
-
];
|
|
1031
|
-
var DatadogConnectorProfileCredentials$ = [3, n0, _DCPC,
|
|
1032
|
-
0,
|
|
1033
|
-
[_aK, _aKp],
|
|
1034
|
-
[[() => ApiKey, 0], 0], 2
|
|
1035
|
-
];
|
|
1036
|
-
var DatadogConnectorProfileProperties$ = [3, n0, _DCPP,
|
|
1037
|
-
0,
|
|
1038
|
-
[_iU],
|
|
1039
|
-
[0], 1
|
|
1040
|
-
];
|
|
1041
|
-
var DatadogMetadata$ = [3, n0, _DM,
|
|
1042
|
-
0,
|
|
1043
|
-
[],
|
|
1044
|
-
[]
|
|
1045
|
-
];
|
|
1046
|
-
var DatadogSourceProperties$ = [3, n0, _DSP,
|
|
1047
|
-
0,
|
|
1048
|
-
[_o],
|
|
1049
|
-
[0], 1
|
|
1050
|
-
];
|
|
1051
|
-
var DataTransferApi$ = [3, n0, _DTA,
|
|
1052
|
-
0,
|
|
1053
|
-
[_N, _Ty],
|
|
1054
|
-
[0, 0]
|
|
1055
|
-
];
|
|
1056
|
-
var DeleteConnectorProfileRequest$ = [3, n0, _DCPR,
|
|
1057
|
-
0,
|
|
1058
|
-
[_cPN, _fD],
|
|
1059
|
-
[0, 2], 1
|
|
1060
|
-
];
|
|
1061
|
-
var DeleteConnectorProfileResponse$ = [3, n0, _DCPRe,
|
|
1062
|
-
0,
|
|
1063
|
-
[],
|
|
1064
|
-
[]
|
|
1065
|
-
];
|
|
1066
|
-
var DeleteFlowRequest$ = [3, n0, _DFR,
|
|
1067
|
-
0,
|
|
1068
|
-
[_fN, _fD],
|
|
1069
|
-
[0, 2], 1
|
|
1070
|
-
];
|
|
1071
|
-
var DeleteFlowResponse$ = [3, n0, _DFRe,
|
|
1072
|
-
0,
|
|
1073
|
-
[],
|
|
1074
|
-
[]
|
|
1075
|
-
];
|
|
1076
|
-
var DescribeConnectorEntityRequest$ = [3, n0, _DCER,
|
|
1077
|
-
0,
|
|
1078
|
-
[_cEN, _cT, _cPN, _aV],
|
|
1079
|
-
[0, 0, 0, 0], 1
|
|
1080
|
-
];
|
|
1081
|
-
var DescribeConnectorEntityResponse$ = [3, n0, _DCERe,
|
|
1082
|
-
0,
|
|
1083
|
-
[_cEF],
|
|
1084
|
-
[() => ConnectorEntityFieldList], 1
|
|
1085
|
-
];
|
|
1086
|
-
var DescribeConnectorProfilesRequest$ = [3, n0, _DCPRes,
|
|
1087
|
-
0,
|
|
1088
|
-
[_cPNo, _cT, _cL, _mR, _nT],
|
|
1089
|
-
[64 | 0, 0, 0, 1, 0]
|
|
1090
|
-
];
|
|
1091
|
-
var DescribeConnectorProfilesResponse$ = [3, n0, _DCPResc,
|
|
1092
|
-
0,
|
|
1093
|
-
[_cPD, _nT],
|
|
1094
|
-
[() => ConnectorProfileDetailList, 0]
|
|
1095
|
-
];
|
|
1096
|
-
var DescribeConnectorRequest$ = [3, n0, _DCR,
|
|
1097
|
-
0,
|
|
1098
|
-
[_cT, _cL],
|
|
1099
|
-
[0, 0], 1
|
|
1100
|
-
];
|
|
1101
|
-
var DescribeConnectorResponse$ = [3, n0, _DCRe,
|
|
1102
|
-
0,
|
|
1103
|
-
[_cC],
|
|
1104
|
-
[() => ConnectorConfiguration$]
|
|
1105
|
-
];
|
|
1106
|
-
var DescribeConnectorsRequest$ = [3, n0, _DCRes,
|
|
1107
|
-
0,
|
|
1108
|
-
[_cTo, _mR, _nT],
|
|
1109
|
-
[64 | 0, 1, 0]
|
|
1110
|
-
];
|
|
1111
|
-
var DescribeConnectorsResponse$ = [3, n0, _DCResc,
|
|
1112
|
-
0,
|
|
1113
|
-
[_cCo, _co, _nT],
|
|
1114
|
-
[() => ConnectorConfigurationsMap, () => ConnectorList, 0]
|
|
1115
|
-
];
|
|
1116
|
-
var DescribeFlowExecutionRecordsRequest$ = [3, n0, _DFERR,
|
|
1117
|
-
0,
|
|
1118
|
-
[_fN, _mR, _nT],
|
|
1119
|
-
[0, 1, 0], 1
|
|
1120
|
-
];
|
|
1121
|
-
var DescribeFlowExecutionRecordsResponse$ = [3, n0, _DFERRe,
|
|
1122
|
-
0,
|
|
1123
|
-
[_fE, _nT],
|
|
1124
|
-
[() => FlowExecutionList, 0]
|
|
1125
|
-
];
|
|
1126
|
-
var DescribeFlowRequest$ = [3, n0, _DFRes,
|
|
1127
|
-
0,
|
|
1128
|
-
[_fN],
|
|
1129
|
-
[0], 1
|
|
1130
|
-
];
|
|
1131
|
-
var DescribeFlowResponse$ = [3, n0, _DFResc,
|
|
1132
|
-
0,
|
|
1133
|
-
[_fA, _d, _fN, _kA, _fS, _fSM, _sFC, _dFCL, _lRED, _tC, _t, _cAre, _lUA, _cB, _lUB, _ta, _mCC, _lRMCD, _sV],
|
|
1134
|
-
[0, 0, 0, 0, 0, 0, () => SourceFlowConfig$, () => DestinationFlowConfigList, () => ExecutionDetails$, () => TriggerConfig$, () => Tasks, 4, 4, 0, 0, 128 | 0, () => MetadataCatalogConfig$, () => MetadataCatalogDetails, 1]
|
|
1135
|
-
];
|
|
1136
|
-
var DestinationConnectorProperties$ = [3, n0, _DCP,
|
|
1137
|
-
0,
|
|
1138
|
-
[_R, _S, _Sa, _Sn, _EB, _LM, _U, _H, _CP, _Z, _M, _CCu, _SAPOD],
|
|
1139
|
-
[() => RedshiftDestinationProperties$, () => S3DestinationProperties$, () => SalesforceDestinationProperties$, () => SnowflakeDestinationProperties$, () => EventBridgeDestinationProperties$, () => LookoutMetricsDestinationProperties$, () => UpsolverDestinationProperties$, () => HoneycodeDestinationProperties$, () => CustomerProfilesDestinationProperties$, () => ZendeskDestinationProperties$, () => MarketoDestinationProperties$, () => CustomConnectorDestinationProperties$, () => SAPODataDestinationProperties$]
|
|
1140
|
-
];
|
|
1141
|
-
var DestinationFieldProperties$ = [3, n0, _DFP,
|
|
1142
|
-
0,
|
|
1143
|
-
[_iC, _iN, _iUs, _iUsp, _iDOC, _sWO],
|
|
1144
|
-
[2, 2, 2, 2, 2, 64 | 0]
|
|
1145
|
-
];
|
|
1146
|
-
var DestinationFlowConfig$ = [3, n0, _DFC,
|
|
1147
|
-
0,
|
|
1148
|
-
[_cT, _dCP, _aV, _cPN],
|
|
1149
|
-
[0, () => DestinationConnectorProperties$, 0, 0], 2
|
|
1150
|
-
];
|
|
1151
|
-
var DynatraceConnectorProfileCredentials$ = [3, n0, _DCPCy,
|
|
1152
|
-
0,
|
|
1153
|
-
[_aTpi],
|
|
1154
|
-
[0], 1
|
|
1155
|
-
];
|
|
1156
|
-
var DynatraceConnectorProfileProperties$ = [3, n0, _DCPPy,
|
|
1157
|
-
0,
|
|
1158
|
-
[_iU],
|
|
1159
|
-
[0], 1
|
|
1160
|
-
];
|
|
1161
|
-
var DynatraceMetadata$ = [3, n0, _DMy,
|
|
1162
|
-
0,
|
|
1163
|
-
[],
|
|
1164
|
-
[]
|
|
1165
|
-
];
|
|
1166
|
-
var DynatraceSourceProperties$ = [3, n0, _DSPy,
|
|
1167
|
-
0,
|
|
1168
|
-
[_o],
|
|
1169
|
-
[0], 1
|
|
1170
|
-
];
|
|
1171
|
-
var ErrorHandlingConfig$ = [3, n0, _EHC,
|
|
1172
|
-
0,
|
|
1173
|
-
[_fOFDE, _bP, _bN],
|
|
1174
|
-
[2, 0, 0]
|
|
1175
|
-
];
|
|
1176
|
-
var ErrorInfo$ = [3, n0, _EI,
|
|
1177
|
-
0,
|
|
1178
|
-
[_pFC, _eM],
|
|
1179
|
-
[1, 0]
|
|
1180
|
-
];
|
|
1181
|
-
var EventBridgeDestinationProperties$ = [3, n0, _EBDP,
|
|
1182
|
-
0,
|
|
1183
|
-
[_o, _eHC],
|
|
1184
|
-
[0, () => ErrorHandlingConfig$], 1
|
|
1185
|
-
];
|
|
1186
|
-
var EventBridgeMetadata$ = [3, n0, _EBM,
|
|
1187
|
-
0,
|
|
1188
|
-
[],
|
|
1189
|
-
[]
|
|
1190
|
-
];
|
|
1191
|
-
var ExecutionDetails$ = [3, n0, _ED,
|
|
1192
|
-
0,
|
|
1193
|
-
[_mREM, _mRET, _mRES],
|
|
1194
|
-
[0, 4, 0]
|
|
1195
|
-
];
|
|
1196
|
-
var ExecutionRecord$ = [3, n0, _ER,
|
|
1197
|
-
0,
|
|
1198
|
-
[_eIx, _eS, _eR, _sA, _lUA, _dPST, _dPET, _mCD],
|
|
1199
|
-
[0, 0, () => ExecutionResult$, 4, 4, 4, 4, () => MetadataCatalogDetails]
|
|
1200
|
-
];
|
|
1201
|
-
var ExecutionResult$ = [3, n0, _ERx,
|
|
1202
|
-
0,
|
|
1203
|
-
[_eIr, _bPy, _bW, _rP, _nPP, _mPS],
|
|
1204
|
-
[() => ErrorInfo$, 1, 1, 1, 1, 1]
|
|
1205
|
-
];
|
|
1206
|
-
var FieldTypeDetails$ = [3, n0, _FTD,
|
|
1207
|
-
0,
|
|
1208
|
-
[_fT, _fO, _sVu, _vRP, _sDF, _fVR, _fLR],
|
|
1209
|
-
[0, 64 | 0, 64 | 0, 0, 0, () => Range$, () => Range$], 2
|
|
1210
|
-
];
|
|
1211
|
-
var FlowDefinition$ = [3, n0, _FD,
|
|
1212
|
-
0,
|
|
1213
|
-
[_fA, _d, _fN, _fS, _sCT, _sCL, _dCT, _dCL, _tT, _cAre, _lUA, _cB, _lUB, _ta, _lRED],
|
|
1214
|
-
[0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 4, 0, 0, 128 | 0, () => ExecutionDetails$]
|
|
1215
|
-
];
|
|
1216
|
-
var GlueDataCatalogConfig$ = [3, n0, _GDCC,
|
|
1217
|
-
0,
|
|
1218
|
-
[_rAo, _dNa, _tP],
|
|
1219
|
-
[0, 0, 0], 3
|
|
1220
|
-
];
|
|
1221
|
-
var GoogleAnalyticsConnectorProfileCredentials$ = [3, n0, _GACPC,
|
|
1222
|
-
0,
|
|
1223
|
-
[_cI, _cS, _aTc, _rT, _oAR],
|
|
1224
|
-
[0, [() => ClientSecret, 0], [() => AccessToken, 0], 0, () => ConnectorOAuthRequest$], 2
|
|
1225
|
-
];
|
|
1226
|
-
var GoogleAnalyticsConnectorProfileProperties$ = [3, n0, _GACPP,
|
|
1227
|
-
0,
|
|
1228
|
-
[],
|
|
1229
|
-
[]
|
|
1230
|
-
];
|
|
1231
|
-
var GoogleAnalyticsMetadata$ = [3, n0, _GAM,
|
|
1232
|
-
0,
|
|
1233
|
-
[_oAS],
|
|
1234
|
-
[64 | 0]
|
|
1235
|
-
];
|
|
1236
|
-
var GoogleAnalyticsSourceProperties$ = [3, n0, _GASP,
|
|
1237
|
-
0,
|
|
1238
|
-
[_o],
|
|
1239
|
-
[0], 1
|
|
1240
|
-
];
|
|
1241
|
-
var HoneycodeConnectorProfileCredentials$ = [3, n0, _HCPC,
|
|
1242
|
-
0,
|
|
1243
|
-
[_aTc, _rT, _oAR],
|
|
1244
|
-
[[() => AccessToken, 0], 0, () => ConnectorOAuthRequest$]
|
|
1245
|
-
];
|
|
1246
|
-
var HoneycodeConnectorProfileProperties$ = [3, n0, _HCPP,
|
|
1247
|
-
0,
|
|
1248
|
-
[],
|
|
1249
|
-
[]
|
|
1250
|
-
];
|
|
1251
|
-
var HoneycodeDestinationProperties$ = [3, n0, _HDP,
|
|
1252
|
-
0,
|
|
1253
|
-
[_o, _eHC],
|
|
1254
|
-
[0, () => ErrorHandlingConfig$], 1
|
|
1255
|
-
];
|
|
1256
|
-
var HoneycodeMetadata$ = [3, n0, _HM,
|
|
1257
|
-
0,
|
|
1258
|
-
[_oAS],
|
|
1259
|
-
[64 | 0]
|
|
1260
|
-
];
|
|
1261
|
-
var IncrementalPullConfig$ = [3, n0, _IPC,
|
|
1262
|
-
0,
|
|
1263
|
-
[_dTFN],
|
|
1264
|
-
[0]
|
|
1265
|
-
];
|
|
1266
|
-
var InforNexusConnectorProfileCredentials$ = [3, n0, _INCPC,
|
|
1267
|
-
0,
|
|
1268
|
-
[_aKI, _uI, _sAK, _da],
|
|
1269
|
-
[[() => AccessKeyId, 0], 0, 0, 0], 4
|
|
1270
|
-
];
|
|
1271
|
-
var InforNexusConnectorProfileProperties$ = [3, n0, _INCPP,
|
|
1272
|
-
0,
|
|
1273
|
-
[_iU],
|
|
1274
|
-
[0], 1
|
|
1275
|
-
];
|
|
1276
|
-
var InforNexusMetadata$ = [3, n0, _INM,
|
|
1277
|
-
0,
|
|
1278
|
-
[],
|
|
1279
|
-
[]
|
|
1280
|
-
];
|
|
1281
|
-
var InforNexusSourceProperties$ = [3, n0, _INSP,
|
|
1282
|
-
0,
|
|
1283
|
-
[_o],
|
|
1284
|
-
[0], 1
|
|
1285
|
-
];
|
|
1286
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
1287
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1288
|
-
[_m],
|
|
1289
|
-
[0]
|
|
1290
|
-
];
|
|
1291
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
1292
|
-
var LambdaConnectorProvisioningConfig$ = [3, n0, _LCPC,
|
|
1293
|
-
0,
|
|
1294
|
-
[_lA],
|
|
1295
|
-
[0], 1
|
|
1296
|
-
];
|
|
1297
|
-
var ListConnectorEntitiesRequest$ = [3, n0, _LCER,
|
|
1298
|
-
0,
|
|
1299
|
-
[_cPN, _cT, _eP, _aV, _mR, _nT],
|
|
1300
|
-
[0, 0, 0, 0, 1, 0]
|
|
1301
|
-
];
|
|
1302
|
-
var ListConnectorEntitiesResponse$ = [3, n0, _LCERi,
|
|
1303
|
-
0,
|
|
1304
|
-
[_cEM, _nT],
|
|
1305
|
-
[() => ConnectorEntityMap, 0], 1
|
|
1306
|
-
];
|
|
1307
|
-
var ListConnectorsRequest$ = [3, n0, _LCR,
|
|
1308
|
-
0,
|
|
1309
|
-
[_mR, _nT],
|
|
1310
|
-
[1, 0]
|
|
1311
|
-
];
|
|
1312
|
-
var ListConnectorsResponse$ = [3, n0, _LCRi,
|
|
1313
|
-
0,
|
|
1314
|
-
[_co, _nT],
|
|
1315
|
-
[() => ConnectorList, 0]
|
|
1316
|
-
];
|
|
1317
|
-
var ListFlowsRequest$ = [3, n0, _LFR,
|
|
1318
|
-
0,
|
|
1319
|
-
[_mR, _nT],
|
|
1320
|
-
[1, 0]
|
|
1321
|
-
];
|
|
1322
|
-
var ListFlowsResponse$ = [3, n0, _LFRi,
|
|
1323
|
-
0,
|
|
1324
|
-
[_f, _nT],
|
|
1325
|
-
[() => FlowList, 0]
|
|
1326
|
-
];
|
|
1327
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1328
|
-
0,
|
|
1329
|
-
[_rAe],
|
|
1330
|
-
[[0, 1]], 1
|
|
1331
|
-
];
|
|
1332
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1333
|
-
0,
|
|
1334
|
-
[_ta],
|
|
1335
|
-
[128 | 0]
|
|
1336
|
-
];
|
|
1337
|
-
var LookoutMetricsDestinationProperties$ = [3, n0, _LMDP,
|
|
1338
|
-
0,
|
|
1339
|
-
[],
|
|
1340
|
-
[]
|
|
1341
|
-
];
|
|
1342
|
-
var MarketoConnectorProfileCredentials$ = [3, n0, _MCPC,
|
|
1343
|
-
0,
|
|
1344
|
-
[_cI, _cS, _aTc, _oAR],
|
|
1345
|
-
[0, [() => ClientSecret, 0], [() => AccessToken, 0], () => ConnectorOAuthRequest$], 2
|
|
1346
|
-
];
|
|
1347
|
-
var MarketoConnectorProfileProperties$ = [3, n0, _MCPP,
|
|
1348
|
-
0,
|
|
1349
|
-
[_iU],
|
|
1350
|
-
[0], 1
|
|
1351
|
-
];
|
|
1352
|
-
var MarketoDestinationProperties$ = [3, n0, _MDP,
|
|
1353
|
-
0,
|
|
1354
|
-
[_o, _eHC],
|
|
1355
|
-
[0, () => ErrorHandlingConfig$], 1
|
|
1356
|
-
];
|
|
1357
|
-
var MarketoMetadata$ = [3, n0, _MM,
|
|
1358
|
-
0,
|
|
1359
|
-
[],
|
|
1360
|
-
[]
|
|
1361
|
-
];
|
|
1362
|
-
var MarketoSourceProperties$ = [3, n0, _MSP,
|
|
1363
|
-
0,
|
|
1364
|
-
[_o],
|
|
1365
|
-
[0], 1
|
|
1366
|
-
];
|
|
1367
|
-
var MetadataCatalogConfig$ = [3, n0, _MCC,
|
|
1368
|
-
0,
|
|
1369
|
-
[_gDC],
|
|
1370
|
-
[() => GlueDataCatalogConfig$]
|
|
1371
|
-
];
|
|
1372
|
-
var MetadataCatalogDetail$ = [3, n0, _MCD,
|
|
1373
|
-
0,
|
|
1374
|
-
[_cTa, _tN, _tRO, _pRO],
|
|
1375
|
-
[0, 0, () => RegistrationOutput$, () => RegistrationOutput$]
|
|
1376
|
-
];
|
|
1377
|
-
var OAuth2Credentials$ = [3, n0, _OAC,
|
|
1378
|
-
0,
|
|
1379
|
-
[_cI, _cS, _aTc, _rT, _oAR],
|
|
1380
|
-
[0, [() => ClientSecret, 0], [() => AccessToken, 0], 0, () => ConnectorOAuthRequest$]
|
|
1381
|
-
];
|
|
1382
|
-
var OAuth2CustomParameter$ = [3, n0, _OACP,
|
|
1383
|
-
0,
|
|
1384
|
-
[_k, _iR, _l, _d, _iSF, _cSV, _ty],
|
|
1385
|
-
[0, 2, 0, 0, 2, 64 | 0, 0]
|
|
1386
|
-
];
|
|
1387
|
-
var OAuth2Defaults$ = [3, n0, _OAD,
|
|
1388
|
-
0,
|
|
1389
|
-
[_oS, _tU, _aCU, _oGTS, _oCP],
|
|
1390
|
-
[64 | 0, 64 | 0, 64 | 0, 64 | 0, () => OAuth2CustomPropertiesList]
|
|
1391
|
-
];
|
|
1392
|
-
var OAuth2Properties$ = [3, n0, _OAP,
|
|
1393
|
-
0,
|
|
1394
|
-
[_tUo, _oAGT, _tUCP],
|
|
1395
|
-
[0, 0, 128 | 0], 2
|
|
1396
|
-
];
|
|
1397
|
-
var OAuthCredentials$ = [3, n0, _OACu,
|
|
1398
|
-
0,
|
|
1399
|
-
[_cI, _cS, _aTc, _rT, _oAR],
|
|
1400
|
-
[0, [() => ClientSecret, 0], [() => AccessToken, 0], 0, () => ConnectorOAuthRequest$], 2
|
|
1401
|
-
];
|
|
1402
|
-
var OAuthProperties$ = [3, n0, _OAPu,
|
|
1403
|
-
0,
|
|
1404
|
-
[_tUo, _aCUu, _oAS],
|
|
1405
|
-
[0, 0, 64 | 0], 3
|
|
1406
|
-
];
|
|
1407
|
-
var PardotConnectorProfileCredentials$ = [3, n0, _PCPC,
|
|
1408
|
-
0,
|
|
1409
|
-
[_aTc, _rT, _oAR, _cCA],
|
|
1410
|
-
[[() => AccessToken, 0], 0, () => ConnectorOAuthRequest$, [() => ClientCredentialsArn, 0]]
|
|
1411
|
-
];
|
|
1412
|
-
var PardotConnectorProfileProperties$ = [3, n0, _PCPP,
|
|
1413
|
-
0,
|
|
1414
|
-
[_iU, _iSE, _bUI],
|
|
1415
|
-
[0, 2, 0]
|
|
1416
|
-
];
|
|
1417
|
-
var PardotMetadata$ = [3, n0, _PM,
|
|
1418
|
-
0,
|
|
1419
|
-
[],
|
|
1420
|
-
[]
|
|
1421
|
-
];
|
|
1422
|
-
var PardotSourceProperties$ = [3, n0, _PSP,
|
|
1423
|
-
0,
|
|
1424
|
-
[_o],
|
|
1425
|
-
[0], 1
|
|
1426
|
-
];
|
|
1427
|
-
var PrefixConfig$ = [3, n0, _PC,
|
|
1428
|
-
0,
|
|
1429
|
-
[_pT, _pF, _pPH],
|
|
1430
|
-
[0, 0, 64 | 0]
|
|
1431
|
-
];
|
|
1432
|
-
var PrivateConnectionProvisioningState$ = [3, n0, _PCPS,
|
|
1433
|
-
0,
|
|
1434
|
-
[_st, _fM, _fC],
|
|
1435
|
-
[0, 0, 0]
|
|
1436
|
-
];
|
|
1437
|
-
var Range$ = [3, n0, _Ra,
|
|
1438
|
-
0,
|
|
1439
|
-
[_ma, _mi],
|
|
1440
|
-
[1, 1]
|
|
1441
|
-
];
|
|
1442
|
-
var RedshiftConnectorProfileCredentials$ = [3, n0, _RCPC,
|
|
1443
|
-
0,
|
|
1444
|
-
[_u, _p],
|
|
1445
|
-
[0, [() => Password, 0]]
|
|
1446
|
-
];
|
|
1447
|
-
var RedshiftConnectorProfileProperties$ = [3, n0, _RCPP,
|
|
1448
|
-
0,
|
|
1449
|
-
[_bN, _rAo, _dU, _bP, _dARA, _iRS, _cIl, _wN, _dNa],
|
|
1450
|
-
[0, 0, 0, 0, 0, 2, 0, 0, 0], 2
|
|
1451
|
-
];
|
|
1452
|
-
var RedshiftDestinationProperties$ = [3, n0, _RDP,
|
|
1453
|
-
0,
|
|
1454
|
-
[_o, _iBN, _bP, _eHC],
|
|
1455
|
-
[0, 0, 0, () => ErrorHandlingConfig$], 2
|
|
1456
|
-
];
|
|
1457
|
-
var RedshiftMetadata$ = [3, n0, _RM,
|
|
1458
|
-
0,
|
|
1459
|
-
[],
|
|
1460
|
-
[]
|
|
1461
|
-
];
|
|
1462
|
-
var RegisterConnectorRequest$ = [3, n0, _RCR,
|
|
1463
|
-
0,
|
|
1464
|
-
[_cL, _d, _cPT, _cPC, _cTl],
|
|
1465
|
-
[0, 0, 0, () => ConnectorProvisioningConfig$, [0, 4]]
|
|
1466
|
-
];
|
|
1467
|
-
var RegisterConnectorResponse$ = [3, n0, _RCRe,
|
|
1468
|
-
0,
|
|
1469
|
-
[_cA],
|
|
1470
|
-
[0]
|
|
1471
|
-
];
|
|
1472
|
-
var RegistrationOutput$ = [3, n0, _RO,
|
|
1473
|
-
0,
|
|
1474
|
-
[_m, _r, _st],
|
|
1475
|
-
[0, 0, 0]
|
|
1476
|
-
];
|
|
1477
|
-
var ResetConnectorMetadataCacheRequest$ = [3, n0, _RCMCR,
|
|
1478
|
-
0,
|
|
1479
|
-
[_cPN, _cT, _cEN, _eP, _aV],
|
|
1480
|
-
[0, 0, 0, 0, 0]
|
|
1481
|
-
];
|
|
1482
|
-
var ResetConnectorMetadataCacheResponse$ = [3, n0, _RCMCRe,
|
|
1483
|
-
0,
|
|
1484
|
-
[],
|
|
1485
|
-
[]
|
|
1486
|
-
];
|
|
1487
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1488
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1489
|
-
[_m],
|
|
1490
|
-
[0]
|
|
1491
|
-
];
|
|
1492
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1493
|
-
var S3DestinationProperties$ = [3, n0, _SDP,
|
|
1494
|
-
0,
|
|
1495
|
-
[_bN, _bP, _sOFC],
|
|
1496
|
-
[0, 0, () => S3OutputFormatConfig$], 1
|
|
1497
|
-
];
|
|
1498
|
-
var S3InputFormatConfig$ = [3, n0, _SIFC,
|
|
1499
|
-
0,
|
|
1500
|
-
[_sIFT],
|
|
1501
|
-
[0]
|
|
1502
|
-
];
|
|
1503
|
-
var S3Metadata$ = [3, n0, _SM,
|
|
1504
|
-
0,
|
|
1505
|
-
[],
|
|
1506
|
-
[]
|
|
1507
|
-
];
|
|
1508
|
-
var S3OutputFormatConfig$ = [3, n0, _SOFC,
|
|
1509
|
-
0,
|
|
1510
|
-
[_fTi, _pC, _aCg, _pSDT],
|
|
1511
|
-
[0, () => PrefixConfig$, () => AggregationConfig$, 2]
|
|
1512
|
-
];
|
|
1513
|
-
var S3SourceProperties$ = [3, n0, _SSP,
|
|
1514
|
-
0,
|
|
1515
|
-
[_bN, _bP, _sIFC],
|
|
1516
|
-
[0, 0, () => S3InputFormatConfig$], 1
|
|
1517
|
-
];
|
|
1518
|
-
var SalesforceConnectorProfileCredentials$ = [3, n0, _SCPC,
|
|
1519
|
-
0,
|
|
1520
|
-
[_aTc, _rT, _oAR, _cCA, _oAGT, _jT],
|
|
1521
|
-
[[() => AccessToken, 0], 0, () => ConnectorOAuthRequest$, [() => ClientCredentialsArn, 0], 0, [() => JwtToken, 0]]
|
|
1522
|
-
];
|
|
1523
|
-
var SalesforceConnectorProfileProperties$ = [3, n0, _SCPP,
|
|
1524
|
-
0,
|
|
1525
|
-
[_iU, _iSE, _uPLFMAA],
|
|
1526
|
-
[0, 2, 2]
|
|
1527
|
-
];
|
|
1528
|
-
var SalesforceDestinationProperties$ = [3, n0, _SDPa,
|
|
1529
|
-
0,
|
|
1530
|
-
[_o, _iFN, _eHC, _wOT, _dTA],
|
|
1531
|
-
[0, 64 | 0, () => ErrorHandlingConfig$, 0, 0], 1
|
|
1532
|
-
];
|
|
1533
|
-
var SalesforceMetadata$ = [3, n0, _SMa,
|
|
1534
|
-
0,
|
|
1535
|
-
[_oAS, _dTAa, _oGTS],
|
|
1536
|
-
[64 | 0, 64 | 0, 64 | 0]
|
|
1537
|
-
];
|
|
1538
|
-
var SalesforceSourceProperties$ = [3, n0, _SSPa,
|
|
1539
|
-
0,
|
|
1540
|
-
[_o, _eDFU, _iDR, _dTA],
|
|
1541
|
-
[0, 2, 2, 0], 1
|
|
1542
|
-
];
|
|
1543
|
-
var SAPODataConnectorProfileCredentials$ = [3, n0, _SAPODCPC,
|
|
1544
|
-
0,
|
|
1545
|
-
[_bAC, _oAC],
|
|
1546
|
-
[[() => BasicAuthCredentials$, 0], [() => OAuthCredentials$, 0]]
|
|
1547
|
-
];
|
|
1548
|
-
var SAPODataConnectorProfileProperties$ = [3, n0, _SAPODCPP,
|
|
1549
|
-
0,
|
|
1550
|
-
[_aHU, _aSP, _pN, _cNl, _lL, _pLSN, _oAPu, _dSSO],
|
|
1551
|
-
[0, 0, 1, 0, 0, 0, () => OAuthProperties$, 2], 4
|
|
1552
|
-
];
|
|
1553
|
-
var SAPODataDestinationProperties$ = [3, n0, _SAPODDP,
|
|
1554
|
-
0,
|
|
1555
|
-
[_oP, _sRHC, _iFN, _eHC, _wOT],
|
|
1556
|
-
[0, () => SuccessResponseHandlingConfig$, 64 | 0, () => ErrorHandlingConfig$, 0], 1
|
|
1557
|
-
];
|
|
1558
|
-
var SAPODataMetadata$ = [3, n0, _SAPODM,
|
|
1559
|
-
0,
|
|
1560
|
-
[],
|
|
1561
|
-
[]
|
|
1562
|
-
];
|
|
1563
|
-
var SAPODataPaginationConfig$ = [3, n0, _SAPODPC,
|
|
1564
|
-
0,
|
|
1565
|
-
[_mPS],
|
|
1566
|
-
[1], 1
|
|
1567
|
-
];
|
|
1568
|
-
var SAPODataParallelismConfig$ = [3, n0, _SAPODPCa,
|
|
1569
|
-
0,
|
|
1570
|
-
[_mP],
|
|
1571
|
-
[1], 1
|
|
1572
|
-
];
|
|
1573
|
-
var SAPODataSourceProperties$ = [3, n0, _SAPODSP,
|
|
1574
|
-
0,
|
|
1575
|
-
[_oP, _pCa, _pCag],
|
|
1576
|
-
[0, () => SAPODataParallelismConfig$, () => SAPODataPaginationConfig$]
|
|
1577
|
-
];
|
|
1578
|
-
var ScheduledTriggerProperties$ = [3, n0, _STP,
|
|
1579
|
-
0,
|
|
1580
|
-
[_sE, _dPM, _sST, _sET, _ti, _sOc, _fEF, _fEDT],
|
|
1581
|
-
[0, 0, 4, 4, 0, 1, 4, 1], 1
|
|
1582
|
-
];
|
|
1583
|
-
var ServiceNowConnectorProfileCredentials$ = [3, n0, _SNCPC,
|
|
1584
|
-
0,
|
|
1585
|
-
[_u, _p, _oACu],
|
|
1586
|
-
[0, [() => Password, 0], [() => OAuth2Credentials$, 0]]
|
|
1587
|
-
];
|
|
1588
|
-
var ServiceNowConnectorProfileProperties$ = [3, n0, _SNCPP,
|
|
1589
|
-
0,
|
|
1590
|
-
[_iU],
|
|
1591
|
-
[0], 1
|
|
1592
|
-
];
|
|
1593
|
-
var ServiceNowMetadata$ = [3, n0, _SNM,
|
|
1594
|
-
0,
|
|
1595
|
-
[],
|
|
1596
|
-
[]
|
|
1597
|
-
];
|
|
1598
|
-
var ServiceNowSourceProperties$ = [3, n0, _SNSP,
|
|
1599
|
-
0,
|
|
1600
|
-
[_o],
|
|
1601
|
-
[0], 1
|
|
1602
|
-
];
|
|
1603
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1604
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
1605
|
-
[_m],
|
|
1606
|
-
[0]
|
|
1607
|
-
];
|
|
1608
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1609
|
-
var SingularConnectorProfileCredentials$ = [3, n0, _SCPCi,
|
|
1610
|
-
0,
|
|
1611
|
-
[_aK],
|
|
1612
|
-
[[() => ApiKey, 0]], 1
|
|
1613
|
-
];
|
|
1614
|
-
var SingularConnectorProfileProperties$ = [3, n0, _SCPPi,
|
|
1615
|
-
0,
|
|
1616
|
-
[],
|
|
1617
|
-
[]
|
|
1618
|
-
];
|
|
1619
|
-
var SingularMetadata$ = [3, n0, _SMi,
|
|
1620
|
-
0,
|
|
1621
|
-
[],
|
|
1622
|
-
[]
|
|
1623
|
-
];
|
|
1624
|
-
var SingularSourceProperties$ = [3, n0, _SSPi,
|
|
1625
|
-
0,
|
|
1626
|
-
[_o],
|
|
1627
|
-
[0], 1
|
|
1628
|
-
];
|
|
1629
|
-
var SlackConnectorProfileCredentials$ = [3, n0, _SCPCl,
|
|
1630
|
-
0,
|
|
1631
|
-
[_cI, _cS, _aTc, _oAR],
|
|
1632
|
-
[0, [() => ClientSecret, 0], [() => AccessToken, 0], () => ConnectorOAuthRequest$], 2
|
|
1633
|
-
];
|
|
1634
|
-
var SlackConnectorProfileProperties$ = [3, n0, _SCPPl,
|
|
1635
|
-
0,
|
|
1636
|
-
[_iU],
|
|
1637
|
-
[0], 1
|
|
1638
|
-
];
|
|
1639
|
-
var SlackMetadata$ = [3, n0, _SMl,
|
|
1640
|
-
0,
|
|
1641
|
-
[_oAS],
|
|
1642
|
-
[64 | 0]
|
|
1643
|
-
];
|
|
1644
|
-
var SlackSourceProperties$ = [3, n0, _SSPl,
|
|
1645
|
-
0,
|
|
1646
|
-
[_o],
|
|
1647
|
-
[0], 1
|
|
1648
|
-
];
|
|
1649
|
-
var SnowflakeConnectorProfileCredentials$ = [3, n0, _SCPCn,
|
|
1650
|
-
0,
|
|
1651
|
-
[_u, _p],
|
|
1652
|
-
[0, [() => Password, 0]], 2
|
|
1653
|
-
];
|
|
1654
|
-
var SnowflakeConnectorProfileProperties$ = [3, n0, _SCPPn,
|
|
1655
|
-
0,
|
|
1656
|
-
[_w, _sta, _bN, _bP, _pLSN, _aN, _re],
|
|
1657
|
-
[0, 0, 0, 0, 0, 0, 0], 3
|
|
1658
|
-
];
|
|
1659
|
-
var SnowflakeDestinationProperties$ = [3, n0, _SDPn,
|
|
1660
|
-
0,
|
|
1661
|
-
[_o, _iBN, _bP, _eHC],
|
|
1662
|
-
[0, 0, 0, () => ErrorHandlingConfig$], 2
|
|
1663
|
-
];
|
|
1664
|
-
var SnowflakeMetadata$ = [3, n0, _SMn,
|
|
1665
|
-
0,
|
|
1666
|
-
[_sR],
|
|
1667
|
-
[64 | 0]
|
|
1668
|
-
];
|
|
1669
|
-
var SourceConnectorProperties$ = [3, n0, _SCP,
|
|
1670
|
-
0,
|
|
1671
|
-
[_A, _D, _Dy, _GA, _IN, _M, _S, _Sa, _SN, _Si, _Sl, _T, _V, _Z, _SAPOD, _CCu, _Pa],
|
|
1672
|
-
[() => AmplitudeSourceProperties$, () => DatadogSourceProperties$, () => DynatraceSourceProperties$, () => GoogleAnalyticsSourceProperties$, () => InforNexusSourceProperties$, () => MarketoSourceProperties$, () => S3SourceProperties$, () => SalesforceSourceProperties$, () => ServiceNowSourceProperties$, () => SingularSourceProperties$, () => SlackSourceProperties$, () => TrendmicroSourceProperties$, () => VeevaSourceProperties$, () => ZendeskSourceProperties$, () => SAPODataSourceProperties$, () => CustomConnectorSourceProperties$, () => PardotSourceProperties$]
|
|
1673
|
-
];
|
|
1674
|
-
var SourceFieldProperties$ = [3, n0, _SFP,
|
|
1675
|
-
0,
|
|
1676
|
-
[_iRs, _iQ, _iTFFIQ],
|
|
1677
|
-
[2, 2, 2]
|
|
1678
|
-
];
|
|
1679
|
-
var SourceFlowConfig$ = [3, n0, _SFC,
|
|
1680
|
-
0,
|
|
1681
|
-
[_cT, _sCP, _aV, _cPN, _iPC],
|
|
1682
|
-
[0, () => SourceConnectorProperties$, 0, 0, () => IncrementalPullConfig$], 2
|
|
1683
|
-
];
|
|
1684
|
-
var StartFlowRequest$ = [3, n0, _SFR,
|
|
1685
|
-
0,
|
|
1686
|
-
[_fN, _cTl],
|
|
1687
|
-
[0, [0, 4]], 1
|
|
1688
|
-
];
|
|
1689
|
-
var StartFlowResponse$ = [3, n0, _SFRt,
|
|
1690
|
-
0,
|
|
1691
|
-
[_fA, _fS, _eIx],
|
|
1692
|
-
[0, 0, 0]
|
|
1693
|
-
];
|
|
1694
|
-
var StopFlowRequest$ = [3, n0, _SFRto,
|
|
1695
|
-
0,
|
|
1696
|
-
[_fN],
|
|
1697
|
-
[0], 1
|
|
1698
|
-
];
|
|
1699
|
-
var StopFlowResponse$ = [3, n0, _SFRtop,
|
|
1700
|
-
0,
|
|
1701
|
-
[_fA, _fS],
|
|
1702
|
-
[0, 0]
|
|
1703
|
-
];
|
|
1704
|
-
var SuccessResponseHandlingConfig$ = [3, n0, _SRHC,
|
|
1705
|
-
0,
|
|
1706
|
-
[_bP, _bN],
|
|
1707
|
-
[0, 0]
|
|
1708
|
-
];
|
|
1709
|
-
var SupportedFieldTypeDetails$ = [3, n0, _SFTD,
|
|
1710
|
-
0,
|
|
1711
|
-
[_v],
|
|
1712
|
-
[() => FieldTypeDetails$], 1
|
|
1713
|
-
];
|
|
1714
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1715
|
-
0,
|
|
1716
|
-
[_rAe, _ta],
|
|
1717
|
-
[[0, 1], 128 | 0], 2
|
|
1718
|
-
];
|
|
1719
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1720
|
-
0,
|
|
1721
|
-
[],
|
|
1722
|
-
[]
|
|
1723
|
-
];
|
|
1724
|
-
var Task$ = [3, n0, _Ta,
|
|
1725
|
-
0,
|
|
1726
|
-
[_sF, _tTa, _cOo, _dF, _tPa],
|
|
1727
|
-
[64 | 0, 0, () => ConnectorOperator$, 0, 128 | 0], 2
|
|
1728
|
-
];
|
|
1729
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
1730
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1731
|
-
[_m],
|
|
1732
|
-
[0]
|
|
1733
|
-
];
|
|
1734
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1735
|
-
var TrendmicroConnectorProfileCredentials$ = [3, n0, _TCPC,
|
|
1736
|
-
0,
|
|
1737
|
-
[_aSK],
|
|
1738
|
-
[[() => ApiSecretKey, 0]], 1
|
|
1739
|
-
];
|
|
1740
|
-
var TrendmicroConnectorProfileProperties$ = [3, n0, _TCPP,
|
|
1741
|
-
0,
|
|
1742
|
-
[],
|
|
1743
|
-
[]
|
|
1744
|
-
];
|
|
1745
|
-
var TrendmicroMetadata$ = [3, n0, _TM,
|
|
1746
|
-
0,
|
|
1747
|
-
[],
|
|
1748
|
-
[]
|
|
1749
|
-
];
|
|
1750
|
-
var TrendmicroSourceProperties$ = [3, n0, _TSP,
|
|
1751
|
-
0,
|
|
1752
|
-
[_o],
|
|
1753
|
-
[0], 1
|
|
1754
|
-
];
|
|
1755
|
-
var TriggerConfig$ = [3, n0, _TC,
|
|
1756
|
-
0,
|
|
1757
|
-
[_tT, _tPr],
|
|
1758
|
-
[0, () => TriggerProperties$], 1
|
|
1759
|
-
];
|
|
1760
|
-
var TriggerProperties$ = [3, n0, _TP,
|
|
1761
|
-
0,
|
|
1762
|
-
[_Sc],
|
|
1763
|
-
[() => ScheduledTriggerProperties$]
|
|
1764
|
-
];
|
|
1765
|
-
var UnregisterConnectorRequest$ = [3, n0, _UCR,
|
|
1766
|
-
0,
|
|
1767
|
-
[_cL, _fD],
|
|
1768
|
-
[0, 2], 1
|
|
1769
|
-
];
|
|
1770
|
-
var UnregisterConnectorResponse$ = [3, n0, _UCRn,
|
|
1771
|
-
0,
|
|
1772
|
-
[],
|
|
1773
|
-
[]
|
|
1774
|
-
];
|
|
1775
|
-
var UnsupportedOperationException$ = [-3, n0, _UOE,
|
|
1776
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1777
|
-
[_m],
|
|
1778
|
-
[0]
|
|
1779
|
-
];
|
|
1780
|
-
schema.TypeRegistry.for(n0).registerError(UnsupportedOperationException$, UnsupportedOperationException);
|
|
1781
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1782
|
-
0,
|
|
1783
|
-
[_rAe, _tK],
|
|
1784
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1785
|
-
];
|
|
1786
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1787
|
-
0,
|
|
1788
|
-
[],
|
|
1789
|
-
[]
|
|
1790
|
-
];
|
|
1791
|
-
var UpdateConnectorProfileRequest$ = [3, n0, _UCPR,
|
|
1792
|
-
0,
|
|
1793
|
-
[_cPN, _cMon, _cPCon, _cTl],
|
|
1794
|
-
[0, 0, [() => ConnectorProfileConfig$, 0], [0, 4]], 3
|
|
1795
|
-
];
|
|
1796
|
-
var UpdateConnectorProfileResponse$ = [3, n0, _UCPRp,
|
|
1797
|
-
0,
|
|
1798
|
-
[_cPA],
|
|
1799
|
-
[0]
|
|
1800
|
-
];
|
|
1801
|
-
var UpdateConnectorRegistrationRequest$ = [3, n0, _UCRR,
|
|
1802
|
-
0,
|
|
1803
|
-
[_cL, _d, _cPC, _cTl],
|
|
1804
|
-
[0, 0, () => ConnectorProvisioningConfig$, [0, 4]], 1
|
|
1805
|
-
];
|
|
1806
|
-
var UpdateConnectorRegistrationResponse$ = [3, n0, _UCRRp,
|
|
1807
|
-
0,
|
|
1808
|
-
[_cA],
|
|
1809
|
-
[0]
|
|
1810
|
-
];
|
|
1811
|
-
var UpdateFlowRequest$ = [3, n0, _UFR,
|
|
1812
|
-
0,
|
|
1813
|
-
[_fN, _tC, _sFC, _dFCL, _t, _d, _mCC, _cTl],
|
|
1814
|
-
[0, () => TriggerConfig$, () => SourceFlowConfig$, () => DestinationFlowConfigList, () => Tasks, 0, () => MetadataCatalogConfig$, [0, 4]], 5
|
|
1815
|
-
];
|
|
1816
|
-
var UpdateFlowResponse$ = [3, n0, _UFRp,
|
|
1817
|
-
0,
|
|
1818
|
-
[_fS],
|
|
1819
|
-
[0]
|
|
1820
|
-
];
|
|
1821
|
-
var UpsolverDestinationProperties$ = [3, n0, _UDP,
|
|
1822
|
-
0,
|
|
1823
|
-
[_bN, _sOFC, _bP],
|
|
1824
|
-
[0, () => UpsolverS3OutputFormatConfig$, 0], 2
|
|
1825
|
-
];
|
|
1826
|
-
var UpsolverMetadata$ = [3, n0, _UM,
|
|
1827
|
-
0,
|
|
1828
|
-
[],
|
|
1829
|
-
[]
|
|
1830
|
-
];
|
|
1831
|
-
var UpsolverS3OutputFormatConfig$ = [3, n0, _USOFC,
|
|
1832
|
-
0,
|
|
1833
|
-
[_pC, _fTi, _aCg],
|
|
1834
|
-
[() => PrefixConfig$, 0, () => AggregationConfig$], 1
|
|
1835
|
-
];
|
|
1836
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
1837
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1838
|
-
[_m],
|
|
1839
|
-
[0]
|
|
1840
|
-
];
|
|
1841
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1842
|
-
var VeevaConnectorProfileCredentials$ = [3, n0, _VCPC,
|
|
1843
|
-
0,
|
|
1844
|
-
[_u, _p],
|
|
1845
|
-
[0, [() => Password, 0]], 2
|
|
1846
|
-
];
|
|
1847
|
-
var VeevaConnectorProfileProperties$ = [3, n0, _VCPP,
|
|
1848
|
-
0,
|
|
1849
|
-
[_iU],
|
|
1850
|
-
[0], 1
|
|
1851
|
-
];
|
|
1852
|
-
var VeevaMetadata$ = [3, n0, _VM,
|
|
1853
|
-
0,
|
|
1854
|
-
[],
|
|
1855
|
-
[]
|
|
1856
|
-
];
|
|
1857
|
-
var VeevaSourceProperties$ = [3, n0, _VSP,
|
|
1858
|
-
0,
|
|
1859
|
-
[_o, _dTo, _iSFn, _iRn, _iAV],
|
|
1860
|
-
[0, 0, 2, 2, 2], 1
|
|
1861
|
-
];
|
|
1862
|
-
var ZendeskConnectorProfileCredentials$ = [3, n0, _ZCPC,
|
|
1863
|
-
0,
|
|
1864
|
-
[_cI, _cS, _aTc, _oAR],
|
|
1865
|
-
[0, [() => ClientSecret, 0], [() => AccessToken, 0], () => ConnectorOAuthRequest$], 2
|
|
1866
|
-
];
|
|
1867
|
-
var ZendeskConnectorProfileProperties$ = [3, n0, _ZCPP,
|
|
1868
|
-
0,
|
|
1869
|
-
[_iU],
|
|
1870
|
-
[0], 1
|
|
1871
|
-
];
|
|
1872
|
-
var ZendeskDestinationProperties$ = [3, n0, _ZDP,
|
|
1873
|
-
0,
|
|
1874
|
-
[_o, _iFN, _eHC, _wOT],
|
|
1875
|
-
[0, 64 | 0, () => ErrorHandlingConfig$, 0], 1
|
|
1876
|
-
];
|
|
1877
|
-
var ZendeskMetadata$ = [3, n0, _ZM,
|
|
1878
|
-
0,
|
|
1879
|
-
[_oAS],
|
|
1880
|
-
[64 | 0]
|
|
1881
|
-
];
|
|
1882
|
-
var ZendeskSourceProperties$ = [3, n0, _ZSP,
|
|
1883
|
-
0,
|
|
1884
|
-
[_o],
|
|
1885
|
-
[0], 1
|
|
1886
|
-
];
|
|
1887
|
-
var AppflowServiceException$ = [-3, _sm, "AppflowServiceException", 0, [], []];
|
|
1888
|
-
schema.TypeRegistry.for(_sm).registerError(AppflowServiceException$, AppflowServiceException);
|
|
1889
|
-
var AuthParameterList = [1, n0, _APL,
|
|
1890
|
-
0, () => AuthParameter$
|
|
1891
|
-
];
|
|
1892
|
-
var ConnectorEntityFieldList = [1, n0, _CEFL,
|
|
1893
|
-
0, () => ConnectorEntityField$
|
|
1894
|
-
];
|
|
1895
|
-
var ConnectorEntityList = [1, n0, _CEL,
|
|
1896
|
-
0, () => ConnectorEntity$
|
|
1897
|
-
];
|
|
1898
|
-
var ConnectorList = [1, n0, _CL,
|
|
1899
|
-
0, () => ConnectorDetail$
|
|
1900
|
-
];
|
|
1901
|
-
var ConnectorProfileDetailList = [1, n0, _CPDL,
|
|
1902
|
-
0, () => ConnectorProfile$
|
|
1903
|
-
];
|
|
1904
|
-
var ConnectorRuntimeSettingList = [1, n0, _CRSL,
|
|
1905
|
-
0, () => ConnectorRuntimeSetting$
|
|
1906
|
-
];
|
|
1907
|
-
var CustomAuthConfigList = [1, n0, _CACL,
|
|
1908
|
-
0, () => CustomAuthConfig$
|
|
1909
|
-
];
|
|
1910
|
-
var DestinationFlowConfigList = [1, n0, _DFCL,
|
|
1911
|
-
0, () => DestinationFlowConfig$
|
|
1912
|
-
];
|
|
1913
|
-
var FlowExecutionList = [1, n0, _FEL,
|
|
1914
|
-
0, () => ExecutionRecord$
|
|
1915
|
-
];
|
|
1916
|
-
var FlowList = [1, n0, _FL,
|
|
1917
|
-
0, () => FlowDefinition$
|
|
1918
|
-
];
|
|
1919
|
-
var MetadataCatalogDetails = [1, n0, _MCDe,
|
|
1920
|
-
0, () => MetadataCatalogDetail$
|
|
1921
|
-
];
|
|
1922
|
-
var OAuth2CustomPropertiesList = [1, n0, _OACPL,
|
|
1923
|
-
0, () => OAuth2CustomParameter$
|
|
1924
|
-
];
|
|
1925
|
-
var SupportedDataTransferApis = [1, n0, _SDTA,
|
|
1926
|
-
0, () => DataTransferApi$
|
|
1927
|
-
];
|
|
1928
|
-
var Tasks = [1, n0, _Tas,
|
|
1929
|
-
0, () => Task$
|
|
1930
|
-
];
|
|
1931
|
-
var ConnectorConfigurationsMap = [2, n0, _CCM,
|
|
1932
|
-
0, 0, () => ConnectorConfiguration$
|
|
1933
|
-
];
|
|
1934
|
-
var ConnectorEntityMap = [2, n0, _CEM,
|
|
1935
|
-
0, 0, () => ConnectorEntityList
|
|
1936
|
-
];
|
|
1937
|
-
var CredentialsMap = [2, n0, _CMr,
|
|
1938
|
-
0, [() => CredentialsMapKey,
|
|
1939
|
-
0],
|
|
1940
|
-
[() => CredentialsMapValue,
|
|
1941
|
-
0]
|
|
1942
|
-
];
|
|
1943
|
-
var CancelFlowExecutions$ = [9, n0, _CFE,
|
|
1944
|
-
{ [_h]: ["POST", "/cancel-flow-executions", 200] }, () => CancelFlowExecutionsRequest$, () => CancelFlowExecutionsResponse$
|
|
1945
|
-
];
|
|
1946
|
-
var CreateConnectorProfile$ = [9, n0, _CCP,
|
|
1947
|
-
{ [_h]: ["POST", "/create-connector-profile", 200] }, () => CreateConnectorProfileRequest$, () => CreateConnectorProfileResponse$
|
|
1948
|
-
];
|
|
1949
|
-
var CreateFlow$ = [9, n0, _CF,
|
|
1950
|
-
{ [_h]: ["POST", "/create-flow", 200] }, () => CreateFlowRequest$, () => CreateFlowResponse$
|
|
1951
|
-
];
|
|
1952
|
-
var DeleteConnectorProfile$ = [9, n0, _DCPe,
|
|
1953
|
-
{ [_h]: ["POST", "/delete-connector-profile", 200] }, () => DeleteConnectorProfileRequest$, () => DeleteConnectorProfileResponse$
|
|
1954
|
-
];
|
|
1955
|
-
var DeleteFlow$ = [9, n0, _DF,
|
|
1956
|
-
{ [_h]: ["POST", "/delete-flow", 200] }, () => DeleteFlowRequest$, () => DeleteFlowResponse$
|
|
1957
|
-
];
|
|
1958
|
-
var DescribeConnector$ = [9, n0, _DC,
|
|
1959
|
-
{ [_h]: ["POST", "/describe-connector", 200] }, () => DescribeConnectorRequest$, () => DescribeConnectorResponse$
|
|
1960
|
-
];
|
|
1961
|
-
var DescribeConnectorEntity$ = [9, n0, _DCE,
|
|
1962
|
-
{ [_h]: ["POST", "/describe-connector-entity", 200] }, () => DescribeConnectorEntityRequest$, () => DescribeConnectorEntityResponse$
|
|
1963
|
-
];
|
|
1964
|
-
var DescribeConnectorProfiles$ = [9, n0, _DCPes,
|
|
1965
|
-
{ [_h]: ["POST", "/describe-connector-profiles", 200] }, () => DescribeConnectorProfilesRequest$, () => DescribeConnectorProfilesResponse$
|
|
1966
|
-
];
|
|
1967
|
-
var DescribeConnectors$ = [9, n0, _DCe,
|
|
1968
|
-
{ [_h]: ["POST", "/describe-connectors", 200] }, () => DescribeConnectorsRequest$, () => DescribeConnectorsResponse$
|
|
1969
|
-
];
|
|
1970
|
-
var DescribeFlow$ = [9, n0, _DFe,
|
|
1971
|
-
{ [_h]: ["POST", "/describe-flow", 200] }, () => DescribeFlowRequest$, () => DescribeFlowResponse$
|
|
1972
|
-
];
|
|
1973
|
-
var DescribeFlowExecutionRecords$ = [9, n0, _DFER,
|
|
1974
|
-
{ [_h]: ["POST", "/describe-flow-execution-records", 200] }, () => DescribeFlowExecutionRecordsRequest$, () => DescribeFlowExecutionRecordsResponse$
|
|
1975
|
-
];
|
|
1976
|
-
var ListConnectorEntities$ = [9, n0, _LCE,
|
|
1977
|
-
{ [_h]: ["POST", "/list-connector-entities", 200] }, () => ListConnectorEntitiesRequest$, () => ListConnectorEntitiesResponse$
|
|
1978
|
-
];
|
|
1979
|
-
var ListConnectors$ = [9, n0, _LC,
|
|
1980
|
-
{ [_h]: ["POST", "/list-connectors", 200] }, () => ListConnectorsRequest$, () => ListConnectorsResponse$
|
|
1981
|
-
];
|
|
1982
|
-
var ListFlows$ = [9, n0, _LF,
|
|
1983
|
-
{ [_h]: ["POST", "/list-flows", 200] }, () => ListFlowsRequest$, () => ListFlowsResponse$
|
|
1984
|
-
];
|
|
1985
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1986
|
-
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1987
|
-
];
|
|
1988
|
-
var RegisterConnector$ = [9, n0, _RC,
|
|
1989
|
-
{ [_h]: ["POST", "/register-connector", 200] }, () => RegisterConnectorRequest$, () => RegisterConnectorResponse$
|
|
1990
|
-
];
|
|
1991
|
-
var ResetConnectorMetadataCache$ = [9, n0, _RCMC,
|
|
1992
|
-
{ [_h]: ["POST", "/reset-connector-metadata-cache", 200] }, () => ResetConnectorMetadataCacheRequest$, () => ResetConnectorMetadataCacheResponse$
|
|
1993
|
-
];
|
|
1994
|
-
var StartFlow$ = [9, n0, _SF,
|
|
1995
|
-
{ [_h]: ["POST", "/start-flow", 200] }, () => StartFlowRequest$, () => StartFlowResponse$
|
|
1996
|
-
];
|
|
1997
|
-
var StopFlow$ = [9, n0, _SFt,
|
|
1998
|
-
{ [_h]: ["POST", "/stop-flow", 200] }, () => StopFlowRequest$, () => StopFlowResponse$
|
|
1999
|
-
];
|
|
2000
|
-
var TagResource$ = [9, n0, _TR,
|
|
2001
|
-
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
2002
|
-
];
|
|
2003
|
-
var UnregisterConnector$ = [9, n0, _UC,
|
|
2004
|
-
{ [_h]: ["POST", "/unregister-connector", 200] }, () => UnregisterConnectorRequest$, () => UnregisterConnectorResponse$
|
|
2005
|
-
];
|
|
2006
|
-
var UntagResource$ = [9, n0, _UR,
|
|
2007
|
-
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
2008
|
-
];
|
|
2009
|
-
var UpdateConnectorProfile$ = [9, n0, _UCP,
|
|
2010
|
-
{ [_h]: ["POST", "/update-connector-profile", 200] }, () => UpdateConnectorProfileRequest$, () => UpdateConnectorProfileResponse$
|
|
2011
|
-
];
|
|
2012
|
-
var UpdateConnectorRegistration$ = [9, n0, _UCRp,
|
|
2013
|
-
{ [_h]: ["POST", "/update-connector-registration", 200] }, () => UpdateConnectorRegistrationRequest$, () => UpdateConnectorRegistrationResponse$
|
|
2014
|
-
];
|
|
2015
|
-
var UpdateFlow$ = [9, n0, _UF,
|
|
2016
|
-
{ [_h]: ["POST", "/update-flow", 200] }, () => UpdateFlowRequest$, () => UpdateFlowResponse$
|
|
2017
|
-
];
|
|
2018
|
-
|
|
2019
116
|
class CancelFlowExecutionsCommand extends smithyClient.Command
|
|
2020
117
|
.classBuilder()
|
|
2021
118
|
.ep(commonParams)
|
|
@@ -2024,7 +121,7 @@ class CancelFlowExecutionsCommand extends smithyClient.Command
|
|
|
2024
121
|
})
|
|
2025
122
|
.s("SandstoneConfigurationServiceLambda", "CancelFlowExecutions", {})
|
|
2026
123
|
.n("AppflowClient", "CancelFlowExecutionsCommand")
|
|
2027
|
-
.sc(CancelFlowExecutions$)
|
|
124
|
+
.sc(schemas_0.CancelFlowExecutions$)
|
|
2028
125
|
.build() {
|
|
2029
126
|
}
|
|
2030
127
|
|
|
@@ -2036,7 +133,7 @@ class CreateConnectorProfileCommand extends smithyClient.Command
|
|
|
2036
133
|
})
|
|
2037
134
|
.s("SandstoneConfigurationServiceLambda", "CreateConnectorProfile", {})
|
|
2038
135
|
.n("AppflowClient", "CreateConnectorProfileCommand")
|
|
2039
|
-
.sc(CreateConnectorProfile$)
|
|
136
|
+
.sc(schemas_0.CreateConnectorProfile$)
|
|
2040
137
|
.build() {
|
|
2041
138
|
}
|
|
2042
139
|
|
|
@@ -2048,7 +145,7 @@ class CreateFlowCommand extends smithyClient.Command
|
|
|
2048
145
|
})
|
|
2049
146
|
.s("SandstoneConfigurationServiceLambda", "CreateFlow", {})
|
|
2050
147
|
.n("AppflowClient", "CreateFlowCommand")
|
|
2051
|
-
.sc(CreateFlow$)
|
|
148
|
+
.sc(schemas_0.CreateFlow$)
|
|
2052
149
|
.build() {
|
|
2053
150
|
}
|
|
2054
151
|
|
|
@@ -2060,7 +157,7 @@ class DeleteConnectorProfileCommand extends smithyClient.Command
|
|
|
2060
157
|
})
|
|
2061
158
|
.s("SandstoneConfigurationServiceLambda", "DeleteConnectorProfile", {})
|
|
2062
159
|
.n("AppflowClient", "DeleteConnectorProfileCommand")
|
|
2063
|
-
.sc(DeleteConnectorProfile$)
|
|
160
|
+
.sc(schemas_0.DeleteConnectorProfile$)
|
|
2064
161
|
.build() {
|
|
2065
162
|
}
|
|
2066
163
|
|
|
@@ -2072,7 +169,7 @@ class DeleteFlowCommand extends smithyClient.Command
|
|
|
2072
169
|
})
|
|
2073
170
|
.s("SandstoneConfigurationServiceLambda", "DeleteFlow", {})
|
|
2074
171
|
.n("AppflowClient", "DeleteFlowCommand")
|
|
2075
|
-
.sc(DeleteFlow$)
|
|
172
|
+
.sc(schemas_0.DeleteFlow$)
|
|
2076
173
|
.build() {
|
|
2077
174
|
}
|
|
2078
175
|
|
|
@@ -2084,7 +181,7 @@ class DescribeConnectorCommand extends smithyClient.Command
|
|
|
2084
181
|
})
|
|
2085
182
|
.s("SandstoneConfigurationServiceLambda", "DescribeConnector", {})
|
|
2086
183
|
.n("AppflowClient", "DescribeConnectorCommand")
|
|
2087
|
-
.sc(DescribeConnector$)
|
|
184
|
+
.sc(schemas_0.DescribeConnector$)
|
|
2088
185
|
.build() {
|
|
2089
186
|
}
|
|
2090
187
|
|
|
@@ -2096,7 +193,7 @@ class DescribeConnectorEntityCommand extends smithyClient.Command
|
|
|
2096
193
|
})
|
|
2097
194
|
.s("SandstoneConfigurationServiceLambda", "DescribeConnectorEntity", {})
|
|
2098
195
|
.n("AppflowClient", "DescribeConnectorEntityCommand")
|
|
2099
|
-
.sc(DescribeConnectorEntity$)
|
|
196
|
+
.sc(schemas_0.DescribeConnectorEntity$)
|
|
2100
197
|
.build() {
|
|
2101
198
|
}
|
|
2102
199
|
|
|
@@ -2108,7 +205,7 @@ class DescribeConnectorProfilesCommand extends smithyClient.Command
|
|
|
2108
205
|
})
|
|
2109
206
|
.s("SandstoneConfigurationServiceLambda", "DescribeConnectorProfiles", {})
|
|
2110
207
|
.n("AppflowClient", "DescribeConnectorProfilesCommand")
|
|
2111
|
-
.sc(DescribeConnectorProfiles$)
|
|
208
|
+
.sc(schemas_0.DescribeConnectorProfiles$)
|
|
2112
209
|
.build() {
|
|
2113
210
|
}
|
|
2114
211
|
|
|
@@ -2120,7 +217,7 @@ class DescribeConnectorsCommand extends smithyClient.Command
|
|
|
2120
217
|
})
|
|
2121
218
|
.s("SandstoneConfigurationServiceLambda", "DescribeConnectors", {})
|
|
2122
219
|
.n("AppflowClient", "DescribeConnectorsCommand")
|
|
2123
|
-
.sc(DescribeConnectors$)
|
|
220
|
+
.sc(schemas_0.DescribeConnectors$)
|
|
2124
221
|
.build() {
|
|
2125
222
|
}
|
|
2126
223
|
|
|
@@ -2132,7 +229,7 @@ class DescribeFlowCommand extends smithyClient.Command
|
|
|
2132
229
|
})
|
|
2133
230
|
.s("SandstoneConfigurationServiceLambda", "DescribeFlow", {})
|
|
2134
231
|
.n("AppflowClient", "DescribeFlowCommand")
|
|
2135
|
-
.sc(DescribeFlow$)
|
|
232
|
+
.sc(schemas_0.DescribeFlow$)
|
|
2136
233
|
.build() {
|
|
2137
234
|
}
|
|
2138
235
|
|
|
@@ -2144,7 +241,7 @@ class DescribeFlowExecutionRecordsCommand extends smithyClient.Command
|
|
|
2144
241
|
})
|
|
2145
242
|
.s("SandstoneConfigurationServiceLambda", "DescribeFlowExecutionRecords", {})
|
|
2146
243
|
.n("AppflowClient", "DescribeFlowExecutionRecordsCommand")
|
|
2147
|
-
.sc(DescribeFlowExecutionRecords$)
|
|
244
|
+
.sc(schemas_0.DescribeFlowExecutionRecords$)
|
|
2148
245
|
.build() {
|
|
2149
246
|
}
|
|
2150
247
|
|
|
@@ -2156,7 +253,7 @@ class ListConnectorEntitiesCommand extends smithyClient.Command
|
|
|
2156
253
|
})
|
|
2157
254
|
.s("SandstoneConfigurationServiceLambda", "ListConnectorEntities", {})
|
|
2158
255
|
.n("AppflowClient", "ListConnectorEntitiesCommand")
|
|
2159
|
-
.sc(ListConnectorEntities$)
|
|
256
|
+
.sc(schemas_0.ListConnectorEntities$)
|
|
2160
257
|
.build() {
|
|
2161
258
|
}
|
|
2162
259
|
|
|
@@ -2168,7 +265,7 @@ class ListConnectorsCommand extends smithyClient.Command
|
|
|
2168
265
|
})
|
|
2169
266
|
.s("SandstoneConfigurationServiceLambda", "ListConnectors", {})
|
|
2170
267
|
.n("AppflowClient", "ListConnectorsCommand")
|
|
2171
|
-
.sc(ListConnectors$)
|
|
268
|
+
.sc(schemas_0.ListConnectors$)
|
|
2172
269
|
.build() {
|
|
2173
270
|
}
|
|
2174
271
|
|
|
@@ -2180,7 +277,7 @@ class ListFlowsCommand extends smithyClient.Command
|
|
|
2180
277
|
})
|
|
2181
278
|
.s("SandstoneConfigurationServiceLambda", "ListFlows", {})
|
|
2182
279
|
.n("AppflowClient", "ListFlowsCommand")
|
|
2183
|
-
.sc(ListFlows$)
|
|
280
|
+
.sc(schemas_0.ListFlows$)
|
|
2184
281
|
.build() {
|
|
2185
282
|
}
|
|
2186
283
|
|
|
@@ -2192,7 +289,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
2192
289
|
})
|
|
2193
290
|
.s("SandstoneConfigurationServiceLambda", "ListTagsForResource", {})
|
|
2194
291
|
.n("AppflowClient", "ListTagsForResourceCommand")
|
|
2195
|
-
.sc(ListTagsForResource$)
|
|
292
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
2196
293
|
.build() {
|
|
2197
294
|
}
|
|
2198
295
|
|
|
@@ -2204,7 +301,7 @@ class RegisterConnectorCommand extends smithyClient.Command
|
|
|
2204
301
|
})
|
|
2205
302
|
.s("SandstoneConfigurationServiceLambda", "RegisterConnector", {})
|
|
2206
303
|
.n("AppflowClient", "RegisterConnectorCommand")
|
|
2207
|
-
.sc(RegisterConnector$)
|
|
304
|
+
.sc(schemas_0.RegisterConnector$)
|
|
2208
305
|
.build() {
|
|
2209
306
|
}
|
|
2210
307
|
|
|
@@ -2216,7 +313,7 @@ class ResetConnectorMetadataCacheCommand extends smithyClient.Command
|
|
|
2216
313
|
})
|
|
2217
314
|
.s("SandstoneConfigurationServiceLambda", "ResetConnectorMetadataCache", {})
|
|
2218
315
|
.n("AppflowClient", "ResetConnectorMetadataCacheCommand")
|
|
2219
|
-
.sc(ResetConnectorMetadataCache$)
|
|
316
|
+
.sc(schemas_0.ResetConnectorMetadataCache$)
|
|
2220
317
|
.build() {
|
|
2221
318
|
}
|
|
2222
319
|
|
|
@@ -2228,7 +325,7 @@ class StartFlowCommand extends smithyClient.Command
|
|
|
2228
325
|
})
|
|
2229
326
|
.s("SandstoneConfigurationServiceLambda", "StartFlow", {})
|
|
2230
327
|
.n("AppflowClient", "StartFlowCommand")
|
|
2231
|
-
.sc(StartFlow$)
|
|
328
|
+
.sc(schemas_0.StartFlow$)
|
|
2232
329
|
.build() {
|
|
2233
330
|
}
|
|
2234
331
|
|
|
@@ -2240,7 +337,7 @@ class StopFlowCommand extends smithyClient.Command
|
|
|
2240
337
|
})
|
|
2241
338
|
.s("SandstoneConfigurationServiceLambda", "StopFlow", {})
|
|
2242
339
|
.n("AppflowClient", "StopFlowCommand")
|
|
2243
|
-
.sc(StopFlow$)
|
|
340
|
+
.sc(schemas_0.StopFlow$)
|
|
2244
341
|
.build() {
|
|
2245
342
|
}
|
|
2246
343
|
|
|
@@ -2252,7 +349,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
2252
349
|
})
|
|
2253
350
|
.s("SandstoneConfigurationServiceLambda", "TagResource", {})
|
|
2254
351
|
.n("AppflowClient", "TagResourceCommand")
|
|
2255
|
-
.sc(TagResource$)
|
|
352
|
+
.sc(schemas_0.TagResource$)
|
|
2256
353
|
.build() {
|
|
2257
354
|
}
|
|
2258
355
|
|
|
@@ -2264,7 +361,7 @@ class UnregisterConnectorCommand extends smithyClient.Command
|
|
|
2264
361
|
})
|
|
2265
362
|
.s("SandstoneConfigurationServiceLambda", "UnregisterConnector", {})
|
|
2266
363
|
.n("AppflowClient", "UnregisterConnectorCommand")
|
|
2267
|
-
.sc(UnregisterConnector$)
|
|
364
|
+
.sc(schemas_0.UnregisterConnector$)
|
|
2268
365
|
.build() {
|
|
2269
366
|
}
|
|
2270
367
|
|
|
@@ -2276,7 +373,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
2276
373
|
})
|
|
2277
374
|
.s("SandstoneConfigurationServiceLambda", "UntagResource", {})
|
|
2278
375
|
.n("AppflowClient", "UntagResourceCommand")
|
|
2279
|
-
.sc(UntagResource$)
|
|
376
|
+
.sc(schemas_0.UntagResource$)
|
|
2280
377
|
.build() {
|
|
2281
378
|
}
|
|
2282
379
|
|
|
@@ -2288,7 +385,7 @@ class UpdateConnectorProfileCommand extends smithyClient.Command
|
|
|
2288
385
|
})
|
|
2289
386
|
.s("SandstoneConfigurationServiceLambda", "UpdateConnectorProfile", {})
|
|
2290
387
|
.n("AppflowClient", "UpdateConnectorProfileCommand")
|
|
2291
|
-
.sc(UpdateConnectorProfile$)
|
|
388
|
+
.sc(schemas_0.UpdateConnectorProfile$)
|
|
2292
389
|
.build() {
|
|
2293
390
|
}
|
|
2294
391
|
|
|
@@ -2300,7 +397,7 @@ class UpdateConnectorRegistrationCommand extends smithyClient.Command
|
|
|
2300
397
|
})
|
|
2301
398
|
.s("SandstoneConfigurationServiceLambda", "UpdateConnectorRegistration", {})
|
|
2302
399
|
.n("AppflowClient", "UpdateConnectorRegistrationCommand")
|
|
2303
|
-
.sc(UpdateConnectorRegistration$)
|
|
400
|
+
.sc(schemas_0.UpdateConnectorRegistration$)
|
|
2304
401
|
.build() {
|
|
2305
402
|
}
|
|
2306
403
|
|
|
@@ -2312,7 +409,7 @@ class UpdateFlowCommand extends smithyClient.Command
|
|
|
2312
409
|
})
|
|
2313
410
|
.s("SandstoneConfigurationServiceLambda", "UpdateFlow", {})
|
|
2314
411
|
.n("AppflowClient", "UpdateFlowCommand")
|
|
2315
|
-
.sc(UpdateFlow$)
|
|
412
|
+
.sc(schemas_0.UpdateFlow$)
|
|
2316
413
|
.build() {
|
|
2317
414
|
}
|
|
2318
415
|
|
|
@@ -2869,326 +966,95 @@ Object.defineProperty(exports, "__Client", {
|
|
|
2869
966
|
enumerable: true,
|
|
2870
967
|
get: function () { return smithyClient.Client; }
|
|
2871
968
|
});
|
|
2872
|
-
exports
|
|
2873
|
-
|
|
2874
|
-
|
|
969
|
+
Object.defineProperty(exports, "AppflowServiceException", {
|
|
970
|
+
enumerable: true,
|
|
971
|
+
get: function () { return AppflowServiceException.AppflowServiceException; }
|
|
972
|
+
});
|
|
2875
973
|
exports.AggregationType = AggregationType;
|
|
2876
974
|
exports.AmplitudeConnectorOperator = AmplitudeConnectorOperator;
|
|
2877
|
-
exports.AmplitudeConnectorProfileCredentials$ = AmplitudeConnectorProfileCredentials$;
|
|
2878
|
-
exports.AmplitudeConnectorProfileProperties$ = AmplitudeConnectorProfileProperties$;
|
|
2879
|
-
exports.AmplitudeMetadata$ = AmplitudeMetadata$;
|
|
2880
|
-
exports.AmplitudeSourceProperties$ = AmplitudeSourceProperties$;
|
|
2881
|
-
exports.ApiKeyCredentials$ = ApiKeyCredentials$;
|
|
2882
975
|
exports.Appflow = Appflow;
|
|
2883
976
|
exports.AppflowClient = AppflowClient;
|
|
2884
|
-
exports.AppflowServiceException = AppflowServiceException;
|
|
2885
|
-
exports.AppflowServiceException$ = AppflowServiceException$;
|
|
2886
|
-
exports.AuthParameter$ = AuthParameter$;
|
|
2887
|
-
exports.AuthenticationConfig$ = AuthenticationConfig$;
|
|
2888
977
|
exports.AuthenticationType = AuthenticationType;
|
|
2889
|
-
exports.BasicAuthCredentials$ = BasicAuthCredentials$;
|
|
2890
|
-
exports.CancelFlowExecutions$ = CancelFlowExecutions$;
|
|
2891
978
|
exports.CancelFlowExecutionsCommand = CancelFlowExecutionsCommand;
|
|
2892
|
-
exports.CancelFlowExecutionsRequest$ = CancelFlowExecutionsRequest$;
|
|
2893
|
-
exports.CancelFlowExecutionsResponse$ = CancelFlowExecutionsResponse$;
|
|
2894
979
|
exports.CatalogType = CatalogType;
|
|
2895
|
-
exports.ConflictException = ConflictException;
|
|
2896
|
-
exports.ConflictException$ = ConflictException$;
|
|
2897
980
|
exports.ConnectionMode = ConnectionMode;
|
|
2898
|
-
exports.ConnectorAuthenticationException = ConnectorAuthenticationException;
|
|
2899
|
-
exports.ConnectorAuthenticationException$ = ConnectorAuthenticationException$;
|
|
2900
|
-
exports.ConnectorConfiguration$ = ConnectorConfiguration$;
|
|
2901
|
-
exports.ConnectorDetail$ = ConnectorDetail$;
|
|
2902
|
-
exports.ConnectorEntity$ = ConnectorEntity$;
|
|
2903
|
-
exports.ConnectorEntityField$ = ConnectorEntityField$;
|
|
2904
|
-
exports.ConnectorMetadata$ = ConnectorMetadata$;
|
|
2905
|
-
exports.ConnectorOAuthRequest$ = ConnectorOAuthRequest$;
|
|
2906
|
-
exports.ConnectorOperator$ = ConnectorOperator$;
|
|
2907
|
-
exports.ConnectorProfile$ = ConnectorProfile$;
|
|
2908
|
-
exports.ConnectorProfileConfig$ = ConnectorProfileConfig$;
|
|
2909
|
-
exports.ConnectorProfileCredentials$ = ConnectorProfileCredentials$;
|
|
2910
|
-
exports.ConnectorProfileProperties$ = ConnectorProfileProperties$;
|
|
2911
|
-
exports.ConnectorProvisioningConfig$ = ConnectorProvisioningConfig$;
|
|
2912
981
|
exports.ConnectorProvisioningType = ConnectorProvisioningType;
|
|
2913
|
-
exports.ConnectorRuntimeSetting$ = ConnectorRuntimeSetting$;
|
|
2914
|
-
exports.ConnectorServerException = ConnectorServerException;
|
|
2915
|
-
exports.ConnectorServerException$ = ConnectorServerException$;
|
|
2916
982
|
exports.ConnectorType = ConnectorType;
|
|
2917
|
-
exports.CreateConnectorProfile$ = CreateConnectorProfile$;
|
|
2918
983
|
exports.CreateConnectorProfileCommand = CreateConnectorProfileCommand;
|
|
2919
|
-
exports.CreateConnectorProfileRequest$ = CreateConnectorProfileRequest$;
|
|
2920
|
-
exports.CreateConnectorProfileResponse$ = CreateConnectorProfileResponse$;
|
|
2921
|
-
exports.CreateFlow$ = CreateFlow$;
|
|
2922
984
|
exports.CreateFlowCommand = CreateFlowCommand;
|
|
2923
|
-
exports.CreateFlowRequest$ = CreateFlowRequest$;
|
|
2924
|
-
exports.CreateFlowResponse$ = CreateFlowResponse$;
|
|
2925
|
-
exports.CustomAuthConfig$ = CustomAuthConfig$;
|
|
2926
|
-
exports.CustomAuthCredentials$ = CustomAuthCredentials$;
|
|
2927
|
-
exports.CustomConnectorDestinationProperties$ = CustomConnectorDestinationProperties$;
|
|
2928
|
-
exports.CustomConnectorProfileCredentials$ = CustomConnectorProfileCredentials$;
|
|
2929
|
-
exports.CustomConnectorProfileProperties$ = CustomConnectorProfileProperties$;
|
|
2930
|
-
exports.CustomConnectorSourceProperties$ = CustomConnectorSourceProperties$;
|
|
2931
|
-
exports.CustomerProfilesDestinationProperties$ = CustomerProfilesDestinationProperties$;
|
|
2932
|
-
exports.CustomerProfilesMetadata$ = CustomerProfilesMetadata$;
|
|
2933
985
|
exports.DataPullMode = DataPullMode;
|
|
2934
|
-
exports.DataTransferApi$ = DataTransferApi$;
|
|
2935
986
|
exports.DataTransferApiType = DataTransferApiType;
|
|
2936
987
|
exports.DatadogConnectorOperator = DatadogConnectorOperator;
|
|
2937
|
-
exports.DatadogConnectorProfileCredentials$ = DatadogConnectorProfileCredentials$;
|
|
2938
|
-
exports.DatadogConnectorProfileProperties$ = DatadogConnectorProfileProperties$;
|
|
2939
|
-
exports.DatadogMetadata$ = DatadogMetadata$;
|
|
2940
|
-
exports.DatadogSourceProperties$ = DatadogSourceProperties$;
|
|
2941
|
-
exports.DeleteConnectorProfile$ = DeleteConnectorProfile$;
|
|
2942
988
|
exports.DeleteConnectorProfileCommand = DeleteConnectorProfileCommand;
|
|
2943
|
-
exports.DeleteConnectorProfileRequest$ = DeleteConnectorProfileRequest$;
|
|
2944
|
-
exports.DeleteConnectorProfileResponse$ = DeleteConnectorProfileResponse$;
|
|
2945
|
-
exports.DeleteFlow$ = DeleteFlow$;
|
|
2946
989
|
exports.DeleteFlowCommand = DeleteFlowCommand;
|
|
2947
|
-
exports.DeleteFlowRequest$ = DeleteFlowRequest$;
|
|
2948
|
-
exports.DeleteFlowResponse$ = DeleteFlowResponse$;
|
|
2949
|
-
exports.DescribeConnector$ = DescribeConnector$;
|
|
2950
990
|
exports.DescribeConnectorCommand = DescribeConnectorCommand;
|
|
2951
|
-
exports.DescribeConnectorEntity$ = DescribeConnectorEntity$;
|
|
2952
991
|
exports.DescribeConnectorEntityCommand = DescribeConnectorEntityCommand;
|
|
2953
|
-
exports.DescribeConnectorEntityRequest$ = DescribeConnectorEntityRequest$;
|
|
2954
|
-
exports.DescribeConnectorEntityResponse$ = DescribeConnectorEntityResponse$;
|
|
2955
|
-
exports.DescribeConnectorProfiles$ = DescribeConnectorProfiles$;
|
|
2956
992
|
exports.DescribeConnectorProfilesCommand = DescribeConnectorProfilesCommand;
|
|
2957
|
-
exports.DescribeConnectorProfilesRequest$ = DescribeConnectorProfilesRequest$;
|
|
2958
|
-
exports.DescribeConnectorProfilesResponse$ = DescribeConnectorProfilesResponse$;
|
|
2959
|
-
exports.DescribeConnectorRequest$ = DescribeConnectorRequest$;
|
|
2960
|
-
exports.DescribeConnectorResponse$ = DescribeConnectorResponse$;
|
|
2961
|
-
exports.DescribeConnectors$ = DescribeConnectors$;
|
|
2962
993
|
exports.DescribeConnectorsCommand = DescribeConnectorsCommand;
|
|
2963
|
-
exports.DescribeConnectorsRequest$ = DescribeConnectorsRequest$;
|
|
2964
|
-
exports.DescribeConnectorsResponse$ = DescribeConnectorsResponse$;
|
|
2965
|
-
exports.DescribeFlow$ = DescribeFlow$;
|
|
2966
994
|
exports.DescribeFlowCommand = DescribeFlowCommand;
|
|
2967
|
-
exports.DescribeFlowExecutionRecords$ = DescribeFlowExecutionRecords$;
|
|
2968
995
|
exports.DescribeFlowExecutionRecordsCommand = DescribeFlowExecutionRecordsCommand;
|
|
2969
|
-
exports.DescribeFlowExecutionRecordsRequest$ = DescribeFlowExecutionRecordsRequest$;
|
|
2970
|
-
exports.DescribeFlowExecutionRecordsResponse$ = DescribeFlowExecutionRecordsResponse$;
|
|
2971
|
-
exports.DescribeFlowRequest$ = DescribeFlowRequest$;
|
|
2972
|
-
exports.DescribeFlowResponse$ = DescribeFlowResponse$;
|
|
2973
|
-
exports.DestinationConnectorProperties$ = DestinationConnectorProperties$;
|
|
2974
|
-
exports.DestinationFieldProperties$ = DestinationFieldProperties$;
|
|
2975
|
-
exports.DestinationFlowConfig$ = DestinationFlowConfig$;
|
|
2976
996
|
exports.DynatraceConnectorOperator = DynatraceConnectorOperator;
|
|
2977
|
-
exports.DynatraceConnectorProfileCredentials$ = DynatraceConnectorProfileCredentials$;
|
|
2978
|
-
exports.DynatraceConnectorProfileProperties$ = DynatraceConnectorProfileProperties$;
|
|
2979
|
-
exports.DynatraceMetadata$ = DynatraceMetadata$;
|
|
2980
|
-
exports.DynatraceSourceProperties$ = DynatraceSourceProperties$;
|
|
2981
|
-
exports.ErrorHandlingConfig$ = ErrorHandlingConfig$;
|
|
2982
|
-
exports.ErrorInfo$ = ErrorInfo$;
|
|
2983
|
-
exports.EventBridgeDestinationProperties$ = EventBridgeDestinationProperties$;
|
|
2984
|
-
exports.EventBridgeMetadata$ = EventBridgeMetadata$;
|
|
2985
|
-
exports.ExecutionDetails$ = ExecutionDetails$;
|
|
2986
|
-
exports.ExecutionRecord$ = ExecutionRecord$;
|
|
2987
|
-
exports.ExecutionResult$ = ExecutionResult$;
|
|
2988
997
|
exports.ExecutionStatus = ExecutionStatus;
|
|
2989
|
-
exports.FieldTypeDetails$ = FieldTypeDetails$;
|
|
2990
998
|
exports.FileType = FileType;
|
|
2991
|
-
exports.FlowDefinition$ = FlowDefinition$;
|
|
2992
999
|
exports.FlowStatus = FlowStatus;
|
|
2993
|
-
exports.GlueDataCatalogConfig$ = GlueDataCatalogConfig$;
|
|
2994
1000
|
exports.GoogleAnalyticsConnectorOperator = GoogleAnalyticsConnectorOperator;
|
|
2995
|
-
exports.GoogleAnalyticsConnectorProfileCredentials$ = GoogleAnalyticsConnectorProfileCredentials$;
|
|
2996
|
-
exports.GoogleAnalyticsConnectorProfileProperties$ = GoogleAnalyticsConnectorProfileProperties$;
|
|
2997
|
-
exports.GoogleAnalyticsMetadata$ = GoogleAnalyticsMetadata$;
|
|
2998
|
-
exports.GoogleAnalyticsSourceProperties$ = GoogleAnalyticsSourceProperties$;
|
|
2999
|
-
exports.HoneycodeConnectorProfileCredentials$ = HoneycodeConnectorProfileCredentials$;
|
|
3000
|
-
exports.HoneycodeConnectorProfileProperties$ = HoneycodeConnectorProfileProperties$;
|
|
3001
|
-
exports.HoneycodeDestinationProperties$ = HoneycodeDestinationProperties$;
|
|
3002
|
-
exports.HoneycodeMetadata$ = HoneycodeMetadata$;
|
|
3003
|
-
exports.IncrementalPullConfig$ = IncrementalPullConfig$;
|
|
3004
1001
|
exports.InforNexusConnectorOperator = InforNexusConnectorOperator;
|
|
3005
|
-
exports.InforNexusConnectorProfileCredentials$ = InforNexusConnectorProfileCredentials$;
|
|
3006
|
-
exports.InforNexusConnectorProfileProperties$ = InforNexusConnectorProfileProperties$;
|
|
3007
|
-
exports.InforNexusMetadata$ = InforNexusMetadata$;
|
|
3008
|
-
exports.InforNexusSourceProperties$ = InforNexusSourceProperties$;
|
|
3009
|
-
exports.InternalServerException = InternalServerException;
|
|
3010
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
3011
|
-
exports.LambdaConnectorProvisioningConfig$ = LambdaConnectorProvisioningConfig$;
|
|
3012
|
-
exports.ListConnectorEntities$ = ListConnectorEntities$;
|
|
3013
1002
|
exports.ListConnectorEntitiesCommand = ListConnectorEntitiesCommand;
|
|
3014
|
-
exports.ListConnectorEntitiesRequest$ = ListConnectorEntitiesRequest$;
|
|
3015
|
-
exports.ListConnectorEntitiesResponse$ = ListConnectorEntitiesResponse$;
|
|
3016
|
-
exports.ListConnectors$ = ListConnectors$;
|
|
3017
1003
|
exports.ListConnectorsCommand = ListConnectorsCommand;
|
|
3018
|
-
exports.ListConnectorsRequest$ = ListConnectorsRequest$;
|
|
3019
|
-
exports.ListConnectorsResponse$ = ListConnectorsResponse$;
|
|
3020
|
-
exports.ListFlows$ = ListFlows$;
|
|
3021
1004
|
exports.ListFlowsCommand = ListFlowsCommand;
|
|
3022
|
-
exports.ListFlowsRequest$ = ListFlowsRequest$;
|
|
3023
|
-
exports.ListFlowsResponse$ = ListFlowsResponse$;
|
|
3024
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
3025
1005
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3026
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
3027
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
3028
|
-
exports.LookoutMetricsDestinationProperties$ = LookoutMetricsDestinationProperties$;
|
|
3029
1006
|
exports.MarketoConnectorOperator = MarketoConnectorOperator;
|
|
3030
|
-
exports.MarketoConnectorProfileCredentials$ = MarketoConnectorProfileCredentials$;
|
|
3031
|
-
exports.MarketoConnectorProfileProperties$ = MarketoConnectorProfileProperties$;
|
|
3032
|
-
exports.MarketoDestinationProperties$ = MarketoDestinationProperties$;
|
|
3033
|
-
exports.MarketoMetadata$ = MarketoMetadata$;
|
|
3034
|
-
exports.MarketoSourceProperties$ = MarketoSourceProperties$;
|
|
3035
|
-
exports.MetadataCatalogConfig$ = MetadataCatalogConfig$;
|
|
3036
|
-
exports.MetadataCatalogDetail$ = MetadataCatalogDetail$;
|
|
3037
|
-
exports.OAuth2Credentials$ = OAuth2Credentials$;
|
|
3038
|
-
exports.OAuth2CustomParameter$ = OAuth2CustomParameter$;
|
|
3039
1007
|
exports.OAuth2CustomPropType = OAuth2CustomPropType;
|
|
3040
|
-
exports.OAuth2Defaults$ = OAuth2Defaults$;
|
|
3041
1008
|
exports.OAuth2GrantType = OAuth2GrantType;
|
|
3042
|
-
exports.OAuth2Properties$ = OAuth2Properties$;
|
|
3043
|
-
exports.OAuthCredentials$ = OAuthCredentials$;
|
|
3044
|
-
exports.OAuthProperties$ = OAuthProperties$;
|
|
3045
1009
|
exports.Operator = Operator;
|
|
3046
1010
|
exports.OperatorPropertiesKeys = OperatorPropertiesKeys;
|
|
3047
1011
|
exports.Operators = Operators;
|
|
3048
1012
|
exports.PardotConnectorOperator = PardotConnectorOperator;
|
|
3049
|
-
exports.PardotConnectorProfileCredentials$ = PardotConnectorProfileCredentials$;
|
|
3050
|
-
exports.PardotConnectorProfileProperties$ = PardotConnectorProfileProperties$;
|
|
3051
|
-
exports.PardotMetadata$ = PardotMetadata$;
|
|
3052
|
-
exports.PardotSourceProperties$ = PardotSourceProperties$;
|
|
3053
1013
|
exports.PathPrefix = PathPrefix;
|
|
3054
|
-
exports.PrefixConfig$ = PrefixConfig$;
|
|
3055
1014
|
exports.PrefixFormat = PrefixFormat;
|
|
3056
1015
|
exports.PrefixType = PrefixType;
|
|
3057
1016
|
exports.PrivateConnectionProvisioningFailureCause = PrivateConnectionProvisioningFailureCause;
|
|
3058
|
-
exports.PrivateConnectionProvisioningState$ = PrivateConnectionProvisioningState$;
|
|
3059
1017
|
exports.PrivateConnectionProvisioningStatus = PrivateConnectionProvisioningStatus;
|
|
3060
|
-
exports.Range$ = Range$;
|
|
3061
|
-
exports.RedshiftConnectorProfileCredentials$ = RedshiftConnectorProfileCredentials$;
|
|
3062
|
-
exports.RedshiftConnectorProfileProperties$ = RedshiftConnectorProfileProperties$;
|
|
3063
|
-
exports.RedshiftDestinationProperties$ = RedshiftDestinationProperties$;
|
|
3064
|
-
exports.RedshiftMetadata$ = RedshiftMetadata$;
|
|
3065
|
-
exports.RegisterConnector$ = RegisterConnector$;
|
|
3066
1018
|
exports.RegisterConnectorCommand = RegisterConnectorCommand;
|
|
3067
|
-
exports.RegisterConnectorRequest$ = RegisterConnectorRequest$;
|
|
3068
|
-
exports.RegisterConnectorResponse$ = RegisterConnectorResponse$;
|
|
3069
|
-
exports.RegistrationOutput$ = RegistrationOutput$;
|
|
3070
|
-
exports.ResetConnectorMetadataCache$ = ResetConnectorMetadataCache$;
|
|
3071
1019
|
exports.ResetConnectorMetadataCacheCommand = ResetConnectorMetadataCacheCommand;
|
|
3072
|
-
exports.ResetConnectorMetadataCacheRequest$ = ResetConnectorMetadataCacheRequest$;
|
|
3073
|
-
exports.ResetConnectorMetadataCacheResponse$ = ResetConnectorMetadataCacheResponse$;
|
|
3074
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3075
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
3076
1020
|
exports.S3ConnectorOperator = S3ConnectorOperator;
|
|
3077
|
-
exports.S3DestinationProperties$ = S3DestinationProperties$;
|
|
3078
1021
|
exports.S3InputFileType = S3InputFileType;
|
|
3079
|
-
exports.S3InputFormatConfig$ = S3InputFormatConfig$;
|
|
3080
|
-
exports.S3Metadata$ = S3Metadata$;
|
|
3081
|
-
exports.S3OutputFormatConfig$ = S3OutputFormatConfig$;
|
|
3082
|
-
exports.S3SourceProperties$ = S3SourceProperties$;
|
|
3083
1022
|
exports.SAPODataConnectorOperator = SAPODataConnectorOperator;
|
|
3084
|
-
exports.SAPODataConnectorProfileCredentials$ = SAPODataConnectorProfileCredentials$;
|
|
3085
|
-
exports.SAPODataConnectorProfileProperties$ = SAPODataConnectorProfileProperties$;
|
|
3086
|
-
exports.SAPODataDestinationProperties$ = SAPODataDestinationProperties$;
|
|
3087
|
-
exports.SAPODataMetadata$ = SAPODataMetadata$;
|
|
3088
|
-
exports.SAPODataPaginationConfig$ = SAPODataPaginationConfig$;
|
|
3089
|
-
exports.SAPODataParallelismConfig$ = SAPODataParallelismConfig$;
|
|
3090
|
-
exports.SAPODataSourceProperties$ = SAPODataSourceProperties$;
|
|
3091
1023
|
exports.SalesforceConnectorOperator = SalesforceConnectorOperator;
|
|
3092
|
-
exports.SalesforceConnectorProfileCredentials$ = SalesforceConnectorProfileCredentials$;
|
|
3093
|
-
exports.SalesforceConnectorProfileProperties$ = SalesforceConnectorProfileProperties$;
|
|
3094
1024
|
exports.SalesforceDataTransferApi = SalesforceDataTransferApi;
|
|
3095
|
-
exports.SalesforceDestinationProperties$ = SalesforceDestinationProperties$;
|
|
3096
|
-
exports.SalesforceMetadata$ = SalesforceMetadata$;
|
|
3097
|
-
exports.SalesforceSourceProperties$ = SalesforceSourceProperties$;
|
|
3098
1025
|
exports.ScheduleFrequencyType = ScheduleFrequencyType;
|
|
3099
|
-
exports.ScheduledTriggerProperties$ = ScheduledTriggerProperties$;
|
|
3100
1026
|
exports.ServiceNowConnectorOperator = ServiceNowConnectorOperator;
|
|
3101
|
-
exports.ServiceNowConnectorProfileCredentials$ = ServiceNowConnectorProfileCredentials$;
|
|
3102
|
-
exports.ServiceNowConnectorProfileProperties$ = ServiceNowConnectorProfileProperties$;
|
|
3103
|
-
exports.ServiceNowMetadata$ = ServiceNowMetadata$;
|
|
3104
|
-
exports.ServiceNowSourceProperties$ = ServiceNowSourceProperties$;
|
|
3105
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
3106
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
3107
1027
|
exports.SingularConnectorOperator = SingularConnectorOperator;
|
|
3108
|
-
exports.SingularConnectorProfileCredentials$ = SingularConnectorProfileCredentials$;
|
|
3109
|
-
exports.SingularConnectorProfileProperties$ = SingularConnectorProfileProperties$;
|
|
3110
|
-
exports.SingularMetadata$ = SingularMetadata$;
|
|
3111
|
-
exports.SingularSourceProperties$ = SingularSourceProperties$;
|
|
3112
1028
|
exports.SlackConnectorOperator = SlackConnectorOperator;
|
|
3113
|
-
exports.SlackConnectorProfileCredentials$ = SlackConnectorProfileCredentials$;
|
|
3114
|
-
exports.SlackConnectorProfileProperties$ = SlackConnectorProfileProperties$;
|
|
3115
|
-
exports.SlackMetadata$ = SlackMetadata$;
|
|
3116
|
-
exports.SlackSourceProperties$ = SlackSourceProperties$;
|
|
3117
|
-
exports.SnowflakeConnectorProfileCredentials$ = SnowflakeConnectorProfileCredentials$;
|
|
3118
|
-
exports.SnowflakeConnectorProfileProperties$ = SnowflakeConnectorProfileProperties$;
|
|
3119
|
-
exports.SnowflakeDestinationProperties$ = SnowflakeDestinationProperties$;
|
|
3120
|
-
exports.SnowflakeMetadata$ = SnowflakeMetadata$;
|
|
3121
|
-
exports.SourceConnectorProperties$ = SourceConnectorProperties$;
|
|
3122
|
-
exports.SourceFieldProperties$ = SourceFieldProperties$;
|
|
3123
|
-
exports.SourceFlowConfig$ = SourceFlowConfig$;
|
|
3124
|
-
exports.StartFlow$ = StartFlow$;
|
|
3125
1029
|
exports.StartFlowCommand = StartFlowCommand;
|
|
3126
|
-
exports.StartFlowRequest$ = StartFlowRequest$;
|
|
3127
|
-
exports.StartFlowResponse$ = StartFlowResponse$;
|
|
3128
|
-
exports.StopFlow$ = StopFlow$;
|
|
3129
1030
|
exports.StopFlowCommand = StopFlowCommand;
|
|
3130
|
-
exports.StopFlowRequest$ = StopFlowRequest$;
|
|
3131
|
-
exports.StopFlowResponse$ = StopFlowResponse$;
|
|
3132
|
-
exports.SuccessResponseHandlingConfig$ = SuccessResponseHandlingConfig$;
|
|
3133
1031
|
exports.SupportedDataTransferType = SupportedDataTransferType;
|
|
3134
|
-
exports.SupportedFieldTypeDetails$ = SupportedFieldTypeDetails$;
|
|
3135
|
-
exports.TagResource$ = TagResource$;
|
|
3136
1032
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3137
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3138
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3139
|
-
exports.Task$ = Task$;
|
|
3140
1033
|
exports.TaskType = TaskType;
|
|
3141
|
-
exports.ThrottlingException = ThrottlingException;
|
|
3142
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
3143
1034
|
exports.TrendmicroConnectorOperator = TrendmicroConnectorOperator;
|
|
3144
|
-
exports.TrendmicroConnectorProfileCredentials$ = TrendmicroConnectorProfileCredentials$;
|
|
3145
|
-
exports.TrendmicroConnectorProfileProperties$ = TrendmicroConnectorProfileProperties$;
|
|
3146
|
-
exports.TrendmicroMetadata$ = TrendmicroMetadata$;
|
|
3147
|
-
exports.TrendmicroSourceProperties$ = TrendmicroSourceProperties$;
|
|
3148
|
-
exports.TriggerConfig$ = TriggerConfig$;
|
|
3149
|
-
exports.TriggerProperties$ = TriggerProperties$;
|
|
3150
1035
|
exports.TriggerType = TriggerType;
|
|
3151
|
-
exports.UnregisterConnector$ = UnregisterConnector$;
|
|
3152
1036
|
exports.UnregisterConnectorCommand = UnregisterConnectorCommand;
|
|
3153
|
-
exports.UnregisterConnectorRequest$ = UnregisterConnectorRequest$;
|
|
3154
|
-
exports.UnregisterConnectorResponse$ = UnregisterConnectorResponse$;
|
|
3155
|
-
exports.UnsupportedOperationException = UnsupportedOperationException;
|
|
3156
|
-
exports.UnsupportedOperationException$ = UnsupportedOperationException$;
|
|
3157
|
-
exports.UntagResource$ = UntagResource$;
|
|
3158
1037
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3159
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3160
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
3161
|
-
exports.UpdateConnectorProfile$ = UpdateConnectorProfile$;
|
|
3162
1038
|
exports.UpdateConnectorProfileCommand = UpdateConnectorProfileCommand;
|
|
3163
|
-
exports.UpdateConnectorProfileRequest$ = UpdateConnectorProfileRequest$;
|
|
3164
|
-
exports.UpdateConnectorProfileResponse$ = UpdateConnectorProfileResponse$;
|
|
3165
|
-
exports.UpdateConnectorRegistration$ = UpdateConnectorRegistration$;
|
|
3166
1039
|
exports.UpdateConnectorRegistrationCommand = UpdateConnectorRegistrationCommand;
|
|
3167
|
-
exports.UpdateConnectorRegistrationRequest$ = UpdateConnectorRegistrationRequest$;
|
|
3168
|
-
exports.UpdateConnectorRegistrationResponse$ = UpdateConnectorRegistrationResponse$;
|
|
3169
|
-
exports.UpdateFlow$ = UpdateFlow$;
|
|
3170
1040
|
exports.UpdateFlowCommand = UpdateFlowCommand;
|
|
3171
|
-
exports.UpdateFlowRequest$ = UpdateFlowRequest$;
|
|
3172
|
-
exports.UpdateFlowResponse$ = UpdateFlowResponse$;
|
|
3173
|
-
exports.UpsolverDestinationProperties$ = UpsolverDestinationProperties$;
|
|
3174
|
-
exports.UpsolverMetadata$ = UpsolverMetadata$;
|
|
3175
|
-
exports.UpsolverS3OutputFormatConfig$ = UpsolverS3OutputFormatConfig$;
|
|
3176
|
-
exports.ValidationException = ValidationException;
|
|
3177
|
-
exports.ValidationException$ = ValidationException$;
|
|
3178
1041
|
exports.VeevaConnectorOperator = VeevaConnectorOperator;
|
|
3179
|
-
exports.VeevaConnectorProfileCredentials$ = VeevaConnectorProfileCredentials$;
|
|
3180
|
-
exports.VeevaConnectorProfileProperties$ = VeevaConnectorProfileProperties$;
|
|
3181
|
-
exports.VeevaMetadata$ = VeevaMetadata$;
|
|
3182
|
-
exports.VeevaSourceProperties$ = VeevaSourceProperties$;
|
|
3183
1042
|
exports.WriteOperationType = WriteOperationType;
|
|
3184
1043
|
exports.ZendeskConnectorOperator = ZendeskConnectorOperator;
|
|
3185
|
-
exports.ZendeskConnectorProfileCredentials$ = ZendeskConnectorProfileCredentials$;
|
|
3186
|
-
exports.ZendeskConnectorProfileProperties$ = ZendeskConnectorProfileProperties$;
|
|
3187
|
-
exports.ZendeskDestinationProperties$ = ZendeskDestinationProperties$;
|
|
3188
|
-
exports.ZendeskMetadata$ = ZendeskMetadata$;
|
|
3189
|
-
exports.ZendeskSourceProperties$ = ZendeskSourceProperties$;
|
|
3190
1044
|
exports.paginateDescribeConnectorProfiles = paginateDescribeConnectorProfiles;
|
|
3191
1045
|
exports.paginateDescribeConnectors = paginateDescribeConnectors;
|
|
3192
1046
|
exports.paginateDescribeFlowExecutionRecords = paginateDescribeFlowExecutionRecords;
|
|
3193
1047
|
exports.paginateListConnectors = paginateListConnectors;
|
|
3194
1048
|
exports.paginateListFlows = paginateListFlows;
|
|
1049
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
1050
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1051
|
+
enumerable: true,
|
|
1052
|
+
get: function () { return schemas_0[k]; }
|
|
1053
|
+
});
|
|
1054
|
+
});
|
|
1055
|
+
Object.keys(errors).forEach(function (k) {
|
|
1056
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
1057
|
+
enumerable: true,
|
|
1058
|
+
get: function () { return errors[k]; }
|
|
1059
|
+
});
|
|
1060
|
+
});
|