aws-sdk-imagebuilder 1.90.0 → 1.92.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: 2be2bbb4aab566db7e590a7de205254214de97a116897785ae1bc1bb8c215f04
4
- data.tar.gz: e1bc7ef8c398bd38ad41fb707e57c7b8d6b3061821cb9ec21582f1cf6c8c67f0
3
+ metadata.gz: 10b2fdd19784fe689571d63fb38ad7333852f6505e34dc0acc27ffef2a2693cf
4
+ data.tar.gz: abd563242887d2f47f5293a6d92e65c49011b99b98c746acd64b24829501f92a
5
5
  SHA512:
6
- metadata.gz: fed57af5ebe52344cd34d4dd0606965aa82ce8175aa1036a4a045ea118427d1aa6b0019b70d7cf7496183ce88018797dd5ebe1a9db5be9388ebf28be22ff4594
7
- data.tar.gz: 8bed812c9d2b4bdc7df69cd5636f311862c716e05b3b6fecac336d9d940f571c98f1310f7c1abd2327ac03802632c35546c5bde67b32ae56f2122ed0a1d0528f
6
+ metadata.gz: dc0d33075f2175af383324738429fb6ae1ef107dc5f64b9cd0fa1dd8f2ca7fc5e9dcd2a1d156f5d7e494c13ec6176528b00602980de63db1da10134b87d8477a
7
+ data.tar.gz: 2c82476c6a8e5af1dd079ef8a46e4b791892181671bc3016f15a4feed74c37eae50a8174d1ccea8772498bc38d6963047c68dad8f687586e9f212a3ea1e7b3aa
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.92.0 (2025-11-14)
5
+ ------------------
6
+
7
+ * Feature - EC2 Image Builder now supports invoking Lambda functions and executing Step Functions state machine through image workflows.
8
+
9
+ 1.91.0 (2025-10-21)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.90.0 (2025-10-17)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.90.0
1
+ 1.92.0
@@ -723,10 +723,8 @@ module Aws::Imagebuilder
723
723
  #
724
724
  # </note>
725
725
  #
726
- # @option params [required, Array<Types::ComponentConfiguration>] :components
727
- # Components for build and test that are included in the container
728
- # recipe. Recipes require a minimum of one build component, and can have
729
- # a maximum of 20 build and test components in any combination.
726
+ # @option params [Array<Types::ComponentConfiguration>] :components
727
+ # The components included in the container recipe.
730
728
  #
731
729
  # @option params [Types::InstanceConfiguration] :instance_configuration
732
730
  # A group of options that can be used to configure an instance for
@@ -794,7 +792,7 @@ module Aws::Imagebuilder
794
792
  # name: "ResourceName", # required
795
793
  # description: "NonEmptyString",
796
794
  # semantic_version: "VersionNumber", # required
797
- # components: [ # required
795
+ # components: [
798
796
  # {
799
797
  # component_arn: "ComponentVersionArnOrBuildVersionArn", # required
800
798
  # parameters: [
@@ -1275,7 +1273,7 @@ module Aws::Imagebuilder
1275
1273
  #
1276
1274
  # </note>
1277
1275
  #
1278
- # @option params [required, Array<Types::ComponentConfiguration>] :components
1276
+ # @option params [Array<Types::ComponentConfiguration>] :components
1279
1277
  # The components included in the image recipe.
1280
1278
  #
1281
1279
  # @option params [required, String] :parent_image
@@ -1336,7 +1334,7 @@ module Aws::Imagebuilder
1336
1334
  # name: "ResourceName", # required
1337
1335
  # description: "NonEmptyString",
1338
1336
  # semantic_version: "VersionNumber", # required
1339
- # components: [ # required
1337
+ # components: [
1340
1338
  # {
1341
1339
  # component_arn: "ComponentVersionArnOrBuildVersionArn", # required
1342
1340
  # parameters: [
@@ -5925,7 +5923,7 @@ module Aws::Imagebuilder
5925
5923
  tracer: tracer
5926
5924
  )
5927
5925
  context[:gem_name] = 'aws-sdk-imagebuilder'
5928
- context[:gem_version] = '1.90.0'
5926
+ context[:gem_version] = '1.92.0'
5929
5927
  Seahorse::Client::Request.new(handlers, context)
5930
5928
  end
5931
5929
 
@@ -679,7 +679,7 @@ module Aws::Imagebuilder
679
679
  CreateContainerRecipeRequest.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "name"))
680
680
  CreateContainerRecipeRequest.add_member(:description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "description"))
681
681
  CreateContainerRecipeRequest.add_member(:semantic_version, Shapes::ShapeRef.new(shape: VersionNumber, required: true, location_name: "semanticVersion"))
682
- CreateContainerRecipeRequest.add_member(:components, Shapes::ShapeRef.new(shape: ComponentConfigurationList, required: true, location_name: "components"))
682
+ CreateContainerRecipeRequest.add_member(:components, Shapes::ShapeRef.new(shape: ComponentConfigurationList, location_name: "components"))
683
683
  CreateContainerRecipeRequest.add_member(:instance_configuration, Shapes::ShapeRef.new(shape: InstanceConfiguration, location_name: "instanceConfiguration"))
684
684
  CreateContainerRecipeRequest.add_member(:dockerfile_template_data, Shapes::ShapeRef.new(shape: InlineDockerFileTemplate, location_name: "dockerfileTemplateData"))
685
685
  CreateContainerRecipeRequest.add_member(:dockerfile_template_uri, Shapes::ShapeRef.new(shape: Uri, location_name: "dockerfileTemplateUri"))
@@ -736,7 +736,7 @@ module Aws::Imagebuilder
736
736
  CreateImageRecipeRequest.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "name"))
737
737
  CreateImageRecipeRequest.add_member(:description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "description"))
738
738
  CreateImageRecipeRequest.add_member(:semantic_version, Shapes::ShapeRef.new(shape: VersionNumber, required: true, location_name: "semanticVersion"))
739
- CreateImageRecipeRequest.add_member(:components, Shapes::ShapeRef.new(shape: ComponentConfigurationList, required: true, location_name: "components"))
739
+ CreateImageRecipeRequest.add_member(:components, Shapes::ShapeRef.new(shape: ComponentConfigurationList, location_name: "components"))
740
740
  CreateImageRecipeRequest.add_member(:parent_image, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "parentImage"))
741
741
  CreateImageRecipeRequest.add_member(:block_device_mappings, Shapes::ShapeRef.new(shape: InstanceBlockDeviceMappings, location_name: "blockDeviceMappings"))
742
742
  CreateImageRecipeRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
@@ -1128,9 +1128,7 @@ module Aws::Imagebuilder
1128
1128
  # @return [String]
1129
1129
  #
1130
1130
  # @!attribute [rw] components
1131
- # Components for build and test that are included in the container
1132
- # recipe. Recipes require a minimum of one build component, and can
1133
- # have a maximum of 20 build and test components in any combination.
1131
+ # The components included in the container recipe.
1134
1132
  # @return [Array<Types::ComponentConfiguration>]
1135
1133
  #
1136
1134
  # @!attribute [rw] instance_configuration
@@ -54,7 +54,7 @@ module Aws::Imagebuilder
54
54
  autoload :EndpointProvider, 'aws-sdk-imagebuilder/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-imagebuilder/endpoints'
56
56
 
57
- GEM_VERSION = '1.90.0'
57
+ GEM_VERSION = '1.92.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -136,7 +136,7 @@ module Aws
136
136
  name: ::String,
137
137
  ?description: ::String,
138
138
  semantic_version: ::String,
139
- components: Array[
139
+ ?components: Array[
140
140
  {
141
141
  component_arn: ::String,
142
142
  parameters: Array[
@@ -375,7 +375,7 @@ module Aws
375
375
  name: ::String,
376
376
  ?description: ::String,
377
377
  semantic_version: ::String,
378
- components: Array[
378
+ ?components: Array[
379
379
  {
380
380
  component_arn: ::String,
381
381
  parameters: Array[
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-imagebuilder
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.90.0
4
+ version: 1.92.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.231.0
21
+ version: 3.234.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.231.0
31
+ version: 3.234.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement