aws-sdk-imagebuilder 1.18.0 → 1.19.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 52741986208e929ca05a36b3848c705f342cb3b07635ef651c4c9cd2b9eeb536
4
- data.tar.gz: 363e701c1d4137a38b8f6808740206dcc48317c49494e805c0d8ef4f97c81d03
3
+ metadata.gz: 1a6dc1fc7660f603834a1521667d9de0d873a392a10473537f4adda77d3e2444
4
+ data.tar.gz: a0be031de904cf218d90b77f20459f739a2c7a0d58f423c8dcdf58225cb89a38
5
5
  SHA512:
6
- metadata.gz: d66a8f64f92bc16856f1f9cf3e521c1a4d9de4f8d8502bf318c93545b368b49a37f76f8f2ade794fe0fbe79a55553d3122b3481c117acc2a3bbffd4c5e8392e5
7
- data.tar.gz: a3ad22519bf5d09c9fd3e00fc0888996ca1b5e847721c250882a5727a5a3d1cda53c02e792844b35b732b285127def4b9104601b9d1425af1941026cb1721ec6
6
+ metadata.gz: 251953d7cb4e4581a0a7dabaed53ed54779f8b8f6b0f8ab18812f9d0a3f1849ffea304d4fc3403ba44b7f22b855318553724be0448452024698386ad3392d0d6
7
+ data.tar.gz: ad0c4536f08ee5c01837a6eef0c5b111bcb314c29aec07eb1b59be928f0994c9278f8ae6b829e2f2ed77fc1fcbc7997cd1f7d3ec7231543feecfba2dd5a2d5b3
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-imagebuilder/customizations'
48
48
  # @!group service
49
49
  module Aws::Imagebuilder
50
50
 
51
- GEM_VERSION = '1.18.0'
51
+ GEM_VERSION = '1.19.0'
52
52
 
53
53
  end
@@ -793,6 +793,7 @@ module Aws::Imagebuilder
793
793
  # enhanced_image_metadata_enabled: false,
794
794
  # schedule: {
795
795
  # schedule_expression: "NonEmptyString",
796
+ # timezone: "Timezone",
796
797
  # pipeline_execution_start_condition: "EXPRESSION_MATCH_ONLY", # accepts EXPRESSION_MATCH_ONLY, EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE
797
798
  # },
798
799
  # status: "DISABLED", # accepts DISABLED, ENABLED
@@ -885,7 +886,7 @@ module Aws::Imagebuilder
885
886
  # kms_key_id: "NonEmptyString",
886
887
  # snapshot_id: "NonEmptyString",
887
888
  # volume_size: 1,
888
- # volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1
889
+ # volume_type: "standard", # accepts standard, io1, io2, gp2, gp3, sc1, st1
889
890
  # },
890
891
  # virtual_name: "NonEmptyString",
891
892
  # no_device: "EmptyString",
@@ -1489,7 +1490,7 @@ module Aws::Imagebuilder
1489
1490
  # resp.image.image_recipe.block_device_mappings[0].ebs.kms_key_id #=> String
1490
1491
  # resp.image.image_recipe.block_device_mappings[0].ebs.snapshot_id #=> String
1491
1492
  # resp.image.image_recipe.block_device_mappings[0].ebs.volume_size #=> Integer
1492
- # resp.image.image_recipe.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1"
1493
+ # resp.image.image_recipe.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "gp3", "sc1", "st1"
1493
1494
  # resp.image.image_recipe.block_device_mappings[0].virtual_name #=> String
1494
1495
  # resp.image.image_recipe.block_device_mappings[0].no_device #=> String
1495
1496
  # resp.image.image_recipe.date_created #=> String
@@ -1624,6 +1625,7 @@ module Aws::Imagebuilder
1624
1625
  # resp.image_pipeline.image_tests_configuration.image_tests_enabled #=> Boolean
1625
1626
  # resp.image_pipeline.image_tests_configuration.timeout_minutes #=> Integer
1626
1627
  # resp.image_pipeline.schedule.schedule_expression #=> String
1628
+ # resp.image_pipeline.schedule.timezone #=> String
1627
1629
  # resp.image_pipeline.schedule.pipeline_execution_start_condition #=> String, one of "EXPRESSION_MATCH_ONLY", "EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE"
1628
1630
  # resp.image_pipeline.status #=> String, one of "DISABLED", "ENABLED"
1629
1631
  # resp.image_pipeline.date_created #=> String
@@ -1711,7 +1713,7 @@ module Aws::Imagebuilder
1711
1713
  # resp.image_recipe.block_device_mappings[0].ebs.kms_key_id #=> String
1712
1714
  # resp.image_recipe.block_device_mappings[0].ebs.snapshot_id #=> String
1713
1715
  # resp.image_recipe.block_device_mappings[0].ebs.volume_size #=> Integer
1714
- # resp.image_recipe.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1"
1716
+ # resp.image_recipe.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "gp3", "sc1", "st1"
1715
1717
  # resp.image_recipe.block_device_mappings[0].virtual_name #=> String
1716
1718
  # resp.image_recipe.block_device_mappings[0].no_device #=> String
1717
1719
  # resp.image_recipe.date_created #=> String
@@ -2233,6 +2235,54 @@ module Aws::Imagebuilder
2233
2235
  req.send_request(options)
2234
2236
  end
2235
2237
 
2238
+ # List the Packages that are associated with an Image Build Version, as
2239
+ # determined by AWS Systems Manager Inventory at build time.
2240
+ #
2241
+ # @option params [required, String] :image_build_version_arn
2242
+ # Filter results for the ListImagePackages request by the Image Build
2243
+ # Version ARN
2244
+ #
2245
+ # @option params [Integer] :max_results
2246
+ # The maxiumum number of results to return from the ListImagePackages
2247
+ # request.
2248
+ #
2249
+ # @option params [String] :next_token
2250
+ # A token to specify where to start paginating. This is the NextToken
2251
+ # from a previously truncated response.
2252
+ #
2253
+ # @return [Types::ListImagePackagesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2254
+ #
2255
+ # * {Types::ListImagePackagesResponse#request_id #request_id} => String
2256
+ # * {Types::ListImagePackagesResponse#image_package_list #image_package_list} => Array<Types::ImagePackage>
2257
+ # * {Types::ListImagePackagesResponse#next_token #next_token} => String
2258
+ #
2259
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
2260
+ #
2261
+ # @example Request syntax with placeholder values
2262
+ #
2263
+ # resp = client.list_image_packages({
2264
+ # image_build_version_arn: "ImageBuildVersionArn", # required
2265
+ # max_results: 1,
2266
+ # next_token: "PaginationToken",
2267
+ # })
2268
+ #
2269
+ # @example Response structure
2270
+ #
2271
+ # resp.request_id #=> String
2272
+ # resp.image_package_list #=> Array
2273
+ # resp.image_package_list[0].package_name #=> String
2274
+ # resp.image_package_list[0].package_version #=> String
2275
+ # resp.next_token #=> String
2276
+ #
2277
+ # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListImagePackages AWS API Documentation
2278
+ #
2279
+ # @overload list_image_packages(params = {})
2280
+ # @param [Hash] params ({})
2281
+ def list_image_packages(params = {}, options = {})
2282
+ req = build_request(:list_image_packages, params)
2283
+ req.send_request(options)
2284
+ end
2285
+
2236
2286
  # Returns a list of images created by the specified pipeline.
2237
2287
  #
2238
2288
  # @option params [required, String] :image_pipeline_arn
@@ -2359,6 +2409,7 @@ module Aws::Imagebuilder
2359
2409
  # resp.image_pipeline_list[0].image_tests_configuration.image_tests_enabled #=> Boolean
2360
2410
  # resp.image_pipeline_list[0].image_tests_configuration.timeout_minutes #=> Integer
2361
2411
  # resp.image_pipeline_list[0].schedule.schedule_expression #=> String
2412
+ # resp.image_pipeline_list[0].schedule.timezone #=> String
2362
2413
  # resp.image_pipeline_list[0].schedule.pipeline_execution_start_condition #=> String, one of "EXPRESSION_MATCH_ONLY", "EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE"
2363
2414
  # resp.image_pipeline_list[0].status #=> String, one of "DISABLED", "ENABLED"
2364
2415
  # resp.image_pipeline_list[0].date_created #=> String
@@ -2560,6 +2611,9 @@ module Aws::Imagebuilder
2560
2611
  # resp.infrastructure_configuration_summary_list[0].resource_tags["TagKey"] #=> String
2561
2612
  # resp.infrastructure_configuration_summary_list[0].tags #=> Hash
2562
2613
  # resp.infrastructure_configuration_summary_list[0].tags["TagKey"] #=> String
2614
+ # resp.infrastructure_configuration_summary_list[0].instance_types #=> Array
2615
+ # resp.infrastructure_configuration_summary_list[0].instance_types[0] #=> String
2616
+ # resp.infrastructure_configuration_summary_list[0].instance_profile_name #=> String
2563
2617
  # resp.next_token #=> String
2564
2618
  #
2565
2619
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListInfrastructureConfigurations AWS API Documentation
@@ -3015,6 +3069,7 @@ module Aws::Imagebuilder
3015
3069
  # enhanced_image_metadata_enabled: false,
3016
3070
  # schedule: {
3017
3071
  # schedule_expression: "NonEmptyString",
3072
+ # timezone: "Timezone",
3018
3073
  # pipeline_execution_start_condition: "EXPRESSION_MATCH_ONLY", # accepts EXPRESSION_MATCH_ONLY, EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE
3019
3074
  # },
3020
3075
  # status: "DISABLED", # accepts DISABLED, ENABLED
@@ -3146,7 +3201,7 @@ module Aws::Imagebuilder
3146
3201
  params: params,
3147
3202
  config: config)
3148
3203
  context[:gem_name] = 'aws-sdk-imagebuilder'
3149
- context[:gem_version] = '1.18.0'
3204
+ context[:gem_version] = '1.19.0'
3150
3205
  Seahorse::Client::Request.new(handlers, context)
3151
3206
  end
3152
3207
 
@@ -123,6 +123,8 @@ module Aws::Imagebuilder
123
123
  Image = Shapes::StructureShape.new(name: 'Image')
124
124
  ImageBuildVersionArn = Shapes::StringShape.new(name: 'ImageBuildVersionArn')
125
125
  ImageBuilderArn = Shapes::StringShape.new(name: 'ImageBuilderArn')
126
+ ImagePackage = Shapes::StructureShape.new(name: 'ImagePackage')
127
+ ImagePackageList = Shapes::ListShape.new(name: 'ImagePackageList')
126
128
  ImagePipeline = Shapes::StructureShape.new(name: 'ImagePipeline')
127
129
  ImagePipelineArn = Shapes::StringShape.new(name: 'ImagePipelineArn')
128
130
  ImagePipelineList = Shapes::ListShape.new(name: 'ImagePipelineList')
@@ -151,6 +153,7 @@ module Aws::Imagebuilder
151
153
  InlineDockerFileTemplate = Shapes::StringShape.new(name: 'InlineDockerFileTemplate')
152
154
  InstanceBlockDeviceMapping = Shapes::StructureShape.new(name: 'InstanceBlockDeviceMapping')
153
155
  InstanceBlockDeviceMappings = Shapes::ListShape.new(name: 'InstanceBlockDeviceMappings')
156
+ InstanceProfileNameType = Shapes::StringShape.new(name: 'InstanceProfileNameType')
154
157
  InstanceType = Shapes::StringShape.new(name: 'InstanceType')
155
158
  InstanceTypeList = Shapes::ListShape.new(name: 'InstanceTypeList')
156
159
  InvalidPaginationTokenException = Shapes::StructureShape.new(name: 'InvalidPaginationTokenException')
@@ -172,6 +175,8 @@ module Aws::Imagebuilder
172
175
  ListDistributionConfigurationsResponse = Shapes::StructureShape.new(name: 'ListDistributionConfigurationsResponse')
173
176
  ListImageBuildVersionsRequest = Shapes::StructureShape.new(name: 'ListImageBuildVersionsRequest')
174
177
  ListImageBuildVersionsResponse = Shapes::StructureShape.new(name: 'ListImageBuildVersionsResponse')
178
+ ListImagePackagesRequest = Shapes::StructureShape.new(name: 'ListImagePackagesRequest')
179
+ ListImagePackagesResponse = Shapes::StructureShape.new(name: 'ListImagePackagesResponse')
175
180
  ListImagePipelineImagesRequest = Shapes::StructureShape.new(name: 'ListImagePipelineImagesRequest')
176
181
  ListImagePipelineImagesResponse = Shapes::StructureShape.new(name: 'ListImagePipelineImagesResponse')
177
182
  ListImagePipelinesRequest = Shapes::StructureShape.new(name: 'ListImagePipelinesRequest')
@@ -229,6 +234,7 @@ module Aws::Imagebuilder
229
234
  TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
230
235
  TagValue = Shapes::StringShape.new(name: 'TagValue')
231
236
  TargetContainerRepository = Shapes::StructureShape.new(name: 'TargetContainerRepository')
237
+ Timezone = Shapes::StringShape.new(name: 'Timezone')
232
238
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
233
239
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
234
240
  UpdateDistributionConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateDistributionConfigurationRequest')
@@ -685,6 +691,12 @@ module Aws::Imagebuilder
685
691
  Image.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
686
692
  Image.struct_class = Types::Image
687
693
 
694
+ ImagePackage.add_member(:package_name, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "packageName"))
695
+ ImagePackage.add_member(:package_version, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "packageVersion"))
696
+ ImagePackage.struct_class = Types::ImagePackage
697
+
698
+ ImagePackageList.member = Shapes::ShapeRef.new(shape: ImagePackage)
699
+
688
700
  ImagePipeline.add_member(:arn, Shapes::ShapeRef.new(shape: ImageBuilderArn, location_name: "arn"))
689
701
  ImagePipeline.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "name"))
690
702
  ImagePipeline.add_member(:description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "description"))
@@ -790,7 +802,7 @@ module Aws::Imagebuilder
790
802
  InfrastructureConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "name"))
791
803
  InfrastructureConfiguration.add_member(:description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "description"))
792
804
  InfrastructureConfiguration.add_member(:instance_types, Shapes::ShapeRef.new(shape: InstanceTypeList, location_name: "instanceTypes"))
793
- InfrastructureConfiguration.add_member(:instance_profile_name, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "instanceProfileName"))
805
+ InfrastructureConfiguration.add_member(:instance_profile_name, Shapes::ShapeRef.new(shape: InstanceProfileNameType, location_name: "instanceProfileName"))
794
806
  InfrastructureConfiguration.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "securityGroupIds"))
795
807
  InfrastructureConfiguration.add_member(:subnet_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "subnetId"))
796
808
  InfrastructureConfiguration.add_member(:logging, Shapes::ShapeRef.new(shape: Logging, location_name: "logging"))
@@ -810,6 +822,8 @@ module Aws::Imagebuilder
810
822
  InfrastructureConfigurationSummary.add_member(:date_updated, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateUpdated"))
811
823
  InfrastructureConfigurationSummary.add_member(:resource_tags, Shapes::ShapeRef.new(shape: ResourceTagMap, location_name: "resourceTags"))
812
824
  InfrastructureConfigurationSummary.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
825
+ InfrastructureConfigurationSummary.add_member(:instance_types, Shapes::ShapeRef.new(shape: InstanceTypeList, location_name: "instanceTypes"))
826
+ InfrastructureConfigurationSummary.add_member(:instance_profile_name, Shapes::ShapeRef.new(shape: InstanceProfileNameType, location_name: "instanceProfileName"))
813
827
  InfrastructureConfigurationSummary.struct_class = Types::InfrastructureConfigurationSummary
814
828
 
815
829
  InfrastructureConfigurationSummaryList.member = Shapes::ShapeRef.new(shape: InfrastructureConfigurationSummary)
@@ -902,6 +916,16 @@ module Aws::Imagebuilder
902
916
  ListImageBuildVersionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
903
917
  ListImageBuildVersionsResponse.struct_class = Types::ListImageBuildVersionsResponse
904
918
 
919
+ ListImagePackagesRequest.add_member(:image_build_version_arn, Shapes::ShapeRef.new(shape: ImageBuildVersionArn, required: true, location_name: "imageBuildVersionArn"))
920
+ ListImagePackagesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: RestrictedInteger, location_name: "maxResults", metadata: {"box"=>true}))
921
+ ListImagePackagesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
922
+ ListImagePackagesRequest.struct_class = Types::ListImagePackagesRequest
923
+
924
+ ListImagePackagesResponse.add_member(:request_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "requestId"))
925
+ ListImagePackagesResponse.add_member(:image_package_list, Shapes::ShapeRef.new(shape: ImagePackageList, location_name: "imagePackageList"))
926
+ ListImagePackagesResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: PaginationToken, location_name: "nextToken"))
927
+ ListImagePackagesResponse.struct_class = Types::ListImagePackagesResponse
928
+
905
929
  ListImagePipelineImagesRequest.add_member(:image_pipeline_arn, Shapes::ShapeRef.new(shape: ImagePipelineArn, required: true, location_name: "imagePipelineArn"))
906
930
  ListImagePipelineImagesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "filters"))
907
931
  ListImagePipelineImagesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: RestrictedInteger, location_name: "maxResults", metadata: {"box"=>true}))
@@ -1026,6 +1050,7 @@ module Aws::Imagebuilder
1026
1050
  S3Logs.struct_class = Types::S3Logs
1027
1051
 
1028
1052
  Schedule.add_member(:schedule_expression, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "scheduleExpression"))
1053
+ Schedule.add_member(:timezone, Shapes::ShapeRef.new(shape: Timezone, location_name: "timezone"))
1029
1054
  Schedule.add_member(:pipeline_execution_start_condition, Shapes::ShapeRef.new(shape: PipelineExecutionStartCondition, location_name: "pipelineExecutionStartCondition"))
1030
1055
  Schedule.struct_class = Types::Schedule
1031
1056
 
@@ -1666,6 +1691,28 @@ module Aws::Imagebuilder
1666
1691
  )
1667
1692
  end)
1668
1693
 
1694
+ api.add_operation(:list_image_packages, Seahorse::Model::Operation.new.tap do |o|
1695
+ o.name = "ListImagePackages"
1696
+ o.http_method = "POST"
1697
+ o.http_request_uri = "/ListImagePackages"
1698
+ o.input = Shapes::ShapeRef.new(shape: ListImagePackagesRequest)
1699
+ o.output = Shapes::ShapeRef.new(shape: ListImagePackagesResponse)
1700
+ o.errors << Shapes::ShapeRef.new(shape: ServiceException)
1701
+ o.errors << Shapes::ShapeRef.new(shape: ClientException)
1702
+ o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
1703
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
1704
+ o.errors << Shapes::ShapeRef.new(shape: InvalidPaginationTokenException)
1705
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
1706
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
1707
+ o.errors << Shapes::ShapeRef.new(shape: CallRateLimitExceededException)
1708
+ o[:pager] = Aws::Pager.new(
1709
+ limit_key: "max_results",
1710
+ tokens: {
1711
+ "next_token" => "next_token"
1712
+ }
1713
+ )
1714
+ end)
1715
+
1669
1716
  api.add_operation(:list_image_pipeline_images, Seahorse::Model::Operation.new.tap do |o|
1670
1717
  o.name = "ListImagePipelineImages"
1671
1718
  o.http_method = "POST"
@@ -996,6 +996,7 @@ module Aws::Imagebuilder
996
996
  # enhanced_image_metadata_enabled: false,
997
997
  # schedule: {
998
998
  # schedule_expression: "NonEmptyString",
999
+ # timezone: "Timezone",
999
1000
  # pipeline_execution_start_condition: "EXPRESSION_MATCH_ONLY", # accepts EXPRESSION_MATCH_ONLY, EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE
1000
1001
  # },
1001
1002
  # status: "DISABLED", # accepts DISABLED, ENABLED
@@ -1129,7 +1130,7 @@ module Aws::Imagebuilder
1129
1130
  # kms_key_id: "NonEmptyString",
1130
1131
  # snapshot_id: "NonEmptyString",
1131
1132
  # volume_size: 1,
1132
- # volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1
1133
+ # volume_type: "standard", # accepts standard, io1, io2, gp2, gp3, sc1, st1
1133
1134
  # },
1134
1135
  # virtual_name: "NonEmptyString",
1135
1136
  # no_device: "EmptyString",
@@ -1888,7 +1889,7 @@ module Aws::Imagebuilder
1888
1889
  # kms_key_id: "NonEmptyString",
1889
1890
  # snapshot_id: "NonEmptyString",
1890
1891
  # volume_size: 1,
1891
- # volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1
1892
+ # volume_type: "standard", # accepts standard, io1, io2, gp2, gp3, sc1, st1
1892
1893
  # }
1893
1894
  #
1894
1895
  # @!attribute [rw] encrypted
@@ -2505,6 +2506,27 @@ module Aws::Imagebuilder
2505
2506
  include Aws::Structure
2506
2507
  end
2507
2508
 
2509
+ # Represents a package installed on an Image Builder image.
2510
+ #
2511
+ # @!attribute [rw] package_name
2512
+ # The name of the package as reported to the operating system package
2513
+ # manager.
2514
+ # @return [String]
2515
+ #
2516
+ # @!attribute [rw] package_version
2517
+ # The version of the package as reported to the operating system
2518
+ # package manager.
2519
+ # @return [String]
2520
+ #
2521
+ # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ImagePackage AWS API Documentation
2522
+ #
2523
+ class ImagePackage < Struct.new(
2524
+ :package_name,
2525
+ :package_version)
2526
+ SENSITIVE = []
2527
+ include Aws::Structure
2528
+ end
2529
+
2508
2530
  # Details of an image pipeline.
2509
2531
  #
2510
2532
  # @!attribute [rw] arn
@@ -3126,6 +3148,14 @@ module Aws::Imagebuilder
3126
3148
  # The tags of the infrastructure configuration.
3127
3149
  # @return [Hash<String,String>]
3128
3150
  #
3151
+ # @!attribute [rw] instance_types
3152
+ # The instance types of the infrastructure configuration.
3153
+ # @return [Array<String>]
3154
+ #
3155
+ # @!attribute [rw] instance_profile_name
3156
+ # The instance profile of the infrastructure configuration.
3157
+ # @return [String]
3158
+ #
3129
3159
  # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/InfrastructureConfigurationSummary AWS API Documentation
3130
3160
  #
3131
3161
  class InfrastructureConfigurationSummary < Struct.new(
@@ -3135,7 +3165,9 @@ module Aws::Imagebuilder
3135
3165
  :date_created,
3136
3166
  :date_updated,
3137
3167
  :resource_tags,
3138
- :tags)
3168
+ :tags,
3169
+ :instance_types,
3170
+ :instance_profile_name)
3139
3171
  SENSITIVE = []
3140
3172
  include Aws::Structure
3141
3173
  end
@@ -3155,7 +3187,7 @@ module Aws::Imagebuilder
3155
3187
  # kms_key_id: "NonEmptyString",
3156
3188
  # snapshot_id: "NonEmptyString",
3157
3189
  # volume_size: 1,
3158
- # volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1
3190
+ # volume_type: "standard", # accepts standard, io1, io2, gp2, gp3, sc1, st1
3159
3191
  # },
3160
3192
  # virtual_name: "NonEmptyString",
3161
3193
  # no_device: "EmptyString",
@@ -3650,6 +3682,63 @@ module Aws::Imagebuilder
3650
3682
  include Aws::Structure
3651
3683
  end
3652
3684
 
3685
+ # @note When making an API call, you may pass ListImagePackagesRequest
3686
+ # data as a hash:
3687
+ #
3688
+ # {
3689
+ # image_build_version_arn: "ImageBuildVersionArn", # required
3690
+ # max_results: 1,
3691
+ # next_token: "PaginationToken",
3692
+ # }
3693
+ #
3694
+ # @!attribute [rw] image_build_version_arn
3695
+ # Filter results for the ListImagePackages request by the Image Build
3696
+ # Version ARN
3697
+ # @return [String]
3698
+ #
3699
+ # @!attribute [rw] max_results
3700
+ # The maxiumum number of results to return from the ListImagePackages
3701
+ # request.
3702
+ # @return [Integer]
3703
+ #
3704
+ # @!attribute [rw] next_token
3705
+ # A token to specify where to start paginating. This is the NextToken
3706
+ # from a previously truncated response.
3707
+ # @return [String]
3708
+ #
3709
+ # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListImagePackagesRequest AWS API Documentation
3710
+ #
3711
+ class ListImagePackagesRequest < Struct.new(
3712
+ :image_build_version_arn,
3713
+ :max_results,
3714
+ :next_token)
3715
+ SENSITIVE = []
3716
+ include Aws::Structure
3717
+ end
3718
+
3719
+ # @!attribute [rw] request_id
3720
+ # The request ID that uniquely identifies this request.
3721
+ # @return [String]
3722
+ #
3723
+ # @!attribute [rw] image_package_list
3724
+ # The list of Image Packages returned in the response.
3725
+ # @return [Array<Types::ImagePackage>]
3726
+ #
3727
+ # @!attribute [rw] next_token
3728
+ # A token to specify where to start paginating. This is the NextToken
3729
+ # from a previously truncated response.
3730
+ # @return [String]
3731
+ #
3732
+ # @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListImagePackagesResponse AWS API Documentation
3733
+ #
3734
+ class ListImagePackagesResponse < Struct.new(
3735
+ :request_id,
3736
+ :image_package_list,
3737
+ :next_token)
3738
+ SENSITIVE = []
3739
+ include Aws::Structure
3740
+ end
3741
+
3653
3742
  # @note When making an API call, you may pass ListImagePipelineImagesRequest
3654
3743
  # data as a hash:
3655
3744
  #
@@ -4341,6 +4430,7 @@ module Aws::Imagebuilder
4341
4430
  #
4342
4431
  # {
4343
4432
  # schedule_expression: "NonEmptyString",
4433
+ # timezone: "Timezone",
4344
4434
  # pipeline_execution_start_condition: "EXPRESSION_MATCH_ONLY", # accepts EXPRESSION_MATCH_ONLY, EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE
4345
4435
  # }
4346
4436
  #
@@ -4356,6 +4446,16 @@ module Aws::Imagebuilder
4356
4446
  # [1]: https://docs.aws.amazon.com/imagebuilder/latest/userguide/image-builder-cron.html
4357
4447
  # @return [String]
4358
4448
  #
4449
+ # @!attribute [rw] timezone
4450
+ # The timezone that applies to the scheduling expression. For example,
4451
+ # "Etc/UTC", "America/Los\_Angeles" in the [IANA timezone
4452
+ # format][1]. If not specified this defaults to UTC.
4453
+ #
4454
+ #
4455
+ #
4456
+ # [1]: https://www.joda.org/joda-time/timezones.html
4457
+ # @return [String]
4458
+ #
4359
4459
  # @!attribute [rw] pipeline_execution_start_condition
4360
4460
  # The condition configures when the pipeline should trigger a new
4361
4461
  # image build. When the `pipelineExecutionStartCondition` is set to
@@ -4378,6 +4478,7 @@ module Aws::Imagebuilder
4378
4478
  #
4379
4479
  class Schedule < Struct.new(
4380
4480
  :schedule_expression,
4481
+ :timezone,
4381
4482
  :pipeline_execution_start_condition)
4382
4483
  SENSITIVE = []
4383
4484
  include Aws::Structure
@@ -4677,6 +4778,7 @@ module Aws::Imagebuilder
4677
4778
  # enhanced_image_metadata_enabled: false,
4678
4779
  # schedule: {
4679
4780
  # schedule_expression: "NonEmptyString",
4781
+ # timezone: "Timezone",
4680
4782
  # pipeline_execution_start_condition: "EXPRESSION_MATCH_ONLY", # accepts EXPRESSION_MATCH_ONLY, EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE
4681
4783
  # },
4682
4784
  # status: "DISABLED", # accepts DISABLED, ENABLED
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-imagebuilder
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.18.0
4
+ version: 1.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-02 00:00:00.000000000 Z
11
+ date: 2021-02-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core