aws-sdk-dataexchange 1.65.0 → 1.67.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: 84655f85826811bdf3ef4b893526384383c199c3890806d52add3790a0754921
4
- data.tar.gz: dab802345b1052f83c3eb545b41f42d42f46514ea5907f20b8d5aa6906c54a3a
3
+ metadata.gz: 307cd05cf6a188636088ee646521972150bbcff930ca0c1ace4ebff43f1d7f36
4
+ data.tar.gz: e0e329e993cf361bca1794758980e38220c382bb3948bb581bcdf0bc686b84b6
5
5
  SHA512:
6
- metadata.gz: 2943908fd475b02d11458a8b8adc0629e6649b83f337bb8de0d76655bf6b98eccc295319ef215a78c55038ce2db2c118c6eb20d041057e138b0d988b17b4e405
7
- data.tar.gz: 6154b1ce17e0c033817be4a39713ca5bf8e7bedb8d97f0122e2685ddbda3e73fade53f4ea33285855326e4389e667bdd4e814e323e8d7bb412c3a8e6fe838873
6
+ metadata.gz: 93377453e1f511e3c81b22dae3e410aba0865629610acc728bf5054598b0154aaa85fc1334015be55808ce07e48618c92a02150fb5f31527078727ebfad647a5
7
+ data.tar.gz: bb86f94ecd7c122b05d91a88eeb86eb988b54efe52cfae50595788ffbd20e6d884982eb81a3f9ffa2eb7ef7440e49858c493f70d4ea0b7d121f2b0351116c251
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.67.0 (2025-05-29)
5
+ ------------------
6
+
7
+ * Feature - This release adds Tag support for Event Action resource, through which customers can create event actions with Tags and retrieve event actions with Tags.
8
+
9
+ 1.66.0 (2025-05-12)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.65.0 (2025-05-01)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.65.0
1
+ 1.67.0
@@ -200,8 +200,7 @@ module Aws::DataExchange
200
200
  # accepted modes and the configuration defaults that are included.
201
201
  #
202
202
  # @option options [Boolean] :disable_host_prefix_injection (false)
203
- # Set to true to disable SDK automatically adding host prefix
204
- # to default service endpoint when available.
203
+ # When `true`, the SDK will not prepend the modeled host prefix to the endpoint.
205
204
  #
206
205
  # @option options [Boolean] :disable_request_compression (false)
207
206
  # When set to 'true' the request body will not be compressed
@@ -705,6 +704,9 @@ module Aws::DataExchange
705
704
  # @option params [required, Types::Event] :event
706
705
  # What occurs to start an action.
707
706
  #
707
+ # @option params [Hash<String,String>] :tags
708
+ # Key-value pairs that you can associate with the event action.
709
+ #
708
710
  # @return [Types::CreateEventActionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
709
711
  #
710
712
  # * {Types::CreateEventActionResponse#action #action} => Types::Action
@@ -712,6 +714,7 @@ module Aws::DataExchange
712
714
  # * {Types::CreateEventActionResponse#created_at #created_at} => Time
713
715
  # * {Types::CreateEventActionResponse#event #event} => Types::Event
714
716
  # * {Types::CreateEventActionResponse#id #id} => String
717
+ # * {Types::CreateEventActionResponse#tags #tags} => Hash&lt;String,String&gt;
715
718
  # * {Types::CreateEventActionResponse#updated_at #updated_at} => Time
716
719
  #
717
720
  # @example Request syntax with placeholder values
@@ -734,6 +737,9 @@ module Aws::DataExchange
734
737
  # data_set_id: "Id", # required
735
738
  # },
736
739
  # },
740
+ # tags: {
741
+ # "__string" => "__string",
742
+ # },
737
743
  # })
738
744
  #
739
745
  # @example Response structure
@@ -746,6 +752,8 @@ module Aws::DataExchange
746
752
  # resp.created_at #=> Time
747
753
  # resp.event.revision_published.data_set_id #=> String
748
754
  # resp.id #=> String
755
+ # resp.tags #=> Hash
756
+ # resp.tags["__string"] #=> String
749
757
  # resp.updated_at #=> Time
750
758
  #
751
759
  # @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/CreateEventAction AWS API Documentation
@@ -1386,6 +1394,7 @@ module Aws::DataExchange
1386
1394
  # * {Types::GetEventActionResponse#created_at #created_at} => Time
1387
1395
  # * {Types::GetEventActionResponse#event #event} => Types::Event
1388
1396
  # * {Types::GetEventActionResponse#id #id} => String
1397
+ # * {Types::GetEventActionResponse#tags #tags} => Hash&lt;String,String&gt;
1389
1398
  # * {Types::GetEventActionResponse#updated_at #updated_at} => Time
1390
1399
  #
1391
1400
  # @example Request syntax with placeholder values
@@ -1404,6 +1413,8 @@ module Aws::DataExchange
1404
1413
  # resp.created_at #=> Time
1405
1414
  # resp.event.revision_published.data_set_id #=> String
1406
1415
  # resp.id #=> String
1416
+ # resp.tags #=> Hash
1417
+ # resp.tags["__string"] #=> String
1407
1418
  # resp.updated_at #=> Time
1408
1419
  #
1409
1420
  # @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/GetEventAction AWS API Documentation
@@ -2742,7 +2753,7 @@ module Aws::DataExchange
2742
2753
  tracer: tracer
2743
2754
  )
2744
2755
  context[:gem_name] = 'aws-sdk-dataexchange'
2745
- context[:gem_version] = '1.65.0'
2756
+ context[:gem_version] = '1.67.0'
2746
2757
  Seahorse::Client::Request.new(handlers, context)
2747
2758
  end
2748
2759
 
@@ -357,6 +357,7 @@ module Aws::DataExchange
357
357
 
358
358
  CreateEventActionRequest.add_member(:action, Shapes::ShapeRef.new(shape: Action, required: true, location_name: "Action"))
359
359
  CreateEventActionRequest.add_member(:event, Shapes::ShapeRef.new(shape: Event, required: true, location_name: "Event"))
360
+ CreateEventActionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: MapOf__string, location_name: "Tags"))
360
361
  CreateEventActionRequest.struct_class = Types::CreateEventActionRequest
361
362
 
362
363
  CreateEventActionResponse.add_member(:action, Shapes::ShapeRef.new(shape: Action, location_name: "Action"))
@@ -364,6 +365,7 @@ module Aws::DataExchange
364
365
  CreateEventActionResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
365
366
  CreateEventActionResponse.add_member(:event, Shapes::ShapeRef.new(shape: Event, location_name: "Event"))
366
367
  CreateEventActionResponse.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
368
+ CreateEventActionResponse.add_member(:tags, Shapes::ShapeRef.new(shape: MapOf__string, location_name: "Tags"))
367
369
  CreateEventActionResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "UpdatedAt"))
368
370
  CreateEventActionResponse.struct_class = Types::CreateEventActionResponse
369
371
 
@@ -582,6 +584,7 @@ module Aws::DataExchange
582
584
  GetEventActionResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreatedAt"))
583
585
  GetEventActionResponse.add_member(:event, Shapes::ShapeRef.new(shape: Event, location_name: "Event"))
584
586
  GetEventActionResponse.add_member(:id, Shapes::ShapeRef.new(shape: Id, location_name: "Id"))
587
+ GetEventActionResponse.add_member(:tags, Shapes::ShapeRef.new(shape: MapOf__string, location_name: "Tags"))
585
588
  GetEventActionResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "UpdatedAt"))
586
589
  GetEventActionResponse.struct_class = Types::GetEventActionResponse
587
590
 
@@ -646,11 +646,16 @@ module Aws::DataExchange
646
646
  # What occurs to start an action.
647
647
  # @return [Types::Event]
648
648
  #
649
+ # @!attribute [rw] tags
650
+ # Key-value pairs that you can associate with the event action.
651
+ # @return [Hash<String,String>]
652
+ #
649
653
  # @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/CreateEventActionRequest AWS API Documentation
650
654
  #
651
655
  class CreateEventActionRequest < Struct.new(
652
656
  :action,
653
- :event)
657
+ :event,
658
+ :tags)
654
659
  SENSITIVE = []
655
660
  include Aws::Structure
656
661
  end
@@ -676,6 +681,10 @@ module Aws::DataExchange
676
681
  # The unique identifier for the event action.
677
682
  # @return [String]
678
683
  #
684
+ # @!attribute [rw] tags
685
+ # The tags for the event action.
686
+ # @return [Hash<String,String>]
687
+ #
679
688
  # @!attribute [rw] updated_at
680
689
  # The date and time that the event action was last updated, in ISO
681
690
  # 8601 format.
@@ -689,6 +698,7 @@ module Aws::DataExchange
689
698
  :created_at,
690
699
  :event,
691
700
  :id,
701
+ :tags,
692
702
  :updated_at)
693
703
  SENSITIVE = []
694
704
  include Aws::Structure
@@ -1762,6 +1772,10 @@ module Aws::DataExchange
1762
1772
  # The unique identifier for the event action.
1763
1773
  # @return [String]
1764
1774
  #
1775
+ # @!attribute [rw] tags
1776
+ # The tags for the event action.
1777
+ # @return [Hash<String,String>]
1778
+ #
1765
1779
  # @!attribute [rw] updated_at
1766
1780
  # The date and time that the event action was last updated, in ISO
1767
1781
  # 8601 format.
@@ -1775,6 +1789,7 @@ module Aws::DataExchange
1775
1789
  :created_at,
1776
1790
  :event,
1777
1791
  :id,
1792
+ :tags,
1778
1793
  :updated_at)
1779
1794
  SENSITIVE = []
1780
1795
  include Aws::Structure
@@ -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.65.0'
58
+ GEM_VERSION = '1.67.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -165,6 +165,7 @@ module Aws
165
165
  def created_at: () -> ::Time
166
166
  def event: () -> Types::Event
167
167
  def id: () -> ::String
168
+ def tags: () -> ::Hash[::String, ::String]
168
169
  def updated_at: () -> ::Time
169
170
  end
170
171
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataExchange/Client.html#create_event_action-instance_method
@@ -185,7 +186,8 @@ module Aws
185
186
  revision_published: {
186
187
  data_set_id: ::String
187
188
  }?
188
- }
189
+ },
190
+ ?tags: Hash[::String, ::String]
189
191
  ) -> _CreateEventActionResponseSuccess
190
192
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateEventActionResponseSuccess
191
193
 
@@ -444,6 +446,7 @@ module Aws
444
446
  def created_at: () -> ::Time
445
447
  def event: () -> Types::Event
446
448
  def id: () -> ::String
449
+ def tags: () -> ::Hash[::String, ::String]
447
450
  def updated_at: () -> ::Time
448
451
  end
449
452
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DataExchange/Client.html#get_event_action-instance_method
data/sig/types.rbs CHANGED
@@ -169,6 +169,7 @@ module Aws::DataExchange
169
169
  class CreateEventActionRequest
170
170
  attr_accessor action: Types::Action
171
171
  attr_accessor event: Types::Event
172
+ attr_accessor tags: ::Hash[::String, ::String]
172
173
  SENSITIVE: []
173
174
  end
174
175
 
@@ -178,6 +179,7 @@ module Aws::DataExchange
178
179
  attr_accessor created_at: ::Time
179
180
  attr_accessor event: Types::Event
180
181
  attr_accessor id: ::String
182
+ attr_accessor tags: ::Hash[::String, ::String]
181
183
  attr_accessor updated_at: ::Time
182
184
  SENSITIVE: []
183
185
  end
@@ -466,6 +468,7 @@ module Aws::DataExchange
466
468
  attr_accessor created_at: ::Time
467
469
  attr_accessor event: Types::Event
468
470
  attr_accessor id: ::String
471
+ attr_accessor tags: ::Hash[::String, ::String]
469
472
  attr_accessor updated_at: ::Time
470
473
  SENSITIVE: []
471
474
  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.65.0
4
+ version: 1.67.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services