aws-sdk-imagebuilder 1.100.0 → 1.102.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: 9651752ab31f17301a48f59ca6f9380c292e3247f63fa485a1b1055e74159f62
4
+ data.tar.gz: 580400781fd60da37d802fc3dfa047938e0fcf210a35561184c34926fad38e96
5
5
  SHA512:
6
- metadata.gz: 34838cafd2ec47e52e25e00227ebe1c1b1a074139ba8443bc435eefd3c5d40b8c2fb407950ca76fd692370f5f8d0acb36e7ead0e3f31747540636c37021e6819
7
- data.tar.gz: a1ccdafc0e947b688b59876a725982730e67b1c674bc2b1b24de9935810cd534ecd04579a3ca401801c8fd3a376e2215841c5fb47fbe0378a9343af7c264fe9d
6
+ metadata.gz: 1f6b68d62faee065a058b1b4b1cec88c25a188783a9bb19e38c4b376d9373fb444897104ce808c45a82095de87cc0d1df40c9331ace0750d33f3e93d1e5d9b8c
7
+ data.tar.gz: b979107d021a1407602068cfc7a65efad7521952d46e1500626e9762841ae0aa183334a8bd0087d06d6961804ad7804d5b6810e6baa5d231e3ad147ad8baf9d9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.102.0 (2026-04-17)
5
+ ------------------
6
+
7
+ * Feature - ImportDiskImage API adds registerImageOptions for Secure Boot control and custom UEFI data. It adds windowsConfiguration for selecting a specific edition from multi-image .wim files during ISO import.
8
+
9
+ 1.101.0 (2026-04-10)
10
+ ------------------
11
+
12
+ * 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.
13
+
4
14
  1.100.0 (2026-04-03)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.100.0
1
+ 1.102.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
@@ -3398,6 +3406,12 @@ module Aws::Imagebuilder
3398
3406
  # @option params [Hash<String,String>] :tags
3399
3407
  # Tags that are attached to image resources created from the import.
3400
3408
  #
3409
+ # @option params [Types::RegisterImageOptions] :register_image_options
3410
+ # Configures Secure Boot and UEFI settings for the imported image.
3411
+ #
3412
+ # @option params [Types::WindowsConfiguration] :windows_configuration
3413
+ # Specifies Windows settings for ISO imports.
3414
+ #
3401
3415
  # @option params [required, String] :client_token
3402
3416
  # Unique, case-sensitive identifier you provide to ensure idempotency of
3403
3417
  # the request. For more information, see [Ensuring idempotency][1] in
@@ -3432,6 +3446,13 @@ module Aws::Imagebuilder
3432
3446
  # tags: {
3433
3447
  # "TagKey" => "TagValue",
3434
3448
  # },
3449
+ # register_image_options: {
3450
+ # secure_boot_enabled: false,
3451
+ # uefi_data: "UefiData",
3452
+ # },
3453
+ # windows_configuration: {
3454
+ # image_index: 1, # required
3455
+ # },
3435
3456
  # client_token: "ClientToken", # required
3436
3457
  # })
3437
3458
  #
@@ -4156,6 +4177,8 @@ module Aws::Imagebuilder
4156
4177
  # resp.image_pipeline_list[0].image_scanning_configuration.ecr_configuration.repository_name #=> String
4157
4178
  # resp.image_pipeline_list[0].image_scanning_configuration.ecr_configuration.container_tags #=> Array
4158
4179
  # resp.image_pipeline_list[0].image_scanning_configuration.ecr_configuration.container_tags[0] #=> String
4180
+ # resp.image_pipeline_list[0].image_tags #=> Hash
4181
+ # resp.image_pipeline_list[0].image_tags["TagKey"] #=> String
4159
4182
  # resp.image_pipeline_list[0].execution_role #=> String
4160
4183
  # resp.image_pipeline_list[0].workflows #=> Array
4161
4184
  # resp.image_pipeline_list[0].workflows[0].workflow_arn #=> String
@@ -5753,6 +5776,9 @@ module Aws::Imagebuilder
5753
5776
  # The name or Amazon Resource Name (ARN) for the IAM role you create
5754
5777
  # that grants Image Builder access to perform workflow actions.
5755
5778
  #
5779
+ # @option params [Hash<String,String>] :image_tags
5780
+ # The tags to be applied to the images produced by this pipeline.
5781
+ #
5756
5782
  # @return [Types::UpdateImagePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5757
5783
  #
5758
5784
  # * {Types::UpdateImagePipelineResponse#request_id #request_id} => String
@@ -5808,6 +5834,9 @@ module Aws::Imagebuilder
5808
5834
  # pipeline_log_group_name: "LogGroupName",
5809
5835
  # },
5810
5836
  # execution_role: "RoleNameOrArn",
5837
+ # image_tags: {
5838
+ # "TagKey" => "TagValue",
5839
+ # },
5811
5840
  # })
5812
5841
  #
5813
5842
  # @example Response structure
@@ -6096,7 +6125,7 @@ module Aws::Imagebuilder
6096
6125
  tracer: tracer
6097
6126
  )
6098
6127
  context[:gem_name] = 'aws-sdk-imagebuilder'
6099
- context[:gem_version] = '1.100.0'
6128
+ context[:gem_version] = '1.102.0'
6100
6129
  Seahorse::Client::Request.new(handlers, context)
6101
6130
  end
6102
6131
 
@@ -373,6 +373,7 @@ module Aws::Imagebuilder
373
373
  PutImageRecipePolicyRequest = Shapes::StructureShape.new(name: 'PutImageRecipePolicyRequest')
374
374
  PutImageRecipePolicyResponse = Shapes::StructureShape.new(name: 'PutImageRecipePolicyResponse')
375
375
  RegionList = Shapes::ListShape.new(name: 'RegionList')
376
+ RegisterImageOptions = Shapes::StructureShape.new(name: 'RegisterImageOptions')
376
377
  Remediation = Shapes::StructureShape.new(name: 'Remediation')
377
378
  RemediationRecommendation = Shapes::StructureShape.new(name: 'RemediationRecommendation')
378
379
  ResourceAlreadyExistsException = Shapes::StructureShape.new(name: 'ResourceAlreadyExistsException')
@@ -424,6 +425,7 @@ module Aws::Imagebuilder
424
425
  TenancyType = Shapes::StringShape.new(name: 'TenancyType')
425
426
  Timezone = Shapes::StringShape.new(name: 'Timezone')
426
427
  TooManyRequestsException = Shapes::StructureShape.new(name: 'TooManyRequestsException')
428
+ UefiData = Shapes::StringShape.new(name: 'UefiData')
427
429
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
428
430
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
429
431
  UpdateDistributionConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateDistributionConfigurationRequest')
@@ -443,6 +445,8 @@ module Aws::Imagebuilder
443
445
  VulnerablePackage = Shapes::StructureShape.new(name: 'VulnerablePackage')
444
446
  VulnerablePackageList = Shapes::ListShape.new(name: 'VulnerablePackageList')
445
447
  WildcardVersionNumber = Shapes::StringShape.new(name: 'WildcardVersionNumber')
448
+ WindowsConfiguration = Shapes::StructureShape.new(name: 'WindowsConfiguration')
449
+ WindowsConfigurationImageIndex = Shapes::IntegerShape.new(name: 'WindowsConfigurationImageIndex')
446
450
  Workflow = Shapes::StructureShape.new(name: 'Workflow')
447
451
  WorkflowBuildVersionArn = Shapes::StringShape.new(name: 'WorkflowBuildVersionArn')
448
452
  WorkflowConfiguration = Shapes::StructureShape.new(name: 'WorkflowConfiguration')
@@ -736,6 +740,7 @@ module Aws::Imagebuilder
736
740
  CreateImagePipelineRequest.add_member(:schedule, Shapes::ShapeRef.new(shape: Schedule, location_name: "schedule"))
737
741
  CreateImagePipelineRequest.add_member(:status, Shapes::ShapeRef.new(shape: PipelineStatus, location_name: "status"))
738
742
  CreateImagePipelineRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
743
+ CreateImagePipelineRequest.add_member(:image_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "imageTags"))
739
744
  CreateImagePipelineRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
740
745
  CreateImagePipelineRequest.add_member(:image_scanning_configuration, Shapes::ShapeRef.new(shape: ImageScanningConfiguration, location_name: "imageScanningConfiguration"))
741
746
  CreateImagePipelineRequest.add_member(:workflows, Shapes::ShapeRef.new(shape: WorkflowConfigurationList, location_name: "workflows"))
@@ -1230,6 +1235,7 @@ module Aws::Imagebuilder
1230
1235
  ImagePipeline.add_member(:date_next_run, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateNextRun"))
1231
1236
  ImagePipeline.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1232
1237
  ImagePipeline.add_member(:image_scanning_configuration, Shapes::ShapeRef.new(shape: ImageScanningConfiguration, location_name: "imageScanningConfiguration"))
1238
+ ImagePipeline.add_member(:image_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "imageTags"))
1233
1239
  ImagePipeline.add_member(:execution_role, Shapes::ShapeRef.new(shape: RoleNameOrArn, location_name: "executionRole"))
1234
1240
  ImagePipeline.add_member(:workflows, Shapes::ShapeRef.new(shape: WorkflowConfigurationList, location_name: "workflows"))
1235
1241
  ImagePipeline.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: PipelineLoggingConfiguration, location_name: "loggingConfiguration"))
@@ -1383,6 +1389,8 @@ module Aws::Imagebuilder
1383
1389
  ImportDiskImageRequest.add_member(:uri, Shapes::ShapeRef.new(shape: Uri, required: true, location_name: "uri"))
1384
1390
  ImportDiskImageRequest.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: ImageLoggingConfiguration, location_name: "loggingConfiguration"))
1385
1391
  ImportDiskImageRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1392
+ ImportDiskImageRequest.add_member(:register_image_options, Shapes::ShapeRef.new(shape: RegisterImageOptions, location_name: "registerImageOptions"))
1393
+ ImportDiskImageRequest.add_member(:windows_configuration, Shapes::ShapeRef.new(shape: WindowsConfiguration, location_name: "windowsConfiguration"))
1386
1394
  ImportDiskImageRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
1387
1395
  ImportDiskImageRequest.struct_class = Types::ImportDiskImageRequest
1388
1396
 
@@ -1492,7 +1500,7 @@ module Aws::Imagebuilder
1492
1500
 
1493
1501
  LaunchTemplateConfiguration.add_member(:launch_template_id, Shapes::ShapeRef.new(shape: LaunchTemplateId, required: true, location_name: "launchTemplateId"))
1494
1502
  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"))
1503
+ LaunchTemplateConfiguration.add_member(:set_default_version, Shapes::ShapeRef.new(shape: Boolean, location_name: "setDefaultVersion", metadata: {"box" => true}))
1496
1504
  LaunchTemplateConfiguration.struct_class = Types::LaunchTemplateConfiguration
1497
1505
 
1498
1506
  LaunchTemplateConfigurationList.member = Shapes::ShapeRef.new(shape: LaunchTemplateConfiguration)
@@ -1924,6 +1932,10 @@ module Aws::Imagebuilder
1924
1932
 
1925
1933
  RegionList.member = Shapes::ShapeRef.new(shape: NonEmptyString)
1926
1934
 
1935
+ RegisterImageOptions.add_member(:secure_boot_enabled, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "secureBootEnabled"))
1936
+ RegisterImageOptions.add_member(:uefi_data, Shapes::ShapeRef.new(shape: UefiData, location_name: "uefiData"))
1937
+ RegisterImageOptions.struct_class = Types::RegisterImageOptions
1938
+
1927
1939
  Remediation.add_member(:recommendation, Shapes::ShapeRef.new(shape: RemediationRecommendation, location_name: "recommendation"))
1928
1940
  Remediation.struct_class = Types::Remediation
1929
1941
 
@@ -2095,6 +2107,7 @@ module Aws::Imagebuilder
2095
2107
  UpdateImagePipelineRequest.add_member(:workflows, Shapes::ShapeRef.new(shape: WorkflowConfigurationList, location_name: "workflows"))
2096
2108
  UpdateImagePipelineRequest.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: PipelineLoggingConfiguration, location_name: "loggingConfiguration"))
2097
2109
  UpdateImagePipelineRequest.add_member(:execution_role, Shapes::ShapeRef.new(shape: RoleNameOrArn, location_name: "executionRole"))
2110
+ UpdateImagePipelineRequest.add_member(:image_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "imageTags"))
2098
2111
  UpdateImagePipelineRequest.struct_class = Types::UpdateImagePipelineRequest
2099
2112
 
2100
2113
  UpdateImagePipelineResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
@@ -2156,6 +2169,9 @@ module Aws::Imagebuilder
2156
2169
 
2157
2170
  VulnerablePackageList.member = Shapes::ShapeRef.new(shape: VulnerablePackage)
2158
2171
 
2172
+ WindowsConfiguration.add_member(:image_index, Shapes::ShapeRef.new(shape: WindowsConfigurationImageIndex, required: true, location_name: "imageIndex"))
2173
+ WindowsConfiguration.struct_class = Types::WindowsConfiguration
2174
+
2159
2175
  Workflow.add_member(:arn, Shapes::ShapeRef.new(shape: WorkflowBuildVersionArn, location_name: "arn"))
2160
2176
  Workflow.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "name"))
2161
2177
  Workflow.add_member(:version, Shapes::ShapeRef.new(shape: VersionNumber, location_name: "version"))
@@ -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,
@@ -4825,6 +4835,14 @@ module Aws::Imagebuilder
4825
4835
  # Tags that are attached to image resources created from the import.
4826
4836
  # @return [Hash<String,String>]
4827
4837
  #
4838
+ # @!attribute [rw] register_image_options
4839
+ # Configures Secure Boot and UEFI settings for the imported image.
4840
+ # @return [Types::RegisterImageOptions]
4841
+ #
4842
+ # @!attribute [rw] windows_configuration
4843
+ # Specifies Windows settings for ISO imports.
4844
+ # @return [Types::WindowsConfiguration]
4845
+ #
4828
4846
  # @!attribute [rw] client_token
4829
4847
  # Unique, case-sensitive identifier you provide to ensure idempotency
4830
4848
  # of the request. For more information, see [Ensuring idempotency][1]
@@ -4851,6 +4869,8 @@ module Aws::Imagebuilder
4851
4869
  :uri,
4852
4870
  :logging_configuration,
4853
4871
  :tags,
4872
+ :register_image_options,
4873
+ :windows_configuration,
4854
4874
  :client_token)
4855
4875
  SENSITIVE = []
4856
4876
  include Aws::Structure
@@ -7639,6 +7659,44 @@ module Aws::Imagebuilder
7639
7659
  include Aws::Structure
7640
7660
  end
7641
7661
 
7662
+ # Controls Secure Boot and UEFI data settings for the resulting image
7663
+ # during ISO imports. For more information, see [UEFI Secure Boot for
7664
+ # Amazon EC2 instances][1] in the <i> <i>Amazon EC2 User Guide</i> </i>.
7665
+ #
7666
+ #
7667
+ #
7668
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/uefi-secure-boot.html
7669
+ #
7670
+ # @!attribute [rw] secure_boot_enabled
7671
+ # Specifies whether Secure Boot is enabled for the output AMI. The
7672
+ # default value is `true`. To disable Secure Boot for custom unsigned
7673
+ # drivers, set this value to `false`.
7674
+ # @return [Boolean]
7675
+ #
7676
+ # @!attribute [rw] uefi_data
7677
+ # A Base64-encoded representation of the non-volatile UEFI variable
7678
+ # store. You can specify this parameter only when `secureBootEnabled`
7679
+ # is `true` or unspecified. You can inspect and modify the UEFI data
7680
+ # by using the [python-uefivars tool on GitHub][1].
7681
+ #
7682
+ # For more information, see [UEFI variables for Amazon EC2
7683
+ # instances][2].
7684
+ #
7685
+ #
7686
+ #
7687
+ # [1]: https://github.com/awslabs/python-uefivars
7688
+ # [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/uefi-variables.html
7689
+ # @return [String]
7690
+ #
7691
+ # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/RegisterImageOptions AWS API Documentation
7692
+ #
7693
+ class RegisterImageOptions < Struct.new(
7694
+ :secure_boot_enabled,
7695
+ :uefi_data)
7696
+ SENSITIVE = []
7697
+ include Aws::Structure
7698
+ end
7699
+
7642
7700
  # Information about how to remediate a finding.
7643
7701
  #
7644
7702
  # @!attribute [rw] recommendation
@@ -8498,6 +8556,10 @@ module Aws::Imagebuilder
8498
8556
  # that grants Image Builder access to perform workflow actions.
8499
8557
  # @return [String]
8500
8558
  #
8559
+ # @!attribute [rw] image_tags
8560
+ # The tags to be applied to the images produced by this pipeline.
8561
+ # @return [Hash<String,String>]
8562
+ #
8501
8563
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/UpdateImagePipelineRequest AWS API Documentation
8502
8564
  #
8503
8565
  class UpdateImagePipelineRequest < Struct.new(
@@ -8515,7 +8577,8 @@ module Aws::Imagebuilder
8515
8577
  :image_scanning_configuration,
8516
8578
  :workflows,
8517
8579
  :logging_configuration,
8518
- :execution_role)
8580
+ :execution_role,
8581
+ :image_tags)
8519
8582
  SENSITIVE = []
8520
8583
  include Aws::Structure
8521
8584
  end
@@ -8839,6 +8902,24 @@ module Aws::Imagebuilder
8839
8902
  include Aws::Structure
8840
8903
  end
8841
8904
 
8905
+ # Windows-specific configuration settings for an ISO import, including
8906
+ # the edition to install from a multi-edition Windows ISO file.
8907
+ #
8908
+ # @!attribute [rw] image_index
8909
+ # The 1-based index that specifies which Windows edition to install
8910
+ # from a multi-edition Windows ISO file. A Windows ISO can contain a
8911
+ # `.wim` file with multiple image indexes, each representing a
8912
+ # different edition.
8913
+ # @return [Integer]
8914
+ #
8915
+ # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/WindowsConfiguration AWS API Documentation
8916
+ #
8917
+ class WindowsConfiguration < Struct.new(
8918
+ :image_index)
8919
+ SENSITIVE = []
8920
+ include Aws::Structure
8921
+ end
8922
+
8842
8923
  # Defines a process that Image Builder uses to build and test images
8843
8924
  # during the image creation process.
8844
8925
  #
@@ -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.102.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?,
@@ -915,6 +916,13 @@ module Aws
915
916
  log_group_name: ::String?
916
917
  },
917
918
  ?tags: Hash[::String, ::String],
919
+ ?register_image_options: {
920
+ secure_boot_enabled: bool?,
921
+ uefi_data: ::String?
922
+ },
923
+ ?windows_configuration: {
924
+ image_index: ::Integer
925
+ },
918
926
  client_token: ::String
919
927
  ) -> _ImportDiskImageResponseSuccess
920
928
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportDiskImageResponseSuccess
@@ -1594,7 +1602,8 @@ module Aws
1594
1602
  image_log_group_name: ::String?,
1595
1603
  pipeline_log_group_name: ::String?
1596
1604
  },
1597
- ?execution_role: ::String
1605
+ ?execution_role: ::String,
1606
+ ?image_tags: Hash[::String, ::String]
1598
1607
  ) -> _UpdateImagePipelineResponseSuccess
1599
1608
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateImagePipelineResponseSuccess
1600
1609
 
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
@@ -1108,6 +1110,8 @@ module Aws::Imagebuilder
1108
1110
  attr_accessor uri: ::String
1109
1111
  attr_accessor logging_configuration: Types::ImageLoggingConfiguration
1110
1112
  attr_accessor tags: ::Hash[::String, ::String]
1113
+ attr_accessor register_image_options: Types::RegisterImageOptions
1114
+ attr_accessor windows_configuration: Types::WindowsConfiguration
1111
1115
  attr_accessor client_token: ::String
1112
1116
  SENSITIVE: []
1113
1117
  end
@@ -1804,6 +1808,12 @@ module Aws::Imagebuilder
1804
1808
  SENSITIVE: []
1805
1809
  end
1806
1810
 
1811
+ class RegisterImageOptions
1812
+ attr_accessor secure_boot_enabled: bool
1813
+ attr_accessor uefi_data: ::String
1814
+ SENSITIVE: []
1815
+ end
1816
+
1807
1817
  class Remediation
1808
1818
  attr_accessor recommendation: Types::RemediationRecommendation
1809
1819
  SENSITIVE: []
@@ -2028,6 +2038,7 @@ module Aws::Imagebuilder
2028
2038
  attr_accessor workflows: ::Array[Types::WorkflowConfiguration]
2029
2039
  attr_accessor logging_configuration: Types::PipelineLoggingConfiguration
2030
2040
  attr_accessor execution_role: ::String
2041
+ attr_accessor image_tags: ::Hash[::String, ::String]
2031
2042
  SENSITIVE: []
2032
2043
  end
2033
2044
 
@@ -2100,6 +2111,11 @@ module Aws::Imagebuilder
2100
2111
  SENSITIVE: []
2101
2112
  end
2102
2113
 
2114
+ class WindowsConfiguration
2115
+ attr_accessor image_index: ::Integer
2116
+ SENSITIVE: []
2117
+ end
2118
+
2103
2119
  class Workflow
2104
2120
  attr_accessor arn: ::String
2105
2121
  attr_accessor name: ::String
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.102.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services