aws-sdk-datazone 1.13.0 → 1.14.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-datazone/client.rb +1 -1
- data/lib/aws-sdk-datazone/client_api.rb +3 -3
- data/lib/aws-sdk-datazone.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ed8174bc8d139accc444ee885ce87c631720a1c98b316209ea232fb7b211aa37
|
|
4
|
+
data.tar.gz: 7d962becd8b37b431aa42b26748d9484641ee8db4417420dc722872b27d372bd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 583b04f0da6431fcac54469364e983cb36cfe31f7e337fdba0ef2c60de59592b799b3dade38cce989f3788e635a19d93d5866d77825a425dbe5a6fefcb1303d0
|
|
7
|
+
data.tar.gz: 817dc4c6eb0f57bdc79f2ab4f513d563b8b304fb254585f6bd7ac79c0b5f99ebcee11288eaa7e363ebc48dc944fddcdd45d1380ab8c0cef8486bf150a9a66f74
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.14.0 (2024-07-09)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release deprecates dataProductItem field from SearchInventoryResultItem, along with some unused DataProduct shapes
|
|
8
|
+
|
|
4
9
|
1.13.0 (2024-07-02)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.14.0
|
|
@@ -8461,7 +8461,7 @@ module Aws::DataZone
|
|
|
8461
8461
|
params: params,
|
|
8462
8462
|
config: config)
|
|
8463
8463
|
context[:gem_name] = 'aws-sdk-datazone'
|
|
8464
|
-
context[:gem_version] = '1.
|
|
8464
|
+
context[:gem_version] = '1.14.0'
|
|
8465
8465
|
Seahorse::Client::Request.new(handlers, context)
|
|
8466
8466
|
end
|
|
8467
8467
|
|
|
@@ -1246,11 +1246,11 @@ module Aws::DataZone
|
|
|
1246
1246
|
DataProductItem.add_member(:item_id, Shapes::ShapeRef.new(shape: DataProductId, location_name: "itemId"))
|
|
1247
1247
|
DataProductItem.struct_class = Types::DataProductItem
|
|
1248
1248
|
|
|
1249
|
-
DataProductItems.member = Shapes::ShapeRef.new(shape: DataProductItem)
|
|
1249
|
+
DataProductItems.member = Shapes::ShapeRef.new(shape: DataProductItem, deprecated: true)
|
|
1250
1250
|
|
|
1251
1251
|
DataProductSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: CreatedAt, location_name: "createdAt"))
|
|
1252
1252
|
DataProductSummary.add_member(:created_by, Shapes::ShapeRef.new(shape: CreatedBy, location_name: "createdBy"))
|
|
1253
|
-
DataProductSummary.add_member(:data_product_items, Shapes::ShapeRef.new(shape: DataProductItems, location_name: "dataProductItems"))
|
|
1253
|
+
DataProductSummary.add_member(:data_product_items, Shapes::ShapeRef.new(shape: DataProductItems, deprecated: true, location_name: "dataProductItems"))
|
|
1254
1254
|
DataProductSummary.add_member(:description, Shapes::ShapeRef.new(shape: DataProductDescription, location_name: "description"))
|
|
1255
1255
|
DataProductSummary.add_member(:domain_id, Shapes::ShapeRef.new(shape: DomainId, required: true, location_name: "domainId"))
|
|
1256
1256
|
DataProductSummary.add_member(:glossary_terms, Shapes::ShapeRef.new(shape: GlossaryTerms, location_name: "glossaryTerms"))
|
|
@@ -2786,7 +2786,7 @@ module Aws::DataZone
|
|
|
2786
2786
|
SearchInput.struct_class = Types::SearchInput
|
|
2787
2787
|
|
|
2788
2788
|
SearchInventoryResultItem.add_member(:asset_item, Shapes::ShapeRef.new(shape: AssetItem, location_name: "assetItem"))
|
|
2789
|
-
SearchInventoryResultItem.add_member(:data_product_item, Shapes::ShapeRef.new(shape: DataProductSummary, location_name: "dataProductItem"))
|
|
2789
|
+
SearchInventoryResultItem.add_member(:data_product_item, Shapes::ShapeRef.new(shape: DataProductSummary, deprecated: true, location_name: "dataProductItem", metadata: {"deprecatedMessage"=>"This field is deprecated."}))
|
|
2790
2790
|
SearchInventoryResultItem.add_member(:glossary_item, Shapes::ShapeRef.new(shape: GlossaryItem, location_name: "glossaryItem"))
|
|
2791
2791
|
SearchInventoryResultItem.add_member(:glossary_term_item, Shapes::ShapeRef.new(shape: GlossaryTermItem, location_name: "glossaryTermItem"))
|
|
2792
2792
|
SearchInventoryResultItem.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
data/lib/aws-sdk-datazone.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-datazone
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.14.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: 2024-07-
|
|
11
|
+
date: 2024-07-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|