@aws-sdk/client-appflow 3.986.0 → 3.988.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
|
@@ -6,6 +6,7 @@ import { fromBase64, toBase64 } from "@smithy/util-base64";
|
|
|
6
6
|
import { fromUtf8, toUtf8 } from "@smithy/util-utf8";
|
|
7
7
|
import { defaultAppflowHttpAuthSchemeProvider } from "./auth/httpAuthSchemeProvider";
|
|
8
8
|
import { defaultEndpointResolver } from "./endpoint/endpointResolver";
|
|
9
|
+
import { errorTypeRegistries } from "./schemas/schemas_0";
|
|
9
10
|
export const getRuntimeConfig = (config) => {
|
|
10
11
|
return {
|
|
11
12
|
apiVersion: "2020-08-23",
|
|
@@ -26,6 +27,7 @@ export const getRuntimeConfig = (config) => {
|
|
|
26
27
|
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
28
|
protocolSettings: config?.protocolSettings ?? {
|
|
28
29
|
defaultNamespace: "com.amazonaws.appflow",
|
|
30
|
+
errorTypeRegistries,
|
|
29
31
|
version: "2020-08-23",
|
|
30
32
|
serviceTarget: "SandstoneConfigurationServiceLambda",
|
|
31
33
|
},
|
|
@@ -512,7 +512,7 @@ const _rP = "recordsProcessed";
|
|
|
512
512
|
const _rT = "refreshToken";
|
|
513
513
|
const _rU = "redirectUri";
|
|
514
514
|
const _re = "region";
|
|
515
|
-
const _s = "
|
|
515
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.appflow";
|
|
516
516
|
const _sA = "startedAt";
|
|
517
517
|
const _sAK = "secretAccessKey";
|
|
518
518
|
const _sAV = "supportedApiVersions";
|
|
@@ -543,8 +543,8 @@ const _sTT = "supportedTriggerTypes";
|
|
|
543
543
|
const _sV = "schemaVersion";
|
|
544
544
|
const _sVu = "supportedValues";
|
|
545
545
|
const _sWO = "supportedWriteOperations";
|
|
546
|
+
const _sc = "scope";
|
|
546
547
|
const _se = "server";
|
|
547
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.appflow";
|
|
548
548
|
const _st = "status";
|
|
549
549
|
const _sta = "stage";
|
|
550
550
|
const _t = "tasks";
|
|
@@ -576,6 +576,74 @@ const n0 = "com.amazonaws.appflow";
|
|
|
576
576
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
577
577
|
import { AppflowServiceException } from "../models/AppflowServiceException";
|
|
578
578
|
import { AccessDeniedException, ConflictException, ConnectorAuthenticationException, ConnectorServerException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, UnsupportedOperationException, ValidationException, } from "../models/errors";
|
|
579
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
580
|
+
export var AppflowServiceException$ = [-3, _s, "AppflowServiceException", 0, [], []];
|
|
581
|
+
_s_registry.registerError(AppflowServiceException$, AppflowServiceException);
|
|
582
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
583
|
+
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
584
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
585
|
+
[_m],
|
|
586
|
+
[0]
|
|
587
|
+
];
|
|
588
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
589
|
+
export var ConflictException$ = [-3, n0, _CE,
|
|
590
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
591
|
+
[_m],
|
|
592
|
+
[0]
|
|
593
|
+
];
|
|
594
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
595
|
+
export var ConnectorAuthenticationException$ = [-3, n0, _CAE,
|
|
596
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
597
|
+
[_m],
|
|
598
|
+
[0]
|
|
599
|
+
];
|
|
600
|
+
n0_registry.registerError(ConnectorAuthenticationException$, ConnectorAuthenticationException);
|
|
601
|
+
export var ConnectorServerException$ = [-3, n0, _CSE,
|
|
602
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
603
|
+
[_m],
|
|
604
|
+
[0]
|
|
605
|
+
];
|
|
606
|
+
n0_registry.registerError(ConnectorServerException$, ConnectorServerException);
|
|
607
|
+
export var InternalServerException$ = [-3, n0, _ISE,
|
|
608
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
609
|
+
[_m],
|
|
610
|
+
[0]
|
|
611
|
+
];
|
|
612
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
613
|
+
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
614
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
615
|
+
[_m],
|
|
616
|
+
[0]
|
|
617
|
+
];
|
|
618
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
619
|
+
export var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
620
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
621
|
+
[_m],
|
|
622
|
+
[0]
|
|
623
|
+
];
|
|
624
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
625
|
+
export var ThrottlingException$ = [-3, n0, _TE,
|
|
626
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
627
|
+
[_m],
|
|
628
|
+
[0]
|
|
629
|
+
];
|
|
630
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
631
|
+
export var UnsupportedOperationException$ = [-3, n0, _UOE,
|
|
632
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
633
|
+
[_m],
|
|
634
|
+
[0]
|
|
635
|
+
];
|
|
636
|
+
n0_registry.registerError(UnsupportedOperationException$, UnsupportedOperationException);
|
|
637
|
+
export var ValidationException$ = [-3, n0, _VE,
|
|
638
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
639
|
+
[_m],
|
|
640
|
+
[0]
|
|
641
|
+
];
|
|
642
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
643
|
+
export const errorTypeRegistries = [
|
|
644
|
+
_s_registry,
|
|
645
|
+
n0_registry,
|
|
646
|
+
];
|
|
579
647
|
var AccessKeyId = [0, n0, _AKI, 8, 0];
|
|
580
648
|
var AccessToken = [0, n0, _AT, 8, 0];
|
|
581
649
|
var ApiKey = [0, n0, _AK, 8, 0];
|
|
@@ -587,12 +655,6 @@ var CredentialsMapValue = [0, n0, _CMV, 8, 0];
|
|
|
587
655
|
var JwtToken = [0, n0, _JT, 8, 0];
|
|
588
656
|
var Password = [0, n0, _P, 8, 0];
|
|
589
657
|
var SecretKey = [0, n0, _SK, 8, 0];
|
|
590
|
-
export var AccessDeniedException$ = [-3, n0, _ADE,
|
|
591
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
592
|
-
[_m],
|
|
593
|
-
[0]
|
|
594
|
-
];
|
|
595
|
-
TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
596
658
|
export var AggregationConfig$ = [3, n0, _AC,
|
|
597
659
|
0,
|
|
598
660
|
[_aT, _tFS],
|
|
@@ -648,18 +710,6 @@ export var CancelFlowExecutionsResponse$ = [3, n0, _CFERa,
|
|
|
648
710
|
[_iE],
|
|
649
711
|
[64 | 0]
|
|
650
712
|
];
|
|
651
|
-
export var ConflictException$ = [-3, n0, _CE,
|
|
652
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
653
|
-
[_m],
|
|
654
|
-
[0]
|
|
655
|
-
];
|
|
656
|
-
TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
657
|
-
export var ConnectorAuthenticationException$ = [-3, n0, _CAE,
|
|
658
|
-
{ [_e]: _c, [_hE]: 401 },
|
|
659
|
-
[_m],
|
|
660
|
-
[0]
|
|
661
|
-
];
|
|
662
|
-
TypeRegistry.for(n0).registerError(ConnectorAuthenticationException$, ConnectorAuthenticationException);
|
|
663
713
|
export var ConnectorConfiguration$ = [3, n0, _CC,
|
|
664
714
|
0,
|
|
665
715
|
[_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],
|
|
@@ -722,15 +772,9 @@ export var ConnectorProvisioningConfig$ = [3, n0, _CPCon,
|
|
|
722
772
|
];
|
|
723
773
|
export var ConnectorRuntimeSetting$ = [3, n0, _CRS,
|
|
724
774
|
0,
|
|
725
|
-
[_k, _dT, _iR, _l, _d,
|
|
775
|
+
[_k, _dT, _iR, _l, _d, _sc, _cSVO],
|
|
726
776
|
[0, 0, 2, 0, 0, 0, 64 | 0]
|
|
727
777
|
];
|
|
728
|
-
export var ConnectorServerException$ = [-3, n0, _CSE,
|
|
729
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
730
|
-
[_m],
|
|
731
|
-
[0]
|
|
732
|
-
];
|
|
733
|
-
TypeRegistry.for(n0).registerError(ConnectorServerException$, ConnectorServerException);
|
|
734
778
|
export var CreateConnectorProfileRequest$ = [3, n0, _CCPR,
|
|
735
779
|
0,
|
|
736
780
|
[_cPN, _cT, _cMon, _cPCon, _kA, _cL, _cTl],
|
|
@@ -1046,12 +1090,6 @@ export var InforNexusSourceProperties$ = [3, n0, _INSP,
|
|
|
1046
1090
|
[_o],
|
|
1047
1091
|
[0], 1
|
|
1048
1092
|
];
|
|
1049
|
-
export var InternalServerException$ = [-3, n0, _ISE,
|
|
1050
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
1051
|
-
[_m],
|
|
1052
|
-
[0]
|
|
1053
|
-
];
|
|
1054
|
-
TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
1055
1093
|
export var LambdaConnectorProvisioningConfig$ = [3, n0, _LCPC,
|
|
1056
1094
|
0,
|
|
1057
1095
|
[_lA],
|
|
@@ -1247,12 +1285,6 @@ export var ResetConnectorMetadataCacheResponse$ = [3, n0, _RCMCRe,
|
|
|
1247
1285
|
[],
|
|
1248
1286
|
[]
|
|
1249
1287
|
];
|
|
1250
|
-
export var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1251
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
1252
|
-
[_m],
|
|
1253
|
-
[0]
|
|
1254
|
-
];
|
|
1255
|
-
TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1256
1288
|
export var S3DestinationProperties$ = [3, n0, _SDP,
|
|
1257
1289
|
0,
|
|
1258
1290
|
[_bN, _bP, _sOFC],
|
|
@@ -1363,12 +1395,6 @@ export var ServiceNowSourceProperties$ = [3, n0, _SNSP,
|
|
|
1363
1395
|
[_o],
|
|
1364
1396
|
[0], 1
|
|
1365
1397
|
];
|
|
1366
|
-
export var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
1367
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
1368
|
-
[_m],
|
|
1369
|
-
[0]
|
|
1370
|
-
];
|
|
1371
|
-
TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
1372
1398
|
export var SingularConnectorProfileCredentials$ = [3, n0, _SCPCi,
|
|
1373
1399
|
0,
|
|
1374
1400
|
[_aK],
|
|
@@ -1489,12 +1515,6 @@ export var Task$ = [3, n0, _Ta,
|
|
|
1489
1515
|
[_sF, _tTa, _cOo, _dF, _tPa],
|
|
1490
1516
|
[64 | 0, 0, () => ConnectorOperator$, 0, 128 | 0], 2
|
|
1491
1517
|
];
|
|
1492
|
-
export var ThrottlingException$ = [-3, n0, _TE,
|
|
1493
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
1494
|
-
[_m],
|
|
1495
|
-
[0]
|
|
1496
|
-
];
|
|
1497
|
-
TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
1498
1518
|
export var TrendmicroConnectorProfileCredentials$ = [3, n0, _TCPC,
|
|
1499
1519
|
0,
|
|
1500
1520
|
[_aSK],
|
|
@@ -1535,12 +1555,6 @@ export var UnregisterConnectorResponse$ = [3, n0, _UCRn,
|
|
|
1535
1555
|
[],
|
|
1536
1556
|
[]
|
|
1537
1557
|
];
|
|
1538
|
-
export var UnsupportedOperationException$ = [-3, n0, _UOE,
|
|
1539
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1540
|
-
[_m],
|
|
1541
|
-
[0]
|
|
1542
|
-
];
|
|
1543
|
-
TypeRegistry.for(n0).registerError(UnsupportedOperationException$, UnsupportedOperationException);
|
|
1544
1558
|
export var UntagResourceRequest$ = [3, n0, _URR,
|
|
1545
1559
|
0,
|
|
1546
1560
|
[_rAe, _tK],
|
|
@@ -1596,12 +1610,6 @@ export var UpsolverS3OutputFormatConfig$ = [3, n0, _USOFC,
|
|
|
1596
1610
|
[_pC, _fTi, _aCg],
|
|
1597
1611
|
[() => PrefixConfig$, 0, () => AggregationConfig$], 1
|
|
1598
1612
|
];
|
|
1599
|
-
export var ValidationException$ = [-3, n0, _VE,
|
|
1600
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
1601
|
-
[_m],
|
|
1602
|
-
[0]
|
|
1603
|
-
];
|
|
1604
|
-
TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
1605
1613
|
export var VeevaConnectorProfileCredentials$ = [3, n0, _VCPC,
|
|
1606
1614
|
0,
|
|
1607
1615
|
[_u, _p],
|
|
@@ -1647,8 +1655,6 @@ export var ZendeskSourceProperties$ = [3, n0, _ZSP,
|
|
|
1647
1655
|
[_o],
|
|
1648
1656
|
[0], 1
|
|
1649
1657
|
];
|
|
1650
|
-
export var AppflowServiceException$ = [-3, _sm, "AppflowServiceException", 0, [], []];
|
|
1651
|
-
TypeRegistry.for(_sm).registerError(AppflowServiceException$, AppflowServiceException);
|
|
1652
1658
|
var AuthCodeUrlList = 64 | 0;
|
|
1653
1659
|
var AuthParameterList = [1, n0, _APL,
|
|
1654
1660
|
0, () => AuthParameter$
|
|
@@ -1,5 +1,22 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import type { StaticErrorSchema, StaticOperationSchema, StaticStructureSchema } from "@smithy/types";
|
|
3
|
+
export declare var AppflowServiceException$: StaticErrorSchema;
|
|
2
4
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
5
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
6
|
+
export declare var ConnectorAuthenticationException$: StaticErrorSchema;
|
|
7
|
+
export declare var ConnectorServerException$: StaticErrorSchema;
|
|
8
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
9
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
10
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
11
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
12
|
+
export declare var UnsupportedOperationException$: StaticErrorSchema;
|
|
13
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
14
|
+
/**
|
|
15
|
+
* TypeRegistry instances containing modeled errors.
|
|
16
|
+
* @internal
|
|
17
|
+
*
|
|
18
|
+
*/
|
|
19
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
3
20
|
export declare var AggregationConfig$: StaticStructureSchema;
|
|
4
21
|
export declare var AmplitudeConnectorProfileCredentials$: StaticStructureSchema;
|
|
5
22
|
export declare var AmplitudeConnectorProfileProperties$: StaticStructureSchema;
|
|
@@ -11,8 +28,6 @@ export declare var AuthParameter$: StaticStructureSchema;
|
|
|
11
28
|
export declare var BasicAuthCredentials$: StaticStructureSchema;
|
|
12
29
|
export declare var CancelFlowExecutionsRequest$: StaticStructureSchema;
|
|
13
30
|
export declare var CancelFlowExecutionsResponse$: StaticStructureSchema;
|
|
14
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
15
|
-
export declare var ConnectorAuthenticationException$: StaticErrorSchema;
|
|
16
31
|
export declare var ConnectorConfiguration$: StaticStructureSchema;
|
|
17
32
|
export declare var ConnectorDetail$: StaticStructureSchema;
|
|
18
33
|
export declare var ConnectorEntity$: StaticStructureSchema;
|
|
@@ -26,7 +41,6 @@ export declare var ConnectorProfileCredentials$: StaticStructureSchema;
|
|
|
26
41
|
export declare var ConnectorProfileProperties$: StaticStructureSchema;
|
|
27
42
|
export declare var ConnectorProvisioningConfig$: StaticStructureSchema;
|
|
28
43
|
export declare var ConnectorRuntimeSetting$: StaticStructureSchema;
|
|
29
|
-
export declare var ConnectorServerException$: StaticErrorSchema;
|
|
30
44
|
export declare var CreateConnectorProfileRequest$: StaticStructureSchema;
|
|
31
45
|
export declare var CreateConnectorProfileResponse$: StaticStructureSchema;
|
|
32
46
|
export declare var CreateFlowRequest$: StaticStructureSchema;
|
|
@@ -90,7 +104,6 @@ export declare var InforNexusConnectorProfileCredentials$: StaticStructureSchema
|
|
|
90
104
|
export declare var InforNexusConnectorProfileProperties$: StaticStructureSchema;
|
|
91
105
|
export declare var InforNexusMetadata$: StaticStructureSchema;
|
|
92
106
|
export declare var InforNexusSourceProperties$: StaticStructureSchema;
|
|
93
|
-
export declare var InternalServerException$: StaticErrorSchema;
|
|
94
107
|
export declare var LambdaConnectorProvisioningConfig$: StaticStructureSchema;
|
|
95
108
|
export declare var ListConnectorEntitiesRequest$: StaticStructureSchema;
|
|
96
109
|
export declare var ListConnectorEntitiesResponse$: StaticStructureSchema;
|
|
@@ -130,7 +143,6 @@ export declare var RegisterConnectorResponse$: StaticStructureSchema;
|
|
|
130
143
|
export declare var RegistrationOutput$: StaticStructureSchema;
|
|
131
144
|
export declare var ResetConnectorMetadataCacheRequest$: StaticStructureSchema;
|
|
132
145
|
export declare var ResetConnectorMetadataCacheResponse$: StaticStructureSchema;
|
|
133
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
134
146
|
export declare var S3DestinationProperties$: StaticStructureSchema;
|
|
135
147
|
export declare var S3InputFormatConfig$: StaticStructureSchema;
|
|
136
148
|
export declare var S3Metadata$: StaticStructureSchema;
|
|
@@ -153,7 +165,6 @@ export declare var ServiceNowConnectorProfileCredentials$: StaticStructureSchema
|
|
|
153
165
|
export declare var ServiceNowConnectorProfileProperties$: StaticStructureSchema;
|
|
154
166
|
export declare var ServiceNowMetadata$: StaticStructureSchema;
|
|
155
167
|
export declare var ServiceNowSourceProperties$: StaticStructureSchema;
|
|
156
|
-
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
157
168
|
export declare var SingularConnectorProfileCredentials$: StaticStructureSchema;
|
|
158
169
|
export declare var SingularConnectorProfileProperties$: StaticStructureSchema;
|
|
159
170
|
export declare var SingularMetadata$: StaticStructureSchema;
|
|
@@ -178,7 +189,6 @@ export declare var SupportedFieldTypeDetails$: StaticStructureSchema;
|
|
|
178
189
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
179
190
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
180
191
|
export declare var Task$: StaticStructureSchema;
|
|
181
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
182
192
|
export declare var TrendmicroConnectorProfileCredentials$: StaticStructureSchema;
|
|
183
193
|
export declare var TrendmicroConnectorProfileProperties$: StaticStructureSchema;
|
|
184
194
|
export declare var TrendmicroMetadata$: StaticStructureSchema;
|
|
@@ -187,7 +197,6 @@ export declare var TriggerConfig$: StaticStructureSchema;
|
|
|
187
197
|
export declare var TriggerProperties$: StaticStructureSchema;
|
|
188
198
|
export declare var UnregisterConnectorRequest$: StaticStructureSchema;
|
|
189
199
|
export declare var UnregisterConnectorResponse$: StaticStructureSchema;
|
|
190
|
-
export declare var UnsupportedOperationException$: StaticErrorSchema;
|
|
191
200
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
192
201
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
193
202
|
export declare var UpdateConnectorProfileRequest$: StaticStructureSchema;
|
|
@@ -199,7 +208,6 @@ export declare var UpdateFlowResponse$: StaticStructureSchema;
|
|
|
199
208
|
export declare var UpsolverDestinationProperties$: StaticStructureSchema;
|
|
200
209
|
export declare var UpsolverMetadata$: StaticStructureSchema;
|
|
201
210
|
export declare var UpsolverS3OutputFormatConfig$: StaticStructureSchema;
|
|
202
|
-
export declare var ValidationException$: StaticErrorSchema;
|
|
203
211
|
export declare var VeevaConnectorProfileCredentials$: StaticStructureSchema;
|
|
204
212
|
export declare var VeevaConnectorProfileProperties$: StaticStructureSchema;
|
|
205
213
|
export declare var VeevaMetadata$: StaticStructureSchema;
|
|
@@ -209,7 +217,6 @@ export declare var ZendeskConnectorProfileProperties$: StaticStructureSchema;
|
|
|
209
217
|
export declare var ZendeskDestinationProperties$: StaticStructureSchema;
|
|
210
218
|
export declare var ZendeskMetadata$: StaticStructureSchema;
|
|
211
219
|
export declare var ZendeskSourceProperties$: StaticStructureSchema;
|
|
212
|
-
export declare var AppflowServiceException$: StaticErrorSchema;
|
|
213
220
|
export declare var CancelFlowExecutions$: StaticOperationSchema;
|
|
214
221
|
export declare var CreateConnectorProfile$: StaticOperationSchema;
|
|
215
222
|
export declare var CreateFlow$: StaticOperationSchema;
|
|
@@ -1,9 +1,21 @@
|
|
|
1
|
+
import { TypeRegistry } from "@smithy/core/schema";
|
|
1
2
|
import {
|
|
2
3
|
StaticErrorSchema,
|
|
3
4
|
StaticOperationSchema,
|
|
4
5
|
StaticStructureSchema,
|
|
5
6
|
} from "@smithy/types";
|
|
7
|
+
export declare var AppflowServiceException$: StaticErrorSchema;
|
|
6
8
|
export declare var AccessDeniedException$: StaticErrorSchema;
|
|
9
|
+
export declare var ConflictException$: StaticErrorSchema;
|
|
10
|
+
export declare var ConnectorAuthenticationException$: StaticErrorSchema;
|
|
11
|
+
export declare var ConnectorServerException$: StaticErrorSchema;
|
|
12
|
+
export declare var InternalServerException$: StaticErrorSchema;
|
|
13
|
+
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
14
|
+
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
15
|
+
export declare var ThrottlingException$: StaticErrorSchema;
|
|
16
|
+
export declare var UnsupportedOperationException$: StaticErrorSchema;
|
|
17
|
+
export declare var ValidationException$: StaticErrorSchema;
|
|
18
|
+
export declare const errorTypeRegistries: TypeRegistry[];
|
|
7
19
|
export declare var AggregationConfig$: StaticStructureSchema;
|
|
8
20
|
export declare var AmplitudeConnectorProfileCredentials$: StaticStructureSchema;
|
|
9
21
|
export declare var AmplitudeConnectorProfileProperties$: StaticStructureSchema;
|
|
@@ -15,8 +27,6 @@ export declare var AuthParameter$: StaticStructureSchema;
|
|
|
15
27
|
export declare var BasicAuthCredentials$: StaticStructureSchema;
|
|
16
28
|
export declare var CancelFlowExecutionsRequest$: StaticStructureSchema;
|
|
17
29
|
export declare var CancelFlowExecutionsResponse$: StaticStructureSchema;
|
|
18
|
-
export declare var ConflictException$: StaticErrorSchema;
|
|
19
|
-
export declare var ConnectorAuthenticationException$: StaticErrorSchema;
|
|
20
30
|
export declare var ConnectorConfiguration$: StaticStructureSchema;
|
|
21
31
|
export declare var ConnectorDetail$: StaticStructureSchema;
|
|
22
32
|
export declare var ConnectorEntity$: StaticStructureSchema;
|
|
@@ -30,7 +40,6 @@ export declare var ConnectorProfileCredentials$: StaticStructureSchema;
|
|
|
30
40
|
export declare var ConnectorProfileProperties$: StaticStructureSchema;
|
|
31
41
|
export declare var ConnectorProvisioningConfig$: StaticStructureSchema;
|
|
32
42
|
export declare var ConnectorRuntimeSetting$: StaticStructureSchema;
|
|
33
|
-
export declare var ConnectorServerException$: StaticErrorSchema;
|
|
34
43
|
export declare var CreateConnectorProfileRequest$: StaticStructureSchema;
|
|
35
44
|
export declare var CreateConnectorProfileResponse$: StaticStructureSchema;
|
|
36
45
|
export declare var CreateFlowRequest$: StaticStructureSchema;
|
|
@@ -94,7 +103,6 @@ export declare var InforNexusConnectorProfileCredentials$: StaticStructureSchema
|
|
|
94
103
|
export declare var InforNexusConnectorProfileProperties$: StaticStructureSchema;
|
|
95
104
|
export declare var InforNexusMetadata$: StaticStructureSchema;
|
|
96
105
|
export declare var InforNexusSourceProperties$: StaticStructureSchema;
|
|
97
|
-
export declare var InternalServerException$: StaticErrorSchema;
|
|
98
106
|
export declare var LambdaConnectorProvisioningConfig$: StaticStructureSchema;
|
|
99
107
|
export declare var ListConnectorEntitiesRequest$: StaticStructureSchema;
|
|
100
108
|
export declare var ListConnectorEntitiesResponse$: StaticStructureSchema;
|
|
@@ -134,7 +142,6 @@ export declare var RegisterConnectorResponse$: StaticStructureSchema;
|
|
|
134
142
|
export declare var RegistrationOutput$: StaticStructureSchema;
|
|
135
143
|
export declare var ResetConnectorMetadataCacheRequest$: StaticStructureSchema;
|
|
136
144
|
export declare var ResetConnectorMetadataCacheResponse$: StaticStructureSchema;
|
|
137
|
-
export declare var ResourceNotFoundException$: StaticErrorSchema;
|
|
138
145
|
export declare var S3DestinationProperties$: StaticStructureSchema;
|
|
139
146
|
export declare var S3InputFormatConfig$: StaticStructureSchema;
|
|
140
147
|
export declare var S3Metadata$: StaticStructureSchema;
|
|
@@ -157,7 +164,6 @@ export declare var ServiceNowConnectorProfileCredentials$: StaticStructureSchema
|
|
|
157
164
|
export declare var ServiceNowConnectorProfileProperties$: StaticStructureSchema;
|
|
158
165
|
export declare var ServiceNowMetadata$: StaticStructureSchema;
|
|
159
166
|
export declare var ServiceNowSourceProperties$: StaticStructureSchema;
|
|
160
|
-
export declare var ServiceQuotaExceededException$: StaticErrorSchema;
|
|
161
167
|
export declare var SingularConnectorProfileCredentials$: StaticStructureSchema;
|
|
162
168
|
export declare var SingularConnectorProfileProperties$: StaticStructureSchema;
|
|
163
169
|
export declare var SingularMetadata$: StaticStructureSchema;
|
|
@@ -182,7 +188,6 @@ export declare var SupportedFieldTypeDetails$: StaticStructureSchema;
|
|
|
182
188
|
export declare var TagResourceRequest$: StaticStructureSchema;
|
|
183
189
|
export declare var TagResourceResponse$: StaticStructureSchema;
|
|
184
190
|
export declare var Task$: StaticStructureSchema;
|
|
185
|
-
export declare var ThrottlingException$: StaticErrorSchema;
|
|
186
191
|
export declare var TrendmicroConnectorProfileCredentials$: StaticStructureSchema;
|
|
187
192
|
export declare var TrendmicroConnectorProfileProperties$: StaticStructureSchema;
|
|
188
193
|
export declare var TrendmicroMetadata$: StaticStructureSchema;
|
|
@@ -191,7 +196,6 @@ export declare var TriggerConfig$: StaticStructureSchema;
|
|
|
191
196
|
export declare var TriggerProperties$: StaticStructureSchema;
|
|
192
197
|
export declare var UnregisterConnectorRequest$: StaticStructureSchema;
|
|
193
198
|
export declare var UnregisterConnectorResponse$: StaticStructureSchema;
|
|
194
|
-
export declare var UnsupportedOperationException$: StaticErrorSchema;
|
|
195
199
|
export declare var UntagResourceRequest$: StaticStructureSchema;
|
|
196
200
|
export declare var UntagResourceResponse$: StaticStructureSchema;
|
|
197
201
|
export declare var UpdateConnectorProfileRequest$: StaticStructureSchema;
|
|
@@ -203,7 +207,6 @@ export declare var UpdateFlowResponse$: StaticStructureSchema;
|
|
|
203
207
|
export declare var UpsolverDestinationProperties$: StaticStructureSchema;
|
|
204
208
|
export declare var UpsolverMetadata$: StaticStructureSchema;
|
|
205
209
|
export declare var UpsolverS3OutputFormatConfig$: StaticStructureSchema;
|
|
206
|
-
export declare var ValidationException$: StaticErrorSchema;
|
|
207
210
|
export declare var VeevaConnectorProfileCredentials$: StaticStructureSchema;
|
|
208
211
|
export declare var VeevaConnectorProfileProperties$: StaticStructureSchema;
|
|
209
212
|
export declare var VeevaMetadata$: StaticStructureSchema;
|
|
@@ -213,7 +216,6 @@ export declare var ZendeskConnectorProfileProperties$: StaticStructureSchema;
|
|
|
213
216
|
export declare var ZendeskDestinationProperties$: StaticStructureSchema;
|
|
214
217
|
export declare var ZendeskMetadata$: StaticStructureSchema;
|
|
215
218
|
export declare var ZendeskSourceProperties$: StaticStructureSchema;
|
|
216
|
-
export declare var AppflowServiceException$: StaticErrorSchema;
|
|
217
219
|
export declare var CancelFlowExecutions$: StaticOperationSchema;
|
|
218
220
|
export declare var CreateConnectorProfile$: StaticOperationSchema;
|
|
219
221
|
export declare var CreateFlow$: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appflow",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appflow Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.988.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-appflow",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.8",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.7",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.8",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
31
|
"@aws-sdk/types": "^3.973.1",
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.988.0",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.6",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.23.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.14",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.31",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
|
-
"@smithy/node-http-handler": "^4.4.
|
|
46
|
+
"@smithy/node-http-handler": "^4.4.10",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.11.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.3",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.30",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.33",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|