aws-sdk-imagebuilder 1.6.0 → 1.12.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/lib/aws-sdk-imagebuilder.rb +3 -1
- data/lib/aws-sdk-imagebuilder/client.rb +43 -8
- data/lib/aws-sdk-imagebuilder/client_api.rb +26 -2
- data/lib/aws-sdk-imagebuilder/errors.rb +18 -0
- data/lib/aws-sdk-imagebuilder/resource.rb +2 -0
- data/lib/aws-sdk-imagebuilder/types.rb +203 -5
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8acec2cecee5877f59c036d612a2174c35b12b23fd882d1eb2160d558e7b5175
|
4
|
+
data.tar.gz: 07a285284eb85c91ce47a78cf8a1992c69b171ad4bccd131eb2b216a6bde4e42
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fc9a3ef44ebaecef5209cab3052bf1c1bceadf16c354bd665022686337af71e3f28e75a1cc0825db54413cbc0c171bd12a452524b42d92e8017d73d5ca590836
|
7
|
+
data.tar.gz: f8877e4fdb6f125cb9f5b6843abce6ee31c6af33374796fb7b72c8f2859fb81d01789663e865601ee61b0b25bc3f86139430d08b0febb89eb3718fa674eb0038
|
data/lib/aws-sdk-imagebuilder.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-imagebuilder/customizations'
|
|
45
47
|
# @service
|
46
48
|
module Aws::Imagebuilder
|
47
49
|
|
48
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.12.0'
|
49
51
|
|
50
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
@@ -69,6 +72,7 @@ module Aws::Imagebuilder
|
|
69
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
70
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
71
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
72
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
73
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
74
78
|
|
@@ -161,7 +165,7 @@ module Aws::Imagebuilder
|
|
161
165
|
# @option options [String] :endpoint
|
162
166
|
# The client endpoint is normally constructed from the `:region`
|
163
167
|
# option. You should only configure an `:endpoint` when connecting
|
164
|
-
# to test endpoints. This should be a valid HTTP(S) URI.
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
165
169
|
#
|
166
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
167
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -176,7 +180,7 @@ module Aws::Imagebuilder
|
|
176
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
177
181
|
#
|
178
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
179
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
180
184
|
#
|
181
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
182
186
|
# The log formatter.
|
@@ -479,6 +483,7 @@ module Aws::Imagebuilder
|
|
479
483
|
# ami_tags: {
|
480
484
|
# "TagKey" => "TagValue",
|
481
485
|
# },
|
486
|
+
# kms_key_id: "NonEmptyString",
|
482
487
|
# launch_permission: {
|
483
488
|
# user_ids: ["NonEmptyString"],
|
484
489
|
# user_groups: ["NonEmptyString"],
|
@@ -705,6 +710,9 @@ module Aws::Imagebuilder
|
|
705
710
|
# @option params [Hash<String,String>] :tags
|
706
711
|
# The tags of the image recipe.
|
707
712
|
#
|
713
|
+
# @option params [String] :working_directory
|
714
|
+
# The working directory to be used during build and test workflows.
|
715
|
+
#
|
708
716
|
# @option params [required, String] :client_token
|
709
717
|
# The idempotency token used to make this request idempotent.
|
710
718
|
#
|
@@ -748,6 +756,7 @@ module Aws::Imagebuilder
|
|
748
756
|
# tags: {
|
749
757
|
# "TagKey" => "TagValue",
|
750
758
|
# },
|
759
|
+
# working_directory: "NonEmptyString",
|
751
760
|
# client_token: "ClientToken", # required
|
752
761
|
# })
|
753
762
|
#
|
@@ -809,6 +818,9 @@ module Aws::Imagebuilder
|
|
809
818
|
# @option params [String] :sns_topic_arn
|
810
819
|
# The SNS topic on which to send image build events.
|
811
820
|
#
|
821
|
+
# @option params [Hash<String,String>] :resource_tags
|
822
|
+
# The tags attached to the resource created by Image Builder.
|
823
|
+
#
|
812
824
|
# @option params [Hash<String,String>] :tags
|
813
825
|
# The tags of the infrastructure configuration.
|
814
826
|
#
|
@@ -842,6 +854,9 @@ module Aws::Imagebuilder
|
|
842
854
|
# key_pair: "NonEmptyString",
|
843
855
|
# terminate_instance_on_failure: false,
|
844
856
|
# sns_topic_arn: "SnsTopicArn",
|
857
|
+
# resource_tags: {
|
858
|
+
# "TagKey" => "TagValue",
|
859
|
+
# },
|
845
860
|
# tags: {
|
846
861
|
# "TagKey" => "TagValue",
|
847
862
|
# },
|
@@ -1060,7 +1075,7 @@ module Aws::Imagebuilder
|
|
1060
1075
|
# @example Request syntax with placeholder values
|
1061
1076
|
#
|
1062
1077
|
# resp = client.get_component({
|
1063
|
-
# component_build_version_arn: "
|
1078
|
+
# component_build_version_arn: "ComponentVersionArnOrBuildVersionArn", # required
|
1064
1079
|
# })
|
1065
1080
|
#
|
1066
1081
|
# @example Response structure
|
@@ -1152,6 +1167,7 @@ module Aws::Imagebuilder
|
|
1152
1167
|
# resp.distribution_configuration.distributions[0].ami_distribution_configuration.description #=> String
|
1153
1168
|
# resp.distribution_configuration.distributions[0].ami_distribution_configuration.ami_tags #=> Hash
|
1154
1169
|
# resp.distribution_configuration.distributions[0].ami_distribution_configuration.ami_tags["TagKey"] #=> String
|
1170
|
+
# resp.distribution_configuration.distributions[0].ami_distribution_configuration.kms_key_id #=> String
|
1155
1171
|
# resp.distribution_configuration.distributions[0].ami_distribution_configuration.launch_permission.user_ids #=> Array
|
1156
1172
|
# resp.distribution_configuration.distributions[0].ami_distribution_configuration.launch_permission.user_ids[0] #=> String
|
1157
1173
|
# resp.distribution_configuration.distributions[0].ami_distribution_configuration.launch_permission.user_groups #=> Array
|
@@ -1186,7 +1202,7 @@ module Aws::Imagebuilder
|
|
1186
1202
|
# @example Request syntax with placeholder values
|
1187
1203
|
#
|
1188
1204
|
# resp = client.get_image({
|
1189
|
-
# image_build_version_arn: "
|
1205
|
+
# image_build_version_arn: "ImageVersionArnOrBuildVersionArn", # required
|
1190
1206
|
# })
|
1191
1207
|
#
|
1192
1208
|
# @example Response structure
|
@@ -1223,6 +1239,7 @@ module Aws::Imagebuilder
|
|
1223
1239
|
# resp.image.image_recipe.date_created #=> String
|
1224
1240
|
# resp.image.image_recipe.tags #=> Hash
|
1225
1241
|
# resp.image.image_recipe.tags["TagKey"] #=> String
|
1242
|
+
# resp.image.image_recipe.working_directory #=> String
|
1226
1243
|
# resp.image.source_pipeline_name #=> String
|
1227
1244
|
# resp.image.source_pipeline_arn #=> String
|
1228
1245
|
# resp.image.infrastructure_configuration.arn #=> String
|
@@ -1241,6 +1258,8 @@ module Aws::Imagebuilder
|
|
1241
1258
|
# resp.image.infrastructure_configuration.sns_topic_arn #=> String
|
1242
1259
|
# resp.image.infrastructure_configuration.date_created #=> String
|
1243
1260
|
# resp.image.infrastructure_configuration.date_updated #=> String
|
1261
|
+
# resp.image.infrastructure_configuration.resource_tags #=> Hash
|
1262
|
+
# resp.image.infrastructure_configuration.resource_tags["TagKey"] #=> String
|
1244
1263
|
# resp.image.infrastructure_configuration.tags #=> Hash
|
1245
1264
|
# resp.image.infrastructure_configuration.tags["TagKey"] #=> String
|
1246
1265
|
# resp.image.distribution_configuration.arn #=> String
|
@@ -1252,6 +1271,7 @@ module Aws::Imagebuilder
|
|
1252
1271
|
# resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.description #=> String
|
1253
1272
|
# resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.ami_tags #=> Hash
|
1254
1273
|
# resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.ami_tags["TagKey"] #=> String
|
1274
|
+
# resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.kms_key_id #=> String
|
1255
1275
|
# resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.launch_permission.user_ids #=> Array
|
1256
1276
|
# resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.launch_permission.user_ids[0] #=> String
|
1257
1277
|
# resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.launch_permission.user_groups #=> Array
|
@@ -1408,6 +1428,7 @@ module Aws::Imagebuilder
|
|
1408
1428
|
# resp.image_recipe.date_created #=> String
|
1409
1429
|
# resp.image_recipe.tags #=> Hash
|
1410
1430
|
# resp.image_recipe.tags["TagKey"] #=> String
|
1431
|
+
# resp.image_recipe.working_directory #=> String
|
1411
1432
|
#
|
1412
1433
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetImageRecipe AWS API Documentation
|
1413
1434
|
#
|
@@ -1485,6 +1506,8 @@ module Aws::Imagebuilder
|
|
1485
1506
|
# resp.infrastructure_configuration.sns_topic_arn #=> String
|
1486
1507
|
# resp.infrastructure_configuration.date_created #=> String
|
1487
1508
|
# resp.infrastructure_configuration.date_updated #=> String
|
1509
|
+
# resp.infrastructure_configuration.resource_tags #=> Hash
|
1510
|
+
# resp.infrastructure_configuration.resource_tags["TagKey"] #=> String
|
1488
1511
|
# resp.infrastructure_configuration.tags #=> Hash
|
1489
1512
|
# resp.infrastructure_configuration.tags["TagKey"] #=> String
|
1490
1513
|
#
|
@@ -1718,6 +1741,10 @@ module Aws::Imagebuilder
|
|
1718
1741
|
# @option params [Array<Types::Filter>] :filters
|
1719
1742
|
# The filters.
|
1720
1743
|
#
|
1744
|
+
# * `name` - The name of this distribution configuration.
|
1745
|
+
#
|
1746
|
+
# ^
|
1747
|
+
#
|
1721
1748
|
# @option params [Integer] :max_results
|
1722
1749
|
# The maximum items to return in a request.
|
1723
1750
|
#
|
@@ -1768,7 +1795,7 @@ module Aws::Imagebuilder
|
|
1768
1795
|
req.send_request(options)
|
1769
1796
|
end
|
1770
1797
|
|
1771
|
-
# Returns a list of
|
1798
|
+
# Returns a list of image build versions.
|
1772
1799
|
#
|
1773
1800
|
# @option params [required, String] :image_version_arn
|
1774
1801
|
# The Amazon Resource Name (ARN) of the image whose build versions you
|
@@ -2041,8 +2068,7 @@ module Aws::Imagebuilder
|
|
2041
2068
|
req.send_request(options)
|
2042
2069
|
end
|
2043
2070
|
|
2044
|
-
# Returns the list of
|
2045
|
-
# version.
|
2071
|
+
# Returns the list of images that you have access to.
|
2046
2072
|
#
|
2047
2073
|
# @option params [String] :owner
|
2048
2074
|
# The owner defines which images you want to list. By default, this
|
@@ -2147,6 +2173,8 @@ module Aws::Imagebuilder
|
|
2147
2173
|
# resp.infrastructure_configuration_summary_list[0].description #=> String
|
2148
2174
|
# resp.infrastructure_configuration_summary_list[0].date_created #=> String
|
2149
2175
|
# resp.infrastructure_configuration_summary_list[0].date_updated #=> String
|
2176
|
+
# resp.infrastructure_configuration_summary_list[0].resource_tags #=> Hash
|
2177
|
+
# resp.infrastructure_configuration_summary_list[0].resource_tags["TagKey"] #=> String
|
2150
2178
|
# resp.infrastructure_configuration_summary_list[0].tags #=> Hash
|
2151
2179
|
# resp.infrastructure_configuration_summary_list[0].tags["TagKey"] #=> String
|
2152
2180
|
# resp.next_token #=> String
|
@@ -2456,6 +2484,7 @@ module Aws::Imagebuilder
|
|
2456
2484
|
# ami_tags: {
|
2457
2485
|
# "TagKey" => "TagValue",
|
2458
2486
|
# },
|
2487
|
+
# kms_key_id: "NonEmptyString",
|
2459
2488
|
# launch_permission: {
|
2460
2489
|
# user_ids: ["NonEmptyString"],
|
2461
2490
|
# user_groups: ["NonEmptyString"],
|
@@ -2617,6 +2646,9 @@ module Aws::Imagebuilder
|
|
2617
2646
|
# **A suitable default value is auto-generated.** You should normally
|
2618
2647
|
# not need to pass this option.**
|
2619
2648
|
#
|
2649
|
+
# @option params [Hash<String,String>] :resource_tags
|
2650
|
+
# The tags attached to the resource created by Image Builder.
|
2651
|
+
#
|
2620
2652
|
# @return [Types::UpdateInfrastructureConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2621
2653
|
#
|
2622
2654
|
# * {Types::UpdateInfrastructureConfigurationResponse#request_id #request_id} => String
|
@@ -2642,6 +2674,9 @@ module Aws::Imagebuilder
|
|
2642
2674
|
# terminate_instance_on_failure: false,
|
2643
2675
|
# sns_topic_arn: "SnsTopicArn",
|
2644
2676
|
# client_token: "ClientToken", # required
|
2677
|
+
# resource_tags: {
|
2678
|
+
# "TagKey" => "TagValue",
|
2679
|
+
# },
|
2645
2680
|
# })
|
2646
2681
|
#
|
2647
2682
|
# @example Response structure
|
@@ -2672,7 +2707,7 @@ module Aws::Imagebuilder
|
|
2672
2707
|
params: params,
|
2673
2708
|
config: config)
|
2674
2709
|
context[:gem_name] = 'aws-sdk-imagebuilder'
|
2675
|
-
context[:gem_version] = '1.
|
2710
|
+
context[:gem_version] = '1.12.0'
|
2676
2711
|
Seahorse::Client::Request.new(handlers, context)
|
2677
2712
|
end
|
2678
2713
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -117,6 +119,7 @@ module Aws::Imagebuilder
|
|
117
119
|
ImageTestsTimeoutMinutes = Shapes::IntegerShape.new(name: 'ImageTestsTimeoutMinutes')
|
118
120
|
ImageVersion = Shapes::StructureShape.new(name: 'ImageVersion')
|
119
121
|
ImageVersionArn = Shapes::StringShape.new(name: 'ImageVersionArn')
|
122
|
+
ImageVersionArnOrBuildVersionArn = Shapes::StringShape.new(name: 'ImageVersionArnOrBuildVersionArn')
|
120
123
|
ImageVersionList = Shapes::ListShape.new(name: 'ImageVersionList')
|
121
124
|
ImportComponentRequest = Shapes::StructureShape.new(name: 'ImportComponentRequest')
|
122
125
|
ImportComponentResponse = Shapes::StructureShape.new(name: 'ImportComponentResponse')
|
@@ -178,11 +181,13 @@ module Aws::Imagebuilder
|
|
178
181
|
ResourceName = Shapes::StringShape.new(name: 'ResourceName')
|
179
182
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
180
183
|
ResourcePolicyDocument = Shapes::StringShape.new(name: 'ResourcePolicyDocument')
|
184
|
+
ResourceTagMap = Shapes::MapShape.new(name: 'ResourceTagMap')
|
181
185
|
RestrictedInteger = Shapes::IntegerShape.new(name: 'RestrictedInteger')
|
182
186
|
S3Logs = Shapes::StructureShape.new(name: 'S3Logs')
|
183
187
|
Schedule = Shapes::StructureShape.new(name: 'Schedule')
|
184
188
|
SecurityGroupIds = Shapes::ListShape.new(name: 'SecurityGroupIds')
|
185
189
|
ServiceException = Shapes::StructureShape.new(name: 'ServiceException')
|
190
|
+
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
186
191
|
ServiceUnavailableException = Shapes::StructureShape.new(name: 'ServiceUnavailableException')
|
187
192
|
SnsTopicArn = Shapes::StringShape.new(name: 'SnsTopicArn')
|
188
193
|
StartImagePipelineExecutionRequest = Shapes::StructureShape.new(name: 'StartImagePipelineExecutionRequest')
|
@@ -217,6 +222,7 @@ module Aws::Imagebuilder
|
|
217
222
|
AmiDistributionConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: AmiNameString, location_name: "name"))
|
218
223
|
AmiDistributionConfiguration.add_member(:description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "description"))
|
219
224
|
AmiDistributionConfiguration.add_member(:ami_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "amiTags"))
|
225
|
+
AmiDistributionConfiguration.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "kmsKeyId"))
|
220
226
|
AmiDistributionConfiguration.add_member(:launch_permission, Shapes::ShapeRef.new(shape: LaunchPermissionConfiguration, location_name: "launchPermission"))
|
221
227
|
AmiDistributionConfiguration.struct_class = Types::AmiDistributionConfiguration
|
222
228
|
|
@@ -343,6 +349,7 @@ module Aws::Imagebuilder
|
|
343
349
|
CreateImageRecipeRequest.add_member(:parent_image, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "parentImage"))
|
344
350
|
CreateImageRecipeRequest.add_member(:block_device_mappings, Shapes::ShapeRef.new(shape: InstanceBlockDeviceMappings, location_name: "blockDeviceMappings"))
|
345
351
|
CreateImageRecipeRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
352
|
+
CreateImageRecipeRequest.add_member(:working_directory, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "workingDirectory"))
|
346
353
|
CreateImageRecipeRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
347
354
|
CreateImageRecipeRequest.struct_class = Types::CreateImageRecipeRequest
|
348
355
|
|
@@ -375,6 +382,7 @@ module Aws::Imagebuilder
|
|
375
382
|
CreateInfrastructureConfigurationRequest.add_member(:key_pair, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "keyPair"))
|
376
383
|
CreateInfrastructureConfigurationRequest.add_member(:terminate_instance_on_failure, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "terminateInstanceOnFailure"))
|
377
384
|
CreateInfrastructureConfigurationRequest.add_member(:sns_topic_arn, Shapes::ShapeRef.new(shape: SnsTopicArn, location_name: "snsTopicArn"))
|
385
|
+
CreateInfrastructureConfigurationRequest.add_member(:resource_tags, Shapes::ShapeRef.new(shape: ResourceTagMap, location_name: "resourceTags"))
|
378
386
|
CreateInfrastructureConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
379
387
|
CreateInfrastructureConfigurationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
380
388
|
CreateInfrastructureConfigurationRequest.struct_class = Types::CreateInfrastructureConfigurationRequest
|
@@ -480,7 +488,7 @@ module Aws::Imagebuilder
|
|
480
488
|
GetComponentPolicyResponse.add_member(:policy, Shapes::ShapeRef.new(shape: ResourcePolicyDocument, location_name: "policy"))
|
481
489
|
GetComponentPolicyResponse.struct_class = Types::GetComponentPolicyResponse
|
482
490
|
|
483
|
-
GetComponentRequest.add_member(:component_build_version_arn, Shapes::ShapeRef.new(shape:
|
491
|
+
GetComponentRequest.add_member(:component_build_version_arn, Shapes::ShapeRef.new(shape: ComponentVersionArnOrBuildVersionArn, required: true, location: "querystring", location_name: "componentBuildVersionArn"))
|
484
492
|
GetComponentRequest.struct_class = Types::GetComponentRequest
|
485
493
|
|
486
494
|
GetComponentResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
|
@@ -522,7 +530,7 @@ module Aws::Imagebuilder
|
|
522
530
|
GetImageRecipeResponse.add_member(:image_recipe, Shapes::ShapeRef.new(shape: ImageRecipe, location_name: "imageRecipe"))
|
523
531
|
GetImageRecipeResponse.struct_class = Types::GetImageRecipeResponse
|
524
532
|
|
525
|
-
GetImageRequest.add_member(:image_build_version_arn, Shapes::ShapeRef.new(shape:
|
533
|
+
GetImageRequest.add_member(:image_build_version_arn, Shapes::ShapeRef.new(shape: ImageVersionArnOrBuildVersionArn, required: true, location: "querystring", location_name: "imageBuildVersionArn"))
|
526
534
|
GetImageRequest.struct_class = Types::GetImageRequest
|
527
535
|
|
528
536
|
GetImageResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
|
@@ -588,6 +596,7 @@ module Aws::Imagebuilder
|
|
588
596
|
ImageRecipe.add_member(:block_device_mappings, Shapes::ShapeRef.new(shape: InstanceBlockDeviceMappings, location_name: "blockDeviceMappings"))
|
589
597
|
ImageRecipe.add_member(:date_created, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateCreated"))
|
590
598
|
ImageRecipe.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
599
|
+
ImageRecipe.add_member(:working_directory, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "workingDirectory"))
|
591
600
|
ImageRecipe.struct_class = Types::ImageRecipe
|
592
601
|
|
593
602
|
ImageRecipeSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ImageBuilderArn, location_name: "arn"))
|
@@ -666,6 +675,7 @@ module Aws::Imagebuilder
|
|
666
675
|
InfrastructureConfiguration.add_member(:sns_topic_arn, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "snsTopicArn"))
|
667
676
|
InfrastructureConfiguration.add_member(:date_created, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateCreated"))
|
668
677
|
InfrastructureConfiguration.add_member(:date_updated, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateUpdated"))
|
678
|
+
InfrastructureConfiguration.add_member(:resource_tags, Shapes::ShapeRef.new(shape: ResourceTagMap, location_name: "resourceTags"))
|
669
679
|
InfrastructureConfiguration.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
670
680
|
InfrastructureConfiguration.struct_class = Types::InfrastructureConfiguration
|
671
681
|
|
@@ -674,6 +684,7 @@ module Aws::Imagebuilder
|
|
674
684
|
InfrastructureConfigurationSummary.add_member(:description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "description"))
|
675
685
|
InfrastructureConfigurationSummary.add_member(:date_created, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateCreated"))
|
676
686
|
InfrastructureConfigurationSummary.add_member(:date_updated, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateUpdated"))
|
687
|
+
InfrastructureConfigurationSummary.add_member(:resource_tags, Shapes::ShapeRef.new(shape: ResourceTagMap, location_name: "resourceTags"))
|
677
688
|
InfrastructureConfigurationSummary.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
678
689
|
InfrastructureConfigurationSummary.struct_class = Types::InfrastructureConfigurationSummary
|
679
690
|
|
@@ -856,6 +867,9 @@ module Aws::Imagebuilder
|
|
856
867
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
857
868
|
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
858
869
|
|
870
|
+
ResourceTagMap.key = Shapes::ShapeRef.new(shape: TagKey)
|
871
|
+
ResourceTagMap.value = Shapes::ShapeRef.new(shape: TagValue)
|
872
|
+
|
859
873
|
S3Logs.add_member(:s3_bucket_name, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "s3BucketName"))
|
860
874
|
S3Logs.add_member(:s3_key_prefix, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "s3KeyPrefix"))
|
861
875
|
S3Logs.struct_class = Types::S3Logs
|
@@ -869,6 +883,9 @@ module Aws::Imagebuilder
|
|
869
883
|
ServiceException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
870
884
|
ServiceException.struct_class = Types::ServiceException
|
871
885
|
|
886
|
+
ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
887
|
+
ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
|
888
|
+
|
872
889
|
ServiceUnavailableException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
873
890
|
ServiceUnavailableException.struct_class = Types::ServiceUnavailableException
|
874
891
|
|
@@ -939,6 +956,7 @@ module Aws::Imagebuilder
|
|
939
956
|
UpdateInfrastructureConfigurationRequest.add_member(:terminate_instance_on_failure, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "terminateInstanceOnFailure"))
|
940
957
|
UpdateInfrastructureConfigurationRequest.add_member(:sns_topic_arn, Shapes::ShapeRef.new(shape: SnsTopicArn, location_name: "snsTopicArn"))
|
941
958
|
UpdateInfrastructureConfigurationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
959
|
+
UpdateInfrastructureConfigurationRequest.add_member(:resource_tags, Shapes::ShapeRef.new(shape: ResourceTagMap, location_name: "resourceTags"))
|
942
960
|
UpdateInfrastructureConfigurationRequest.struct_class = Types::UpdateInfrastructureConfigurationRequest
|
943
961
|
|
944
962
|
UpdateInfrastructureConfigurationResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
|
@@ -997,6 +1015,7 @@ module Aws::Imagebuilder
|
|
997
1015
|
o.errors << Shapes::ShapeRef.new(shape: InvalidVersionNumberException)
|
998
1016
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
999
1017
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
1018
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
1000
1019
|
end)
|
1001
1020
|
|
1002
1021
|
api.add_operation(:create_distribution_configuration, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1015,6 +1034,7 @@ module Aws::Imagebuilder
|
|
1015
1034
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1016
1035
|
o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsException)
|
1017
1036
|
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterCombinationException)
|
1037
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
1018
1038
|
end)
|
1019
1039
|
|
1020
1040
|
api.add_operation(:create_image, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1031,6 +1051,7 @@ module Aws::Imagebuilder
|
|
1031
1051
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
1032
1052
|
o.errors << Shapes::ShapeRef.new(shape: CallRateLimitExceededException)
|
1033
1053
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1054
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
1034
1055
|
end)
|
1035
1056
|
|
1036
1057
|
api.add_operation(:create_image_pipeline, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1048,6 +1069,7 @@ module Aws::Imagebuilder
|
|
1048
1069
|
o.errors << Shapes::ShapeRef.new(shape: CallRateLimitExceededException)
|
1049
1070
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1050
1071
|
o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsException)
|
1072
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
1051
1073
|
end)
|
1052
1074
|
|
1053
1075
|
api.add_operation(:create_image_recipe, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1066,6 +1088,7 @@ module Aws::Imagebuilder
|
|
1066
1088
|
o.errors << Shapes::ShapeRef.new(shape: InvalidVersionNumberException)
|
1067
1089
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1068
1090
|
o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsException)
|
1091
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
1069
1092
|
end)
|
1070
1093
|
|
1071
1094
|
api.add_operation(:create_infrastructure_configuration, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1083,6 +1106,7 @@ module Aws::Imagebuilder
|
|
1083
1106
|
o.errors << Shapes::ShapeRef.new(shape: CallRateLimitExceededException)
|
1084
1107
|
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1085
1108
|
o.errors << Shapes::ShapeRef.new(shape: ResourceAlreadyExistsException)
|
1109
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
1086
1110
|
end)
|
1087
1111
|
|
1088
1112
|
api.add_operation(:delete_component, Seahorse::Model::Operation.new.tap do |o|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -40,6 +42,7 @@ module Aws::Imagebuilder
|
|
40
42
|
# * {ResourceInUseException}
|
41
43
|
# * {ResourceNotFoundException}
|
42
44
|
# * {ServiceException}
|
45
|
+
# * {ServiceQuotaExceededException}
|
43
46
|
# * {ServiceUnavailableException}
|
44
47
|
#
|
45
48
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
@@ -273,6 +276,21 @@ module Aws::Imagebuilder
|
|
273
276
|
end
|
274
277
|
end
|
275
278
|
|
279
|
+
class ServiceQuotaExceededException < ServiceError
|
280
|
+
|
281
|
+
# @param [Seahorse::Client::RequestContext] context
|
282
|
+
# @param [String] message
|
283
|
+
# @param [Aws::Imagebuilder::Types::ServiceQuotaExceededException] data
|
284
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
285
|
+
super(context, message, data)
|
286
|
+
end
|
287
|
+
|
288
|
+
# @return [String]
|
289
|
+
def message
|
290
|
+
@message || @data[:message]
|
291
|
+
end
|
292
|
+
end
|
293
|
+
|
276
294
|
class ServiceUnavailableException < ServiceError
|
277
295
|
|
278
296
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -38,6 +40,7 @@ module Aws::Imagebuilder
|
|
38
40
|
:name,
|
39
41
|
:description,
|
40
42
|
:state)
|
43
|
+
SENSITIVE = []
|
41
44
|
include Aws::Structure
|
42
45
|
end
|
43
46
|
|
@@ -52,6 +55,7 @@ module Aws::Imagebuilder
|
|
52
55
|
# ami_tags: {
|
53
56
|
# "TagKey" => "TagValue",
|
54
57
|
# },
|
58
|
+
# kms_key_id: "NonEmptyString",
|
55
59
|
# launch_permission: {
|
56
60
|
# user_ids: ["NonEmptyString"],
|
57
61
|
# user_groups: ["NonEmptyString"],
|
@@ -70,6 +74,10 @@ module Aws::Imagebuilder
|
|
70
74
|
# The tags to apply to AMIs distributed to this Region.
|
71
75
|
# @return [Hash<String,String>]
|
72
76
|
#
|
77
|
+
# @!attribute [rw] kms_key_id
|
78
|
+
# The KMS key identifier used to encrypt the distributed image.
|
79
|
+
# @return [String]
|
80
|
+
#
|
73
81
|
# @!attribute [rw] launch_permission
|
74
82
|
# Launch permissions can be used to configure which AWS accounts can
|
75
83
|
# use the AMI to launch instances.
|
@@ -81,7 +89,9 @@ module Aws::Imagebuilder
|
|
81
89
|
:name,
|
82
90
|
:description,
|
83
91
|
:ami_tags,
|
92
|
+
:kms_key_id,
|
84
93
|
:launch_permission)
|
94
|
+
SENSITIVE = []
|
85
95
|
include Aws::Structure
|
86
96
|
end
|
87
97
|
|
@@ -95,6 +105,7 @@ module Aws::Imagebuilder
|
|
95
105
|
#
|
96
106
|
class CallRateLimitExceededException < Struct.new(
|
97
107
|
:message)
|
108
|
+
SENSITIVE = []
|
98
109
|
include Aws::Structure
|
99
110
|
end
|
100
111
|
|
@@ -123,6 +134,7 @@ module Aws::Imagebuilder
|
|
123
134
|
class CancelImageCreationRequest < Struct.new(
|
124
135
|
:image_build_version_arn,
|
125
136
|
:client_token)
|
137
|
+
SENSITIVE = []
|
126
138
|
include Aws::Structure
|
127
139
|
end
|
128
140
|
|
@@ -145,6 +157,7 @@ module Aws::Imagebuilder
|
|
145
157
|
:request_id,
|
146
158
|
:client_token,
|
147
159
|
:image_build_version_arn)
|
160
|
+
SENSITIVE = []
|
148
161
|
include Aws::Structure
|
149
162
|
end
|
150
163
|
|
@@ -160,6 +173,7 @@ module Aws::Imagebuilder
|
|
160
173
|
#
|
161
174
|
class ClientException < Struct.new(
|
162
175
|
:message)
|
176
|
+
SENSITIVE = []
|
163
177
|
include Aws::Structure
|
164
178
|
end
|
165
179
|
|
@@ -241,6 +255,7 @@ module Aws::Imagebuilder
|
|
241
255
|
:encrypted,
|
242
256
|
:date_created,
|
243
257
|
:tags)
|
258
|
+
SENSITIVE = []
|
244
259
|
include Aws::Structure
|
245
260
|
end
|
246
261
|
|
@@ -261,6 +276,7 @@ module Aws::Imagebuilder
|
|
261
276
|
#
|
262
277
|
class ComponentConfiguration < Struct.new(
|
263
278
|
:component_arn)
|
279
|
+
SENSITIVE = []
|
264
280
|
include Aws::Structure
|
265
281
|
end
|
266
282
|
|
@@ -327,6 +343,7 @@ module Aws::Imagebuilder
|
|
327
343
|
:change_description,
|
328
344
|
:date_created,
|
329
345
|
:tags)
|
346
|
+
SENSITIVE = []
|
330
347
|
include Aws::Structure
|
331
348
|
end
|
332
349
|
|
@@ -383,6 +400,7 @@ module Aws::Imagebuilder
|
|
383
400
|
:type,
|
384
401
|
:owner,
|
385
402
|
:date_created)
|
403
|
+
SENSITIVE = []
|
386
404
|
include Aws::Structure
|
387
405
|
end
|
388
406
|
|
@@ -478,6 +496,7 @@ module Aws::Imagebuilder
|
|
478
496
|
:kms_key_id,
|
479
497
|
:tags,
|
480
498
|
:client_token)
|
499
|
+
SENSITIVE = []
|
481
500
|
include Aws::Structure
|
482
501
|
end
|
483
502
|
|
@@ -500,6 +519,7 @@ module Aws::Imagebuilder
|
|
500
519
|
:request_id,
|
501
520
|
:client_token,
|
502
521
|
:component_build_version_arn)
|
522
|
+
SENSITIVE = []
|
503
523
|
include Aws::Structure
|
504
524
|
end
|
505
525
|
|
@@ -518,6 +538,7 @@ module Aws::Imagebuilder
|
|
518
538
|
# ami_tags: {
|
519
539
|
# "TagKey" => "TagValue",
|
520
540
|
# },
|
541
|
+
# kms_key_id: "NonEmptyString",
|
521
542
|
# launch_permission: {
|
522
543
|
# user_ids: ["NonEmptyString"],
|
523
544
|
# user_groups: ["NonEmptyString"],
|
@@ -563,6 +584,7 @@ module Aws::Imagebuilder
|
|
563
584
|
:distributions,
|
564
585
|
:tags,
|
565
586
|
:client_token)
|
587
|
+
SENSITIVE = []
|
566
588
|
include Aws::Structure
|
567
589
|
end
|
568
590
|
|
@@ -585,6 +607,7 @@ module Aws::Imagebuilder
|
|
585
607
|
:request_id,
|
586
608
|
:client_token,
|
587
609
|
:distribution_configuration_arn)
|
610
|
+
SENSITIVE = []
|
588
611
|
include Aws::Structure
|
589
612
|
end
|
590
613
|
|
@@ -681,6 +704,7 @@ module Aws::Imagebuilder
|
|
681
704
|
:status,
|
682
705
|
:tags,
|
683
706
|
:client_token)
|
707
|
+
SENSITIVE = []
|
684
708
|
include Aws::Structure
|
685
709
|
end
|
686
710
|
|
@@ -703,6 +727,7 @@ module Aws::Imagebuilder
|
|
703
727
|
:request_id,
|
704
728
|
:client_token,
|
705
729
|
:image_pipeline_arn)
|
730
|
+
SENSITIVE = []
|
706
731
|
include Aws::Structure
|
707
732
|
end
|
708
733
|
|
@@ -738,6 +763,7 @@ module Aws::Imagebuilder
|
|
738
763
|
# tags: {
|
739
764
|
# "TagKey" => "TagValue",
|
740
765
|
# },
|
766
|
+
# working_directory: "NonEmptyString",
|
741
767
|
# client_token: "ClientToken", # required
|
742
768
|
# }
|
743
769
|
#
|
@@ -778,6 +804,10 @@ module Aws::Imagebuilder
|
|
778
804
|
# The tags of the image recipe.
|
779
805
|
# @return [Hash<String,String>]
|
780
806
|
#
|
807
|
+
# @!attribute [rw] working_directory
|
808
|
+
# The working directory to be used during build and test workflows.
|
809
|
+
# @return [String]
|
810
|
+
#
|
781
811
|
# @!attribute [rw] client_token
|
782
812
|
# The idempotency token used to make this request idempotent.
|
783
813
|
#
|
@@ -795,7 +825,9 @@ module Aws::Imagebuilder
|
|
795
825
|
:parent_image,
|
796
826
|
:block_device_mappings,
|
797
827
|
:tags,
|
828
|
+
:working_directory,
|
798
829
|
:client_token)
|
830
|
+
SENSITIVE = []
|
799
831
|
include Aws::Structure
|
800
832
|
end
|
801
833
|
|
@@ -818,6 +850,7 @@ module Aws::Imagebuilder
|
|
818
850
|
:request_id,
|
819
851
|
:client_token,
|
820
852
|
:image_recipe_arn)
|
853
|
+
SENSITIVE = []
|
821
854
|
include Aws::Structure
|
822
855
|
end
|
823
856
|
|
@@ -887,6 +920,7 @@ module Aws::Imagebuilder
|
|
887
920
|
:enhanced_image_metadata_enabled,
|
888
921
|
:tags,
|
889
922
|
:client_token)
|
923
|
+
SENSITIVE = []
|
890
924
|
include Aws::Structure
|
891
925
|
end
|
892
926
|
|
@@ -909,6 +943,7 @@ module Aws::Imagebuilder
|
|
909
943
|
:request_id,
|
910
944
|
:client_token,
|
911
945
|
:image_build_version_arn)
|
946
|
+
SENSITIVE = []
|
912
947
|
include Aws::Structure
|
913
948
|
end
|
914
949
|
|
@@ -931,6 +966,9 @@ module Aws::Imagebuilder
|
|
931
966
|
# key_pair: "NonEmptyString",
|
932
967
|
# terminate_instance_on_failure: false,
|
933
968
|
# sns_topic_arn: "SnsTopicArn",
|
969
|
+
# resource_tags: {
|
970
|
+
# "TagKey" => "TagValue",
|
971
|
+
# },
|
934
972
|
# tags: {
|
935
973
|
# "TagKey" => "TagValue",
|
936
974
|
# },
|
@@ -986,6 +1024,10 @@ module Aws::Imagebuilder
|
|
986
1024
|
# The SNS topic on which to send image build events.
|
987
1025
|
# @return [String]
|
988
1026
|
#
|
1027
|
+
# @!attribute [rw] resource_tags
|
1028
|
+
# The tags attached to the resource created by Image Builder.
|
1029
|
+
# @return [Hash<String,String>]
|
1030
|
+
#
|
989
1031
|
# @!attribute [rw] tags
|
990
1032
|
# The tags of the infrastructure configuration.
|
991
1033
|
# @return [Hash<String,String>]
|
@@ -1010,8 +1052,10 @@ module Aws::Imagebuilder
|
|
1010
1052
|
:key_pair,
|
1011
1053
|
:terminate_instance_on_failure,
|
1012
1054
|
:sns_topic_arn,
|
1055
|
+
:resource_tags,
|
1013
1056
|
:tags,
|
1014
1057
|
:client_token)
|
1058
|
+
SENSITIVE = []
|
1015
1059
|
include Aws::Structure
|
1016
1060
|
end
|
1017
1061
|
|
@@ -1034,6 +1078,7 @@ module Aws::Imagebuilder
|
|
1034
1078
|
:request_id,
|
1035
1079
|
:client_token,
|
1036
1080
|
:infrastructure_configuration_arn)
|
1081
|
+
SENSITIVE = []
|
1037
1082
|
include Aws::Structure
|
1038
1083
|
end
|
1039
1084
|
|
@@ -1053,6 +1098,7 @@ module Aws::Imagebuilder
|
|
1053
1098
|
#
|
1054
1099
|
class DeleteComponentRequest < Struct.new(
|
1055
1100
|
:component_build_version_arn)
|
1101
|
+
SENSITIVE = []
|
1056
1102
|
include Aws::Structure
|
1057
1103
|
end
|
1058
1104
|
|
@@ -1070,6 +1116,7 @@ module Aws::Imagebuilder
|
|
1070
1116
|
class DeleteComponentResponse < Struct.new(
|
1071
1117
|
:request_id,
|
1072
1118
|
:component_build_version_arn)
|
1119
|
+
SENSITIVE = []
|
1073
1120
|
include Aws::Structure
|
1074
1121
|
end
|
1075
1122
|
|
@@ -1089,6 +1136,7 @@ module Aws::Imagebuilder
|
|
1089
1136
|
#
|
1090
1137
|
class DeleteDistributionConfigurationRequest < Struct.new(
|
1091
1138
|
:distribution_configuration_arn)
|
1139
|
+
SENSITIVE = []
|
1092
1140
|
include Aws::Structure
|
1093
1141
|
end
|
1094
1142
|
|
@@ -1106,6 +1154,7 @@ module Aws::Imagebuilder
|
|
1106
1154
|
class DeleteDistributionConfigurationResponse < Struct.new(
|
1107
1155
|
:request_id,
|
1108
1156
|
:distribution_configuration_arn)
|
1157
|
+
SENSITIVE = []
|
1109
1158
|
include Aws::Structure
|
1110
1159
|
end
|
1111
1160
|
|
@@ -1124,6 +1173,7 @@ module Aws::Imagebuilder
|
|
1124
1173
|
#
|
1125
1174
|
class DeleteImagePipelineRequest < Struct.new(
|
1126
1175
|
:image_pipeline_arn)
|
1176
|
+
SENSITIVE = []
|
1127
1177
|
include Aws::Structure
|
1128
1178
|
end
|
1129
1179
|
|
@@ -1141,6 +1191,7 @@ module Aws::Imagebuilder
|
|
1141
1191
|
class DeleteImagePipelineResponse < Struct.new(
|
1142
1192
|
:request_id,
|
1143
1193
|
:image_pipeline_arn)
|
1194
|
+
SENSITIVE = []
|
1144
1195
|
include Aws::Structure
|
1145
1196
|
end
|
1146
1197
|
|
@@ -1159,6 +1210,7 @@ module Aws::Imagebuilder
|
|
1159
1210
|
#
|
1160
1211
|
class DeleteImageRecipeRequest < Struct.new(
|
1161
1212
|
:image_recipe_arn)
|
1213
|
+
SENSITIVE = []
|
1162
1214
|
include Aws::Structure
|
1163
1215
|
end
|
1164
1216
|
|
@@ -1175,6 +1227,7 @@ module Aws::Imagebuilder
|
|
1175
1227
|
class DeleteImageRecipeResponse < Struct.new(
|
1176
1228
|
:request_id,
|
1177
1229
|
:image_recipe_arn)
|
1230
|
+
SENSITIVE = []
|
1178
1231
|
include Aws::Structure
|
1179
1232
|
end
|
1180
1233
|
|
@@ -1193,6 +1246,7 @@ module Aws::Imagebuilder
|
|
1193
1246
|
#
|
1194
1247
|
class DeleteImageRequest < Struct.new(
|
1195
1248
|
:image_build_version_arn)
|
1249
|
+
SENSITIVE = []
|
1196
1250
|
include Aws::Structure
|
1197
1251
|
end
|
1198
1252
|
|
@@ -1209,6 +1263,7 @@ module Aws::Imagebuilder
|
|
1209
1263
|
class DeleteImageResponse < Struct.new(
|
1210
1264
|
:request_id,
|
1211
1265
|
:image_build_version_arn)
|
1266
|
+
SENSITIVE = []
|
1212
1267
|
include Aws::Structure
|
1213
1268
|
end
|
1214
1269
|
|
@@ -1228,6 +1283,7 @@ module Aws::Imagebuilder
|
|
1228
1283
|
#
|
1229
1284
|
class DeleteInfrastructureConfigurationRequest < Struct.new(
|
1230
1285
|
:infrastructure_configuration_arn)
|
1286
|
+
SENSITIVE = []
|
1231
1287
|
include Aws::Structure
|
1232
1288
|
end
|
1233
1289
|
|
@@ -1245,6 +1301,7 @@ module Aws::Imagebuilder
|
|
1245
1301
|
class DeleteInfrastructureConfigurationResponse < Struct.new(
|
1246
1302
|
:request_id,
|
1247
1303
|
:infrastructure_configuration_arn)
|
1304
|
+
SENSITIVE = []
|
1248
1305
|
include Aws::Structure
|
1249
1306
|
end
|
1250
1307
|
|
@@ -1261,6 +1318,7 @@ module Aws::Imagebuilder
|
|
1261
1318
|
# ami_tags: {
|
1262
1319
|
# "TagKey" => "TagValue",
|
1263
1320
|
# },
|
1321
|
+
# kms_key_id: "NonEmptyString",
|
1264
1322
|
# launch_permission: {
|
1265
1323
|
# user_ids: ["NonEmptyString"],
|
1266
1324
|
# user_groups: ["NonEmptyString"],
|
@@ -1289,6 +1347,7 @@ module Aws::Imagebuilder
|
|
1289
1347
|
:region,
|
1290
1348
|
:ami_distribution_configuration,
|
1291
1349
|
:license_configuration_arns)
|
1350
|
+
SENSITIVE = []
|
1292
1351
|
include Aws::Structure
|
1293
1352
|
end
|
1294
1353
|
|
@@ -1337,6 +1396,7 @@ module Aws::Imagebuilder
|
|
1337
1396
|
:date_created,
|
1338
1397
|
:date_updated,
|
1339
1398
|
:tags)
|
1399
|
+
SENSITIVE = []
|
1340
1400
|
include Aws::Structure
|
1341
1401
|
end
|
1342
1402
|
|
@@ -1375,6 +1435,7 @@ module Aws::Imagebuilder
|
|
1375
1435
|
:date_created,
|
1376
1436
|
:date_updated,
|
1377
1437
|
:tags)
|
1438
|
+
SENSITIVE = []
|
1378
1439
|
include Aws::Structure
|
1379
1440
|
end
|
1380
1441
|
|
@@ -1431,6 +1492,7 @@ module Aws::Imagebuilder
|
|
1431
1492
|
:snapshot_id,
|
1432
1493
|
:volume_size,
|
1433
1494
|
:volume_type)
|
1495
|
+
SENSITIVE = []
|
1434
1496
|
include Aws::Structure
|
1435
1497
|
end
|
1436
1498
|
|
@@ -1460,6 +1522,7 @@ module Aws::Imagebuilder
|
|
1460
1522
|
class Filter < Struct.new(
|
1461
1523
|
:name,
|
1462
1524
|
:values)
|
1525
|
+
SENSITIVE = []
|
1463
1526
|
include Aws::Structure
|
1464
1527
|
end
|
1465
1528
|
|
@@ -1472,6 +1535,7 @@ module Aws::Imagebuilder
|
|
1472
1535
|
#
|
1473
1536
|
class ForbiddenException < Struct.new(
|
1474
1537
|
:message)
|
1538
|
+
SENSITIVE = []
|
1475
1539
|
include Aws::Structure
|
1476
1540
|
end
|
1477
1541
|
|
@@ -1491,6 +1555,7 @@ module Aws::Imagebuilder
|
|
1491
1555
|
#
|
1492
1556
|
class GetComponentPolicyRequest < Struct.new(
|
1493
1557
|
:component_arn)
|
1558
|
+
SENSITIVE = []
|
1494
1559
|
include Aws::Structure
|
1495
1560
|
end
|
1496
1561
|
|
@@ -1507,6 +1572,7 @@ module Aws::Imagebuilder
|
|
1507
1572
|
class GetComponentPolicyResponse < Struct.new(
|
1508
1573
|
:request_id,
|
1509
1574
|
:policy)
|
1575
|
+
SENSITIVE = []
|
1510
1576
|
include Aws::Structure
|
1511
1577
|
end
|
1512
1578
|
|
@@ -1514,7 +1580,7 @@ module Aws::Imagebuilder
|
|
1514
1580
|
# data as a hash:
|
1515
1581
|
#
|
1516
1582
|
# {
|
1517
|
-
# component_build_version_arn: "
|
1583
|
+
# component_build_version_arn: "ComponentVersionArnOrBuildVersionArn", # required
|
1518
1584
|
# }
|
1519
1585
|
#
|
1520
1586
|
# @!attribute [rw] component_build_version_arn
|
@@ -1526,6 +1592,7 @@ module Aws::Imagebuilder
|
|
1526
1592
|
#
|
1527
1593
|
class GetComponentRequest < Struct.new(
|
1528
1594
|
:component_build_version_arn)
|
1595
|
+
SENSITIVE = []
|
1529
1596
|
include Aws::Structure
|
1530
1597
|
end
|
1531
1598
|
|
@@ -1542,6 +1609,7 @@ module Aws::Imagebuilder
|
|
1542
1609
|
class GetComponentResponse < Struct.new(
|
1543
1610
|
:request_id,
|
1544
1611
|
:component)
|
1612
|
+
SENSITIVE = []
|
1545
1613
|
include Aws::Structure
|
1546
1614
|
end
|
1547
1615
|
|
@@ -1561,6 +1629,7 @@ module Aws::Imagebuilder
|
|
1561
1629
|
#
|
1562
1630
|
class GetDistributionConfigurationRequest < Struct.new(
|
1563
1631
|
:distribution_configuration_arn)
|
1632
|
+
SENSITIVE = []
|
1564
1633
|
include Aws::Structure
|
1565
1634
|
end
|
1566
1635
|
|
@@ -1577,6 +1646,7 @@ module Aws::Imagebuilder
|
|
1577
1646
|
class GetDistributionConfigurationResponse < Struct.new(
|
1578
1647
|
:request_id,
|
1579
1648
|
:distribution_configuration)
|
1649
|
+
SENSITIVE = []
|
1580
1650
|
include Aws::Structure
|
1581
1651
|
end
|
1582
1652
|
|
@@ -1596,6 +1666,7 @@ module Aws::Imagebuilder
|
|
1596
1666
|
#
|
1597
1667
|
class GetImagePipelineRequest < Struct.new(
|
1598
1668
|
:image_pipeline_arn)
|
1669
|
+
SENSITIVE = []
|
1599
1670
|
include Aws::Structure
|
1600
1671
|
end
|
1601
1672
|
|
@@ -1612,6 +1683,7 @@ module Aws::Imagebuilder
|
|
1612
1683
|
class GetImagePipelineResponse < Struct.new(
|
1613
1684
|
:request_id,
|
1614
1685
|
:image_pipeline)
|
1686
|
+
SENSITIVE = []
|
1615
1687
|
include Aws::Structure
|
1616
1688
|
end
|
1617
1689
|
|
@@ -1631,6 +1703,7 @@ module Aws::Imagebuilder
|
|
1631
1703
|
#
|
1632
1704
|
class GetImagePolicyRequest < Struct.new(
|
1633
1705
|
:image_arn)
|
1706
|
+
SENSITIVE = []
|
1634
1707
|
include Aws::Structure
|
1635
1708
|
end
|
1636
1709
|
|
@@ -1647,6 +1720,7 @@ module Aws::Imagebuilder
|
|
1647
1720
|
class GetImagePolicyResponse < Struct.new(
|
1648
1721
|
:request_id,
|
1649
1722
|
:policy)
|
1723
|
+
SENSITIVE = []
|
1650
1724
|
include Aws::Structure
|
1651
1725
|
end
|
1652
1726
|
|
@@ -1666,6 +1740,7 @@ module Aws::Imagebuilder
|
|
1666
1740
|
#
|
1667
1741
|
class GetImageRecipePolicyRequest < Struct.new(
|
1668
1742
|
:image_recipe_arn)
|
1743
|
+
SENSITIVE = []
|
1669
1744
|
include Aws::Structure
|
1670
1745
|
end
|
1671
1746
|
|
@@ -1682,6 +1757,7 @@ module Aws::Imagebuilder
|
|
1682
1757
|
class GetImageRecipePolicyResponse < Struct.new(
|
1683
1758
|
:request_id,
|
1684
1759
|
:policy)
|
1760
|
+
SENSITIVE = []
|
1685
1761
|
include Aws::Structure
|
1686
1762
|
end
|
1687
1763
|
|
@@ -1701,6 +1777,7 @@ module Aws::Imagebuilder
|
|
1701
1777
|
#
|
1702
1778
|
class GetImageRecipeRequest < Struct.new(
|
1703
1779
|
:image_recipe_arn)
|
1780
|
+
SENSITIVE = []
|
1704
1781
|
include Aws::Structure
|
1705
1782
|
end
|
1706
1783
|
|
@@ -1717,6 +1794,7 @@ module Aws::Imagebuilder
|
|
1717
1794
|
class GetImageRecipeResponse < Struct.new(
|
1718
1795
|
:request_id,
|
1719
1796
|
:image_recipe)
|
1797
|
+
SENSITIVE = []
|
1720
1798
|
include Aws::Structure
|
1721
1799
|
end
|
1722
1800
|
|
@@ -1724,7 +1802,7 @@ module Aws::Imagebuilder
|
|
1724
1802
|
# data as a hash:
|
1725
1803
|
#
|
1726
1804
|
# {
|
1727
|
-
# image_build_version_arn: "
|
1805
|
+
# image_build_version_arn: "ImageVersionArnOrBuildVersionArn", # required
|
1728
1806
|
# }
|
1729
1807
|
#
|
1730
1808
|
# @!attribute [rw] image_build_version_arn
|
@@ -1736,6 +1814,7 @@ module Aws::Imagebuilder
|
|
1736
1814
|
#
|
1737
1815
|
class GetImageRequest < Struct.new(
|
1738
1816
|
:image_build_version_arn)
|
1817
|
+
SENSITIVE = []
|
1739
1818
|
include Aws::Structure
|
1740
1819
|
end
|
1741
1820
|
|
@@ -1752,6 +1831,7 @@ module Aws::Imagebuilder
|
|
1752
1831
|
class GetImageResponse < Struct.new(
|
1753
1832
|
:request_id,
|
1754
1833
|
:image)
|
1834
|
+
SENSITIVE = []
|
1755
1835
|
include Aws::Structure
|
1756
1836
|
end
|
1757
1837
|
|
@@ -1773,6 +1853,7 @@ module Aws::Imagebuilder
|
|
1773
1853
|
#
|
1774
1854
|
class GetInfrastructureConfigurationRequest < Struct.new(
|
1775
1855
|
:infrastructure_configuration_arn)
|
1856
|
+
SENSITIVE = []
|
1776
1857
|
include Aws::Structure
|
1777
1858
|
end
|
1778
1859
|
|
@@ -1791,6 +1872,7 @@ module Aws::Imagebuilder
|
|
1791
1872
|
class GetInfrastructureConfigurationResponse < Struct.new(
|
1792
1873
|
:request_id,
|
1793
1874
|
:infrastructure_configuration)
|
1875
|
+
SENSITIVE = []
|
1794
1876
|
include Aws::Structure
|
1795
1877
|
end
|
1796
1878
|
|
@@ -1805,6 +1887,7 @@ module Aws::Imagebuilder
|
|
1805
1887
|
#
|
1806
1888
|
class IdempotentParameterMismatchException < Struct.new(
|
1807
1889
|
:message)
|
1890
|
+
SENSITIVE = []
|
1808
1891
|
include Aws::Structure
|
1809
1892
|
end
|
1810
1893
|
|
@@ -1898,6 +1981,7 @@ module Aws::Imagebuilder
|
|
1898
1981
|
:date_created,
|
1899
1982
|
:output_resources,
|
1900
1983
|
:tags)
|
1984
|
+
SENSITIVE = []
|
1901
1985
|
include Aws::Structure
|
1902
1986
|
end
|
1903
1987
|
|
@@ -1992,6 +2076,7 @@ module Aws::Imagebuilder
|
|
1992
2076
|
:date_last_run,
|
1993
2077
|
:date_next_run,
|
1994
2078
|
:tags)
|
2079
|
+
SENSITIVE = []
|
1995
2080
|
include Aws::Structure
|
1996
2081
|
end
|
1997
2082
|
|
@@ -2042,6 +2127,10 @@ module Aws::Imagebuilder
|
|
2042
2127
|
# The tags of the image recipe.
|
2043
2128
|
# @return [Hash<String,String>]
|
2044
2129
|
#
|
2130
|
+
# @!attribute [rw] working_directory
|
2131
|
+
# The working directory to be used during build and test workflows.
|
2132
|
+
# @return [String]
|
2133
|
+
#
|
2045
2134
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ImageRecipe AWS API Documentation
|
2046
2135
|
#
|
2047
2136
|
class ImageRecipe < Struct.new(
|
@@ -2055,7 +2144,9 @@ module Aws::Imagebuilder
|
|
2055
2144
|
:parent_image,
|
2056
2145
|
:block_device_mappings,
|
2057
2146
|
:date_created,
|
2058
|
-
:tags
|
2147
|
+
:tags,
|
2148
|
+
:working_directory)
|
2149
|
+
SENSITIVE = []
|
2059
2150
|
include Aws::Structure
|
2060
2151
|
end
|
2061
2152
|
|
@@ -2099,6 +2190,7 @@ module Aws::Imagebuilder
|
|
2099
2190
|
:parent_image,
|
2100
2191
|
:date_created,
|
2101
2192
|
:tags)
|
2193
|
+
SENSITIVE = []
|
2102
2194
|
include Aws::Structure
|
2103
2195
|
end
|
2104
2196
|
|
@@ -2117,6 +2209,7 @@ module Aws::Imagebuilder
|
|
2117
2209
|
class ImageState < Struct.new(
|
2118
2210
|
:status,
|
2119
2211
|
:reason)
|
2212
|
+
SENSITIVE = []
|
2120
2213
|
include Aws::Structure
|
2121
2214
|
end
|
2122
2215
|
|
@@ -2176,6 +2269,7 @@ module Aws::Imagebuilder
|
|
2176
2269
|
:date_created,
|
2177
2270
|
:output_resources,
|
2178
2271
|
:tags)
|
2272
|
+
SENSITIVE = []
|
2179
2273
|
include Aws::Structure
|
2180
2274
|
end
|
2181
2275
|
|
@@ -2202,6 +2296,7 @@ module Aws::Imagebuilder
|
|
2202
2296
|
class ImageTestsConfiguration < Struct.new(
|
2203
2297
|
:image_tests_enabled,
|
2204
2298
|
:timeout_minutes)
|
2299
|
+
SENSITIVE = []
|
2205
2300
|
include Aws::Structure
|
2206
2301
|
end
|
2207
2302
|
|
@@ -2246,6 +2341,7 @@ module Aws::Imagebuilder
|
|
2246
2341
|
:os_version,
|
2247
2342
|
:owner,
|
2248
2343
|
:date_created)
|
2344
|
+
SENSITIVE = []
|
2249
2345
|
include Aws::Structure
|
2250
2346
|
end
|
2251
2347
|
|
@@ -2346,6 +2442,7 @@ module Aws::Imagebuilder
|
|
2346
2442
|
:kms_key_id,
|
2347
2443
|
:tags,
|
2348
2444
|
:client_token)
|
2445
|
+
SENSITIVE = []
|
2349
2446
|
include Aws::Structure
|
2350
2447
|
end
|
2351
2448
|
|
@@ -2367,6 +2464,7 @@ module Aws::Imagebuilder
|
|
2367
2464
|
:request_id,
|
2368
2465
|
:client_token,
|
2369
2466
|
:component_build_version_arn)
|
2467
|
+
SENSITIVE = []
|
2370
2468
|
include Aws::Structure
|
2371
2469
|
end
|
2372
2470
|
|
@@ -2426,6 +2524,10 @@ module Aws::Imagebuilder
|
|
2426
2524
|
# The date on which the infrastructure configuration was last updated.
|
2427
2525
|
# @return [String]
|
2428
2526
|
#
|
2527
|
+
# @!attribute [rw] resource_tags
|
2528
|
+
# The tags attached to the resource created by Image Builder.
|
2529
|
+
# @return [Hash<String,String>]
|
2530
|
+
#
|
2429
2531
|
# @!attribute [rw] tags
|
2430
2532
|
# The tags of the infrastructure configuration.
|
2431
2533
|
# @return [Hash<String,String>]
|
@@ -2446,7 +2548,9 @@ module Aws::Imagebuilder
|
|
2446
2548
|
:sns_topic_arn,
|
2447
2549
|
:date_created,
|
2448
2550
|
:date_updated,
|
2551
|
+
:resource_tags,
|
2449
2552
|
:tags)
|
2553
|
+
SENSITIVE = []
|
2450
2554
|
include Aws::Structure
|
2451
2555
|
end
|
2452
2556
|
|
@@ -2472,6 +2576,10 @@ module Aws::Imagebuilder
|
|
2472
2576
|
# The date on which the infrastructure configuration was last updated.
|
2473
2577
|
# @return [String]
|
2474
2578
|
#
|
2579
|
+
# @!attribute [rw] resource_tags
|
2580
|
+
# The tags attached to the image created by Image Builder.
|
2581
|
+
# @return [Hash<String,String>]
|
2582
|
+
#
|
2475
2583
|
# @!attribute [rw] tags
|
2476
2584
|
# The tags of the infrastructure configuration.
|
2477
2585
|
# @return [Hash<String,String>]
|
@@ -2484,7 +2592,9 @@ module Aws::Imagebuilder
|
|
2484
2592
|
:description,
|
2485
2593
|
:date_created,
|
2486
2594
|
:date_updated,
|
2595
|
+
:resource_tags,
|
2487
2596
|
:tags)
|
2597
|
+
SENSITIVE = []
|
2488
2598
|
include Aws::Structure
|
2489
2599
|
end
|
2490
2600
|
|
@@ -2532,6 +2642,7 @@ module Aws::Imagebuilder
|
|
2532
2642
|
:ebs,
|
2533
2643
|
:virtual_name,
|
2534
2644
|
:no_device)
|
2645
|
+
SENSITIVE = []
|
2535
2646
|
include Aws::Structure
|
2536
2647
|
end
|
2537
2648
|
|
@@ -2544,6 +2655,7 @@ module Aws::Imagebuilder
|
|
2544
2655
|
#
|
2545
2656
|
class InvalidPaginationTokenException < Struct.new(
|
2546
2657
|
:message)
|
2658
|
+
SENSITIVE = []
|
2547
2659
|
include Aws::Structure
|
2548
2660
|
end
|
2549
2661
|
|
@@ -2557,6 +2669,7 @@ module Aws::Imagebuilder
|
|
2557
2669
|
#
|
2558
2670
|
class InvalidParameterCombinationException < Struct.new(
|
2559
2671
|
:message)
|
2672
|
+
SENSITIVE = []
|
2560
2673
|
include Aws::Structure
|
2561
2674
|
end
|
2562
2675
|
|
@@ -2570,6 +2683,7 @@ module Aws::Imagebuilder
|
|
2570
2683
|
#
|
2571
2684
|
class InvalidParameterException < Struct.new(
|
2572
2685
|
:message)
|
2686
|
+
SENSITIVE = []
|
2573
2687
|
include Aws::Structure
|
2574
2688
|
end
|
2575
2689
|
|
@@ -2582,6 +2696,7 @@ module Aws::Imagebuilder
|
|
2582
2696
|
#
|
2583
2697
|
class InvalidParameterValueException < Struct.new(
|
2584
2698
|
:message)
|
2699
|
+
SENSITIVE = []
|
2585
2700
|
include Aws::Structure
|
2586
2701
|
end
|
2587
2702
|
|
@@ -2595,6 +2710,7 @@ module Aws::Imagebuilder
|
|
2595
2710
|
#
|
2596
2711
|
class InvalidRequestException < Struct.new(
|
2597
2712
|
:message)
|
2713
|
+
SENSITIVE = []
|
2598
2714
|
include Aws::Structure
|
2599
2715
|
end
|
2600
2716
|
|
@@ -2608,13 +2724,16 @@ module Aws::Imagebuilder
|
|
2608
2724
|
#
|
2609
2725
|
class InvalidVersionNumberException < Struct.new(
|
2610
2726
|
:message)
|
2727
|
+
SENSITIVE = []
|
2611
2728
|
include Aws::Structure
|
2612
2729
|
end
|
2613
2730
|
|
2614
2731
|
# Describes the configuration for a launch permission. The launch
|
2615
2732
|
# permission modification request is sent to the [EC2
|
2616
2733
|
# ModifyImageAttribute][1] API on behalf of the user for each Region
|
2617
|
-
# they have selected to distribute the AMI.
|
2734
|
+
# they have selected to distribute the AMI. To make an AMI public, set
|
2735
|
+
# the launch permission authorized accounts to `all`. See the examples
|
2736
|
+
# for making an AMI public at [EC2 ModifyImageAttribute][1].
|
2618
2737
|
#
|
2619
2738
|
#
|
2620
2739
|
#
|
@@ -2641,6 +2760,7 @@ module Aws::Imagebuilder
|
|
2641
2760
|
class LaunchPermissionConfiguration < Struct.new(
|
2642
2761
|
:user_ids,
|
2643
2762
|
:user_groups)
|
2763
|
+
SENSITIVE = []
|
2644
2764
|
include Aws::Structure
|
2645
2765
|
end
|
2646
2766
|
|
@@ -2673,6 +2793,7 @@ module Aws::Imagebuilder
|
|
2673
2793
|
:component_version_arn,
|
2674
2794
|
:max_results,
|
2675
2795
|
:next_token)
|
2796
|
+
SENSITIVE = []
|
2676
2797
|
include Aws::Structure
|
2677
2798
|
end
|
2678
2799
|
|
@@ -2697,6 +2818,7 @@ module Aws::Imagebuilder
|
|
2697
2818
|
:request_id,
|
2698
2819
|
:component_summary_list,
|
2699
2820
|
:next_token)
|
2821
|
+
SENSITIVE = []
|
2700
2822
|
include Aws::Structure
|
2701
2823
|
end
|
2702
2824
|
|
@@ -2743,6 +2865,7 @@ module Aws::Imagebuilder
|
|
2743
2865
|
:filters,
|
2744
2866
|
:max_results,
|
2745
2867
|
:next_token)
|
2868
|
+
SENSITIVE = []
|
2746
2869
|
include Aws::Structure
|
2747
2870
|
end
|
2748
2871
|
|
@@ -2767,6 +2890,7 @@ module Aws::Imagebuilder
|
|
2767
2890
|
:request_id,
|
2768
2891
|
:component_version_list,
|
2769
2892
|
:next_token)
|
2893
|
+
SENSITIVE = []
|
2770
2894
|
include Aws::Structure
|
2771
2895
|
end
|
2772
2896
|
|
@@ -2786,6 +2910,10 @@ module Aws::Imagebuilder
|
|
2786
2910
|
#
|
2787
2911
|
# @!attribute [rw] filters
|
2788
2912
|
# The filters.
|
2913
|
+
#
|
2914
|
+
# * `name` - The name of this distribution configuration.
|
2915
|
+
#
|
2916
|
+
# ^
|
2789
2917
|
# @return [Array<Types::Filter>]
|
2790
2918
|
#
|
2791
2919
|
# @!attribute [rw] max_results
|
@@ -2803,6 +2931,7 @@ module Aws::Imagebuilder
|
|
2803
2931
|
:filters,
|
2804
2932
|
:max_results,
|
2805
2933
|
:next_token)
|
2934
|
+
SENSITIVE = []
|
2806
2935
|
include Aws::Structure
|
2807
2936
|
end
|
2808
2937
|
|
@@ -2827,6 +2956,7 @@ module Aws::Imagebuilder
|
|
2827
2956
|
:request_id,
|
2828
2957
|
:distribution_configuration_summary_list,
|
2829
2958
|
:next_token)
|
2959
|
+
SENSITIVE = []
|
2830
2960
|
include Aws::Structure
|
2831
2961
|
end
|
2832
2962
|
|
@@ -2870,6 +3000,7 @@ module Aws::Imagebuilder
|
|
2870
3000
|
:filters,
|
2871
3001
|
:max_results,
|
2872
3002
|
:next_token)
|
3003
|
+
SENSITIVE = []
|
2873
3004
|
include Aws::Structure
|
2874
3005
|
end
|
2875
3006
|
|
@@ -2894,6 +3025,7 @@ module Aws::Imagebuilder
|
|
2894
3025
|
:request_id,
|
2895
3026
|
:image_summary_list,
|
2896
3027
|
:next_token)
|
3028
|
+
SENSITIVE = []
|
2897
3029
|
include Aws::Structure
|
2898
3030
|
end
|
2899
3031
|
|
@@ -2937,6 +3069,7 @@ module Aws::Imagebuilder
|
|
2937
3069
|
:filters,
|
2938
3070
|
:max_results,
|
2939
3071
|
:next_token)
|
3072
|
+
SENSITIVE = []
|
2940
3073
|
include Aws::Structure
|
2941
3074
|
end
|
2942
3075
|
|
@@ -2961,6 +3094,7 @@ module Aws::Imagebuilder
|
|
2961
3094
|
:request_id,
|
2962
3095
|
:image_summary_list,
|
2963
3096
|
:next_token)
|
3097
|
+
SENSITIVE = []
|
2964
3098
|
include Aws::Structure
|
2965
3099
|
end
|
2966
3100
|
|
@@ -2997,6 +3131,7 @@ module Aws::Imagebuilder
|
|
2997
3131
|
:filters,
|
2998
3132
|
:max_results,
|
2999
3133
|
:next_token)
|
3134
|
+
SENSITIVE = []
|
3000
3135
|
include Aws::Structure
|
3001
3136
|
end
|
3002
3137
|
|
@@ -3021,6 +3156,7 @@ module Aws::Imagebuilder
|
|
3021
3156
|
:request_id,
|
3022
3157
|
:image_pipeline_list,
|
3023
3158
|
:next_token)
|
3159
|
+
SENSITIVE = []
|
3024
3160
|
include Aws::Structure
|
3025
3161
|
end
|
3026
3162
|
|
@@ -3067,6 +3203,7 @@ module Aws::Imagebuilder
|
|
3067
3203
|
:filters,
|
3068
3204
|
:max_results,
|
3069
3205
|
:next_token)
|
3206
|
+
SENSITIVE = []
|
3070
3207
|
include Aws::Structure
|
3071
3208
|
end
|
3072
3209
|
|
@@ -3091,6 +3228,7 @@ module Aws::Imagebuilder
|
|
3091
3228
|
:request_id,
|
3092
3229
|
:image_recipe_summary_list,
|
3093
3230
|
:next_token)
|
3231
|
+
SENSITIVE = []
|
3094
3232
|
include Aws::Structure
|
3095
3233
|
end
|
3096
3234
|
|
@@ -3137,6 +3275,7 @@ module Aws::Imagebuilder
|
|
3137
3275
|
:filters,
|
3138
3276
|
:max_results,
|
3139
3277
|
:next_token)
|
3278
|
+
SENSITIVE = []
|
3140
3279
|
include Aws::Structure
|
3141
3280
|
end
|
3142
3281
|
|
@@ -3161,6 +3300,7 @@ module Aws::Imagebuilder
|
|
3161
3300
|
:request_id,
|
3162
3301
|
:image_version_list,
|
3163
3302
|
:next_token)
|
3303
|
+
SENSITIVE = []
|
3164
3304
|
include Aws::Structure
|
3165
3305
|
end
|
3166
3306
|
|
@@ -3197,6 +3337,7 @@ module Aws::Imagebuilder
|
|
3197
3337
|
:filters,
|
3198
3338
|
:max_results,
|
3199
3339
|
:next_token)
|
3340
|
+
SENSITIVE = []
|
3200
3341
|
include Aws::Structure
|
3201
3342
|
end
|
3202
3343
|
|
@@ -3221,6 +3362,7 @@ module Aws::Imagebuilder
|
|
3221
3362
|
:request_id,
|
3222
3363
|
:infrastructure_configuration_summary_list,
|
3223
3364
|
:next_token)
|
3365
|
+
SENSITIVE = []
|
3224
3366
|
include Aws::Structure
|
3225
3367
|
end
|
3226
3368
|
|
@@ -3240,6 +3382,7 @@ module Aws::Imagebuilder
|
|
3240
3382
|
#
|
3241
3383
|
class ListTagsForResourceRequest < Struct.new(
|
3242
3384
|
:resource_arn)
|
3385
|
+
SENSITIVE = []
|
3243
3386
|
include Aws::Structure
|
3244
3387
|
end
|
3245
3388
|
|
@@ -3251,6 +3394,7 @@ module Aws::Imagebuilder
|
|
3251
3394
|
#
|
3252
3395
|
class ListTagsForResourceResponse < Struct.new(
|
3253
3396
|
:tags)
|
3397
|
+
SENSITIVE = []
|
3254
3398
|
include Aws::Structure
|
3255
3399
|
end
|
3256
3400
|
|
@@ -3274,6 +3418,7 @@ module Aws::Imagebuilder
|
|
3274
3418
|
#
|
3275
3419
|
class Logging < Struct.new(
|
3276
3420
|
:s3_logs)
|
3421
|
+
SENSITIVE = []
|
3277
3422
|
include Aws::Structure
|
3278
3423
|
end
|
3279
3424
|
|
@@ -3287,6 +3432,7 @@ module Aws::Imagebuilder
|
|
3287
3432
|
#
|
3288
3433
|
class OutputResources < Struct.new(
|
3289
3434
|
:amis)
|
3435
|
+
SENSITIVE = []
|
3290
3436
|
include Aws::Structure
|
3291
3437
|
end
|
3292
3438
|
|
@@ -3312,6 +3458,7 @@ module Aws::Imagebuilder
|
|
3312
3458
|
class PutComponentPolicyRequest < Struct.new(
|
3313
3459
|
:component_arn,
|
3314
3460
|
:policy)
|
3461
|
+
SENSITIVE = []
|
3315
3462
|
include Aws::Structure
|
3316
3463
|
end
|
3317
3464
|
|
@@ -3329,6 +3476,7 @@ module Aws::Imagebuilder
|
|
3329
3476
|
class PutComponentPolicyResponse < Struct.new(
|
3330
3477
|
:request_id,
|
3331
3478
|
:component_arn)
|
3479
|
+
SENSITIVE = []
|
3332
3480
|
include Aws::Structure
|
3333
3481
|
end
|
3334
3482
|
|
@@ -3354,6 +3502,7 @@ module Aws::Imagebuilder
|
|
3354
3502
|
class PutImagePolicyRequest < Struct.new(
|
3355
3503
|
:image_arn,
|
3356
3504
|
:policy)
|
3505
|
+
SENSITIVE = []
|
3357
3506
|
include Aws::Structure
|
3358
3507
|
end
|
3359
3508
|
|
@@ -3371,6 +3520,7 @@ module Aws::Imagebuilder
|
|
3371
3520
|
class PutImagePolicyResponse < Struct.new(
|
3372
3521
|
:request_id,
|
3373
3522
|
:image_arn)
|
3523
|
+
SENSITIVE = []
|
3374
3524
|
include Aws::Structure
|
3375
3525
|
end
|
3376
3526
|
|
@@ -3396,6 +3546,7 @@ module Aws::Imagebuilder
|
|
3396
3546
|
class PutImageRecipePolicyRequest < Struct.new(
|
3397
3547
|
:image_recipe_arn,
|
3398
3548
|
:policy)
|
3549
|
+
SENSITIVE = []
|
3399
3550
|
include Aws::Structure
|
3400
3551
|
end
|
3401
3552
|
|
@@ -3413,6 +3564,7 @@ module Aws::Imagebuilder
|
|
3413
3564
|
class PutImageRecipePolicyResponse < Struct.new(
|
3414
3565
|
:request_id,
|
3415
3566
|
:image_recipe_arn)
|
3567
|
+
SENSITIVE = []
|
3416
3568
|
include Aws::Structure
|
3417
3569
|
end
|
3418
3570
|
|
@@ -3425,6 +3577,7 @@ module Aws::Imagebuilder
|
|
3425
3577
|
#
|
3426
3578
|
class ResourceAlreadyExistsException < Struct.new(
|
3427
3579
|
:message)
|
3580
|
+
SENSITIVE = []
|
3428
3581
|
include Aws::Structure
|
3429
3582
|
end
|
3430
3583
|
|
@@ -3438,6 +3591,7 @@ module Aws::Imagebuilder
|
|
3438
3591
|
#
|
3439
3592
|
class ResourceDependencyException < Struct.new(
|
3440
3593
|
:message)
|
3594
|
+
SENSITIVE = []
|
3441
3595
|
include Aws::Structure
|
3442
3596
|
end
|
3443
3597
|
|
@@ -3451,6 +3605,7 @@ module Aws::Imagebuilder
|
|
3451
3605
|
#
|
3452
3606
|
class ResourceInUseException < Struct.new(
|
3453
3607
|
:message)
|
3608
|
+
SENSITIVE = []
|
3454
3609
|
include Aws::Structure
|
3455
3610
|
end
|
3456
3611
|
|
@@ -3464,6 +3619,7 @@ module Aws::Imagebuilder
|
|
3464
3619
|
#
|
3465
3620
|
class ResourceNotFoundException < Struct.new(
|
3466
3621
|
:message)
|
3622
|
+
SENSITIVE = []
|
3467
3623
|
include Aws::Structure
|
3468
3624
|
end
|
3469
3625
|
|
@@ -3490,6 +3646,7 @@ module Aws::Imagebuilder
|
|
3490
3646
|
class S3Logs < Struct.new(
|
3491
3647
|
:s3_bucket_name,
|
3492
3648
|
:s3_key_prefix)
|
3649
|
+
SENSITIVE = []
|
3493
3650
|
include Aws::Structure
|
3494
3651
|
end
|
3495
3652
|
|
@@ -3523,6 +3680,7 @@ module Aws::Imagebuilder
|
|
3523
3680
|
class Schedule < Struct.new(
|
3524
3681
|
:schedule_expression,
|
3525
3682
|
:pipeline_execution_start_condition)
|
3683
|
+
SENSITIVE = []
|
3526
3684
|
include Aws::Structure
|
3527
3685
|
end
|
3528
3686
|
|
@@ -3536,6 +3694,26 @@ module Aws::Imagebuilder
|
|
3536
3694
|
#
|
3537
3695
|
class ServiceException < Struct.new(
|
3538
3696
|
:message)
|
3697
|
+
SENSITIVE = []
|
3698
|
+
include Aws::Structure
|
3699
|
+
end
|
3700
|
+
|
3701
|
+
# You have exceeded the number of permitted resources or operations for
|
3702
|
+
# this service. For service quotas, see [EC2 Image Builder endpoints and
|
3703
|
+
# quotas][1].
|
3704
|
+
#
|
3705
|
+
#
|
3706
|
+
#
|
3707
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/imagebuilder.html#limits_imagebuilder
|
3708
|
+
#
|
3709
|
+
# @!attribute [rw] message
|
3710
|
+
# @return [String]
|
3711
|
+
#
|
3712
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ServiceQuotaExceededException AWS API Documentation
|
3713
|
+
#
|
3714
|
+
class ServiceQuotaExceededException < Struct.new(
|
3715
|
+
:message)
|
3716
|
+
SENSITIVE = []
|
3539
3717
|
include Aws::Structure
|
3540
3718
|
end
|
3541
3719
|
|
@@ -3548,6 +3726,7 @@ module Aws::Imagebuilder
|
|
3548
3726
|
#
|
3549
3727
|
class ServiceUnavailableException < Struct.new(
|
3550
3728
|
:message)
|
3729
|
+
SENSITIVE = []
|
3551
3730
|
include Aws::Structure
|
3552
3731
|
end
|
3553
3732
|
|
@@ -3576,6 +3755,7 @@ module Aws::Imagebuilder
|
|
3576
3755
|
class StartImagePipelineExecutionRequest < Struct.new(
|
3577
3756
|
:image_pipeline_arn,
|
3578
3757
|
:client_token)
|
3758
|
+
SENSITIVE = []
|
3579
3759
|
include Aws::Structure
|
3580
3760
|
end
|
3581
3761
|
|
@@ -3598,6 +3778,7 @@ module Aws::Imagebuilder
|
|
3598
3778
|
:request_id,
|
3599
3779
|
:client_token,
|
3600
3780
|
:image_build_version_arn)
|
3781
|
+
SENSITIVE = []
|
3601
3782
|
include Aws::Structure
|
3602
3783
|
end
|
3603
3784
|
|
@@ -3624,6 +3805,7 @@ module Aws::Imagebuilder
|
|
3624
3805
|
class TagResourceRequest < Struct.new(
|
3625
3806
|
:resource_arn,
|
3626
3807
|
:tags)
|
3808
|
+
SENSITIVE = []
|
3627
3809
|
include Aws::Structure
|
3628
3810
|
end
|
3629
3811
|
|
@@ -3653,6 +3835,7 @@ module Aws::Imagebuilder
|
|
3653
3835
|
class UntagResourceRequest < Struct.new(
|
3654
3836
|
:resource_arn,
|
3655
3837
|
:tag_keys)
|
3838
|
+
SENSITIVE = []
|
3656
3839
|
include Aws::Structure
|
3657
3840
|
end
|
3658
3841
|
|
@@ -3675,6 +3858,7 @@ module Aws::Imagebuilder
|
|
3675
3858
|
# ami_tags: {
|
3676
3859
|
# "TagKey" => "TagValue",
|
3677
3860
|
# },
|
3861
|
+
# kms_key_id: "NonEmptyString",
|
3678
3862
|
# launch_permission: {
|
3679
3863
|
# user_ids: ["NonEmptyString"],
|
3680
3864
|
# user_groups: ["NonEmptyString"],
|
@@ -3713,6 +3897,7 @@ module Aws::Imagebuilder
|
|
3713
3897
|
:description,
|
3714
3898
|
:distributions,
|
3715
3899
|
:client_token)
|
3900
|
+
SENSITIVE = []
|
3716
3901
|
include Aws::Structure
|
3717
3902
|
end
|
3718
3903
|
|
@@ -3735,6 +3920,7 @@ module Aws::Imagebuilder
|
|
3735
3920
|
:request_id,
|
3736
3921
|
:client_token,
|
3737
3922
|
:distribution_configuration_arn)
|
3923
|
+
SENSITIVE = []
|
3738
3924
|
include Aws::Structure
|
3739
3925
|
end
|
3740
3926
|
|
@@ -3824,6 +4010,7 @@ module Aws::Imagebuilder
|
|
3824
4010
|
:schedule,
|
3825
4011
|
:status,
|
3826
4012
|
:client_token)
|
4013
|
+
SENSITIVE = []
|
3827
4014
|
include Aws::Structure
|
3828
4015
|
end
|
3829
4016
|
|
@@ -3846,6 +4033,7 @@ module Aws::Imagebuilder
|
|
3846
4033
|
:request_id,
|
3847
4034
|
:client_token,
|
3848
4035
|
:image_pipeline_arn)
|
4036
|
+
SENSITIVE = []
|
3849
4037
|
include Aws::Structure
|
3850
4038
|
end
|
3851
4039
|
|
@@ -3869,6 +4057,9 @@ module Aws::Imagebuilder
|
|
3869
4057
|
# terminate_instance_on_failure: false,
|
3870
4058
|
# sns_topic_arn: "SnsTopicArn",
|
3871
4059
|
# client_token: "ClientToken", # required
|
4060
|
+
# resource_tags: {
|
4061
|
+
# "TagKey" => "TagValue",
|
4062
|
+
# },
|
3872
4063
|
# }
|
3873
4064
|
#
|
3874
4065
|
# @!attribute [rw] infrastructure_configuration_arn
|
@@ -3928,6 +4119,10 @@ module Aws::Imagebuilder
|
|
3928
4119
|
# not need to pass this option.
|
3929
4120
|
# @return [String]
|
3930
4121
|
#
|
4122
|
+
# @!attribute [rw] resource_tags
|
4123
|
+
# The tags attached to the resource created by Image Builder.
|
4124
|
+
# @return [Hash<String,String>]
|
4125
|
+
#
|
3931
4126
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/UpdateInfrastructureConfigurationRequest AWS API Documentation
|
3932
4127
|
#
|
3933
4128
|
class UpdateInfrastructureConfigurationRequest < Struct.new(
|
@@ -3941,7 +4136,9 @@ module Aws::Imagebuilder
|
|
3941
4136
|
:key_pair,
|
3942
4137
|
:terminate_instance_on_failure,
|
3943
4138
|
:sns_topic_arn,
|
3944
|
-
:client_token
|
4139
|
+
:client_token,
|
4140
|
+
:resource_tags)
|
4141
|
+
SENSITIVE = []
|
3945
4142
|
include Aws::Structure
|
3946
4143
|
end
|
3947
4144
|
|
@@ -3964,6 +4161,7 @@ module Aws::Imagebuilder
|
|
3964
4161
|
:request_id,
|
3965
4162
|
:client_token,
|
3966
4163
|
:infrastructure_configuration_arn)
|
4164
|
+
SENSITIVE = []
|
3967
4165
|
include Aws::Structure
|
3968
4166
|
end
|
3969
4167
|
|