@aws-sdk/client-supplychain 3.934.0 → 3.936.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 +91 -90
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +90 -0
- package/dist-es/models/errors.js +89 -0
- package/dist-es/models/models_0.js +1 -179
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +210 -0
- package/dist-types/models/errors.d.ts +90 -0
- package/dist-types/models/models_0.d.ts +1 -300
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +119 -0
- package/dist-types/ts3.4/models/errors.d.ts +53 -0
- package/dist-types/ts3.4/models/models_0.d.ts +17 -172
- package/package.json +19 -19
- 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
|
@@ -0,0 +1,210 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const ConfigurationJobStatus: {
|
|
6
|
+
readonly FAILED: "FAILED";
|
|
7
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
8
|
+
readonly NEW: "NEW";
|
|
9
|
+
readonly QUEUED: "QUEUED";
|
|
10
|
+
readonly SUCCESS: "SUCCESS";
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
export type ConfigurationJobStatus = (typeof ConfigurationJobStatus)[keyof typeof ConfigurationJobStatus];
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
* @enum
|
|
19
|
+
*/
|
|
20
|
+
export declare const DataIntegrationFlowFieldPriorityDedupeSortOrder: {
|
|
21
|
+
readonly ASC: "ASC";
|
|
22
|
+
readonly DESC: "DESC";
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
export type DataIntegrationFlowFieldPriorityDedupeSortOrder = (typeof DataIntegrationFlowFieldPriorityDedupeSortOrder)[keyof typeof DataIntegrationFlowFieldPriorityDedupeSortOrder];
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
* @enum
|
|
31
|
+
*/
|
|
32
|
+
export declare const DataIntegrationFlowDedupeStrategyType: {
|
|
33
|
+
readonly FIELD_PRIORITY: "FIELD_PRIORITY";
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* @public
|
|
37
|
+
*/
|
|
38
|
+
export type DataIntegrationFlowDedupeStrategyType = (typeof DataIntegrationFlowDedupeStrategyType)[keyof typeof DataIntegrationFlowDedupeStrategyType];
|
|
39
|
+
/**
|
|
40
|
+
* @public
|
|
41
|
+
* @enum
|
|
42
|
+
*/
|
|
43
|
+
export declare const DataIntegrationFlowLoadType: {
|
|
44
|
+
readonly INCREMENTAL: "INCREMENTAL";
|
|
45
|
+
readonly REPLACE: "REPLACE";
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
export type DataIntegrationFlowLoadType = (typeof DataIntegrationFlowLoadType)[keyof typeof DataIntegrationFlowLoadType];
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
* @enum
|
|
54
|
+
*/
|
|
55
|
+
export declare const DataIntegrationFlowFileType: {
|
|
56
|
+
readonly CSV: "CSV";
|
|
57
|
+
readonly JSON: "JSON";
|
|
58
|
+
readonly PARQUET: "PARQUET";
|
|
59
|
+
};
|
|
60
|
+
/**
|
|
61
|
+
* @public
|
|
62
|
+
*/
|
|
63
|
+
export type DataIntegrationFlowFileType = (typeof DataIntegrationFlowFileType)[keyof typeof DataIntegrationFlowFileType];
|
|
64
|
+
/**
|
|
65
|
+
* @public
|
|
66
|
+
* @enum
|
|
67
|
+
*/
|
|
68
|
+
export declare const DataIntegrationFlowSourceType: {
|
|
69
|
+
readonly DATASET: "DATASET";
|
|
70
|
+
readonly S3: "S3";
|
|
71
|
+
};
|
|
72
|
+
/**
|
|
73
|
+
* @public
|
|
74
|
+
*/
|
|
75
|
+
export type DataIntegrationFlowSourceType = (typeof DataIntegrationFlowSourceType)[keyof typeof DataIntegrationFlowSourceType];
|
|
76
|
+
/**
|
|
77
|
+
* @public
|
|
78
|
+
* @enum
|
|
79
|
+
*/
|
|
80
|
+
export declare const DataIntegrationFlowTargetType: {
|
|
81
|
+
readonly DATASET: "DATASET";
|
|
82
|
+
readonly S3: "S3";
|
|
83
|
+
};
|
|
84
|
+
/**
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
export type DataIntegrationFlowTargetType = (typeof DataIntegrationFlowTargetType)[keyof typeof DataIntegrationFlowTargetType];
|
|
88
|
+
/**
|
|
89
|
+
* @public
|
|
90
|
+
* @enum
|
|
91
|
+
*/
|
|
92
|
+
export declare const DataIntegrationFlowTransformationType: {
|
|
93
|
+
readonly NONE: "NONE";
|
|
94
|
+
readonly SQL: "SQL";
|
|
95
|
+
};
|
|
96
|
+
/**
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
export type DataIntegrationFlowTransformationType = (typeof DataIntegrationFlowTransformationType)[keyof typeof DataIntegrationFlowTransformationType];
|
|
100
|
+
/**
|
|
101
|
+
* @public
|
|
102
|
+
* @enum
|
|
103
|
+
*/
|
|
104
|
+
export declare const DataLakeDatasetPartitionTransformType: {
|
|
105
|
+
readonly DAY: "DAY";
|
|
106
|
+
readonly HOUR: "HOUR";
|
|
107
|
+
readonly IDENTITY: "IDENTITY";
|
|
108
|
+
readonly MONTH: "MONTH";
|
|
109
|
+
readonly YEAR: "YEAR";
|
|
110
|
+
};
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
*/
|
|
114
|
+
export type DataLakeDatasetPartitionTransformType = (typeof DataLakeDatasetPartitionTransformType)[keyof typeof DataLakeDatasetPartitionTransformType];
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
* @enum
|
|
118
|
+
*/
|
|
119
|
+
export declare const DataLakeDatasetSchemaFieldType: {
|
|
120
|
+
readonly DOUBLE: "DOUBLE";
|
|
121
|
+
readonly INT: "INT";
|
|
122
|
+
readonly LONG: "LONG";
|
|
123
|
+
readonly STRING: "STRING";
|
|
124
|
+
readonly TIMESTAMP: "TIMESTAMP";
|
|
125
|
+
};
|
|
126
|
+
/**
|
|
127
|
+
* @public
|
|
128
|
+
*/
|
|
129
|
+
export type DataLakeDatasetSchemaFieldType = (typeof DataLakeDatasetSchemaFieldType)[keyof typeof DataLakeDatasetSchemaFieldType];
|
|
130
|
+
/**
|
|
131
|
+
* @public
|
|
132
|
+
* @enum
|
|
133
|
+
*/
|
|
134
|
+
export declare const InstanceState: {
|
|
135
|
+
readonly ACTIVE: "Active";
|
|
136
|
+
readonly CREATE_FAILED: "CreateFailed";
|
|
137
|
+
readonly DELETED: "Deleted";
|
|
138
|
+
readonly DELETE_FAILED: "DeleteFailed";
|
|
139
|
+
readonly DELETING: "Deleting";
|
|
140
|
+
readonly INITIALIZING: "Initializing";
|
|
141
|
+
};
|
|
142
|
+
/**
|
|
143
|
+
* @public
|
|
144
|
+
*/
|
|
145
|
+
export type InstanceState = (typeof InstanceState)[keyof typeof InstanceState];
|
|
146
|
+
/**
|
|
147
|
+
* @public
|
|
148
|
+
* @enum
|
|
149
|
+
*/
|
|
150
|
+
export declare const DataIntegrationEventDatasetLoadStatus: {
|
|
151
|
+
readonly FAILED: "FAILED";
|
|
152
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
153
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
154
|
+
};
|
|
155
|
+
/**
|
|
156
|
+
* @public
|
|
157
|
+
*/
|
|
158
|
+
export type DataIntegrationEventDatasetLoadStatus = (typeof DataIntegrationEventDatasetLoadStatus)[keyof typeof DataIntegrationEventDatasetLoadStatus];
|
|
159
|
+
/**
|
|
160
|
+
* @public
|
|
161
|
+
* @enum
|
|
162
|
+
*/
|
|
163
|
+
export declare const DataIntegrationEventDatasetOperationType: {
|
|
164
|
+
readonly APPEND: "APPEND";
|
|
165
|
+
readonly DELETE: "DELETE";
|
|
166
|
+
readonly UPSERT: "UPSERT";
|
|
167
|
+
};
|
|
168
|
+
/**
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
171
|
+
export type DataIntegrationEventDatasetOperationType = (typeof DataIntegrationEventDatasetOperationType)[keyof typeof DataIntegrationEventDatasetOperationType];
|
|
172
|
+
/**
|
|
173
|
+
* @public
|
|
174
|
+
* @enum
|
|
175
|
+
*/
|
|
176
|
+
export declare const DataIntegrationEventType: {
|
|
177
|
+
readonly DATASET: "scn.data.dataset";
|
|
178
|
+
readonly FORECAST: "scn.data.forecast";
|
|
179
|
+
readonly INBOUND_ORDER: "scn.data.inboundorder";
|
|
180
|
+
readonly INBOUND_ORDER_LINE: "scn.data.inboundorderline";
|
|
181
|
+
readonly INBOUND_ORDER_LINE_SCHEDULE: "scn.data.inboundorderlineschedule";
|
|
182
|
+
readonly INVENTORY_LEVEL: "scn.data.inventorylevel";
|
|
183
|
+
readonly OUTBOUND_ORDER_LINE: "scn.data.outboundorderline";
|
|
184
|
+
readonly OUTBOUND_SHIPMENT: "scn.data.outboundshipment";
|
|
185
|
+
readonly PROCESS_HEADER: "scn.data.processheader";
|
|
186
|
+
readonly PROCESS_OPERATION: "scn.data.processoperation";
|
|
187
|
+
readonly PROCESS_PRODUCT: "scn.data.processproduct";
|
|
188
|
+
readonly RESERVATION: "scn.data.reservation";
|
|
189
|
+
readonly SHIPMENT: "scn.data.shipment";
|
|
190
|
+
readonly SHIPMENT_STOP: "scn.data.shipmentstop";
|
|
191
|
+
readonly SHIPMENT_STOP_ORDER: "scn.data.shipmentstoporder";
|
|
192
|
+
readonly SUPPLY_PLAN: "scn.data.supplyplan";
|
|
193
|
+
};
|
|
194
|
+
/**
|
|
195
|
+
* @public
|
|
196
|
+
*/
|
|
197
|
+
export type DataIntegrationEventType = (typeof DataIntegrationEventType)[keyof typeof DataIntegrationEventType];
|
|
198
|
+
/**
|
|
199
|
+
* @public
|
|
200
|
+
* @enum
|
|
201
|
+
*/
|
|
202
|
+
export declare const DataIntegrationFlowExecutionStatus: {
|
|
203
|
+
readonly FAILED: "FAILED";
|
|
204
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
205
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
206
|
+
};
|
|
207
|
+
/**
|
|
208
|
+
* @public
|
|
209
|
+
*/
|
|
210
|
+
export type DataIntegrationFlowExecutionStatus = (typeof DataIntegrationFlowExecutionStatus)[keyof typeof DataIntegrationFlowExecutionStatus];
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { SupplyChainServiceException as __BaseException } from "./SupplyChainServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>You do not have the required privileges to perform this action.</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
|
+
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export declare class ConflictException extends __BaseException {
|
|
20
|
+
readonly name: "ConflictException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* <p>Unexpected error during processing of request.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export declare class InternalServerException extends __BaseException {
|
|
32
|
+
readonly name: "InternalServerException";
|
|
33
|
+
readonly $fault: "server";
|
|
34
|
+
$retryable: {};
|
|
35
|
+
/**
|
|
36
|
+
* @internal
|
|
37
|
+
*/
|
|
38
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* <p>Request references a resource which does not exist.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
45
|
+
readonly name: "ResourceNotFoundException";
|
|
46
|
+
readonly $fault: "client";
|
|
47
|
+
/**
|
|
48
|
+
* @internal
|
|
49
|
+
*/
|
|
50
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* <p>Request would cause a service quota to be exceeded.</p>
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
56
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
57
|
+
readonly name: "ServiceQuotaExceededException";
|
|
58
|
+
readonly $fault: "client";
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
*/
|
|
62
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* <p>Request was denied due to request throttling.</p>
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
export declare class ThrottlingException extends __BaseException {
|
|
69
|
+
readonly name: "ThrottlingException";
|
|
70
|
+
readonly $fault: "client";
|
|
71
|
+
$retryable: {
|
|
72
|
+
throttling: boolean;
|
|
73
|
+
};
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
77
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* <p>The input does not satisfy the constraints specified by an AWS service.</p>
|
|
81
|
+
* @public
|
|
82
|
+
*/
|
|
83
|
+
export declare class ValidationException extends __BaseException {
|
|
84
|
+
readonly name: "ValidationException";
|
|
85
|
+
readonly $fault: "client";
|
|
86
|
+
/**
|
|
87
|
+
* @internal
|
|
88
|
+
*/
|
|
89
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
90
|
+
}
|
|
@@ -1,32 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { SupplyChainServiceException as __BaseException } from "./SupplyChainServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* <p>You do not have the required privileges to perform this action.</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 ConfigurationJobStatus: {
|
|
20
|
-
readonly FAILED: "FAILED";
|
|
21
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
22
|
-
readonly NEW: "NEW";
|
|
23
|
-
readonly QUEUED: "QUEUED";
|
|
24
|
-
readonly SUCCESS: "SUCCESS";
|
|
25
|
-
};
|
|
26
|
-
/**
|
|
27
|
-
* @public
|
|
28
|
-
*/
|
|
29
|
-
export type ConfigurationJobStatus = (typeof ConfigurationJobStatus)[keyof typeof ConfigurationJobStatus];
|
|
1
|
+
import { ConfigurationJobStatus, DataIntegrationEventDatasetLoadStatus, DataIntegrationEventDatasetOperationType, DataIntegrationEventType, DataIntegrationFlowDedupeStrategyType, DataIntegrationFlowExecutionStatus, DataIntegrationFlowFieldPriorityDedupeSortOrder, DataIntegrationFlowFileType, DataIntegrationFlowLoadType, DataIntegrationFlowSourceType, DataIntegrationFlowTargetType, DataIntegrationFlowTransformationType, DataLakeDatasetPartitionTransformType, DataLakeDatasetSchemaFieldType, InstanceState } from "./enums";
|
|
30
2
|
/**
|
|
31
3
|
* <p>The BillOfMaterialsImportJob details.</p>
|
|
32
4
|
* @public
|
|
@@ -58,18 +30,6 @@ export interface BillOfMaterialsImportJob {
|
|
|
58
30
|
*/
|
|
59
31
|
message?: string | undefined;
|
|
60
32
|
}
|
|
61
|
-
/**
|
|
62
|
-
* <p>Updating or deleting a resource can cause an inconsistent state.</p>
|
|
63
|
-
* @public
|
|
64
|
-
*/
|
|
65
|
-
export declare class ConflictException extends __BaseException {
|
|
66
|
-
readonly name: "ConflictException";
|
|
67
|
-
readonly $fault: "client";
|
|
68
|
-
/**
|
|
69
|
-
* @internal
|
|
70
|
-
*/
|
|
71
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
72
|
-
}
|
|
73
33
|
/**
|
|
74
34
|
* <p>The request parameters for CreateBillOfMaterialsImportJob.</p>
|
|
75
35
|
* @public
|
|
@@ -102,70 +62,6 @@ export interface CreateBillOfMaterialsImportJobResponse {
|
|
|
102
62
|
*/
|
|
103
63
|
jobId: string | undefined;
|
|
104
64
|
}
|
|
105
|
-
/**
|
|
106
|
-
* <p>Unexpected error during processing of request.</p>
|
|
107
|
-
* @public
|
|
108
|
-
*/
|
|
109
|
-
export declare class InternalServerException extends __BaseException {
|
|
110
|
-
readonly name: "InternalServerException";
|
|
111
|
-
readonly $fault: "server";
|
|
112
|
-
$retryable: {};
|
|
113
|
-
/**
|
|
114
|
-
* @internal
|
|
115
|
-
*/
|
|
116
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
117
|
-
}
|
|
118
|
-
/**
|
|
119
|
-
* <p>Request references a resource which does not exist.</p>
|
|
120
|
-
* @public
|
|
121
|
-
*/
|
|
122
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
123
|
-
readonly name: "ResourceNotFoundException";
|
|
124
|
-
readonly $fault: "client";
|
|
125
|
-
/**
|
|
126
|
-
* @internal
|
|
127
|
-
*/
|
|
128
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
129
|
-
}
|
|
130
|
-
/**
|
|
131
|
-
* <p>Request would cause a service quota to be exceeded.</p>
|
|
132
|
-
* @public
|
|
133
|
-
*/
|
|
134
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
135
|
-
readonly name: "ServiceQuotaExceededException";
|
|
136
|
-
readonly $fault: "client";
|
|
137
|
-
/**
|
|
138
|
-
* @internal
|
|
139
|
-
*/
|
|
140
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
141
|
-
}
|
|
142
|
-
/**
|
|
143
|
-
* <p>Request was denied due to request throttling.</p>
|
|
144
|
-
* @public
|
|
145
|
-
*/
|
|
146
|
-
export declare class ThrottlingException extends __BaseException {
|
|
147
|
-
readonly name: "ThrottlingException";
|
|
148
|
-
readonly $fault: "client";
|
|
149
|
-
$retryable: {
|
|
150
|
-
throttling: boolean;
|
|
151
|
-
};
|
|
152
|
-
/**
|
|
153
|
-
* @internal
|
|
154
|
-
*/
|
|
155
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
156
|
-
}
|
|
157
|
-
/**
|
|
158
|
-
* <p>The input does not satisfy the constraints specified by an AWS service.</p>
|
|
159
|
-
* @public
|
|
160
|
-
*/
|
|
161
|
-
export declare class ValidationException extends __BaseException {
|
|
162
|
-
readonly name: "ValidationException";
|
|
163
|
-
readonly $fault: "client";
|
|
164
|
-
/**
|
|
165
|
-
* @internal
|
|
166
|
-
*/
|
|
167
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
168
|
-
}
|
|
169
65
|
/**
|
|
170
66
|
* <p>The request parameters for GetBillOfMaterialsImportJob.</p>
|
|
171
67
|
* @public
|
|
@@ -193,18 +89,6 @@ export interface GetBillOfMaterialsImportJobResponse {
|
|
|
193
89
|
*/
|
|
194
90
|
job: BillOfMaterialsImportJob | undefined;
|
|
195
91
|
}
|
|
196
|
-
/**
|
|
197
|
-
* @public
|
|
198
|
-
* @enum
|
|
199
|
-
*/
|
|
200
|
-
export declare const DataIntegrationFlowFieldPriorityDedupeSortOrder: {
|
|
201
|
-
readonly ASC: "ASC";
|
|
202
|
-
readonly DESC: "DESC";
|
|
203
|
-
};
|
|
204
|
-
/**
|
|
205
|
-
* @public
|
|
206
|
-
*/
|
|
207
|
-
export type DataIntegrationFlowFieldPriorityDedupeSortOrder = (typeof DataIntegrationFlowFieldPriorityDedupeSortOrder)[keyof typeof DataIntegrationFlowFieldPriorityDedupeSortOrder];
|
|
208
92
|
/**
|
|
209
93
|
* <p>The field used in the field priority deduplication strategy.</p>
|
|
210
94
|
* @public
|
|
@@ -232,17 +116,6 @@ export interface DataIntegrationFlowFieldPriorityDedupeStrategyConfiguration {
|
|
|
232
116
|
*/
|
|
233
117
|
fields: DataIntegrationFlowFieldPriorityDedupeField[] | undefined;
|
|
234
118
|
}
|
|
235
|
-
/**
|
|
236
|
-
* @public
|
|
237
|
-
* @enum
|
|
238
|
-
*/
|
|
239
|
-
export declare const DataIntegrationFlowDedupeStrategyType: {
|
|
240
|
-
readonly FIELD_PRIORITY: "FIELD_PRIORITY";
|
|
241
|
-
};
|
|
242
|
-
/**
|
|
243
|
-
* @public
|
|
244
|
-
*/
|
|
245
|
-
export type DataIntegrationFlowDedupeStrategyType = (typeof DataIntegrationFlowDedupeStrategyType)[keyof typeof DataIntegrationFlowDedupeStrategyType];
|
|
246
119
|
/**
|
|
247
120
|
* <p>The deduplication strategy details.</p>
|
|
248
121
|
* @public
|
|
@@ -265,18 +138,6 @@ export interface DataIntegrationFlowDedupeStrategy {
|
|
|
265
138
|
*/
|
|
266
139
|
fieldPriority?: DataIntegrationFlowFieldPriorityDedupeStrategyConfiguration | undefined;
|
|
267
140
|
}
|
|
268
|
-
/**
|
|
269
|
-
* @public
|
|
270
|
-
* @enum
|
|
271
|
-
*/
|
|
272
|
-
export declare const DataIntegrationFlowLoadType: {
|
|
273
|
-
readonly INCREMENTAL: "INCREMENTAL";
|
|
274
|
-
readonly REPLACE: "REPLACE";
|
|
275
|
-
};
|
|
276
|
-
/**
|
|
277
|
-
* @public
|
|
278
|
-
*/
|
|
279
|
-
export type DataIntegrationFlowLoadType = (typeof DataIntegrationFlowLoadType)[keyof typeof DataIntegrationFlowLoadType];
|
|
280
141
|
/**
|
|
281
142
|
* <p>The dataset options used in dataset source and target configurations.</p>
|
|
282
143
|
* @public
|
|
@@ -325,19 +186,6 @@ export interface DataIntegrationFlowDatasetSourceConfiguration {
|
|
|
325
186
|
*/
|
|
326
187
|
options?: DataIntegrationFlowDatasetOptions | undefined;
|
|
327
188
|
}
|
|
328
|
-
/**
|
|
329
|
-
* @public
|
|
330
|
-
* @enum
|
|
331
|
-
*/
|
|
332
|
-
export declare const DataIntegrationFlowFileType: {
|
|
333
|
-
readonly CSV: "CSV";
|
|
334
|
-
readonly JSON: "JSON";
|
|
335
|
-
readonly PARQUET: "PARQUET";
|
|
336
|
-
};
|
|
337
|
-
/**
|
|
338
|
-
* @public
|
|
339
|
-
*/
|
|
340
|
-
export type DataIntegrationFlowFileType = (typeof DataIntegrationFlowFileType)[keyof typeof DataIntegrationFlowFileType];
|
|
341
189
|
/**
|
|
342
190
|
* <p>The Amazon S3 options used in S3 source and target configurations.</p>
|
|
343
191
|
* @public
|
|
@@ -370,18 +218,6 @@ export interface DataIntegrationFlowS3SourceConfiguration {
|
|
|
370
218
|
*/
|
|
371
219
|
options?: DataIntegrationFlowS3Options | undefined;
|
|
372
220
|
}
|
|
373
|
-
/**
|
|
374
|
-
* @public
|
|
375
|
-
* @enum
|
|
376
|
-
*/
|
|
377
|
-
export declare const DataIntegrationFlowSourceType: {
|
|
378
|
-
readonly DATASET: "DATASET";
|
|
379
|
-
readonly S3: "S3";
|
|
380
|
-
};
|
|
381
|
-
/**
|
|
382
|
-
* @public
|
|
383
|
-
*/
|
|
384
|
-
export type DataIntegrationFlowSourceType = (typeof DataIntegrationFlowSourceType)[keyof typeof DataIntegrationFlowSourceType];
|
|
385
221
|
/**
|
|
386
222
|
* <p>The DataIntegrationFlow source parameters.</p>
|
|
387
223
|
* @public
|
|
@@ -445,18 +281,6 @@ export interface DataIntegrationFlowS3TargetConfiguration {
|
|
|
445
281
|
*/
|
|
446
282
|
options?: DataIntegrationFlowS3Options | undefined;
|
|
447
283
|
}
|
|
448
|
-
/**
|
|
449
|
-
* @public
|
|
450
|
-
* @enum
|
|
451
|
-
*/
|
|
452
|
-
export declare const DataIntegrationFlowTargetType: {
|
|
453
|
-
readonly DATASET: "DATASET";
|
|
454
|
-
readonly S3: "S3";
|
|
455
|
-
};
|
|
456
|
-
/**
|
|
457
|
-
* @public
|
|
458
|
-
*/
|
|
459
|
-
export type DataIntegrationFlowTargetType = (typeof DataIntegrationFlowTargetType)[keyof typeof DataIntegrationFlowTargetType];
|
|
460
284
|
/**
|
|
461
285
|
* <p>The DataIntegrationFlow target parameters.</p>
|
|
462
286
|
* @public
|
|
@@ -489,18 +313,6 @@ export interface DataIntegrationFlowSQLTransformationConfiguration {
|
|
|
489
313
|
*/
|
|
490
314
|
query: string | undefined;
|
|
491
315
|
}
|
|
492
|
-
/**
|
|
493
|
-
* @public
|
|
494
|
-
* @enum
|
|
495
|
-
*/
|
|
496
|
-
export declare const DataIntegrationFlowTransformationType: {
|
|
497
|
-
readonly NONE: "NONE";
|
|
498
|
-
readonly SQL: "SQL";
|
|
499
|
-
};
|
|
500
|
-
/**
|
|
501
|
-
* @public
|
|
502
|
-
*/
|
|
503
|
-
export type DataIntegrationFlowTransformationType = (typeof DataIntegrationFlowTransformationType)[keyof typeof DataIntegrationFlowTransformationType];
|
|
504
316
|
/**
|
|
505
317
|
* <p>The DataIntegrationFlow transformation parameters.</p>
|
|
506
318
|
* @public
|
|
@@ -569,21 +381,6 @@ export interface CreateDataIntegrationFlowResponse {
|
|
|
569
381
|
*/
|
|
570
382
|
name: string | undefined;
|
|
571
383
|
}
|
|
572
|
-
/**
|
|
573
|
-
* @public
|
|
574
|
-
* @enum
|
|
575
|
-
*/
|
|
576
|
-
export declare const DataLakeDatasetPartitionTransformType: {
|
|
577
|
-
readonly DAY: "DAY";
|
|
578
|
-
readonly HOUR: "HOUR";
|
|
579
|
-
readonly IDENTITY: "IDENTITY";
|
|
580
|
-
readonly MONTH: "MONTH";
|
|
581
|
-
readonly YEAR: "YEAR";
|
|
582
|
-
};
|
|
583
|
-
/**
|
|
584
|
-
* @public
|
|
585
|
-
*/
|
|
586
|
-
export type DataLakeDatasetPartitionTransformType = (typeof DataLakeDatasetPartitionTransformType)[keyof typeof DataLakeDatasetPartitionTransformType];
|
|
587
384
|
/**
|
|
588
385
|
* <p>The detail of the partition field transformation.</p>
|
|
589
386
|
* @public
|
|
@@ -644,21 +441,6 @@ export interface DataLakeDatasetPartitionSpec {
|
|
|
644
441
|
*/
|
|
645
442
|
fields: DataLakeDatasetPartitionField[] | undefined;
|
|
646
443
|
}
|
|
647
|
-
/**
|
|
648
|
-
* @public
|
|
649
|
-
* @enum
|
|
650
|
-
*/
|
|
651
|
-
export declare const DataLakeDatasetSchemaFieldType: {
|
|
652
|
-
readonly DOUBLE: "DOUBLE";
|
|
653
|
-
readonly INT: "INT";
|
|
654
|
-
readonly LONG: "LONG";
|
|
655
|
-
readonly STRING: "STRING";
|
|
656
|
-
readonly TIMESTAMP: "TIMESTAMP";
|
|
657
|
-
};
|
|
658
|
-
/**
|
|
659
|
-
* @public
|
|
660
|
-
*/
|
|
661
|
-
export type DataLakeDatasetSchemaFieldType = (typeof DataLakeDatasetSchemaFieldType)[keyof typeof DataLakeDatasetSchemaFieldType];
|
|
662
444
|
/**
|
|
663
445
|
* <p>The dataset field details.</p>
|
|
664
446
|
* @public
|
|
@@ -946,22 +728,6 @@ export interface CreateInstanceRequest {
|
|
|
946
728
|
*/
|
|
947
729
|
clientToken?: string | undefined;
|
|
948
730
|
}
|
|
949
|
-
/**
|
|
950
|
-
* @public
|
|
951
|
-
* @enum
|
|
952
|
-
*/
|
|
953
|
-
export declare const InstanceState: {
|
|
954
|
-
readonly ACTIVE: "Active";
|
|
955
|
-
readonly CREATE_FAILED: "CreateFailed";
|
|
956
|
-
readonly DELETED: "Deleted";
|
|
957
|
-
readonly DELETE_FAILED: "DeleteFailed";
|
|
958
|
-
readonly DELETING: "Deleting";
|
|
959
|
-
readonly INITIALIZING: "Initializing";
|
|
960
|
-
};
|
|
961
|
-
/**
|
|
962
|
-
* @public
|
|
963
|
-
*/
|
|
964
|
-
export type InstanceState = (typeof InstanceState)[keyof typeof InstanceState];
|
|
965
731
|
/**
|
|
966
732
|
* <p>The details of the instance.</p>
|
|
967
733
|
* @public
|
|
@@ -1034,19 +800,6 @@ export interface CreateInstanceResponse {
|
|
|
1034
800
|
*/
|
|
1035
801
|
instance: Instance | undefined;
|
|
1036
802
|
}
|
|
1037
|
-
/**
|
|
1038
|
-
* @public
|
|
1039
|
-
* @enum
|
|
1040
|
-
*/
|
|
1041
|
-
export declare const DataIntegrationEventDatasetLoadStatus: {
|
|
1042
|
-
readonly FAILED: "FAILED";
|
|
1043
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1044
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
1045
|
-
};
|
|
1046
|
-
/**
|
|
1047
|
-
* @public
|
|
1048
|
-
*/
|
|
1049
|
-
export type DataIntegrationEventDatasetLoadStatus = (typeof DataIntegrationEventDatasetLoadStatus)[keyof typeof DataIntegrationEventDatasetLoadStatus];
|
|
1050
803
|
/**
|
|
1051
804
|
* <p>The target dataset load execution details.</p>
|
|
1052
805
|
* @public
|
|
@@ -1063,19 +816,6 @@ export interface DataIntegrationEventDatasetLoadExecutionDetails {
|
|
|
1063
816
|
*/
|
|
1064
817
|
message?: string | undefined;
|
|
1065
818
|
}
|
|
1066
|
-
/**
|
|
1067
|
-
* @public
|
|
1068
|
-
* @enum
|
|
1069
|
-
*/
|
|
1070
|
-
export declare const DataIntegrationEventDatasetOperationType: {
|
|
1071
|
-
readonly APPEND: "APPEND";
|
|
1072
|
-
readonly DELETE: "DELETE";
|
|
1073
|
-
readonly UPSERT: "UPSERT";
|
|
1074
|
-
};
|
|
1075
|
-
/**
|
|
1076
|
-
* @public
|
|
1077
|
-
*/
|
|
1078
|
-
export type DataIntegrationEventDatasetOperationType = (typeof DataIntegrationEventDatasetOperationType)[keyof typeof DataIntegrationEventDatasetOperationType];
|
|
1079
819
|
/**
|
|
1080
820
|
* <p>The target dataset details for a DATASET event type.</p>
|
|
1081
821
|
* @public
|
|
@@ -1111,32 +851,6 @@ export interface DataIntegrationEventDatasetTargetDetails {
|
|
|
1111
851
|
*/
|
|
1112
852
|
datasetLoadExecution: DataIntegrationEventDatasetLoadExecutionDetails | undefined;
|
|
1113
853
|
}
|
|
1114
|
-
/**
|
|
1115
|
-
* @public
|
|
1116
|
-
* @enum
|
|
1117
|
-
*/
|
|
1118
|
-
export declare const DataIntegrationEventType: {
|
|
1119
|
-
readonly DATASET: "scn.data.dataset";
|
|
1120
|
-
readonly FORECAST: "scn.data.forecast";
|
|
1121
|
-
readonly INBOUND_ORDER: "scn.data.inboundorder";
|
|
1122
|
-
readonly INBOUND_ORDER_LINE: "scn.data.inboundorderline";
|
|
1123
|
-
readonly INBOUND_ORDER_LINE_SCHEDULE: "scn.data.inboundorderlineschedule";
|
|
1124
|
-
readonly INVENTORY_LEVEL: "scn.data.inventorylevel";
|
|
1125
|
-
readonly OUTBOUND_ORDER_LINE: "scn.data.outboundorderline";
|
|
1126
|
-
readonly OUTBOUND_SHIPMENT: "scn.data.outboundshipment";
|
|
1127
|
-
readonly PROCESS_HEADER: "scn.data.processheader";
|
|
1128
|
-
readonly PROCESS_OPERATION: "scn.data.processoperation";
|
|
1129
|
-
readonly PROCESS_PRODUCT: "scn.data.processproduct";
|
|
1130
|
-
readonly RESERVATION: "scn.data.reservation";
|
|
1131
|
-
readonly SHIPMENT: "scn.data.shipment";
|
|
1132
|
-
readonly SHIPMENT_STOP: "scn.data.shipmentstop";
|
|
1133
|
-
readonly SHIPMENT_STOP_ORDER: "scn.data.shipmentstoporder";
|
|
1134
|
-
readonly SUPPLY_PLAN: "scn.data.supplyplan";
|
|
1135
|
-
};
|
|
1136
|
-
/**
|
|
1137
|
-
* @public
|
|
1138
|
-
*/
|
|
1139
|
-
export type DataIntegrationEventType = (typeof DataIntegrationEventType)[keyof typeof DataIntegrationEventType];
|
|
1140
854
|
/**
|
|
1141
855
|
* <p>The data integration event details.</p>
|
|
1142
856
|
* @public
|
|
@@ -1289,19 +1003,6 @@ export interface DataIntegrationFlowExecutionSourceInfo {
|
|
|
1289
1003
|
*/
|
|
1290
1004
|
datasetSource?: DataIntegrationFlowDatasetSource | undefined;
|
|
1291
1005
|
}
|
|
1292
|
-
/**
|
|
1293
|
-
* @public
|
|
1294
|
-
* @enum
|
|
1295
|
-
*/
|
|
1296
|
-
export declare const DataIntegrationFlowExecutionStatus: {
|
|
1297
|
-
readonly FAILED: "FAILED";
|
|
1298
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
1299
|
-
readonly SUCCEEDED: "SUCCEEDED";
|
|
1300
|
-
};
|
|
1301
|
-
/**
|
|
1302
|
-
* @public
|
|
1303
|
-
*/
|
|
1304
|
-
export type DataIntegrationFlowExecutionStatus = (typeof DataIntegrationFlowExecutionStatus)[keyof typeof DataIntegrationFlowExecutionStatus];
|
|
1305
1006
|
/**
|
|
1306
1007
|
* <p>The flow execution details.</p>
|
|
1307
1008
|
* @public
|