aws-sdk-dataexchange 1.83.0 → 1.85.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: 8bcbf81e8c89c463c638047fb6f5c2539b3bd976940449a45a4afd8a7cee7106
4
- data.tar.gz: 0aa40de6375c02c46336c8794cba84f4010020efa46c9476c6af573f781b1a0b
3
+ metadata.gz: 312e3a22d87410861328961f4bd7ac59f26997e0eb7a764ff918ab2f156e05ac
4
+ data.tar.gz: 87ed9f4d20805e7af517f893163cc2d0baba09c7796394ec75608ae54a234b60
5
5
  SHA512:
6
- metadata.gz: 931a284d816a27d814bba50b36e2741de1e8c03cd5c5165cf1b11db8719a4f83edbed29b13d1b76973ed778c984871765667eb7635926cd2f336341184f2a60d
7
- data.tar.gz: 3715b133d2b1bf257c06e4b892fc93fcede0379f4cef9fdf9b99618c35ca85eb169add948026ff3ea6fbc6a513791fe191a42ac518e0fc704b52ca6a4d672671
6
+ metadata.gz: 5078d742d0757bf519e9aa563592d0dbeb60e10310c67a7e0101ceb88b1cc7ed45630dc2adbab727882c0513da9e8d2274e1cceb9024c97ae3453cf551128d54
7
+ data.tar.gz: d81f06a7898d9f3e4996a1012ca8b2490bbaa2d29c094293690755e6548f01af8dd707c1ad6957df19ebc5b387fed7b3904305b3c61569d2d46047d3dd35e0c6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.85.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.84.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.83.0 (2026-05-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.83.0
1
+ 1.85.0
@@ -199,7 +199,7 @@ module Aws::DataExchange
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::DataExchange
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
@@ -2786,7 +2784,7 @@ module Aws::DataExchange
2786
2784
  tracer: tracer
2787
2785
  )
2788
2786
  context[:gem_name] = 'aws-sdk-dataexchange'
2789
- context[:gem_version] = '1.83.0'
2787
+ context[:gem_version] = '1.85.0'
2790
2788
  Seahorse::Client::Request.new(handlers, context)
2791
2789
  end
2792
2790
 
@@ -55,7 +55,7 @@ module Aws::DataExchange
55
55
  autoload :EndpointProvider, 'aws-sdk-dataexchange/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-dataexchange/endpoints'
57
57
 
58
- GEM_VERSION = '1.83.0'
58
+ GEM_VERSION = '1.85.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -171,18 +171,7 @@ module Aws
171
171
  end
172
172
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataExchange/Client.html#create_event_action-instance_method
173
173
  def create_event_action: (
174
- action: {
175
- export_revision_to_s3: {
176
- encryption: {
177
- kms_key_arn: ::String?,
178
- type: ("aws:kms" | "AES256")
179
- }?,
180
- revision_destination: {
181
- bucket: ::String,
182
- key_pattern: ::String?
183
- }
184
- }?
185
- },
174
+ action: Params::action,
186
175
  event: {
187
176
  revision_published: {
188
177
  data_set_id: ::String
@@ -211,7 +200,7 @@ module Aws
211
200
  {
212
201
  key: ::String,
213
202
  value: ::String
214
- },
203
+ }
215
204
  ]?
216
205
  },
217
206
  details: {
@@ -226,7 +215,7 @@ module Aws
226
215
  asset_id: ::String,
227
216
  bucket: ::String,
228
217
  key: ::String?
229
- },
218
+ }
230
219
  ],
231
220
  data_set_id: ::String,
232
221
  encryption: {
@@ -246,7 +235,7 @@ module Aws
246
235
  bucket: ::String,
247
236
  key_pattern: ::String?,
248
237
  revision_id: ::String
249
- },
238
+ }
250
239
  ]
251
240
  }?,
252
241
  import_asset_from_signed_url: {
@@ -260,7 +249,7 @@ module Aws
260
249
  {
261
250
  bucket: ::String,
262
251
  key: ::String
263
- },
252
+ }
264
253
  ],
265
254
  data_set_id: ::String,
266
255
  revision_id: ::String
@@ -269,7 +258,7 @@ module Aws
269
258
  asset_sources: Array[
270
259
  {
271
260
  data_share_arn: ::String
272
- },
261
+ }
273
262
  ],
274
263
  data_set_id: ::String,
275
264
  revision_id: ::String
@@ -293,7 +282,7 @@ module Aws
293
282
  kms_keys_to_grant: Array[
294
283
  {
295
284
  kms_key_arn: ::String
296
- },
285
+ }
297
286
  ]?
298
287
  },
299
288
  data_set_id: ::String,
@@ -306,7 +295,7 @@ module Aws
306
295
  {
307
296
  tag_key: ::String,
308
297
  tag_values: Array[::String]
309
- },
298
+ }
310
299
  ],
311
300
  permissions: Array[("DESCRIBE")]
312
301
  }?,
@@ -315,7 +304,7 @@ module Aws
315
304
  {
316
305
  tag_key: ::String,
317
306
  tag_values: Array[::String]
318
- },
307
+ }
319
308
  ],
320
309
  permissions: Array[("DESCRIBE" | "SELECT")]
321
310
  }?,
@@ -680,7 +669,7 @@ module Aws
680
669
  {
681
670
  database: ::String?,
682
671
  table: ::String?
683
- },
672
+ }
684
673
  ]?,
685
674
  redshift_data_shares: Array[
686
675
  {
@@ -690,13 +679,13 @@ module Aws
690
679
  table: ::String?,
691
680
  schema: ::String?,
692
681
  view: ::String?
693
- },
682
+ }
694
683
  ]?,
695
684
  s3_data_accesses: Array[
696
685
  {
697
686
  key_prefixes: Array[::String]?,
698
687
  keys: Array[::String]?
699
- },
688
+ }
700
689
  ]?
701
690
  },
702
691
  ?client_token: ::String,
@@ -715,7 +704,7 @@ module Aws
715
704
  name: ::String,
716
705
  type: ("ADD" | "REMOVE" | "MODIFY"),
717
706
  description: ::String?
718
- },
707
+ }
719
708
  ]?,
720
709
  schema_change_at: ::Time
721
710
  }?
@@ -801,18 +790,7 @@ module Aws
801
790
  end
802
791
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataExchange/Client.html#update_event_action-instance_method
803
792
  def update_event_action: (
804
- ?action: {
805
- export_revision_to_s3: {
806
- encryption: {
807
- kms_key_arn: ::String?,
808
- type: ("aws:kms" | "AES256")
809
- }?,
810
- revision_destination: {
811
- bucket: ::String,
812
- key_pattern: ::String?
813
- }
814
- }?
815
- },
793
+ ?action: Params::action,
816
794
  event_action_id: ::String
817
795
  ) -> _UpdateEventActionResponseSuccess
818
796
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEventActionResponseSuccess
data/sig/params.rbs ADDED
@@ -0,0 +1,28 @@
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 DataExchange
10
+ module Params
11
+ type auto_export_revision_to_s3_request_details = {
12
+ encryption: {
13
+ kms_key_arn: ::String?,
14
+ type: ("aws:kms" | "AES256")
15
+ }?,
16
+ revision_destination: {
17
+ bucket: ::String,
18
+ key_pattern: ::String?
19
+ }
20
+ }
21
+
22
+ type action = {
23
+ export_revision_to_s3: Params::auto_export_revision_to_s3_request_details?
24
+ }
25
+
26
+ end
27
+ end
28
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-dataexchange
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.83.0
4
+ version: 1.85.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
@@ -68,6 +68,7 @@ files:
68
68
  - lib/aws-sdk-dataexchange/waiters.rb
69
69
  - sig/client.rbs
70
70
  - sig/errors.rbs
71
+ - sig/params.rbs
71
72
  - sig/resource.rbs
72
73
  - sig/types.rbs
73
74
  - sig/waiters.rbs