@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,27 +1,53 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
import {
|
|
2
|
+
AggregationType,
|
|
3
|
+
AmplitudeConnectorOperator,
|
|
4
|
+
AuthenticationType,
|
|
5
|
+
CatalogType,
|
|
6
|
+
ConnectionMode,
|
|
7
|
+
ConnectorProvisioningType,
|
|
8
|
+
ConnectorType,
|
|
9
|
+
DatadogConnectorOperator,
|
|
10
|
+
DataPullMode,
|
|
11
|
+
DataTransferApiType,
|
|
12
|
+
DynatraceConnectorOperator,
|
|
13
|
+
ExecutionStatus,
|
|
14
|
+
FileType,
|
|
15
|
+
FlowStatus,
|
|
16
|
+
GoogleAnalyticsConnectorOperator,
|
|
17
|
+
InforNexusConnectorOperator,
|
|
18
|
+
MarketoConnectorOperator,
|
|
19
|
+
OAuth2CustomPropType,
|
|
20
|
+
OAuth2GrantType,
|
|
21
|
+
Operator,
|
|
22
|
+
OperatorPropertiesKeys,
|
|
23
|
+
Operators,
|
|
24
|
+
PardotConnectorOperator,
|
|
25
|
+
PathPrefix,
|
|
26
|
+
PrefixFormat,
|
|
27
|
+
PrefixType,
|
|
28
|
+
PrivateConnectionProvisioningFailureCause,
|
|
29
|
+
PrivateConnectionProvisioningStatus,
|
|
30
|
+
S3ConnectorOperator,
|
|
31
|
+
S3InputFileType,
|
|
32
|
+
SalesforceConnectorOperator,
|
|
33
|
+
SalesforceDataTransferApi,
|
|
34
|
+
SAPODataConnectorOperator,
|
|
35
|
+
ScheduleFrequencyType,
|
|
36
|
+
ServiceNowConnectorOperator,
|
|
37
|
+
SingularConnectorOperator,
|
|
38
|
+
SlackConnectorOperator,
|
|
39
|
+
SupportedDataTransferType,
|
|
40
|
+
TaskType,
|
|
41
|
+
TrendmicroConnectorOperator,
|
|
42
|
+
TriggerType,
|
|
43
|
+
VeevaConnectorOperator,
|
|
44
|
+
WriteOperationType,
|
|
45
|
+
ZendeskConnectorOperator,
|
|
46
|
+
} from "./enums";
|
|
16
47
|
export interface AggregationConfig {
|
|
17
48
|
aggregationType?: AggregationType | undefined;
|
|
18
49
|
targetFileSize?: number | undefined;
|
|
19
50
|
}
|
|
20
|
-
export declare const AmplitudeConnectorOperator: {
|
|
21
|
-
readonly BETWEEN: "BETWEEN";
|
|
22
|
-
};
|
|
23
|
-
export type AmplitudeConnectorOperator =
|
|
24
|
-
(typeof AmplitudeConnectorOperator)[keyof typeof AmplitudeConnectorOperator];
|
|
25
51
|
export interface AmplitudeConnectorProfileCredentials {
|
|
26
52
|
apiKey: string | undefined;
|
|
27
53
|
secretKey: string | undefined;
|
|
@@ -47,12 +73,6 @@ export interface CustomAuthConfig {
|
|
|
47
73
|
customAuthenticationType?: string | undefined;
|
|
48
74
|
authParameters?: AuthParameter[] | undefined;
|
|
49
75
|
}
|
|
50
|
-
export declare const OAuth2CustomPropType: {
|
|
51
|
-
readonly AUTH_URL: "AUTH_URL";
|
|
52
|
-
readonly TOKEN_URL: "TOKEN_URL";
|
|
53
|
-
};
|
|
54
|
-
export type OAuth2CustomPropType =
|
|
55
|
-
(typeof OAuth2CustomPropType)[keyof typeof OAuth2CustomPropType];
|
|
56
76
|
export interface OAuth2CustomParameter {
|
|
57
77
|
key?: string | undefined;
|
|
58
78
|
isRequired?: boolean | undefined;
|
|
@@ -62,13 +82,6 @@ export interface OAuth2CustomParameter {
|
|
|
62
82
|
connectorSuppliedValues?: string[] | undefined;
|
|
63
83
|
type?: OAuth2CustomPropType | undefined;
|
|
64
84
|
}
|
|
65
|
-
export declare const OAuth2GrantType: {
|
|
66
|
-
readonly AUTHORIZATION_CODE: "AUTHORIZATION_CODE";
|
|
67
|
-
readonly CLIENT_CREDENTIALS: "CLIENT_CREDENTIALS";
|
|
68
|
-
readonly JWT_BEARER: "JWT_BEARER";
|
|
69
|
-
};
|
|
70
|
-
export type OAuth2GrantType =
|
|
71
|
-
(typeof OAuth2GrantType)[keyof typeof OAuth2GrantType];
|
|
72
85
|
export interface OAuth2Defaults {
|
|
73
86
|
oauthScopes?: string[] | undefined;
|
|
74
87
|
tokenUrls?: string[] | undefined;
|
|
@@ -84,14 +97,6 @@ export interface AuthenticationConfig {
|
|
|
84
97
|
oAuth2Defaults?: OAuth2Defaults | undefined;
|
|
85
98
|
customAuthConfigs?: CustomAuthConfig[] | undefined;
|
|
86
99
|
}
|
|
87
|
-
export declare const AuthenticationType: {
|
|
88
|
-
readonly APIKEY: "APIKEY";
|
|
89
|
-
readonly BASIC: "BASIC";
|
|
90
|
-
readonly CUSTOM: "CUSTOM";
|
|
91
|
-
readonly OAUTH2: "OAUTH2";
|
|
92
|
-
};
|
|
93
|
-
export type AuthenticationType =
|
|
94
|
-
(typeof AuthenticationType)[keyof typeof AuthenticationType];
|
|
95
100
|
export interface BasicAuthCredentials {
|
|
96
101
|
username: string | undefined;
|
|
97
102
|
password: string | undefined;
|
|
@@ -103,59 +108,6 @@ export interface CancelFlowExecutionsRequest {
|
|
|
103
108
|
export interface CancelFlowExecutionsResponse {
|
|
104
109
|
invalidExecutions?: string[] | undefined;
|
|
105
110
|
}
|
|
106
|
-
export declare class InternalServerException extends __BaseException {
|
|
107
|
-
readonly name: "InternalServerException";
|
|
108
|
-
readonly $fault: "server";
|
|
109
|
-
constructor(
|
|
110
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
111
|
-
);
|
|
112
|
-
}
|
|
113
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
114
|
-
readonly name: "ResourceNotFoundException";
|
|
115
|
-
readonly $fault: "client";
|
|
116
|
-
constructor(
|
|
117
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
118
|
-
);
|
|
119
|
-
}
|
|
120
|
-
export declare class ThrottlingException extends __BaseException {
|
|
121
|
-
readonly name: "ThrottlingException";
|
|
122
|
-
readonly $fault: "client";
|
|
123
|
-
constructor(
|
|
124
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
125
|
-
);
|
|
126
|
-
}
|
|
127
|
-
export declare class ValidationException extends __BaseException {
|
|
128
|
-
readonly name: "ValidationException";
|
|
129
|
-
readonly $fault: "client";
|
|
130
|
-
constructor(
|
|
131
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
132
|
-
);
|
|
133
|
-
}
|
|
134
|
-
export declare const CatalogType: {
|
|
135
|
-
readonly GLUE: "GLUE";
|
|
136
|
-
};
|
|
137
|
-
export type CatalogType = (typeof CatalogType)[keyof typeof CatalogType];
|
|
138
|
-
export declare class ConflictException extends __BaseException {
|
|
139
|
-
readonly name: "ConflictException";
|
|
140
|
-
readonly $fault: "client";
|
|
141
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
142
|
-
}
|
|
143
|
-
export declare const ConnectionMode: {
|
|
144
|
-
readonly PRIVATE: "Private";
|
|
145
|
-
readonly PUBLIC: "Public";
|
|
146
|
-
};
|
|
147
|
-
export type ConnectionMode =
|
|
148
|
-
(typeof ConnectionMode)[keyof typeof ConnectionMode];
|
|
149
|
-
export declare class ConnectorAuthenticationException extends __BaseException {
|
|
150
|
-
readonly name: "ConnectorAuthenticationException";
|
|
151
|
-
readonly $fault: "client";
|
|
152
|
-
constructor(
|
|
153
|
-
opts: __ExceptionOptionType<
|
|
154
|
-
ConnectorAuthenticationException,
|
|
155
|
-
__BaseException
|
|
156
|
-
>
|
|
157
|
-
);
|
|
158
|
-
}
|
|
159
111
|
export interface CustomerProfilesMetadata {}
|
|
160
112
|
export interface DatadogMetadata {}
|
|
161
113
|
export interface DynatraceMetadata {}
|
|
@@ -171,13 +123,6 @@ export interface MarketoMetadata {}
|
|
|
171
123
|
export interface PardotMetadata {}
|
|
172
124
|
export interface RedshiftMetadata {}
|
|
173
125
|
export interface S3Metadata {}
|
|
174
|
-
export declare const SalesforceDataTransferApi: {
|
|
175
|
-
readonly AUTOMATIC: "AUTOMATIC";
|
|
176
|
-
readonly BULKV2: "BULKV2";
|
|
177
|
-
readonly REST_SYNC: "REST_SYNC";
|
|
178
|
-
};
|
|
179
|
-
export type SalesforceDataTransferApi =
|
|
180
|
-
(typeof SalesforceDataTransferApi)[keyof typeof SalesforceDataTransferApi];
|
|
181
126
|
export interface SalesforceMetadata {
|
|
182
127
|
oAuthScopes?: string[] | undefined;
|
|
183
128
|
dataTransferApis?: SalesforceDataTransferApi[] | undefined;
|
|
@@ -228,11 +173,6 @@ export interface LambdaConnectorProvisioningConfig {
|
|
|
228
173
|
export interface ConnectorProvisioningConfig {
|
|
229
174
|
lambda?: LambdaConnectorProvisioningConfig | undefined;
|
|
230
175
|
}
|
|
231
|
-
export declare const ConnectorProvisioningType: {
|
|
232
|
-
readonly LAMBDA: "LAMBDA";
|
|
233
|
-
};
|
|
234
|
-
export type ConnectorProvisioningType =
|
|
235
|
-
(typeof ConnectorProvisioningType)[keyof typeof ConnectorProvisioningType];
|
|
236
176
|
export interface ConnectorRuntimeSetting {
|
|
237
177
|
key?: string | undefined;
|
|
238
178
|
dataType?: string | undefined;
|
|
@@ -242,98 +182,10 @@ export interface ConnectorRuntimeSetting {
|
|
|
242
182
|
scope?: string | undefined;
|
|
243
183
|
connectorSuppliedValueOptions?: string[] | undefined;
|
|
244
184
|
}
|
|
245
|
-
export declare const ConnectorType: {
|
|
246
|
-
readonly AMPLITUDE: "Amplitude";
|
|
247
|
-
readonly CUSTOMCONNECTOR: "CustomConnector";
|
|
248
|
-
readonly CUSTOMERPROFILES: "CustomerProfiles";
|
|
249
|
-
readonly DATADOG: "Datadog";
|
|
250
|
-
readonly DYNATRACE: "Dynatrace";
|
|
251
|
-
readonly EVENTBRIDGE: "EventBridge";
|
|
252
|
-
readonly GOOGLEANALYTICS: "Googleanalytics";
|
|
253
|
-
readonly HONEYCODE: "Honeycode";
|
|
254
|
-
readonly INFORNEXUS: "Infornexus";
|
|
255
|
-
readonly LOOKOUTMETRICS: "LookoutMetrics";
|
|
256
|
-
readonly MARKETO: "Marketo";
|
|
257
|
-
readonly PARDOT: "Pardot";
|
|
258
|
-
readonly REDSHIFT: "Redshift";
|
|
259
|
-
readonly S3: "S3";
|
|
260
|
-
readonly SALESFORCE: "Salesforce";
|
|
261
|
-
readonly SAPODATA: "SAPOData";
|
|
262
|
-
readonly SERVICENOW: "Servicenow";
|
|
263
|
-
readonly SINGULAR: "Singular";
|
|
264
|
-
readonly SLACK: "Slack";
|
|
265
|
-
readonly SNOWFLAKE: "Snowflake";
|
|
266
|
-
readonly TRENDMICRO: "Trendmicro";
|
|
267
|
-
readonly UPSOLVER: "Upsolver";
|
|
268
|
-
readonly VEEVA: "Veeva";
|
|
269
|
-
readonly ZENDESK: "Zendesk";
|
|
270
|
-
};
|
|
271
|
-
export type ConnectorType = (typeof ConnectorType)[keyof typeof ConnectorType];
|
|
272
|
-
export declare const DataTransferApiType: {
|
|
273
|
-
readonly ASYNC: "ASYNC";
|
|
274
|
-
readonly AUTOMATIC: "AUTOMATIC";
|
|
275
|
-
readonly SYNC: "SYNC";
|
|
276
|
-
};
|
|
277
|
-
export type DataTransferApiType =
|
|
278
|
-
(typeof DataTransferApiType)[keyof typeof DataTransferApiType];
|
|
279
185
|
export interface DataTransferApi {
|
|
280
186
|
Name?: string | undefined;
|
|
281
187
|
Type?: DataTransferApiType | undefined;
|
|
282
188
|
}
|
|
283
|
-
export declare const SupportedDataTransferType: {
|
|
284
|
-
readonly FILE: "FILE";
|
|
285
|
-
readonly RECORD: "RECORD";
|
|
286
|
-
};
|
|
287
|
-
export type SupportedDataTransferType =
|
|
288
|
-
(typeof SupportedDataTransferType)[keyof typeof SupportedDataTransferType];
|
|
289
|
-
export declare const Operators: {
|
|
290
|
-
readonly ADDITION: "ADDITION";
|
|
291
|
-
readonly BETWEEN: "BETWEEN";
|
|
292
|
-
readonly CONTAINS: "CONTAINS";
|
|
293
|
-
readonly DIVISION: "DIVISION";
|
|
294
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
295
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
296
|
-
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
297
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
298
|
-
readonly LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO";
|
|
299
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
300
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
301
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
302
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
303
|
-
readonly NOT_EQUAL_TO: "NOT_EQUAL_TO";
|
|
304
|
-
readonly NO_OP: "NO_OP";
|
|
305
|
-
readonly PROJECTION: "PROJECTION";
|
|
306
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
307
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
308
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
309
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
310
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
311
|
-
};
|
|
312
|
-
export type Operators = (typeof Operators)[keyof typeof Operators];
|
|
313
|
-
export declare const ScheduleFrequencyType: {
|
|
314
|
-
readonly BYMINUTE: "BYMINUTE";
|
|
315
|
-
readonly DAILY: "DAILY";
|
|
316
|
-
readonly HOURLY: "HOURLY";
|
|
317
|
-
readonly MONTHLY: "MONTHLY";
|
|
318
|
-
readonly ONCE: "ONCE";
|
|
319
|
-
readonly WEEKLY: "WEEKLY";
|
|
320
|
-
};
|
|
321
|
-
export type ScheduleFrequencyType =
|
|
322
|
-
(typeof ScheduleFrequencyType)[keyof typeof ScheduleFrequencyType];
|
|
323
|
-
export declare const TriggerType: {
|
|
324
|
-
readonly EVENT: "Event";
|
|
325
|
-
readonly ONDEMAND: "OnDemand";
|
|
326
|
-
readonly SCHEDULED: "Scheduled";
|
|
327
|
-
};
|
|
328
|
-
export type TriggerType = (typeof TriggerType)[keyof typeof TriggerType];
|
|
329
|
-
export declare const WriteOperationType: {
|
|
330
|
-
readonly DELETE: "DELETE";
|
|
331
|
-
readonly INSERT: "INSERT";
|
|
332
|
-
readonly UPDATE: "UPDATE";
|
|
333
|
-
readonly UPSERT: "UPSERT";
|
|
334
|
-
};
|
|
335
|
-
export type WriteOperationType =
|
|
336
|
-
(typeof WriteOperationType)[keyof typeof WriteOperationType];
|
|
337
189
|
export interface ConnectorConfiguration {
|
|
338
190
|
canUseAsSource?: boolean | undefined;
|
|
339
191
|
canUseAsDestination?: boolean | undefined;
|
|
@@ -400,30 +252,6 @@ export interface Range {
|
|
|
400
252
|
maximum?: number | undefined;
|
|
401
253
|
minimum?: number | undefined;
|
|
402
254
|
}
|
|
403
|
-
export declare const Operator: {
|
|
404
|
-
readonly ADDITION: "ADDITION";
|
|
405
|
-
readonly BETWEEN: "BETWEEN";
|
|
406
|
-
readonly CONTAINS: "CONTAINS";
|
|
407
|
-
readonly DIVISION: "DIVISION";
|
|
408
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
409
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
410
|
-
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
411
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
412
|
-
readonly LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO";
|
|
413
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
414
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
415
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
416
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
417
|
-
readonly NOT_EQUAL_TO: "NOT_EQUAL_TO";
|
|
418
|
-
readonly NO_OP: "NO_OP";
|
|
419
|
-
readonly PROJECTION: "PROJECTION";
|
|
420
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
421
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
422
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
423
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
424
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
425
|
-
};
|
|
426
|
-
export type Operator = (typeof Operator)[keyof typeof Operator];
|
|
427
255
|
export interface FieldTypeDetails {
|
|
428
256
|
fieldType: string | undefined;
|
|
429
257
|
filterOperators: Operator[] | undefined;
|
|
@@ -453,308 +281,6 @@ export interface ConnectorOAuthRequest {
|
|
|
453
281
|
authCode?: string | undefined;
|
|
454
282
|
redirectUri?: string | undefined;
|
|
455
283
|
}
|
|
456
|
-
export declare const DatadogConnectorOperator: {
|
|
457
|
-
readonly ADDITION: "ADDITION";
|
|
458
|
-
readonly BETWEEN: "BETWEEN";
|
|
459
|
-
readonly DIVISION: "DIVISION";
|
|
460
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
461
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
462
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
463
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
464
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
465
|
-
readonly NO_OP: "NO_OP";
|
|
466
|
-
readonly PROJECTION: "PROJECTION";
|
|
467
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
468
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
469
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
470
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
471
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
472
|
-
};
|
|
473
|
-
export type DatadogConnectorOperator =
|
|
474
|
-
(typeof DatadogConnectorOperator)[keyof typeof DatadogConnectorOperator];
|
|
475
|
-
export declare const DynatraceConnectorOperator: {
|
|
476
|
-
readonly ADDITION: "ADDITION";
|
|
477
|
-
readonly BETWEEN: "BETWEEN";
|
|
478
|
-
readonly DIVISION: "DIVISION";
|
|
479
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
480
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
481
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
482
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
483
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
484
|
-
readonly NO_OP: "NO_OP";
|
|
485
|
-
readonly PROJECTION: "PROJECTION";
|
|
486
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
487
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
488
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
489
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
490
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
491
|
-
};
|
|
492
|
-
export type DynatraceConnectorOperator =
|
|
493
|
-
(typeof DynatraceConnectorOperator)[keyof typeof DynatraceConnectorOperator];
|
|
494
|
-
export declare const GoogleAnalyticsConnectorOperator: {
|
|
495
|
-
readonly BETWEEN: "BETWEEN";
|
|
496
|
-
readonly PROJECTION: "PROJECTION";
|
|
497
|
-
};
|
|
498
|
-
export type GoogleAnalyticsConnectorOperator =
|
|
499
|
-
(typeof GoogleAnalyticsConnectorOperator)[keyof typeof GoogleAnalyticsConnectorOperator];
|
|
500
|
-
export declare const InforNexusConnectorOperator: {
|
|
501
|
-
readonly ADDITION: "ADDITION";
|
|
502
|
-
readonly BETWEEN: "BETWEEN";
|
|
503
|
-
readonly DIVISION: "DIVISION";
|
|
504
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
505
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
506
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
507
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
508
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
509
|
-
readonly NO_OP: "NO_OP";
|
|
510
|
-
readonly PROJECTION: "PROJECTION";
|
|
511
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
512
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
513
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
514
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
515
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
516
|
-
};
|
|
517
|
-
export type InforNexusConnectorOperator =
|
|
518
|
-
(typeof InforNexusConnectorOperator)[keyof typeof InforNexusConnectorOperator];
|
|
519
|
-
export declare const MarketoConnectorOperator: {
|
|
520
|
-
readonly ADDITION: "ADDITION";
|
|
521
|
-
readonly BETWEEN: "BETWEEN";
|
|
522
|
-
readonly DIVISION: "DIVISION";
|
|
523
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
524
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
525
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
526
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
527
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
528
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
529
|
-
readonly NO_OP: "NO_OP";
|
|
530
|
-
readonly PROJECTION: "PROJECTION";
|
|
531
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
532
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
533
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
534
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
535
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
536
|
-
};
|
|
537
|
-
export type MarketoConnectorOperator =
|
|
538
|
-
(typeof MarketoConnectorOperator)[keyof typeof MarketoConnectorOperator];
|
|
539
|
-
export declare const PardotConnectorOperator: {
|
|
540
|
-
readonly ADDITION: "ADDITION";
|
|
541
|
-
readonly DIVISION: "DIVISION";
|
|
542
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
543
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
544
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
545
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
546
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
547
|
-
readonly NO_OP: "NO_OP";
|
|
548
|
-
readonly PROJECTION: "PROJECTION";
|
|
549
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
550
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
551
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
552
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
553
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
554
|
-
};
|
|
555
|
-
export type PardotConnectorOperator =
|
|
556
|
-
(typeof PardotConnectorOperator)[keyof typeof PardotConnectorOperator];
|
|
557
|
-
export declare const S3ConnectorOperator: {
|
|
558
|
-
readonly ADDITION: "ADDITION";
|
|
559
|
-
readonly BETWEEN: "BETWEEN";
|
|
560
|
-
readonly DIVISION: "DIVISION";
|
|
561
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
562
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
563
|
-
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
564
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
565
|
-
readonly LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO";
|
|
566
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
567
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
568
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
569
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
570
|
-
readonly NOT_EQUAL_TO: "NOT_EQUAL_TO";
|
|
571
|
-
readonly NO_OP: "NO_OP";
|
|
572
|
-
readonly PROJECTION: "PROJECTION";
|
|
573
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
574
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
575
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
576
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
577
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
578
|
-
};
|
|
579
|
-
export type S3ConnectorOperator =
|
|
580
|
-
(typeof S3ConnectorOperator)[keyof typeof S3ConnectorOperator];
|
|
581
|
-
export declare const SalesforceConnectorOperator: {
|
|
582
|
-
readonly ADDITION: "ADDITION";
|
|
583
|
-
readonly BETWEEN: "BETWEEN";
|
|
584
|
-
readonly CONTAINS: "CONTAINS";
|
|
585
|
-
readonly DIVISION: "DIVISION";
|
|
586
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
587
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
588
|
-
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
589
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
590
|
-
readonly LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO";
|
|
591
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
592
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
593
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
594
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
595
|
-
readonly NOT_EQUAL_TO: "NOT_EQUAL_TO";
|
|
596
|
-
readonly NO_OP: "NO_OP";
|
|
597
|
-
readonly PROJECTION: "PROJECTION";
|
|
598
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
599
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
600
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
601
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
602
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
603
|
-
};
|
|
604
|
-
export type SalesforceConnectorOperator =
|
|
605
|
-
(typeof SalesforceConnectorOperator)[keyof typeof SalesforceConnectorOperator];
|
|
606
|
-
export declare const SAPODataConnectorOperator: {
|
|
607
|
-
readonly ADDITION: "ADDITION";
|
|
608
|
-
readonly BETWEEN: "BETWEEN";
|
|
609
|
-
readonly CONTAINS: "CONTAINS";
|
|
610
|
-
readonly DIVISION: "DIVISION";
|
|
611
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
612
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
613
|
-
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
614
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
615
|
-
readonly LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO";
|
|
616
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
617
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
618
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
619
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
620
|
-
readonly NOT_EQUAL_TO: "NOT_EQUAL_TO";
|
|
621
|
-
readonly NO_OP: "NO_OP";
|
|
622
|
-
readonly PROJECTION: "PROJECTION";
|
|
623
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
624
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
625
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
626
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
627
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
628
|
-
};
|
|
629
|
-
export type SAPODataConnectorOperator =
|
|
630
|
-
(typeof SAPODataConnectorOperator)[keyof typeof SAPODataConnectorOperator];
|
|
631
|
-
export declare const ServiceNowConnectorOperator: {
|
|
632
|
-
readonly ADDITION: "ADDITION";
|
|
633
|
-
readonly BETWEEN: "BETWEEN";
|
|
634
|
-
readonly CONTAINS: "CONTAINS";
|
|
635
|
-
readonly DIVISION: "DIVISION";
|
|
636
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
637
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
638
|
-
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
639
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
640
|
-
readonly LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO";
|
|
641
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
642
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
643
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
644
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
645
|
-
readonly NOT_EQUAL_TO: "NOT_EQUAL_TO";
|
|
646
|
-
readonly NO_OP: "NO_OP";
|
|
647
|
-
readonly PROJECTION: "PROJECTION";
|
|
648
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
649
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
650
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
651
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
652
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
653
|
-
};
|
|
654
|
-
export type ServiceNowConnectorOperator =
|
|
655
|
-
(typeof ServiceNowConnectorOperator)[keyof typeof ServiceNowConnectorOperator];
|
|
656
|
-
export declare const SingularConnectorOperator: {
|
|
657
|
-
readonly ADDITION: "ADDITION";
|
|
658
|
-
readonly DIVISION: "DIVISION";
|
|
659
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
660
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
661
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
662
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
663
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
664
|
-
readonly NO_OP: "NO_OP";
|
|
665
|
-
readonly PROJECTION: "PROJECTION";
|
|
666
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
667
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
668
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
669
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
670
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
671
|
-
};
|
|
672
|
-
export type SingularConnectorOperator =
|
|
673
|
-
(typeof SingularConnectorOperator)[keyof typeof SingularConnectorOperator];
|
|
674
|
-
export declare const SlackConnectorOperator: {
|
|
675
|
-
readonly ADDITION: "ADDITION";
|
|
676
|
-
readonly BETWEEN: "BETWEEN";
|
|
677
|
-
readonly DIVISION: "DIVISION";
|
|
678
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
679
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
680
|
-
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
681
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
682
|
-
readonly LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO";
|
|
683
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
684
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
685
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
686
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
687
|
-
readonly NO_OP: "NO_OP";
|
|
688
|
-
readonly PROJECTION: "PROJECTION";
|
|
689
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
690
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
691
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
692
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
693
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
694
|
-
};
|
|
695
|
-
export type SlackConnectorOperator =
|
|
696
|
-
(typeof SlackConnectorOperator)[keyof typeof SlackConnectorOperator];
|
|
697
|
-
export declare const TrendmicroConnectorOperator: {
|
|
698
|
-
readonly ADDITION: "ADDITION";
|
|
699
|
-
readonly DIVISION: "DIVISION";
|
|
700
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
701
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
702
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
703
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
704
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
705
|
-
readonly NO_OP: "NO_OP";
|
|
706
|
-
readonly PROJECTION: "PROJECTION";
|
|
707
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
708
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
709
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
710
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
711
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
712
|
-
};
|
|
713
|
-
export type TrendmicroConnectorOperator =
|
|
714
|
-
(typeof TrendmicroConnectorOperator)[keyof typeof TrendmicroConnectorOperator];
|
|
715
|
-
export declare const VeevaConnectorOperator: {
|
|
716
|
-
readonly ADDITION: "ADDITION";
|
|
717
|
-
readonly BETWEEN: "BETWEEN";
|
|
718
|
-
readonly CONTAINS: "CONTAINS";
|
|
719
|
-
readonly DIVISION: "DIVISION";
|
|
720
|
-
readonly EQUAL_TO: "EQUAL_TO";
|
|
721
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
722
|
-
readonly GREATER_THAN_OR_EQUAL_TO: "GREATER_THAN_OR_EQUAL_TO";
|
|
723
|
-
readonly LESS_THAN: "LESS_THAN";
|
|
724
|
-
readonly LESS_THAN_OR_EQUAL_TO: "LESS_THAN_OR_EQUAL_TO";
|
|
725
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
726
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
727
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
728
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
729
|
-
readonly NOT_EQUAL_TO: "NOT_EQUAL_TO";
|
|
730
|
-
readonly NO_OP: "NO_OP";
|
|
731
|
-
readonly PROJECTION: "PROJECTION";
|
|
732
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
733
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
734
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
735
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
736
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
737
|
-
};
|
|
738
|
-
export type VeevaConnectorOperator =
|
|
739
|
-
(typeof VeevaConnectorOperator)[keyof typeof VeevaConnectorOperator];
|
|
740
|
-
export declare const ZendeskConnectorOperator: {
|
|
741
|
-
readonly ADDITION: "ADDITION";
|
|
742
|
-
readonly DIVISION: "DIVISION";
|
|
743
|
-
readonly GREATER_THAN: "GREATER_THAN";
|
|
744
|
-
readonly MASK_ALL: "MASK_ALL";
|
|
745
|
-
readonly MASK_FIRST_N: "MASK_FIRST_N";
|
|
746
|
-
readonly MASK_LAST_N: "MASK_LAST_N";
|
|
747
|
-
readonly MULTIPLICATION: "MULTIPLICATION";
|
|
748
|
-
readonly NO_OP: "NO_OP";
|
|
749
|
-
readonly PROJECTION: "PROJECTION";
|
|
750
|
-
readonly SUBTRACTION: "SUBTRACTION";
|
|
751
|
-
readonly VALIDATE_NON_NEGATIVE: "VALIDATE_NON_NEGATIVE";
|
|
752
|
-
readonly VALIDATE_NON_NULL: "VALIDATE_NON_NULL";
|
|
753
|
-
readonly VALIDATE_NON_ZERO: "VALIDATE_NON_ZERO";
|
|
754
|
-
readonly VALIDATE_NUMERIC: "VALIDATE_NUMERIC";
|
|
755
|
-
};
|
|
756
|
-
export type ZendeskConnectorOperator =
|
|
757
|
-
(typeof ZendeskConnectorOperator)[keyof typeof ZendeskConnectorOperator];
|
|
758
284
|
export interface ConnectorOperator {
|
|
759
285
|
Amplitude?: AmplitudeConnectorOperator | undefined;
|
|
760
286
|
Datadog?: DatadogConnectorOperator | undefined;
|
|
@@ -877,22 +403,6 @@ export interface ConnectorProfileProperties {
|
|
|
877
403
|
CustomConnector?: CustomConnectorProfileProperties | undefined;
|
|
878
404
|
Pardot?: PardotConnectorProfileProperties | undefined;
|
|
879
405
|
}
|
|
880
|
-
export declare const PrivateConnectionProvisioningFailureCause: {
|
|
881
|
-
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
882
|
-
readonly CONNECTOR_AUTHENTICATION: "CONNECTOR_AUTHENTICATION";
|
|
883
|
-
readonly CONNECTOR_SERVER: "CONNECTOR_SERVER";
|
|
884
|
-
readonly INTERNAL_SERVER: "INTERNAL_SERVER";
|
|
885
|
-
readonly VALIDATION: "VALIDATION";
|
|
886
|
-
};
|
|
887
|
-
export type PrivateConnectionProvisioningFailureCause =
|
|
888
|
-
(typeof PrivateConnectionProvisioningFailureCause)[keyof typeof PrivateConnectionProvisioningFailureCause];
|
|
889
|
-
export declare const PrivateConnectionProvisioningStatus: {
|
|
890
|
-
readonly CREATED: "CREATED";
|
|
891
|
-
readonly FAILED: "FAILED";
|
|
892
|
-
readonly PENDING: "PENDING";
|
|
893
|
-
};
|
|
894
|
-
export type PrivateConnectionProvisioningStatus =
|
|
895
|
-
(typeof PrivateConnectionProvisioningStatus)[keyof typeof PrivateConnectionProvisioningStatus];
|
|
896
406
|
export interface PrivateConnectionProvisioningState {
|
|
897
407
|
status?: PrivateConnectionProvisioningStatus | undefined;
|
|
898
408
|
failureMessage?: string | undefined;
|
|
@@ -1046,13 +556,6 @@ export interface ConnectorProfileConfig {
|
|
|
1046
556
|
connectorProfileProperties: ConnectorProfileProperties | undefined;
|
|
1047
557
|
connectorProfileCredentials?: ConnectorProfileCredentials | undefined;
|
|
1048
558
|
}
|
|
1049
|
-
export declare class ConnectorServerException extends __BaseException {
|
|
1050
|
-
readonly name: "ConnectorServerException";
|
|
1051
|
-
readonly $fault: "client";
|
|
1052
|
-
constructor(
|
|
1053
|
-
opts: __ExceptionOptionType<ConnectorServerException, __BaseException>
|
|
1054
|
-
);
|
|
1055
|
-
}
|
|
1056
559
|
export interface CreateConnectorProfileRequest {
|
|
1057
560
|
connectorProfileName: string | undefined;
|
|
1058
561
|
kmsArn?: string | undefined;
|
|
@@ -1065,13 +568,6 @@ export interface CreateConnectorProfileRequest {
|
|
|
1065
568
|
export interface CreateConnectorProfileResponse {
|
|
1066
569
|
connectorProfileArn?: string | undefined;
|
|
1067
570
|
}
|
|
1068
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
1069
|
-
readonly name: "ServiceQuotaExceededException";
|
|
1070
|
-
readonly $fault: "client";
|
|
1071
|
-
constructor(
|
|
1072
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
1073
|
-
);
|
|
1074
|
-
}
|
|
1075
571
|
export interface ErrorHandlingConfig {
|
|
1076
572
|
failOnFirstDestinationError?: boolean | undefined;
|
|
1077
573
|
bucketPrefix?: string | undefined;
|
|
@@ -1107,31 +603,6 @@ export interface RedshiftDestinationProperties {
|
|
|
1107
603
|
bucketPrefix?: string | undefined;
|
|
1108
604
|
errorHandlingConfig?: ErrorHandlingConfig | undefined;
|
|
1109
605
|
}
|
|
1110
|
-
export declare const FileType: {
|
|
1111
|
-
readonly CSV: "CSV";
|
|
1112
|
-
readonly JSON: "JSON";
|
|
1113
|
-
readonly PARQUET: "PARQUET";
|
|
1114
|
-
};
|
|
1115
|
-
export type FileType = (typeof FileType)[keyof typeof FileType];
|
|
1116
|
-
export declare const PathPrefix: {
|
|
1117
|
-
readonly EXECUTION_ID: "EXECUTION_ID";
|
|
1118
|
-
readonly SCHEMA_VERSION: "SCHEMA_VERSION";
|
|
1119
|
-
};
|
|
1120
|
-
export type PathPrefix = (typeof PathPrefix)[keyof typeof PathPrefix];
|
|
1121
|
-
export declare const PrefixFormat: {
|
|
1122
|
-
readonly DAY: "DAY";
|
|
1123
|
-
readonly HOUR: "HOUR";
|
|
1124
|
-
readonly MINUTE: "MINUTE";
|
|
1125
|
-
readonly MONTH: "MONTH";
|
|
1126
|
-
readonly YEAR: "YEAR";
|
|
1127
|
-
};
|
|
1128
|
-
export type PrefixFormat = (typeof PrefixFormat)[keyof typeof PrefixFormat];
|
|
1129
|
-
export declare const PrefixType: {
|
|
1130
|
-
readonly FILENAME: "FILENAME";
|
|
1131
|
-
readonly PATH: "PATH";
|
|
1132
|
-
readonly PATH_AND_FILENAME: "PATH_AND_FILENAME";
|
|
1133
|
-
};
|
|
1134
|
-
export type PrefixType = (typeof PrefixType)[keyof typeof PrefixType];
|
|
1135
606
|
export interface PrefixConfig {
|
|
1136
607
|
prefixType?: PrefixType | undefined;
|
|
1137
608
|
prefixFormat?: PrefixFormat | undefined;
|
|
@@ -1243,12 +714,6 @@ export interface MarketoSourceProperties {
|
|
|
1243
714
|
export interface PardotSourceProperties {
|
|
1244
715
|
object: string | undefined;
|
|
1245
716
|
}
|
|
1246
|
-
export declare const S3InputFileType: {
|
|
1247
|
-
readonly CSV: "CSV";
|
|
1248
|
-
readonly JSON: "JSON";
|
|
1249
|
-
};
|
|
1250
|
-
export type S3InputFileType =
|
|
1251
|
-
(typeof S3InputFileType)[keyof typeof S3InputFileType];
|
|
1252
717
|
export interface S3InputFormatConfig {
|
|
1253
718
|
s3InputFileType?: S3InputFileType | undefined;
|
|
1254
719
|
}
|
|
@@ -1322,40 +787,6 @@ export interface SourceFlowConfig {
|
|
|
1322
787
|
sourceConnectorProperties: SourceConnectorProperties | undefined;
|
|
1323
788
|
incrementalPullConfig?: IncrementalPullConfig | undefined;
|
|
1324
789
|
}
|
|
1325
|
-
export declare const OperatorPropertiesKeys: {
|
|
1326
|
-
readonly CONCAT_FORMAT: "CONCAT_FORMAT";
|
|
1327
|
-
readonly DATA_TYPE: "DATA_TYPE";
|
|
1328
|
-
readonly DESTINATION_DATA_TYPE: "DESTINATION_DATA_TYPE";
|
|
1329
|
-
readonly EXCLUDE_SOURCE_FIELDS_LIST: "EXCLUDE_SOURCE_FIELDS_LIST";
|
|
1330
|
-
readonly INCLUDE_NEW_FIELDS: "INCLUDE_NEW_FIELDS";
|
|
1331
|
-
readonly LOWER_BOUND: "LOWER_BOUND";
|
|
1332
|
-
readonly MASK_LENGTH: "MASK_LENGTH";
|
|
1333
|
-
readonly MASK_VALUE: "MASK_VALUE";
|
|
1334
|
-
readonly MATH_OPERATION_FIELDS_ORDER: "MATH_OPERATION_FIELDS_ORDER";
|
|
1335
|
-
readonly ORDERED_PARTITION_KEYS_LIST: "ORDERED_PARTITION_KEYS_LIST";
|
|
1336
|
-
readonly SOURCE_DATA_TYPE: "SOURCE_DATA_TYPE";
|
|
1337
|
-
readonly SUBFIELD_CATEGORY_MAP: "SUBFIELD_CATEGORY_MAP";
|
|
1338
|
-
readonly TRUNCATE_LENGTH: "TRUNCATE_LENGTH";
|
|
1339
|
-
readonly UPPER_BOUND: "UPPER_BOUND";
|
|
1340
|
-
readonly VALIDATION_ACTION: "VALIDATION_ACTION";
|
|
1341
|
-
readonly VALUE: "VALUE";
|
|
1342
|
-
readonly VALUES: "VALUES";
|
|
1343
|
-
};
|
|
1344
|
-
export type OperatorPropertiesKeys =
|
|
1345
|
-
(typeof OperatorPropertiesKeys)[keyof typeof OperatorPropertiesKeys];
|
|
1346
|
-
export declare const TaskType: {
|
|
1347
|
-
readonly ARITHMETIC: "Arithmetic";
|
|
1348
|
-
readonly FILTER: "Filter";
|
|
1349
|
-
readonly MAP: "Map";
|
|
1350
|
-
readonly MAP_ALL: "Map_all";
|
|
1351
|
-
readonly MASK: "Mask";
|
|
1352
|
-
readonly MERGE: "Merge";
|
|
1353
|
-
readonly PARTITION: "Partition";
|
|
1354
|
-
readonly PASSTHROUGH: "Passthrough";
|
|
1355
|
-
readonly TRUNCATE: "Truncate";
|
|
1356
|
-
readonly VALIDATE: "Validate";
|
|
1357
|
-
};
|
|
1358
|
-
export type TaskType = (typeof TaskType)[keyof typeof TaskType];
|
|
1359
790
|
export interface Task {
|
|
1360
791
|
sourceFields: string[] | undefined;
|
|
1361
792
|
connectorOperator?: ConnectorOperator | undefined;
|
|
@@ -1363,11 +794,6 @@ export interface Task {
|
|
|
1363
794
|
taskType: TaskType | undefined;
|
|
1364
795
|
taskProperties?: Partial<Record<OperatorPropertiesKeys, string>> | undefined;
|
|
1365
796
|
}
|
|
1366
|
-
export declare const DataPullMode: {
|
|
1367
|
-
readonly COMPLETE: "Complete";
|
|
1368
|
-
readonly INCREMENTAL: "Incremental";
|
|
1369
|
-
};
|
|
1370
|
-
export type DataPullMode = (typeof DataPullMode)[keyof typeof DataPullMode];
|
|
1371
797
|
export interface ScheduledTriggerProperties {
|
|
1372
798
|
scheduleExpression: string | undefined;
|
|
1373
799
|
dataPullMode?: DataPullMode | undefined;
|
|
@@ -1397,15 +823,6 @@ export interface CreateFlowRequest {
|
|
|
1397
823
|
metadataCatalogConfig?: MetadataCatalogConfig | undefined;
|
|
1398
824
|
clientToken?: string | undefined;
|
|
1399
825
|
}
|
|
1400
|
-
export declare const FlowStatus: {
|
|
1401
|
-
readonly ACTIVE: "Active";
|
|
1402
|
-
readonly DELETED: "Deleted";
|
|
1403
|
-
readonly DEPRECATED: "Deprecated";
|
|
1404
|
-
readonly DRAFT: "Draft";
|
|
1405
|
-
readonly ERRORED: "Errored";
|
|
1406
|
-
readonly SUSPENDED: "Suspended";
|
|
1407
|
-
};
|
|
1408
|
-
export type FlowStatus = (typeof FlowStatus)[keyof typeof FlowStatus];
|
|
1409
826
|
export interface CreateFlowResponse {
|
|
1410
827
|
flowArn?: string | undefined;
|
|
1411
828
|
flowStatus?: FlowStatus | undefined;
|
|
@@ -1462,15 +879,6 @@ export interface DescribeConnectorsResponse {
|
|
|
1462
879
|
export interface DescribeFlowRequest {
|
|
1463
880
|
flowName: string | undefined;
|
|
1464
881
|
}
|
|
1465
|
-
export declare const ExecutionStatus: {
|
|
1466
|
-
readonly CANCELED: "Canceled";
|
|
1467
|
-
readonly CANCELSTARTED: "CancelStarted";
|
|
1468
|
-
readonly ERROR: "Error";
|
|
1469
|
-
readonly INPROGRESS: "InProgress";
|
|
1470
|
-
readonly SUCCESSFUL: "Successful";
|
|
1471
|
-
};
|
|
1472
|
-
export type ExecutionStatus =
|
|
1473
|
-
(typeof ExecutionStatus)[keyof typeof ExecutionStatus];
|
|
1474
882
|
export interface ExecutionDetails {
|
|
1475
883
|
mostRecentExecutionMessage?: string | undefined;
|
|
1476
884
|
mostRecentExecutionTime?: Date | undefined;
|
|
@@ -1624,13 +1032,6 @@ export interface StopFlowResponse {
|
|
|
1624
1032
|
flowArn?: string | undefined;
|
|
1625
1033
|
flowStatus?: FlowStatus | undefined;
|
|
1626
1034
|
}
|
|
1627
|
-
export declare class UnsupportedOperationException extends __BaseException {
|
|
1628
|
-
readonly name: "UnsupportedOperationException";
|
|
1629
|
-
readonly $fault: "client";
|
|
1630
|
-
constructor(
|
|
1631
|
-
opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
|
|
1632
|
-
);
|
|
1633
|
-
}
|
|
1634
1035
|
export interface TagResourceRequest {
|
|
1635
1036
|
resourceArn: string | undefined;
|
|
1636
1037
|
tags: Record<string, string> | undefined;
|