aws-sdk-imagebuilder 1.72.0 → 1.74.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 268cf23787a9d0e54c431b6a9860067bc64b1c75ff0a9d1d184ad4524b12dfdb
4
- data.tar.gz: 71a9ff0dcbe1a5ffc825e8a7be4db6a25d89b2b44ed045916df2413228947e2c
3
+ metadata.gz: 20d1df149f957a7bf1e34390be588d34a0decb58986d05fa2a8051732cddf856
4
+ data.tar.gz: 634f8a35adce43c937d287cfd3d970069b5d5fde6f0d16ca406bea288565ec7f
5
5
  SHA512:
6
- metadata.gz: e1f661094ec7320e15efd682606cd101e9d152d9d9d9822c7a952a3bc6bc8d33f8427186542c7496f8fbee4b01c9b445c85466b2c06c89c32c520fdabf22f50d
7
- data.tar.gz: 16c882a83344d53dd628d9f8ea15ddab7311c137b9a00b0ea19cb9fd5340840b48d628ff695c242051c1ab89f0d3acc3d94155dc1cbda8b977885f41fe6baba4
6
+ metadata.gz: c73fdd1b164ec63a01788111bebe5342912660e4661d95a26665508de820b9305b9957d0c699ddbd7b6759fe4c6aac622a57b7a8b19bd8f821c7977cbc156b0b
7
+ data.tar.gz: 361546a568dbadef9b10a45a16c8ef8b6d97eacfd179a02013c0b99fd20d913f388c80685be8c873a1da4e0fe611cf309791e7bcc2888bf28556c4593a2d5225
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.74.0 (2024-12-02)
5
+ ------------------
6
+
7
+ * Feature - Added support for EC2 Image Builder's integration with AWS Marketplace for Marketplace components.
8
+
9
+ 1.73.0 (2024-10-22)
10
+ ------------------
11
+
12
+ * Feature - Add macOS platform and instance placement options
13
+
4
14
  1.72.0 (2024-10-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.72.0
1
+ 1.74.0
@@ -629,7 +629,7 @@ module Aws::Imagebuilder
629
629
  # semantic_version: "VersionNumber", # required
630
630
  # description: "NonEmptyString",
631
631
  # change_description: "NonEmptyString",
632
- # platform: "Windows", # required, accepts Windows, Linux
632
+ # platform: "Windows", # required, accepts Windows, Linux, macOS
633
633
  # supported_os_versions: ["OsVersion"],
634
634
  # data: "InlineComponentData",
635
635
  # uri: "Uri",
@@ -724,7 +724,7 @@ module Aws::Imagebuilder
724
724
  # The destination repository for the container image.
725
725
  #
726
726
  # @option params [String] :kms_key_id
727
- # Identifies which KMS key is used to encrypt the container image.
727
+ # Identifies which KMS key is used to encrypt the Dockerfile template.
728
728
  #
729
729
  # @option params [required, String] :client_token
730
730
  # Unique, case-sensitive identifier you provide to ensure idempotency of
@@ -784,7 +784,7 @@ module Aws::Imagebuilder
784
784
  # },
785
785
  # dockerfile_template_data: "InlineDockerFileTemplate",
786
786
  # dockerfile_template_uri: "Uri",
787
- # platform_override: "Windows", # accepts Windows, Linux
787
+ # platform_override: "Windows", # accepts Windows, Linux, macOS
788
788
  # image_os_version_override: "NonEmptyString",
789
789
  # parent_image: "NonEmptyString", # required
790
790
  # tags: {
@@ -1368,14 +1368,22 @@ module Aws::Imagebuilder
1368
1368
  # </note>
1369
1369
  #
1370
1370
  # @option params [Hash<String,String>] :resource_tags
1371
- # The tags attached to the resource created by Image Builder.
1371
+ # The metadata tags to assign to the Amazon EC2 instance that Image
1372
+ # Builder launches during the build process. Tags are formatted as key
1373
+ # value pairs.
1372
1374
  #
1373
1375
  # @option params [Types::InstanceMetadataOptions] :instance_metadata_options
1374
1376
  # The instance metadata options that you can set for the HTTP requests
1375
1377
  # that pipeline builds use to launch EC2 build and test instances.
1376
1378
  #
1377
1379
  # @option params [Hash<String,String>] :tags
1378
- # The tags of the infrastructure configuration.
1380
+ # The metadata tags to assign to the infrastructure configuration
1381
+ # resource that Image Builder creates as output. Tags are formatted as
1382
+ # key value pairs.
1383
+ #
1384
+ # @option params [Types::Placement] :placement
1385
+ # The instance placement settings that define where the instances that
1386
+ # are launched from your image will run.
1379
1387
  #
1380
1388
  # @option params [required, String] :client_token
1381
1389
  # Unique, case-sensitive identifier you provide to ensure idempotency of
@@ -1423,6 +1431,12 @@ module Aws::Imagebuilder
1423
1431
  # tags: {
1424
1432
  # "TagKey" => "TagValue",
1425
1433
  # },
1434
+ # placement: {
1435
+ # availability_zone: "NonEmptyString",
1436
+ # tenancy: "default", # accepts default, dedicated, host
1437
+ # host_id: "NonEmptyString",
1438
+ # host_resource_group_arn: "NonEmptyString",
1439
+ # },
1426
1440
  # client_token: "ClientToken", # required
1427
1441
  # })
1428
1442
  #
@@ -1981,10 +1995,10 @@ module Aws::Imagebuilder
1981
1995
  # resp.component.description #=> String
1982
1996
  # resp.component.change_description #=> String
1983
1997
  # resp.component.type #=> String, one of "BUILD", "TEST"
1984
- # resp.component.platform #=> String, one of "Windows", "Linux"
1998
+ # resp.component.platform #=> String, one of "Windows", "Linux", "macOS"
1985
1999
  # resp.component.supported_os_versions #=> Array
1986
2000
  # resp.component.supported_os_versions[0] #=> String
1987
- # resp.component.state.status #=> String, one of "DEPRECATED"
2001
+ # resp.component.state.status #=> String, one of "DEPRECATED", "DISABLED", "ACTIVE"
1988
2002
  # resp.component.state.reason #=> String
1989
2003
  # resp.component.parameters #=> Array
1990
2004
  # resp.component.parameters[0].name #=> String
@@ -2001,6 +2015,9 @@ module Aws::Imagebuilder
2001
2015
  # resp.component.tags["TagKey"] #=> String
2002
2016
  # resp.component.publisher #=> String
2003
2017
  # resp.component.obfuscate #=> Boolean
2018
+ # resp.component.product_codes #=> Array
2019
+ # resp.component.product_codes[0].product_code_id #=> String
2020
+ # resp.component.product_codes[0].product_code_type #=> String, one of "marketplace"
2004
2021
  #
2005
2022
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetComponent AWS API Documentation
2006
2023
  #
@@ -2065,7 +2082,7 @@ module Aws::Imagebuilder
2065
2082
  # resp.container_recipe.container_type #=> String, one of "DOCKER"
2066
2083
  # resp.container_recipe.name #=> String
2067
2084
  # resp.container_recipe.description #=> String
2068
- # resp.container_recipe.platform #=> String, one of "Windows", "Linux"
2085
+ # resp.container_recipe.platform #=> String, one of "Windows", "Linux", "macOS"
2069
2086
  # resp.container_recipe.owner #=> String
2070
2087
  # resp.container_recipe.version #=> String
2071
2088
  # resp.container_recipe.components #=> Array
@@ -2239,7 +2256,7 @@ module Aws::Imagebuilder
2239
2256
  # resp.image.type #=> String, one of "AMI", "DOCKER"
2240
2257
  # resp.image.name #=> String
2241
2258
  # resp.image.version #=> String
2242
- # resp.image.platform #=> String, one of "Windows", "Linux"
2259
+ # resp.image.platform #=> String, one of "Windows", "Linux", "macOS"
2243
2260
  # resp.image.enhanced_image_metadata_enabled #=> Boolean
2244
2261
  # resp.image.os_version #=> String
2245
2262
  # resp.image.state.status #=> String, one of "PENDING", "CREATING", "BUILDING", "TESTING", "DISTRIBUTING", "INTEGRATING", "AVAILABLE", "CANCELLED", "FAILED", "DEPRECATED", "DELETED", "DISABLED"
@@ -2248,7 +2265,7 @@ module Aws::Imagebuilder
2248
2265
  # resp.image.image_recipe.type #=> String, one of "AMI", "DOCKER"
2249
2266
  # resp.image.image_recipe.name #=> String
2250
2267
  # resp.image.image_recipe.description #=> String
2251
- # resp.image.image_recipe.platform #=> String, one of "Windows", "Linux"
2268
+ # resp.image.image_recipe.platform #=> String, one of "Windows", "Linux", "macOS"
2252
2269
  # resp.image.image_recipe.owner #=> String
2253
2270
  # resp.image.image_recipe.version #=> String
2254
2271
  # resp.image.image_recipe.components #=> Array
@@ -2280,7 +2297,7 @@ module Aws::Imagebuilder
2280
2297
  # resp.image.container_recipe.container_type #=> String, one of "DOCKER"
2281
2298
  # resp.image.container_recipe.name #=> String
2282
2299
  # resp.image.container_recipe.description #=> String
2283
- # resp.image.container_recipe.platform #=> String, one of "Windows", "Linux"
2300
+ # resp.image.container_recipe.platform #=> String, one of "Windows", "Linux", "macOS"
2284
2301
  # resp.image.container_recipe.owner #=> String
2285
2302
  # resp.image.container_recipe.version #=> String
2286
2303
  # resp.image.container_recipe.components #=> Array
@@ -2336,6 +2353,10 @@ module Aws::Imagebuilder
2336
2353
  # resp.image.infrastructure_configuration.instance_metadata_options.http_put_response_hop_limit #=> Integer
2337
2354
  # resp.image.infrastructure_configuration.tags #=> Hash
2338
2355
  # resp.image.infrastructure_configuration.tags["TagKey"] #=> String
2356
+ # resp.image.infrastructure_configuration.placement.availability_zone #=> String
2357
+ # resp.image.infrastructure_configuration.placement.tenancy #=> String, one of "default", "dedicated", "host"
2358
+ # resp.image.infrastructure_configuration.placement.host_id #=> String
2359
+ # resp.image.infrastructure_configuration.placement.host_resource_group_arn #=> String
2339
2360
  # resp.image.distribution_configuration.arn #=> String
2340
2361
  # resp.image.distribution_configuration.name #=> String
2341
2362
  # resp.image.distribution_configuration.description #=> String
@@ -2453,7 +2474,7 @@ module Aws::Imagebuilder
2453
2474
  # resp.image_pipeline.arn #=> String
2454
2475
  # resp.image_pipeline.name #=> String
2455
2476
  # resp.image_pipeline.description #=> String
2456
- # resp.image_pipeline.platform #=> String, one of "Windows", "Linux"
2477
+ # resp.image_pipeline.platform #=> String, one of "Windows", "Linux", "macOS"
2457
2478
  # resp.image_pipeline.enhanced_image_metadata_enabled #=> Boolean
2458
2479
  # resp.image_pipeline.image_recipe_arn #=> String
2459
2480
  # resp.image_pipeline.container_recipe_arn #=> String
@@ -2549,7 +2570,7 @@ module Aws::Imagebuilder
2549
2570
  # resp.image_recipe.type #=> String, one of "AMI", "DOCKER"
2550
2571
  # resp.image_recipe.name #=> String
2551
2572
  # resp.image_recipe.description #=> String
2552
- # resp.image_recipe.platform #=> String, one of "Windows", "Linux"
2573
+ # resp.image_recipe.platform #=> String, one of "Windows", "Linux", "macOS"
2553
2574
  # resp.image_recipe.owner #=> String
2554
2575
  # resp.image_recipe.version #=> String
2555
2576
  # resp.image_recipe.components #=> Array
@@ -2660,6 +2681,10 @@ module Aws::Imagebuilder
2660
2681
  # resp.infrastructure_configuration.instance_metadata_options.http_put_response_hop_limit #=> Integer
2661
2682
  # resp.infrastructure_configuration.tags #=> Hash
2662
2683
  # resp.infrastructure_configuration.tags["TagKey"] #=> String
2684
+ # resp.infrastructure_configuration.placement.availability_zone #=> String
2685
+ # resp.infrastructure_configuration.placement.tenancy #=> String, one of "default", "dedicated", "host"
2686
+ # resp.infrastructure_configuration.placement.host_id #=> String
2687
+ # resp.infrastructure_configuration.placement.host_resource_group_arn #=> String
2663
2688
  #
2664
2689
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetInfrastructureConfiguration AWS API Documentation
2665
2690
  #
@@ -2770,6 +2795,52 @@ module Aws::Imagebuilder
2770
2795
  req.send_request(options)
2771
2796
  end
2772
2797
 
2798
+ # Verify the subscription and perform resource dependency checks on the
2799
+ # requested Amazon Web Services Marketplace resource. For Amazon Web
2800
+ # Services Marketplace components, the response contains fields to
2801
+ # download the components and their artifacts.
2802
+ #
2803
+ # @option params [required, String] :resource_type
2804
+ # Specifies which type of Amazon Web Services Marketplace resource Image
2805
+ # Builder retrieves.
2806
+ #
2807
+ # @option params [required, String] :resource_arn
2808
+ # The Amazon Resource Name (ARN) that uniquely identifies an Amazon Web
2809
+ # Services Marketplace resource.
2810
+ #
2811
+ # @option params [String] :resource_location
2812
+ # The bucket path that you can specify to download the resource from
2813
+ # Amazon S3.
2814
+ #
2815
+ # @return [Types::GetMarketplaceResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2816
+ #
2817
+ # * {Types::GetMarketplaceResourceResponse#resource_arn #resource_arn} => String
2818
+ # * {Types::GetMarketplaceResourceResponse#url #url} => String
2819
+ # * {Types::GetMarketplaceResourceResponse#data #data} => String
2820
+ #
2821
+ # @example Request syntax with placeholder values
2822
+ #
2823
+ # resp = client.get_marketplace_resource({
2824
+ # resource_type: "COMPONENT_DATA", # required, accepts COMPONENT_DATA, COMPONENT_ARTIFACT
2825
+ # resource_arn: "ImageBuilderArn", # required
2826
+ # resource_location: "MarketplaceResourceLocation",
2827
+ # })
2828
+ #
2829
+ # @example Response structure
2830
+ #
2831
+ # resp.resource_arn #=> String
2832
+ # resp.url #=> String
2833
+ # resp.data #=> String
2834
+ #
2835
+ # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetMarketplaceResource AWS API Documentation
2836
+ #
2837
+ # @overload get_marketplace_resource(params = {})
2838
+ # @param [Hash] params ({})
2839
+ def get_marketplace_resource(params = {}, options = {})
2840
+ req = build_request(:get_marketplace_resource, params)
2841
+ req.send_request(options)
2842
+ end
2843
+
2773
2844
  # Get a workflow resource object.
2774
2845
  #
2775
2846
  # @option params [required, String] :workflow_build_version_arn
@@ -3019,7 +3090,7 @@ module Aws::Imagebuilder
3019
3090
  # change_description: "NonEmptyString",
3020
3091
  # type: "BUILD", # required, accepts BUILD, TEST
3021
3092
  # format: "SHELL", # required, accepts SHELL
3022
- # platform: "Windows", # required, accepts Windows, Linux
3093
+ # platform: "Windows", # required, accepts Windows, Linux, macOS
3023
3094
  # data: "NonEmptyString",
3024
3095
  # uri: "Uri",
3025
3096
  # kms_key_id: "NonEmptyString",
@@ -3127,7 +3198,7 @@ module Aws::Imagebuilder
3127
3198
  # name: "NonEmptyString", # required
3128
3199
  # semantic_version: "VersionNumber", # required
3129
3200
  # description: "NonEmptyString",
3130
- # platform: "Windows", # required, accepts Windows, Linux
3201
+ # platform: "Windows", # required, accepts Windows, Linux, macOS
3131
3202
  # os_version: "OsVersion",
3132
3203
  # vm_import_task_id: "NonEmptyString", # required
3133
3204
  # tags: {
@@ -3152,19 +3223,7 @@ module Aws::Imagebuilder
3152
3223
  end
3153
3224
 
3154
3225
  # Returns the list of component build versions for the specified
3155
- # semantic version.
3156
- #
3157
- # <note markdown="1"> The semantic version has four nodes:
3158
- # &lt;major&gt;.&lt;minor&gt;.&lt;patch&gt;/&lt;build&gt;. You can
3159
- # assign values for the first three, and can filter on all of them.
3160
- #
3161
- # **Filtering:** With semantic versioning, you have the flexibility to
3162
- # use wildcards (x) to specify the most recent versions or nodes when
3163
- # selecting the base image or components for your recipe. When you use a
3164
- # wildcard in any node, all nodes to the right of the first wildcard
3165
- # must also be wildcards.
3166
- #
3167
- # </note>
3226
+ # component version Amazon Resource Name (ARN).
3168
3227
  #
3169
3228
  # @option params [required, String] :component_version_arn
3170
3229
  # The component version Amazon Resource Name (ARN) whose versions you
@@ -3200,10 +3259,10 @@ module Aws::Imagebuilder
3200
3259
  # resp.component_summary_list[0].arn #=> String
3201
3260
  # resp.component_summary_list[0].name #=> String
3202
3261
  # resp.component_summary_list[0].version #=> String
3203
- # resp.component_summary_list[0].platform #=> String, one of "Windows", "Linux"
3262
+ # resp.component_summary_list[0].platform #=> String, one of "Windows", "Linux", "macOS"
3204
3263
  # resp.component_summary_list[0].supported_os_versions #=> Array
3205
3264
  # resp.component_summary_list[0].supported_os_versions[0] #=> String
3206
- # resp.component_summary_list[0].state.status #=> String, one of "DEPRECATED"
3265
+ # resp.component_summary_list[0].state.status #=> String, one of "DEPRECATED", "DISABLED", "ACTIVE"
3207
3266
  # resp.component_summary_list[0].state.reason #=> String
3208
3267
  # resp.component_summary_list[0].type #=> String, one of "BUILD", "TEST"
3209
3268
  # resp.component_summary_list[0].owner #=> String
@@ -3285,7 +3344,7 @@ module Aws::Imagebuilder
3285
3344
  # @example Request syntax with placeholder values
3286
3345
  #
3287
3346
  # resp = client.list_components({
3288
- # owner: "Self", # accepts Self, Shared, Amazon, ThirdParty
3347
+ # owner: "Self", # accepts Self, Shared, Amazon, ThirdParty, AWSMarketplace
3289
3348
  # filters: [
3290
3349
  # {
3291
3350
  # name: "FilterName",
@@ -3305,12 +3364,16 @@ module Aws::Imagebuilder
3305
3364
  # resp.component_version_list[0].name #=> String
3306
3365
  # resp.component_version_list[0].version #=> String
3307
3366
  # resp.component_version_list[0].description #=> String
3308
- # resp.component_version_list[0].platform #=> String, one of "Windows", "Linux"
3367
+ # resp.component_version_list[0].platform #=> String, one of "Windows", "Linux", "macOS"
3309
3368
  # resp.component_version_list[0].supported_os_versions #=> Array
3310
3369
  # resp.component_version_list[0].supported_os_versions[0] #=> String
3311
3370
  # resp.component_version_list[0].type #=> String, one of "BUILD", "TEST"
3312
3371
  # resp.component_version_list[0].owner #=> String
3313
3372
  # resp.component_version_list[0].date_created #=> String
3373
+ # resp.component_version_list[0].status #=> String, one of "DEPRECATED", "DISABLED", "ACTIVE"
3374
+ # resp.component_version_list[0].product_codes #=> Array
3375
+ # resp.component_version_list[0].product_codes[0].product_code_id #=> String
3376
+ # resp.component_version_list[0].product_codes[0].product_code_type #=> String, one of "marketplace"
3314
3377
  # resp.next_token #=> String
3315
3378
  #
3316
3379
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListComponents AWS API Documentation
@@ -3358,7 +3421,7 @@ module Aws::Imagebuilder
3358
3421
  # @example Request syntax with placeholder values
3359
3422
  #
3360
3423
  # resp = client.list_container_recipes({
3361
- # owner: "Self", # accepts Self, Shared, Amazon, ThirdParty
3424
+ # owner: "Self", # accepts Self, Shared, Amazon, ThirdParty, AWSMarketplace
3362
3425
  # filters: [
3363
3426
  # {
3364
3427
  # name: "FilterName",
@@ -3376,7 +3439,7 @@ module Aws::Imagebuilder
3376
3439
  # resp.container_recipe_summary_list[0].arn #=> String
3377
3440
  # resp.container_recipe_summary_list[0].container_type #=> String, one of "DOCKER"
3378
3441
  # resp.container_recipe_summary_list[0].name #=> String
3379
- # resp.container_recipe_summary_list[0].platform #=> String, one of "Windows", "Linux"
3442
+ # resp.container_recipe_summary_list[0].platform #=> String, one of "Windows", "Linux", "macOS"
3380
3443
  # resp.container_recipe_summary_list[0].owner #=> String
3381
3444
  # resp.container_recipe_summary_list[0].parent_image #=> String
3382
3445
  # resp.container_recipe_summary_list[0].date_created #=> String
@@ -3506,7 +3569,7 @@ module Aws::Imagebuilder
3506
3569
  # resp.image_summary_list[0].name #=> String
3507
3570
  # resp.image_summary_list[0].type #=> String, one of "AMI", "DOCKER"
3508
3571
  # resp.image_summary_list[0].version #=> String
3509
- # resp.image_summary_list[0].platform #=> String, one of "Windows", "Linux"
3572
+ # resp.image_summary_list[0].platform #=> String, one of "Windows", "Linux", "macOS"
3510
3573
  # resp.image_summary_list[0].os_version #=> String
3511
3574
  # resp.image_summary_list[0].state.status #=> String, one of "PENDING", "CREATING", "BUILDING", "TESTING", "DISTRIBUTING", "INTEGRATING", "AVAILABLE", "CANCELLED", "FAILED", "DEPRECATED", "DELETED", "DISABLED"
3512
3575
  # resp.image_summary_list[0].state.reason #=> String
@@ -3639,7 +3702,7 @@ module Aws::Imagebuilder
3639
3702
  # resp.image_summary_list[0].name #=> String
3640
3703
  # resp.image_summary_list[0].type #=> String, one of "AMI", "DOCKER"
3641
3704
  # resp.image_summary_list[0].version #=> String
3642
- # resp.image_summary_list[0].platform #=> String, one of "Windows", "Linux"
3705
+ # resp.image_summary_list[0].platform #=> String, one of "Windows", "Linux", "macOS"
3643
3706
  # resp.image_summary_list[0].os_version #=> String
3644
3707
  # resp.image_summary_list[0].state.status #=> String, one of "PENDING", "CREATING", "BUILDING", "TESTING", "DISTRIBUTING", "INTEGRATING", "AVAILABLE", "CANCELLED", "FAILED", "DEPRECATED", "DELETED", "DISABLED"
3645
3708
  # resp.image_summary_list[0].state.reason #=> String
@@ -3726,7 +3789,7 @@ module Aws::Imagebuilder
3726
3789
  # resp.image_pipeline_list[0].arn #=> String
3727
3790
  # resp.image_pipeline_list[0].name #=> String
3728
3791
  # resp.image_pipeline_list[0].description #=> String
3729
- # resp.image_pipeline_list[0].platform #=> String, one of "Windows", "Linux"
3792
+ # resp.image_pipeline_list[0].platform #=> String, one of "Windows", "Linux", "macOS"
3730
3793
  # resp.image_pipeline_list[0].enhanced_image_metadata_enabled #=> Boolean
3731
3794
  # resp.image_pipeline_list[0].image_recipe_arn #=> String
3732
3795
  # resp.image_pipeline_list[0].container_recipe_arn #=> String
@@ -3804,7 +3867,7 @@ module Aws::Imagebuilder
3804
3867
  # @example Request syntax with placeholder values
3805
3868
  #
3806
3869
  # resp = client.list_image_recipes({
3807
- # owner: "Self", # accepts Self, Shared, Amazon, ThirdParty
3870
+ # owner: "Self", # accepts Self, Shared, Amazon, ThirdParty, AWSMarketplace
3808
3871
  # filters: [
3809
3872
  # {
3810
3873
  # name: "FilterName",
@@ -3821,7 +3884,7 @@ module Aws::Imagebuilder
3821
3884
  # resp.image_recipe_summary_list #=> Array
3822
3885
  # resp.image_recipe_summary_list[0].arn #=> String
3823
3886
  # resp.image_recipe_summary_list[0].name #=> String
3824
- # resp.image_recipe_summary_list[0].platform #=> String, one of "Windows", "Linux"
3887
+ # resp.image_recipe_summary_list[0].platform #=> String, one of "Windows", "Linux", "macOS"
3825
3888
  # resp.image_recipe_summary_list[0].owner #=> String
3826
3889
  # resp.image_recipe_summary_list[0].parent_image #=> String
3827
3890
  # resp.image_recipe_summary_list[0].date_created #=> String
@@ -4076,7 +4139,7 @@ module Aws::Imagebuilder
4076
4139
  # @example Request syntax with placeholder values
4077
4140
  #
4078
4141
  # resp = client.list_images({
4079
- # owner: "Self", # accepts Self, Shared, Amazon, ThirdParty
4142
+ # owner: "Self", # accepts Self, Shared, Amazon, ThirdParty, AWSMarketplace
4080
4143
  # filters: [
4081
4144
  # {
4082
4145
  # name: "FilterName",
@@ -4097,7 +4160,7 @@ module Aws::Imagebuilder
4097
4160
  # resp.image_version_list[0].name #=> String
4098
4161
  # resp.image_version_list[0].type #=> String, one of "AMI", "DOCKER"
4099
4162
  # resp.image_version_list[0].version #=> String
4100
- # resp.image_version_list[0].platform #=> String, one of "Windows", "Linux"
4163
+ # resp.image_version_list[0].platform #=> String, one of "Windows", "Linux", "macOS"
4101
4164
  # resp.image_version_list[0].os_version #=> String
4102
4165
  # resp.image_version_list[0].owner #=> String
4103
4166
  # resp.image_version_list[0].date_created #=> String
@@ -4163,6 +4226,10 @@ module Aws::Imagebuilder
4163
4226
  # resp.infrastructure_configuration_summary_list[0].instance_types #=> Array
4164
4227
  # resp.infrastructure_configuration_summary_list[0].instance_types[0] #=> String
4165
4228
  # resp.infrastructure_configuration_summary_list[0].instance_profile_name #=> String
4229
+ # resp.infrastructure_configuration_summary_list[0].placement.availability_zone #=> String
4230
+ # resp.infrastructure_configuration_summary_list[0].placement.tenancy #=> String, one of "default", "dedicated", "host"
4231
+ # resp.infrastructure_configuration_summary_list[0].placement.host_id #=> String
4232
+ # resp.infrastructure_configuration_summary_list[0].placement.host_resource_group_arn #=> String
4166
4233
  # resp.next_token #=> String
4167
4234
  #
4168
4235
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListInfrastructureConfigurations AWS API Documentation
@@ -4638,7 +4705,7 @@ module Aws::Imagebuilder
4638
4705
  # @example Request syntax with placeholder values
4639
4706
  #
4640
4707
  # resp = client.list_workflows({
4641
- # owner: "Self", # accepts Self, Shared, Amazon, ThirdParty
4708
+ # owner: "Self", # accepts Self, Shared, Amazon, ThirdParty, AWSMarketplace
4642
4709
  # filters: [
4643
4710
  # {
4644
4711
  # name: "FilterName",
@@ -5394,18 +5461,6 @@ module Aws::Imagebuilder
5394
5461
  #
5395
5462
  # </note>
5396
5463
  #
5397
- # @option params [required, String] :client_token
5398
- # Unique, case-sensitive identifier you provide to ensure idempotency of
5399
- # the request. For more information, see [Ensuring idempotency][1] in
5400
- # the *Amazon EC2 API Reference*.
5401
- #
5402
- # **A suitable default value is auto-generated.** You should normally
5403
- # not need to pass this option.**
5404
- #
5405
- #
5406
- #
5407
- # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
5408
- #
5409
5464
  # @option params [Hash<String,String>] :resource_tags
5410
5465
  # The tags attached to the resource created by Image Builder.
5411
5466
  #
@@ -5426,6 +5481,22 @@ module Aws::Imagebuilder
5426
5481
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/configuring-instance-metadata-options.html
5427
5482
  # [2]: https://docs.aws.amazon.com/AWSEC2/latest/WindowsGuide/configuring-instance-metadata-options.html
5428
5483
  #
5484
+ # @option params [Types::Placement] :placement
5485
+ # The instance placement settings that define where the instances that
5486
+ # are launched from your image will run.
5487
+ #
5488
+ # @option params [required, String] :client_token
5489
+ # Unique, case-sensitive identifier you provide to ensure idempotency of
5490
+ # the request. For more information, see [Ensuring idempotency][1] in
5491
+ # the *Amazon EC2 API Reference*.
5492
+ #
5493
+ # **A suitable default value is auto-generated.** You should normally
5494
+ # not need to pass this option.**
5495
+ #
5496
+ #
5497
+ #
5498
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
5499
+ #
5429
5500
  # @return [Types::UpdateInfrastructureConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5430
5501
  #
5431
5502
  # * {Types::UpdateInfrastructureConfigurationResponse#request_id #request_id} => String
@@ -5450,7 +5521,6 @@ module Aws::Imagebuilder
5450
5521
  # key_pair: "NonEmptyString",
5451
5522
  # terminate_instance_on_failure: false,
5452
5523
  # sns_topic_arn: "SnsTopicArn",
5453
- # client_token: "ClientToken", # required
5454
5524
  # resource_tags: {
5455
5525
  # "TagKey" => "TagValue",
5456
5526
  # },
@@ -5458,6 +5528,13 @@ module Aws::Imagebuilder
5458
5528
  # http_tokens: "HttpTokens",
5459
5529
  # http_put_response_hop_limit: 1,
5460
5530
  # },
5531
+ # placement: {
5532
+ # availability_zone: "NonEmptyString",
5533
+ # tenancy: "default", # accepts default, dedicated, host
5534
+ # host_id: "NonEmptyString",
5535
+ # host_resource_group_arn: "NonEmptyString",
5536
+ # },
5537
+ # client_token: "ClientToken", # required
5461
5538
  # })
5462
5539
  #
5463
5540
  # @example Response structure
@@ -5603,7 +5680,7 @@ module Aws::Imagebuilder
5603
5680
  tracer: tracer
5604
5681
  )
5605
5682
  context[:gem_name] = 'aws-sdk-imagebuilder'
5606
- context[:gem_version] = '1.72.0'
5683
+ context[:gem_version] = '1.74.0'
5607
5684
  Seahorse::Client::Request.new(handlers, context)
5608
5685
  end
5609
5686
 
@@ -161,6 +161,8 @@ module Aws::Imagebuilder
161
161
  GetLifecycleExecutionResponse = Shapes::StructureShape.new(name: 'GetLifecycleExecutionResponse')
162
162
  GetLifecyclePolicyRequest = Shapes::StructureShape.new(name: 'GetLifecyclePolicyRequest')
163
163
  GetLifecyclePolicyResponse = Shapes::StructureShape.new(name: 'GetLifecyclePolicyResponse')
164
+ GetMarketplaceResourceRequest = Shapes::StructureShape.new(name: 'GetMarketplaceResourceRequest')
165
+ GetMarketplaceResourceResponse = Shapes::StructureShape.new(name: 'GetMarketplaceResourceResponse')
164
166
  GetWorkflowExecutionRequest = Shapes::StructureShape.new(name: 'GetWorkflowExecutionRequest')
165
167
  GetWorkflowExecutionResponse = Shapes::StructureShape.new(name: 'GetWorkflowExecutionResponse')
166
168
  GetWorkflowRequest = Shapes::StructureShape.new(name: 'GetWorkflowRequest')
@@ -320,6 +322,8 @@ module Aws::Imagebuilder
320
322
  ListWorkflowsRequest = Shapes::StructureShape.new(name: 'ListWorkflowsRequest')
321
323
  ListWorkflowsResponse = Shapes::StructureShape.new(name: 'ListWorkflowsResponse')
322
324
  Logging = Shapes::StructureShape.new(name: 'Logging')
325
+ MarketplaceResourceLocation = Shapes::StringShape.new(name: 'MarketplaceResourceLocation')
326
+ MarketplaceResourceType = Shapes::StringShape.new(name: 'MarketplaceResourceType')
323
327
  MaxParallelLaunches = Shapes::IntegerShape.new(name: 'MaxParallelLaunches')
324
328
  NonEmptyString = Shapes::StringShape.new(name: 'NonEmptyString')
325
329
  NonEmptyStringList = Shapes::ListShape.new(name: 'NonEmptyStringList')
@@ -341,7 +345,12 @@ module Aws::Imagebuilder
341
345
  ParallelGroup = Shapes::StringShape.new(name: 'ParallelGroup')
342
346
  PipelineExecutionStartCondition = Shapes::StringShape.new(name: 'PipelineExecutionStartCondition')
343
347
  PipelineStatus = Shapes::StringShape.new(name: 'PipelineStatus')
348
+ Placement = Shapes::StructureShape.new(name: 'Placement')
344
349
  Platform = Shapes::StringShape.new(name: 'Platform')
350
+ ProductCodeId = Shapes::StringShape.new(name: 'ProductCodeId')
351
+ ProductCodeList = Shapes::ListShape.new(name: 'ProductCodeList')
352
+ ProductCodeListItem = Shapes::StructureShape.new(name: 'ProductCodeListItem')
353
+ ProductCodeType = Shapes::StringShape.new(name: 'ProductCodeType')
345
354
  PutComponentPolicyRequest = Shapes::StructureShape.new(name: 'PutComponentPolicyRequest')
346
355
  PutComponentPolicyResponse = Shapes::StructureShape.new(name: 'PutComponentPolicyResponse')
347
356
  PutContainerRecipePolicyRequest = Shapes::StructureShape.new(name: 'PutContainerRecipePolicyRequest')
@@ -393,6 +402,7 @@ module Aws::Imagebuilder
393
402
  TagValue = Shapes::StringShape.new(name: 'TagValue')
394
403
  TargetContainerRepository = Shapes::StructureShape.new(name: 'TargetContainerRepository')
395
404
  TargetResourceCount = Shapes::IntegerShape.new(name: 'TargetResourceCount')
405
+ TenancyType = Shapes::StringShape.new(name: 'TenancyType')
396
406
  Timezone = Shapes::StringShape.new(name: 'Timezone')
397
407
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
398
408
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
@@ -527,6 +537,7 @@ module Aws::Imagebuilder
527
537
  Component.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
528
538
  Component.add_member(:publisher, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "publisher"))
529
539
  Component.add_member(:obfuscate, Shapes::ShapeRef.new(shape: Boolean, location_name: "obfuscate"))
540
+ Component.add_member(:product_codes, Shapes::ShapeRef.new(shape: ProductCodeList, location_name: "productCodes"))
530
541
  Component.struct_class = Types::Component
531
542
 
532
543
  ComponentConfiguration.add_member(:component_arn, Shapes::ShapeRef.new(shape: ComponentVersionArnOrBuildVersionArn, required: true, location_name: "componentArn"))
@@ -582,6 +593,8 @@ module Aws::Imagebuilder
582
593
  ComponentVersion.add_member(:type, Shapes::ShapeRef.new(shape: ComponentType, location_name: "type"))
583
594
  ComponentVersion.add_member(:owner, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "owner"))
584
595
  ComponentVersion.add_member(:date_created, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateCreated"))
596
+ ComponentVersion.add_member(:status, Shapes::ShapeRef.new(shape: ComponentStatus, location_name: "status"))
597
+ ComponentVersion.add_member(:product_codes, Shapes::ShapeRef.new(shape: ProductCodeList, location_name: "productCodes"))
585
598
  ComponentVersion.struct_class = Types::ComponentVersion
586
599
 
587
600
  ComponentVersionList.member = Shapes::ShapeRef.new(shape: ComponentVersion)
@@ -751,6 +764,7 @@ module Aws::Imagebuilder
751
764
  CreateInfrastructureConfigurationRequest.add_member(:resource_tags, Shapes::ShapeRef.new(shape: ResourceTagMap, location_name: "resourceTags"))
752
765
  CreateInfrastructureConfigurationRequest.add_member(:instance_metadata_options, Shapes::ShapeRef.new(shape: InstanceMetadataOptions, location_name: "instanceMetadataOptions"))
753
766
  CreateInfrastructureConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
767
+ CreateInfrastructureConfigurationRequest.add_member(:placement, Shapes::ShapeRef.new(shape: Placement, location_name: "placement"))
754
768
  CreateInfrastructureConfigurationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
755
769
  CreateInfrastructureConfigurationRequest.struct_class = Types::CreateInfrastructureConfigurationRequest
756
770
 
@@ -1036,6 +1050,16 @@ module Aws::Imagebuilder
1036
1050
  GetLifecyclePolicyResponse.add_member(:lifecycle_policy, Shapes::ShapeRef.new(shape: LifecyclePolicy, location_name: "lifecyclePolicy"))
1037
1051
  GetLifecyclePolicyResponse.struct_class = Types::GetLifecyclePolicyResponse
1038
1052
 
1053
+ GetMarketplaceResourceRequest.add_member(:resource_type, Shapes::ShapeRef.new(shape: MarketplaceResourceType, required: true, location_name: "resourceType"))
1054
+ GetMarketplaceResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ImageBuilderArn, required: true, location_name: "resourceArn"))
1055
+ GetMarketplaceResourceRequest.add_member(:resource_location, Shapes::ShapeRef.new(shape: MarketplaceResourceLocation, location_name: "resourceLocation"))
1056
+ GetMarketplaceResourceRequest.struct_class = Types::GetMarketplaceResourceRequest
1057
+
1058
+ GetMarketplaceResourceResponse.add_member(:resource_arn, Shapes::ShapeRef.new(shape: ImageBuilderArn, location_name: "resourceArn"))
1059
+ GetMarketplaceResourceResponse.add_member(:url, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "url"))
1060
+ GetMarketplaceResourceResponse.add_member(:data, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "data"))
1061
+ GetMarketplaceResourceResponse.struct_class = Types::GetMarketplaceResourceResponse
1062
+
1039
1063
  GetWorkflowExecutionRequest.add_member(:workflow_execution_id, Shapes::ShapeRef.new(shape: WorkflowExecutionId, required: true, location: "querystring", location_name: "workflowExecutionId"))
1040
1064
  GetWorkflowExecutionRequest.struct_class = Types::GetWorkflowExecutionRequest
1041
1065
 
@@ -1312,6 +1336,7 @@ module Aws::Imagebuilder
1312
1336
  InfrastructureConfiguration.add_member(:resource_tags, Shapes::ShapeRef.new(shape: ResourceTagMap, location_name: "resourceTags"))
1313
1337
  InfrastructureConfiguration.add_member(:instance_metadata_options, Shapes::ShapeRef.new(shape: InstanceMetadataOptions, location_name: "instanceMetadataOptions"))
1314
1338
  InfrastructureConfiguration.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1339
+ InfrastructureConfiguration.add_member(:placement, Shapes::ShapeRef.new(shape: Placement, location_name: "placement"))
1315
1340
  InfrastructureConfiguration.struct_class = Types::InfrastructureConfiguration
1316
1341
 
1317
1342
  InfrastructureConfigurationSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ImageBuilderArn, location_name: "arn"))
@@ -1323,6 +1348,7 @@ module Aws::Imagebuilder
1323
1348
  InfrastructureConfigurationSummary.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1324
1349
  InfrastructureConfigurationSummary.add_member(:instance_types, Shapes::ShapeRef.new(shape: InstanceTypeList, location_name: "instanceTypes"))
1325
1350
  InfrastructureConfigurationSummary.add_member(:instance_profile_name, Shapes::ShapeRef.new(shape: InstanceProfileNameType, location_name: "instanceProfileName"))
1351
+ InfrastructureConfigurationSummary.add_member(:placement, Shapes::ShapeRef.new(shape: Placement, location_name: "placement"))
1326
1352
  InfrastructureConfigurationSummary.struct_class = Types::InfrastructureConfigurationSummary
1327
1353
 
1328
1354
  InfrastructureConfigurationSummaryList.member = Shapes::ShapeRef.new(shape: InfrastructureConfigurationSummary)
@@ -1756,6 +1782,18 @@ module Aws::Imagebuilder
1756
1782
  PackageVulnerabilityDetails.add_member(:reference_urls, Shapes::ShapeRef.new(shape: NonEmptyStringList, location_name: "referenceUrls"))
1757
1783
  PackageVulnerabilityDetails.struct_class = Types::PackageVulnerabilityDetails
1758
1784
 
1785
+ Placement.add_member(:availability_zone, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "availabilityZone"))
1786
+ Placement.add_member(:tenancy, Shapes::ShapeRef.new(shape: TenancyType, location_name: "tenancy"))
1787
+ Placement.add_member(:host_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "hostId"))
1788
+ Placement.add_member(:host_resource_group_arn, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "hostResourceGroupArn"))
1789
+ Placement.struct_class = Types::Placement
1790
+
1791
+ ProductCodeList.member = Shapes::ShapeRef.new(shape: ProductCodeListItem)
1792
+
1793
+ ProductCodeListItem.add_member(:product_code_id, Shapes::ShapeRef.new(shape: ProductCodeId, required: true, location_name: "productCodeId"))
1794
+ ProductCodeListItem.add_member(:product_code_type, Shapes::ShapeRef.new(shape: ProductCodeType, required: true, location_name: "productCodeType"))
1795
+ ProductCodeListItem.struct_class = Types::ProductCodeListItem
1796
+
1759
1797
  PutComponentPolicyRequest.add_member(:component_arn, Shapes::ShapeRef.new(shape: ComponentBuildVersionArn, required: true, location_name: "componentArn"))
1760
1798
  PutComponentPolicyRequest.add_member(:policy, Shapes::ShapeRef.new(shape: ResourcePolicyDocument, required: true, location_name: "policy"))
1761
1799
  PutComponentPolicyRequest.struct_class = Types::PutComponentPolicyRequest
@@ -1957,9 +1995,10 @@ module Aws::Imagebuilder
1957
1995
  UpdateInfrastructureConfigurationRequest.add_member(:key_pair, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "keyPair"))
1958
1996
  UpdateInfrastructureConfigurationRequest.add_member(:terminate_instance_on_failure, Shapes::ShapeRef.new(shape: NullableBoolean, location_name: "terminateInstanceOnFailure"))
1959
1997
  UpdateInfrastructureConfigurationRequest.add_member(:sns_topic_arn, Shapes::ShapeRef.new(shape: SnsTopicArn, location_name: "snsTopicArn"))
1960
- UpdateInfrastructureConfigurationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1961
1998
  UpdateInfrastructureConfigurationRequest.add_member(:resource_tags, Shapes::ShapeRef.new(shape: ResourceTagMap, location_name: "resourceTags"))
1962
1999
  UpdateInfrastructureConfigurationRequest.add_member(:instance_metadata_options, Shapes::ShapeRef.new(shape: InstanceMetadataOptions, location_name: "instanceMetadataOptions"))
2000
+ UpdateInfrastructureConfigurationRequest.add_member(:placement, Shapes::ShapeRef.new(shape: Placement, location_name: "placement"))
2001
+ UpdateInfrastructureConfigurationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
1963
2002
  UpdateInfrastructureConfigurationRequest.struct_class = Types::UpdateInfrastructureConfigurationRequest
1964
2003
 
1965
2004
  UpdateInfrastructureConfigurationResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
@@ -2646,6 +2685,20 @@ module Aws::Imagebuilder
2646
2685
  o.errors << Shapes::ShapeRef.new(shape: CallRateLimitExceededException)
2647
2686
  end)
2648
2687
 
2688
+ api.add_operation(:get_marketplace_resource, Seahorse::Model::Operation.new.tap do |o|
2689
+ o.name = "GetMarketplaceResource"
2690
+ o.http_method = "POST"
2691
+ o.http_request_uri = "/GetMarketplaceResource"
2692
+ o.input = Shapes::ShapeRef.new(shape: GetMarketplaceResourceRequest)
2693
+ o.output = Shapes::ShapeRef.new(shape: GetMarketplaceResourceResponse)
2694
+ o.errors << Shapes::ShapeRef.new(shape: ServiceException)
2695
+ o.errors << Shapes::ShapeRef.new(shape: ClientException)
2696
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
2697
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
2698
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
2699
+ o.errors << Shapes::ShapeRef.new(shape: CallRateLimitExceededException)
2700
+ end)
2701
+
2649
2702
  api.add_operation(:get_workflow, Seahorse::Model::Operation.new.tap do |o|
2650
2703
  o.name = "GetWorkflow"
2651
2704
  o.http_method = "GET"