aws-sdk-imagebuilder 1.97.0 → 1.98.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-imagebuilder/client.rb +3 -3
- data/lib/aws-sdk-imagebuilder/client_api.rb +1 -1
- data/lib/aws-sdk-imagebuilder.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3029bd65f609f356842981345f6cea3f5cc744db07789fab502b593b0b3fda59
|
|
4
|
+
data.tar.gz: 40e0642821f095aecf9c46f52a300c4d2d97e5a0c6bb72d7768faf2c401e4619
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8f7df191a5b624f961958e097586fd59dfa6792e958e5e39f2148085732f4281023f976415e2f3bc306cbe931561bc27f2a6221deb8d21fae5474c10e675e750
|
|
7
|
+
data.tar.gz: 2f6cbb836f0ada92e4a815375b7d8bb826f6d3ff814d5bb6cbcd2b1ac15c74da6322f7c6823ad8f9c77bc632219cf9eff63d14b30cc91df78a1d58ff7f1eebc7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.98.0 (2026-02-09)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - EC2 Image Builder now supports wildcard patterns in lifecycle policies with recipes and enhances the experience of tag-scoped policies.
|
|
8
|
+
|
|
4
9
|
1.97.0 (2026-01-16)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.98.0
|
|
@@ -1653,7 +1653,7 @@ module Aws::Imagebuilder
|
|
|
1653
1653
|
# recipes: [
|
|
1654
1654
|
# {
|
|
1655
1655
|
# name: "ResourceName", # required
|
|
1656
|
-
# semantic_version: "
|
|
1656
|
+
# semantic_version: "WildcardVersionNumber", # required
|
|
1657
1657
|
# },
|
|
1658
1658
|
# ],
|
|
1659
1659
|
# tag_map: {
|
|
@@ -6055,7 +6055,7 @@ module Aws::Imagebuilder
|
|
|
6055
6055
|
# recipes: [
|
|
6056
6056
|
# {
|
|
6057
6057
|
# name: "ResourceName", # required
|
|
6058
|
-
# semantic_version: "
|
|
6058
|
+
# semantic_version: "WildcardVersionNumber", # required
|
|
6059
6059
|
# },
|
|
6060
6060
|
# ],
|
|
6061
6061
|
# tag_map: {
|
|
@@ -6096,7 +6096,7 @@ module Aws::Imagebuilder
|
|
|
6096
6096
|
tracer: tracer
|
|
6097
6097
|
)
|
|
6098
6098
|
context[:gem_name] = 'aws-sdk-imagebuilder'
|
|
6099
|
-
context[:gem_version] = '1.
|
|
6099
|
+
context[:gem_version] = '1.98.0'
|
|
6100
6100
|
Seahorse::Client::Request.new(handlers, context)
|
|
6101
6101
|
end
|
|
6102
6102
|
|
|
@@ -1599,7 +1599,7 @@ module Aws::Imagebuilder
|
|
|
1599
1599
|
LifecyclePolicyResourceSelection.struct_class = Types::LifecyclePolicyResourceSelection
|
|
1600
1600
|
|
|
1601
1601
|
LifecyclePolicyResourceSelectionRecipe.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "name"))
|
|
1602
|
-
LifecyclePolicyResourceSelectionRecipe.add_member(:semantic_version, Shapes::ShapeRef.new(shape:
|
|
1602
|
+
LifecyclePolicyResourceSelectionRecipe.add_member(:semantic_version, Shapes::ShapeRef.new(shape: WildcardVersionNumber, required: true, location_name: "semanticVersion"))
|
|
1603
1603
|
LifecyclePolicyResourceSelectionRecipe.struct_class = Types::LifecyclePolicyResourceSelectionRecipe
|
|
1604
1604
|
|
|
1605
1605
|
LifecyclePolicyResourceSelectionRecipes.member = Shapes::ShapeRef.new(shape: LifecyclePolicyResourceSelectionRecipe)
|
data/lib/aws-sdk-imagebuilder.rb
CHANGED