aws-sdk-supplychain 1.39.0 → 1.41.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cf0b92b98592518855e088ec05561dc801db8e03a5c02e7dd6905b08010dc7ff
4
- data.tar.gz: de32c6f7969330f07edbe0596ae846dfae0b2af40c96076483c2fcab5a4fce7c
3
+ metadata.gz: a83db3d3443cc5127d8370abb794fc49513ea908e7c721bb76a10b6f1a573a2a
4
+ data.tar.gz: 7a68a07e0e5751b79d0e4af65e39204dc05bfddd22bd3628a32c23e752b7d45a
5
5
  SHA512:
6
- metadata.gz: a726a1a76bae6b194797a20782dccc111a19ec4bb418e06547d5c243e00cf76c51e6cf58e3d7a14ea3fc14b7d04a41d1455615bfa16ea6fe73955abcd64312fd
7
- data.tar.gz: d886038140e0aeadd76583630ec3d6a95d02203746e3f82032981cbc1b6206f79b33462d14919eed63888325c1fc253f434e4c57b954112adf95dc0131c09749
6
+ metadata.gz: eea2fc1aabe89277a73e8e2173ddb5ba4eb3c895542874fbd4611b38c368f2324d0f6af996722b01c7f6463717ebe752defa1cf96619ceccccaaf0689f692d11
7
+ data.tar.gz: d37353c8dc68823a5b5e675daa2563d5977f02802e2c9b4ef1a0d78fe4246c48243138a6670aa75c66423b89d52a6c32a7c6ff4b4e668b6e432b8cc06806491a
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.41.0 (2026-05-21)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.40.0 (2026-05-19)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.39.0 (2026-05-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.39.0
1
+ 1.41.0
@@ -199,7 +199,7 @@ module Aws::SupplyChain
199
199
  # the required types.
200
200
  #
201
201
  # @option options [Boolean] :correct_clock_skew (true)
202
- # Used only in `standard` and adaptive retry modes. Specifies whether to apply
202
+ # Used only in `standard` and `adaptive` retry modes. Specifies whether to apply
203
203
  # a clock skew correction and retry requests with skewed client clocks.
204
204
  #
205
205
  # @option options [String] :defaults_mode ("legacy")
@@ -323,17 +323,15 @@ module Aws::SupplyChain
323
323
  # @option options [String] :retry_mode ("legacy")
324
324
  # Specifies which retry algorithm to use. Values are:
325
325
  #
326
- # * `legacy` - The pre-existing retry behavior. This is default value if
327
- # no retry mode is provided.
326
+ # * `legacy` - The pre-existing retry behavior. This is the default
327
+ # value if no retry mode is provided.
328
328
  #
329
329
  # * `standard` - A standardized set of retry rules across the AWS SDKs.
330
330
  # This includes support for retry quotas, which limit the number of
331
331
  # unsuccessful retries a client can make.
332
332
  #
333
- # * `adaptive` - An experimental retry mode that includes all the
334
- # functionality of `standard` mode along with automatic client side
335
- # throttling. This is a provisional mode that may change behavior
336
- # in the future.
333
+ # * `adaptive` - A retry mode that includes all the functionality of
334
+ # `standard` mode along with automatic client side throttling.
337
335
  #
338
336
  # @option options [String] :sdk_ua_app_id
339
337
  # A unique and opaque application ID that is appended to the
@@ -4758,7 +4756,7 @@ module Aws::SupplyChain
4758
4756
  tracer: tracer
4759
4757
  )
4760
4758
  context[:gem_name] = 'aws-sdk-supplychain'
4761
- context[:gem_version] = '1.39.0'
4759
+ context[:gem_version] = '1.41.0'
4762
4760
  Seahorse::Client::Request.new(handlers, context)
4763
4761
  end
4764
4762
 
@@ -54,7 +54,7 @@ module Aws::SupplyChain
54
54
  autoload :EndpointProvider, 'aws-sdk-supplychain/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-supplychain/endpoints'
56
56
 
57
- GEM_VERSION = '1.39.0'
57
+ GEM_VERSION = '1.41.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -100,35 +100,7 @@ module Aws
100
100
  instance_id: ::String,
101
101
  name: ::String,
102
102
  sources: Array[
103
- {
104
- source_type: ("S3" | "DATASET"),
105
- source_name: ::String,
106
- s3_source: {
107
- bucket_name: ::String,
108
- prefix: ::String,
109
- options: {
110
- file_type: ("CSV" | "PARQUET" | "JSON")?
111
- }?
112
- }?,
113
- dataset_source: {
114
- dataset_identifier: ::String,
115
- options: {
116
- load_type: ("INCREMENTAL" | "REPLACE")?,
117
- dedupe_records: bool?,
118
- dedupe_strategy: {
119
- type: ("FIELD_PRIORITY"),
120
- field_priority: {
121
- fields: Array[
122
- {
123
- name: ::String,
124
- sort_order: ("ASC" | "DESC")
125
- },
126
- ]
127
- }?
128
- }?
129
- }?
130
- }?
131
- },
103
+ Params::data_integration_flow_source
132
104
  ],
133
105
  transformation: {
134
106
  transformation_type: ("SQL" | "NONE"),
@@ -136,34 +108,7 @@ module Aws
136
108
  query: ::String
137
109
  }?
138
110
  },
139
- target: {
140
- target_type: ("S3" | "DATASET"),
141
- s3_target: {
142
- bucket_name: ::String,
143
- prefix: ::String,
144
- options: {
145
- file_type: ("CSV" | "PARQUET" | "JSON")?
146
- }?
147
- }?,
148
- dataset_target: {
149
- dataset_identifier: ::String,
150
- options: {
151
- load_type: ("INCREMENTAL" | "REPLACE")?,
152
- dedupe_records: bool?,
153
- dedupe_strategy: {
154
- type: ("FIELD_PRIORITY"),
155
- field_priority: {
156
- fields: Array[
157
- {
158
- name: ::String,
159
- sort_order: ("ASC" | "DESC")
160
- },
161
- ]
162
- }?
163
- }?
164
- }?
165
- }?
166
- },
111
+ target: Params::data_integration_flow_target,
167
112
  ?tags: Hash[::String, ::String]
168
113
  ) -> _CreateDataIntegrationFlowResponseSuccess
169
114
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDataIntegrationFlowResponseSuccess
@@ -184,12 +129,12 @@ module Aws
184
129
  name: ::String,
185
130
  type: ("INT" | "DOUBLE" | "STRING" | "TIMESTAMP" | "LONG"),
186
131
  is_required: bool
187
- },
132
+ }
188
133
  ],
189
134
  primary_keys: Array[
190
135
  {
191
136
  name: ::String
192
- },
137
+ }
193
138
  ]?
194
139
  },
195
140
  ?description: ::String,
@@ -200,7 +145,7 @@ module Aws
200
145
  transform: {
201
146
  type: ("YEAR" | "MONTH" | "DAY" | "HOUR" | "IDENTITY")
202
147
  }
203
- },
148
+ }
204
149
  ]
205
150
  },
206
151
  ?tags: Hash[::String, ::String]
@@ -501,35 +446,7 @@ module Aws
501
446
  instance_id: ::String,
502
447
  name: ::String,
503
448
  ?sources: Array[
504
- {
505
- source_type: ("S3" | "DATASET"),
506
- source_name: ::String,
507
- s3_source: {
508
- bucket_name: ::String,
509
- prefix: ::String,
510
- options: {
511
- file_type: ("CSV" | "PARQUET" | "JSON")?
512
- }?
513
- }?,
514
- dataset_source: {
515
- dataset_identifier: ::String,
516
- options: {
517
- load_type: ("INCREMENTAL" | "REPLACE")?,
518
- dedupe_records: bool?,
519
- dedupe_strategy: {
520
- type: ("FIELD_PRIORITY"),
521
- field_priority: {
522
- fields: Array[
523
- {
524
- name: ::String,
525
- sort_order: ("ASC" | "DESC")
526
- },
527
- ]
528
- }?
529
- }?
530
- }?
531
- }?
532
- },
449
+ Params::data_integration_flow_source
533
450
  ],
534
451
  ?transformation: {
535
452
  transformation_type: ("SQL" | "NONE"),
@@ -537,34 +454,7 @@ module Aws
537
454
  query: ::String
538
455
  }?
539
456
  },
540
- ?target: {
541
- target_type: ("S3" | "DATASET"),
542
- s3_target: {
543
- bucket_name: ::String,
544
- prefix: ::String,
545
- options: {
546
- file_type: ("CSV" | "PARQUET" | "JSON")?
547
- }?
548
- }?,
549
- dataset_target: {
550
- dataset_identifier: ::String,
551
- options: {
552
- load_type: ("INCREMENTAL" | "REPLACE")?,
553
- dedupe_records: bool?,
554
- dedupe_strategy: {
555
- type: ("FIELD_PRIORITY"),
556
- field_priority: {
557
- fields: Array[
558
- {
559
- name: ::String,
560
- sort_order: ("ASC" | "DESC")
561
- },
562
- ]
563
- }?
564
- }?
565
- }?
566
- }?
567
- }
457
+ ?target: Params::data_integration_flow_target
568
458
  ) -> _UpdateDataIntegrationFlowResponseSuccess
569
459
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDataIntegrationFlowResponseSuccess
570
460
 
data/sig/params.rbs ADDED
@@ -0,0 +1,66 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SupplyChain
10
+ module Params
11
+ type data_integration_flow_dedupe_strategy = {
12
+ type: ("FIELD_PRIORITY"),
13
+ field_priority: {
14
+ fields: Array[
15
+ {
16
+ name: ::String,
17
+ sort_order: ("ASC" | "DESC")
18
+ }
19
+ ]
20
+ }?
21
+ }
22
+
23
+ type data_integration_flow_dataset_options = {
24
+ load_type: ("INCREMENTAL" | "REPLACE")?,
25
+ dedupe_records: bool?,
26
+ dedupe_strategy: Params::data_integration_flow_dedupe_strategy?
27
+ }
28
+
29
+ type data_integration_flow_dataset_source_configuration = {
30
+ dataset_identifier: ::String,
31
+ options: Params::data_integration_flow_dataset_options?
32
+ }
33
+
34
+ type data_integration_flow_source = {
35
+ source_type: ("S3" | "DATASET"),
36
+ source_name: ::String,
37
+ s3_source: {
38
+ bucket_name: ::String,
39
+ prefix: ::String,
40
+ options: {
41
+ file_type: ("CSV" | "PARQUET" | "JSON")?
42
+ }?
43
+ }?,
44
+ dataset_source: Params::data_integration_flow_dataset_source_configuration?
45
+ }
46
+
47
+ type data_integration_flow_dataset_target_configuration = {
48
+ dataset_identifier: ::String,
49
+ options: Params::data_integration_flow_dataset_options?
50
+ }
51
+
52
+ type data_integration_flow_target = {
53
+ target_type: ("S3" | "DATASET"),
54
+ s3_target: {
55
+ bucket_name: ::String,
56
+ prefix: ::String,
57
+ options: {
58
+ file_type: ("CSV" | "PARQUET" | "JSON")?
59
+ }?
60
+ }?,
61
+ dataset_target: Params::data_integration_flow_dataset_target_configuration?
62
+ }
63
+
64
+ end
65
+ end
66
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-supplychain
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.39.0
4
+ version: 1.41.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.247.0
21
+ version: 3.248.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.247.0
31
+ version: 3.248.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement
@@ -67,6 +67,7 @@ files:
67
67
  - lib/aws-sdk-supplychain/types.rb
68
68
  - sig/client.rbs
69
69
  - sig/errors.rbs
70
+ - sig/params.rbs
70
71
  - sig/resource.rbs
71
72
  - sig/types.rbs
72
73
  - sig/waiters.rbs