aws-sdk-imagebuilder 1.26.0 → 1.30.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-imagebuilder/client.rb +173 -50
- data/lib/aws-sdk-imagebuilder/client_api.rb +20 -0
- data/lib/aws-sdk-imagebuilder/types.rb +286 -98
- data/lib/aws-sdk-imagebuilder.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 865fc09b128de33560a102f94667f6d67c1fcb273f3b197d18d949007223e3f1
|
4
|
+
data.tar.gz: 88db384f35dc0eee846d2c5351e843fcbc8154e36a0ce45cec11bad0d7e087d3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c12a35adcc3d1f4f83ff9bc8bd7083246f9c4d56e72701acce09acbe7144797f1c8083ea6641ccf0859b9a9650342c6638e72e91e52c42b060bdb71a0341a004
|
7
|
+
data.tar.gz: bb488c1d49d580ddc878c0ea7e07aaf405a400cdf16d64d41a4338e49bcc55952a6a906baf17ff9521c4057d94c1f8ab364541e785dcdbc37fa6c7b8dde4b3f5
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,26 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.30.0 (2021-09-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This feature adds support for specifying GP3 volume throughput and configuring instance metadata options for instances launched by EC2 Image Builder.
|
8
|
+
|
9
|
+
1.29.0 (2021-09-01)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.28.0 (2021-08-04)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Updated list actions to include a list of valid filters that can be used in the request.
|
18
|
+
|
19
|
+
1.27.0 (2021-07-30)
|
20
|
+
------------------
|
21
|
+
|
22
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
23
|
+
|
4
24
|
1.26.0 (2021-07-28)
|
5
25
|
------------------
|
6
26
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.30.0
|
@@ -385,7 +385,7 @@ module Aws::Imagebuilder
|
|
385
385
|
# **Assignment:** For the first three nodes you can assign any positive
|
386
386
|
# integer value, including zero, with an upper limit of 2^30-1, or
|
387
387
|
# 1073741823 for each node. Image Builder automatically assigns the
|
388
|
-
# build number
|
388
|
+
# build number to the fourth node.
|
389
389
|
#
|
390
390
|
# **Patterns:** You can use any numeric pattern that adheres to the
|
391
391
|
# assignment requirements for the nodes that you can assign. For
|
@@ -495,7 +495,7 @@ module Aws::Imagebuilder
|
|
495
495
|
# **Assignment:** For the first three nodes you can assign any positive
|
496
496
|
# integer value, including zero, with an upper limit of 2^30-1, or
|
497
497
|
# 1073741823 for each node. Image Builder automatically assigns the
|
498
|
-
# build number
|
498
|
+
# build number to the fourth node.
|
499
499
|
#
|
500
500
|
# **Patterns:** You can use any numeric pattern that adheres to the
|
501
501
|
# assignment requirements for the nodes that you can assign. For
|
@@ -585,6 +585,7 @@ module Aws::Imagebuilder
|
|
585
585
|
# snapshot_id: "NonEmptyString",
|
586
586
|
# volume_size: 1,
|
587
587
|
# volume_type: "standard", # accepts standard, io1, io2, gp2, gp3, sc1, st1
|
588
|
+
# throughput: 1,
|
588
589
|
# },
|
589
590
|
# virtual_name: "NonEmptyString",
|
590
591
|
# no_device: "EmptyString",
|
@@ -906,7 +907,7 @@ module Aws::Imagebuilder
|
|
906
907
|
# **Assignment:** For the first three nodes you can assign any positive
|
907
908
|
# integer value, including zero, with an upper limit of 2^30-1, or
|
908
909
|
# 1073741823 for each node. Image Builder automatically assigns the
|
909
|
-
# build number
|
910
|
+
# build number to the fourth node.
|
910
911
|
#
|
911
912
|
# **Patterns:** You can use any numeric pattern that adheres to the
|
912
913
|
# assignment requirements for the nodes that you can assign. For
|
@@ -982,6 +983,7 @@ module Aws::Imagebuilder
|
|
982
983
|
# snapshot_id: "NonEmptyString",
|
983
984
|
# volume_size: 1,
|
984
985
|
# volume_type: "standard", # accepts standard, io1, io2, gp2, gp3, sc1, st1
|
986
|
+
# throughput: 1,
|
985
987
|
# },
|
986
988
|
# virtual_name: "NonEmptyString",
|
987
989
|
# no_device: "EmptyString",
|
@@ -1026,9 +1028,21 @@ module Aws::Imagebuilder
|
|
1026
1028
|
# The description of the infrastructure configuration.
|
1027
1029
|
#
|
1028
1030
|
# @option params [Array<String>] :instance_types
|
1029
|
-
# The instance
|
1030
|
-
#
|
1031
|
-
#
|
1031
|
+
# The instance metadata options that you can set for the HTTP requests
|
1032
|
+
# that pipeline builds use to launch EC2 build and test instances. For
|
1033
|
+
# more information about instance metadata options, see one of the
|
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
|
1032
1046
|
#
|
1033
1047
|
# @option params [required, String] :instance_profile_name
|
1034
1048
|
# The instance profile to associate with the instance used to customize
|
@@ -1046,7 +1060,7 @@ module Aws::Imagebuilder
|
|
1046
1060
|
# The logging configuration of the infrastructure configuration.
|
1047
1061
|
#
|
1048
1062
|
# @option params [String] :key_pair
|
1049
|
-
# The key pair of the infrastructure configuration.
|
1063
|
+
# The key pair of the infrastructure configuration. You can use this to
|
1050
1064
|
# log on to and debug the instance used to create your image.
|
1051
1065
|
#
|
1052
1066
|
# @option params [Boolean] :terminate_instance_on_failure
|
@@ -1061,6 +1075,10 @@ module Aws::Imagebuilder
|
|
1061
1075
|
# @option params [Hash<String,String>] :resource_tags
|
1062
1076
|
# The tags attached to the resource created by Image Builder.
|
1063
1077
|
#
|
1078
|
+
# @option params [Types::InstanceMetadataOptions] :instance_metadata_options
|
1079
|
+
# The instance metadata options that you can set for the HTTP requests
|
1080
|
+
# that pipeline builds use to launch EC2 build and test instances.
|
1081
|
+
#
|
1064
1082
|
# @option params [Hash<String,String>] :tags
|
1065
1083
|
# The tags of the infrastructure configuration.
|
1066
1084
|
#
|
@@ -1097,6 +1115,10 @@ module Aws::Imagebuilder
|
|
1097
1115
|
# resource_tags: {
|
1098
1116
|
# "TagKey" => "TagValue",
|
1099
1117
|
# },
|
1118
|
+
# instance_metadata_options: {
|
1119
|
+
# http_tokens: "HttpTokens",
|
1120
|
+
# http_put_response_hop_limit: 1,
|
1121
|
+
# },
|
1100
1122
|
# tags: {
|
1101
1123
|
# "TagKey" => "TagValue",
|
1102
1124
|
# },
|
@@ -1210,10 +1232,29 @@ module Aws::Imagebuilder
|
|
1210
1232
|
req.send_request(options)
|
1211
1233
|
end
|
1212
1234
|
|
1213
|
-
# Deletes an image.
|
1235
|
+
# Deletes an Image Builder image resource. This does not delete any EC2
|
1236
|
+
# AMIs or ECR container images that are created during the image build
|
1237
|
+
# process. You must clean those up separately, using the appropriate
|
1238
|
+
# Amazon EC2 or Amazon ECR console actions, or API or CLI commands.
|
1239
|
+
#
|
1240
|
+
# * To deregister an EC2 Linux AMI, see [Deregister your Linux AMI][1]
|
1241
|
+
# in the <i> <i>Amazon EC2 User Guide</i> </i>.
|
1242
|
+
#
|
1243
|
+
# * To deregister an EC2 Windows AMI, see [Deregister your Windows
|
1244
|
+
# AMI][2] in the <i> <i>Amazon EC2 Windows Guide</i> </i>.
|
1245
|
+
#
|
1246
|
+
# * To delete a container image from Amazon ECR, see [Deleting an
|
1247
|
+
# image][3] in the *Amazon ECR User Guide*.
|
1248
|
+
#
|
1249
|
+
#
|
1250
|
+
#
|
1251
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/deregister-ami.html
|
1252
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/deregister-ami.html
|
1253
|
+
# [3]: https://docs.aws.amazon.com/https:/docs.aws.amazon.comAmazonECR/latest/userguide/delete_image.html
|
1214
1254
|
#
|
1215
1255
|
# @option params [required, String] :image_build_version_arn
|
1216
|
-
# The Amazon Resource Name (ARN) of the image to
|
1256
|
+
# The Amazon Resource Name (ARN) of the Image Builder image resource to
|
1257
|
+
# delete.
|
1217
1258
|
#
|
1218
1259
|
# @return [Types::DeleteImageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1219
1260
|
#
|
@@ -1360,6 +1401,8 @@ module Aws::Imagebuilder
|
|
1360
1401
|
# resp.component.platform #=> String, one of "Windows", "Linux"
|
1361
1402
|
# resp.component.supported_os_versions #=> Array
|
1362
1403
|
# resp.component.supported_os_versions[0] #=> String
|
1404
|
+
# resp.component.state.status #=> String, one of "DEPRECATED"
|
1405
|
+
# resp.component.state.reason #=> String
|
1363
1406
|
# resp.component.parameters #=> Array
|
1364
1407
|
# resp.component.parameters[0].name #=> String
|
1365
1408
|
# resp.component.parameters[0].type #=> String
|
@@ -1456,6 +1499,7 @@ module Aws::Imagebuilder
|
|
1456
1499
|
# resp.container_recipe.instance_configuration.block_device_mappings[0].ebs.snapshot_id #=> String
|
1457
1500
|
# resp.container_recipe.instance_configuration.block_device_mappings[0].ebs.volume_size #=> Integer
|
1458
1501
|
# resp.container_recipe.instance_configuration.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "gp3", "sc1", "st1"
|
1502
|
+
# resp.container_recipe.instance_configuration.block_device_mappings[0].ebs.throughput #=> Integer
|
1459
1503
|
# resp.container_recipe.instance_configuration.block_device_mappings[0].virtual_name #=> String
|
1460
1504
|
# resp.container_recipe.instance_configuration.block_device_mappings[0].no_device #=> String
|
1461
1505
|
# resp.container_recipe.dockerfile_template_data #=> String
|
@@ -1622,6 +1666,7 @@ module Aws::Imagebuilder
|
|
1622
1666
|
# resp.image.image_recipe.block_device_mappings[0].ebs.snapshot_id #=> String
|
1623
1667
|
# resp.image.image_recipe.block_device_mappings[0].ebs.volume_size #=> Integer
|
1624
1668
|
# resp.image.image_recipe.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "gp3", "sc1", "st1"
|
1669
|
+
# resp.image.image_recipe.block_device_mappings[0].ebs.throughput #=> Integer
|
1625
1670
|
# resp.image.image_recipe.block_device_mappings[0].virtual_name #=> String
|
1626
1671
|
# resp.image.image_recipe.block_device_mappings[0].no_device #=> String
|
1627
1672
|
# resp.image.image_recipe.date_created #=> String
|
@@ -1653,6 +1698,7 @@ module Aws::Imagebuilder
|
|
1653
1698
|
# resp.image.container_recipe.instance_configuration.block_device_mappings[0].ebs.snapshot_id #=> String
|
1654
1699
|
# resp.image.container_recipe.instance_configuration.block_device_mappings[0].ebs.volume_size #=> Integer
|
1655
1700
|
# resp.image.container_recipe.instance_configuration.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "gp3", "sc1", "st1"
|
1701
|
+
# resp.image.container_recipe.instance_configuration.block_device_mappings[0].ebs.throughput #=> Integer
|
1656
1702
|
# resp.image.container_recipe.instance_configuration.block_device_mappings[0].virtual_name #=> String
|
1657
1703
|
# resp.image.container_recipe.instance_configuration.block_device_mappings[0].no_device #=> String
|
1658
1704
|
# resp.image.container_recipe.dockerfile_template_data #=> String
|
@@ -1685,6 +1731,8 @@ module Aws::Imagebuilder
|
|
1685
1731
|
# resp.image.infrastructure_configuration.date_updated #=> String
|
1686
1732
|
# resp.image.infrastructure_configuration.resource_tags #=> Hash
|
1687
1733
|
# resp.image.infrastructure_configuration.resource_tags["TagKey"] #=> String
|
1734
|
+
# resp.image.infrastructure_configuration.instance_metadata_options.http_tokens #=> String
|
1735
|
+
# resp.image.infrastructure_configuration.instance_metadata_options.http_put_response_hop_limit #=> Integer
|
1688
1736
|
# resp.image.infrastructure_configuration.tags #=> Hash
|
1689
1737
|
# resp.image.infrastructure_configuration.tags["TagKey"] #=> String
|
1690
1738
|
# resp.image.distribution_configuration.arn #=> String
|
@@ -1871,6 +1919,7 @@ module Aws::Imagebuilder
|
|
1871
1919
|
# resp.image_recipe.block_device_mappings[0].ebs.snapshot_id #=> String
|
1872
1920
|
# resp.image_recipe.block_device_mappings[0].ebs.volume_size #=> Integer
|
1873
1921
|
# resp.image_recipe.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "gp3", "sc1", "st1"
|
1922
|
+
# resp.image_recipe.block_device_mappings[0].ebs.throughput #=> Integer
|
1874
1923
|
# resp.image_recipe.block_device_mappings[0].virtual_name #=> String
|
1875
1924
|
# resp.image_recipe.block_device_mappings[0].no_device #=> String
|
1876
1925
|
# resp.image_recipe.date_created #=> String
|
@@ -1958,6 +2007,8 @@ module Aws::Imagebuilder
|
|
1958
2007
|
# resp.infrastructure_configuration.date_updated #=> String
|
1959
2008
|
# resp.infrastructure_configuration.resource_tags #=> Hash
|
1960
2009
|
# resp.infrastructure_configuration.resource_tags["TagKey"] #=> String
|
2010
|
+
# resp.infrastructure_configuration.instance_metadata_options.http_tokens #=> String
|
2011
|
+
# resp.infrastructure_configuration.instance_metadata_options.http_put_response_hop_limit #=> Integer
|
1961
2012
|
# resp.infrastructure_configuration.tags #=> Hash
|
1962
2013
|
# resp.infrastructure_configuration.tags["TagKey"] #=> String
|
1963
2014
|
#
|
@@ -1983,14 +2034,11 @@ module Aws::Imagebuilder
|
|
1983
2034
|
# <major>.<minor>.<patch>/<build>. You can
|
1984
2035
|
# assign values for the first three, and can filter on all of them.
|
1985
2036
|
#
|
1986
|
-
# **Filtering:**
|
1987
|
-
#
|
1988
|
-
#
|
1989
|
-
#
|
1990
|
-
#
|
1991
|
-
# "1.x.2", nor "x.2.x" will work. You do not have to specify the
|
1992
|
-
# build - Image Builder automatically uses a wildcard for that, if
|
1993
|
-
# applicable.
|
2037
|
+
# **Filtering:** With semantic versioning, you have the flexibility to
|
2038
|
+
# use wildcards (x) to specify the most recent versions or nodes when
|
2039
|
+
# selecting the source image or components for your recipe. When you use
|
2040
|
+
# a wildcard in any node, all nodes to the right of the first wildcard
|
2041
|
+
# must also be wildcards.
|
1994
2042
|
#
|
1995
2043
|
# </note>
|
1996
2044
|
#
|
@@ -2082,14 +2130,11 @@ module Aws::Imagebuilder
|
|
2082
2130
|
# <major>.<minor>.<patch>/<build>. You can
|
2083
2131
|
# assign values for the first three, and can filter on all of them.
|
2084
2132
|
#
|
2085
|
-
# **Filtering:**
|
2086
|
-
#
|
2087
|
-
#
|
2088
|
-
#
|
2089
|
-
#
|
2090
|
-
# "1.x.2", nor "x.2.x" will work. You do not have to specify the
|
2091
|
-
# build - Image Builder automatically uses a wildcard for that, if
|
2092
|
-
# applicable.
|
2133
|
+
# **Filtering:** With semantic versioning, you have the flexibility to
|
2134
|
+
# use wildcards (x) to specify the most recent versions or nodes when
|
2135
|
+
# selecting the source image or components for your recipe. When you use
|
2136
|
+
# a wildcard in any node, all nodes to the right of the first wildcard
|
2137
|
+
# must also be wildcards.
|
2093
2138
|
#
|
2094
2139
|
# </note>
|
2095
2140
|
#
|
@@ -2130,6 +2175,8 @@ module Aws::Imagebuilder
|
|
2130
2175
|
# resp.component_summary_list[0].platform #=> String, one of "Windows", "Linux"
|
2131
2176
|
# resp.component_summary_list[0].supported_os_versions #=> Array
|
2132
2177
|
# resp.component_summary_list[0].supported_os_versions[0] #=> String
|
2178
|
+
# resp.component_summary_list[0].state.status #=> String, one of "DEPRECATED"
|
2179
|
+
# resp.component_summary_list[0].state.reason #=> String
|
2133
2180
|
# resp.component_summary_list[0].type #=> String, one of "BUILD", "TEST"
|
2134
2181
|
# resp.component_summary_list[0].owner #=> String
|
2135
2182
|
# resp.component_summary_list[0].description #=> String
|
@@ -2155,14 +2202,11 @@ module Aws::Imagebuilder
|
|
2155
2202
|
# <major>.<minor>.<patch>/<build>. You can
|
2156
2203
|
# assign values for the first three, and can filter on all of them.
|
2157
2204
|
#
|
2158
|
-
# **Filtering:**
|
2159
|
-
#
|
2160
|
-
#
|
2161
|
-
#
|
2162
|
-
#
|
2163
|
-
# "1.x.2", nor "x.2.x" will work. You do not have to specify the
|
2164
|
-
# build - Image Builder automatically uses a wildcard for that, if
|
2165
|
-
# applicable.
|
2205
|
+
# **Filtering:** With semantic versioning, you have the flexibility to
|
2206
|
+
# use wildcards (x) to specify the most recent versions or nodes when
|
2207
|
+
# selecting the source image or components for your recipe. When you use
|
2208
|
+
# a wildcard in any node, all nodes to the right of the first wildcard
|
2209
|
+
# must also be wildcards.
|
2166
2210
|
#
|
2167
2211
|
# </note>
|
2168
2212
|
#
|
@@ -2174,7 +2218,19 @@ module Aws::Imagebuilder
|
|
2174
2218
|
# you by other customers.
|
2175
2219
|
#
|
2176
2220
|
# @option params [Array<Types::Filter>] :filters
|
2177
|
-
#
|
2221
|
+
# Use the following filters to streamline results:
|
2222
|
+
#
|
2223
|
+
# * `description`
|
2224
|
+
#
|
2225
|
+
# * `name`
|
2226
|
+
#
|
2227
|
+
# * `platform`
|
2228
|
+
#
|
2229
|
+
# * `supportedOsVersion`
|
2230
|
+
#
|
2231
|
+
# * `type`
|
2232
|
+
#
|
2233
|
+
# * `version`
|
2178
2234
|
#
|
2179
2235
|
# @option params [Boolean] :by_name
|
2180
2236
|
# Returns the list of component build versions for the specified name.
|
@@ -2242,8 +2298,15 @@ module Aws::Imagebuilder
|
|
2242
2298
|
# recipes belonging to your account.
|
2243
2299
|
#
|
2244
2300
|
# @option params [Array<Types::Filter>] :filters
|
2245
|
-
#
|
2246
|
-
#
|
2301
|
+
# Use the following filters to streamline results:
|
2302
|
+
#
|
2303
|
+
# * `containerType`
|
2304
|
+
#
|
2305
|
+
# * `name`
|
2306
|
+
#
|
2307
|
+
# * `parentImage`
|
2308
|
+
#
|
2309
|
+
# * `platform`
|
2247
2310
|
#
|
2248
2311
|
# @option params [Integer] :max_results
|
2249
2312
|
# The maximum number of results to return in the list.
|
@@ -2302,11 +2365,7 @@ module Aws::Imagebuilder
|
|
2302
2365
|
# Returns a list of distribution configurations.
|
2303
2366
|
#
|
2304
2367
|
# @option params [Array<Types::Filter>] :filters
|
2305
|
-
#
|
2306
|
-
#
|
2307
|
-
# * `name` - The name of this distribution configuration.
|
2308
|
-
#
|
2309
|
-
# ^
|
2368
|
+
# You can filter on `name` to streamline results.
|
2310
2369
|
#
|
2311
2370
|
# @option params [Integer] :max_results
|
2312
2371
|
# The maximum items to return in a request.
|
@@ -2367,7 +2426,17 @@ module Aws::Imagebuilder
|
|
2367
2426
|
# want to retrieve.
|
2368
2427
|
#
|
2369
2428
|
# @option params [Array<Types::Filter>] :filters
|
2370
|
-
#
|
2429
|
+
# Use the following filters to streamline results:
|
2430
|
+
#
|
2431
|
+
# * `name`
|
2432
|
+
#
|
2433
|
+
# * `osVersion`
|
2434
|
+
#
|
2435
|
+
# * `platform`
|
2436
|
+
#
|
2437
|
+
# * `type`
|
2438
|
+
#
|
2439
|
+
# * `version`
|
2371
2440
|
#
|
2372
2441
|
# @option params [Integer] :max_results
|
2373
2442
|
# The maximum items to return in a request.
|
@@ -2438,7 +2507,8 @@ module Aws::Imagebuilder
|
|
2438
2507
|
end
|
2439
2508
|
|
2440
2509
|
# List the Packages that are associated with an Image Build Version, as
|
2441
|
-
# determined by Amazon
|
2510
|
+
# determined by Amazon Web Services Systems Manager Inventory at build
|
2511
|
+
# time.
|
2442
2512
|
#
|
2443
2513
|
# @option params [required, String] :image_build_version_arn
|
2444
2514
|
# Filter results for the ListImagePackages request by the Image Build
|
@@ -2492,7 +2562,11 @@ module Aws::Imagebuilder
|
|
2492
2562
|
# want to view.
|
2493
2563
|
#
|
2494
2564
|
# @option params [Array<Types::Filter>] :filters
|
2495
|
-
#
|
2565
|
+
# Use the following filters to streamline results:
|
2566
|
+
#
|
2567
|
+
# * `name`
|
2568
|
+
#
|
2569
|
+
# * `version`
|
2496
2570
|
#
|
2497
2571
|
# @option params [Integer] :max_results
|
2498
2572
|
# The maximum items to return in a request.
|
@@ -2565,7 +2639,19 @@ module Aws::Imagebuilder
|
|
2565
2639
|
# Returns a list of image pipelines.
|
2566
2640
|
#
|
2567
2641
|
# @option params [Array<Types::Filter>] :filters
|
2568
|
-
#
|
2642
|
+
# Use the following filters to streamline results:
|
2643
|
+
#
|
2644
|
+
# * `description`
|
2645
|
+
#
|
2646
|
+
# * `distributionConfigurationArn`
|
2647
|
+
#
|
2648
|
+
# * `imageRecipeArn`
|
2649
|
+
#
|
2650
|
+
# * `infrastructureConfigurationArn`
|
2651
|
+
#
|
2652
|
+
# * `name`
|
2653
|
+
#
|
2654
|
+
# * `status`
|
2569
2655
|
#
|
2570
2656
|
# @option params [Integer] :max_results
|
2571
2657
|
# The maximum items to return in a request.
|
@@ -2641,7 +2727,13 @@ module Aws::Imagebuilder
|
|
2641
2727
|
# with you by other customers.
|
2642
2728
|
#
|
2643
2729
|
# @option params [Array<Types::Filter>] :filters
|
2644
|
-
#
|
2730
|
+
# Use the following filters to streamline results:
|
2731
|
+
#
|
2732
|
+
# * `name`
|
2733
|
+
#
|
2734
|
+
# * `parentImage`
|
2735
|
+
#
|
2736
|
+
# * `platform`
|
2645
2737
|
#
|
2646
2738
|
# @option params [Integer] :max_results
|
2647
2739
|
# The maximum items to return in a request.
|
@@ -2705,7 +2797,17 @@ module Aws::Imagebuilder
|
|
2705
2797
|
# customers.
|
2706
2798
|
#
|
2707
2799
|
# @option params [Array<Types::Filter>] :filters
|
2708
|
-
#
|
2800
|
+
# Use the following filters to streamline results:
|
2801
|
+
#
|
2802
|
+
# * `name`
|
2803
|
+
#
|
2804
|
+
# * `osVersion`
|
2805
|
+
#
|
2806
|
+
# * `platform`
|
2807
|
+
#
|
2808
|
+
# * `type`
|
2809
|
+
#
|
2810
|
+
# * `version`
|
2709
2811
|
#
|
2710
2812
|
# @option params [Boolean] :by_name
|
2711
2813
|
# Requests a list of images with a specific recipe name.
|
@@ -2770,7 +2872,7 @@ module Aws::Imagebuilder
|
|
2770
2872
|
# Returns a list of infrastructure configurations.
|
2771
2873
|
#
|
2772
2874
|
# @option params [Array<Types::Filter>] :filters
|
2773
|
-
#
|
2875
|
+
# You can filter on `name` to streamline results.
|
2774
2876
|
#
|
2775
2877
|
# @option params [Integer] :max_results
|
2776
2878
|
# The maximum items to return in a request.
|
@@ -3338,7 +3440,7 @@ module Aws::Imagebuilder
|
|
3338
3440
|
# The logging configuration of the infrastructure configuration.
|
3339
3441
|
#
|
3340
3442
|
# @option params [String] :key_pair
|
3341
|
-
# The key pair of the infrastructure configuration.
|
3443
|
+
# The key pair of the infrastructure configuration. You can use this to
|
3342
3444
|
# log on to and debug the instance used to create your image.
|
3343
3445
|
#
|
3344
3446
|
# @option params [Boolean] :terminate_instance_on_failure
|
@@ -3359,6 +3461,23 @@ module Aws::Imagebuilder
|
|
3359
3461
|
# @option params [Hash<String,String>] :resource_tags
|
3360
3462
|
# The tags attached to the resource created by Image Builder.
|
3361
3463
|
#
|
3464
|
+
# @option params [Types::InstanceMetadataOptions] :instance_metadata_options
|
3465
|
+
# The instance metadata options that you can set for the HTTP requests
|
3466
|
+
# that pipeline builds use to launch EC2 build and test instances. For
|
3467
|
+
# more information about instance metadata options, see one of the
|
3468
|
+
# following links:
|
3469
|
+
#
|
3470
|
+
# * [Configure the instance metadata options][1] in the <i> <i>Amazon
|
3471
|
+
# EC2 User Guide</i> </i> for Linux instances.
|
3472
|
+
#
|
3473
|
+
# * [Configure the instance metadata options][2] in the <i> <i>Amazon
|
3474
|
+
# EC2 Windows Guide</i> </i> for Windows instances.
|
3475
|
+
#
|
3476
|
+
#
|
3477
|
+
#
|
3478
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/configuring-instance-metadata-options.html
|
3479
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/configuring-instance-metadata-options.html
|
3480
|
+
#
|
3362
3481
|
# @return [Types::UpdateInfrastructureConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3363
3482
|
#
|
3364
3483
|
# * {Types::UpdateInfrastructureConfigurationResponse#request_id #request_id} => String
|
@@ -3387,6 +3506,10 @@ module Aws::Imagebuilder
|
|
3387
3506
|
# resource_tags: {
|
3388
3507
|
# "TagKey" => "TagValue",
|
3389
3508
|
# },
|
3509
|
+
# instance_metadata_options: {
|
3510
|
+
# http_tokens: "HttpTokens",
|
3511
|
+
# http_put_response_hop_limit: 1,
|
3512
|
+
# },
|
3390
3513
|
# })
|
3391
3514
|
#
|
3392
3515
|
# @example Response structure
|
@@ -3417,7 +3540,7 @@ module Aws::Imagebuilder
|
|
3417
3540
|
params: params,
|
3418
3541
|
config: config)
|
3419
3542
|
context[:gem_name] = 'aws-sdk-imagebuilder'
|
3420
|
-
context[:gem_version] = '1.
|
3543
|
+
context[:gem_version] = '1.30.0'
|
3421
3544
|
Seahorse::Client::Request.new(handlers, context)
|
3422
3545
|
end
|
3423
3546
|
|
@@ -42,6 +42,8 @@ module Aws::Imagebuilder
|
|
42
42
|
ComponentParameterType = Shapes::StringShape.new(name: 'ComponentParameterType')
|
43
43
|
ComponentParameterValue = Shapes::StringShape.new(name: 'ComponentParameterValue')
|
44
44
|
ComponentParameterValueList = Shapes::ListShape.new(name: 'ComponentParameterValueList')
|
45
|
+
ComponentState = Shapes::StructureShape.new(name: 'ComponentState')
|
46
|
+
ComponentStatus = Shapes::StringShape.new(name: 'ComponentStatus')
|
45
47
|
ComponentSummary = Shapes::StructureShape.new(name: 'ComponentSummary')
|
46
48
|
ComponentSummaryList = Shapes::ListShape.new(name: 'ComponentSummaryList')
|
47
49
|
ComponentType = Shapes::StringShape.new(name: 'ComponentType')
|
@@ -98,6 +100,7 @@ module Aws::Imagebuilder
|
|
98
100
|
EbsInstanceBlockDeviceSpecification = Shapes::StructureShape.new(name: 'EbsInstanceBlockDeviceSpecification')
|
99
101
|
EbsIopsInteger = Shapes::IntegerShape.new(name: 'EbsIopsInteger')
|
100
102
|
EbsVolumeSizeInteger = Shapes::IntegerShape.new(name: 'EbsVolumeSizeInteger')
|
103
|
+
EbsVolumeThroughput = Shapes::IntegerShape.new(name: 'EbsVolumeThroughput')
|
101
104
|
EbsVolumeType = Shapes::StringShape.new(name: 'EbsVolumeType')
|
102
105
|
EmptyString = Shapes::StringShape.new(name: 'EmptyString')
|
103
106
|
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
@@ -129,6 +132,8 @@ module Aws::Imagebuilder
|
|
129
132
|
GetImageResponse = Shapes::StructureShape.new(name: 'GetImageResponse')
|
130
133
|
GetInfrastructureConfigurationRequest = Shapes::StructureShape.new(name: 'GetInfrastructureConfigurationRequest')
|
131
134
|
GetInfrastructureConfigurationResponse = Shapes::StructureShape.new(name: 'GetInfrastructureConfigurationResponse')
|
135
|
+
HttpPutResponseHopLimit = Shapes::IntegerShape.new(name: 'HttpPutResponseHopLimit')
|
136
|
+
HttpTokens = Shapes::StringShape.new(name: 'HttpTokens')
|
132
137
|
IdempotentParameterMismatchException = Shapes::StructureShape.new(name: 'IdempotentParameterMismatchException')
|
133
138
|
Image = Shapes::StructureShape.new(name: 'Image')
|
134
139
|
ImageBuildVersionArn = Shapes::StringShape.new(name: 'ImageBuildVersionArn')
|
@@ -164,6 +169,7 @@ module Aws::Imagebuilder
|
|
164
169
|
InstanceBlockDeviceMapping = Shapes::StructureShape.new(name: 'InstanceBlockDeviceMapping')
|
165
170
|
InstanceBlockDeviceMappings = Shapes::ListShape.new(name: 'InstanceBlockDeviceMappings')
|
166
171
|
InstanceConfiguration = Shapes::StructureShape.new(name: 'InstanceConfiguration')
|
172
|
+
InstanceMetadataOptions = Shapes::StructureShape.new(name: 'InstanceMetadataOptions')
|
167
173
|
InstanceProfileNameType = Shapes::StringShape.new(name: 'InstanceProfileNameType')
|
168
174
|
InstanceType = Shapes::StringShape.new(name: 'InstanceType')
|
169
175
|
InstanceTypeList = Shapes::ListShape.new(name: 'InstanceTypeList')
|
@@ -309,6 +315,7 @@ module Aws::Imagebuilder
|
|
309
315
|
Component.add_member(:type, Shapes::ShapeRef.new(shape: ComponentType, location_name: "type"))
|
310
316
|
Component.add_member(:platform, Shapes::ShapeRef.new(shape: Platform, location_name: "platform"))
|
311
317
|
Component.add_member(:supported_os_versions, Shapes::ShapeRef.new(shape: OsVersionList, location_name: "supportedOsVersions"))
|
318
|
+
Component.add_member(:state, Shapes::ShapeRef.new(shape: ComponentState, location_name: "state"))
|
312
319
|
Component.add_member(:parameters, Shapes::ShapeRef.new(shape: ComponentParameterDetailList, location_name: "parameters"))
|
313
320
|
Component.add_member(:owner, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "owner"))
|
314
321
|
Component.add_member(:data, Shapes::ShapeRef.new(shape: ComponentData, location_name: "data"))
|
@@ -340,11 +347,16 @@ module Aws::Imagebuilder
|
|
340
347
|
|
341
348
|
ComponentParameterValueList.member = Shapes::ShapeRef.new(shape: ComponentParameterValue)
|
342
349
|
|
350
|
+
ComponentState.add_member(:status, Shapes::ShapeRef.new(shape: ComponentStatus, location_name: "status"))
|
351
|
+
ComponentState.add_member(:reason, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "reason"))
|
352
|
+
ComponentState.struct_class = Types::ComponentState
|
353
|
+
|
343
354
|
ComponentSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ImageBuilderArn, location_name: "arn"))
|
344
355
|
ComponentSummary.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "name"))
|
345
356
|
ComponentSummary.add_member(:version, Shapes::ShapeRef.new(shape: VersionNumber, location_name: "version"))
|
346
357
|
ComponentSummary.add_member(:platform, Shapes::ShapeRef.new(shape: Platform, location_name: "platform"))
|
347
358
|
ComponentSummary.add_member(:supported_os_versions, Shapes::ShapeRef.new(shape: OsVersionList, location_name: "supportedOsVersions"))
|
359
|
+
ComponentSummary.add_member(:state, Shapes::ShapeRef.new(shape: ComponentState, location_name: "state"))
|
348
360
|
ComponentSummary.add_member(:type, Shapes::ShapeRef.new(shape: ComponentType, location_name: "type"))
|
349
361
|
ComponentSummary.add_member(:owner, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "owner"))
|
350
362
|
ComponentSummary.add_member(:description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "description"))
|
@@ -525,6 +537,7 @@ module Aws::Imagebuilder
|
|
525
537
|
CreateInfrastructureConfigurationRequest.add_member(:terminate_instance_on_failure, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "terminateInstanceOnFailure"))
|
526
538
|
CreateInfrastructureConfigurationRequest.add_member(:sns_topic_arn, Shapes::ShapeRef.new(shape: SnsTopicArn, location_name: "snsTopicArn"))
|
527
539
|
CreateInfrastructureConfigurationRequest.add_member(:resource_tags, Shapes::ShapeRef.new(shape: ResourceTagMap, location_name: "resourceTags"))
|
540
|
+
CreateInfrastructureConfigurationRequest.add_member(:instance_metadata_options, Shapes::ShapeRef.new(shape: InstanceMetadataOptions, location_name: "instanceMetadataOptions"))
|
528
541
|
CreateInfrastructureConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
529
542
|
CreateInfrastructureConfigurationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
530
543
|
CreateInfrastructureConfigurationRequest.struct_class = Types::CreateInfrastructureConfigurationRequest
|
@@ -620,6 +633,7 @@ module Aws::Imagebuilder
|
|
620
633
|
EbsInstanceBlockDeviceSpecification.add_member(:snapshot_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "snapshotId"))
|
621
634
|
EbsInstanceBlockDeviceSpecification.add_member(:volume_size, Shapes::ShapeRef.new(shape: EbsVolumeSizeInteger, location_name: "volumeSize"))
|
622
635
|
EbsInstanceBlockDeviceSpecification.add_member(:volume_type, Shapes::ShapeRef.new(shape: EbsVolumeType, location_name: "volumeType"))
|
636
|
+
EbsInstanceBlockDeviceSpecification.add_member(:throughput, Shapes::ShapeRef.new(shape: EbsVolumeThroughput, location_name: "throughput"))
|
623
637
|
EbsInstanceBlockDeviceSpecification.struct_class = Types::EbsInstanceBlockDeviceSpecification
|
624
638
|
|
625
639
|
Filter.add_member(:name, Shapes::ShapeRef.new(shape: FilterName, location_name: "name"))
|
@@ -855,6 +869,7 @@ module Aws::Imagebuilder
|
|
855
869
|
InfrastructureConfiguration.add_member(:date_created, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateCreated"))
|
856
870
|
InfrastructureConfiguration.add_member(:date_updated, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateUpdated"))
|
857
871
|
InfrastructureConfiguration.add_member(:resource_tags, Shapes::ShapeRef.new(shape: ResourceTagMap, location_name: "resourceTags"))
|
872
|
+
InfrastructureConfiguration.add_member(:instance_metadata_options, Shapes::ShapeRef.new(shape: InstanceMetadataOptions, location_name: "instanceMetadataOptions"))
|
858
873
|
InfrastructureConfiguration.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
859
874
|
InfrastructureConfiguration.struct_class = Types::InfrastructureConfiguration
|
860
875
|
|
@@ -883,6 +898,10 @@ module Aws::Imagebuilder
|
|
883
898
|
InstanceConfiguration.add_member(:block_device_mappings, Shapes::ShapeRef.new(shape: InstanceBlockDeviceMappings, location_name: "blockDeviceMappings"))
|
884
899
|
InstanceConfiguration.struct_class = Types::InstanceConfiguration
|
885
900
|
|
901
|
+
InstanceMetadataOptions.add_member(:http_tokens, Shapes::ShapeRef.new(shape: HttpTokens, location_name: "httpTokens"))
|
902
|
+
InstanceMetadataOptions.add_member(:http_put_response_hop_limit, Shapes::ShapeRef.new(shape: HttpPutResponseHopLimit, location_name: "httpPutResponseHopLimit"))
|
903
|
+
InstanceMetadataOptions.struct_class = Types::InstanceMetadataOptions
|
904
|
+
|
886
905
|
InstanceTypeList.member = Shapes::ShapeRef.new(shape: InstanceType)
|
887
906
|
|
888
907
|
InvalidPaginationTokenException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
@@ -1195,6 +1214,7 @@ module Aws::Imagebuilder
|
|
1195
1214
|
UpdateInfrastructureConfigurationRequest.add_member(:sns_topic_arn, Shapes::ShapeRef.new(shape: SnsTopicArn, location_name: "snsTopicArn"))
|
1196
1215
|
UpdateInfrastructureConfigurationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
1197
1216
|
UpdateInfrastructureConfigurationRequest.add_member(:resource_tags, Shapes::ShapeRef.new(shape: ResourceTagMap, location_name: "resourceTags"))
|
1217
|
+
UpdateInfrastructureConfigurationRequest.add_member(:instance_metadata_options, Shapes::ShapeRef.new(shape: InstanceMetadataOptions, location_name: "instanceMetadataOptions"))
|
1198
1218
|
UpdateInfrastructureConfigurationRequest.struct_class = Types::UpdateInfrastructureConfigurationRequest
|
1199
1219
|
|
1200
1220
|
UpdateInfrastructureConfigurationResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
|