@aws-sdk/client-appflow 3.934.0 → 3.935.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 +543 -542
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +496 -0
- package/dist-es/models/errors.js +121 -0
- package/dist-es/models/models_0.js +1 -617
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +848 -0
- package/dist-types/models/errors.d.ts +127 -0
- package/dist-types/models/models_0.d.ts +1 -975
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +572 -0
- package/dist-types/ts3.4/models/errors.d.ts +73 -0
- package/dist-types/ts3.4/models/models_0.d.ts +46 -645
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,29 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { AppflowServiceException as __BaseException } from "./AppflowServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>AppFlow/Requester has invalid or missing permissions.</p>
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
/**
|
|
11
|
-
* @internal
|
|
12
|
-
*/
|
|
13
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
-
}
|
|
15
|
-
/**
|
|
16
|
-
* @public
|
|
17
|
-
* @enum
|
|
18
|
-
*/
|
|
19
|
-
export declare const AggregationType: {
|
|
20
|
-
readonly NONE: "None";
|
|
21
|
-
readonly SINGLE_FILE: "SingleFile";
|
|
22
|
-
};
|
|
23
|
-
/**
|
|
24
|
-
* @public
|
|
25
|
-
*/
|
|
26
|
-
export type AggregationType = (typeof AggregationType)[keyof typeof AggregationType];
|
|
1
|
+
import { AggregationType, AmplitudeConnectorOperator, AuthenticationType, CatalogType, ConnectionMode, ConnectorProvisioningType, ConnectorType, DatadogConnectorOperator, DataPullMode, DataTransferApiType, DynatraceConnectorOperator, ExecutionStatus, FileType, FlowStatus, GoogleAnalyticsConnectorOperator, InforNexusConnectorOperator, MarketoConnectorOperator, OAuth2CustomPropType, OAuth2GrantType, Operator, OperatorPropertiesKeys, Operators, PardotConnectorOperator, PathPrefix, PrefixFormat, PrefixType, PrivateConnectionProvisioningFailureCause, PrivateConnectionProvisioningStatus, S3ConnectorOperator, S3InputFileType, SalesforceConnectorOperator, SalesforceDataTransferApi, SAPODataConnectorOperator, ScheduleFrequencyType, ServiceNowConnectorOperator, SingularConnectorOperator, SlackConnectorOperator, SupportedDataTransferType, TaskType, TrendmicroConnectorOperator, TriggerType, VeevaConnectorOperator, WriteOperationType, ZendeskConnectorOperator } from "./enums";
|
|
27
2
|
/**
|
|
28
3
|
* <p> The aggregation settings that you can use to customize the output format of your flow
|
|
29
4
|
* data. </p>
|
|
@@ -45,17 +20,6 @@ export interface AggregationConfig {
|
|
|
45
20
|
*/
|
|
46
21
|
targetFileSize?: number | undefined;
|
|
47
22
|
}
|
|
48
|
-
/**
|
|
49
|
-
* @public
|
|
50
|
-
* @enum
|
|
51
|
-
*/
|
|
52
|
-
export declare const AmplitudeConnectorOperator: {
|
|
53
|
-
readonly BETWEEN: "BETWEEN";
|
|
54
|
-
};
|
|
55
|
-
/**
|
|
56
|
-
* @public
|
|
57
|
-
*/
|
|
58
|
-
export type AmplitudeConnectorOperator = (typeof AmplitudeConnectorOperator)[keyof typeof AmplitudeConnectorOperator];
|
|
59
23
|
/**
|
|
60
24
|
* <p> The connector-specific credentials required when using Amplitude. </p>
|
|
61
25
|
* @public
|
|
@@ -165,18 +129,6 @@ export interface CustomAuthConfig {
|
|
|
165
129
|
*/
|
|
166
130
|
authParameters?: AuthParameter[] | undefined;
|
|
167
131
|
}
|
|
168
|
-
/**
|
|
169
|
-
* @public
|
|
170
|
-
* @enum
|
|
171
|
-
*/
|
|
172
|
-
export declare const OAuth2CustomPropType: {
|
|
173
|
-
readonly AUTH_URL: "AUTH_URL";
|
|
174
|
-
readonly TOKEN_URL: "TOKEN_URL";
|
|
175
|
-
};
|
|
176
|
-
/**
|
|
177
|
-
* @public
|
|
178
|
-
*/
|
|
179
|
-
export type OAuth2CustomPropType = (typeof OAuth2CustomPropType)[keyof typeof OAuth2CustomPropType];
|
|
180
132
|
/**
|
|
181
133
|
* <p>Custom parameter required for OAuth 2.0 authentication.</p>
|
|
182
134
|
* @public
|
|
@@ -219,19 +171,6 @@ export interface OAuth2CustomParameter {
|
|
|
219
171
|
*/
|
|
220
172
|
type?: OAuth2CustomPropType | undefined;
|
|
221
173
|
}
|
|
222
|
-
/**
|
|
223
|
-
* @public
|
|
224
|
-
* @enum
|
|
225
|
-
*/
|
|
226
|
-
export declare const OAuth2GrantType: {
|
|
227
|
-
readonly AUTHORIZATION_CODE: "AUTHORIZATION_CODE";
|
|
228
|
-
readonly CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS";
|
|
229
|
-
readonly JWT_BEARER: "JWT_BEARER";
|
|
230
|
-
};
|
|
231
|
-
/**
|
|
232
|
-
* @public
|
|
233
|
-
*/
|
|
234
|
-
export type OAuth2GrantType = (typeof OAuth2GrantType)[keyof typeof OAuth2GrantType];
|
|
235
174
|
/**
|
|
236
175
|
* <p>Contains the default values required for OAuth 2.0 authentication.</p>
|
|
237
176
|
* @public
|
|
@@ -299,20 +238,6 @@ export interface AuthenticationConfig {
|
|
|
299
238
|
*/
|
|
300
239
|
customAuthConfigs?: CustomAuthConfig[] | undefined;
|
|
301
240
|
}
|
|
302
|
-
/**
|
|
303
|
-
* @public
|
|
304
|
-
* @enum
|
|
305
|
-
*/
|
|
306
|
-
export declare const AuthenticationType: {
|
|
307
|
-
readonly APIKEY: "APIKEY";
|
|
308
|
-
readonly BASIC: "BASIC";
|
|
309
|
-
readonly CUSTOM: "CUSTOM";
|
|
310
|
-
readonly OAUTH2: "OAUTH2";
|
|
311
|
-
};
|
|
312
|
-
/**
|
|
313
|
-
* @public
|
|
314
|
-
*/
|
|
315
|
-
export type AuthenticationType = (typeof AuthenticationType)[keyof typeof AuthenticationType];
|
|
316
241
|
/**
|
|
317
242
|
* <p> The basic auth credentials required for basic authentication. </p>
|
|
318
243
|
* @public
|
|
@@ -358,105 +283,6 @@ export interface CancelFlowExecutionsResponse {
|
|
|
358
283
|
*/
|
|
359
284
|
invalidExecutions?: string[] | undefined;
|
|
360
285
|
}
|
|
361
|
-
/**
|
|
362
|
-
* <p> An internal service error occurred during the processing of your request. Try again
|
|
363
|
-
* later. </p>
|
|
364
|
-
* @public
|
|
365
|
-
*/
|
|
366
|
-
export declare class InternalServerException extends __BaseException {
|
|
367
|
-
readonly name: "InternalServerException";
|
|
368
|
-
readonly $fault: "server";
|
|
369
|
-
/**
|
|
370
|
-
* @internal
|
|
371
|
-
*/
|
|
372
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
373
|
-
}
|
|
374
|
-
/**
|
|
375
|
-
* <p> The resource specified in the request (such as the source or destination connector
|
|
376
|
-
* profile) is not found. </p>
|
|
377
|
-
* @public
|
|
378
|
-
*/
|
|
379
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
380
|
-
readonly name: "ResourceNotFoundException";
|
|
381
|
-
readonly $fault: "client";
|
|
382
|
-
/**
|
|
383
|
-
* @internal
|
|
384
|
-
*/
|
|
385
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
386
|
-
}
|
|
387
|
-
/**
|
|
388
|
-
* <p>API calls have exceeded the maximum allowed API request rate per account and per Region.
|
|
389
|
-
* </p>
|
|
390
|
-
* @public
|
|
391
|
-
*/
|
|
392
|
-
export declare class ThrottlingException extends __BaseException {
|
|
393
|
-
readonly name: "ThrottlingException";
|
|
394
|
-
readonly $fault: "client";
|
|
395
|
-
/**
|
|
396
|
-
* @internal
|
|
397
|
-
*/
|
|
398
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
399
|
-
}
|
|
400
|
-
/**
|
|
401
|
-
* <p> The request has invalid or missing parameters. </p>
|
|
402
|
-
* @public
|
|
403
|
-
*/
|
|
404
|
-
export declare class ValidationException extends __BaseException {
|
|
405
|
-
readonly name: "ValidationException";
|
|
406
|
-
readonly $fault: "client";
|
|
407
|
-
/**
|
|
408
|
-
* @internal
|
|
409
|
-
*/
|
|
410
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
411
|
-
}
|
|
412
|
-
/**
|
|
413
|
-
* @public
|
|
414
|
-
* @enum
|
|
415
|
-
*/
|
|
416
|
-
export declare const CatalogType: {
|
|
417
|
-
readonly GLUE: "GLUE";
|
|
418
|
-
};
|
|
419
|
-
/**
|
|
420
|
-
* @public
|
|
421
|
-
*/
|
|
422
|
-
export type CatalogType = (typeof CatalogType)[keyof typeof CatalogType];
|
|
423
|
-
/**
|
|
424
|
-
* <p> There was a conflict when processing the request (for example, a flow with the given name
|
|
425
|
-
* already exists within the account. Check for conflicting resource names and try again. </p>
|
|
426
|
-
* @public
|
|
427
|
-
*/
|
|
428
|
-
export declare class ConflictException extends __BaseException {
|
|
429
|
-
readonly name: "ConflictException";
|
|
430
|
-
readonly $fault: "client";
|
|
431
|
-
/**
|
|
432
|
-
* @internal
|
|
433
|
-
*/
|
|
434
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
435
|
-
}
|
|
436
|
-
/**
|
|
437
|
-
* @public
|
|
438
|
-
* @enum
|
|
439
|
-
*/
|
|
440
|
-
export declare const ConnectionMode: {
|
|
441
|
-
readonly PRIVATE: "Private";
|
|
442
|
-
readonly PUBLIC: "Public";
|
|
443
|
-
};
|
|
444
|
-
/**
|
|
445
|
-
* @public
|
|
446
|
-
*/
|
|
447
|
-
export type ConnectionMode = (typeof ConnectionMode)[keyof typeof ConnectionMode];
|
|
448
|
-
/**
|
|
449
|
-
* <p> An error occurred when authenticating with the connector endpoint. </p>
|
|
450
|
-
* @public
|
|
451
|
-
*/
|
|
452
|
-
export declare class ConnectorAuthenticationException extends __BaseException {
|
|
453
|
-
readonly name: "ConnectorAuthenticationException";
|
|
454
|
-
readonly $fault: "client";
|
|
455
|
-
/**
|
|
456
|
-
* @internal
|
|
457
|
-
*/
|
|
458
|
-
constructor(opts: __ExceptionOptionType<ConnectorAuthenticationException, __BaseException>);
|
|
459
|
-
}
|
|
460
286
|
/**
|
|
461
287
|
* <p> The connector metadata specific to Amazon Connect Customer Profiles. </p>
|
|
462
288
|
* @public
|
|
@@ -533,19 +359,6 @@ export interface RedshiftMetadata {
|
|
|
533
359
|
*/
|
|
534
360
|
export interface S3Metadata {
|
|
535
361
|
}
|
|
536
|
-
/**
|
|
537
|
-
* @public
|
|
538
|
-
* @enum
|
|
539
|
-
*/
|
|
540
|
-
export declare const SalesforceDataTransferApi: {
|
|
541
|
-
readonly AUTOMATIC: "AUTOMATIC";
|
|
542
|
-
readonly BULKV2: "BULKV2";
|
|
543
|
-
readonly REST_SYNC: "REST_SYNC";
|
|
544
|
-
};
|
|
545
|
-
/**
|
|
546
|
-
* @public
|
|
547
|
-
*/
|
|
548
|
-
export type SalesforceDataTransferApi = (typeof SalesforceDataTransferApi)[keyof typeof SalesforceDataTransferApi];
|
|
549
362
|
/**
|
|
550
363
|
* <p> The connector metadata specific to Salesforce. </p>
|
|
551
364
|
* @public
|
|
@@ -800,17 +613,6 @@ export interface ConnectorProvisioningConfig {
|
|
|
800
613
|
*/
|
|
801
614
|
lambda?: LambdaConnectorProvisioningConfig | undefined;
|
|
802
615
|
}
|
|
803
|
-
/**
|
|
804
|
-
* @public
|
|
805
|
-
* @enum
|
|
806
|
-
*/
|
|
807
|
-
export declare const ConnectorProvisioningType: {
|
|
808
|
-
readonly LAMBDA: "LAMBDA";
|
|
809
|
-
};
|
|
810
|
-
/**
|
|
811
|
-
* @public
|
|
812
|
-
*/
|
|
813
|
-
export type ConnectorProvisioningType = (typeof ConnectorProvisioningType)[keyof typeof ConnectorProvisioningType];
|
|
814
616
|
/**
|
|
815
617
|
* <p>Contains information about the connector runtime settings that are required for flow
|
|
816
618
|
* execution.</p>
|
|
@@ -854,53 +656,6 @@ export interface ConnectorRuntimeSetting {
|
|
|
854
656
|
*/
|
|
855
657
|
connectorSuppliedValueOptions?: string[] | undefined;
|
|
856
658
|
}
|
|
857
|
-
/**
|
|
858
|
-
* @public
|
|
859
|
-
* @enum
|
|
860
|
-
*/
|
|
861
|
-
export declare const ConnectorType: {
|
|
862
|
-
readonly AMPLITUDE: "Amplitude";
|
|
863
|
-
readonly CUSTOMCONNECTOR: "CustomConnector";
|
|
864
|
-
readonly CUSTOMERPROFILES: "CustomerProfiles";
|
|
865
|
-
readonly DATADOG: "Datadog";
|
|
866
|
-
readonly DYNATRACE: "Dynatrace";
|
|
867
|
-
readonly EVENTBRIDGE: "EventBridge";
|
|
868
|
-
readonly GOOGLEANALYTICS: "Googleanalytics";
|
|
869
|
-
readonly HONEYCODE: "Honeycode";
|
|
870
|
-
readonly INFORNEXUS: "Infornexus";
|
|
871
|
-
readonly LOOKOUTMETRICS: "LookoutMetrics";
|
|
872
|
-
readonly MARKETO: "Marketo";
|
|
873
|
-
readonly PARDOT: "Pardot";
|
|
874
|
-
readonly REDSHIFT: "Redshift";
|
|
875
|
-
readonly S3: "S3";
|
|
876
|
-
readonly SALESFORCE: "Salesforce";
|
|
877
|
-
readonly SAPODATA: "SAPOData";
|
|
878
|
-
readonly SERVICENOW: "Servicenow";
|
|
879
|
-
readonly SINGULAR: "Singular";
|
|
880
|
-
readonly SLACK: "Slack";
|
|
881
|
-
readonly SNOWFLAKE: "Snowflake";
|
|
882
|
-
readonly TRENDMICRO: "Trendmicro";
|
|
883
|
-
readonly UPSOLVER: "Upsolver";
|
|
884
|
-
readonly VEEVA: "Veeva";
|
|
885
|
-
readonly ZENDESK: "Zendesk";
|
|
886
|
-
};
|
|
887
|
-
/**
|
|
888
|
-
* @public
|
|
889
|
-
*/
|
|
890
|
-
export type ConnectorType = (typeof ConnectorType)[keyof typeof ConnectorType];
|
|
891
|
-
/**
|
|
892
|
-
* @public
|
|
893
|
-
* @enum
|
|
894
|
-
*/
|
|
895
|
-
export declare const DataTransferApiType: {
|
|
896
|
-
readonly ASYNC: "ASYNC";
|
|
897
|
-
readonly AUTOMATIC: "AUTOMATIC";
|
|
898
|
-
readonly SYNC: "SYNC";
|
|
899
|
-
};
|
|
900
|
-
/**
|
|
901
|
-
* @public
|
|
902
|
-
*/
|
|
903
|
-
export type DataTransferApiType = (typeof DataTransferApiType)[keyof typeof DataTransferApiType];
|
|
904
659
|
/**
|
|
905
660
|
* <p>The API of the connector application that Amazon AppFlow uses to transfer your
|
|
906
661
|
* data.</p>
|
|
@@ -935,92 +690,6 @@ export interface DataTransferApi {
|
|
|
935
690
|
*/
|
|
936
691
|
Type?: DataTransferApiType | undefined;
|
|
937
692
|
}
|
|
938
|
-
/**
|
|
939
|
-
* @public
|
|
940
|
-
* @enum
|
|
941
|
-
*/
|
|
942
|
-
export declare const SupportedDataTransferType: {
|
|
943
|
-
readonly FILE: "FILE";
|
|
944
|
-
readonly RECORD: "RECORD";
|
|
945
|
-
};
|
|
946
|
-
/**
|
|
947
|
-
* @public
|
|
948
|
-
*/
|
|
949
|
-
export type SupportedDataTransferType = (typeof SupportedDataTransferType)[keyof typeof SupportedDataTransferType];
|
|
950
|
-
/**
|
|
951
|
-
* @public
|
|
952
|
-
* @enum
|
|
953
|
-
*/
|
|
954
|
-
export declare const Operators: {
|
|
955
|
-
readonly ADDITION: "ADDITION";
|
|
956
|
-
readonly BETWEEN: "BETWEEN";
|
|
957
|
-
readonly CONTAINS: "CONTAINS";
|
|
958
|
-
readonly DIVISION: "DIVISION";
|
|
959
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
960
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
961
|
-
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
962
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
963
|
-
readonly LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO";
|
|
964
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
965
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
966
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
967
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
968
|
-
readonly NOT_EQUAL_TO: "NOT_EQUAL_TO";
|
|
969
|
-
readonly NO_OP: "NO_OP";
|
|
970
|
-
readonly PROJECTION: "PROJECTION";
|
|
971
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
972
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
973
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
974
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
975
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
976
|
-
};
|
|
977
|
-
/**
|
|
978
|
-
* @public
|
|
979
|
-
*/
|
|
980
|
-
export type Operators = (typeof Operators)[keyof typeof Operators];
|
|
981
|
-
/**
|
|
982
|
-
* @public
|
|
983
|
-
* @enum
|
|
984
|
-
*/
|
|
985
|
-
export declare const ScheduleFrequencyType: {
|
|
986
|
-
readonly BYMINUTE: "BYMINUTE";
|
|
987
|
-
readonly DAILY: "DAILY";
|
|
988
|
-
readonly HOURLY: "HOURLY";
|
|
989
|
-
readonly MONTHLY: "MONTHLY";
|
|
990
|
-
readonly ONCE: "ONCE";
|
|
991
|
-
readonly WEEKLY: "WEEKLY";
|
|
992
|
-
};
|
|
993
|
-
/**
|
|
994
|
-
* @public
|
|
995
|
-
*/
|
|
996
|
-
export type ScheduleFrequencyType = (typeof ScheduleFrequencyType)[keyof typeof ScheduleFrequencyType];
|
|
997
|
-
/**
|
|
998
|
-
* @public
|
|
999
|
-
* @enum
|
|
1000
|
-
*/
|
|
1001
|
-
export declare const TriggerType: {
|
|
1002
|
-
readonly EVENT: "Event";
|
|
1003
|
-
readonly ONDEMAND: "OnDemand";
|
|
1004
|
-
readonly SCHEDULED: "Scheduled";
|
|
1005
|
-
};
|
|
1006
|
-
/**
|
|
1007
|
-
* @public
|
|
1008
|
-
*/
|
|
1009
|
-
export type TriggerType = (typeof TriggerType)[keyof typeof TriggerType];
|
|
1010
|
-
/**
|
|
1011
|
-
* @public
|
|
1012
|
-
* @enum
|
|
1013
|
-
*/
|
|
1014
|
-
export declare const WriteOperationType: {
|
|
1015
|
-
readonly DELETE: "DELETE";
|
|
1016
|
-
readonly INSERT: "INSERT";
|
|
1017
|
-
readonly UPDATE: "UPDATE";
|
|
1018
|
-
readonly UPSERT: "UPSERT";
|
|
1019
|
-
};
|
|
1020
|
-
/**
|
|
1021
|
-
* @public
|
|
1022
|
-
*/
|
|
1023
|
-
export type WriteOperationType = (typeof WriteOperationType)[keyof typeof WriteOperationType];
|
|
1024
693
|
/**
|
|
1025
694
|
* <p> The configuration settings related to a given connector. </p>
|
|
1026
695
|
* @public
|
|
@@ -1362,37 +1031,6 @@ export interface Range {
|
|
|
1362
1031
|
*/
|
|
1363
1032
|
minimum?: number | undefined;
|
|
1364
1033
|
}
|
|
1365
|
-
/**
|
|
1366
|
-
* @public
|
|
1367
|
-
* @enum
|
|
1368
|
-
*/
|
|
1369
|
-
export declare const Operator: {
|
|
1370
|
-
readonly ADDITION: "ADDITION";
|
|
1371
|
-
readonly BETWEEN: "BETWEEN";
|
|
1372
|
-
readonly CONTAINS: "CONTAINS";
|
|
1373
|
-
readonly DIVISION: "DIVISION";
|
|
1374
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
1375
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
1376
|
-
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
1377
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
1378
|
-
readonly LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO";
|
|
1379
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
1380
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
1381
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
1382
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
1383
|
-
readonly NOT_EQUAL_TO: "NOT_EQUAL_TO";
|
|
1384
|
-
readonly NO_OP: "NO_OP";
|
|
1385
|
-
readonly PROJECTION: "PROJECTION";
|
|
1386
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
1387
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
1388
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
1389
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
1390
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
1391
|
-
};
|
|
1392
|
-
/**
|
|
1393
|
-
* @public
|
|
1394
|
-
*/
|
|
1395
|
-
export type Operator = (typeof Operator)[keyof typeof Operator];
|
|
1396
1034
|
/**
|
|
1397
1035
|
* <p> Contains details regarding the supported field type and the operators that can be applied
|
|
1398
1036
|
* for filtering. </p>
|
|
@@ -1534,398 +1172,6 @@ export interface ConnectorOAuthRequest {
|
|
|
1534
1172
|
*/
|
|
1535
1173
|
redirectUri?: string | undefined;
|
|
1536
1174
|
}
|
|
1537
|
-
/**
|
|
1538
|
-
* @public
|
|
1539
|
-
* @enum
|
|
1540
|
-
*/
|
|
1541
|
-
export declare const DatadogConnectorOperator: {
|
|
1542
|
-
readonly ADDITION: "ADDITION";
|
|
1543
|
-
readonly BETWEEN: "BETWEEN";
|
|
1544
|
-
readonly DIVISION: "DIVISION";
|
|
1545
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
1546
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
1547
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
1548
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
1549
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
1550
|
-
readonly NO_OP: "NO_OP";
|
|
1551
|
-
readonly PROJECTION: "PROJECTION";
|
|
1552
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
1553
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
1554
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
1555
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
1556
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
1557
|
-
};
|
|
1558
|
-
/**
|
|
1559
|
-
* @public
|
|
1560
|
-
*/
|
|
1561
|
-
export type DatadogConnectorOperator = (typeof DatadogConnectorOperator)[keyof typeof DatadogConnectorOperator];
|
|
1562
|
-
/**
|
|
1563
|
-
* @public
|
|
1564
|
-
* @enum
|
|
1565
|
-
*/
|
|
1566
|
-
export declare const DynatraceConnectorOperator: {
|
|
1567
|
-
readonly ADDITION: "ADDITION";
|
|
1568
|
-
readonly BETWEEN: "BETWEEN";
|
|
1569
|
-
readonly DIVISION: "DIVISION";
|
|
1570
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
1571
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
1572
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
1573
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
1574
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
1575
|
-
readonly NO_OP: "NO_OP";
|
|
1576
|
-
readonly PROJECTION: "PROJECTION";
|
|
1577
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
1578
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
1579
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
1580
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
1581
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
1582
|
-
};
|
|
1583
|
-
/**
|
|
1584
|
-
* @public
|
|
1585
|
-
*/
|
|
1586
|
-
export type DynatraceConnectorOperator = (typeof DynatraceConnectorOperator)[keyof typeof DynatraceConnectorOperator];
|
|
1587
|
-
/**
|
|
1588
|
-
* @public
|
|
1589
|
-
* @enum
|
|
1590
|
-
*/
|
|
1591
|
-
export declare const GoogleAnalyticsConnectorOperator: {
|
|
1592
|
-
readonly BETWEEN: "BETWEEN";
|
|
1593
|
-
readonly PROJECTION: "PROJECTION";
|
|
1594
|
-
};
|
|
1595
|
-
/**
|
|
1596
|
-
* @public
|
|
1597
|
-
*/
|
|
1598
|
-
export type GoogleAnalyticsConnectorOperator = (typeof GoogleAnalyticsConnectorOperator)[keyof typeof GoogleAnalyticsConnectorOperator];
|
|
1599
|
-
/**
|
|
1600
|
-
* @public
|
|
1601
|
-
* @enum
|
|
1602
|
-
*/
|
|
1603
|
-
export declare const InforNexusConnectorOperator: {
|
|
1604
|
-
readonly ADDITION: "ADDITION";
|
|
1605
|
-
readonly BETWEEN: "BETWEEN";
|
|
1606
|
-
readonly DIVISION: "DIVISION";
|
|
1607
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
1608
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
1609
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
1610
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
1611
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
1612
|
-
readonly NO_OP: "NO_OP";
|
|
1613
|
-
readonly PROJECTION: "PROJECTION";
|
|
1614
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
1615
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
1616
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
1617
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
1618
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
1619
|
-
};
|
|
1620
|
-
/**
|
|
1621
|
-
* @public
|
|
1622
|
-
*/
|
|
1623
|
-
export type InforNexusConnectorOperator = (typeof InforNexusConnectorOperator)[keyof typeof InforNexusConnectorOperator];
|
|
1624
|
-
/**
|
|
1625
|
-
* @public
|
|
1626
|
-
* @enum
|
|
1627
|
-
*/
|
|
1628
|
-
export declare const MarketoConnectorOperator: {
|
|
1629
|
-
readonly ADDITION: "ADDITION";
|
|
1630
|
-
readonly BETWEEN: "BETWEEN";
|
|
1631
|
-
readonly DIVISION: "DIVISION";
|
|
1632
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
1633
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
1634
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
1635
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
1636
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
1637
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
1638
|
-
readonly NO_OP: "NO_OP";
|
|
1639
|
-
readonly PROJECTION: "PROJECTION";
|
|
1640
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
1641
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
1642
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
1643
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
1644
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
1645
|
-
};
|
|
1646
|
-
/**
|
|
1647
|
-
* @public
|
|
1648
|
-
*/
|
|
1649
|
-
export type MarketoConnectorOperator = (typeof MarketoConnectorOperator)[keyof typeof MarketoConnectorOperator];
|
|
1650
|
-
/**
|
|
1651
|
-
* @public
|
|
1652
|
-
* @enum
|
|
1653
|
-
*/
|
|
1654
|
-
export declare const PardotConnectorOperator: {
|
|
1655
|
-
readonly ADDITION: "ADDITION";
|
|
1656
|
-
readonly DIVISION: "DIVISION";
|
|
1657
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
1658
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
1659
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
1660
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
1661
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
1662
|
-
readonly NO_OP: "NO_OP";
|
|
1663
|
-
readonly PROJECTION: "PROJECTION";
|
|
1664
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
1665
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
1666
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
1667
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
1668
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
1669
|
-
};
|
|
1670
|
-
/**
|
|
1671
|
-
* @public
|
|
1672
|
-
*/
|
|
1673
|
-
export type PardotConnectorOperator = (typeof PardotConnectorOperator)[keyof typeof PardotConnectorOperator];
|
|
1674
|
-
/**
|
|
1675
|
-
* @public
|
|
1676
|
-
* @enum
|
|
1677
|
-
*/
|
|
1678
|
-
export declare const S3ConnectorOperator: {
|
|
1679
|
-
readonly ADDITION: "ADDITION";
|
|
1680
|
-
readonly BETWEEN: "BETWEEN";
|
|
1681
|
-
readonly DIVISION: "DIVISION";
|
|
1682
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
1683
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
1684
|
-
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
1685
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
1686
|
-
readonly LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO";
|
|
1687
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
1688
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
1689
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
1690
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
1691
|
-
readonly NOT_EQUAL_TO: "NOT_EQUAL_TO";
|
|
1692
|
-
readonly NO_OP: "NO_OP";
|
|
1693
|
-
readonly PROJECTION: "PROJECTION";
|
|
1694
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
1695
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
1696
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
1697
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
1698
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
1699
|
-
};
|
|
1700
|
-
/**
|
|
1701
|
-
* @public
|
|
1702
|
-
*/
|
|
1703
|
-
export type S3ConnectorOperator = (typeof S3ConnectorOperator)[keyof typeof S3ConnectorOperator];
|
|
1704
|
-
/**
|
|
1705
|
-
* @public
|
|
1706
|
-
* @enum
|
|
1707
|
-
*/
|
|
1708
|
-
export declare const SalesforceConnectorOperator: {
|
|
1709
|
-
readonly ADDITION: "ADDITION";
|
|
1710
|
-
readonly BETWEEN: "BETWEEN";
|
|
1711
|
-
readonly CONTAINS: "CONTAINS";
|
|
1712
|
-
readonly DIVISION: "DIVISION";
|
|
1713
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
1714
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
1715
|
-
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
1716
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
1717
|
-
readonly LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO";
|
|
1718
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
1719
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
1720
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
1721
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
1722
|
-
readonly NOT_EQUAL_TO: "NOT_EQUAL_TO";
|
|
1723
|
-
readonly NO_OP: "NO_OP";
|
|
1724
|
-
readonly PROJECTION: "PROJECTION";
|
|
1725
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
1726
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
1727
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
1728
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
1729
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
1730
|
-
};
|
|
1731
|
-
/**
|
|
1732
|
-
* @public
|
|
1733
|
-
*/
|
|
1734
|
-
export type SalesforceConnectorOperator = (typeof SalesforceConnectorOperator)[keyof typeof SalesforceConnectorOperator];
|
|
1735
|
-
/**
|
|
1736
|
-
* @public
|
|
1737
|
-
* @enum
|
|
1738
|
-
*/
|
|
1739
|
-
export declare const SAPODataConnectorOperator: {
|
|
1740
|
-
readonly ADDITION: "ADDITION";
|
|
1741
|
-
readonly BETWEEN: "BETWEEN";
|
|
1742
|
-
readonly CONTAINS: "CONTAINS";
|
|
1743
|
-
readonly DIVISION: "DIVISION";
|
|
1744
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
1745
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
1746
|
-
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
1747
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
1748
|
-
readonly LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO";
|
|
1749
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
1750
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
1751
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
1752
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
1753
|
-
readonly NOT_EQUAL_TO: "NOT_EQUAL_TO";
|
|
1754
|
-
readonly NO_OP: "NO_OP";
|
|
1755
|
-
readonly PROJECTION: "PROJECTION";
|
|
1756
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
1757
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
1758
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
1759
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
1760
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
1761
|
-
};
|
|
1762
|
-
/**
|
|
1763
|
-
* @public
|
|
1764
|
-
*/
|
|
1765
|
-
export type SAPODataConnectorOperator = (typeof SAPODataConnectorOperator)[keyof typeof SAPODataConnectorOperator];
|
|
1766
|
-
/**
|
|
1767
|
-
* @public
|
|
1768
|
-
* @enum
|
|
1769
|
-
*/
|
|
1770
|
-
export declare const ServiceNowConnectorOperator: {
|
|
1771
|
-
readonly ADDITION: "ADDITION";
|
|
1772
|
-
readonly BETWEEN: "BETWEEN";
|
|
1773
|
-
readonly CONTAINS: "CONTAINS";
|
|
1774
|
-
readonly DIVISION: "DIVISION";
|
|
1775
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
1776
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
1777
|
-
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
1778
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
1779
|
-
readonly LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO";
|
|
1780
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
1781
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
1782
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
1783
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
1784
|
-
readonly NOT_EQUAL_TO: "NOT_EQUAL_TO";
|
|
1785
|
-
readonly NO_OP: "NO_OP";
|
|
1786
|
-
readonly PROJECTION: "PROJECTION";
|
|
1787
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
1788
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
1789
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
1790
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
1791
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
1792
|
-
};
|
|
1793
|
-
/**
|
|
1794
|
-
* @public
|
|
1795
|
-
*/
|
|
1796
|
-
export type ServiceNowConnectorOperator = (typeof ServiceNowConnectorOperator)[keyof typeof ServiceNowConnectorOperator];
|
|
1797
|
-
/**
|
|
1798
|
-
* @public
|
|
1799
|
-
* @enum
|
|
1800
|
-
*/
|
|
1801
|
-
export declare const SingularConnectorOperator: {
|
|
1802
|
-
readonly ADDITION: "ADDITION";
|
|
1803
|
-
readonly DIVISION: "DIVISION";
|
|
1804
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
1805
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
1806
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
1807
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
1808
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
1809
|
-
readonly NO_OP: "NO_OP";
|
|
1810
|
-
readonly PROJECTION: "PROJECTION";
|
|
1811
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
1812
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
1813
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
1814
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
1815
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
1816
|
-
};
|
|
1817
|
-
/**
|
|
1818
|
-
* @public
|
|
1819
|
-
*/
|
|
1820
|
-
export type SingularConnectorOperator = (typeof SingularConnectorOperator)[keyof typeof SingularConnectorOperator];
|
|
1821
|
-
/**
|
|
1822
|
-
* @public
|
|
1823
|
-
* @enum
|
|
1824
|
-
*/
|
|
1825
|
-
export declare const SlackConnectorOperator: {
|
|
1826
|
-
readonly ADDITION: "ADDITION";
|
|
1827
|
-
readonly BETWEEN: "BETWEEN";
|
|
1828
|
-
readonly DIVISION: "DIVISION";
|
|
1829
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
1830
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
1831
|
-
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
1832
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
1833
|
-
readonly LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO";
|
|
1834
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
1835
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
1836
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
1837
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
1838
|
-
readonly NO_OP: "NO_OP";
|
|
1839
|
-
readonly PROJECTION: "PROJECTION";
|
|
1840
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
1841
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
1842
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
1843
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
1844
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
1845
|
-
};
|
|
1846
|
-
/**
|
|
1847
|
-
* @public
|
|
1848
|
-
*/
|
|
1849
|
-
export type SlackConnectorOperator = (typeof SlackConnectorOperator)[keyof typeof SlackConnectorOperator];
|
|
1850
|
-
/**
|
|
1851
|
-
* @public
|
|
1852
|
-
* @enum
|
|
1853
|
-
*/
|
|
1854
|
-
export declare const TrendmicroConnectorOperator: {
|
|
1855
|
-
readonly ADDITION: "ADDITION";
|
|
1856
|
-
readonly DIVISION: "DIVISION";
|
|
1857
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
1858
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
1859
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
1860
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
1861
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
1862
|
-
readonly NO_OP: "NO_OP";
|
|
1863
|
-
readonly PROJECTION: "PROJECTION";
|
|
1864
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
1865
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
1866
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
1867
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
1868
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
1869
|
-
};
|
|
1870
|
-
/**
|
|
1871
|
-
* @public
|
|
1872
|
-
*/
|
|
1873
|
-
export type TrendmicroConnectorOperator = (typeof TrendmicroConnectorOperator)[keyof typeof TrendmicroConnectorOperator];
|
|
1874
|
-
/**
|
|
1875
|
-
* @public
|
|
1876
|
-
* @enum
|
|
1877
|
-
*/
|
|
1878
|
-
export declare const VeevaConnectorOperator: {
|
|
1879
|
-
readonly ADDITION: "ADDITION";
|
|
1880
|
-
readonly BETWEEN: "BETWEEN";
|
|
1881
|
-
readonly CONTAINS: "CONTAINS";
|
|
1882
|
-
readonly DIVISION: "DIVISION";
|
|
1883
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
1884
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
1885
|
-
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
1886
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
1887
|
-
readonly LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO";
|
|
1888
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
1889
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
1890
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
1891
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
1892
|
-
readonly NOT_EQUAL_TO: "NOT_EQUAL_TO";
|
|
1893
|
-
readonly NO_OP: "NO_OP";
|
|
1894
|
-
readonly PROJECTION: "PROJECTION";
|
|
1895
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
1896
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
1897
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
1898
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
1899
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
1900
|
-
};
|
|
1901
|
-
/**
|
|
1902
|
-
* @public
|
|
1903
|
-
*/
|
|
1904
|
-
export type VeevaConnectorOperator = (typeof VeevaConnectorOperator)[keyof typeof VeevaConnectorOperator];
|
|
1905
|
-
/**
|
|
1906
|
-
* @public
|
|
1907
|
-
* @enum
|
|
1908
|
-
*/
|
|
1909
|
-
export declare const ZendeskConnectorOperator: {
|
|
1910
|
-
readonly ADDITION: "ADDITION";
|
|
1911
|
-
readonly DIVISION: "DIVISION";
|
|
1912
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
1913
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
1914
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
1915
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
1916
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
1917
|
-
readonly NO_OP: "NO_OP";
|
|
1918
|
-
readonly PROJECTION: "PROJECTION";
|
|
1919
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
1920
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
1921
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
1922
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
1923
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
1924
|
-
};
|
|
1925
|
-
/**
|
|
1926
|
-
* @public
|
|
1927
|
-
*/
|
|
1928
|
-
export type ZendeskConnectorOperator = (typeof ZendeskConnectorOperator)[keyof typeof ZendeskConnectorOperator];
|
|
1929
1175
|
/**
|
|
1930
1176
|
* <p> The operation to be performed on the provided source fields. </p>
|
|
1931
1177
|
* @public
|
|
@@ -2534,34 +1780,6 @@ export interface ConnectorProfileProperties {
|
|
|
2534
1780
|
*/
|
|
2535
1781
|
Pardot?: PardotConnectorProfileProperties | undefined;
|
|
2536
1782
|
}
|
|
2537
|
-
/**
|
|
2538
|
-
* @public
|
|
2539
|
-
* @enum
|
|
2540
|
-
*/
|
|
2541
|
-
export declare const PrivateConnectionProvisioningFailureCause: {
|
|
2542
|
-
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
2543
|
-
readonly CONNECTOR_AUTHENTICATION: "CONNECTOR_AUTHENTICATION";
|
|
2544
|
-
readonly CONNECTOR_SERVER: "CONNECTOR_SERVER";
|
|
2545
|
-
readonly INTERNAL_SERVER: "INTERNAL_SERVER";
|
|
2546
|
-
readonly VALIDATION: "VALIDATION";
|
|
2547
|
-
};
|
|
2548
|
-
/**
|
|
2549
|
-
* @public
|
|
2550
|
-
*/
|
|
2551
|
-
export type PrivateConnectionProvisioningFailureCause = (typeof PrivateConnectionProvisioningFailureCause)[keyof typeof PrivateConnectionProvisioningFailureCause];
|
|
2552
|
-
/**
|
|
2553
|
-
* @public
|
|
2554
|
-
* @enum
|
|
2555
|
-
*/
|
|
2556
|
-
export declare const PrivateConnectionProvisioningStatus: {
|
|
2557
|
-
readonly CREATED: "CREATED";
|
|
2558
|
-
readonly FAILED: "FAILED";
|
|
2559
|
-
readonly PENDING: "PENDING";
|
|
2560
|
-
};
|
|
2561
|
-
/**
|
|
2562
|
-
* @public
|
|
2563
|
-
*/
|
|
2564
|
-
export type PrivateConnectionProvisioningStatus = (typeof PrivateConnectionProvisioningStatus)[keyof typeof PrivateConnectionProvisioningStatus];
|
|
2565
1783
|
/**
|
|
2566
1784
|
* <p> Specifies the private connection provisioning state. </p>
|
|
2567
1785
|
* @public
|
|
@@ -3273,18 +2491,6 @@ export interface ConnectorProfileConfig {
|
|
|
3273
2491
|
*/
|
|
3274
2492
|
connectorProfileCredentials?: ConnectorProfileCredentials | undefined;
|
|
3275
2493
|
}
|
|
3276
|
-
/**
|
|
3277
|
-
* <p> An error occurred when retrieving data from the connector endpoint. </p>
|
|
3278
|
-
* @public
|
|
3279
|
-
*/
|
|
3280
|
-
export declare class ConnectorServerException extends __BaseException {
|
|
3281
|
-
readonly name: "ConnectorServerException";
|
|
3282
|
-
readonly $fault: "client";
|
|
3283
|
-
/**
|
|
3284
|
-
* @internal
|
|
3285
|
-
*/
|
|
3286
|
-
constructor(opts: __ExceptionOptionType<ConnectorServerException, __BaseException>);
|
|
3287
|
-
}
|
|
3288
2494
|
/**
|
|
3289
2495
|
* @public
|
|
3290
2496
|
*/
|
|
@@ -3351,19 +2557,6 @@ export interface CreateConnectorProfileResponse {
|
|
|
3351
2557
|
*/
|
|
3352
2558
|
connectorProfileArn?: string | undefined;
|
|
3353
2559
|
}
|
|
3354
|
-
/**
|
|
3355
|
-
* <p> The request would cause a service quota (such as the number of flows) to be exceeded.
|
|
3356
|
-
* </p>
|
|
3357
|
-
* @public
|
|
3358
|
-
*/
|
|
3359
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
3360
|
-
readonly name: "ServiceQuotaExceededException";
|
|
3361
|
-
readonly $fault: "client";
|
|
3362
|
-
/**
|
|
3363
|
-
* @internal
|
|
3364
|
-
*/
|
|
3365
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
3366
|
-
}
|
|
3367
2560
|
/**
|
|
3368
2561
|
* <p> The settings that determine how Amazon AppFlow handles an error when placing data in
|
|
3369
2562
|
* the destination. For example, this setting would determine if the flow should fail after one
|
|
@@ -3545,59 +2738,6 @@ export interface RedshiftDestinationProperties {
|
|
|
3545
2738
|
*/
|
|
3546
2739
|
errorHandlingConfig?: ErrorHandlingConfig | undefined;
|
|
3547
2740
|
}
|
|
3548
|
-
/**
|
|
3549
|
-
* @public
|
|
3550
|
-
* @enum
|
|
3551
|
-
*/
|
|
3552
|
-
export declare const FileType: {
|
|
3553
|
-
readonly CSV: "CSV";
|
|
3554
|
-
readonly JSON: "JSON";
|
|
3555
|
-
readonly PARQUET: "PARQUET";
|
|
3556
|
-
};
|
|
3557
|
-
/**
|
|
3558
|
-
* @public
|
|
3559
|
-
*/
|
|
3560
|
-
export type FileType = (typeof FileType)[keyof typeof FileType];
|
|
3561
|
-
/**
|
|
3562
|
-
* @public
|
|
3563
|
-
* @enum
|
|
3564
|
-
*/
|
|
3565
|
-
export declare const PathPrefix: {
|
|
3566
|
-
readonly EXECUTION_ID: "EXECUTION_ID";
|
|
3567
|
-
readonly SCHEMA_VERSION: "SCHEMA_VERSION";
|
|
3568
|
-
};
|
|
3569
|
-
/**
|
|
3570
|
-
* @public
|
|
3571
|
-
*/
|
|
3572
|
-
export type PathPrefix = (typeof PathPrefix)[keyof typeof PathPrefix];
|
|
3573
|
-
/**
|
|
3574
|
-
* @public
|
|
3575
|
-
* @enum
|
|
3576
|
-
*/
|
|
3577
|
-
export declare const PrefixFormat: {
|
|
3578
|
-
readonly DAY: "DAY";
|
|
3579
|
-
readonly HOUR: "HOUR";
|
|
3580
|
-
readonly MINUTE: "MINUTE";
|
|
3581
|
-
readonly MONTH: "MONTH";
|
|
3582
|
-
readonly YEAR: "YEAR";
|
|
3583
|
-
};
|
|
3584
|
-
/**
|
|
3585
|
-
* @public
|
|
3586
|
-
*/
|
|
3587
|
-
export type PrefixFormat = (typeof PrefixFormat)[keyof typeof PrefixFormat];
|
|
3588
|
-
/**
|
|
3589
|
-
* @public
|
|
3590
|
-
* @enum
|
|
3591
|
-
*/
|
|
3592
|
-
export declare const PrefixType: {
|
|
3593
|
-
readonly FILENAME: "FILENAME";
|
|
3594
|
-
readonly PATH: "PATH";
|
|
3595
|
-
readonly PATH_AND_FILENAME: "PATH_AND_FILENAME";
|
|
3596
|
-
};
|
|
3597
|
-
/**
|
|
3598
|
-
* @public
|
|
3599
|
-
*/
|
|
3600
|
-
export type PrefixType = (typeof PrefixType)[keyof typeof PrefixType];
|
|
3601
2741
|
/**
|
|
3602
2742
|
* <p>Specifies elements that Amazon AppFlow includes in the file and folder names in the flow
|
|
3603
2743
|
* destination.</p>
|
|
@@ -4208,18 +3348,6 @@ export interface PardotSourceProperties {
|
|
|
4208
3348
|
*/
|
|
4209
3349
|
object: string | undefined;
|
|
4210
3350
|
}
|
|
4211
|
-
/**
|
|
4212
|
-
* @public
|
|
4213
|
-
* @enum
|
|
4214
|
-
*/
|
|
4215
|
-
export declare const S3InputFileType: {
|
|
4216
|
-
readonly CSV: "CSV";
|
|
4217
|
-
readonly JSON: "JSON";
|
|
4218
|
-
};
|
|
4219
|
-
/**
|
|
4220
|
-
* @public
|
|
4221
|
-
*/
|
|
4222
|
-
export type S3InputFileType = (typeof S3InputFileType)[keyof typeof S3InputFileType];
|
|
4223
3351
|
/**
|
|
4224
3352
|
* <p> When you use Amazon S3 as the source, the configuration format that you provide
|
|
4225
3353
|
* the flow input data. </p>
|
|
@@ -4588,53 +3716,6 @@ export interface SourceFlowConfig {
|
|
|
4588
3716
|
*/
|
|
4589
3717
|
incrementalPullConfig?: IncrementalPullConfig | undefined;
|
|
4590
3718
|
}
|
|
4591
|
-
/**
|
|
4592
|
-
* @public
|
|
4593
|
-
* @enum
|
|
4594
|
-
*/
|
|
4595
|
-
export declare const OperatorPropertiesKeys: {
|
|
4596
|
-
readonly CONCAT_FORMAT: "CONCAT_FORMAT";
|
|
4597
|
-
readonly DATA_TYPE: "DATA_TYPE";
|
|
4598
|
-
readonly DESTINATION_DATA_TYPE: "DESTINATION_DATA_TYPE";
|
|
4599
|
-
readonly EXCLUDE_SOURCE_FIELDS_LIST: "EXCLUDE_SOURCE_FIELDS_LIST";
|
|
4600
|
-
readonly INCLUDE_NEW_FIELDS: "INCLUDE_NEW_FIELDS";
|
|
4601
|
-
readonly LOWER_BOUND: "LOWER_BOUND";
|
|
4602
|
-
readonly MASK_LENGTH: "MASK_LENGTH";
|
|
4603
|
-
readonly MASK_VALUE: "MASK_VALUE";
|
|
4604
|
-
readonly MATH_OPERATION_FIELDS_ORDER: "MATH_OPERATION_FIELDS_ORDER";
|
|
4605
|
-
readonly ORDERED_PARTITION_KEYS_LIST: "ORDERED_PARTITION_KEYS_LIST";
|
|
4606
|
-
readonly SOURCE_DATA_TYPE: "SOURCE_DATA_TYPE";
|
|
4607
|
-
readonly SUBFIELD_CATEGORY_MAP: "SUBFIELD_CATEGORY_MAP";
|
|
4608
|
-
readonly TRUNCATE_LENGTH: "TRUNCATE_LENGTH";
|
|
4609
|
-
readonly UPPER_BOUND: "UPPER_BOUND";
|
|
4610
|
-
readonly VALIDATION_ACTION: "VALIDATION_ACTION";
|
|
4611
|
-
readonly VALUE: "VALUE";
|
|
4612
|
-
readonly VALUES: "VALUES";
|
|
4613
|
-
};
|
|
4614
|
-
/**
|
|
4615
|
-
* @public
|
|
4616
|
-
*/
|
|
4617
|
-
export type OperatorPropertiesKeys = (typeof OperatorPropertiesKeys)[keyof typeof OperatorPropertiesKeys];
|
|
4618
|
-
/**
|
|
4619
|
-
* @public
|
|
4620
|
-
* @enum
|
|
4621
|
-
*/
|
|
4622
|
-
export declare const TaskType: {
|
|
4623
|
-
readonly ARITHMETIC: "Arithmetic";
|
|
4624
|
-
readonly FILTER: "Filter";
|
|
4625
|
-
readonly MAP: "Map";
|
|
4626
|
-
readonly MAP_ALL: "Map_all";
|
|
4627
|
-
readonly MASK: "Mask";
|
|
4628
|
-
readonly MERGE: "Merge";
|
|
4629
|
-
readonly PARTITION: "Partition";
|
|
4630
|
-
readonly PASSTHROUGH: "Passthrough";
|
|
4631
|
-
readonly TRUNCATE: "Truncate";
|
|
4632
|
-
readonly VALIDATE: "Validate";
|
|
4633
|
-
};
|
|
4634
|
-
/**
|
|
4635
|
-
* @public
|
|
4636
|
-
*/
|
|
4637
|
-
export type TaskType = (typeof TaskType)[keyof typeof TaskType];
|
|
4638
3719
|
/**
|
|
4639
3720
|
* <p> A class for modeling different type of tasks. Task implementation varies based on the
|
|
4640
3721
|
* <code>TaskType</code>. </p>
|
|
@@ -4669,18 +3750,6 @@ export interface Task {
|
|
|
4669
3750
|
*/
|
|
4670
3751
|
taskProperties?: Partial<Record<OperatorPropertiesKeys, string>> | undefined;
|
|
4671
3752
|
}
|
|
4672
|
-
/**
|
|
4673
|
-
* @public
|
|
4674
|
-
* @enum
|
|
4675
|
-
*/
|
|
4676
|
-
export declare const DataPullMode: {
|
|
4677
|
-
readonly COMPLETE: "Complete";
|
|
4678
|
-
readonly INCREMENTAL: "Incremental";
|
|
4679
|
-
};
|
|
4680
|
-
/**
|
|
4681
|
-
* @public
|
|
4682
|
-
*/
|
|
4683
|
-
export type DataPullMode = (typeof DataPullMode)[keyof typeof DataPullMode];
|
|
4684
3753
|
/**
|
|
4685
3754
|
* <p> Specifies the configuration details of a schedule-triggered flow as defined by the user.
|
|
4686
3755
|
* Currently, these settings only apply to the <code>Scheduled</code> trigger type. </p>
|
|
@@ -4846,22 +3915,6 @@ export interface CreateFlowRequest {
|
|
|
4846
3915
|
*/
|
|
4847
3916
|
clientToken?: string | undefined;
|
|
4848
3917
|
}
|
|
4849
|
-
/**
|
|
4850
|
-
* @public
|
|
4851
|
-
* @enum
|
|
4852
|
-
*/
|
|
4853
|
-
export declare const FlowStatus: {
|
|
4854
|
-
readonly ACTIVE: "Active";
|
|
4855
|
-
readonly DELETED: "Deleted";
|
|
4856
|
-
readonly DEPRECATED: "Deprecated";
|
|
4857
|
-
readonly DRAFT: "Draft";
|
|
4858
|
-
readonly ERRORED: "Errored";
|
|
4859
|
-
readonly SUSPENDED: "Suspended";
|
|
4860
|
-
};
|
|
4861
|
-
/**
|
|
4862
|
-
* @public
|
|
4863
|
-
*/
|
|
4864
|
-
export type FlowStatus = (typeof FlowStatus)[keyof typeof FlowStatus];
|
|
4865
3918
|
/**
|
|
4866
3919
|
* @public
|
|
4867
3920
|
*/
|
|
@@ -5089,21 +4142,6 @@ export interface DescribeFlowRequest {
|
|
|
5089
4142
|
*/
|
|
5090
4143
|
flowName: string | undefined;
|
|
5091
4144
|
}
|
|
5092
|
-
/**
|
|
5093
|
-
* @public
|
|
5094
|
-
* @enum
|
|
5095
|
-
*/
|
|
5096
|
-
export declare const ExecutionStatus: {
|
|
5097
|
-
readonly CANCELED: "Canceled";
|
|
5098
|
-
readonly CANCELSTARTED: "CancelStarted";
|
|
5099
|
-
readonly ERROR: "Error";
|
|
5100
|
-
readonly INPROGRESS: "InProgress";
|
|
5101
|
-
readonly SUCCESSFUL: "Successful";
|
|
5102
|
-
};
|
|
5103
|
-
/**
|
|
5104
|
-
* @public
|
|
5105
|
-
*/
|
|
5106
|
-
export type ExecutionStatus = (typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
5107
4145
|
/**
|
|
5108
4146
|
* <p> Describes the details of the flow run, including the timestamp, status, and message.
|
|
5109
4147
|
* </p>
|
|
@@ -5876,18 +4914,6 @@ export interface StopFlowResponse {
|
|
|
5876
4914
|
*/
|
|
5877
4915
|
flowStatus?: FlowStatus | undefined;
|
|
5878
4916
|
}
|
|
5879
|
-
/**
|
|
5880
|
-
* <p> The requested operation is not supported for the current flow. </p>
|
|
5881
|
-
* @public
|
|
5882
|
-
*/
|
|
5883
|
-
export declare class UnsupportedOperationException extends __BaseException {
|
|
5884
|
-
readonly name: "UnsupportedOperationException";
|
|
5885
|
-
readonly $fault: "client";
|
|
5886
|
-
/**
|
|
5887
|
-
* @internal
|
|
5888
|
-
*/
|
|
5889
|
-
constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
|
|
5890
|
-
}
|
|
5891
4917
|
/**
|
|
5892
4918
|
* @public
|
|
5893
4919
|
*/
|