aws-sdk-imagebuilder 1.30.0 → 1.31.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 +17 -29
- data/lib/aws-sdk-imagebuilder/types.rb +39 -51
- data/lib/aws-sdk-imagebuilder.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c93981ea0e4ed2a49f6012eafc206f762786e39c23da6f2f7513bc19d6e2bb84
|
|
4
|
+
data.tar.gz: 9aa24c081e02c3b77dd62b3ec1341497e355f55d98674eed1ce5b5a6b3bb0bf9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 767c5aa4edb5bbe5b26015c0ce62f831379846571d8e1eafcdab7db6362b3d3bf52d51d6b46cfa9a63f2ce594c01484a778c2ad79e743a50791fd34ecb4384e5
|
|
7
|
+
data.tar.gz: 2e820d31b9d7e87e1cad3ff24d1f39eb25a944f87fd98cfa74bc8f0d6a98e7e6530cc8f015c5c4265924e95832f35e529436dfdbd5bec8ba963118b4f318d4b5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.31.0 (2021-09-28)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Fix description for AmiDistributionConfiguration Name property, which actually refers to the output AMI name. Also updated for consistent terminology to use "base" image, and another update to fix description text.
|
|
8
|
+
|
|
4
9
|
1.30.0 (2021-09-22)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.31.0
|
|
@@ -409,7 +409,7 @@ module Aws::Imagebuilder
|
|
|
409
409
|
# @option params [Array<String>] :supported_os_versions
|
|
410
410
|
# The operating system (OS) version supported by the component. If the
|
|
411
411
|
# OS information is available, a prefix match is performed against the
|
|
412
|
-
#
|
|
412
|
+
# base image OS version during image recipe creation.
|
|
413
413
|
#
|
|
414
414
|
# @option params [String] :data
|
|
415
415
|
# The data of the component. Used to specify the data inline. Either
|
|
@@ -521,14 +521,14 @@ module Aws::Imagebuilder
|
|
|
521
521
|
# container image.
|
|
522
522
|
#
|
|
523
523
|
# @option params [String] :platform_override
|
|
524
|
-
# Specifies the operating system platform when you use a custom
|
|
524
|
+
# Specifies the operating system platform when you use a custom base
|
|
525
525
|
# image.
|
|
526
526
|
#
|
|
527
527
|
# @option params [String] :image_os_version_override
|
|
528
|
-
# Specifies the operating system version for the
|
|
528
|
+
# Specifies the operating system version for the base image.
|
|
529
529
|
#
|
|
530
530
|
# @option params [required, String] :parent_image
|
|
531
|
-
# The
|
|
531
|
+
# The base image for the container recipe.
|
|
532
532
|
#
|
|
533
533
|
# @option params [Hash<String,String>] :tags
|
|
534
534
|
# Tags that are attached to the container recipe.
|
|
@@ -920,9 +920,9 @@ module Aws::Imagebuilder
|
|
|
920
920
|
# The components of the image recipe.
|
|
921
921
|
#
|
|
922
922
|
# @option params [required, String] :parent_image
|
|
923
|
-
# The
|
|
924
|
-
#
|
|
925
|
-
#
|
|
923
|
+
# The base image of the image recipe. The value of the string can be the
|
|
924
|
+
# ARN of the base image or an AMI ID. The format for the ARN follows
|
|
925
|
+
# this example:
|
|
926
926
|
# `arn:aws:imagebuilder:us-west-2:aws:image/windows-server-2016-english-full-base-x86/x.x.x`.
|
|
927
927
|
# You can provide the specific version that you want to use, or you can
|
|
928
928
|
# use a wildcard in all of the fields. If you enter an AMI ID for the
|
|
@@ -1028,21 +1028,9 @@ module Aws::Imagebuilder
|
|
|
1028
1028
|
# The description of the infrastructure configuration.
|
|
1029
1029
|
#
|
|
1030
1030
|
# @option params [Array<String>] :instance_types
|
|
1031
|
-
# The instance
|
|
1032
|
-
#
|
|
1033
|
-
#
|
|
1034
|
-
# following links:
|
|
1035
|
-
#
|
|
1036
|
-
# * [Configure the instance metadata options][1] in the <i> <i>Amazon
|
|
1037
|
-
# EC2 User Guide</i> </i> for Linux instances.
|
|
1038
|
-
#
|
|
1039
|
-
# * [Configure the instance metadata options][2] in the <i> <i>Amazon
|
|
1040
|
-
# EC2 Windows Guide</i> </i> for Windows instances.
|
|
1041
|
-
#
|
|
1042
|
-
#
|
|
1043
|
-
#
|
|
1044
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/configuring-instance-metadata-options.html
|
|
1045
|
-
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/configuring-instance-metadata-options.html
|
|
1031
|
+
# The instance types of the infrastructure configuration. You can
|
|
1032
|
+
# specify one or more instance types to use for this build. The service
|
|
1033
|
+
# will pick one of these instance types based on availability.
|
|
1046
1034
|
#
|
|
1047
1035
|
# @option params [required, String] :instance_profile_name
|
|
1048
1036
|
# The instance profile to associate with the instance used to customize
|
|
@@ -2036,8 +2024,8 @@ module Aws::Imagebuilder
|
|
|
2036
2024
|
#
|
|
2037
2025
|
# **Filtering:** With semantic versioning, you have the flexibility to
|
|
2038
2026
|
# use wildcards (x) to specify the most recent versions or nodes when
|
|
2039
|
-
# selecting the
|
|
2040
|
-
#
|
|
2027
|
+
# selecting the base image or components for your recipe. When you use a
|
|
2028
|
+
# wildcard in any node, all nodes to the right of the first wildcard
|
|
2041
2029
|
# must also be wildcards.
|
|
2042
2030
|
#
|
|
2043
2031
|
# </note>
|
|
@@ -2132,8 +2120,8 @@ module Aws::Imagebuilder
|
|
|
2132
2120
|
#
|
|
2133
2121
|
# **Filtering:** With semantic versioning, you have the flexibility to
|
|
2134
2122
|
# use wildcards (x) to specify the most recent versions or nodes when
|
|
2135
|
-
# selecting the
|
|
2136
|
-
#
|
|
2123
|
+
# selecting the base image or components for your recipe. When you use a
|
|
2124
|
+
# wildcard in any node, all nodes to the right of the first wildcard
|
|
2137
2125
|
# must also be wildcards.
|
|
2138
2126
|
#
|
|
2139
2127
|
# </note>
|
|
@@ -2204,8 +2192,8 @@ module Aws::Imagebuilder
|
|
|
2204
2192
|
#
|
|
2205
2193
|
# **Filtering:** With semantic versioning, you have the flexibility to
|
|
2206
2194
|
# use wildcards (x) to specify the most recent versions or nodes when
|
|
2207
|
-
# selecting the
|
|
2208
|
-
#
|
|
2195
|
+
# selecting the base image or components for your recipe. When you use a
|
|
2196
|
+
# wildcard in any node, all nodes to the right of the first wildcard
|
|
2209
2197
|
# must also be wildcards.
|
|
2210
2198
|
#
|
|
2211
2199
|
# </note>
|
|
@@ -3540,7 +3528,7 @@ module Aws::Imagebuilder
|
|
|
3540
3528
|
params: params,
|
|
3541
3529
|
config: config)
|
|
3542
3530
|
context[:gem_name] = 'aws-sdk-imagebuilder'
|
|
3543
|
-
context[:gem_version] = '1.
|
|
3531
|
+
context[:gem_version] = '1.31.0'
|
|
3544
3532
|
Seahorse::Client::Request.new(handlers, context)
|
|
3545
3533
|
end
|
|
3546
3534
|
|
|
@@ -40,7 +40,7 @@ module Aws::Imagebuilder
|
|
|
40
40
|
# Builder might have added to ensure that Systems Manager is installed
|
|
41
41
|
# on your Linux build instance. If you override the user data, make
|
|
42
42
|
# sure that you add commands to install Systems Manager, if it is not
|
|
43
|
-
# pre-installed on your
|
|
43
|
+
# pre-installed on your base image.
|
|
44
44
|
#
|
|
45
45
|
# </note>
|
|
46
46
|
# @return [String]
|
|
@@ -114,7 +114,7 @@ module Aws::Imagebuilder
|
|
|
114
114
|
# }
|
|
115
115
|
#
|
|
116
116
|
# @!attribute [rw] name
|
|
117
|
-
# The name of the
|
|
117
|
+
# The name of the output AMI.
|
|
118
118
|
# @return [String]
|
|
119
119
|
#
|
|
120
120
|
# @!attribute [rw] description
|
|
@@ -268,7 +268,7 @@ module Aws::Imagebuilder
|
|
|
268
268
|
# @!attribute [rw] supported_os_versions
|
|
269
269
|
# The operating system (OS) version supported by the component. If the
|
|
270
270
|
# OS information is available, a prefix match is performed against the
|
|
271
|
-
#
|
|
271
|
+
# base image OS version during image recipe creation.
|
|
272
272
|
# @return [Array<String>]
|
|
273
273
|
#
|
|
274
274
|
# @!attribute [rw] state
|
|
@@ -460,7 +460,7 @@ module Aws::Imagebuilder
|
|
|
460
460
|
# @!attribute [rw] supported_os_versions
|
|
461
461
|
# The operating system (OS) version supported by the component. If the
|
|
462
462
|
# OS information is available, a prefix match is performed against the
|
|
463
|
-
#
|
|
463
|
+
# base image OS version during image recipe creation.
|
|
464
464
|
# @return [Array<String>]
|
|
465
465
|
#
|
|
466
466
|
# @!attribute [rw] state
|
|
@@ -556,9 +556,9 @@ module Aws::Imagebuilder
|
|
|
556
556
|
#
|
|
557
557
|
# **Filtering:** With semantic versioning, you have the flexibility to
|
|
558
558
|
# use wildcards (x) to specify the most recent versions or nodes when
|
|
559
|
-
# selecting the
|
|
560
|
-
#
|
|
561
|
-
#
|
|
559
|
+
# selecting the base image or components for your recipe. When you use
|
|
560
|
+
# a wildcard in any node, all nodes to the right of the first wildcard
|
|
561
|
+
# must also be wildcards.
|
|
562
562
|
#
|
|
563
563
|
# </note>
|
|
564
564
|
# @return [String]
|
|
@@ -574,7 +574,7 @@ module Aws::Imagebuilder
|
|
|
574
574
|
# @!attribute [rw] supported_os_versions
|
|
575
575
|
# he operating system (OS) version supported by the component. If the
|
|
576
576
|
# OS information is available, a prefix match is performed against the
|
|
577
|
-
#
|
|
577
|
+
# base image OS version during image recipe creation.
|
|
578
578
|
# @return [Array<String>]
|
|
579
579
|
#
|
|
580
580
|
# @!attribute [rw] type
|
|
@@ -724,9 +724,9 @@ module Aws::Imagebuilder
|
|
|
724
724
|
#
|
|
725
725
|
# **Filtering:** With semantic versioning, you have the flexibility to
|
|
726
726
|
# use wildcards (x) to specify the most recent versions or nodes when
|
|
727
|
-
# selecting the
|
|
728
|
-
#
|
|
729
|
-
#
|
|
727
|
+
# selecting the base image or components for your recipe. When you use
|
|
728
|
+
# a wildcard in any node, all nodes to the right of the first wildcard
|
|
729
|
+
# must also be wildcards.
|
|
730
730
|
#
|
|
731
731
|
# </note>
|
|
732
732
|
# @return [String]
|
|
@@ -759,7 +759,7 @@ module Aws::Imagebuilder
|
|
|
759
759
|
# @return [Boolean]
|
|
760
760
|
#
|
|
761
761
|
# @!attribute [rw] parent_image
|
|
762
|
-
# The
|
|
762
|
+
# The base image for the container recipe.
|
|
763
763
|
# @return [String]
|
|
764
764
|
#
|
|
765
765
|
# @!attribute [rw] date_created
|
|
@@ -825,7 +825,7 @@ module Aws::Imagebuilder
|
|
|
825
825
|
# @return [String]
|
|
826
826
|
#
|
|
827
827
|
# @!attribute [rw] parent_image
|
|
828
|
-
# The
|
|
828
|
+
# The base image for the container recipe.
|
|
829
829
|
# @return [String]
|
|
830
830
|
#
|
|
831
831
|
# @!attribute [rw] date_created
|
|
@@ -913,7 +913,7 @@ module Aws::Imagebuilder
|
|
|
913
913
|
# @!attribute [rw] supported_os_versions
|
|
914
914
|
# The operating system (OS) version supported by the component. If the
|
|
915
915
|
# OS information is available, a prefix match is performed against the
|
|
916
|
-
#
|
|
916
|
+
# base image OS version during image recipe creation.
|
|
917
917
|
# @return [Array<String>]
|
|
918
918
|
#
|
|
919
919
|
# @!attribute [rw] data
|
|
@@ -1096,16 +1096,16 @@ module Aws::Imagebuilder
|
|
|
1096
1096
|
# @return [String]
|
|
1097
1097
|
#
|
|
1098
1098
|
# @!attribute [rw] platform_override
|
|
1099
|
-
# Specifies the operating system platform when you use a custom
|
|
1099
|
+
# Specifies the operating system platform when you use a custom base
|
|
1100
1100
|
# image.
|
|
1101
1101
|
# @return [String]
|
|
1102
1102
|
#
|
|
1103
1103
|
# @!attribute [rw] image_os_version_override
|
|
1104
|
-
# Specifies the operating system version for the
|
|
1104
|
+
# Specifies the operating system version for the base image.
|
|
1105
1105
|
# @return [String]
|
|
1106
1106
|
#
|
|
1107
1107
|
# @!attribute [rw] parent_image
|
|
1108
|
-
# The
|
|
1108
|
+
# The base image for the container recipe.
|
|
1109
1109
|
# @return [String]
|
|
1110
1110
|
#
|
|
1111
1111
|
# @!attribute [rw] tags
|
|
@@ -1492,8 +1492,8 @@ module Aws::Imagebuilder
|
|
|
1492
1492
|
# @return [Array<Types::ComponentConfiguration>]
|
|
1493
1493
|
#
|
|
1494
1494
|
# @!attribute [rw] parent_image
|
|
1495
|
-
# The
|
|
1496
|
-
# the ARN of the
|
|
1495
|
+
# The base image of the image recipe. The value of the string can be
|
|
1496
|
+
# the ARN of the base image or an AMI ID. The format for the ARN
|
|
1497
1497
|
# follows this example:
|
|
1498
1498
|
# `arn:aws:imagebuilder:us-west-2:aws:image/windows-server-2016-english-full-base-x86/x.x.x`.
|
|
1499
1499
|
# You can provide the specific version that you want to use, or you
|
|
@@ -1707,21 +1707,9 @@ module Aws::Imagebuilder
|
|
|
1707
1707
|
# @return [String]
|
|
1708
1708
|
#
|
|
1709
1709
|
# @!attribute [rw] instance_types
|
|
1710
|
-
# The instance
|
|
1711
|
-
#
|
|
1712
|
-
#
|
|
1713
|
-
# following links:
|
|
1714
|
-
#
|
|
1715
|
-
# * [Configure the instance metadata options][1] in the <i> <i>Amazon
|
|
1716
|
-
# EC2 User Guide</i> </i> for Linux instances.
|
|
1717
|
-
#
|
|
1718
|
-
# * [Configure the instance metadata options][2] in the <i> <i>Amazon
|
|
1719
|
-
# EC2 Windows Guide</i> </i> for Windows instances.
|
|
1720
|
-
#
|
|
1721
|
-
#
|
|
1722
|
-
#
|
|
1723
|
-
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/configuring-instance-metadata-options.html
|
|
1724
|
-
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/configuring-instance-metadata-options.html
|
|
1710
|
+
# The instance types of the infrastructure configuration. You can
|
|
1711
|
+
# specify one or more instance types to use for this build. The
|
|
1712
|
+
# service will pick one of these instance types based on availability.
|
|
1725
1713
|
# @return [Array<String>]
|
|
1726
1714
|
#
|
|
1727
1715
|
# @!attribute [rw] instance_profile_name
|
|
@@ -2836,9 +2824,9 @@ module Aws::Imagebuilder
|
|
|
2836
2824
|
#
|
|
2837
2825
|
# **Filtering:** With semantic versioning, you have the flexibility to
|
|
2838
2826
|
# use wildcards (x) to specify the most recent versions or nodes when
|
|
2839
|
-
# selecting the
|
|
2840
|
-
#
|
|
2841
|
-
#
|
|
2827
|
+
# selecting the base image or components for your recipe. When you use
|
|
2828
|
+
# a wildcard in any node, all nodes to the right of the first wildcard
|
|
2829
|
+
# must also be wildcards.
|
|
2842
2830
|
#
|
|
2843
2831
|
# </note>
|
|
2844
2832
|
# @return [String]
|
|
@@ -3087,7 +3075,7 @@ module Aws::Imagebuilder
|
|
|
3087
3075
|
# @return [Array<Types::ComponentConfiguration>]
|
|
3088
3076
|
#
|
|
3089
3077
|
# @!attribute [rw] parent_image
|
|
3090
|
-
# The
|
|
3078
|
+
# The base image of the image recipe.
|
|
3091
3079
|
# @return [String]
|
|
3092
3080
|
#
|
|
3093
3081
|
# @!attribute [rw] block_device_mappings
|
|
@@ -3155,7 +3143,7 @@ module Aws::Imagebuilder
|
|
|
3155
3143
|
# @return [String]
|
|
3156
3144
|
#
|
|
3157
3145
|
# @!attribute [rw] parent_image
|
|
3158
|
-
# The
|
|
3146
|
+
# The base image of the image recipe.
|
|
3159
3147
|
# @return [String]
|
|
3160
3148
|
#
|
|
3161
3149
|
# @!attribute [rw] date_created
|
|
@@ -3342,9 +3330,9 @@ module Aws::Imagebuilder
|
|
|
3342
3330
|
#
|
|
3343
3331
|
# **Filtering:** With semantic versioning, you have the flexibility to
|
|
3344
3332
|
# use wildcards (x) to specify the most recent versions or nodes when
|
|
3345
|
-
# selecting the
|
|
3346
|
-
#
|
|
3347
|
-
#
|
|
3333
|
+
# selecting the base image or components for your recipe. When you use
|
|
3334
|
+
# a wildcard in any node, all nodes to the right of the first wildcard
|
|
3335
|
+
# must also be wildcards.
|
|
3348
3336
|
#
|
|
3349
3337
|
# </note>
|
|
3350
3338
|
# @return [String]
|
|
@@ -3418,9 +3406,9 @@ module Aws::Imagebuilder
|
|
|
3418
3406
|
#
|
|
3419
3407
|
# **Filtering:** With semantic versioning, you have the flexibility to
|
|
3420
3408
|
# use wildcards (x) to specify the most recent versions or nodes when
|
|
3421
|
-
# selecting the
|
|
3422
|
-
#
|
|
3423
|
-
#
|
|
3409
|
+
# selecting the base image or components for your recipe. When you use
|
|
3410
|
+
# a wildcard in any node, all nodes to the right of the first wildcard
|
|
3411
|
+
# must also be wildcards.
|
|
3424
3412
|
#
|
|
3425
3413
|
# </note>
|
|
3426
3414
|
# @return [String]
|
|
@@ -3700,7 +3688,7 @@ module Aws::Imagebuilder
|
|
|
3700
3688
|
# @return [String]
|
|
3701
3689
|
#
|
|
3702
3690
|
# @!attribute [rw] no_device
|
|
3703
|
-
# Use to remove a mapping from the
|
|
3691
|
+
# Use to remove a mapping from the base image.
|
|
3704
3692
|
# @return [String]
|
|
3705
3693
|
#
|
|
3706
3694
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/InstanceBlockDeviceMapping AWS API Documentation
|
|
@@ -3714,7 +3702,7 @@ module Aws::Imagebuilder
|
|
|
3714
3702
|
include Aws::Structure
|
|
3715
3703
|
end
|
|
3716
3704
|
|
|
3717
|
-
# Defines a custom
|
|
3705
|
+
# Defines a custom base AMI and block device mapping configurations of
|
|
3718
3706
|
# an instance used for building and testing container images.
|
|
3719
3707
|
#
|
|
3720
3708
|
# @note When making an API call, you may pass InstanceConfiguration
|
|
@@ -4703,9 +4691,9 @@ module Aws::Imagebuilder
|
|
|
4703
4691
|
#
|
|
4704
4692
|
# **Filtering:** With semantic versioning, you have the flexibility to
|
|
4705
4693
|
# use wildcards (x) to specify the most recent versions or nodes when
|
|
4706
|
-
# selecting the
|
|
4707
|
-
#
|
|
4708
|
-
#
|
|
4694
|
+
# selecting the base image or components for your recipe. When you use
|
|
4695
|
+
# a wildcard in any node, all nodes to the right of the first wildcard
|
|
4696
|
+
# must also be wildcards.
|
|
4709
4697
|
#
|
|
4710
4698
|
# </note>
|
|
4711
4699
|
# @return [Array<Types::ImageVersion>]
|
|
@@ -5161,7 +5149,7 @@ module Aws::Imagebuilder
|
|
|
5161
5149
|
# The condition configures when the pipeline should trigger a new
|
|
5162
5150
|
# image build. When the `pipelineExecutionStartCondition` is set to
|
|
5163
5151
|
# `EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE`, and you use
|
|
5164
|
-
# semantic version filters on the
|
|
5152
|
+
# semantic version filters on the base image or components in your
|
|
5165
5153
|
# image recipe, EC2 Image Builder will build a new image only when
|
|
5166
5154
|
# there are new versions of the image or components in your recipe
|
|
5167
5155
|
# that match the semantic version filter. When it is set to
|
data/lib/aws-sdk-imagebuilder.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-imagebuilder
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.31.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-09-
|
|
11
|
+
date: 2021-09-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|