aws-sdk-imagebuilder 1.91.0 → 1.93.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/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-imagebuilder/client.rb +183 -12
- data/lib/aws-sdk-imagebuilder/client_api.rb +99 -4
- data/lib/aws-sdk-imagebuilder/errors.rb +48 -0
- data/lib/aws-sdk-imagebuilder/types.rb +303 -35
- data/lib/aws-sdk-imagebuilder.rb +1 -1
- data/sig/client.rbs +46 -4
- data/sig/errors.rbs +9 -0
- data/sig/types.rbs +64 -0
- metadata +1 -1
|
@@ -10,6 +10,19 @@
|
|
|
10
10
|
module Aws::Imagebuilder
|
|
11
11
|
module Types
|
|
12
12
|
|
|
13
|
+
# You do not have permissions to perform the requested operation.
|
|
14
|
+
#
|
|
15
|
+
# @!attribute [rw] message
|
|
16
|
+
# @return [String]
|
|
17
|
+
#
|
|
18
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/AccessDeniedException AWS API Documentation
|
|
19
|
+
#
|
|
20
|
+
class AccessDeniedException < Struct.new(
|
|
21
|
+
:message)
|
|
22
|
+
SENSITIVE = []
|
|
23
|
+
include Aws::Structure
|
|
24
|
+
end
|
|
25
|
+
|
|
13
26
|
# Contains counts of vulnerability findings from image scans that run
|
|
14
27
|
# when you create new Image Builder images, or build new versions of
|
|
15
28
|
# existing images. The vulnerability counts are grouped by severity
|
|
@@ -238,7 +251,8 @@ module Aws::Imagebuilder
|
|
|
238
251
|
# @return [String]
|
|
239
252
|
#
|
|
240
253
|
# @!attribute [rw] image_build_version_arn
|
|
241
|
-
# The ARN of the image whose creation this
|
|
254
|
+
# The Amazon Resource Name (ARN) of the image whose creation this
|
|
255
|
+
# request canceled.
|
|
242
256
|
# @return [String]
|
|
243
257
|
#
|
|
244
258
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/CancelImageCreationResponse AWS API Documentation
|
|
@@ -1053,6 +1067,13 @@ module Aws::Imagebuilder
|
|
|
1053
1067
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
|
1054
1068
|
# @return [String]
|
|
1055
1069
|
#
|
|
1070
|
+
# @!attribute [rw] dry_run
|
|
1071
|
+
# Validates the required permissions for the operation and the request
|
|
1072
|
+
# parameters, without actually making the request, and provides an
|
|
1073
|
+
# error response. Upon a successful request, the error response is
|
|
1074
|
+
# `DryRunOperationException`.
|
|
1075
|
+
# @return [Boolean]
|
|
1076
|
+
#
|
|
1056
1077
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/CreateComponentRequest AWS API Documentation
|
|
1057
1078
|
#
|
|
1058
1079
|
class CreateComponentRequest < Struct.new(
|
|
@@ -1066,7 +1087,8 @@ module Aws::Imagebuilder
|
|
|
1066
1087
|
:uri,
|
|
1067
1088
|
:kms_key_id,
|
|
1068
1089
|
:tags,
|
|
1069
|
-
:client_token
|
|
1090
|
+
:client_token,
|
|
1091
|
+
:dry_run)
|
|
1070
1092
|
SENSITIVE = []
|
|
1071
1093
|
include Aws::Structure
|
|
1072
1094
|
end
|
|
@@ -1084,12 +1106,18 @@ module Aws::Imagebuilder
|
|
|
1084
1106
|
# created.
|
|
1085
1107
|
# @return [String]
|
|
1086
1108
|
#
|
|
1109
|
+
# @!attribute [rw] latest_version_references
|
|
1110
|
+
# The resource ARNs with different wildcard variations of semantic
|
|
1111
|
+
# versioning.
|
|
1112
|
+
# @return [Types::LatestVersionReferences]
|
|
1113
|
+
#
|
|
1087
1114
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/CreateComponentResponse AWS API Documentation
|
|
1088
1115
|
#
|
|
1089
1116
|
class CreateComponentResponse < Struct.new(
|
|
1090
1117
|
:request_id,
|
|
1091
1118
|
:client_token,
|
|
1092
|
-
:component_build_version_arn
|
|
1119
|
+
:component_build_version_arn,
|
|
1120
|
+
:latest_version_references)
|
|
1093
1121
|
SENSITIVE = []
|
|
1094
1122
|
include Aws::Structure
|
|
1095
1123
|
end
|
|
@@ -1128,9 +1156,7 @@ module Aws::Imagebuilder
|
|
|
1128
1156
|
# @return [String]
|
|
1129
1157
|
#
|
|
1130
1158
|
# @!attribute [rw] components
|
|
1131
|
-
#
|
|
1132
|
-
# recipe. Recipes require a minimum of one build component, and can
|
|
1133
|
-
# have a maximum of 20 build and test components in any combination.
|
|
1159
|
+
# The components included in the container recipe.
|
|
1134
1160
|
# @return [Array<Types::ComponentConfiguration>]
|
|
1135
1161
|
#
|
|
1136
1162
|
# @!attribute [rw] instance_configuration
|
|
@@ -1234,12 +1260,18 @@ module Aws::Imagebuilder
|
|
|
1234
1260
|
# the request created.
|
|
1235
1261
|
# @return [String]
|
|
1236
1262
|
#
|
|
1263
|
+
# @!attribute [rw] latest_version_references
|
|
1264
|
+
# The resource ARNs with different wildcard variations of semantic
|
|
1265
|
+
# versioning.
|
|
1266
|
+
# @return [Types::LatestVersionReferences]
|
|
1267
|
+
#
|
|
1237
1268
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/CreateContainerRecipeResponse AWS API Documentation
|
|
1238
1269
|
#
|
|
1239
1270
|
class CreateContainerRecipeResponse < Struct.new(
|
|
1240
1271
|
:request_id,
|
|
1241
1272
|
:client_token,
|
|
1242
|
-
:container_recipe_arn
|
|
1273
|
+
:container_recipe_arn,
|
|
1274
|
+
:latest_version_references)
|
|
1243
1275
|
SENSITIVE = []
|
|
1244
1276
|
include Aws::Structure
|
|
1245
1277
|
end
|
|
@@ -1554,12 +1586,18 @@ module Aws::Imagebuilder
|
|
|
1554
1586
|
# by this request.
|
|
1555
1587
|
# @return [String]
|
|
1556
1588
|
#
|
|
1589
|
+
# @!attribute [rw] latest_version_references
|
|
1590
|
+
# The resource ARNs with different wildcard variations of semantic
|
|
1591
|
+
# versioning.
|
|
1592
|
+
# @return [Types::LatestVersionReferences]
|
|
1593
|
+
#
|
|
1557
1594
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/CreateImageRecipeResponse AWS API Documentation
|
|
1558
1595
|
#
|
|
1559
1596
|
class CreateImageRecipeResponse < Struct.new(
|
|
1560
1597
|
:request_id,
|
|
1561
1598
|
:client_token,
|
|
1562
|
-
:image_recipe_arn
|
|
1599
|
+
:image_recipe_arn,
|
|
1600
|
+
:latest_version_references)
|
|
1563
1601
|
SENSITIVE = []
|
|
1564
1602
|
include Aws::Structure
|
|
1565
1603
|
end
|
|
@@ -1662,12 +1700,18 @@ module Aws::Imagebuilder
|
|
|
1662
1700
|
# created.
|
|
1663
1701
|
# @return [String]
|
|
1664
1702
|
#
|
|
1703
|
+
# @!attribute [rw] latest_version_references
|
|
1704
|
+
# The resource ARNs with different wildcard variations of semantic
|
|
1705
|
+
# versioning.
|
|
1706
|
+
# @return [Types::LatestVersionReferences]
|
|
1707
|
+
#
|
|
1665
1708
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/CreateImageResponse AWS API Documentation
|
|
1666
1709
|
#
|
|
1667
1710
|
class CreateImageResponse < Struct.new(
|
|
1668
1711
|
:request_id,
|
|
1669
1712
|
:client_token,
|
|
1670
|
-
:image_build_version_arn
|
|
1713
|
+
:image_build_version_arn,
|
|
1714
|
+
:latest_version_references)
|
|
1671
1715
|
SENSITIVE = []
|
|
1672
1716
|
include Aws::Structure
|
|
1673
1717
|
end
|
|
@@ -1975,6 +2019,13 @@ module Aws::Imagebuilder
|
|
|
1975
2019
|
# is responsible.
|
|
1976
2020
|
# @return [String]
|
|
1977
2021
|
#
|
|
2022
|
+
# @!attribute [rw] dry_run
|
|
2023
|
+
# Validates the required permissions for the operation and the request
|
|
2024
|
+
# parameters, without actually making the request, and provides an
|
|
2025
|
+
# error response. Upon a successful request, the error response is
|
|
2026
|
+
# `DryRunOperationException`.
|
|
2027
|
+
# @return [Boolean]
|
|
2028
|
+
#
|
|
1978
2029
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/CreateWorkflowRequest AWS API Documentation
|
|
1979
2030
|
#
|
|
1980
2031
|
class CreateWorkflowRequest < Struct.new(
|
|
@@ -1987,7 +2038,8 @@ module Aws::Imagebuilder
|
|
|
1987
2038
|
:kms_key_id,
|
|
1988
2039
|
:tags,
|
|
1989
2040
|
:client_token,
|
|
1990
|
-
:type
|
|
2041
|
+
:type,
|
|
2042
|
+
:dry_run)
|
|
1991
2043
|
SENSITIVE = []
|
|
1992
2044
|
include Aws::Structure
|
|
1993
2045
|
end
|
|
@@ -2001,11 +2053,17 @@ module Aws::Imagebuilder
|
|
|
2001
2053
|
# request created.
|
|
2002
2054
|
# @return [String]
|
|
2003
2055
|
#
|
|
2056
|
+
# @!attribute [rw] latest_version_references
|
|
2057
|
+
# The resource ARNs with different wildcard variations of semantic
|
|
2058
|
+
# versioning.
|
|
2059
|
+
# @return [Types::LatestVersionReferences]
|
|
2060
|
+
#
|
|
2004
2061
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/CreateWorkflowResponse AWS API Documentation
|
|
2005
2062
|
#
|
|
2006
2063
|
class CreateWorkflowResponse < Struct.new(
|
|
2007
2064
|
:client_token,
|
|
2008
|
-
:workflow_build_version_arn
|
|
2065
|
+
:workflow_build_version_arn,
|
|
2066
|
+
:latest_version_references)
|
|
2009
2067
|
SENSITIVE = []
|
|
2010
2068
|
include Aws::Structure
|
|
2011
2069
|
end
|
|
@@ -2129,7 +2187,8 @@ module Aws::Imagebuilder
|
|
|
2129
2187
|
# @return [String]
|
|
2130
2188
|
#
|
|
2131
2189
|
# @!attribute [rw] component_build_version_arn
|
|
2132
|
-
# The ARN of the component build version that
|
|
2190
|
+
# The Amazon Resource Name (ARN) of the component build version that
|
|
2191
|
+
# this request deleted.
|
|
2133
2192
|
# @return [String]
|
|
2134
2193
|
#
|
|
2135
2194
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/DeleteComponentResponse AWS API Documentation
|
|
@@ -2279,8 +2338,8 @@ module Aws::Imagebuilder
|
|
|
2279
2338
|
# @return [String]
|
|
2280
2339
|
#
|
|
2281
2340
|
# @!attribute [rw] image_build_version_arn
|
|
2282
|
-
# The ARN of the Image Builder image resource
|
|
2283
|
-
# deleted.
|
|
2341
|
+
# The Amazon Resource Name (ARN) of the Image Builder image resource
|
|
2342
|
+
# that this request deleted.
|
|
2284
2343
|
# @return [String]
|
|
2285
2344
|
#
|
|
2286
2345
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/DeleteImageResponse AWS API Documentation
|
|
@@ -2337,7 +2396,8 @@ module Aws::Imagebuilder
|
|
|
2337
2396
|
end
|
|
2338
2397
|
|
|
2339
2398
|
# @!attribute [rw] lifecycle_policy_arn
|
|
2340
|
-
# The ARN of the lifecycle policy that was
|
|
2399
|
+
# The Amazon Resource Name (ARN) of the lifecycle policy that was
|
|
2400
|
+
# deleted.
|
|
2341
2401
|
# @return [String]
|
|
2342
2402
|
#
|
|
2343
2403
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/DeleteLifecyclePolicyResponse AWS API Documentation
|
|
@@ -2361,7 +2421,8 @@ module Aws::Imagebuilder
|
|
|
2361
2421
|
end
|
|
2362
2422
|
|
|
2363
2423
|
# @!attribute [rw] workflow_build_version_arn
|
|
2364
|
-
# The ARN of the workflow resource that this
|
|
2424
|
+
# The Amazon Resource Name (ARN) of the workflow resource that this
|
|
2425
|
+
# request deleted.
|
|
2365
2426
|
# @return [String]
|
|
2366
2427
|
#
|
|
2367
2428
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/DeleteWorkflowResponse AWS API Documentation
|
|
@@ -2372,6 +2433,70 @@ module Aws::Imagebuilder
|
|
|
2372
2433
|
include Aws::Structure
|
|
2373
2434
|
end
|
|
2374
2435
|
|
|
2436
|
+
# @!attribute [rw] source_image
|
|
2437
|
+
# The source image Amazon Resource Name (ARN) to distribute.
|
|
2438
|
+
# @return [String]
|
|
2439
|
+
#
|
|
2440
|
+
# @!attribute [rw] distribution_configuration_arn
|
|
2441
|
+
# The Amazon Resource Name (ARN) of the distribution configuration to
|
|
2442
|
+
# use.
|
|
2443
|
+
# @return [String]
|
|
2444
|
+
#
|
|
2445
|
+
# @!attribute [rw] execution_role
|
|
2446
|
+
# The IAM role to use for the distribution.
|
|
2447
|
+
# @return [String]
|
|
2448
|
+
#
|
|
2449
|
+
# @!attribute [rw] tags
|
|
2450
|
+
# The tags to apply to the distributed image.
|
|
2451
|
+
# @return [Hash<String,String>]
|
|
2452
|
+
#
|
|
2453
|
+
# @!attribute [rw] client_token
|
|
2454
|
+
# Unique, case-sensitive identifier you provide to ensure idempotency
|
|
2455
|
+
# of the request. For more information, see [Ensuring idempotency][1]
|
|
2456
|
+
# in the *Amazon EC2 API Reference*.
|
|
2457
|
+
#
|
|
2458
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
2459
|
+
# not need to pass this option.
|
|
2460
|
+
#
|
|
2461
|
+
#
|
|
2462
|
+
#
|
|
2463
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
|
2464
|
+
# @return [String]
|
|
2465
|
+
#
|
|
2466
|
+
# @!attribute [rw] logging_configuration
|
|
2467
|
+
# The logging configuration for the distribution.
|
|
2468
|
+
# @return [Types::ImageLoggingConfiguration]
|
|
2469
|
+
#
|
|
2470
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/DistributeImageRequest AWS API Documentation
|
|
2471
|
+
#
|
|
2472
|
+
class DistributeImageRequest < Struct.new(
|
|
2473
|
+
:source_image,
|
|
2474
|
+
:distribution_configuration_arn,
|
|
2475
|
+
:execution_role,
|
|
2476
|
+
:tags,
|
|
2477
|
+
:client_token,
|
|
2478
|
+
:logging_configuration)
|
|
2479
|
+
SENSITIVE = []
|
|
2480
|
+
include Aws::Structure
|
|
2481
|
+
end
|
|
2482
|
+
|
|
2483
|
+
# @!attribute [rw] client_token
|
|
2484
|
+
# The client token that uniquely identifies the request.
|
|
2485
|
+
# @return [String]
|
|
2486
|
+
#
|
|
2487
|
+
# @!attribute [rw] image_build_version_arn
|
|
2488
|
+
# The Amazon Resource Name (ARN) of the image to be distributed.
|
|
2489
|
+
# @return [String]
|
|
2490
|
+
#
|
|
2491
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/DistributeImageResponse AWS API Documentation
|
|
2492
|
+
#
|
|
2493
|
+
class DistributeImageResponse < Struct.new(
|
|
2494
|
+
:client_token,
|
|
2495
|
+
:image_build_version_arn)
|
|
2496
|
+
SENSITIVE = []
|
|
2497
|
+
include Aws::Structure
|
|
2498
|
+
end
|
|
2499
|
+
|
|
2375
2500
|
# Defines the settings for a specific Region.
|
|
2376
2501
|
#
|
|
2377
2502
|
# @!attribute [rw] region
|
|
@@ -2524,6 +2649,21 @@ module Aws::Imagebuilder
|
|
|
2524
2649
|
include Aws::Structure
|
|
2525
2650
|
end
|
|
2526
2651
|
|
|
2652
|
+
# The dry run operation of the resource was successful, and no resources
|
|
2653
|
+
# or mutations were actually performed due to the dry run flag in the
|
|
2654
|
+
# request.
|
|
2655
|
+
#
|
|
2656
|
+
# @!attribute [rw] message
|
|
2657
|
+
# @return [String]
|
|
2658
|
+
#
|
|
2659
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/DryRunOperationException AWS API Documentation
|
|
2660
|
+
#
|
|
2661
|
+
class DryRunOperationException < Struct.new(
|
|
2662
|
+
:message)
|
|
2663
|
+
SENSITIVE = []
|
|
2664
|
+
include Aws::Structure
|
|
2665
|
+
end
|
|
2666
|
+
|
|
2527
2667
|
# Amazon EBS-specific block device mapping specifications.
|
|
2528
2668
|
#
|
|
2529
2669
|
# @!attribute [rw] encrypted
|
|
@@ -2784,11 +2924,17 @@ module Aws::Imagebuilder
|
|
|
2784
2924
|
# The component object specified in the request.
|
|
2785
2925
|
# @return [Types::Component]
|
|
2786
2926
|
#
|
|
2927
|
+
# @!attribute [rw] latest_version_references
|
|
2928
|
+
# The resource ARNs with different wildcard variations of semantic
|
|
2929
|
+
# versioning.
|
|
2930
|
+
# @return [Types::LatestVersionReferences]
|
|
2931
|
+
#
|
|
2787
2932
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetComponentResponse AWS API Documentation
|
|
2788
2933
|
#
|
|
2789
2934
|
class GetComponentResponse < Struct.new(
|
|
2790
2935
|
:request_id,
|
|
2791
|
-
:component
|
|
2936
|
+
:component,
|
|
2937
|
+
:latest_version_references)
|
|
2792
2938
|
SENSITIVE = []
|
|
2793
2939
|
include Aws::Structure
|
|
2794
2940
|
end
|
|
@@ -2843,11 +2989,17 @@ module Aws::Imagebuilder
|
|
|
2843
2989
|
# The container recipe object that is returned.
|
|
2844
2990
|
# @return [Types::ContainerRecipe]
|
|
2845
2991
|
#
|
|
2992
|
+
# @!attribute [rw] latest_version_references
|
|
2993
|
+
# The resource ARNs with different wildcard variations of semantic
|
|
2994
|
+
# versioning.
|
|
2995
|
+
# @return [Types::LatestVersionReferences]
|
|
2996
|
+
#
|
|
2846
2997
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetContainerRecipeResponse AWS API Documentation
|
|
2847
2998
|
#
|
|
2848
2999
|
class GetContainerRecipeResponse < Struct.new(
|
|
2849
3000
|
:request_id,
|
|
2850
|
-
:container_recipe
|
|
3001
|
+
:container_recipe,
|
|
3002
|
+
:latest_version_references)
|
|
2851
3003
|
SENSITIVE = []
|
|
2852
3004
|
include Aws::Structure
|
|
2853
3005
|
end
|
|
@@ -2993,11 +3145,17 @@ module Aws::Imagebuilder
|
|
|
2993
3145
|
# The image recipe object.
|
|
2994
3146
|
# @return [Types::ImageRecipe]
|
|
2995
3147
|
#
|
|
3148
|
+
# @!attribute [rw] latest_version_references
|
|
3149
|
+
# The resource ARNs with different wildcard variations of semantic
|
|
3150
|
+
# versioning.
|
|
3151
|
+
# @return [Types::LatestVersionReferences]
|
|
3152
|
+
#
|
|
2996
3153
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetImageRecipeResponse AWS API Documentation
|
|
2997
3154
|
#
|
|
2998
3155
|
class GetImageRecipeResponse < Struct.new(
|
|
2999
3156
|
:request_id,
|
|
3000
|
-
:image_recipe
|
|
3157
|
+
:image_recipe,
|
|
3158
|
+
:latest_version_references)
|
|
3001
3159
|
SENSITIVE = []
|
|
3002
3160
|
include Aws::Structure
|
|
3003
3161
|
end
|
|
@@ -3022,11 +3180,17 @@ module Aws::Imagebuilder
|
|
|
3022
3180
|
# The image object.
|
|
3023
3181
|
# @return [Types::Image]
|
|
3024
3182
|
#
|
|
3183
|
+
# @!attribute [rw] latest_version_references
|
|
3184
|
+
# The resource ARNs with different wildcard variations of semantic
|
|
3185
|
+
# versioning.
|
|
3186
|
+
# @return [Types::LatestVersionReferences]
|
|
3187
|
+
#
|
|
3025
3188
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetImageResponse AWS API Documentation
|
|
3026
3189
|
#
|
|
3027
3190
|
class GetImageResponse < Struct.new(
|
|
3028
3191
|
:request_id,
|
|
3029
|
-
:image
|
|
3192
|
+
:image,
|
|
3193
|
+
:latest_version_references)
|
|
3030
3194
|
SENSITIVE = []
|
|
3031
3195
|
include Aws::Structure
|
|
3032
3196
|
end
|
|
@@ -3105,7 +3269,8 @@ module Aws::Imagebuilder
|
|
|
3105
3269
|
end
|
|
3106
3270
|
|
|
3107
3271
|
# @!attribute [rw] lifecycle_policy
|
|
3108
|
-
# The ARN of the image lifecycle policy
|
|
3272
|
+
# The Amazon Resource Name (ARN) of the image lifecycle policy
|
|
3273
|
+
# resource that was returned.
|
|
3109
3274
|
# @return [Types::LifecyclePolicy]
|
|
3110
3275
|
#
|
|
3111
3276
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetLifecyclePolicyResponse AWS API Documentation
|
|
@@ -3287,10 +3452,16 @@ module Aws::Imagebuilder
|
|
|
3287
3452
|
# The workflow resource specified in the request.
|
|
3288
3453
|
# @return [Types::Workflow]
|
|
3289
3454
|
#
|
|
3455
|
+
# @!attribute [rw] latest_version_references
|
|
3456
|
+
# The resource ARNs with different wildcard variations of semantic
|
|
3457
|
+
# versioning.
|
|
3458
|
+
# @return [Types::LatestVersionReferences]
|
|
3459
|
+
#
|
|
3290
3460
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetWorkflowResponse AWS API Documentation
|
|
3291
3461
|
#
|
|
3292
3462
|
class GetWorkflowResponse < Struct.new(
|
|
3293
|
-
:workflow
|
|
3463
|
+
:workflow,
|
|
3464
|
+
:latest_version_references)
|
|
3294
3465
|
SENSITIVE = []
|
|
3295
3466
|
include Aws::Structure
|
|
3296
3467
|
end
|
|
@@ -5174,6 +5345,40 @@ module Aws::Imagebuilder
|
|
|
5174
5345
|
include Aws::Structure
|
|
5175
5346
|
end
|
|
5176
5347
|
|
|
5348
|
+
# The resource ARNs with different wildcard variations of semantic
|
|
5349
|
+
# versioning.
|
|
5350
|
+
#
|
|
5351
|
+
# @!attribute [rw] latest_version_arn
|
|
5352
|
+
# The latest version Amazon Resource Name (ARN) of the Image Builder
|
|
5353
|
+
# resource.
|
|
5354
|
+
# @return [String]
|
|
5355
|
+
#
|
|
5356
|
+
# @!attribute [rw] latest_major_version_arn
|
|
5357
|
+
# The latest version Amazon Resource Name (ARN) with the same `major`
|
|
5358
|
+
# version of the Image Builder resource.
|
|
5359
|
+
# @return [String]
|
|
5360
|
+
#
|
|
5361
|
+
# @!attribute [rw] latest_minor_version_arn
|
|
5362
|
+
# The latest version Amazon Resource Name (ARN) with the same `minor`
|
|
5363
|
+
# version of the Image Builder resource.
|
|
5364
|
+
# @return [String]
|
|
5365
|
+
#
|
|
5366
|
+
# @!attribute [rw] latest_patch_version_arn
|
|
5367
|
+
# The latest version Amazon Resource Name (ARN) with the same `patch`
|
|
5368
|
+
# version of the Image Builder resource.
|
|
5369
|
+
# @return [String]
|
|
5370
|
+
#
|
|
5371
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/LatestVersionReferences AWS API Documentation
|
|
5372
|
+
#
|
|
5373
|
+
class LatestVersionReferences < Struct.new(
|
|
5374
|
+
:latest_version_arn,
|
|
5375
|
+
:latest_major_version_arn,
|
|
5376
|
+
:latest_minor_version_arn,
|
|
5377
|
+
:latest_patch_version_arn)
|
|
5378
|
+
SENSITIVE = []
|
|
5379
|
+
include Aws::Structure
|
|
5380
|
+
end
|
|
5381
|
+
|
|
5177
5382
|
# Describes the configuration for a launch permission. The launch
|
|
5178
5383
|
# permission modification request is sent to the [Amazon EC2
|
|
5179
5384
|
# ModifyImageAttribute][1] API on behalf of the user for each Region
|
|
@@ -6940,8 +7145,8 @@ module Aws::Imagebuilder
|
|
|
6940
7145
|
# @return [Array<Types::WorkflowExecutionMetadata>]
|
|
6941
7146
|
#
|
|
6942
7147
|
# @!attribute [rw] image_build_version_arn
|
|
6943
|
-
# The resource ARN of the image build version
|
|
6944
|
-
# a list of workflow runtime details.
|
|
7148
|
+
# The resource Amazon Resource Name (ARN) of the image build version
|
|
7149
|
+
# for which you requested a list of workflow runtime details.
|
|
6945
7150
|
# @return [String]
|
|
6946
7151
|
#
|
|
6947
7152
|
# @!attribute [rw] message
|
|
@@ -7001,8 +7206,9 @@ module Aws::Imagebuilder
|
|
|
7001
7206
|
# @return [Array<Types::WorkflowStepMetadata>]
|
|
7002
7207
|
#
|
|
7003
7208
|
# @!attribute [rw] workflow_build_version_arn
|
|
7004
|
-
# The build version ARN for the Image Builder
|
|
7005
|
-
# defines the steps for this runtime instance
|
|
7209
|
+
# The build version Amazon Resource Name (ARN) for the Image Builder
|
|
7210
|
+
# workflow resource that defines the steps for this runtime instance
|
|
7211
|
+
# of the workflow.
|
|
7006
7212
|
# @return [String]
|
|
7007
7213
|
#
|
|
7008
7214
|
# @!attribute [rw] workflow_execution_id
|
|
@@ -7011,8 +7217,8 @@ module Aws::Imagebuilder
|
|
|
7011
7217
|
# @return [String]
|
|
7012
7218
|
#
|
|
7013
7219
|
# @!attribute [rw] image_build_version_arn
|
|
7014
|
-
# The image build version resource ARN that's
|
|
7015
|
-
# specified runtime instance of the workflow.
|
|
7220
|
+
# The image build version resource Amazon Resource Name (ARN) that's
|
|
7221
|
+
# associated with the specified runtime instance of the workflow.
|
|
7016
7222
|
# @return [String]
|
|
7017
7223
|
#
|
|
7018
7224
|
# @!attribute [rw] message
|
|
@@ -7582,6 +7788,49 @@ module Aws::Imagebuilder
|
|
|
7582
7788
|
include Aws::Structure
|
|
7583
7789
|
end
|
|
7584
7790
|
|
|
7791
|
+
# @!attribute [rw] image_build_version_arn
|
|
7792
|
+
# The source image Amazon Resource Name (ARN) to retry.
|
|
7793
|
+
# @return [String]
|
|
7794
|
+
#
|
|
7795
|
+
# @!attribute [rw] client_token
|
|
7796
|
+
# Unique, case-sensitive identifier you provide to ensure idempotency
|
|
7797
|
+
# of the request. For more information, see [Ensuring idempotency][1]
|
|
7798
|
+
# in the *Amazon EC2 API Reference*.
|
|
7799
|
+
#
|
|
7800
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
7801
|
+
# not need to pass this option.
|
|
7802
|
+
#
|
|
7803
|
+
#
|
|
7804
|
+
#
|
|
7805
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
|
7806
|
+
# @return [String]
|
|
7807
|
+
#
|
|
7808
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/RetryImageRequest AWS API Documentation
|
|
7809
|
+
#
|
|
7810
|
+
class RetryImageRequest < Struct.new(
|
|
7811
|
+
:image_build_version_arn,
|
|
7812
|
+
:client_token)
|
|
7813
|
+
SENSITIVE = []
|
|
7814
|
+
include Aws::Structure
|
|
7815
|
+
end
|
|
7816
|
+
|
|
7817
|
+
# @!attribute [rw] client_token
|
|
7818
|
+
# The client token that uniquely identifies the request.
|
|
7819
|
+
# @return [String]
|
|
7820
|
+
#
|
|
7821
|
+
# @!attribute [rw] image_build_version_arn
|
|
7822
|
+
# The ARN of the image to be retried.
|
|
7823
|
+
# @return [String]
|
|
7824
|
+
#
|
|
7825
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/RetryImageResponse AWS API Documentation
|
|
7826
|
+
#
|
|
7827
|
+
class RetryImageResponse < Struct.new(
|
|
7828
|
+
:client_token,
|
|
7829
|
+
:image_build_version_arn)
|
|
7830
|
+
SENSITIVE = []
|
|
7831
|
+
include Aws::Structure
|
|
7832
|
+
end
|
|
7833
|
+
|
|
7585
7834
|
# Properties that configure export from your build instance to a
|
|
7586
7835
|
# compatible file format for your VM.
|
|
7587
7836
|
#
|
|
@@ -7937,8 +8186,8 @@ module Aws::Imagebuilder
|
|
|
7937
8186
|
end
|
|
7938
8187
|
|
|
7939
8188
|
# @!attribute [rw] resource_arn
|
|
7940
|
-
# The ARN of the Image Builder resource that is
|
|
7941
|
-
# update might also impact associated resources.
|
|
8189
|
+
# The Amazon Resource Name (ARN) of the Image Builder resource that is
|
|
8190
|
+
# updated. The state update might also impact associated resources.
|
|
7942
8191
|
# @return [String]
|
|
7943
8192
|
#
|
|
7944
8193
|
# @!attribute [rw] state
|
|
@@ -7997,8 +8246,8 @@ module Aws::Imagebuilder
|
|
|
7997
8246
|
# @return [String]
|
|
7998
8247
|
#
|
|
7999
8248
|
# @!attribute [rw] resource_arn
|
|
8000
|
-
# The requested ARN of the Image Builder
|
|
8001
|
-
# update.
|
|
8249
|
+
# The requested Amazon Resource Name (ARN) of the Image Builder
|
|
8250
|
+
# resource for the asynchronous update.
|
|
8002
8251
|
# @return [String]
|
|
8003
8252
|
#
|
|
8004
8253
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/StartResourceStateUpdateResponse AWS API Documentation
|
|
@@ -8074,6 +8323,19 @@ module Aws::Imagebuilder
|
|
|
8074
8323
|
include Aws::Structure
|
|
8075
8324
|
end
|
|
8076
8325
|
|
|
8326
|
+
# You have attempted too many requests for the specific operation.
|
|
8327
|
+
#
|
|
8328
|
+
# @!attribute [rw] message
|
|
8329
|
+
# @return [String]
|
|
8330
|
+
#
|
|
8331
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/TooManyRequestsException AWS API Documentation
|
|
8332
|
+
#
|
|
8333
|
+
class TooManyRequestsException < Struct.new(
|
|
8334
|
+
:message)
|
|
8335
|
+
SENSITIVE = []
|
|
8336
|
+
include Aws::Structure
|
|
8337
|
+
end
|
|
8338
|
+
|
|
8077
8339
|
# @!attribute [rw] resource_arn
|
|
8078
8340
|
# The Amazon Resource Name (ARN) of the resource that you want to
|
|
8079
8341
|
# untag.
|
|
@@ -8482,7 +8744,8 @@ module Aws::Imagebuilder
|
|
|
8482
8744
|
end
|
|
8483
8745
|
|
|
8484
8746
|
# @!attribute [rw] lifecycle_policy_arn
|
|
8485
|
-
# The ARN of the image lifecycle policy
|
|
8747
|
+
# The Amazon Resource Name (ARN) of the image lifecycle policy
|
|
8748
|
+
# resource that was updated.
|
|
8486
8749
|
# @return [String]
|
|
8487
8750
|
#
|
|
8488
8751
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/UpdateLifecyclePolicyResponse AWS API Documentation
|
|
@@ -8760,6 +9023,10 @@ module Aws::Imagebuilder
|
|
|
8760
9023
|
# at runtime.
|
|
8761
9024
|
# @return [String]
|
|
8762
9025
|
#
|
|
9026
|
+
# @!attribute [rw] retried
|
|
9027
|
+
# Indicates retry status for this runtime instance of the workflow.
|
|
9028
|
+
# @return [Boolean]
|
|
9029
|
+
#
|
|
8763
9030
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/WorkflowExecutionMetadata AWS API Documentation
|
|
8764
9031
|
#
|
|
8765
9032
|
class WorkflowExecutionMetadata < Struct.new(
|
|
@@ -8774,7 +9041,8 @@ module Aws::Imagebuilder
|
|
|
8774
9041
|
:total_steps_skipped,
|
|
8775
9042
|
:start_time,
|
|
8776
9043
|
:end_time,
|
|
8777
|
-
:parallel_group
|
|
9044
|
+
:parallel_group,
|
|
9045
|
+
:retried)
|
|
8778
9046
|
SENSITIVE = []
|
|
8779
9047
|
include Aws::Structure
|
|
8780
9048
|
end
|
|
@@ -8868,7 +9136,7 @@ module Aws::Imagebuilder
|
|
|
8868
9136
|
# @return [String]
|
|
8869
9137
|
#
|
|
8870
9138
|
# @!attribute [rw] workflow_build_version_arn
|
|
8871
|
-
# The ARN of the workflow resource that ran.
|
|
9139
|
+
# The Amazon Resource Name (ARN) of the workflow resource that ran.
|
|
8872
9140
|
# @return [String]
|
|
8873
9141
|
#
|
|
8874
9142
|
# @!attribute [rw] name
|
data/lib/aws-sdk-imagebuilder.rb
CHANGED