aws-sdk-supplychain 1.24.0 → 1.26.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-supplychain/client.rb +1228 -104
- data/lib/aws-sdk-supplychain/client_api.rb +391 -8
- data/lib/aws-sdk-supplychain/types.rb +1016 -41
- data/lib/aws-sdk-supplychain.rb +1 -1
- data/sig/client.rbs +183 -8
- data/sig/types.rbs +233 -3
- metadata +4 -4
data/lib/aws-sdk-supplychain.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -113,7 +113,18 @@ module Aws
|
|
113
113
|
dataset_identifier: ::String,
|
114
114
|
options: {
|
115
115
|
load_type: ("INCREMENTAL" | "REPLACE")?,
|
116
|
-
dedupe_records: bool
|
116
|
+
dedupe_records: bool?,
|
117
|
+
dedupe_strategy: {
|
118
|
+
type: ("FIELD_PRIORITY"),
|
119
|
+
field_priority: {
|
120
|
+
fields: Array[
|
121
|
+
{
|
122
|
+
name: ::String,
|
123
|
+
sort_order: ("ASC" | "DESC")
|
124
|
+
},
|
125
|
+
]
|
126
|
+
}?
|
127
|
+
}?
|
117
128
|
}?
|
118
129
|
}?
|
119
130
|
},
|
@@ -137,7 +148,18 @@ module Aws
|
|
137
148
|
dataset_identifier: ::String,
|
138
149
|
options: {
|
139
150
|
load_type: ("INCREMENTAL" | "REPLACE")?,
|
140
|
-
dedupe_records: bool
|
151
|
+
dedupe_records: bool?,
|
152
|
+
dedupe_strategy: {
|
153
|
+
type: ("FIELD_PRIORITY"),
|
154
|
+
field_priority: {
|
155
|
+
fields: Array[
|
156
|
+
{
|
157
|
+
name: ::String,
|
158
|
+
sort_order: ("ASC" | "DESC")
|
159
|
+
},
|
160
|
+
]
|
161
|
+
}?
|
162
|
+
}?
|
141
163
|
}?
|
142
164
|
}?
|
143
165
|
},
|
@@ -159,16 +181,44 @@ module Aws
|
|
159
181
|
fields: Array[
|
160
182
|
{
|
161
183
|
name: ::String,
|
162
|
-
type: ("INT" | "DOUBLE" | "STRING" | "TIMESTAMP"),
|
184
|
+
type: ("INT" | "DOUBLE" | "STRING" | "TIMESTAMP" | "LONG"),
|
163
185
|
is_required: bool
|
164
186
|
},
|
165
|
-
]
|
187
|
+
],
|
188
|
+
primary_keys: Array[
|
189
|
+
{
|
190
|
+
name: ::String
|
191
|
+
},
|
192
|
+
]?
|
166
193
|
},
|
167
194
|
?description: ::String,
|
195
|
+
?partition_spec: {
|
196
|
+
fields: Array[
|
197
|
+
{
|
198
|
+
name: ::String,
|
199
|
+
transform: {
|
200
|
+
type: ("YEAR" | "MONTH" | "DAY" | "HOUR" | "IDENTITY")
|
201
|
+
}
|
202
|
+
},
|
203
|
+
]
|
204
|
+
},
|
168
205
|
?tags: Hash[::String, ::String]
|
169
206
|
) -> _CreateDataLakeDatasetResponseSuccess
|
170
207
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataLakeDatasetResponseSuccess
|
171
208
|
|
209
|
+
interface _CreateDataLakeNamespaceResponseSuccess
|
210
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateDataLakeNamespaceResponse]
|
211
|
+
def namespace: () -> Types::DataLakeNamespace
|
212
|
+
end
|
213
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SupplyChain/Client.html#create_data_lake_namespace-instance_method
|
214
|
+
def create_data_lake_namespace: (
|
215
|
+
instance_id: ::String,
|
216
|
+
name: ::String,
|
217
|
+
?description: ::String,
|
218
|
+
?tags: Hash[::String, ::String]
|
219
|
+
) -> _CreateDataLakeNamespaceResponseSuccess
|
220
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataLakeNamespaceResponseSuccess
|
221
|
+
|
172
222
|
interface _CreateInstanceResponseSuccess
|
173
223
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateInstanceResponse]
|
174
224
|
def instance: () -> Types::Instance
|
@@ -210,6 +260,18 @@ module Aws
|
|
210
260
|
) -> _DeleteDataLakeDatasetResponseSuccess
|
211
261
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDataLakeDatasetResponseSuccess
|
212
262
|
|
263
|
+
interface _DeleteDataLakeNamespaceResponseSuccess
|
264
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteDataLakeNamespaceResponse]
|
265
|
+
def instance_id: () -> ::String
|
266
|
+
def name: () -> ::String
|
267
|
+
end
|
268
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SupplyChain/Client.html#delete_data_lake_namespace-instance_method
|
269
|
+
def delete_data_lake_namespace: (
|
270
|
+
instance_id: ::String,
|
271
|
+
name: ::String
|
272
|
+
) -> _DeleteDataLakeNamespaceResponseSuccess
|
273
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDataLakeNamespaceResponseSuccess
|
274
|
+
|
213
275
|
interface _DeleteInstanceResponseSuccess
|
214
276
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteInstanceResponse]
|
215
277
|
def instance: () -> Types::Instance
|
@@ -231,6 +293,17 @@ module Aws
|
|
231
293
|
) -> _GetBillOfMaterialsImportJobResponseSuccess
|
232
294
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBillOfMaterialsImportJobResponseSuccess
|
233
295
|
|
296
|
+
interface _GetDataIntegrationEventResponseSuccess
|
297
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDataIntegrationEventResponse]
|
298
|
+
def event: () -> Types::DataIntegrationEvent
|
299
|
+
end
|
300
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SupplyChain/Client.html#get_data_integration_event-instance_method
|
301
|
+
def get_data_integration_event: (
|
302
|
+
instance_id: ::String,
|
303
|
+
event_id: ::String
|
304
|
+
) -> _GetDataIntegrationEventResponseSuccess
|
305
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataIntegrationEventResponseSuccess
|
306
|
+
|
234
307
|
interface _GetDataIntegrationFlowResponseSuccess
|
235
308
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetDataIntegrationFlowResponse]
|
236
309
|
def flow: () -> Types::DataIntegrationFlow
|
@@ -242,6 +315,18 @@ module Aws
|
|
242
315
|
) -> _GetDataIntegrationFlowResponseSuccess
|
243
316
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataIntegrationFlowResponseSuccess
|
244
317
|
|
318
|
+
interface _GetDataIntegrationFlowExecutionResponseSuccess
|
319
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDataIntegrationFlowExecutionResponse]
|
320
|
+
def flow_execution: () -> Types::DataIntegrationFlowExecution
|
321
|
+
end
|
322
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SupplyChain/Client.html#get_data_integration_flow_execution-instance_method
|
323
|
+
def get_data_integration_flow_execution: (
|
324
|
+
instance_id: ::String,
|
325
|
+
flow_name: ::String,
|
326
|
+
execution_id: ::String
|
327
|
+
) -> _GetDataIntegrationFlowExecutionResponseSuccess
|
328
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataIntegrationFlowExecutionResponseSuccess
|
329
|
+
|
245
330
|
interface _GetDataLakeDatasetResponseSuccess
|
246
331
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetDataLakeDatasetResponse]
|
247
332
|
def dataset: () -> Types::DataLakeDataset
|
@@ -254,6 +339,17 @@ module Aws
|
|
254
339
|
) -> _GetDataLakeDatasetResponseSuccess
|
255
340
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataLakeDatasetResponseSuccess
|
256
341
|
|
342
|
+
interface _GetDataLakeNamespaceResponseSuccess
|
343
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetDataLakeNamespaceResponse]
|
344
|
+
def namespace: () -> Types::DataLakeNamespace
|
345
|
+
end
|
346
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SupplyChain/Client.html#get_data_lake_namespace-instance_method
|
347
|
+
def get_data_lake_namespace: (
|
348
|
+
instance_id: ::String,
|
349
|
+
name: ::String
|
350
|
+
) -> _GetDataLakeNamespaceResponseSuccess
|
351
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDataLakeNamespaceResponseSuccess
|
352
|
+
|
257
353
|
interface _GetInstanceResponseSuccess
|
258
354
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetInstanceResponse]
|
259
355
|
def instance: () -> Types::Instance
|
@@ -264,6 +360,34 @@ module Aws
|
|
264
360
|
) -> _GetInstanceResponseSuccess
|
265
361
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetInstanceResponseSuccess
|
266
362
|
|
363
|
+
interface _ListDataIntegrationEventsResponseSuccess
|
364
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDataIntegrationEventsResponse]
|
365
|
+
def events: () -> ::Array[Types::DataIntegrationEvent]
|
366
|
+
def next_token: () -> ::String
|
367
|
+
end
|
368
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SupplyChain/Client.html#list_data_integration_events-instance_method
|
369
|
+
def list_data_integration_events: (
|
370
|
+
instance_id: ::String,
|
371
|
+
?event_type: ("scn.data.forecast" | "scn.data.inventorylevel" | "scn.data.inboundorder" | "scn.data.inboundorderline" | "scn.data.inboundorderlineschedule" | "scn.data.outboundorderline" | "scn.data.outboundshipment" | "scn.data.processheader" | "scn.data.processoperation" | "scn.data.processproduct" | "scn.data.reservation" | "scn.data.shipment" | "scn.data.shipmentstop" | "scn.data.shipmentstoporder" | "scn.data.supplyplan" | "scn.data.dataset"),
|
372
|
+
?next_token: ::String,
|
373
|
+
?max_results: ::Integer
|
374
|
+
) -> _ListDataIntegrationEventsResponseSuccess
|
375
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataIntegrationEventsResponseSuccess
|
376
|
+
|
377
|
+
interface _ListDataIntegrationFlowExecutionsResponseSuccess
|
378
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDataIntegrationFlowExecutionsResponse]
|
379
|
+
def flow_executions: () -> ::Array[Types::DataIntegrationFlowExecution]
|
380
|
+
def next_token: () -> ::String
|
381
|
+
end
|
382
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SupplyChain/Client.html#list_data_integration_flow_executions-instance_method
|
383
|
+
def list_data_integration_flow_executions: (
|
384
|
+
instance_id: ::String,
|
385
|
+
flow_name: ::String,
|
386
|
+
?next_token: ::String,
|
387
|
+
?max_results: ::Integer
|
388
|
+
) -> _ListDataIntegrationFlowExecutionsResponseSuccess
|
389
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataIntegrationFlowExecutionsResponseSuccess
|
390
|
+
|
267
391
|
interface _ListDataIntegrationFlowsResponseSuccess
|
268
392
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListDataIntegrationFlowsResponse]
|
269
393
|
def flows: () -> ::Array[Types::DataIntegrationFlow]
|
@@ -291,6 +415,19 @@ module Aws
|
|
291
415
|
) -> _ListDataLakeDatasetsResponseSuccess
|
292
416
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataLakeDatasetsResponseSuccess
|
293
417
|
|
418
|
+
interface _ListDataLakeNamespacesResponseSuccess
|
419
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDataLakeNamespacesResponse]
|
420
|
+
def namespaces: () -> ::Array[Types::DataLakeNamespace]
|
421
|
+
def next_token: () -> ::String
|
422
|
+
end
|
423
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SupplyChain/Client.html#list_data_lake_namespaces-instance_method
|
424
|
+
def list_data_lake_namespaces: (
|
425
|
+
instance_id: ::String,
|
426
|
+
?next_token: ::String,
|
427
|
+
?max_results: ::Integer
|
428
|
+
) -> _ListDataLakeNamespacesResponseSuccess
|
429
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDataLakeNamespacesResponseSuccess
|
430
|
+
|
294
431
|
interface _ListInstancesResponseSuccess
|
295
432
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListInstancesResponse]
|
296
433
|
def instances: () -> ::Array[Types::Instance]
|
@@ -322,11 +459,15 @@ module Aws
|
|
322
459
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SupplyChain/Client.html#send_data_integration_event-instance_method
|
323
460
|
def send_data_integration_event: (
|
324
461
|
instance_id: ::String,
|
325
|
-
event_type: ("scn.data.forecast" | "scn.data.inventorylevel" | "scn.data.inboundorder" | "scn.data.inboundorderline" | "scn.data.inboundorderlineschedule" | "scn.data.outboundorderline" | "scn.data.outboundshipment" | "scn.data.processheader" | "scn.data.processoperation" | "scn.data.processproduct" | "scn.data.reservation" | "scn.data.shipment" | "scn.data.shipmentstop" | "scn.data.shipmentstoporder" | "scn.data.supplyplan"),
|
462
|
+
event_type: ("scn.data.forecast" | "scn.data.inventorylevel" | "scn.data.inboundorder" | "scn.data.inboundorderline" | "scn.data.inboundorderlineschedule" | "scn.data.outboundorderline" | "scn.data.outboundshipment" | "scn.data.processheader" | "scn.data.processoperation" | "scn.data.processproduct" | "scn.data.reservation" | "scn.data.shipment" | "scn.data.shipmentstop" | "scn.data.shipmentstoporder" | "scn.data.supplyplan" | "scn.data.dataset"),
|
326
463
|
data: ::String,
|
327
464
|
event_group_id: ::String,
|
328
465
|
?event_timestamp: ::Time,
|
329
|
-
?client_token: ::String
|
466
|
+
?client_token: ::String,
|
467
|
+
?dataset_target: {
|
468
|
+
dataset_identifier: ::String,
|
469
|
+
operation_type: ("APPEND" | "UPSERT" | "DELETE")
|
470
|
+
}
|
330
471
|
) -> _SendDataIntegrationEventResponseSuccess
|
331
472
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendDataIntegrationEventResponseSuccess
|
332
473
|
|
@@ -373,7 +514,18 @@ module Aws
|
|
373
514
|
dataset_identifier: ::String,
|
374
515
|
options: {
|
375
516
|
load_type: ("INCREMENTAL" | "REPLACE")?,
|
376
|
-
dedupe_records: bool
|
517
|
+
dedupe_records: bool?,
|
518
|
+
dedupe_strategy: {
|
519
|
+
type: ("FIELD_PRIORITY"),
|
520
|
+
field_priority: {
|
521
|
+
fields: Array[
|
522
|
+
{
|
523
|
+
name: ::String,
|
524
|
+
sort_order: ("ASC" | "DESC")
|
525
|
+
},
|
526
|
+
]
|
527
|
+
}?
|
528
|
+
}?
|
377
529
|
}?
|
378
530
|
}?
|
379
531
|
},
|
@@ -397,7 +549,18 @@ module Aws
|
|
397
549
|
dataset_identifier: ::String,
|
398
550
|
options: {
|
399
551
|
load_type: ("INCREMENTAL" | "REPLACE")?,
|
400
|
-
dedupe_records: bool
|
552
|
+
dedupe_records: bool?,
|
553
|
+
dedupe_strategy: {
|
554
|
+
type: ("FIELD_PRIORITY"),
|
555
|
+
field_priority: {
|
556
|
+
fields: Array[
|
557
|
+
{
|
558
|
+
name: ::String,
|
559
|
+
sort_order: ("ASC" | "DESC")
|
560
|
+
},
|
561
|
+
]
|
562
|
+
}?
|
563
|
+
}?
|
401
564
|
}?
|
402
565
|
}?
|
403
566
|
}
|
@@ -417,6 +580,18 @@ module Aws
|
|
417
580
|
) -> _UpdateDataLakeDatasetResponseSuccess
|
418
581
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataLakeDatasetResponseSuccess
|
419
582
|
|
583
|
+
interface _UpdateDataLakeNamespaceResponseSuccess
|
584
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDataLakeNamespaceResponse]
|
585
|
+
def namespace: () -> Types::DataLakeNamespace
|
586
|
+
end
|
587
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SupplyChain/Client.html#update_data_lake_namespace-instance_method
|
588
|
+
def update_data_lake_namespace: (
|
589
|
+
instance_id: ::String,
|
590
|
+
name: ::String,
|
591
|
+
?description: ::String
|
592
|
+
) -> _UpdateDataLakeNamespaceResponseSuccess
|
593
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataLakeNamespaceResponseSuccess
|
594
|
+
|
420
595
|
interface _UpdateInstanceResponseSuccess
|
421
596
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateInstanceResponse]
|
422
597
|
def instance: () -> Types::Instance
|
data/sig/types.rbs
CHANGED
@@ -61,6 +61,7 @@ module Aws::SupplyChain
|
|
61
61
|
attr_accessor name: ::String
|
62
62
|
attr_accessor schema: Types::DataLakeDatasetSchema
|
63
63
|
attr_accessor description: ::String
|
64
|
+
attr_accessor partition_spec: Types::DataLakeDatasetPartitionSpec
|
64
65
|
attr_accessor tags: ::Hash[::String, ::String]
|
65
66
|
SENSITIVE: []
|
66
67
|
end
|
@@ -70,6 +71,19 @@ module Aws::SupplyChain
|
|
70
71
|
SENSITIVE: []
|
71
72
|
end
|
72
73
|
|
74
|
+
class CreateDataLakeNamespaceRequest
|
75
|
+
attr_accessor instance_id: ::String
|
76
|
+
attr_accessor name: ::String
|
77
|
+
attr_accessor description: ::String
|
78
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
79
|
+
SENSITIVE: []
|
80
|
+
end
|
81
|
+
|
82
|
+
class CreateDataLakeNamespaceResponse
|
83
|
+
attr_accessor namespace: Types::DataLakeNamespace
|
84
|
+
SENSITIVE: []
|
85
|
+
end
|
86
|
+
|
73
87
|
class CreateInstanceRequest
|
74
88
|
attr_accessor instance_name: ::String
|
75
89
|
attr_accessor instance_description: ::String
|
@@ -85,6 +99,35 @@ module Aws::SupplyChain
|
|
85
99
|
SENSITIVE: []
|
86
100
|
end
|
87
101
|
|
102
|
+
class DataIntegrationEvent
|
103
|
+
attr_accessor instance_id: ::String
|
104
|
+
attr_accessor event_id: ::String
|
105
|
+
attr_accessor event_type: ("scn.data.forecast" | "scn.data.inventorylevel" | "scn.data.inboundorder" | "scn.data.inboundorderline" | "scn.data.inboundorderlineschedule" | "scn.data.outboundorderline" | "scn.data.outboundshipment" | "scn.data.processheader" | "scn.data.processoperation" | "scn.data.processproduct" | "scn.data.reservation" | "scn.data.shipment" | "scn.data.shipmentstop" | "scn.data.shipmentstoporder" | "scn.data.supplyplan" | "scn.data.dataset")
|
106
|
+
attr_accessor event_group_id: ::String
|
107
|
+
attr_accessor event_timestamp: ::Time
|
108
|
+
attr_accessor dataset_target_details: Types::DataIntegrationEventDatasetTargetDetails
|
109
|
+
SENSITIVE: []
|
110
|
+
end
|
111
|
+
|
112
|
+
class DataIntegrationEventDatasetLoadExecutionDetails
|
113
|
+
attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
|
114
|
+
attr_accessor message: ::String
|
115
|
+
SENSITIVE: []
|
116
|
+
end
|
117
|
+
|
118
|
+
class DataIntegrationEventDatasetTargetConfiguration
|
119
|
+
attr_accessor dataset_identifier: ::String
|
120
|
+
attr_accessor operation_type: ("APPEND" | "UPSERT" | "DELETE")
|
121
|
+
SENSITIVE: []
|
122
|
+
end
|
123
|
+
|
124
|
+
class DataIntegrationEventDatasetTargetDetails
|
125
|
+
attr_accessor dataset_identifier: ::String
|
126
|
+
attr_accessor operation_type: ("APPEND" | "UPSERT" | "DELETE")
|
127
|
+
attr_accessor dataset_load_execution: Types::DataIntegrationEventDatasetLoadExecutionDetails
|
128
|
+
SENSITIVE: []
|
129
|
+
end
|
130
|
+
|
88
131
|
class DataIntegrationFlow
|
89
132
|
attr_accessor instance_id: ::String
|
90
133
|
attr_accessor name: ::String
|
@@ -99,6 +142,12 @@ module Aws::SupplyChain
|
|
99
142
|
class DataIntegrationFlowDatasetOptions
|
100
143
|
attr_accessor load_type: ("INCREMENTAL" | "REPLACE")
|
101
144
|
attr_accessor dedupe_records: bool
|
145
|
+
attr_accessor dedupe_strategy: Types::DataIntegrationFlowDedupeStrategy
|
146
|
+
SENSITIVE: []
|
147
|
+
end
|
148
|
+
|
149
|
+
class DataIntegrationFlowDatasetSource
|
150
|
+
attr_accessor dataset_identifier: ::String
|
102
151
|
SENSITIVE: []
|
103
152
|
end
|
104
153
|
|
@@ -114,11 +163,59 @@ module Aws::SupplyChain
|
|
114
163
|
SENSITIVE: []
|
115
164
|
end
|
116
165
|
|
166
|
+
class DataIntegrationFlowDedupeStrategy
|
167
|
+
attr_accessor type: ("FIELD_PRIORITY")
|
168
|
+
attr_accessor field_priority: Types::DataIntegrationFlowFieldPriorityDedupeStrategyConfiguration
|
169
|
+
SENSITIVE: []
|
170
|
+
end
|
171
|
+
|
172
|
+
class DataIntegrationFlowExecution
|
173
|
+
attr_accessor instance_id: ::String
|
174
|
+
attr_accessor flow_name: ::String
|
175
|
+
attr_accessor execution_id: ::String
|
176
|
+
attr_accessor status: ("SUCCEEDED" | "IN_PROGRESS" | "FAILED")
|
177
|
+
attr_accessor source_info: Types::DataIntegrationFlowExecutionSourceInfo
|
178
|
+
attr_accessor message: ::String
|
179
|
+
attr_accessor start_time: ::Time
|
180
|
+
attr_accessor end_time: ::Time
|
181
|
+
attr_accessor output_metadata: Types::DataIntegrationFlowExecutionOutputMetadata
|
182
|
+
SENSITIVE: []
|
183
|
+
end
|
184
|
+
|
185
|
+
class DataIntegrationFlowExecutionOutputMetadata
|
186
|
+
attr_accessor diagnostic_reports_root_s3uri: ::String
|
187
|
+
SENSITIVE: []
|
188
|
+
end
|
189
|
+
|
190
|
+
class DataIntegrationFlowExecutionSourceInfo
|
191
|
+
attr_accessor source_type: ("S3" | "DATASET")
|
192
|
+
attr_accessor s3_source: Types::DataIntegrationFlowS3Source
|
193
|
+
attr_accessor dataset_source: Types::DataIntegrationFlowDatasetSource
|
194
|
+
SENSITIVE: []
|
195
|
+
end
|
196
|
+
|
197
|
+
class DataIntegrationFlowFieldPriorityDedupeField
|
198
|
+
attr_accessor name: ::String
|
199
|
+
attr_accessor sort_order: ("ASC" | "DESC")
|
200
|
+
SENSITIVE: []
|
201
|
+
end
|
202
|
+
|
203
|
+
class DataIntegrationFlowFieldPriorityDedupeStrategyConfiguration
|
204
|
+
attr_accessor fields: ::Array[Types::DataIntegrationFlowFieldPriorityDedupeField]
|
205
|
+
SENSITIVE: []
|
206
|
+
end
|
207
|
+
|
117
208
|
class DataIntegrationFlowS3Options
|
118
209
|
attr_accessor file_type: ("CSV" | "PARQUET" | "JSON")
|
119
210
|
SENSITIVE: []
|
120
211
|
end
|
121
212
|
|
213
|
+
class DataIntegrationFlowS3Source
|
214
|
+
attr_accessor bucket_name: ::String
|
215
|
+
attr_accessor key: ::String
|
216
|
+
SENSITIVE: []
|
217
|
+
end
|
218
|
+
|
122
219
|
class DataIntegrationFlowS3SourceConfiguration
|
123
220
|
attr_accessor bucket_name: ::String
|
124
221
|
attr_accessor prefix: ::String
|
@@ -135,7 +232,7 @@ module Aws::SupplyChain
|
|
135
232
|
|
136
233
|
class DataIntegrationFlowSQLTransformationConfiguration
|
137
234
|
attr_accessor query: ::String
|
138
|
-
SENSITIVE: []
|
235
|
+
SENSITIVE: [:query]
|
139
236
|
end
|
140
237
|
|
141
238
|
class DataIntegrationFlowSource
|
@@ -166,24 +263,57 @@ module Aws::SupplyChain
|
|
166
263
|
attr_accessor arn: ::String
|
167
264
|
attr_accessor schema: Types::DataLakeDatasetSchema
|
168
265
|
attr_accessor description: ::String
|
266
|
+
attr_accessor partition_spec: Types::DataLakeDatasetPartitionSpec
|
169
267
|
attr_accessor created_time: ::Time
|
170
268
|
attr_accessor last_modified_time: ::Time
|
171
269
|
SENSITIVE: []
|
172
270
|
end
|
173
271
|
|
272
|
+
class DataLakeDatasetPartitionField
|
273
|
+
attr_accessor name: ::String
|
274
|
+
attr_accessor transform: Types::DataLakeDatasetPartitionFieldTransform
|
275
|
+
SENSITIVE: []
|
276
|
+
end
|
277
|
+
|
278
|
+
class DataLakeDatasetPartitionFieldTransform
|
279
|
+
attr_accessor type: ("YEAR" | "MONTH" | "DAY" | "HOUR" | "IDENTITY")
|
280
|
+
SENSITIVE: []
|
281
|
+
end
|
282
|
+
|
283
|
+
class DataLakeDatasetPartitionSpec
|
284
|
+
attr_accessor fields: ::Array[Types::DataLakeDatasetPartitionField]
|
285
|
+
SENSITIVE: []
|
286
|
+
end
|
287
|
+
|
288
|
+
class DataLakeDatasetPrimaryKeyField
|
289
|
+
attr_accessor name: ::String
|
290
|
+
SENSITIVE: []
|
291
|
+
end
|
292
|
+
|
174
293
|
class DataLakeDatasetSchema
|
175
294
|
attr_accessor name: ::String
|
176
295
|
attr_accessor fields: ::Array[Types::DataLakeDatasetSchemaField]
|
296
|
+
attr_accessor primary_keys: ::Array[Types::DataLakeDatasetPrimaryKeyField]
|
177
297
|
SENSITIVE: []
|
178
298
|
end
|
179
299
|
|
180
300
|
class DataLakeDatasetSchemaField
|
181
301
|
attr_accessor name: ::String
|
182
|
-
attr_accessor type: ("INT" | "DOUBLE" | "STRING" | "TIMESTAMP")
|
302
|
+
attr_accessor type: ("INT" | "DOUBLE" | "STRING" | "TIMESTAMP" | "LONG")
|
183
303
|
attr_accessor is_required: bool
|
184
304
|
SENSITIVE: []
|
185
305
|
end
|
186
306
|
|
307
|
+
class DataLakeNamespace
|
308
|
+
attr_accessor instance_id: ::String
|
309
|
+
attr_accessor name: ::String
|
310
|
+
attr_accessor arn: ::String
|
311
|
+
attr_accessor description: ::String
|
312
|
+
attr_accessor created_time: ::Time
|
313
|
+
attr_accessor last_modified_time: ::Time
|
314
|
+
SENSITIVE: []
|
315
|
+
end
|
316
|
+
|
187
317
|
class DeleteDataIntegrationFlowRequest
|
188
318
|
attr_accessor instance_id: ::String
|
189
319
|
attr_accessor name: ::String
|
@@ -210,6 +340,18 @@ module Aws::SupplyChain
|
|
210
340
|
SENSITIVE: []
|
211
341
|
end
|
212
342
|
|
343
|
+
class DeleteDataLakeNamespaceRequest
|
344
|
+
attr_accessor instance_id: ::String
|
345
|
+
attr_accessor name: ::String
|
346
|
+
SENSITIVE: []
|
347
|
+
end
|
348
|
+
|
349
|
+
class DeleteDataLakeNamespaceResponse
|
350
|
+
attr_accessor instance_id: ::String
|
351
|
+
attr_accessor name: ::String
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
213
355
|
class DeleteInstanceRequest
|
214
356
|
attr_accessor instance_id: ::String
|
215
357
|
SENSITIVE: []
|
@@ -231,6 +373,29 @@ module Aws::SupplyChain
|
|
231
373
|
SENSITIVE: []
|
232
374
|
end
|
233
375
|
|
376
|
+
class GetDataIntegrationEventRequest
|
377
|
+
attr_accessor instance_id: ::String
|
378
|
+
attr_accessor event_id: ::String
|
379
|
+
SENSITIVE: []
|
380
|
+
end
|
381
|
+
|
382
|
+
class GetDataIntegrationEventResponse
|
383
|
+
attr_accessor event: Types::DataIntegrationEvent
|
384
|
+
SENSITIVE: []
|
385
|
+
end
|
386
|
+
|
387
|
+
class GetDataIntegrationFlowExecutionRequest
|
388
|
+
attr_accessor instance_id: ::String
|
389
|
+
attr_accessor flow_name: ::String
|
390
|
+
attr_accessor execution_id: ::String
|
391
|
+
SENSITIVE: []
|
392
|
+
end
|
393
|
+
|
394
|
+
class GetDataIntegrationFlowExecutionResponse
|
395
|
+
attr_accessor flow_execution: Types::DataIntegrationFlowExecution
|
396
|
+
SENSITIVE: []
|
397
|
+
end
|
398
|
+
|
234
399
|
class GetDataIntegrationFlowRequest
|
235
400
|
attr_accessor instance_id: ::String
|
236
401
|
attr_accessor name: ::String
|
@@ -254,6 +419,17 @@ module Aws::SupplyChain
|
|
254
419
|
SENSITIVE: []
|
255
420
|
end
|
256
421
|
|
422
|
+
class GetDataLakeNamespaceRequest
|
423
|
+
attr_accessor instance_id: ::String
|
424
|
+
attr_accessor name: ::String
|
425
|
+
SENSITIVE: []
|
426
|
+
end
|
427
|
+
|
428
|
+
class GetDataLakeNamespaceResponse
|
429
|
+
attr_accessor namespace: Types::DataLakeNamespace
|
430
|
+
SENSITIVE: []
|
431
|
+
end
|
432
|
+
|
257
433
|
class GetInstanceRequest
|
258
434
|
attr_accessor instance_id: ::String
|
259
435
|
SENSITIVE: []
|
@@ -284,6 +460,34 @@ module Aws::SupplyChain
|
|
284
460
|
SENSITIVE: []
|
285
461
|
end
|
286
462
|
|
463
|
+
class ListDataIntegrationEventsRequest
|
464
|
+
attr_accessor instance_id: ::String
|
465
|
+
attr_accessor event_type: ("scn.data.forecast" | "scn.data.inventorylevel" | "scn.data.inboundorder" | "scn.data.inboundorderline" | "scn.data.inboundorderlineschedule" | "scn.data.outboundorderline" | "scn.data.outboundshipment" | "scn.data.processheader" | "scn.data.processoperation" | "scn.data.processproduct" | "scn.data.reservation" | "scn.data.shipment" | "scn.data.shipmentstop" | "scn.data.shipmentstoporder" | "scn.data.supplyplan" | "scn.data.dataset")
|
466
|
+
attr_accessor next_token: ::String
|
467
|
+
attr_accessor max_results: ::Integer
|
468
|
+
SENSITIVE: []
|
469
|
+
end
|
470
|
+
|
471
|
+
class ListDataIntegrationEventsResponse
|
472
|
+
attr_accessor events: ::Array[Types::DataIntegrationEvent]
|
473
|
+
attr_accessor next_token: ::String
|
474
|
+
SENSITIVE: []
|
475
|
+
end
|
476
|
+
|
477
|
+
class ListDataIntegrationFlowExecutionsRequest
|
478
|
+
attr_accessor instance_id: ::String
|
479
|
+
attr_accessor flow_name: ::String
|
480
|
+
attr_accessor next_token: ::String
|
481
|
+
attr_accessor max_results: ::Integer
|
482
|
+
SENSITIVE: []
|
483
|
+
end
|
484
|
+
|
485
|
+
class ListDataIntegrationFlowExecutionsResponse
|
486
|
+
attr_accessor flow_executions: ::Array[Types::DataIntegrationFlowExecution]
|
487
|
+
attr_accessor next_token: ::String
|
488
|
+
SENSITIVE: []
|
489
|
+
end
|
490
|
+
|
287
491
|
class ListDataIntegrationFlowsRequest
|
288
492
|
attr_accessor instance_id: ::String
|
289
493
|
attr_accessor next_token: ::String
|
@@ -311,6 +515,19 @@ module Aws::SupplyChain
|
|
311
515
|
SENSITIVE: []
|
312
516
|
end
|
313
517
|
|
518
|
+
class ListDataLakeNamespacesRequest
|
519
|
+
attr_accessor instance_id: ::String
|
520
|
+
attr_accessor next_token: ::String
|
521
|
+
attr_accessor max_results: ::Integer
|
522
|
+
SENSITIVE: []
|
523
|
+
end
|
524
|
+
|
525
|
+
class ListDataLakeNamespacesResponse
|
526
|
+
attr_accessor namespaces: ::Array[Types::DataLakeNamespace]
|
527
|
+
attr_accessor next_token: ::String
|
528
|
+
SENSITIVE: []
|
529
|
+
end
|
530
|
+
|
314
531
|
class ListInstancesRequest
|
315
532
|
attr_accessor next_token: ::String
|
316
533
|
attr_accessor max_results: ::Integer
|
@@ -342,11 +559,12 @@ module Aws::SupplyChain
|
|
342
559
|
|
343
560
|
class SendDataIntegrationEventRequest
|
344
561
|
attr_accessor instance_id: ::String
|
345
|
-
attr_accessor event_type: ("scn.data.forecast" | "scn.data.inventorylevel" | "scn.data.inboundorder" | "scn.data.inboundorderline" | "scn.data.inboundorderlineschedule" | "scn.data.outboundorderline" | "scn.data.outboundshipment" | "scn.data.processheader" | "scn.data.processoperation" | "scn.data.processproduct" | "scn.data.reservation" | "scn.data.shipment" | "scn.data.shipmentstop" | "scn.data.shipmentstoporder" | "scn.data.supplyplan")
|
562
|
+
attr_accessor event_type: ("scn.data.forecast" | "scn.data.inventorylevel" | "scn.data.inboundorder" | "scn.data.inboundorderline" | "scn.data.inboundorderlineschedule" | "scn.data.outboundorderline" | "scn.data.outboundshipment" | "scn.data.processheader" | "scn.data.processoperation" | "scn.data.processproduct" | "scn.data.reservation" | "scn.data.shipment" | "scn.data.shipmentstop" | "scn.data.shipmentstoporder" | "scn.data.supplyplan" | "scn.data.dataset")
|
346
563
|
attr_accessor data: ::String
|
347
564
|
attr_accessor event_group_id: ::String
|
348
565
|
attr_accessor event_timestamp: ::Time
|
349
566
|
attr_accessor client_token: ::String
|
567
|
+
attr_accessor dataset_target: Types::DataIntegrationEventDatasetTargetConfiguration
|
350
568
|
SENSITIVE: [:data]
|
351
569
|
end
|
352
570
|
|
@@ -410,6 +628,18 @@ module Aws::SupplyChain
|
|
410
628
|
SENSITIVE: []
|
411
629
|
end
|
412
630
|
|
631
|
+
class UpdateDataLakeNamespaceRequest
|
632
|
+
attr_accessor instance_id: ::String
|
633
|
+
attr_accessor name: ::String
|
634
|
+
attr_accessor description: ::String
|
635
|
+
SENSITIVE: []
|
636
|
+
end
|
637
|
+
|
638
|
+
class UpdateDataLakeNamespaceResponse
|
639
|
+
attr_accessor namespace: Types::DataLakeNamespace
|
640
|
+
SENSITIVE: []
|
641
|
+
end
|
642
|
+
|
413
643
|
class UpdateInstanceRequest
|
414
644
|
attr_accessor instance_id: ::String
|
415
645
|
attr_accessor instance_name: ::String
|