aws-sdk-imagebuilder 1.5.0 → 1.6.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: 4065e6dfac6f74c0c3a65054a5eccee06209ff5b746a4e5236d9eefc11fa3538
4
- data.tar.gz: 1fef6f5828759a09f05e779c6c1791a11497be9f9b17c944b18bb20bf4cfba01
3
+ metadata.gz: 9ec5508891fbd69ef2dba6f64befd31949e57a7f7215f3e79e041f8b38e3a0f2
4
+ data.tar.gz: 827c88b55518c304afc9065112e07fce2bfbffb372fc618c9255eed86e108e32
5
5
  SHA512:
6
- metadata.gz: cdd6a68ad2245cd31b0088345d8f5e0c7e75c97e25ba85f850a74b3a4213981cd6c55661cd75937626534130c6ea6bea1fa2ced222b947ba81a82c15174ee076
7
- data.tar.gz: 4db5f82c8f1fb7fcc45f3c99e9ff5dbb1174d3d6e8df0307c7c8df33c4554a7e608d506378e71d4ca0d1302e88d7f0f2a82b1e44b7732ac3040b0cbbb83f01ef
6
+ metadata.gz: 55cdf6303ef0330c73360844582a718230fb221df6e0b68fc40a9028e566eb5799681e7316c9869aeebe962beff13ac40f1675a995da1c55f091ccdab007c2f1
7
+ data.tar.gz: 3ac753e9f5217aed6bcb94876f65816962833317f79b1869936f6b41504f6a719256512c647551f43572377e4e65b672b536912c5e092d508aadfff2de563f59
@@ -45,6 +45,6 @@ require_relative 'aws-sdk-imagebuilder/customizations'
45
45
  # @service
46
46
  module Aws::Imagebuilder
47
47
 
48
- GEM_VERSION = '1.5.0'
48
+ GEM_VERSION = '1.6.0'
49
49
 
50
50
  end
@@ -372,6 +372,11 @@ module Aws::Imagebuilder
372
372
  # @option params [required, String] :platform
373
373
  # The platform of the component.
374
374
  #
375
+ # @option params [Array<String>] :supported_os_versions
376
+ # The operating system (OS) version supported by the component. If the
377
+ # OS information is available, a prefix match is performed against the
378
+ # parent image OS version during image recipe creation.
379
+ #
375
380
  # @option params [String] :data
376
381
  # The data of the component. Used to specify the data inline. Either
377
382
  # `data` or `uri` can be used to specify the data within the component.
@@ -408,6 +413,7 @@ module Aws::Imagebuilder
408
413
  # description: "NonEmptyString",
409
414
  # change_description: "NonEmptyString",
410
415
  # platform: "Windows", # required, accepts Windows, Linux
416
+ # supported_os_versions: ["OsVersion"],
411
417
  # data: "InlineComponentData",
412
418
  # uri: "Uri",
413
419
  # kms_key_id: "NonEmptyString",
@@ -1067,6 +1073,8 @@ module Aws::Imagebuilder
1067
1073
  # resp.component.change_description #=> String
1068
1074
  # resp.component.type #=> String, one of "BUILD", "TEST"
1069
1075
  # resp.component.platform #=> String, one of "Windows", "Linux"
1076
+ # resp.component.supported_os_versions #=> Array
1077
+ # resp.component.supported_os_versions[0] #=> String
1070
1078
  # resp.component.owner #=> String
1071
1079
  # resp.component.data #=> String
1072
1080
  # resp.component.kms_key_id #=> String
@@ -1618,6 +1626,8 @@ module Aws::Imagebuilder
1618
1626
  # resp.component_summary_list[0].name #=> String
1619
1627
  # resp.component_summary_list[0].version #=> String
1620
1628
  # resp.component_summary_list[0].platform #=> String, one of "Windows", "Linux"
1629
+ # resp.component_summary_list[0].supported_os_versions #=> Array
1630
+ # resp.component_summary_list[0].supported_os_versions[0] #=> String
1621
1631
  # resp.component_summary_list[0].type #=> String, one of "BUILD", "TEST"
1622
1632
  # resp.component_summary_list[0].owner #=> String
1623
1633
  # resp.component_summary_list[0].description #=> String
@@ -1687,6 +1697,8 @@ module Aws::Imagebuilder
1687
1697
  # resp.component_version_list[0].version #=> String
1688
1698
  # resp.component_version_list[0].description #=> String
1689
1699
  # resp.component_version_list[0].platform #=> String, one of "Windows", "Linux"
1700
+ # resp.component_version_list[0].supported_os_versions #=> Array
1701
+ # resp.component_version_list[0].supported_os_versions[0] #=> String
1690
1702
  # resp.component_version_list[0].type #=> String, one of "BUILD", "TEST"
1691
1703
  # resp.component_version_list[0].owner #=> String
1692
1704
  # resp.component_version_list[0].date_created #=> String
@@ -2660,7 +2672,7 @@ module Aws::Imagebuilder
2660
2672
  params: params,
2661
2673
  config: config)
2662
2674
  context[:gem_name] = 'aws-sdk-imagebuilder'
2663
- context[:gem_version] = '1.5.0'
2675
+ context[:gem_version] = '1.6.0'
2664
2676
  Seahorse::Client::Request.new(handlers, context)
2665
2677
  end
2666
2678
 
@@ -160,6 +160,7 @@ module Aws::Imagebuilder
160
160
  NonEmptyString = Shapes::StringShape.new(name: 'NonEmptyString')
161
161
  NullableBoolean = Shapes::BooleanShape.new(name: 'NullableBoolean')
162
162
  OsVersion = Shapes::StringShape.new(name: 'OsVersion')
163
+ OsVersionList = Shapes::ListShape.new(name: 'OsVersionList')
163
164
  OutputResources = Shapes::StructureShape.new(name: 'OutputResources')
164
165
  Ownership = Shapes::StringShape.new(name: 'Ownership')
165
166
  PipelineExecutionStartCondition = Shapes::StringShape.new(name: 'PipelineExecutionStartCondition')
@@ -245,6 +246,7 @@ module Aws::Imagebuilder
245
246
  Component.add_member(:change_description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "changeDescription"))
246
247
  Component.add_member(:type, Shapes::ShapeRef.new(shape: ComponentType, location_name: "type"))
247
248
  Component.add_member(:platform, Shapes::ShapeRef.new(shape: Platform, location_name: "platform"))
249
+ Component.add_member(:supported_os_versions, Shapes::ShapeRef.new(shape: OsVersionList, location_name: "supportedOsVersions"))
248
250
  Component.add_member(:owner, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "owner"))
249
251
  Component.add_member(:data, Shapes::ShapeRef.new(shape: ComponentData, location_name: "data"))
250
252
  Component.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "kmsKeyId"))
@@ -262,6 +264,7 @@ module Aws::Imagebuilder
262
264
  ComponentSummary.add_member(:name, Shapes::ShapeRef.new(shape: ResourceName, location_name: "name"))
263
265
  ComponentSummary.add_member(:version, Shapes::ShapeRef.new(shape: VersionNumber, location_name: "version"))
264
266
  ComponentSummary.add_member(:platform, Shapes::ShapeRef.new(shape: Platform, location_name: "platform"))
267
+ ComponentSummary.add_member(:supported_os_versions, Shapes::ShapeRef.new(shape: OsVersionList, location_name: "supportedOsVersions"))
265
268
  ComponentSummary.add_member(:type, Shapes::ShapeRef.new(shape: ComponentType, location_name: "type"))
266
269
  ComponentSummary.add_member(:owner, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "owner"))
267
270
  ComponentSummary.add_member(:description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "description"))
@@ -277,6 +280,7 @@ module Aws::Imagebuilder
277
280
  ComponentVersion.add_member(:version, Shapes::ShapeRef.new(shape: VersionNumber, location_name: "version"))
278
281
  ComponentVersion.add_member(:description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "description"))
279
282
  ComponentVersion.add_member(:platform, Shapes::ShapeRef.new(shape: Platform, location_name: "platform"))
283
+ ComponentVersion.add_member(:supported_os_versions, Shapes::ShapeRef.new(shape: OsVersionList, location_name: "supportedOsVersions"))
280
284
  ComponentVersion.add_member(:type, Shapes::ShapeRef.new(shape: ComponentType, location_name: "type"))
281
285
  ComponentVersion.add_member(:owner, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "owner"))
282
286
  ComponentVersion.add_member(:date_created, Shapes::ShapeRef.new(shape: DateTime, location_name: "dateCreated"))
@@ -289,6 +293,7 @@ module Aws::Imagebuilder
289
293
  CreateComponentRequest.add_member(:description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "description"))
290
294
  CreateComponentRequest.add_member(:change_description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "changeDescription"))
291
295
  CreateComponentRequest.add_member(:platform, Shapes::ShapeRef.new(shape: Platform, required: true, location_name: "platform"))
296
+ CreateComponentRequest.add_member(:supported_os_versions, Shapes::ShapeRef.new(shape: OsVersionList, location_name: "supportedOsVersions"))
292
297
  CreateComponentRequest.add_member(:data, Shapes::ShapeRef.new(shape: InlineComponentData, location_name: "data"))
293
298
  CreateComponentRequest.add_member(:uri, Shapes::ShapeRef.new(shape: Uri, location_name: "uri"))
294
299
  CreateComponentRequest.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "kmsKeyId"))
@@ -810,6 +815,8 @@ module Aws::Imagebuilder
810
815
  Logging.add_member(:s3_logs, Shapes::ShapeRef.new(shape: S3Logs, location_name: "s3Logs"))
811
816
  Logging.struct_class = Types::Logging
812
817
 
818
+ OsVersionList.member = Shapes::ShapeRef.new(shape: OsVersion)
819
+
813
820
  OutputResources.add_member(:amis, Shapes::ShapeRef.new(shape: AmiList, location_name: "amis"))
814
821
  OutputResources.struct_class = Types::OutputResources
815
822
 
@@ -194,6 +194,12 @@ module Aws::Imagebuilder
194
194
  # The platform of the component.
195
195
  # @return [String]
196
196
  #
197
+ # @!attribute [rw] supported_os_versions
198
+ # The operating system (OS) version supported by the component. If the
199
+ # OS information is available, a prefix match is performed against the
200
+ # parent image OS version during image recipe creation.
201
+ # @return [Array<String>]
202
+ #
197
203
  # @!attribute [rw] owner
198
204
  # The owner of the component.
199
205
  # @return [String]
@@ -228,6 +234,7 @@ module Aws::Imagebuilder
228
234
  :change_description,
229
235
  :type,
230
236
  :platform,
237
+ :supported_os_versions,
231
238
  :owner,
232
239
  :data,
233
240
  :kms_key_id,
@@ -275,6 +282,12 @@ module Aws::Imagebuilder
275
282
  # The platform of the component.
276
283
  # @return [String]
277
284
  #
285
+ # @!attribute [rw] supported_os_versions
286
+ # The operating system (OS) version supported by the component. If the
287
+ # OS information is available, a prefix match is performed against the
288
+ # parent image OS version during image recipe creation.
289
+ # @return [Array<String>]
290
+ #
278
291
  # @!attribute [rw] type
279
292
  # The type of the component denotes whether the component is used to
280
293
  # build the image or only to test it.
@@ -307,6 +320,7 @@ module Aws::Imagebuilder
307
320
  :name,
308
321
  :version,
309
322
  :platform,
323
+ :supported_os_versions,
310
324
  :type,
311
325
  :owner,
312
326
  :description,
@@ -338,6 +352,12 @@ module Aws::Imagebuilder
338
352
  # The platform of the component.
339
353
  # @return [String]
340
354
  #
355
+ # @!attribute [rw] supported_os_versions
356
+ # The operating system (OS) version supported by the component. If the
357
+ # OS information is available, a prefix match is performed against the
358
+ # parent image OS version during image recipe creation.
359
+ # @return [Array<String>]
360
+ #
341
361
  # @!attribute [rw] type
342
362
  # The type of the component denotes whether the component is used to
343
363
  # build the image or only to test it.
@@ -359,6 +379,7 @@ module Aws::Imagebuilder
359
379
  :version,
360
380
  :description,
361
381
  :platform,
382
+ :supported_os_versions,
362
383
  :type,
363
384
  :owner,
364
385
  :date_created)
@@ -374,6 +395,7 @@ module Aws::Imagebuilder
374
395
  # description: "NonEmptyString",
375
396
  # change_description: "NonEmptyString",
376
397
  # platform: "Windows", # required, accepts Windows, Linux
398
+ # supported_os_versions: ["OsVersion"],
377
399
  # data: "InlineComponentData",
378
400
  # uri: "Uri",
379
401
  # kms_key_id: "NonEmptyString",
@@ -408,6 +430,12 @@ module Aws::Imagebuilder
408
430
  # The platform of the component.
409
431
  # @return [String]
410
432
  #
433
+ # @!attribute [rw] supported_os_versions
434
+ # The operating system (OS) version supported by the component. If the
435
+ # OS information is available, a prefix match is performed against the
436
+ # parent image OS version during image recipe creation.
437
+ # @return [Array<String>]
438
+ #
411
439
  # @!attribute [rw] data
412
440
  # The data of the component. Used to specify the data inline. Either
413
441
  # `data` or `uri` can be used to specify the data within the
@@ -444,6 +472,7 @@ module Aws::Imagebuilder
444
472
  :description,
445
473
  :change_description,
446
474
  :platform,
475
+ :supported_os_versions,
447
476
  :data,
448
477
  :uri,
449
478
  :kms_key_id,
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.5.0
4
+ version: 1.6.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: 2020-05-07 00:00:00.000000000 Z
11
+ date: 2020-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core