aws-sdk-imagebuilder 1.4.0 → 1.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-imagebuilder.rb +3 -1
- data/lib/aws-sdk-imagebuilder/client.rb +48 -9
- data/lib/aws-sdk-imagebuilder/client_api.rb +32 -2
- data/lib/aws-sdk-imagebuilder/errors.rb +18 -0
- data/lib/aws-sdk-imagebuilder/resource.rb +2 -0
- data/lib/aws-sdk-imagebuilder/types.rb +216 -4
- metadata +4 -4
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -40,6 +42,7 @@ module Aws::Imagebuilder
|
|
40
42
|
# * {ResourceInUseException}
|
41
43
|
# * {ResourceNotFoundException}
|
42
44
|
# * {ServiceException}
|
45
|
+
# * {ServiceQuotaExceededException}
|
43
46
|
# * {ServiceUnavailableException}
|
44
47
|
#
|
45
48
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
@@ -273,6 +276,21 @@ module Aws::Imagebuilder
|
|
273
276
|
end
|
274
277
|
end
|
275
278
|
|
279
|
+
class ServiceQuotaExceededException < ServiceError
|
280
|
+
|
281
|
+
# @param [Seahorse::Client::RequestContext] context
|
282
|
+
# @param [String] message
|
283
|
+
# @param [Aws::Imagebuilder::Types::ServiceQuotaExceededException] data
|
284
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
285
|
+
super(context, message, data)
|
286
|
+
end
|
287
|
+
|
288
|
+
# @return [String]
|
289
|
+
def message
|
290
|
+
@message || @data[:message]
|
291
|
+
end
|
292
|
+
end
|
293
|
+
|
276
294
|
class ServiceUnavailableException < ServiceError
|
277
295
|
|
278
296
|
# @param [Seahorse::Client::RequestContext] context
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -38,6 +40,7 @@ module Aws::Imagebuilder
|
|
38
40
|
:name,
|
39
41
|
:description,
|
40
42
|
:state)
|
43
|
+
SENSITIVE = []
|
41
44
|
include Aws::Structure
|
42
45
|
end
|
43
46
|
|
@@ -82,6 +85,7 @@ module Aws::Imagebuilder
|
|
82
85
|
:description,
|
83
86
|
:ami_tags,
|
84
87
|
:launch_permission)
|
88
|
+
SENSITIVE = []
|
85
89
|
include Aws::Structure
|
86
90
|
end
|
87
91
|
|
@@ -95,6 +99,7 @@ module Aws::Imagebuilder
|
|
95
99
|
#
|
96
100
|
class CallRateLimitExceededException < Struct.new(
|
97
101
|
:message)
|
102
|
+
SENSITIVE = []
|
98
103
|
include Aws::Structure
|
99
104
|
end
|
100
105
|
|
@@ -123,6 +128,7 @@ module Aws::Imagebuilder
|
|
123
128
|
class CancelImageCreationRequest < Struct.new(
|
124
129
|
:image_build_version_arn,
|
125
130
|
:client_token)
|
131
|
+
SENSITIVE = []
|
126
132
|
include Aws::Structure
|
127
133
|
end
|
128
134
|
|
@@ -145,6 +151,7 @@ module Aws::Imagebuilder
|
|
145
151
|
:request_id,
|
146
152
|
:client_token,
|
147
153
|
:image_build_version_arn)
|
154
|
+
SENSITIVE = []
|
148
155
|
include Aws::Structure
|
149
156
|
end
|
150
157
|
|
@@ -160,6 +167,7 @@ module Aws::Imagebuilder
|
|
160
167
|
#
|
161
168
|
class ClientException < Struct.new(
|
162
169
|
:message)
|
170
|
+
SENSITIVE = []
|
163
171
|
include Aws::Structure
|
164
172
|
end
|
165
173
|
|
@@ -194,6 +202,12 @@ module Aws::Imagebuilder
|
|
194
202
|
# The platform of the component.
|
195
203
|
# @return [String]
|
196
204
|
#
|
205
|
+
# @!attribute [rw] supported_os_versions
|
206
|
+
# The operating system (OS) version supported by the component. If the
|
207
|
+
# OS information is available, a prefix match is performed against the
|
208
|
+
# parent image OS version during image recipe creation.
|
209
|
+
# @return [Array<String>]
|
210
|
+
#
|
197
211
|
# @!attribute [rw] owner
|
198
212
|
# The owner of the component.
|
199
213
|
# @return [String]
|
@@ -228,12 +242,14 @@ module Aws::Imagebuilder
|
|
228
242
|
:change_description,
|
229
243
|
:type,
|
230
244
|
:platform,
|
245
|
+
:supported_os_versions,
|
231
246
|
:owner,
|
232
247
|
:data,
|
233
248
|
:kms_key_id,
|
234
249
|
:encrypted,
|
235
250
|
:date_created,
|
236
251
|
:tags)
|
252
|
+
SENSITIVE = []
|
237
253
|
include Aws::Structure
|
238
254
|
end
|
239
255
|
|
@@ -254,6 +270,7 @@ module Aws::Imagebuilder
|
|
254
270
|
#
|
255
271
|
class ComponentConfiguration < Struct.new(
|
256
272
|
:component_arn)
|
273
|
+
SENSITIVE = []
|
257
274
|
include Aws::Structure
|
258
275
|
end
|
259
276
|
|
@@ -275,6 +292,12 @@ module Aws::Imagebuilder
|
|
275
292
|
# The platform of the component.
|
276
293
|
# @return [String]
|
277
294
|
#
|
295
|
+
# @!attribute [rw] supported_os_versions
|
296
|
+
# The operating system (OS) version supported by the component. If the
|
297
|
+
# OS information is available, a prefix match is performed against the
|
298
|
+
# parent image OS version during image recipe creation.
|
299
|
+
# @return [Array<String>]
|
300
|
+
#
|
278
301
|
# @!attribute [rw] type
|
279
302
|
# The type of the component denotes whether the component is used to
|
280
303
|
# build the image or only to test it.
|
@@ -307,12 +330,14 @@ module Aws::Imagebuilder
|
|
307
330
|
:name,
|
308
331
|
:version,
|
309
332
|
:platform,
|
333
|
+
:supported_os_versions,
|
310
334
|
:type,
|
311
335
|
:owner,
|
312
336
|
:description,
|
313
337
|
:change_description,
|
314
338
|
:date_created,
|
315
339
|
:tags)
|
340
|
+
SENSITIVE = []
|
316
341
|
include Aws::Structure
|
317
342
|
end
|
318
343
|
|
@@ -338,6 +363,12 @@ module Aws::Imagebuilder
|
|
338
363
|
# The platform of the component.
|
339
364
|
# @return [String]
|
340
365
|
#
|
366
|
+
# @!attribute [rw] supported_os_versions
|
367
|
+
# The operating system (OS) version supported by the component. If the
|
368
|
+
# OS information is available, a prefix match is performed against the
|
369
|
+
# parent image OS version during image recipe creation.
|
370
|
+
# @return [Array<String>]
|
371
|
+
#
|
341
372
|
# @!attribute [rw] type
|
342
373
|
# The type of the component denotes whether the component is used to
|
343
374
|
# build the image or only to test it.
|
@@ -359,9 +390,11 @@ module Aws::Imagebuilder
|
|
359
390
|
:version,
|
360
391
|
:description,
|
361
392
|
:platform,
|
393
|
+
:supported_os_versions,
|
362
394
|
:type,
|
363
395
|
:owner,
|
364
396
|
:date_created)
|
397
|
+
SENSITIVE = []
|
365
398
|
include Aws::Structure
|
366
399
|
end
|
367
400
|
|
@@ -374,6 +407,7 @@ module Aws::Imagebuilder
|
|
374
407
|
# description: "NonEmptyString",
|
375
408
|
# change_description: "NonEmptyString",
|
376
409
|
# platform: "Windows", # required, accepts Windows, Linux
|
410
|
+
# supported_os_versions: ["OsVersion"],
|
377
411
|
# data: "InlineComponentData",
|
378
412
|
# uri: "Uri",
|
379
413
|
# kms_key_id: "NonEmptyString",
|
@@ -408,6 +442,12 @@ module Aws::Imagebuilder
|
|
408
442
|
# The platform of the component.
|
409
443
|
# @return [String]
|
410
444
|
#
|
445
|
+
# @!attribute [rw] supported_os_versions
|
446
|
+
# The operating system (OS) version supported by the component. If the
|
447
|
+
# OS information is available, a prefix match is performed against the
|
448
|
+
# parent image OS version during image recipe creation.
|
449
|
+
# @return [Array<String>]
|
450
|
+
#
|
411
451
|
# @!attribute [rw] data
|
412
452
|
# The data of the component. Used to specify the data inline. Either
|
413
453
|
# `data` or `uri` can be used to specify the data within the
|
@@ -444,11 +484,13 @@ module Aws::Imagebuilder
|
|
444
484
|
:description,
|
445
485
|
:change_description,
|
446
486
|
:platform,
|
487
|
+
:supported_os_versions,
|
447
488
|
:data,
|
448
489
|
:uri,
|
449
490
|
:kms_key_id,
|
450
491
|
:tags,
|
451
492
|
:client_token)
|
493
|
+
SENSITIVE = []
|
452
494
|
include Aws::Structure
|
453
495
|
end
|
454
496
|
|
@@ -471,6 +513,7 @@ module Aws::Imagebuilder
|
|
471
513
|
:request_id,
|
472
514
|
:client_token,
|
473
515
|
:component_build_version_arn)
|
516
|
+
SENSITIVE = []
|
474
517
|
include Aws::Structure
|
475
518
|
end
|
476
519
|
|
@@ -534,6 +577,7 @@ module Aws::Imagebuilder
|
|
534
577
|
:distributions,
|
535
578
|
:tags,
|
536
579
|
:client_token)
|
580
|
+
SENSITIVE = []
|
537
581
|
include Aws::Structure
|
538
582
|
end
|
539
583
|
|
@@ -556,6 +600,7 @@ module Aws::Imagebuilder
|
|
556
600
|
:request_id,
|
557
601
|
:client_token,
|
558
602
|
:distribution_configuration_arn)
|
603
|
+
SENSITIVE = []
|
559
604
|
include Aws::Structure
|
560
605
|
end
|
561
606
|
|
@@ -652,6 +697,7 @@ module Aws::Imagebuilder
|
|
652
697
|
:status,
|
653
698
|
:tags,
|
654
699
|
:client_token)
|
700
|
+
SENSITIVE = []
|
655
701
|
include Aws::Structure
|
656
702
|
end
|
657
703
|
|
@@ -674,6 +720,7 @@ module Aws::Imagebuilder
|
|
674
720
|
:request_id,
|
675
721
|
:client_token,
|
676
722
|
:image_pipeline_arn)
|
723
|
+
SENSITIVE = []
|
677
724
|
include Aws::Structure
|
678
725
|
end
|
679
726
|
|
@@ -709,6 +756,7 @@ module Aws::Imagebuilder
|
|
709
756
|
# tags: {
|
710
757
|
# "TagKey" => "TagValue",
|
711
758
|
# },
|
759
|
+
# working_directory: "NonEmptyString",
|
712
760
|
# client_token: "ClientToken", # required
|
713
761
|
# }
|
714
762
|
#
|
@@ -749,6 +797,10 @@ module Aws::Imagebuilder
|
|
749
797
|
# The tags of the image recipe.
|
750
798
|
# @return [Hash<String,String>]
|
751
799
|
#
|
800
|
+
# @!attribute [rw] working_directory
|
801
|
+
# The working directory to be used during build and test workflows.
|
802
|
+
# @return [String]
|
803
|
+
#
|
752
804
|
# @!attribute [rw] client_token
|
753
805
|
# The idempotency token used to make this request idempotent.
|
754
806
|
#
|
@@ -766,7 +818,9 @@ module Aws::Imagebuilder
|
|
766
818
|
:parent_image,
|
767
819
|
:block_device_mappings,
|
768
820
|
:tags,
|
821
|
+
:working_directory,
|
769
822
|
:client_token)
|
823
|
+
SENSITIVE = []
|
770
824
|
include Aws::Structure
|
771
825
|
end
|
772
826
|
|
@@ -789,6 +843,7 @@ module Aws::Imagebuilder
|
|
789
843
|
:request_id,
|
790
844
|
:client_token,
|
791
845
|
:image_recipe_arn)
|
846
|
+
SENSITIVE = []
|
792
847
|
include Aws::Structure
|
793
848
|
end
|
794
849
|
|
@@ -858,6 +913,7 @@ module Aws::Imagebuilder
|
|
858
913
|
:enhanced_image_metadata_enabled,
|
859
914
|
:tags,
|
860
915
|
:client_token)
|
916
|
+
SENSITIVE = []
|
861
917
|
include Aws::Structure
|
862
918
|
end
|
863
919
|
|
@@ -880,6 +936,7 @@ module Aws::Imagebuilder
|
|
880
936
|
:request_id,
|
881
937
|
:client_token,
|
882
938
|
:image_build_version_arn)
|
939
|
+
SENSITIVE = []
|
883
940
|
include Aws::Structure
|
884
941
|
end
|
885
942
|
|
@@ -902,6 +959,9 @@ module Aws::Imagebuilder
|
|
902
959
|
# key_pair: "NonEmptyString",
|
903
960
|
# terminate_instance_on_failure: false,
|
904
961
|
# sns_topic_arn: "SnsTopicArn",
|
962
|
+
# resource_tags: {
|
963
|
+
# "TagKey" => "TagValue",
|
964
|
+
# },
|
905
965
|
# tags: {
|
906
966
|
# "TagKey" => "TagValue",
|
907
967
|
# },
|
@@ -957,6 +1017,10 @@ module Aws::Imagebuilder
|
|
957
1017
|
# The SNS topic on which to send image build events.
|
958
1018
|
# @return [String]
|
959
1019
|
#
|
1020
|
+
# @!attribute [rw] resource_tags
|
1021
|
+
# The tags attached to the resource created by Image Builder.
|
1022
|
+
# @return [Hash<String,String>]
|
1023
|
+
#
|
960
1024
|
# @!attribute [rw] tags
|
961
1025
|
# The tags of the infrastructure configuration.
|
962
1026
|
# @return [Hash<String,String>]
|
@@ -981,8 +1045,10 @@ module Aws::Imagebuilder
|
|
981
1045
|
:key_pair,
|
982
1046
|
:terminate_instance_on_failure,
|
983
1047
|
:sns_topic_arn,
|
1048
|
+
:resource_tags,
|
984
1049
|
:tags,
|
985
1050
|
:client_token)
|
1051
|
+
SENSITIVE = []
|
986
1052
|
include Aws::Structure
|
987
1053
|
end
|
988
1054
|
|
@@ -1005,6 +1071,7 @@ module Aws::Imagebuilder
|
|
1005
1071
|
:request_id,
|
1006
1072
|
:client_token,
|
1007
1073
|
:infrastructure_configuration_arn)
|
1074
|
+
SENSITIVE = []
|
1008
1075
|
include Aws::Structure
|
1009
1076
|
end
|
1010
1077
|
|
@@ -1024,6 +1091,7 @@ module Aws::Imagebuilder
|
|
1024
1091
|
#
|
1025
1092
|
class DeleteComponentRequest < Struct.new(
|
1026
1093
|
:component_build_version_arn)
|
1094
|
+
SENSITIVE = []
|
1027
1095
|
include Aws::Structure
|
1028
1096
|
end
|
1029
1097
|
|
@@ -1041,6 +1109,7 @@ module Aws::Imagebuilder
|
|
1041
1109
|
class DeleteComponentResponse < Struct.new(
|
1042
1110
|
:request_id,
|
1043
1111
|
:component_build_version_arn)
|
1112
|
+
SENSITIVE = []
|
1044
1113
|
include Aws::Structure
|
1045
1114
|
end
|
1046
1115
|
|
@@ -1060,6 +1129,7 @@ module Aws::Imagebuilder
|
|
1060
1129
|
#
|
1061
1130
|
class DeleteDistributionConfigurationRequest < Struct.new(
|
1062
1131
|
:distribution_configuration_arn)
|
1132
|
+
SENSITIVE = []
|
1063
1133
|
include Aws::Structure
|
1064
1134
|
end
|
1065
1135
|
|
@@ -1077,6 +1147,7 @@ module Aws::Imagebuilder
|
|
1077
1147
|
class DeleteDistributionConfigurationResponse < Struct.new(
|
1078
1148
|
:request_id,
|
1079
1149
|
:distribution_configuration_arn)
|
1150
|
+
SENSITIVE = []
|
1080
1151
|
include Aws::Structure
|
1081
1152
|
end
|
1082
1153
|
|
@@ -1095,6 +1166,7 @@ module Aws::Imagebuilder
|
|
1095
1166
|
#
|
1096
1167
|
class DeleteImagePipelineRequest < Struct.new(
|
1097
1168
|
:image_pipeline_arn)
|
1169
|
+
SENSITIVE = []
|
1098
1170
|
include Aws::Structure
|
1099
1171
|
end
|
1100
1172
|
|
@@ -1112,6 +1184,7 @@ module Aws::Imagebuilder
|
|
1112
1184
|
class DeleteImagePipelineResponse < Struct.new(
|
1113
1185
|
:request_id,
|
1114
1186
|
:image_pipeline_arn)
|
1187
|
+
SENSITIVE = []
|
1115
1188
|
include Aws::Structure
|
1116
1189
|
end
|
1117
1190
|
|
@@ -1130,6 +1203,7 @@ module Aws::Imagebuilder
|
|
1130
1203
|
#
|
1131
1204
|
class DeleteImageRecipeRequest < Struct.new(
|
1132
1205
|
:image_recipe_arn)
|
1206
|
+
SENSITIVE = []
|
1133
1207
|
include Aws::Structure
|
1134
1208
|
end
|
1135
1209
|
|
@@ -1146,6 +1220,7 @@ module Aws::Imagebuilder
|
|
1146
1220
|
class DeleteImageRecipeResponse < Struct.new(
|
1147
1221
|
:request_id,
|
1148
1222
|
:image_recipe_arn)
|
1223
|
+
SENSITIVE = []
|
1149
1224
|
include Aws::Structure
|
1150
1225
|
end
|
1151
1226
|
|
@@ -1164,6 +1239,7 @@ module Aws::Imagebuilder
|
|
1164
1239
|
#
|
1165
1240
|
class DeleteImageRequest < Struct.new(
|
1166
1241
|
:image_build_version_arn)
|
1242
|
+
SENSITIVE = []
|
1167
1243
|
include Aws::Structure
|
1168
1244
|
end
|
1169
1245
|
|
@@ -1180,6 +1256,7 @@ module Aws::Imagebuilder
|
|
1180
1256
|
class DeleteImageResponse < Struct.new(
|
1181
1257
|
:request_id,
|
1182
1258
|
:image_build_version_arn)
|
1259
|
+
SENSITIVE = []
|
1183
1260
|
include Aws::Structure
|
1184
1261
|
end
|
1185
1262
|
|
@@ -1199,6 +1276,7 @@ module Aws::Imagebuilder
|
|
1199
1276
|
#
|
1200
1277
|
class DeleteInfrastructureConfigurationRequest < Struct.new(
|
1201
1278
|
:infrastructure_configuration_arn)
|
1279
|
+
SENSITIVE = []
|
1202
1280
|
include Aws::Structure
|
1203
1281
|
end
|
1204
1282
|
|
@@ -1216,6 +1294,7 @@ module Aws::Imagebuilder
|
|
1216
1294
|
class DeleteInfrastructureConfigurationResponse < Struct.new(
|
1217
1295
|
:request_id,
|
1218
1296
|
:infrastructure_configuration_arn)
|
1297
|
+
SENSITIVE = []
|
1219
1298
|
include Aws::Structure
|
1220
1299
|
end
|
1221
1300
|
|
@@ -1260,6 +1339,7 @@ module Aws::Imagebuilder
|
|
1260
1339
|
:region,
|
1261
1340
|
:ami_distribution_configuration,
|
1262
1341
|
:license_configuration_arns)
|
1342
|
+
SENSITIVE = []
|
1263
1343
|
include Aws::Structure
|
1264
1344
|
end
|
1265
1345
|
|
@@ -1308,6 +1388,7 @@ module Aws::Imagebuilder
|
|
1308
1388
|
:date_created,
|
1309
1389
|
:date_updated,
|
1310
1390
|
:tags)
|
1391
|
+
SENSITIVE = []
|
1311
1392
|
include Aws::Structure
|
1312
1393
|
end
|
1313
1394
|
|
@@ -1346,6 +1427,7 @@ module Aws::Imagebuilder
|
|
1346
1427
|
:date_created,
|
1347
1428
|
:date_updated,
|
1348
1429
|
:tags)
|
1430
|
+
SENSITIVE = []
|
1349
1431
|
include Aws::Structure
|
1350
1432
|
end
|
1351
1433
|
|
@@ -1402,6 +1484,7 @@ module Aws::Imagebuilder
|
|
1402
1484
|
:snapshot_id,
|
1403
1485
|
:volume_size,
|
1404
1486
|
:volume_type)
|
1487
|
+
SENSITIVE = []
|
1405
1488
|
include Aws::Structure
|
1406
1489
|
end
|
1407
1490
|
|
@@ -1431,6 +1514,7 @@ module Aws::Imagebuilder
|
|
1431
1514
|
class Filter < Struct.new(
|
1432
1515
|
:name,
|
1433
1516
|
:values)
|
1517
|
+
SENSITIVE = []
|
1434
1518
|
include Aws::Structure
|
1435
1519
|
end
|
1436
1520
|
|
@@ -1443,6 +1527,7 @@ module Aws::Imagebuilder
|
|
1443
1527
|
#
|
1444
1528
|
class ForbiddenException < Struct.new(
|
1445
1529
|
:message)
|
1530
|
+
SENSITIVE = []
|
1446
1531
|
include Aws::Structure
|
1447
1532
|
end
|
1448
1533
|
|
@@ -1462,6 +1547,7 @@ module Aws::Imagebuilder
|
|
1462
1547
|
#
|
1463
1548
|
class GetComponentPolicyRequest < Struct.new(
|
1464
1549
|
:component_arn)
|
1550
|
+
SENSITIVE = []
|
1465
1551
|
include Aws::Structure
|
1466
1552
|
end
|
1467
1553
|
|
@@ -1478,6 +1564,7 @@ module Aws::Imagebuilder
|
|
1478
1564
|
class GetComponentPolicyResponse < Struct.new(
|
1479
1565
|
:request_id,
|
1480
1566
|
:policy)
|
1567
|
+
SENSITIVE = []
|
1481
1568
|
include Aws::Structure
|
1482
1569
|
end
|
1483
1570
|
|
@@ -1485,7 +1572,7 @@ module Aws::Imagebuilder
|
|
1485
1572
|
# data as a hash:
|
1486
1573
|
#
|
1487
1574
|
# {
|
1488
|
-
# component_build_version_arn: "
|
1575
|
+
# component_build_version_arn: "ComponentVersionArnOrBuildVersionArn", # required
|
1489
1576
|
# }
|
1490
1577
|
#
|
1491
1578
|
# @!attribute [rw] component_build_version_arn
|
@@ -1497,6 +1584,7 @@ module Aws::Imagebuilder
|
|
1497
1584
|
#
|
1498
1585
|
class GetComponentRequest < Struct.new(
|
1499
1586
|
:component_build_version_arn)
|
1587
|
+
SENSITIVE = []
|
1500
1588
|
include Aws::Structure
|
1501
1589
|
end
|
1502
1590
|
|
@@ -1513,6 +1601,7 @@ module Aws::Imagebuilder
|
|
1513
1601
|
class GetComponentResponse < Struct.new(
|
1514
1602
|
:request_id,
|
1515
1603
|
:component)
|
1604
|
+
SENSITIVE = []
|
1516
1605
|
include Aws::Structure
|
1517
1606
|
end
|
1518
1607
|
|
@@ -1532,6 +1621,7 @@ module Aws::Imagebuilder
|
|
1532
1621
|
#
|
1533
1622
|
class GetDistributionConfigurationRequest < Struct.new(
|
1534
1623
|
:distribution_configuration_arn)
|
1624
|
+
SENSITIVE = []
|
1535
1625
|
include Aws::Structure
|
1536
1626
|
end
|
1537
1627
|
|
@@ -1548,6 +1638,7 @@ module Aws::Imagebuilder
|
|
1548
1638
|
class GetDistributionConfigurationResponse < Struct.new(
|
1549
1639
|
:request_id,
|
1550
1640
|
:distribution_configuration)
|
1641
|
+
SENSITIVE = []
|
1551
1642
|
include Aws::Structure
|
1552
1643
|
end
|
1553
1644
|
|
@@ -1567,6 +1658,7 @@ module Aws::Imagebuilder
|
|
1567
1658
|
#
|
1568
1659
|
class GetImagePipelineRequest < Struct.new(
|
1569
1660
|
:image_pipeline_arn)
|
1661
|
+
SENSITIVE = []
|
1570
1662
|
include Aws::Structure
|
1571
1663
|
end
|
1572
1664
|
|
@@ -1583,6 +1675,7 @@ module Aws::Imagebuilder
|
|
1583
1675
|
class GetImagePipelineResponse < Struct.new(
|
1584
1676
|
:request_id,
|
1585
1677
|
:image_pipeline)
|
1678
|
+
SENSITIVE = []
|
1586
1679
|
include Aws::Structure
|
1587
1680
|
end
|
1588
1681
|
|
@@ -1602,6 +1695,7 @@ module Aws::Imagebuilder
|
|
1602
1695
|
#
|
1603
1696
|
class GetImagePolicyRequest < Struct.new(
|
1604
1697
|
:image_arn)
|
1698
|
+
SENSITIVE = []
|
1605
1699
|
include Aws::Structure
|
1606
1700
|
end
|
1607
1701
|
|
@@ -1618,6 +1712,7 @@ module Aws::Imagebuilder
|
|
1618
1712
|
class GetImagePolicyResponse < Struct.new(
|
1619
1713
|
:request_id,
|
1620
1714
|
:policy)
|
1715
|
+
SENSITIVE = []
|
1621
1716
|
include Aws::Structure
|
1622
1717
|
end
|
1623
1718
|
|
@@ -1637,6 +1732,7 @@ module Aws::Imagebuilder
|
|
1637
1732
|
#
|
1638
1733
|
class GetImageRecipePolicyRequest < Struct.new(
|
1639
1734
|
:image_recipe_arn)
|
1735
|
+
SENSITIVE = []
|
1640
1736
|
include Aws::Structure
|
1641
1737
|
end
|
1642
1738
|
|
@@ -1653,6 +1749,7 @@ module Aws::Imagebuilder
|
|
1653
1749
|
class GetImageRecipePolicyResponse < Struct.new(
|
1654
1750
|
:request_id,
|
1655
1751
|
:policy)
|
1752
|
+
SENSITIVE = []
|
1656
1753
|
include Aws::Structure
|
1657
1754
|
end
|
1658
1755
|
|
@@ -1672,6 +1769,7 @@ module Aws::Imagebuilder
|
|
1672
1769
|
#
|
1673
1770
|
class GetImageRecipeRequest < Struct.new(
|
1674
1771
|
:image_recipe_arn)
|
1772
|
+
SENSITIVE = []
|
1675
1773
|
include Aws::Structure
|
1676
1774
|
end
|
1677
1775
|
|
@@ -1688,6 +1786,7 @@ module Aws::Imagebuilder
|
|
1688
1786
|
class GetImageRecipeResponse < Struct.new(
|
1689
1787
|
:request_id,
|
1690
1788
|
:image_recipe)
|
1789
|
+
SENSITIVE = []
|
1691
1790
|
include Aws::Structure
|
1692
1791
|
end
|
1693
1792
|
|
@@ -1695,7 +1794,7 @@ module Aws::Imagebuilder
|
|
1695
1794
|
# data as a hash:
|
1696
1795
|
#
|
1697
1796
|
# {
|
1698
|
-
# image_build_version_arn: "
|
1797
|
+
# image_build_version_arn: "ImageVersionArnOrBuildVersionArn", # required
|
1699
1798
|
# }
|
1700
1799
|
#
|
1701
1800
|
# @!attribute [rw] image_build_version_arn
|
@@ -1707,6 +1806,7 @@ module Aws::Imagebuilder
|
|
1707
1806
|
#
|
1708
1807
|
class GetImageRequest < Struct.new(
|
1709
1808
|
:image_build_version_arn)
|
1809
|
+
SENSITIVE = []
|
1710
1810
|
include Aws::Structure
|
1711
1811
|
end
|
1712
1812
|
|
@@ -1723,6 +1823,7 @@ module Aws::Imagebuilder
|
|
1723
1823
|
class GetImageResponse < Struct.new(
|
1724
1824
|
:request_id,
|
1725
1825
|
:image)
|
1826
|
+
SENSITIVE = []
|
1726
1827
|
include Aws::Structure
|
1727
1828
|
end
|
1728
1829
|
|
@@ -1744,6 +1845,7 @@ module Aws::Imagebuilder
|
|
1744
1845
|
#
|
1745
1846
|
class GetInfrastructureConfigurationRequest < Struct.new(
|
1746
1847
|
:infrastructure_configuration_arn)
|
1848
|
+
SENSITIVE = []
|
1747
1849
|
include Aws::Structure
|
1748
1850
|
end
|
1749
1851
|
|
@@ -1762,6 +1864,7 @@ module Aws::Imagebuilder
|
|
1762
1864
|
class GetInfrastructureConfigurationResponse < Struct.new(
|
1763
1865
|
:request_id,
|
1764
1866
|
:infrastructure_configuration)
|
1867
|
+
SENSITIVE = []
|
1765
1868
|
include Aws::Structure
|
1766
1869
|
end
|
1767
1870
|
|
@@ -1776,6 +1879,7 @@ module Aws::Imagebuilder
|
|
1776
1879
|
#
|
1777
1880
|
class IdempotentParameterMismatchException < Struct.new(
|
1778
1881
|
:message)
|
1882
|
+
SENSITIVE = []
|
1779
1883
|
include Aws::Structure
|
1780
1884
|
end
|
1781
1885
|
|
@@ -1869,6 +1973,7 @@ module Aws::Imagebuilder
|
|
1869
1973
|
:date_created,
|
1870
1974
|
:output_resources,
|
1871
1975
|
:tags)
|
1976
|
+
SENSITIVE = []
|
1872
1977
|
include Aws::Structure
|
1873
1978
|
end
|
1874
1979
|
|
@@ -1963,6 +2068,7 @@ module Aws::Imagebuilder
|
|
1963
2068
|
:date_last_run,
|
1964
2069
|
:date_next_run,
|
1965
2070
|
:tags)
|
2071
|
+
SENSITIVE = []
|
1966
2072
|
include Aws::Structure
|
1967
2073
|
end
|
1968
2074
|
|
@@ -2013,6 +2119,10 @@ module Aws::Imagebuilder
|
|
2013
2119
|
# The tags of the image recipe.
|
2014
2120
|
# @return [Hash<String,String>]
|
2015
2121
|
#
|
2122
|
+
# @!attribute [rw] working_directory
|
2123
|
+
# The working directory to be used during build and test workflows.
|
2124
|
+
# @return [String]
|
2125
|
+
#
|
2016
2126
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ImageRecipe AWS API Documentation
|
2017
2127
|
#
|
2018
2128
|
class ImageRecipe < Struct.new(
|
@@ -2026,7 +2136,9 @@ module Aws::Imagebuilder
|
|
2026
2136
|
:parent_image,
|
2027
2137
|
:block_device_mappings,
|
2028
2138
|
:date_created,
|
2029
|
-
:tags
|
2139
|
+
:tags,
|
2140
|
+
:working_directory)
|
2141
|
+
SENSITIVE = []
|
2030
2142
|
include Aws::Structure
|
2031
2143
|
end
|
2032
2144
|
|
@@ -2070,6 +2182,7 @@ module Aws::Imagebuilder
|
|
2070
2182
|
:parent_image,
|
2071
2183
|
:date_created,
|
2072
2184
|
:tags)
|
2185
|
+
SENSITIVE = []
|
2073
2186
|
include Aws::Structure
|
2074
2187
|
end
|
2075
2188
|
|
@@ -2088,6 +2201,7 @@ module Aws::Imagebuilder
|
|
2088
2201
|
class ImageState < Struct.new(
|
2089
2202
|
:status,
|
2090
2203
|
:reason)
|
2204
|
+
SENSITIVE = []
|
2091
2205
|
include Aws::Structure
|
2092
2206
|
end
|
2093
2207
|
|
@@ -2147,6 +2261,7 @@ module Aws::Imagebuilder
|
|
2147
2261
|
:date_created,
|
2148
2262
|
:output_resources,
|
2149
2263
|
:tags)
|
2264
|
+
SENSITIVE = []
|
2150
2265
|
include Aws::Structure
|
2151
2266
|
end
|
2152
2267
|
|
@@ -2173,6 +2288,7 @@ module Aws::Imagebuilder
|
|
2173
2288
|
class ImageTestsConfiguration < Struct.new(
|
2174
2289
|
:image_tests_enabled,
|
2175
2290
|
:timeout_minutes)
|
2291
|
+
SENSITIVE = []
|
2176
2292
|
include Aws::Structure
|
2177
2293
|
end
|
2178
2294
|
|
@@ -2217,6 +2333,7 @@ module Aws::Imagebuilder
|
|
2217
2333
|
:os_version,
|
2218
2334
|
:owner,
|
2219
2335
|
:date_created)
|
2336
|
+
SENSITIVE = []
|
2220
2337
|
include Aws::Structure
|
2221
2338
|
end
|
2222
2339
|
|
@@ -2317,6 +2434,7 @@ module Aws::Imagebuilder
|
|
2317
2434
|
:kms_key_id,
|
2318
2435
|
:tags,
|
2319
2436
|
:client_token)
|
2437
|
+
SENSITIVE = []
|
2320
2438
|
include Aws::Structure
|
2321
2439
|
end
|
2322
2440
|
|
@@ -2338,6 +2456,7 @@ module Aws::Imagebuilder
|
|
2338
2456
|
:request_id,
|
2339
2457
|
:client_token,
|
2340
2458
|
:component_build_version_arn)
|
2459
|
+
SENSITIVE = []
|
2341
2460
|
include Aws::Structure
|
2342
2461
|
end
|
2343
2462
|
|
@@ -2397,6 +2516,10 @@ module Aws::Imagebuilder
|
|
2397
2516
|
# The date on which the infrastructure configuration was last updated.
|
2398
2517
|
# @return [String]
|
2399
2518
|
#
|
2519
|
+
# @!attribute [rw] resource_tags
|
2520
|
+
# The tags attached to the resource created by Image Builder.
|
2521
|
+
# @return [Hash<String,String>]
|
2522
|
+
#
|
2400
2523
|
# @!attribute [rw] tags
|
2401
2524
|
# The tags of the infrastructure configuration.
|
2402
2525
|
# @return [Hash<String,String>]
|
@@ -2417,7 +2540,9 @@ module Aws::Imagebuilder
|
|
2417
2540
|
:sns_topic_arn,
|
2418
2541
|
:date_created,
|
2419
2542
|
:date_updated,
|
2543
|
+
:resource_tags,
|
2420
2544
|
:tags)
|
2545
|
+
SENSITIVE = []
|
2421
2546
|
include Aws::Structure
|
2422
2547
|
end
|
2423
2548
|
|
@@ -2443,6 +2568,10 @@ module Aws::Imagebuilder
|
|
2443
2568
|
# The date on which the infrastructure configuration was last updated.
|
2444
2569
|
# @return [String]
|
2445
2570
|
#
|
2571
|
+
# @!attribute [rw] resource_tags
|
2572
|
+
# The tags attached to the image created by Image Builder.
|
2573
|
+
# @return [Hash<String,String>]
|
2574
|
+
#
|
2446
2575
|
# @!attribute [rw] tags
|
2447
2576
|
# The tags of the infrastructure configuration.
|
2448
2577
|
# @return [Hash<String,String>]
|
@@ -2455,7 +2584,9 @@ module Aws::Imagebuilder
|
|
2455
2584
|
:description,
|
2456
2585
|
:date_created,
|
2457
2586
|
:date_updated,
|
2587
|
+
:resource_tags,
|
2458
2588
|
:tags)
|
2589
|
+
SENSITIVE = []
|
2459
2590
|
include Aws::Structure
|
2460
2591
|
end
|
2461
2592
|
|
@@ -2503,6 +2634,7 @@ module Aws::Imagebuilder
|
|
2503
2634
|
:ebs,
|
2504
2635
|
:virtual_name,
|
2505
2636
|
:no_device)
|
2637
|
+
SENSITIVE = []
|
2506
2638
|
include Aws::Structure
|
2507
2639
|
end
|
2508
2640
|
|
@@ -2515,6 +2647,7 @@ module Aws::Imagebuilder
|
|
2515
2647
|
#
|
2516
2648
|
class InvalidPaginationTokenException < Struct.new(
|
2517
2649
|
:message)
|
2650
|
+
SENSITIVE = []
|
2518
2651
|
include Aws::Structure
|
2519
2652
|
end
|
2520
2653
|
|
@@ -2528,6 +2661,7 @@ module Aws::Imagebuilder
|
|
2528
2661
|
#
|
2529
2662
|
class InvalidParameterCombinationException < Struct.new(
|
2530
2663
|
:message)
|
2664
|
+
SENSITIVE = []
|
2531
2665
|
include Aws::Structure
|
2532
2666
|
end
|
2533
2667
|
|
@@ -2541,6 +2675,7 @@ module Aws::Imagebuilder
|
|
2541
2675
|
#
|
2542
2676
|
class InvalidParameterException < Struct.new(
|
2543
2677
|
:message)
|
2678
|
+
SENSITIVE = []
|
2544
2679
|
include Aws::Structure
|
2545
2680
|
end
|
2546
2681
|
|
@@ -2553,6 +2688,7 @@ module Aws::Imagebuilder
|
|
2553
2688
|
#
|
2554
2689
|
class InvalidParameterValueException < Struct.new(
|
2555
2690
|
:message)
|
2691
|
+
SENSITIVE = []
|
2556
2692
|
include Aws::Structure
|
2557
2693
|
end
|
2558
2694
|
|
@@ -2566,6 +2702,7 @@ module Aws::Imagebuilder
|
|
2566
2702
|
#
|
2567
2703
|
class InvalidRequestException < Struct.new(
|
2568
2704
|
:message)
|
2705
|
+
SENSITIVE = []
|
2569
2706
|
include Aws::Structure
|
2570
2707
|
end
|
2571
2708
|
|
@@ -2579,6 +2716,7 @@ module Aws::Imagebuilder
|
|
2579
2716
|
#
|
2580
2717
|
class InvalidVersionNumberException < Struct.new(
|
2581
2718
|
:message)
|
2719
|
+
SENSITIVE = []
|
2582
2720
|
include Aws::Structure
|
2583
2721
|
end
|
2584
2722
|
|
@@ -2612,6 +2750,7 @@ module Aws::Imagebuilder
|
|
2612
2750
|
class LaunchPermissionConfiguration < Struct.new(
|
2613
2751
|
:user_ids,
|
2614
2752
|
:user_groups)
|
2753
|
+
SENSITIVE = []
|
2615
2754
|
include Aws::Structure
|
2616
2755
|
end
|
2617
2756
|
|
@@ -2644,6 +2783,7 @@ module Aws::Imagebuilder
|
|
2644
2783
|
:component_version_arn,
|
2645
2784
|
:max_results,
|
2646
2785
|
:next_token)
|
2786
|
+
SENSITIVE = []
|
2647
2787
|
include Aws::Structure
|
2648
2788
|
end
|
2649
2789
|
|
@@ -2668,6 +2808,7 @@ module Aws::Imagebuilder
|
|
2668
2808
|
:request_id,
|
2669
2809
|
:component_summary_list,
|
2670
2810
|
:next_token)
|
2811
|
+
SENSITIVE = []
|
2671
2812
|
include Aws::Structure
|
2672
2813
|
end
|
2673
2814
|
|
@@ -2714,6 +2855,7 @@ module Aws::Imagebuilder
|
|
2714
2855
|
:filters,
|
2715
2856
|
:max_results,
|
2716
2857
|
:next_token)
|
2858
|
+
SENSITIVE = []
|
2717
2859
|
include Aws::Structure
|
2718
2860
|
end
|
2719
2861
|
|
@@ -2738,6 +2880,7 @@ module Aws::Imagebuilder
|
|
2738
2880
|
:request_id,
|
2739
2881
|
:component_version_list,
|
2740
2882
|
:next_token)
|
2883
|
+
SENSITIVE = []
|
2741
2884
|
include Aws::Structure
|
2742
2885
|
end
|
2743
2886
|
|
@@ -2774,6 +2917,7 @@ module Aws::Imagebuilder
|
|
2774
2917
|
:filters,
|
2775
2918
|
:max_results,
|
2776
2919
|
:next_token)
|
2920
|
+
SENSITIVE = []
|
2777
2921
|
include Aws::Structure
|
2778
2922
|
end
|
2779
2923
|
|
@@ -2798,6 +2942,7 @@ module Aws::Imagebuilder
|
|
2798
2942
|
:request_id,
|
2799
2943
|
:distribution_configuration_summary_list,
|
2800
2944
|
:next_token)
|
2945
|
+
SENSITIVE = []
|
2801
2946
|
include Aws::Structure
|
2802
2947
|
end
|
2803
2948
|
|
@@ -2841,6 +2986,7 @@ module Aws::Imagebuilder
|
|
2841
2986
|
:filters,
|
2842
2987
|
:max_results,
|
2843
2988
|
:next_token)
|
2989
|
+
SENSITIVE = []
|
2844
2990
|
include Aws::Structure
|
2845
2991
|
end
|
2846
2992
|
|
@@ -2865,6 +3011,7 @@ module Aws::Imagebuilder
|
|
2865
3011
|
:request_id,
|
2866
3012
|
:image_summary_list,
|
2867
3013
|
:next_token)
|
3014
|
+
SENSITIVE = []
|
2868
3015
|
include Aws::Structure
|
2869
3016
|
end
|
2870
3017
|
|
@@ -2908,6 +3055,7 @@ module Aws::Imagebuilder
|
|
2908
3055
|
:filters,
|
2909
3056
|
:max_results,
|
2910
3057
|
:next_token)
|
3058
|
+
SENSITIVE = []
|
2911
3059
|
include Aws::Structure
|
2912
3060
|
end
|
2913
3061
|
|
@@ -2932,6 +3080,7 @@ module Aws::Imagebuilder
|
|
2932
3080
|
:request_id,
|
2933
3081
|
:image_summary_list,
|
2934
3082
|
:next_token)
|
3083
|
+
SENSITIVE = []
|
2935
3084
|
include Aws::Structure
|
2936
3085
|
end
|
2937
3086
|
|
@@ -2968,6 +3117,7 @@ module Aws::Imagebuilder
|
|
2968
3117
|
:filters,
|
2969
3118
|
:max_results,
|
2970
3119
|
:next_token)
|
3120
|
+
SENSITIVE = []
|
2971
3121
|
include Aws::Structure
|
2972
3122
|
end
|
2973
3123
|
|
@@ -2992,6 +3142,7 @@ module Aws::Imagebuilder
|
|
2992
3142
|
:request_id,
|
2993
3143
|
:image_pipeline_list,
|
2994
3144
|
:next_token)
|
3145
|
+
SENSITIVE = []
|
2995
3146
|
include Aws::Structure
|
2996
3147
|
end
|
2997
3148
|
|
@@ -3038,6 +3189,7 @@ module Aws::Imagebuilder
|
|
3038
3189
|
:filters,
|
3039
3190
|
:max_results,
|
3040
3191
|
:next_token)
|
3192
|
+
SENSITIVE = []
|
3041
3193
|
include Aws::Structure
|
3042
3194
|
end
|
3043
3195
|
|
@@ -3062,6 +3214,7 @@ module Aws::Imagebuilder
|
|
3062
3214
|
:request_id,
|
3063
3215
|
:image_recipe_summary_list,
|
3064
3216
|
:next_token)
|
3217
|
+
SENSITIVE = []
|
3065
3218
|
include Aws::Structure
|
3066
3219
|
end
|
3067
3220
|
|
@@ -3108,6 +3261,7 @@ module Aws::Imagebuilder
|
|
3108
3261
|
:filters,
|
3109
3262
|
:max_results,
|
3110
3263
|
:next_token)
|
3264
|
+
SENSITIVE = []
|
3111
3265
|
include Aws::Structure
|
3112
3266
|
end
|
3113
3267
|
|
@@ -3132,6 +3286,7 @@ module Aws::Imagebuilder
|
|
3132
3286
|
:request_id,
|
3133
3287
|
:image_version_list,
|
3134
3288
|
:next_token)
|
3289
|
+
SENSITIVE = []
|
3135
3290
|
include Aws::Structure
|
3136
3291
|
end
|
3137
3292
|
|
@@ -3168,6 +3323,7 @@ module Aws::Imagebuilder
|
|
3168
3323
|
:filters,
|
3169
3324
|
:max_results,
|
3170
3325
|
:next_token)
|
3326
|
+
SENSITIVE = []
|
3171
3327
|
include Aws::Structure
|
3172
3328
|
end
|
3173
3329
|
|
@@ -3192,6 +3348,7 @@ module Aws::Imagebuilder
|
|
3192
3348
|
:request_id,
|
3193
3349
|
:infrastructure_configuration_summary_list,
|
3194
3350
|
:next_token)
|
3351
|
+
SENSITIVE = []
|
3195
3352
|
include Aws::Structure
|
3196
3353
|
end
|
3197
3354
|
|
@@ -3211,6 +3368,7 @@ module Aws::Imagebuilder
|
|
3211
3368
|
#
|
3212
3369
|
class ListTagsForResourceRequest < Struct.new(
|
3213
3370
|
:resource_arn)
|
3371
|
+
SENSITIVE = []
|
3214
3372
|
include Aws::Structure
|
3215
3373
|
end
|
3216
3374
|
|
@@ -3222,6 +3380,7 @@ module Aws::Imagebuilder
|
|
3222
3380
|
#
|
3223
3381
|
class ListTagsForResourceResponse < Struct.new(
|
3224
3382
|
:tags)
|
3383
|
+
SENSITIVE = []
|
3225
3384
|
include Aws::Structure
|
3226
3385
|
end
|
3227
3386
|
|
@@ -3245,6 +3404,7 @@ module Aws::Imagebuilder
|
|
3245
3404
|
#
|
3246
3405
|
class Logging < Struct.new(
|
3247
3406
|
:s3_logs)
|
3407
|
+
SENSITIVE = []
|
3248
3408
|
include Aws::Structure
|
3249
3409
|
end
|
3250
3410
|
|
@@ -3258,6 +3418,7 @@ module Aws::Imagebuilder
|
|
3258
3418
|
#
|
3259
3419
|
class OutputResources < Struct.new(
|
3260
3420
|
:amis)
|
3421
|
+
SENSITIVE = []
|
3261
3422
|
include Aws::Structure
|
3262
3423
|
end
|
3263
3424
|
|
@@ -3283,6 +3444,7 @@ module Aws::Imagebuilder
|
|
3283
3444
|
class PutComponentPolicyRequest < Struct.new(
|
3284
3445
|
:component_arn,
|
3285
3446
|
:policy)
|
3447
|
+
SENSITIVE = []
|
3286
3448
|
include Aws::Structure
|
3287
3449
|
end
|
3288
3450
|
|
@@ -3300,6 +3462,7 @@ module Aws::Imagebuilder
|
|
3300
3462
|
class PutComponentPolicyResponse < Struct.new(
|
3301
3463
|
:request_id,
|
3302
3464
|
:component_arn)
|
3465
|
+
SENSITIVE = []
|
3303
3466
|
include Aws::Structure
|
3304
3467
|
end
|
3305
3468
|
|
@@ -3325,6 +3488,7 @@ module Aws::Imagebuilder
|
|
3325
3488
|
class PutImagePolicyRequest < Struct.new(
|
3326
3489
|
:image_arn,
|
3327
3490
|
:policy)
|
3491
|
+
SENSITIVE = []
|
3328
3492
|
include Aws::Structure
|
3329
3493
|
end
|
3330
3494
|
|
@@ -3342,6 +3506,7 @@ module Aws::Imagebuilder
|
|
3342
3506
|
class PutImagePolicyResponse < Struct.new(
|
3343
3507
|
:request_id,
|
3344
3508
|
:image_arn)
|
3509
|
+
SENSITIVE = []
|
3345
3510
|
include Aws::Structure
|
3346
3511
|
end
|
3347
3512
|
|
@@ -3367,6 +3532,7 @@ module Aws::Imagebuilder
|
|
3367
3532
|
class PutImageRecipePolicyRequest < Struct.new(
|
3368
3533
|
:image_recipe_arn,
|
3369
3534
|
:policy)
|
3535
|
+
SENSITIVE = []
|
3370
3536
|
include Aws::Structure
|
3371
3537
|
end
|
3372
3538
|
|
@@ -3384,6 +3550,7 @@ module Aws::Imagebuilder
|
|
3384
3550
|
class PutImageRecipePolicyResponse < Struct.new(
|
3385
3551
|
:request_id,
|
3386
3552
|
:image_recipe_arn)
|
3553
|
+
SENSITIVE = []
|
3387
3554
|
include Aws::Structure
|
3388
3555
|
end
|
3389
3556
|
|
@@ -3396,6 +3563,7 @@ module Aws::Imagebuilder
|
|
3396
3563
|
#
|
3397
3564
|
class ResourceAlreadyExistsException < Struct.new(
|
3398
3565
|
:message)
|
3566
|
+
SENSITIVE = []
|
3399
3567
|
include Aws::Structure
|
3400
3568
|
end
|
3401
3569
|
|
@@ -3409,6 +3577,7 @@ module Aws::Imagebuilder
|
|
3409
3577
|
#
|
3410
3578
|
class ResourceDependencyException < Struct.new(
|
3411
3579
|
:message)
|
3580
|
+
SENSITIVE = []
|
3412
3581
|
include Aws::Structure
|
3413
3582
|
end
|
3414
3583
|
|
@@ -3422,6 +3591,7 @@ module Aws::Imagebuilder
|
|
3422
3591
|
#
|
3423
3592
|
class ResourceInUseException < Struct.new(
|
3424
3593
|
:message)
|
3594
|
+
SENSITIVE = []
|
3425
3595
|
include Aws::Structure
|
3426
3596
|
end
|
3427
3597
|
|
@@ -3435,6 +3605,7 @@ module Aws::Imagebuilder
|
|
3435
3605
|
#
|
3436
3606
|
class ResourceNotFoundException < Struct.new(
|
3437
3607
|
:message)
|
3608
|
+
SENSITIVE = []
|
3438
3609
|
include Aws::Structure
|
3439
3610
|
end
|
3440
3611
|
|
@@ -3461,6 +3632,7 @@ module Aws::Imagebuilder
|
|
3461
3632
|
class S3Logs < Struct.new(
|
3462
3633
|
:s3_bucket_name,
|
3463
3634
|
:s3_key_prefix)
|
3635
|
+
SENSITIVE = []
|
3464
3636
|
include Aws::Structure
|
3465
3637
|
end
|
3466
3638
|
|
@@ -3494,6 +3666,7 @@ module Aws::Imagebuilder
|
|
3494
3666
|
class Schedule < Struct.new(
|
3495
3667
|
:schedule_expression,
|
3496
3668
|
:pipeline_execution_start_condition)
|
3669
|
+
SENSITIVE = []
|
3497
3670
|
include Aws::Structure
|
3498
3671
|
end
|
3499
3672
|
|
@@ -3507,6 +3680,26 @@ module Aws::Imagebuilder
|
|
3507
3680
|
#
|
3508
3681
|
class ServiceException < Struct.new(
|
3509
3682
|
:message)
|
3683
|
+
SENSITIVE = []
|
3684
|
+
include Aws::Structure
|
3685
|
+
end
|
3686
|
+
|
3687
|
+
# You have exceeded the number of permitted resources or operations for
|
3688
|
+
# this service. For service quotas, see [EC2 Image Builder endpoints and
|
3689
|
+
# quotas][1].
|
3690
|
+
#
|
3691
|
+
#
|
3692
|
+
#
|
3693
|
+
# [1]: https://docs.aws.amazon.com/general/latest/gr/imagebuilder.html#limits_imagebuilder
|
3694
|
+
#
|
3695
|
+
# @!attribute [rw] message
|
3696
|
+
# @return [String]
|
3697
|
+
#
|
3698
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ServiceQuotaExceededException AWS API Documentation
|
3699
|
+
#
|
3700
|
+
class ServiceQuotaExceededException < Struct.new(
|
3701
|
+
:message)
|
3702
|
+
SENSITIVE = []
|
3510
3703
|
include Aws::Structure
|
3511
3704
|
end
|
3512
3705
|
|
@@ -3519,6 +3712,7 @@ module Aws::Imagebuilder
|
|
3519
3712
|
#
|
3520
3713
|
class ServiceUnavailableException < Struct.new(
|
3521
3714
|
:message)
|
3715
|
+
SENSITIVE = []
|
3522
3716
|
include Aws::Structure
|
3523
3717
|
end
|
3524
3718
|
|
@@ -3547,6 +3741,7 @@ module Aws::Imagebuilder
|
|
3547
3741
|
class StartImagePipelineExecutionRequest < Struct.new(
|
3548
3742
|
:image_pipeline_arn,
|
3549
3743
|
:client_token)
|
3744
|
+
SENSITIVE = []
|
3550
3745
|
include Aws::Structure
|
3551
3746
|
end
|
3552
3747
|
|
@@ -3569,6 +3764,7 @@ module Aws::Imagebuilder
|
|
3569
3764
|
:request_id,
|
3570
3765
|
:client_token,
|
3571
3766
|
:image_build_version_arn)
|
3767
|
+
SENSITIVE = []
|
3572
3768
|
include Aws::Structure
|
3573
3769
|
end
|
3574
3770
|
|
@@ -3595,6 +3791,7 @@ module Aws::Imagebuilder
|
|
3595
3791
|
class TagResourceRequest < Struct.new(
|
3596
3792
|
:resource_arn,
|
3597
3793
|
:tags)
|
3794
|
+
SENSITIVE = []
|
3598
3795
|
include Aws::Structure
|
3599
3796
|
end
|
3600
3797
|
|
@@ -3624,6 +3821,7 @@ module Aws::Imagebuilder
|
|
3624
3821
|
class UntagResourceRequest < Struct.new(
|
3625
3822
|
:resource_arn,
|
3626
3823
|
:tag_keys)
|
3824
|
+
SENSITIVE = []
|
3627
3825
|
include Aws::Structure
|
3628
3826
|
end
|
3629
3827
|
|
@@ -3684,6 +3882,7 @@ module Aws::Imagebuilder
|
|
3684
3882
|
:description,
|
3685
3883
|
:distributions,
|
3686
3884
|
:client_token)
|
3885
|
+
SENSITIVE = []
|
3687
3886
|
include Aws::Structure
|
3688
3887
|
end
|
3689
3888
|
|
@@ -3706,6 +3905,7 @@ module Aws::Imagebuilder
|
|
3706
3905
|
:request_id,
|
3707
3906
|
:client_token,
|
3708
3907
|
:distribution_configuration_arn)
|
3908
|
+
SENSITIVE = []
|
3709
3909
|
include Aws::Structure
|
3710
3910
|
end
|
3711
3911
|
|
@@ -3795,6 +3995,7 @@ module Aws::Imagebuilder
|
|
3795
3995
|
:schedule,
|
3796
3996
|
:status,
|
3797
3997
|
:client_token)
|
3998
|
+
SENSITIVE = []
|
3798
3999
|
include Aws::Structure
|
3799
4000
|
end
|
3800
4001
|
|
@@ -3817,6 +4018,7 @@ module Aws::Imagebuilder
|
|
3817
4018
|
:request_id,
|
3818
4019
|
:client_token,
|
3819
4020
|
:image_pipeline_arn)
|
4021
|
+
SENSITIVE = []
|
3820
4022
|
include Aws::Structure
|
3821
4023
|
end
|
3822
4024
|
|
@@ -3840,6 +4042,9 @@ module Aws::Imagebuilder
|
|
3840
4042
|
# terminate_instance_on_failure: false,
|
3841
4043
|
# sns_topic_arn: "SnsTopicArn",
|
3842
4044
|
# client_token: "ClientToken", # required
|
4045
|
+
# resource_tags: {
|
4046
|
+
# "TagKey" => "TagValue",
|
4047
|
+
# },
|
3843
4048
|
# }
|
3844
4049
|
#
|
3845
4050
|
# @!attribute [rw] infrastructure_configuration_arn
|
@@ -3899,6 +4104,10 @@ module Aws::Imagebuilder
|
|
3899
4104
|
# not need to pass this option.
|
3900
4105
|
# @return [String]
|
3901
4106
|
#
|
4107
|
+
# @!attribute [rw] resource_tags
|
4108
|
+
# The tags attached to the resource created by Image Builder.
|
4109
|
+
# @return [Hash<String,String>]
|
4110
|
+
#
|
3902
4111
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/UpdateInfrastructureConfigurationRequest AWS API Documentation
|
3903
4112
|
#
|
3904
4113
|
class UpdateInfrastructureConfigurationRequest < Struct.new(
|
@@ -3912,7 +4121,9 @@ module Aws::Imagebuilder
|
|
3912
4121
|
:key_pair,
|
3913
4122
|
:terminate_instance_on_failure,
|
3914
4123
|
:sns_topic_arn,
|
3915
|
-
:client_token
|
4124
|
+
:client_token,
|
4125
|
+
:resource_tags)
|
4126
|
+
SENSITIVE = []
|
3916
4127
|
include Aws::Structure
|
3917
4128
|
end
|
3918
4129
|
|
@@ -3935,6 +4146,7 @@ module Aws::Imagebuilder
|
|
3935
4146
|
:request_id,
|
3936
4147
|
:client_token,
|
3937
4148
|
:infrastructure_configuration_arn)
|
4149
|
+
SENSITIVE = []
|
3938
4150
|
include Aws::Structure
|
3939
4151
|
end
|
3940
4152
|
|