aws-sdk-imagebuilder 1.100.0 → 1.101.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: bc009e4216621bf19505143e7ded2b707af7ad98ebfcbf40cd0239023356d62d
4
- data.tar.gz: 4fc1d8020d72da7f9473f6ab3c8cd93b2ea06989e2711169801f64fffdd2ad31
3
+ metadata.gz: ac45d95057307a3d228172043680c542a1a9061b35c34f07f10957827a9c9812
4
+ data.tar.gz: 98e7574b33788370c2b02378ba04b8ba41d1dbe4823afd88663f8d525b57c89e
5
5
  SHA512:
6
- metadata.gz: 34838cafd2ec47e52e25e00227ebe1c1b1a074139ba8443bc435eefd3c5d40b8c2fb407950ca76fd692370f5f8d0acb36e7ead0e3f31747540636c37021e6819
7
- data.tar.gz: a1ccdafc0e947b688b59876a725982730e67b1c674bc2b1b24de9935810cd534ecd04579a3ca401801c8fd3a376e2215841c5fb47fbe0378a9343af7c264fe9d
6
+ metadata.gz: d958fc911b254709cfde845e3e4482382864cd11baed84319f619f2ad1d7f01c247ed1426d2e369f24f4c254ce9ad38806bf12c87c9371726e648cfa78fbd245
7
+ data.tar.gz: 6be0a7c05175669e4d53b1169b8b9631a7a14b7df75e9c9b594a28167406c33fa07354604168d3dcd0902f0a29e807a7a617e74675b74e300d1b17f3ae889985
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.101.0 (2026-04-10)
5
+ ------------------
6
+
7
+ * Feature - Image pipelines can now automatically apply tags to images they create. Set the imageTags property when creating or updating your pipelines to get started.
8
+
4
9
  1.100.0 (2026-04-03)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.100.0
1
+ 1.101.0
@@ -1166,6 +1166,9 @@ module Aws::Imagebuilder
1166
1166
  # @option params [Hash<String,String>] :tags
1167
1167
  # The tags of the image pipeline.
1168
1168
  #
1169
+ # @option params [Hash<String,String>] :image_tags
1170
+ # The tags to be applied to the images produced by this pipeline.
1171
+ #
1169
1172
  # @option params [required, String] :client_token
1170
1173
  # Unique, case-sensitive identifier you provide to ensure idempotency of
1171
1174
  # the request. For more information, see [Ensuring idempotency][1] in
@@ -1223,6 +1226,9 @@ module Aws::Imagebuilder
1223
1226
  # tags: {
1224
1227
  # "TagKey" => "TagValue",
1225
1228
  # },
1229
+ # image_tags: {
1230
+ # "TagKey" => "TagValue",
1231
+ # },
1226
1232
  # client_token: "ClientToken", # required
1227
1233
  # image_scanning_configuration: {
1228
1234
  # image_scanning_enabled: false,
@@ -2713,6 +2719,8 @@ module Aws::Imagebuilder
2713
2719
  # resp.image_pipeline.image_scanning_configuration.ecr_configuration.repository_name #=> String
2714
2720
  # resp.image_pipeline.image_scanning_configuration.ecr_configuration.container_tags #=> Array
2715
2721
  # resp.image_pipeline.image_scanning_configuration.ecr_configuration.container_tags[0] #=> String
2722
+ # resp.image_pipeline.image_tags #=> Hash
2723
+ # resp.image_pipeline.image_tags["TagKey"] #=> String
2716
2724
  # resp.image_pipeline.execution_role #=> String
2717
2725
  # resp.image_pipeline.workflows #=> Array
2718
2726
  # resp.image_pipeline.workflows[0].workflow_arn #=> String
@@ -4156,6 +4164,8 @@ module Aws::Imagebuilder
4156
4164
  # resp.image_pipeline_list[0].image_scanning_configuration.ecr_configuration.repository_name #=> String
4157
4165
  # resp.image_pipeline_list[0].image_scanning_configuration.ecr_configuration.container_tags #=> Array
4158
4166
  # resp.image_pipeline_list[0].image_scanning_configuration.ecr_configuration.container_tags[0] #=> String
4167
+ # resp.image_pipeline_list[0].image_tags #=> Hash
4168
+ # resp.image_pipeline_list[0].image_tags["TagKey"] #=> String
4159
4169
  # resp.image_pipeline_list[0].execution_role #=> String
4160
4170
  # resp.image_pipeline_list[0].workflows #=> Array
4161
4171
  # resp.image_pipeline_list[0].workflows[0].workflow_arn #=> String
@@ -5753,6 +5763,9 @@ module Aws::Imagebuilder
5753
5763
  # The name or Amazon Resource Name (ARN) for the IAM role you create
5754
5764
  # that grants Image Builder access to perform workflow actions.
5755
5765
  #
5766
+ # @option params [Hash<String,String>] :image_tags
5767
+ # The tags to be applied to the images produced by this pipeline.
5768
+ #
5756
5769
  # @return [Types::UpdateImagePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5757
5770
  #
5758
5771
  # * {Types::UpdateImagePipelineResponse#request_id #request_id} => String
@@ -5808,6 +5821,9 @@ module Aws::Imagebuilder
5808
5821
  # pipeline_log_group_name: "LogGroupName",
5809
5822
  # },
5810
5823
  # execution_role: "RoleNameOrArn",
5824
+ # image_tags: {
5825
+ # "TagKey" => "TagValue",
5826
+ # },
5811
5827
  # })
5812
5828
  #
5813
5829
  # @example Response structure
@@ -6096,7 +6112,7 @@ module Aws::Imagebuilder
6096
6112
  tracer: tracer
6097
6113
  )
6098
6114
  context[:gem_name] = 'aws-sdk-imagebuilder'
6099
- context[:gem_version] = '1.100.0'
6115
+ context[:gem_version] = '1.101.0'
6100
6116
  Seahorse::Client::Request.new(handlers, context)
6101
6117
  end
6102
6118
 
@@ -736,6 +736,7 @@ module Aws::Imagebuilder
736
736
  CreateImagePipelineRequest.add_member(:schedule, Shapes::ShapeRef.new(shape: Schedule, location_name: "schedule"))
737
737
  CreateImagePipelineRequest.add_member(:status, Shapes::ShapeRef.new(shape: PipelineStatus, location_name: "status"))
738
738
  CreateImagePipelineRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
739
+ CreateImagePipelineRequest.add_member(:image_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "imageTags"))
739
740
  CreateImagePipelineRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
740
741
  CreateImagePipelineRequest.add_member(:image_scanning_configuration, Shapes::ShapeRef.new(shape: ImageScanningConfiguration, location_name: "imageScanningConfiguration"))
741
742
  CreateImagePipelineRequest.add_member(:workflows, Shapes::ShapeRef.new(shape: WorkflowConfigurationList, location_name: "workflows"))
@@ -1230,6 +1231,7 @@ module Aws::Imagebuilder
1230
1231
  ImagePipeline.add_member(:date_next_run, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateNextRun"))
1231
1232
  ImagePipeline.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1232
1233
  ImagePipeline.add_member(:image_scanning_configuration, Shapes::ShapeRef.new(shape: ImageScanningConfiguration, location_name: "imageScanningConfiguration"))
1234
+ ImagePipeline.add_member(:image_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "imageTags"))
1233
1235
  ImagePipeline.add_member(:execution_role, Shapes::ShapeRef.new(shape: RoleNameOrArn, location_name: "executionRole"))
1234
1236
  ImagePipeline.add_member(:workflows, Shapes::ShapeRef.new(shape: WorkflowConfigurationList, location_name: "workflows"))
1235
1237
  ImagePipeline.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: PipelineLoggingConfiguration, location_name: "loggingConfiguration"))
@@ -1492,7 +1494,7 @@ module Aws::Imagebuilder
1492
1494
 
1493
1495
  LaunchTemplateConfiguration.add_member(:launch_template_id, Shapes::ShapeRef.new(shape: LaunchTemplateId, required: true, location_name: "launchTemplateId"))
1494
1496
  LaunchTemplateConfiguration.add_member(:account_id, Shapes::ShapeRef.new(shape: AccountId, location_name: "accountId"))
1495
- LaunchTemplateConfiguration.add_member(:set_default_version, Shapes::ShapeRef.new(shape: Boolean, location_name: "setDefaultVersion"))
1497
+ LaunchTemplateConfiguration.add_member(:set_default_version, Shapes::ShapeRef.new(shape: Boolean, location_name: "setDefaultVersion", metadata: {"box" => true}))
1496
1498
  LaunchTemplateConfiguration.struct_class = Types::LaunchTemplateConfiguration
1497
1499
 
1498
1500
  LaunchTemplateConfigurationList.member = Shapes::ShapeRef.new(shape: LaunchTemplateConfiguration)
@@ -2095,6 +2097,7 @@ module Aws::Imagebuilder
2095
2097
  UpdateImagePipelineRequest.add_member(:workflows, Shapes::ShapeRef.new(shape: WorkflowConfigurationList, location_name: "workflows"))
2096
2098
  UpdateImagePipelineRequest.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: PipelineLoggingConfiguration, location_name: "loggingConfiguration"))
2097
2099
  UpdateImagePipelineRequest.add_member(:execution_role, Shapes::ShapeRef.new(shape: RoleNameOrArn, location_name: "executionRole"))
2100
+ UpdateImagePipelineRequest.add_member(:image_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "imageTags"))
2098
2101
  UpdateImagePipelineRequest.struct_class = Types::UpdateImagePipelineRequest
2099
2102
 
2100
2103
  UpdateImagePipelineResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
@@ -1392,6 +1392,10 @@ module Aws::Imagebuilder
1392
1392
  # The tags of the image pipeline.
1393
1393
  # @return [Hash<String,String>]
1394
1394
  #
1395
+ # @!attribute [rw] image_tags
1396
+ # The tags to be applied to the images produced by this pipeline.
1397
+ # @return [Hash<String,String>]
1398
+ #
1395
1399
  # @!attribute [rw] client_token
1396
1400
  # Unique, case-sensitive identifier you provide to ensure idempotency
1397
1401
  # of the request. For more information, see [Ensuring idempotency][1]
@@ -1436,6 +1440,7 @@ module Aws::Imagebuilder
1436
1440
  :schedule,
1437
1441
  :status,
1438
1442
  :tags,
1443
+ :image_tags,
1439
1444
  :client_token,
1440
1445
  :image_scanning_configuration,
1441
1446
  :workflows,
@@ -3960,6 +3965,10 @@ module Aws::Imagebuilder
3960
3965
  # Contains settings for vulnerability scans.
3961
3966
  # @return [Types::ImageScanningConfiguration]
3962
3967
  #
3968
+ # @!attribute [rw] image_tags
3969
+ # The tags to be applied to the images produced by this pipeline.
3970
+ # @return [Hash<String,String>]
3971
+ #
3963
3972
  # @!attribute [rw] execution_role
3964
3973
  # The name or Amazon Resource Name (ARN) for the IAM role you create
3965
3974
  # that grants Image Builder access to perform workflow actions.
@@ -4020,6 +4029,7 @@ module Aws::Imagebuilder
4020
4029
  :date_next_run,
4021
4030
  :tags,
4022
4031
  :image_scanning_configuration,
4032
+ :image_tags,
4023
4033
  :execution_role,
4024
4034
  :workflows,
4025
4035
  :logging_configuration,
@@ -8498,6 +8508,10 @@ module Aws::Imagebuilder
8498
8508
  # that grants Image Builder access to perform workflow actions.
8499
8509
  # @return [String]
8500
8510
  #
8511
+ # @!attribute [rw] image_tags
8512
+ # The tags to be applied to the images produced by this pipeline.
8513
+ # @return [Hash<String,String>]
8514
+ #
8501
8515
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/UpdateImagePipelineRequest AWS API Documentation
8502
8516
  #
8503
8517
  class UpdateImagePipelineRequest < Struct.new(
@@ -8515,7 +8529,8 @@ module Aws::Imagebuilder
8515
8529
  :image_scanning_configuration,
8516
8530
  :workflows,
8517
8531
  :logging_configuration,
8518
- :execution_role)
8532
+ :execution_role,
8533
+ :image_tags)
8519
8534
  SENSITIVE = []
8520
8535
  include Aws::Structure
8521
8536
  end
@@ -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.100.0'
57
+ GEM_VERSION = '1.101.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -339,6 +339,7 @@ module Aws
339
339
  },
340
340
  ?status: ("DISABLED" | "ENABLED"),
341
341
  ?tags: Hash[::String, ::String],
342
+ ?image_tags: Hash[::String, ::String],
342
343
  client_token: ::String,
343
344
  ?image_scanning_configuration: {
344
345
  image_scanning_enabled: bool?,
@@ -1594,7 +1595,8 @@ module Aws
1594
1595
  image_log_group_name: ::String?,
1595
1596
  pipeline_log_group_name: ::String?
1596
1597
  },
1597
- ?execution_role: ::String
1598
+ ?execution_role: ::String,
1599
+ ?image_tags: Hash[::String, ::String]
1598
1600
  ) -> _UpdateImagePipelineResponseSuccess
1599
1601
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateImagePipelineResponseSuccess
1600
1602
 
data/sig/types.rbs CHANGED
@@ -293,6 +293,7 @@ module Aws::Imagebuilder
293
293
  attr_accessor schedule: Types::Schedule
294
294
  attr_accessor status: ("DISABLED" | "ENABLED")
295
295
  attr_accessor tags: ::Hash[::String, ::String]
296
+ attr_accessor image_tags: ::Hash[::String, ::String]
296
297
  attr_accessor client_token: ::String
297
298
  attr_accessor image_scanning_configuration: Types::ImageScanningConfiguration
298
299
  attr_accessor workflows: ::Array[Types::WorkflowConfiguration]
@@ -941,6 +942,7 @@ module Aws::Imagebuilder
941
942
  attr_accessor date_next_run: ::String
942
943
  attr_accessor tags: ::Hash[::String, ::String]
943
944
  attr_accessor image_scanning_configuration: Types::ImageScanningConfiguration
945
+ attr_accessor image_tags: ::Hash[::String, ::String]
944
946
  attr_accessor execution_role: ::String
945
947
  attr_accessor workflows: ::Array[Types::WorkflowConfiguration]
946
948
  attr_accessor logging_configuration: Types::PipelineLoggingConfiguration
@@ -2028,6 +2030,7 @@ module Aws::Imagebuilder
2028
2030
  attr_accessor workflows: ::Array[Types::WorkflowConfiguration]
2029
2031
  attr_accessor logging_configuration: Types::PipelineLoggingConfiguration
2030
2032
  attr_accessor execution_role: ::String
2033
+ attr_accessor image_tags: ::Hash[::String, ::String]
2031
2034
  SENSITIVE: []
2032
2035
  end
2033
2036
 
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.100.0
4
+ version: 1.101.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services