aws-sdk-imagebuilder 1.101.0 → 1.103.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-imagebuilder/client.rb +15 -2
- data/lib/aws-sdk-imagebuilder/client_api.rb +16 -1
- data/lib/aws-sdk-imagebuilder/types.rb +66 -0
- data/lib/aws-sdk-imagebuilder.rb +1 -1
- data/sig/client.rbs +7 -0
- data/sig/types.rbs +13 -0
- 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: 1a983423f4ad333e3bc6672895a4945446cc60fc81c2244c3205008116ff8a2d
|
|
4
|
+
data.tar.gz: 519496ac9f30b6c0f214a99ef346c9a1f5b59f99f5108698d4dc72051e13653d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9e2374434948da431163b0f20481e74bac305b764e222bc0ba9292cc5daa53d86da7b588f46f58b511b895bc9bdc7ec25c712acc14dae17d99d7b42d23e9b809
|
|
7
|
+
data.tar.gz: 9f34c8fd2e94cc8481461c0be0f6678a03fc96162f2b12c48417424486d634db740f1a198f55518da05607516cd78e39c10c10ea8632656af30af5b7526a99e0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.103.0 (2026-05-06)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - The ImportDiskImage API now enforces a maximum character limit of 128 characters on the image name field.
|
|
8
|
+
|
|
9
|
+
1.102.0 (2026-04-17)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* 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.
|
|
13
|
+
|
|
4
14
|
1.101.0 (2026-04-10)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.103.0
|
|
@@ -3406,6 +3406,12 @@ module Aws::Imagebuilder
|
|
|
3406
3406
|
# @option params [Hash<String,String>] :tags
|
|
3407
3407
|
# Tags that are attached to image resources created from the import.
|
|
3408
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
|
+
#
|
|
3409
3415
|
# @option params [required, String] :client_token
|
|
3410
3416
|
# Unique, case-sensitive identifier you provide to ensure idempotency of
|
|
3411
3417
|
# the request. For more information, see [Ensuring idempotency][1] in
|
|
@@ -3426,7 +3432,7 @@ module Aws::Imagebuilder
|
|
|
3426
3432
|
# @example Request syntax with placeholder values
|
|
3427
3433
|
#
|
|
3428
3434
|
# resp = client.import_disk_image({
|
|
3429
|
-
# name: "
|
|
3435
|
+
# name: "ResourceName", # required
|
|
3430
3436
|
# semantic_version: "VersionNumber", # required
|
|
3431
3437
|
# description: "NonEmptyString",
|
|
3432
3438
|
# platform: "NonEmptyString", # required
|
|
@@ -3440,6 +3446,13 @@ module Aws::Imagebuilder
|
|
|
3440
3446
|
# tags: {
|
|
3441
3447
|
# "TagKey" => "TagValue",
|
|
3442
3448
|
# },
|
|
3449
|
+
# register_image_options: {
|
|
3450
|
+
# secure_boot_enabled: false,
|
|
3451
|
+
# uefi_data: "UefiData",
|
|
3452
|
+
# },
|
|
3453
|
+
# windows_configuration: {
|
|
3454
|
+
# image_index: 1, # required
|
|
3455
|
+
# },
|
|
3443
3456
|
# client_token: "ClientToken", # required
|
|
3444
3457
|
# })
|
|
3445
3458
|
#
|
|
@@ -6112,7 +6125,7 @@ module Aws::Imagebuilder
|
|
|
6112
6125
|
tracer: tracer
|
|
6113
6126
|
)
|
|
6114
6127
|
context[:gem_name] = 'aws-sdk-imagebuilder'
|
|
6115
|
-
context[:gem_version] = '1.
|
|
6128
|
+
context[:gem_version] = '1.103.0'
|
|
6116
6129
|
Seahorse::Client::Request.new(handlers, context)
|
|
6117
6130
|
end
|
|
6118
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')
|
|
@@ -1375,7 +1379,7 @@ module Aws::Imagebuilder
|
|
|
1375
1379
|
ImportComponentResponse.add_member(:component_build_version_arn, Shapes::ShapeRef.new(shape: ComponentBuildVersionArn, location_name: "componentBuildVersionArn"))
|
|
1376
1380
|
ImportComponentResponse.struct_class = Types::ImportComponentResponse
|
|
1377
1381
|
|
|
1378
|
-
ImportDiskImageRequest.add_member(:name, Shapes::ShapeRef.new(shape:
|
|
1382
|
+
ImportDiskImageRequest.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "name"))
|
|
1379
1383
|
ImportDiskImageRequest.add_member(:semantic_version, Shapes::ShapeRef.new(shape: VersionNumber, required: true, location_name: "semanticVersion"))
|
|
1380
1384
|
ImportDiskImageRequest.add_member(:description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "description"))
|
|
1381
1385
|
ImportDiskImageRequest.add_member(:platform, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "platform"))
|
|
@@ -1385,6 +1389,8 @@ module Aws::Imagebuilder
|
|
|
1385
1389
|
ImportDiskImageRequest.add_member(:uri, Shapes::ShapeRef.new(shape: Uri, required: true, location_name: "uri"))
|
|
1386
1390
|
ImportDiskImageRequest.add_member(:logging_configuration, Shapes::ShapeRef.new(shape: ImageLoggingConfiguration, location_name: "loggingConfiguration"))
|
|
1387
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"))
|
|
1388
1394
|
ImportDiskImageRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
1389
1395
|
ImportDiskImageRequest.struct_class = Types::ImportDiskImageRequest
|
|
1390
1396
|
|
|
@@ -1926,6 +1932,10 @@ module Aws::Imagebuilder
|
|
|
1926
1932
|
|
|
1927
1933
|
RegionList.member = Shapes::ShapeRef.new(shape: NonEmptyString)
|
|
1928
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
|
+
|
|
1929
1939
|
Remediation.add_member(:recommendation, Shapes::ShapeRef.new(shape: RemediationRecommendation, location_name: "recommendation"))
|
|
1930
1940
|
Remediation.struct_class = Types::Remediation
|
|
1931
1941
|
|
|
@@ -2159,6 +2169,9 @@ module Aws::Imagebuilder
|
|
|
2159
2169
|
|
|
2160
2170
|
VulnerablePackageList.member = Shapes::ShapeRef.new(shape: VulnerablePackage)
|
|
2161
2171
|
|
|
2172
|
+
WindowsConfiguration.add_member(:image_index, Shapes::ShapeRef.new(shape: WindowsConfigurationImageIndex, required: true, location_name: "imageIndex"))
|
|
2173
|
+
WindowsConfiguration.struct_class = Types::WindowsConfiguration
|
|
2174
|
+
|
|
2162
2175
|
Workflow.add_member(:arn, Shapes::ShapeRef.new(shape: WorkflowBuildVersionArn, location_name: "arn"))
|
|
2163
2176
|
Workflow.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "name"))
|
|
2164
2177
|
Workflow.add_member(:version, Shapes::ShapeRef.new(shape: VersionNumber, location_name: "version"))
|
|
@@ -2911,6 +2924,8 @@ module Aws::Imagebuilder
|
|
|
2911
2924
|
o.errors << Shapes::ShapeRef.new(shape: ServiceException)
|
|
2912
2925
|
o.errors << Shapes::ShapeRef.new(shape: ClientException)
|
|
2913
2926
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
|
2927
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
2928
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
|
2914
2929
|
end)
|
|
2915
2930
|
|
|
2916
2931
|
api.add_operation(:import_vm_image, Seahorse::Model::Operation.new.tap do |o|
|
|
@@ -4835,6 +4835,14 @@ module Aws::Imagebuilder
|
|
|
4835
4835
|
# Tags that are attached to image resources created from the import.
|
|
4836
4836
|
# @return [Hash<String,String>]
|
|
4837
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
|
+
#
|
|
4838
4846
|
# @!attribute [rw] client_token
|
|
4839
4847
|
# Unique, case-sensitive identifier you provide to ensure idempotency
|
|
4840
4848
|
# of the request. For more information, see [Ensuring idempotency][1]
|
|
@@ -4861,6 +4869,8 @@ module Aws::Imagebuilder
|
|
|
4861
4869
|
:uri,
|
|
4862
4870
|
:logging_configuration,
|
|
4863
4871
|
:tags,
|
|
4872
|
+
:register_image_options,
|
|
4873
|
+
:windows_configuration,
|
|
4864
4874
|
:client_token)
|
|
4865
4875
|
SENSITIVE = []
|
|
4866
4876
|
include Aws::Structure
|
|
@@ -7649,6 +7659,44 @@ module Aws::Imagebuilder
|
|
|
7649
7659
|
include Aws::Structure
|
|
7650
7660
|
end
|
|
7651
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
|
+
|
|
7652
7700
|
# Information about how to remediate a finding.
|
|
7653
7701
|
#
|
|
7654
7702
|
# @!attribute [rw] recommendation
|
|
@@ -8854,6 +8902,24 @@ module Aws::Imagebuilder
|
|
|
8854
8902
|
include Aws::Structure
|
|
8855
8903
|
end
|
|
8856
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
|
+
|
|
8857
8923
|
# Defines a process that Image Builder uses to build and test images
|
|
8858
8924
|
# during the image creation process.
|
|
8859
8925
|
#
|
data/lib/aws-sdk-imagebuilder.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -916,6 +916,13 @@ module Aws
|
|
|
916
916
|
log_group_name: ::String?
|
|
917
917
|
},
|
|
918
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
|
+
},
|
|
919
926
|
client_token: ::String
|
|
920
927
|
) -> _ImportDiskImageResponseSuccess
|
|
921
928
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportDiskImageResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -1110,6 +1110,8 @@ module Aws::Imagebuilder
|
|
|
1110
1110
|
attr_accessor uri: ::String
|
|
1111
1111
|
attr_accessor logging_configuration: Types::ImageLoggingConfiguration
|
|
1112
1112
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
1113
|
+
attr_accessor register_image_options: Types::RegisterImageOptions
|
|
1114
|
+
attr_accessor windows_configuration: Types::WindowsConfiguration
|
|
1113
1115
|
attr_accessor client_token: ::String
|
|
1114
1116
|
SENSITIVE: []
|
|
1115
1117
|
end
|
|
@@ -1806,6 +1808,12 @@ module Aws::Imagebuilder
|
|
|
1806
1808
|
SENSITIVE: []
|
|
1807
1809
|
end
|
|
1808
1810
|
|
|
1811
|
+
class RegisterImageOptions
|
|
1812
|
+
attr_accessor secure_boot_enabled: bool
|
|
1813
|
+
attr_accessor uefi_data: ::String
|
|
1814
|
+
SENSITIVE: []
|
|
1815
|
+
end
|
|
1816
|
+
|
|
1809
1817
|
class Remediation
|
|
1810
1818
|
attr_accessor recommendation: Types::RemediationRecommendation
|
|
1811
1819
|
SENSITIVE: []
|
|
@@ -2103,6 +2111,11 @@ module Aws::Imagebuilder
|
|
|
2103
2111
|
SENSITIVE: []
|
|
2104
2112
|
end
|
|
2105
2113
|
|
|
2114
|
+
class WindowsConfiguration
|
|
2115
|
+
attr_accessor image_index: ::Integer
|
|
2116
|
+
SENSITIVE: []
|
|
2117
|
+
end
|
|
2118
|
+
|
|
2106
2119
|
class Workflow
|
|
2107
2120
|
attr_accessor arn: ::String
|
|
2108
2121
|
attr_accessor name: ::String
|