aws-sdk-dataexchange 1.66.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: 63925bd13a51c651688118b5b515668002cb1a9a4227a20f8fc481a2069cea6c
4
- data.tar.gz: fd68cc94c725599b5cb313b4d362316094bb40f43650d021014a7ecee8d56d54
3
+ metadata.gz: 307cd05cf6a188636088ee646521972150bbcff930ca0c1ace4ebff43f1d7f36
4
+ data.tar.gz: e0e329e993cf361bca1794758980e38220c382bb3948bb581bcdf0bc686b84b6
5
5
  SHA512:
6
- metadata.gz: ed48c981e893aad421d1965c87789311a7964450e56919eb92ff43974c8b574f9577566388a84c7356d9ad867fe0a1693e807a65495a722fa3d7262ca77e5e11
7
- data.tar.gz: 152a3355b3439f1eb0c12d42ff8cb2da60c8474acf9399ff98656c246068e684e8ecda692c11c9154f98846df0b53252924461a99e8de4b7d1d98fcfa43b4a21
6
+ metadata.gz: 93377453e1f511e3c81b22dae3e410aba0865629610acc728bf5054598b0154aaa85fc1334015be55808ce07e48618c92a02150fb5f31527078727ebfad647a5
7
+ data.tar.gz: bb86f94ecd7c122b05d91a88eeb86eb988b54efe52cfae50595788ffbd20e6d884982eb81a3f9ffa2eb7ef7440e49858c493f70d4ea0b7d121f2b0351116c251
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.66.0 (2025-05-12)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.66.0
1
+ 1.67.0
@@ -704,6 +704,9 @@ module Aws::DataExchange
704
704
  # @option params [required, Types::Event] :event
705
705
  # What occurs to start an action.
706
706
  #
707
+ # @option params [Hash<String,String>] :tags
708
+ # Key-value pairs that you can associate with the event action.
709
+ #
707
710
  # @return [Types::CreateEventActionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
708
711
  #
709
712
  # * {Types::CreateEventActionResponse#action #action} => Types::Action
@@ -711,6 +714,7 @@ module Aws::DataExchange
711
714
  # * {Types::CreateEventActionResponse#created_at #created_at} => Time
712
715
  # * {Types::CreateEventActionResponse#event #event} => Types::Event
713
716
  # * {Types::CreateEventActionResponse#id #id} => String
717
+ # * {Types::CreateEventActionResponse#tags #tags} => Hash&lt;String,String&gt;
714
718
  # * {Types::CreateEventActionResponse#updated_at #updated_at} => Time
715
719
  #
716
720
  # @example Request syntax with placeholder values
@@ -733,6 +737,9 @@ module Aws::DataExchange
733
737
  # data_set_id: "Id", # required
734
738
  # },
735
739
  # },
740
+ # tags: {
741
+ # "__string" => "__string",
742
+ # },
736
743
  # })
737
744
  #
738
745
  # @example Response structure
@@ -745,6 +752,8 @@ module Aws::DataExchange
745
752
  # resp.created_at #=> Time
746
753
  # resp.event.revision_published.data_set_id #=> String
747
754
  # resp.id #=> String
755
+ # resp.tags #=> Hash
756
+ # resp.tags["__string"] #=> String
748
757
  # resp.updated_at #=> Time
749
758
  #
750
759
  # @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/CreateEventAction AWS API Documentation
@@ -1385,6 +1394,7 @@ module Aws::DataExchange
1385
1394
  # * {Types::GetEventActionResponse#created_at #created_at} => Time
1386
1395
  # * {Types::GetEventActionResponse#event #event} => Types::Event
1387
1396
  # * {Types::GetEventActionResponse#id #id} => String
1397
+ # * {Types::GetEventActionResponse#tags #tags} => Hash&lt;String,String&gt;
1388
1398
  # * {Types::GetEventActionResponse#updated_at #updated_at} => Time
1389
1399
  #
1390
1400
  # @example Request syntax with placeholder values
@@ -1403,6 +1413,8 @@ module Aws::DataExchange
1403
1413
  # resp.created_at #=> Time
1404
1414
  # resp.event.revision_published.data_set_id #=> String
1405
1415
  # resp.id #=> String
1416
+ # resp.tags #=> Hash
1417
+ # resp.tags["__string"] #=> String
1406
1418
  # resp.updated_at #=> Time
1407
1419
  #
1408
1420
  # @see http://docs.aws.amazon.com/goto/WebAPI/dataexchange-2017-07-25/GetEventAction AWS API Documentation
@@ -2741,7 +2753,7 @@ module Aws::DataExchange
2741
2753
  tracer: tracer
2742
2754
  )
2743
2755
  context[:gem_name] = 'aws-sdk-dataexchange'
2744
- context[:gem_version] = '1.66.0'
2756
+ context[:gem_version] = '1.67.0'
2745
2757
  Seahorse::Client::Request.new(handlers, context)
2746
2758
  end
2747
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.66.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.66.0
4
+ version: 1.67.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services