aws-sdk-imagebuilder 1.14.0 → 1.15.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 +1 -1
- data/lib/aws-sdk-imagebuilder/client.rb +22 -15
- data/lib/aws-sdk-imagebuilder/client_api.rb +9 -5
- data/lib/aws-sdk-imagebuilder/types.rb +49 -21
- 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: 8dbb9b81bcf9859798980dccaf7e2ba2604d3fdc262967cabb893208826f4cb5
|
|
4
|
+
data.tar.gz: 690d7a9cabcad0207027ad48ae856970ba40a41bc1445eda8d9b1cf22ddfcf89
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: afd1f80b0e02cecacccc88256891aff548ca7e7d0c97a7a4fb406eac5e1a3168914da63f53f14f86ef6453c5161529793fac1807479420a314220d3c5893edb2
|
|
7
|
+
data.tar.gz: dd4b76266fade562337699610af7bdcf982edb69fc7f0db658fe37534525f1eddc846347d8bb17ad373263546bba1991932bedf004dab2484471b6f1a7f17c27
|
data/lib/aws-sdk-imagebuilder.rb
CHANGED
|
@@ -495,16 +495,17 @@ module Aws::Imagebuilder
|
|
|
495
495
|
# ami_distribution_configuration: {
|
|
496
496
|
# name: "AmiNameString",
|
|
497
497
|
# description: "NonEmptyString",
|
|
498
|
+
# target_account_ids: ["AccountId"],
|
|
498
499
|
# ami_tags: {
|
|
499
500
|
# "TagKey" => "TagValue",
|
|
500
501
|
# },
|
|
501
502
|
# kms_key_id: "NonEmptyString",
|
|
502
503
|
# launch_permission: {
|
|
503
|
-
# user_ids: ["
|
|
504
|
+
# user_ids: ["AccountId"],
|
|
504
505
|
# user_groups: ["NonEmptyString"],
|
|
505
506
|
# },
|
|
506
507
|
# },
|
|
507
|
-
# license_configuration_arns: ["
|
|
508
|
+
# license_configuration_arns: ["LicenseConfigurationArn"],
|
|
508
509
|
# },
|
|
509
510
|
# ],
|
|
510
511
|
# tags: {
|
|
@@ -711,13 +712,11 @@ module Aws::Imagebuilder
|
|
|
711
712
|
# The parent image of the image recipe. The value of the string can be
|
|
712
713
|
# the ARN of the parent image or an AMI ID. The format for the ARN
|
|
713
714
|
# follows this example:
|
|
714
|
-
# `arn:aws:imagebuilder:us-west-2:aws:image/windows-server-2016-english-full-base-x86/
|
|
715
|
-
#
|
|
716
|
-
#
|
|
717
|
-
#
|
|
718
|
-
#
|
|
719
|
-
# value, you must have access to the AMI, and the AMI must be in the
|
|
720
|
-
# same Region in which you are using Image Builder.
|
|
715
|
+
# `arn:aws:imagebuilder:us-west-2:aws:image/windows-server-2016-english-full-base-x86/xxxx.x.x`.
|
|
716
|
+
# You can provide the specific version that you want to use, or you can
|
|
717
|
+
# use a wildcard in all of the fields. If you enter an AMI ID for the
|
|
718
|
+
# string value, you must have access to the AMI, and the AMI must be in
|
|
719
|
+
# the same Region in which you are using Image Builder.
|
|
721
720
|
#
|
|
722
721
|
# @option params [Array<Types::InstanceBlockDeviceMapping>] :block_device_mappings
|
|
723
722
|
# The block device mappings of the image recipe.
|
|
@@ -762,7 +761,7 @@ module Aws::Imagebuilder
|
|
|
762
761
|
# kms_key_id: "NonEmptyString",
|
|
763
762
|
# snapshot_id: "NonEmptyString",
|
|
764
763
|
# volume_size: 1,
|
|
765
|
-
# volume_type: "standard", # accepts standard, io1, gp2, sc1, st1
|
|
764
|
+
# volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1
|
|
766
765
|
# },
|
|
767
766
|
# virtual_name: "NonEmptyString",
|
|
768
767
|
# no_device: "EmptyString",
|
|
@@ -1180,6 +1179,8 @@ module Aws::Imagebuilder
|
|
|
1180
1179
|
# resp.distribution_configuration.distributions[0].region #=> String
|
|
1181
1180
|
# resp.distribution_configuration.distributions[0].ami_distribution_configuration.name #=> String
|
|
1182
1181
|
# resp.distribution_configuration.distributions[0].ami_distribution_configuration.description #=> String
|
|
1182
|
+
# resp.distribution_configuration.distributions[0].ami_distribution_configuration.target_account_ids #=> Array
|
|
1183
|
+
# resp.distribution_configuration.distributions[0].ami_distribution_configuration.target_account_ids[0] #=> String
|
|
1183
1184
|
# resp.distribution_configuration.distributions[0].ami_distribution_configuration.ami_tags #=> Hash
|
|
1184
1185
|
# resp.distribution_configuration.distributions[0].ami_distribution_configuration.ami_tags["TagKey"] #=> String
|
|
1185
1186
|
# resp.distribution_configuration.distributions[0].ami_distribution_configuration.kms_key_id #=> String
|
|
@@ -1248,7 +1249,7 @@ module Aws::Imagebuilder
|
|
|
1248
1249
|
# resp.image.image_recipe.block_device_mappings[0].ebs.kms_key_id #=> String
|
|
1249
1250
|
# resp.image.image_recipe.block_device_mappings[0].ebs.snapshot_id #=> String
|
|
1250
1251
|
# resp.image.image_recipe.block_device_mappings[0].ebs.volume_size #=> Integer
|
|
1251
|
-
# resp.image.image_recipe.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "gp2", "sc1", "st1"
|
|
1252
|
+
# resp.image.image_recipe.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1"
|
|
1252
1253
|
# resp.image.image_recipe.block_device_mappings[0].virtual_name #=> String
|
|
1253
1254
|
# resp.image.image_recipe.block_device_mappings[0].no_device #=> String
|
|
1254
1255
|
# resp.image.image_recipe.date_created #=> String
|
|
@@ -1284,6 +1285,8 @@ module Aws::Imagebuilder
|
|
|
1284
1285
|
# resp.image.distribution_configuration.distributions[0].region #=> String
|
|
1285
1286
|
# resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.name #=> String
|
|
1286
1287
|
# resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.description #=> String
|
|
1288
|
+
# resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.target_account_ids #=> Array
|
|
1289
|
+
# resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.target_account_ids[0] #=> String
|
|
1287
1290
|
# resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.ami_tags #=> Hash
|
|
1288
1291
|
# resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.ami_tags["TagKey"] #=> String
|
|
1289
1292
|
# resp.image.distribution_configuration.distributions[0].ami_distribution_configuration.kms_key_id #=> String
|
|
@@ -1308,6 +1311,7 @@ module Aws::Imagebuilder
|
|
|
1308
1311
|
# resp.image.output_resources.amis[0].description #=> String
|
|
1309
1312
|
# resp.image.output_resources.amis[0].state.status #=> String, one of "PENDING", "CREATING", "BUILDING", "TESTING", "DISTRIBUTING", "INTEGRATING", "AVAILABLE", "CANCELLED", "FAILED", "DEPRECATED", "DELETED"
|
|
1310
1313
|
# resp.image.output_resources.amis[0].state.reason #=> String
|
|
1314
|
+
# resp.image.output_resources.amis[0].account_id #=> String
|
|
1311
1315
|
# resp.image.tags #=> Hash
|
|
1312
1316
|
# resp.image.tags["TagKey"] #=> String
|
|
1313
1317
|
#
|
|
@@ -1437,7 +1441,7 @@ module Aws::Imagebuilder
|
|
|
1437
1441
|
# resp.image_recipe.block_device_mappings[0].ebs.kms_key_id #=> String
|
|
1438
1442
|
# resp.image_recipe.block_device_mappings[0].ebs.snapshot_id #=> String
|
|
1439
1443
|
# resp.image_recipe.block_device_mappings[0].ebs.volume_size #=> Integer
|
|
1440
|
-
# resp.image_recipe.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "gp2", "sc1", "st1"
|
|
1444
|
+
# resp.image_recipe.block_device_mappings[0].ebs.volume_type #=> String, one of "standard", "io1", "io2", "gp2", "sc1", "st1"
|
|
1441
1445
|
# resp.image_recipe.block_device_mappings[0].virtual_name #=> String
|
|
1442
1446
|
# resp.image_recipe.block_device_mappings[0].no_device #=> String
|
|
1443
1447
|
# resp.image_recipe.date_created #=> String
|
|
@@ -1868,6 +1872,7 @@ module Aws::Imagebuilder
|
|
|
1868
1872
|
# resp.image_summary_list[0].output_resources.amis[0].description #=> String
|
|
1869
1873
|
# resp.image_summary_list[0].output_resources.amis[0].state.status #=> String, one of "PENDING", "CREATING", "BUILDING", "TESTING", "DISTRIBUTING", "INTEGRATING", "AVAILABLE", "CANCELLED", "FAILED", "DEPRECATED", "DELETED"
|
|
1870
1874
|
# resp.image_summary_list[0].output_resources.amis[0].state.reason #=> String
|
|
1875
|
+
# resp.image_summary_list[0].output_resources.amis[0].account_id #=> String
|
|
1871
1876
|
# resp.image_summary_list[0].tags #=> Hash
|
|
1872
1877
|
# resp.image_summary_list[0].tags["TagKey"] #=> String
|
|
1873
1878
|
# resp.next_token #=> String
|
|
@@ -1939,6 +1944,7 @@ module Aws::Imagebuilder
|
|
|
1939
1944
|
# resp.image_summary_list[0].output_resources.amis[0].description #=> String
|
|
1940
1945
|
# resp.image_summary_list[0].output_resources.amis[0].state.status #=> String, one of "PENDING", "CREATING", "BUILDING", "TESTING", "DISTRIBUTING", "INTEGRATING", "AVAILABLE", "CANCELLED", "FAILED", "DEPRECATED", "DELETED"
|
|
1941
1946
|
# resp.image_summary_list[0].output_resources.amis[0].state.reason #=> String
|
|
1947
|
+
# resp.image_summary_list[0].output_resources.amis[0].account_id #=> String
|
|
1942
1948
|
# resp.image_summary_list[0].tags #=> Hash
|
|
1943
1949
|
# resp.image_summary_list[0].tags["TagKey"] #=> String
|
|
1944
1950
|
# resp.next_token #=> String
|
|
@@ -2496,16 +2502,17 @@ module Aws::Imagebuilder
|
|
|
2496
2502
|
# ami_distribution_configuration: {
|
|
2497
2503
|
# name: "AmiNameString",
|
|
2498
2504
|
# description: "NonEmptyString",
|
|
2505
|
+
# target_account_ids: ["AccountId"],
|
|
2499
2506
|
# ami_tags: {
|
|
2500
2507
|
# "TagKey" => "TagValue",
|
|
2501
2508
|
# },
|
|
2502
2509
|
# kms_key_id: "NonEmptyString",
|
|
2503
2510
|
# launch_permission: {
|
|
2504
|
-
# user_ids: ["
|
|
2511
|
+
# user_ids: ["AccountId"],
|
|
2505
2512
|
# user_groups: ["NonEmptyString"],
|
|
2506
2513
|
# },
|
|
2507
2514
|
# },
|
|
2508
|
-
# license_configuration_arns: ["
|
|
2515
|
+
# license_configuration_arns: ["LicenseConfigurationArn"],
|
|
2509
2516
|
# },
|
|
2510
2517
|
# ],
|
|
2511
2518
|
# client_token: "ClientToken", # required
|
|
@@ -2722,7 +2729,7 @@ module Aws::Imagebuilder
|
|
|
2722
2729
|
params: params,
|
|
2723
2730
|
config: config)
|
|
2724
2731
|
context[:gem_name] = 'aws-sdk-imagebuilder'
|
|
2725
|
-
context[:gem_version] = '1.
|
|
2732
|
+
context[:gem_version] = '1.15.0'
|
|
2726
2733
|
Seahorse::Client::Request.new(handlers, context)
|
|
2727
2734
|
end
|
|
2728
2735
|
|
|
@@ -13,13 +13,13 @@ module Aws::Imagebuilder
|
|
|
13
13
|
|
|
14
14
|
include Seahorse::Model
|
|
15
15
|
|
|
16
|
+
AccountId = Shapes::StringShape.new(name: 'AccountId')
|
|
16
17
|
AccountList = Shapes::ListShape.new(name: 'AccountList')
|
|
17
18
|
Ami = Shapes::StructureShape.new(name: 'Ami')
|
|
18
19
|
AmiDistributionConfiguration = Shapes::StructureShape.new(name: 'AmiDistributionConfiguration')
|
|
19
20
|
AmiList = Shapes::ListShape.new(name: 'AmiList')
|
|
20
21
|
AmiNameString = Shapes::StringShape.new(name: 'AmiNameString')
|
|
21
22
|
Arn = Shapes::StringShape.new(name: 'Arn')
|
|
22
|
-
ArnList = Shapes::ListShape.new(name: 'ArnList')
|
|
23
23
|
CallRateLimitExceededException = Shapes::StructureShape.new(name: 'CallRateLimitExceededException')
|
|
24
24
|
CancelImageCreationRequest = Shapes::StructureShape.new(name: 'CancelImageCreationRequest')
|
|
25
25
|
CancelImageCreationResponse = Shapes::StructureShape.new(name: 'CancelImageCreationResponse')
|
|
@@ -139,6 +139,8 @@ module Aws::Imagebuilder
|
|
|
139
139
|
InvalidRequestException = Shapes::StructureShape.new(name: 'InvalidRequestException')
|
|
140
140
|
InvalidVersionNumberException = Shapes::StructureShape.new(name: 'InvalidVersionNumberException')
|
|
141
141
|
LaunchPermissionConfiguration = Shapes::StructureShape.new(name: 'LaunchPermissionConfiguration')
|
|
142
|
+
LicenseConfigurationArn = Shapes::StringShape.new(name: 'LicenseConfigurationArn')
|
|
143
|
+
LicenseConfigurationArnList = Shapes::ListShape.new(name: 'LicenseConfigurationArnList')
|
|
142
144
|
ListComponentBuildVersionsRequest = Shapes::StructureShape.new(name: 'ListComponentBuildVersionsRequest')
|
|
143
145
|
ListComponentBuildVersionsResponse = Shapes::StructureShape.new(name: 'ListComponentBuildVersionsResponse')
|
|
144
146
|
ListComponentsRequest = Shapes::StructureShape.new(name: 'ListComponentsRequest')
|
|
@@ -210,17 +212,19 @@ module Aws::Imagebuilder
|
|
|
210
212
|
Uri = Shapes::StringShape.new(name: 'Uri')
|
|
211
213
|
VersionNumber = Shapes::StringShape.new(name: 'VersionNumber')
|
|
212
214
|
|
|
213
|
-
AccountList.member = Shapes::ShapeRef.new(shape:
|
|
215
|
+
AccountList.member = Shapes::ShapeRef.new(shape: AccountId)
|
|
214
216
|
|
|
215
217
|
Ami.add_member(:region, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "region"))
|
|
216
218
|
Ami.add_member(:image, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "image"))
|
|
217
219
|
Ami.add_member(:name, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "name"))
|
|
218
220
|
Ami.add_member(:description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "description"))
|
|
219
221
|
Ami.add_member(:state, Shapes::ShapeRef.new(shape: ImageState, location_name: "state"))
|
|
222
|
+
Ami.add_member(:account_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "accountId"))
|
|
220
223
|
Ami.struct_class = Types::Ami
|
|
221
224
|
|
|
222
225
|
AmiDistributionConfiguration.add_member(:name, Shapes::ShapeRef.new(shape: AmiNameString, location_name: "name"))
|
|
223
226
|
AmiDistributionConfiguration.add_member(:description, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "description"))
|
|
227
|
+
AmiDistributionConfiguration.add_member(:target_account_ids, Shapes::ShapeRef.new(shape: AccountList, location_name: "targetAccountIds"))
|
|
224
228
|
AmiDistributionConfiguration.add_member(:ami_tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "amiTags"))
|
|
225
229
|
AmiDistributionConfiguration.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "kmsKeyId"))
|
|
226
230
|
AmiDistributionConfiguration.add_member(:launch_permission, Shapes::ShapeRef.new(shape: LaunchPermissionConfiguration, location_name: "launchPermission"))
|
|
@@ -228,8 +232,6 @@ module Aws::Imagebuilder
|
|
|
228
232
|
|
|
229
233
|
AmiList.member = Shapes::ShapeRef.new(shape: Ami)
|
|
230
234
|
|
|
231
|
-
ArnList.member = Shapes::ShapeRef.new(shape: Arn)
|
|
232
|
-
|
|
233
235
|
CallRateLimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
|
|
234
236
|
CallRateLimitExceededException.struct_class = Types::CallRateLimitExceededException
|
|
235
237
|
|
|
@@ -436,7 +438,7 @@ module Aws::Imagebuilder
|
|
|
436
438
|
|
|
437
439
|
Distribution.add_member(:region, Shapes::ShapeRef.new(shape: NonEmptyString, required: true, location_name: "region"))
|
|
438
440
|
Distribution.add_member(:ami_distribution_configuration, Shapes::ShapeRef.new(shape: AmiDistributionConfiguration, location_name: "amiDistributionConfiguration"))
|
|
439
|
-
Distribution.add_member(:license_configuration_arns, Shapes::ShapeRef.new(shape:
|
|
441
|
+
Distribution.add_member(:license_configuration_arns, Shapes::ShapeRef.new(shape: LicenseConfigurationArnList, location_name: "licenseConfigurationArns"))
|
|
440
442
|
Distribution.struct_class = Types::Distribution
|
|
441
443
|
|
|
442
444
|
DistributionConfiguration.add_member(:arn, Shapes::ShapeRef.new(shape: ImageBuilderArn, location_name: "arn"))
|
|
@@ -722,6 +724,8 @@ module Aws::Imagebuilder
|
|
|
722
724
|
LaunchPermissionConfiguration.add_member(:user_groups, Shapes::ShapeRef.new(shape: StringList, location_name: "userGroups"))
|
|
723
725
|
LaunchPermissionConfiguration.struct_class = Types::LaunchPermissionConfiguration
|
|
724
726
|
|
|
727
|
+
LicenseConfigurationArnList.member = Shapes::ShapeRef.new(shape: LicenseConfigurationArn)
|
|
728
|
+
|
|
725
729
|
ListComponentBuildVersionsRequest.add_member(:component_version_arn, Shapes::ShapeRef.new(shape: ComponentVersionArn, required: true, location_name: "componentVersionArn"))
|
|
726
730
|
ListComponentBuildVersionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: RestrictedInteger, location_name: "maxResults", metadata: {"box"=>true}))
|
|
727
731
|
ListComponentBuildVersionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NonEmptyString, location_name: "nextToken"))
|
|
@@ -32,6 +32,10 @@ module Aws::Imagebuilder
|
|
|
32
32
|
# Image state shows the image status and the reason for that status.
|
|
33
33
|
# @return [Types::ImageState]
|
|
34
34
|
#
|
|
35
|
+
# @!attribute [rw] account_id
|
|
36
|
+
# The account ID of the owner of the AMI.
|
|
37
|
+
# @return [String]
|
|
38
|
+
#
|
|
35
39
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/Ami AWS API Documentation
|
|
36
40
|
#
|
|
37
41
|
class Ami < Struct.new(
|
|
@@ -39,7 +43,8 @@ module Aws::Imagebuilder
|
|
|
39
43
|
:image,
|
|
40
44
|
:name,
|
|
41
45
|
:description,
|
|
42
|
-
:state
|
|
46
|
+
:state,
|
|
47
|
+
:account_id)
|
|
43
48
|
SENSITIVE = []
|
|
44
49
|
include Aws::Structure
|
|
45
50
|
end
|
|
@@ -52,12 +57,13 @@ module Aws::Imagebuilder
|
|
|
52
57
|
# {
|
|
53
58
|
# name: "AmiNameString",
|
|
54
59
|
# description: "NonEmptyString",
|
|
60
|
+
# target_account_ids: ["AccountId"],
|
|
55
61
|
# ami_tags: {
|
|
56
62
|
# "TagKey" => "TagValue",
|
|
57
63
|
# },
|
|
58
64
|
# kms_key_id: "NonEmptyString",
|
|
59
65
|
# launch_permission: {
|
|
60
|
-
# user_ids: ["
|
|
66
|
+
# user_ids: ["AccountId"],
|
|
61
67
|
# user_groups: ["NonEmptyString"],
|
|
62
68
|
# },
|
|
63
69
|
# }
|
|
@@ -70,6 +76,10 @@ module Aws::Imagebuilder
|
|
|
70
76
|
# The description of the distribution configuration.
|
|
71
77
|
# @return [String]
|
|
72
78
|
#
|
|
79
|
+
# @!attribute [rw] target_account_ids
|
|
80
|
+
# The ID of an account to which you want to distribute an image.
|
|
81
|
+
# @return [Array<String>]
|
|
82
|
+
#
|
|
73
83
|
# @!attribute [rw] ami_tags
|
|
74
84
|
# The tags to apply to AMIs distributed to this Region.
|
|
75
85
|
# @return [Hash<String,String>]
|
|
@@ -88,6 +98,7 @@ module Aws::Imagebuilder
|
|
|
88
98
|
class AmiDistributionConfiguration < Struct.new(
|
|
89
99
|
:name,
|
|
90
100
|
:description,
|
|
101
|
+
:target_account_ids,
|
|
91
102
|
:ami_tags,
|
|
92
103
|
:kms_key_id,
|
|
93
104
|
:launch_permission)
|
|
@@ -535,16 +546,17 @@ module Aws::Imagebuilder
|
|
|
535
546
|
# ami_distribution_configuration: {
|
|
536
547
|
# name: "AmiNameString",
|
|
537
548
|
# description: "NonEmptyString",
|
|
549
|
+
# target_account_ids: ["AccountId"],
|
|
538
550
|
# ami_tags: {
|
|
539
551
|
# "TagKey" => "TagValue",
|
|
540
552
|
# },
|
|
541
553
|
# kms_key_id: "NonEmptyString",
|
|
542
554
|
# launch_permission: {
|
|
543
|
-
# user_ids: ["
|
|
555
|
+
# user_ids: ["AccountId"],
|
|
544
556
|
# user_groups: ["NonEmptyString"],
|
|
545
557
|
# },
|
|
546
558
|
# },
|
|
547
|
-
# license_configuration_arns: ["
|
|
559
|
+
# license_configuration_arns: ["LicenseConfigurationArn"],
|
|
548
560
|
# },
|
|
549
561
|
# ],
|
|
550
562
|
# tags: {
|
|
@@ -754,7 +766,7 @@ module Aws::Imagebuilder
|
|
|
754
766
|
# kms_key_id: "NonEmptyString",
|
|
755
767
|
# snapshot_id: "NonEmptyString",
|
|
756
768
|
# volume_size: 1,
|
|
757
|
-
# volume_type: "standard", # accepts standard, io1, gp2, sc1, st1
|
|
769
|
+
# volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1
|
|
758
770
|
# },
|
|
759
771
|
# virtual_name: "NonEmptyString",
|
|
760
772
|
# no_device: "EmptyString",
|
|
@@ -787,9 +799,7 @@ module Aws::Imagebuilder
|
|
|
787
799
|
# The parent image of the image recipe. The value of the string can be
|
|
788
800
|
# the ARN of the parent image or an AMI ID. The format for the ARN
|
|
789
801
|
# follows this example:
|
|
790
|
-
# `arn:aws:imagebuilder:us-west-2:aws:image/windows-server-2016-english-full-base-x86/
|
|
791
|
-
# The ARN ends with `/20xx.x.x`, which communicates to EC2 Image
|
|
792
|
-
# Builder that you want to use the latest AMI created in 20xx (year).
|
|
802
|
+
# `arn:aws:imagebuilder:us-west-2:aws:image/windows-server-2016-english-full-base-x86/xxxx.x.x`.
|
|
793
803
|
# You can provide the specific version that you want to use, or you
|
|
794
804
|
# can use a wildcard in all of the fields. If you enter an AMI ID for
|
|
795
805
|
# the string value, you must have access to the AMI, and the AMI must
|
|
@@ -1315,16 +1325,17 @@ module Aws::Imagebuilder
|
|
|
1315
1325
|
# ami_distribution_configuration: {
|
|
1316
1326
|
# name: "AmiNameString",
|
|
1317
1327
|
# description: "NonEmptyString",
|
|
1328
|
+
# target_account_ids: ["AccountId"],
|
|
1318
1329
|
# ami_tags: {
|
|
1319
1330
|
# "TagKey" => "TagValue",
|
|
1320
1331
|
# },
|
|
1321
1332
|
# kms_key_id: "NonEmptyString",
|
|
1322
1333
|
# launch_permission: {
|
|
1323
|
-
# user_ids: ["
|
|
1334
|
+
# user_ids: ["AccountId"],
|
|
1324
1335
|
# user_groups: ["NonEmptyString"],
|
|
1325
1336
|
# },
|
|
1326
1337
|
# },
|
|
1327
|
-
# license_configuration_arns: ["
|
|
1338
|
+
# license_configuration_arns: ["LicenseConfigurationArn"],
|
|
1328
1339
|
# }
|
|
1329
1340
|
#
|
|
1330
1341
|
# @!attribute [rw] region
|
|
@@ -1451,7 +1462,7 @@ module Aws::Imagebuilder
|
|
|
1451
1462
|
# kms_key_id: "NonEmptyString",
|
|
1452
1463
|
# snapshot_id: "NonEmptyString",
|
|
1453
1464
|
# volume_size: 1,
|
|
1454
|
-
# volume_type: "standard", # accepts standard, io1, gp2, sc1, st1
|
|
1465
|
+
# volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1
|
|
1455
1466
|
# }
|
|
1456
1467
|
#
|
|
1457
1468
|
# @!attribute [rw] encrypted
|
|
@@ -2613,7 +2624,7 @@ module Aws::Imagebuilder
|
|
|
2613
2624
|
# kms_key_id: "NonEmptyString",
|
|
2614
2625
|
# snapshot_id: "NonEmptyString",
|
|
2615
2626
|
# volume_size: 1,
|
|
2616
|
-
# volume_type: "standard", # accepts standard, io1, gp2, sc1, st1
|
|
2627
|
+
# volume_type: "standard", # accepts standard, io1, io2, gp2, sc1, st1
|
|
2617
2628
|
# },
|
|
2618
2629
|
# virtual_name: "NonEmptyString",
|
|
2619
2630
|
# no_device: "EmptyString",
|
|
@@ -2743,7 +2754,7 @@ module Aws::Imagebuilder
|
|
|
2743
2754
|
# data as a hash:
|
|
2744
2755
|
#
|
|
2745
2756
|
# {
|
|
2746
|
-
# user_ids: ["
|
|
2757
|
+
# user_ids: ["AccountId"],
|
|
2747
2758
|
# user_groups: ["NonEmptyString"],
|
|
2748
2759
|
# }
|
|
2749
2760
|
#
|
|
@@ -3662,17 +3673,33 @@ module Aws::Imagebuilder
|
|
|
3662
3673
|
# }
|
|
3663
3674
|
#
|
|
3664
3675
|
# @!attribute [rw] schedule_expression
|
|
3665
|
-
# The expression determines how often EC2 Image Builder evaluates
|
|
3666
|
-
# `pipelineExecutionStartCondition`.
|
|
3676
|
+
# The cron expression determines how often EC2 Image Builder evaluates
|
|
3677
|
+
# your `pipelineExecutionStartCondition`.
|
|
3678
|
+
#
|
|
3679
|
+
# For information on how to format a cron expression in Image Builder,
|
|
3680
|
+
# see [Use cron expressions in EC2 Image Builder][1].
|
|
3681
|
+
#
|
|
3682
|
+
#
|
|
3683
|
+
#
|
|
3684
|
+
# [1]: https://docs.aws.amazon.com/imagebuilder/latest/userguide/image-builder-cron.html
|
|
3667
3685
|
# @return [String]
|
|
3668
3686
|
#
|
|
3669
3687
|
# @!attribute [rw] pipeline_execution_start_condition
|
|
3670
3688
|
# The condition configures when the pipeline should trigger a new
|
|
3671
3689
|
# image build. When the `pipelineExecutionStartCondition` is set to
|
|
3672
|
-
# `EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE`,
|
|
3673
|
-
#
|
|
3674
|
-
#
|
|
3675
|
-
# new
|
|
3690
|
+
# `EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE`, and you use
|
|
3691
|
+
# semantic version filters on the source image or components in your
|
|
3692
|
+
# image recipe, EC2 Image Builder will build a new image only when
|
|
3693
|
+
# there are new versions of the image or components in your recipe
|
|
3694
|
+
# that match the semantic version filter. When it is set to
|
|
3695
|
+
# `EXPRESSION_MATCH_ONLY`, it will build a new image every time the
|
|
3696
|
+
# CRON expression matches the current time. For semantic version
|
|
3697
|
+
# syntax, see [CreateComponent][1] in the <i> EC2 Image Builder API
|
|
3698
|
+
# Reference</i>.
|
|
3699
|
+
#
|
|
3700
|
+
#
|
|
3701
|
+
#
|
|
3702
|
+
# [1]: https://docs.aws.amazon.com/imagebuilder/latest/APIReference/API_CreateComponent.html
|
|
3676
3703
|
# @return [String]
|
|
3677
3704
|
#
|
|
3678
3705
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/Schedule AWS API Documentation
|
|
@@ -3855,16 +3882,17 @@ module Aws::Imagebuilder
|
|
|
3855
3882
|
# ami_distribution_configuration: {
|
|
3856
3883
|
# name: "AmiNameString",
|
|
3857
3884
|
# description: "NonEmptyString",
|
|
3885
|
+
# target_account_ids: ["AccountId"],
|
|
3858
3886
|
# ami_tags: {
|
|
3859
3887
|
# "TagKey" => "TagValue",
|
|
3860
3888
|
# },
|
|
3861
3889
|
# kms_key_id: "NonEmptyString",
|
|
3862
3890
|
# launch_permission: {
|
|
3863
|
-
# user_ids: ["
|
|
3891
|
+
# user_ids: ["AccountId"],
|
|
3864
3892
|
# user_groups: ["NonEmptyString"],
|
|
3865
3893
|
# },
|
|
3866
3894
|
# },
|
|
3867
|
-
# license_configuration_arns: ["
|
|
3895
|
+
# license_configuration_arns: ["LicenseConfigurationArn"],
|
|
3868
3896
|
# },
|
|
3869
3897
|
# ],
|
|
3870
3898
|
# client_token: "ClientToken", # required
|
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.
|
|
4
|
+
version: 1.15.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-09-
|
|
11
|
+
date: 2020-09-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '3'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
22
|
+
version: 3.109.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '3'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
32
|
+
version: 3.109.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: aws-sigv4
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|