aws-sdk-dataexchange 1.41.0 → 1.43.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e3a16283afc65648e88fa958bf897b2889f9031c7aeff31e8f5ec2df826c54ee
4
- data.tar.gz: b90eb2b387efb1b73b14eb1077c24a3307d8b9670c23ce3c109bffe12b7c8d5e
3
+ metadata.gz: e3f82b0c1c68490373a9b512e8a593706eb59584feebf18403242d1c82732f47
4
+ data.tar.gz: 97331729965f3f58842fb4f488d0274dacf7256a45a53c33cbbfb615d76395f2
5
5
  SHA512:
6
- metadata.gz: 7edd26b2735bfd042c6d78674a0db4899350372a7d018204597fba8e1c2b6b243ac5ff84146a13ed12888a0fc78cc8b7b6b3fdc1bf62f0f3ea567eda9f14fbcc
7
- data.tar.gz: 12ae2ce379a8646178b480ddea796781f0570d7db25c9cc904d92f8524b5ed53638d4d8a6edfe3dc8c9f8272a5b3f46f76893758205085c14012ecf82e0e1ee9
6
+ metadata.gz: 35b5b547dc0c012c618a4e98bdcc51eff885419ee11f1472c7f433e550fab75229ad876bdc5770de73a5706a3238467ccc196bcd37770c0659c5aee2c58516bc
7
+ data.tar.gz: 63ed8cb18b6710f5cd3a660054ab7c558437e4ee63c4256ce66a52e25e25e2be7aedc49b067d17da7dcf4b8ca46fb6d9cb1f1ff2007a61fa3d97e0124a815b51
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.43.0 (2023-11-13)
5
+ ------------------
6
+
7
+ * Feature - Removed Required trait for DataSet.OriginDetails.ProductId.
8
+
9
+ 1.42.0 (2023-11-07)
10
+ ------------------
11
+
12
+ * Feature - Updated SendDataSetNotificationRequest Comment to be maximum length 4096.
13
+
4
14
  1.41.0 (2023-10-30)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.41.0
1
+ 1.43.0
@@ -1892,7 +1892,7 @@ module Aws::DataExchange
1892
1892
  # ],
1893
1893
  # },
1894
1894
  # client_token: "ClientToken",
1895
- # comment: "__stringMin0Max16384",
1895
+ # comment: "__stringMin0Max4096",
1896
1896
  # data_set_id: "__string", # required
1897
1897
  # details: {
1898
1898
  # data_update: {
@@ -2285,7 +2285,7 @@ module Aws::DataExchange
2285
2285
  params: params,
2286
2286
  config: config)
2287
2287
  context[:gem_name] = 'aws-sdk-dataexchange'
2288
- context[:gem_version] = '1.41.0'
2288
+ context[:gem_version] = '1.43.0'
2289
2289
  Seahorse::Client::Request.new(handlers, context)
2290
2290
  end
2291
2291
 
@@ -197,6 +197,7 @@ module Aws::DataExchange
197
197
  __doubleMin0 = Shapes::FloatShape.new(name: '__doubleMin0')
198
198
  __string = Shapes::StringShape.new(name: '__string')
199
199
  __stringMin0Max16384 = Shapes::StringShape.new(name: '__stringMin0Max16384')
200
+ __stringMin0Max4096 = Shapes::StringShape.new(name: '__stringMin0Max4096')
200
201
  __stringMin10Max512 = Shapes::StringShape.new(name: '__stringMin10Max512')
201
202
  __stringMin24Max24PatternAZaZ094AZaZ092AZaZ093 = Shapes::StringShape.new(name: '__stringMin24Max24PatternAZaZ094AZaZ092AZaZ093')
202
203
 
@@ -735,7 +736,7 @@ module Aws::DataExchange
735
736
  NotificationDetails.add_member(:schema_change, Shapes::ShapeRef.new(shape: SchemaChangeRequestDetails, location_name: "SchemaChange"))
736
737
  NotificationDetails.struct_class = Types::NotificationDetails
737
738
 
738
- OriginDetails.add_member(:product_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ProductId"))
739
+ OriginDetails.add_member(:product_id, Shapes::ShapeRef.new(shape: __string, location_name: "ProductId"))
739
740
  OriginDetails.struct_class = Types::OriginDetails
740
741
 
741
742
  RedshiftDataShareAsset.add_member(:arn, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "Arn"))
@@ -873,7 +874,7 @@ module Aws::DataExchange
873
874
 
874
875
  SendDataSetNotificationRequest.add_member(:scope, Shapes::ShapeRef.new(shape: ScopeDetails, location_name: "Scope"))
875
876
  SendDataSetNotificationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
876
- SendDataSetNotificationRequest.add_member(:comment, Shapes::ShapeRef.new(shape: __stringMin0Max16384, location_name: "Comment"))
877
+ SendDataSetNotificationRequest.add_member(:comment, Shapes::ShapeRef.new(shape: __stringMin0Max4096, location_name: "Comment"))
877
878
  SendDataSetNotificationRequest.add_member(:data_set_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "DataSetId"))
878
879
  SendDataSetNotificationRequest.add_member(:details, Shapes::ShapeRef.new(shape: NotificationDetails, location_name: "Details"))
879
880
  SendDataSetNotificationRequest.add_member(:type, Shapes::ShapeRef.new(shape: NotificationType, required: true, location_name: "Type"))
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-dataexchange/customizations'
53
53
  # @!group service
54
54
  module Aws::DataExchange
55
55
 
56
- GEM_VERSION = '1.41.0'
56
+ GEM_VERSION = '1.43.0'
57
57
 
58
58
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-dataexchange
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.41.0
4
+ version: 1.43.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-10-30 00:00:00.000000000 Z
11
+ date: 2023-11-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core