aws-sdk-imagebuilder 1.27.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-imagebuilder/client.rb +165 -54
- data/lib/aws-sdk-imagebuilder/client_api.rb +20 -0
- data/lib/aws-sdk-imagebuilder/types.rb +288 -112
- 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: 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,26 @@
|
|
|
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
|
+
|
|
9
|
+
1.30.0 (2021-09-22)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This feature adds support for specifying GP3 volume throughput and configuring instance metadata options for instances launched by EC2 Image Builder.
|
|
13
|
+
|
|
14
|
+
1.29.0 (2021-09-01)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
18
|
+
|
|
19
|
+
1.28.0 (2021-08-04)
|
|
20
|
+
------------------
|
|
21
|
+
|
|
22
|
+
* Feature - Updated list actions to include a list of valid filters that can be used in the request.
|
|
23
|
+
|
|
4
24
|
1.27.0 (2021-07-30)
|
|
5
25
|
------------------
|
|
6
26
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.31.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
|
|
@@ -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
|
|
@@ -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
|
|
@@ -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.
|
|
@@ -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
|
|
@@ -919,9 +920,9 @@ module Aws::Imagebuilder
|
|
|
919
920
|
# The components of the image recipe.
|
|
920
921
|
#
|
|
921
922
|
# @option params [required, String] :parent_image
|
|
922
|
-
# The
|
|
923
|
-
#
|
|
924
|
-
#
|
|
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:
|
|
925
926
|
# `arn:aws:imagebuilder:us-west-2:aws:image/windows-server-2016-english-full-base-x86/x.x.x`.
|
|
926
927
|
# You can provide the specific version that you want to use, or you can
|
|
927
928
|
# use a wildcard in all of the fields. If you enter an AMI ID for the
|
|
@@ -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",
|
|
@@ -1046,7 +1048,7 @@ module Aws::Imagebuilder
|
|
|
1046
1048
|
# The logging configuration of the infrastructure configuration.
|
|
1047
1049
|
#
|
|
1048
1050
|
# @option params [String] :key_pair
|
|
1049
|
-
# The key pair of the infrastructure configuration.
|
|
1051
|
+
# The key pair of the infrastructure configuration. You can use this to
|
|
1050
1052
|
# log on to and debug the instance used to create your image.
|
|
1051
1053
|
#
|
|
1052
1054
|
# @option params [Boolean] :terminate_instance_on_failure
|
|
@@ -1061,6 +1063,10 @@ module Aws::Imagebuilder
|
|
|
1061
1063
|
# @option params [Hash<String,String>] :resource_tags
|
|
1062
1064
|
# The tags attached to the resource created by Image Builder.
|
|
1063
1065
|
#
|
|
1066
|
+
# @option params [Types::InstanceMetadataOptions] :instance_metadata_options
|
|
1067
|
+
# The instance metadata options that you can set for the HTTP requests
|
|
1068
|
+
# that pipeline builds use to launch EC2 build and test instances.
|
|
1069
|
+
#
|
|
1064
1070
|
# @option params [Hash<String,String>] :tags
|
|
1065
1071
|
# The tags of the infrastructure configuration.
|
|
1066
1072
|
#
|
|
@@ -1097,6 +1103,10 @@ module Aws::Imagebuilder
|
|
|
1097
1103
|
# resource_tags: {
|
|
1098
1104
|
# "TagKey" => "TagValue",
|
|
1099
1105
|
# },
|
|
1106
|
+
# instance_metadata_options: {
|
|
1107
|
+
# http_tokens: "HttpTokens",
|
|
1108
|
+
# http_put_response_hop_limit: 1,
|
|
1109
|
+
# },
|
|
1100
1110
|
# tags: {
|
|
1101
1111
|
# "TagKey" => "TagValue",
|
|
1102
1112
|
# },
|
|
@@ -1210,10 +1220,29 @@ module Aws::Imagebuilder
|
|
|
1210
1220
|
req.send_request(options)
|
|
1211
1221
|
end
|
|
1212
1222
|
|
|
1213
|
-
# Deletes an image.
|
|
1223
|
+
# Deletes an Image Builder image resource. This does not delete any EC2
|
|
1224
|
+
# AMIs or ECR container images that are created during the image build
|
|
1225
|
+
# process. You must clean those up separately, using the appropriate
|
|
1226
|
+
# Amazon EC2 or Amazon ECR console actions, or API or CLI commands.
|
|
1227
|
+
#
|
|
1228
|
+
# * To deregister an EC2 Linux AMI, see [Deregister your Linux AMI][1]
|
|
1229
|
+
# in the <i> <i>Amazon EC2 User Guide</i> </i>.
|
|
1230
|
+
#
|
|
1231
|
+
# * To deregister an EC2 Windows AMI, see [Deregister your Windows
|
|
1232
|
+
# AMI][2] in the <i> <i>Amazon EC2 Windows Guide</i> </i>.
|
|
1233
|
+
#
|
|
1234
|
+
# * To delete a container image from Amazon ECR, see [Deleting an
|
|
1235
|
+
# image][3] in the *Amazon ECR User Guide*.
|
|
1236
|
+
#
|
|
1237
|
+
#
|
|
1238
|
+
#
|
|
1239
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/deregister-ami.html
|
|
1240
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/deregister-ami.html
|
|
1241
|
+
# [3]: https://docs.aws.amazon.com/https:/docs.aws.amazon.comAmazonECR/latest/userguide/delete_image.html
|
|
1214
1242
|
#
|
|
1215
1243
|
# @option params [required, String] :image_build_version_arn
|
|
1216
|
-
# The Amazon Resource Name (ARN) of the image to
|
|
1244
|
+
# The Amazon Resource Name (ARN) of the Image Builder image resource to
|
|
1245
|
+
# delete.
|
|
1217
1246
|
#
|
|
1218
1247
|
# @return [Types::DeleteImageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
1219
1248
|
#
|
|
@@ -1360,6 +1389,8 @@ module Aws::Imagebuilder
|
|
|
1360
1389
|
# resp.component.platform #=> String, one of "Windows", "Linux"
|
|
1361
1390
|
# resp.component.supported_os_versions #=> Array
|
|
1362
1391
|
# resp.component.supported_os_versions[0] #=> String
|
|
1392
|
+
# resp.component.state.status #=> String, one of "DEPRECATED"
|
|
1393
|
+
# resp.component.state.reason #=> String
|
|
1363
1394
|
# resp.component.parameters #=> Array
|
|
1364
1395
|
# resp.component.parameters[0].name #=> String
|
|
1365
1396
|
# resp.component.parameters[0].type #=> String
|
|
@@ -1456,6 +1487,7 @@ module Aws::Imagebuilder
|
|
|
1456
1487
|
# resp.container_recipe.instance_configuration.block_device_mappings[0].ebs.snapshot_id #=> String
|
|
1457
1488
|
# resp.container_recipe.instance_configuration.block_device_mappings[0].ebs.volume_size #=> Integer
|
|
1458
1489
|
# resp.container_recipe.instance_configuration.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "gp3", "sc1", "st1"
|
|
1490
|
+
# resp.container_recipe.instance_configuration.block_device_mappings[0].ebs.throughput #=> Integer
|
|
1459
1491
|
# resp.container_recipe.instance_configuration.block_device_mappings[0].virtual_name #=> String
|
|
1460
1492
|
# resp.container_recipe.instance_configuration.block_device_mappings[0].no_device #=> String
|
|
1461
1493
|
# resp.container_recipe.dockerfile_template_data #=> String
|
|
@@ -1622,6 +1654,7 @@ module Aws::Imagebuilder
|
|
|
1622
1654
|
# resp.image.image_recipe.block_device_mappings[0].ebs.snapshot_id #=> String
|
|
1623
1655
|
# resp.image.image_recipe.block_device_mappings[0].ebs.volume_size #=> Integer
|
|
1624
1656
|
# resp.image.image_recipe.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "gp3", "sc1", "st1"
|
|
1657
|
+
# resp.image.image_recipe.block_device_mappings[0].ebs.throughput #=> Integer
|
|
1625
1658
|
# resp.image.image_recipe.block_device_mappings[0].virtual_name #=> String
|
|
1626
1659
|
# resp.image.image_recipe.block_device_mappings[0].no_device #=> String
|
|
1627
1660
|
# resp.image.image_recipe.date_created #=> String
|
|
@@ -1653,6 +1686,7 @@ module Aws::Imagebuilder
|
|
|
1653
1686
|
# resp.image.container_recipe.instance_configuration.block_device_mappings[0].ebs.snapshot_id #=> String
|
|
1654
1687
|
# resp.image.container_recipe.instance_configuration.block_device_mappings[0].ebs.volume_size #=> Integer
|
|
1655
1688
|
# resp.image.container_recipe.instance_configuration.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "gp3", "sc1", "st1"
|
|
1689
|
+
# resp.image.container_recipe.instance_configuration.block_device_mappings[0].ebs.throughput #=> Integer
|
|
1656
1690
|
# resp.image.container_recipe.instance_configuration.block_device_mappings[0].virtual_name #=> String
|
|
1657
1691
|
# resp.image.container_recipe.instance_configuration.block_device_mappings[0].no_device #=> String
|
|
1658
1692
|
# resp.image.container_recipe.dockerfile_template_data #=> String
|
|
@@ -1685,6 +1719,8 @@ module Aws::Imagebuilder
|
|
|
1685
1719
|
# resp.image.infrastructure_configuration.date_updated #=> String
|
|
1686
1720
|
# resp.image.infrastructure_configuration.resource_tags #=> Hash
|
|
1687
1721
|
# resp.image.infrastructure_configuration.resource_tags["TagKey"] #=> String
|
|
1722
|
+
# resp.image.infrastructure_configuration.instance_metadata_options.http_tokens #=> String
|
|
1723
|
+
# resp.image.infrastructure_configuration.instance_metadata_options.http_put_response_hop_limit #=> Integer
|
|
1688
1724
|
# resp.image.infrastructure_configuration.tags #=> Hash
|
|
1689
1725
|
# resp.image.infrastructure_configuration.tags["TagKey"] #=> String
|
|
1690
1726
|
# resp.image.distribution_configuration.arn #=> String
|
|
@@ -1871,6 +1907,7 @@ module Aws::Imagebuilder
|
|
|
1871
1907
|
# resp.image_recipe.block_device_mappings[0].ebs.snapshot_id #=> String
|
|
1872
1908
|
# resp.image_recipe.block_device_mappings[0].ebs.volume_size #=> Integer
|
|
1873
1909
|
# resp.image_recipe.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "gp3", "sc1", "st1"
|
|
1910
|
+
# resp.image_recipe.block_device_mappings[0].ebs.throughput #=> Integer
|
|
1874
1911
|
# resp.image_recipe.block_device_mappings[0].virtual_name #=> String
|
|
1875
1912
|
# resp.image_recipe.block_device_mappings[0].no_device #=> String
|
|
1876
1913
|
# resp.image_recipe.date_created #=> String
|
|
@@ -1958,6 +1995,8 @@ module Aws::Imagebuilder
|
|
|
1958
1995
|
# resp.infrastructure_configuration.date_updated #=> String
|
|
1959
1996
|
# resp.infrastructure_configuration.resource_tags #=> Hash
|
|
1960
1997
|
# resp.infrastructure_configuration.resource_tags["TagKey"] #=> String
|
|
1998
|
+
# resp.infrastructure_configuration.instance_metadata_options.http_tokens #=> String
|
|
1999
|
+
# resp.infrastructure_configuration.instance_metadata_options.http_put_response_hop_limit #=> Integer
|
|
1961
2000
|
# resp.infrastructure_configuration.tags #=> Hash
|
|
1962
2001
|
# resp.infrastructure_configuration.tags["TagKey"] #=> String
|
|
1963
2002
|
#
|
|
@@ -1983,14 +2022,11 @@ module Aws::Imagebuilder
|
|
|
1983
2022
|
# <major>.<minor>.<patch>/<build>. You can
|
|
1984
2023
|
# assign values for the first three, and can filter on all of them.
|
|
1985
2024
|
#
|
|
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.
|
|
2025
|
+
# **Filtering:** With semantic versioning, you have the flexibility to
|
|
2026
|
+
# use wildcards (x) to specify the most recent versions or nodes when
|
|
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
|
|
2029
|
+
# must also be wildcards.
|
|
1994
2030
|
#
|
|
1995
2031
|
# </note>
|
|
1996
2032
|
#
|
|
@@ -2082,14 +2118,11 @@ module Aws::Imagebuilder
|
|
|
2082
2118
|
# <major>.<minor>.<patch>/<build>. You can
|
|
2083
2119
|
# assign values for the first three, and can filter on all of them.
|
|
2084
2120
|
#
|
|
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.
|
|
2121
|
+
# **Filtering:** With semantic versioning, you have the flexibility to
|
|
2122
|
+
# use wildcards (x) to specify the most recent versions or nodes when
|
|
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
|
|
2125
|
+
# must also be wildcards.
|
|
2093
2126
|
#
|
|
2094
2127
|
# </note>
|
|
2095
2128
|
#
|
|
@@ -2130,6 +2163,8 @@ module Aws::Imagebuilder
|
|
|
2130
2163
|
# resp.component_summary_list[0].platform #=> String, one of "Windows", "Linux"
|
|
2131
2164
|
# resp.component_summary_list[0].supported_os_versions #=> Array
|
|
2132
2165
|
# resp.component_summary_list[0].supported_os_versions[0] #=> String
|
|
2166
|
+
# resp.component_summary_list[0].state.status #=> String, one of "DEPRECATED"
|
|
2167
|
+
# resp.component_summary_list[0].state.reason #=> String
|
|
2133
2168
|
# resp.component_summary_list[0].type #=> String, one of "BUILD", "TEST"
|
|
2134
2169
|
# resp.component_summary_list[0].owner #=> String
|
|
2135
2170
|
# resp.component_summary_list[0].description #=> String
|
|
@@ -2155,14 +2190,11 @@ module Aws::Imagebuilder
|
|
|
2155
2190
|
# <major>.<minor>.<patch>/<build>. You can
|
|
2156
2191
|
# assign values for the first three, and can filter on all of them.
|
|
2157
2192
|
#
|
|
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.
|
|
2193
|
+
# **Filtering:** With semantic versioning, you have the flexibility to
|
|
2194
|
+
# use wildcards (x) to specify the most recent versions or nodes when
|
|
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
|
|
2197
|
+
# must also be wildcards.
|
|
2166
2198
|
#
|
|
2167
2199
|
# </note>
|
|
2168
2200
|
#
|
|
@@ -2174,7 +2206,19 @@ module Aws::Imagebuilder
|
|
|
2174
2206
|
# you by other customers.
|
|
2175
2207
|
#
|
|
2176
2208
|
# @option params [Array<Types::Filter>] :filters
|
|
2177
|
-
#
|
|
2209
|
+
# Use the following filters to streamline results:
|
|
2210
|
+
#
|
|
2211
|
+
# * `description`
|
|
2212
|
+
#
|
|
2213
|
+
# * `name`
|
|
2214
|
+
#
|
|
2215
|
+
# * `platform`
|
|
2216
|
+
#
|
|
2217
|
+
# * `supportedOsVersion`
|
|
2218
|
+
#
|
|
2219
|
+
# * `type`
|
|
2220
|
+
#
|
|
2221
|
+
# * `version`
|
|
2178
2222
|
#
|
|
2179
2223
|
# @option params [Boolean] :by_name
|
|
2180
2224
|
# Returns the list of component build versions for the specified name.
|
|
@@ -2242,8 +2286,15 @@ module Aws::Imagebuilder
|
|
|
2242
2286
|
# recipes belonging to your account.
|
|
2243
2287
|
#
|
|
2244
2288
|
# @option params [Array<Types::Filter>] :filters
|
|
2245
|
-
#
|
|
2246
|
-
#
|
|
2289
|
+
# Use the following filters to streamline results:
|
|
2290
|
+
#
|
|
2291
|
+
# * `containerType`
|
|
2292
|
+
#
|
|
2293
|
+
# * `name`
|
|
2294
|
+
#
|
|
2295
|
+
# * `parentImage`
|
|
2296
|
+
#
|
|
2297
|
+
# * `platform`
|
|
2247
2298
|
#
|
|
2248
2299
|
# @option params [Integer] :max_results
|
|
2249
2300
|
# The maximum number of results to return in the list.
|
|
@@ -2302,11 +2353,7 @@ module Aws::Imagebuilder
|
|
|
2302
2353
|
# Returns a list of distribution configurations.
|
|
2303
2354
|
#
|
|
2304
2355
|
# @option params [Array<Types::Filter>] :filters
|
|
2305
|
-
#
|
|
2306
|
-
#
|
|
2307
|
-
# * `name` - The name of this distribution configuration.
|
|
2308
|
-
#
|
|
2309
|
-
# ^
|
|
2356
|
+
# You can filter on `name` to streamline results.
|
|
2310
2357
|
#
|
|
2311
2358
|
# @option params [Integer] :max_results
|
|
2312
2359
|
# The maximum items to return in a request.
|
|
@@ -2367,7 +2414,17 @@ module Aws::Imagebuilder
|
|
|
2367
2414
|
# want to retrieve.
|
|
2368
2415
|
#
|
|
2369
2416
|
# @option params [Array<Types::Filter>] :filters
|
|
2370
|
-
#
|
|
2417
|
+
# Use the following filters to streamline results:
|
|
2418
|
+
#
|
|
2419
|
+
# * `name`
|
|
2420
|
+
#
|
|
2421
|
+
# * `osVersion`
|
|
2422
|
+
#
|
|
2423
|
+
# * `platform`
|
|
2424
|
+
#
|
|
2425
|
+
# * `type`
|
|
2426
|
+
#
|
|
2427
|
+
# * `version`
|
|
2371
2428
|
#
|
|
2372
2429
|
# @option params [Integer] :max_results
|
|
2373
2430
|
# The maximum items to return in a request.
|
|
@@ -2438,7 +2495,8 @@ module Aws::Imagebuilder
|
|
|
2438
2495
|
end
|
|
2439
2496
|
|
|
2440
2497
|
# List the Packages that are associated with an Image Build Version, as
|
|
2441
|
-
# determined by Amazon
|
|
2498
|
+
# determined by Amazon Web Services Systems Manager Inventory at build
|
|
2499
|
+
# time.
|
|
2442
2500
|
#
|
|
2443
2501
|
# @option params [required, String] :image_build_version_arn
|
|
2444
2502
|
# Filter results for the ListImagePackages request by the Image Build
|
|
@@ -2492,7 +2550,11 @@ module Aws::Imagebuilder
|
|
|
2492
2550
|
# want to view.
|
|
2493
2551
|
#
|
|
2494
2552
|
# @option params [Array<Types::Filter>] :filters
|
|
2495
|
-
#
|
|
2553
|
+
# Use the following filters to streamline results:
|
|
2554
|
+
#
|
|
2555
|
+
# * `name`
|
|
2556
|
+
#
|
|
2557
|
+
# * `version`
|
|
2496
2558
|
#
|
|
2497
2559
|
# @option params [Integer] :max_results
|
|
2498
2560
|
# The maximum items to return in a request.
|
|
@@ -2565,7 +2627,19 @@ module Aws::Imagebuilder
|
|
|
2565
2627
|
# Returns a list of image pipelines.
|
|
2566
2628
|
#
|
|
2567
2629
|
# @option params [Array<Types::Filter>] :filters
|
|
2568
|
-
#
|
|
2630
|
+
# Use the following filters to streamline results:
|
|
2631
|
+
#
|
|
2632
|
+
# * `description`
|
|
2633
|
+
#
|
|
2634
|
+
# * `distributionConfigurationArn`
|
|
2635
|
+
#
|
|
2636
|
+
# * `imageRecipeArn`
|
|
2637
|
+
#
|
|
2638
|
+
# * `infrastructureConfigurationArn`
|
|
2639
|
+
#
|
|
2640
|
+
# * `name`
|
|
2641
|
+
#
|
|
2642
|
+
# * `status`
|
|
2569
2643
|
#
|
|
2570
2644
|
# @option params [Integer] :max_results
|
|
2571
2645
|
# The maximum items to return in a request.
|
|
@@ -2641,7 +2715,13 @@ module Aws::Imagebuilder
|
|
|
2641
2715
|
# with you by other customers.
|
|
2642
2716
|
#
|
|
2643
2717
|
# @option params [Array<Types::Filter>] :filters
|
|
2644
|
-
#
|
|
2718
|
+
# Use the following filters to streamline results:
|
|
2719
|
+
#
|
|
2720
|
+
# * `name`
|
|
2721
|
+
#
|
|
2722
|
+
# * `parentImage`
|
|
2723
|
+
#
|
|
2724
|
+
# * `platform`
|
|
2645
2725
|
#
|
|
2646
2726
|
# @option params [Integer] :max_results
|
|
2647
2727
|
# The maximum items to return in a request.
|
|
@@ -2705,7 +2785,17 @@ module Aws::Imagebuilder
|
|
|
2705
2785
|
# customers.
|
|
2706
2786
|
#
|
|
2707
2787
|
# @option params [Array<Types::Filter>] :filters
|
|
2708
|
-
#
|
|
2788
|
+
# Use the following filters to streamline results:
|
|
2789
|
+
#
|
|
2790
|
+
# * `name`
|
|
2791
|
+
#
|
|
2792
|
+
# * `osVersion`
|
|
2793
|
+
#
|
|
2794
|
+
# * `platform`
|
|
2795
|
+
#
|
|
2796
|
+
# * `type`
|
|
2797
|
+
#
|
|
2798
|
+
# * `version`
|
|
2709
2799
|
#
|
|
2710
2800
|
# @option params [Boolean] :by_name
|
|
2711
2801
|
# Requests a list of images with a specific recipe name.
|
|
@@ -2770,7 +2860,7 @@ module Aws::Imagebuilder
|
|
|
2770
2860
|
# Returns a list of infrastructure configurations.
|
|
2771
2861
|
#
|
|
2772
2862
|
# @option params [Array<Types::Filter>] :filters
|
|
2773
|
-
#
|
|
2863
|
+
# You can filter on `name` to streamline results.
|
|
2774
2864
|
#
|
|
2775
2865
|
# @option params [Integer] :max_results
|
|
2776
2866
|
# The maximum items to return in a request.
|
|
@@ -3338,7 +3428,7 @@ module Aws::Imagebuilder
|
|
|
3338
3428
|
# The logging configuration of the infrastructure configuration.
|
|
3339
3429
|
#
|
|
3340
3430
|
# @option params [String] :key_pair
|
|
3341
|
-
# The key pair of the infrastructure configuration.
|
|
3431
|
+
# The key pair of the infrastructure configuration. You can use this to
|
|
3342
3432
|
# log on to and debug the instance used to create your image.
|
|
3343
3433
|
#
|
|
3344
3434
|
# @option params [Boolean] :terminate_instance_on_failure
|
|
@@ -3359,6 +3449,23 @@ module Aws::Imagebuilder
|
|
|
3359
3449
|
# @option params [Hash<String,String>] :resource_tags
|
|
3360
3450
|
# The tags attached to the resource created by Image Builder.
|
|
3361
3451
|
#
|
|
3452
|
+
# @option params [Types::InstanceMetadataOptions] :instance_metadata_options
|
|
3453
|
+
# The instance metadata options that you can set for the HTTP requests
|
|
3454
|
+
# that pipeline builds use to launch EC2 build and test instances. For
|
|
3455
|
+
# more information about instance metadata options, see one of the
|
|
3456
|
+
# following links:
|
|
3457
|
+
#
|
|
3458
|
+
# * [Configure the instance metadata options][1] in the <i> <i>Amazon
|
|
3459
|
+
# EC2 User Guide</i> </i> for Linux instances.
|
|
3460
|
+
#
|
|
3461
|
+
# * [Configure the instance metadata options][2] in the <i> <i>Amazon
|
|
3462
|
+
# EC2 Windows Guide</i> </i> for Windows instances.
|
|
3463
|
+
#
|
|
3464
|
+
#
|
|
3465
|
+
#
|
|
3466
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/configuring-instance-metadata-options.html
|
|
3467
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/configuring-instance-metadata-options.html
|
|
3468
|
+
#
|
|
3362
3469
|
# @return [Types::UpdateInfrastructureConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
3363
3470
|
#
|
|
3364
3471
|
# * {Types::UpdateInfrastructureConfigurationResponse#request_id #request_id} => String
|
|
@@ -3387,6 +3494,10 @@ module Aws::Imagebuilder
|
|
|
3387
3494
|
# resource_tags: {
|
|
3388
3495
|
# "TagKey" => "TagValue",
|
|
3389
3496
|
# },
|
|
3497
|
+
# instance_metadata_options: {
|
|
3498
|
+
# http_tokens: "HttpTokens",
|
|
3499
|
+
# http_put_response_hop_limit: 1,
|
|
3500
|
+
# },
|
|
3390
3501
|
# })
|
|
3391
3502
|
#
|
|
3392
3503
|
# @example Response structure
|
|
@@ -3417,7 +3528,7 @@ module Aws::Imagebuilder
|
|
|
3417
3528
|
params: params,
|
|
3418
3529
|
config: config)
|
|
3419
3530
|
context[:gem_name] = 'aws-sdk-imagebuilder'
|
|
3420
|
-
context[:gem_version] = '1.
|
|
3531
|
+
context[:gem_version] = '1.31.0'
|
|
3421
3532
|
Seahorse::Client::Request.new(handlers, context)
|
|
3422
3533
|
end
|
|
3423
3534
|
|
|
@@ -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"))
|