aws-sdk-imagebuilder 1.88.0 → 1.89.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-imagebuilder/client.rb +128 -30
- data/lib/aws-sdk-imagebuilder/client_api.rb +31 -0
- data/lib/aws-sdk-imagebuilder/types.rb +286 -50
- data/lib/aws-sdk-imagebuilder.rb +1 -1
- data/sig/client.rbs +30 -5
- data/sig/types.rbs +31 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ac834bf77541d4d7562f96e3e0ccdbb35cb7f7c483444d384b62b3e1940dbbd8
|
4
|
+
data.tar.gz: a7e8d5bab3a28e8937db027beb8ae0227cbc1c3f4ef841579367cdeb21f1fb6b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af1eaf0afe0d12ea86373177e33522aa8c0ad4c5ef0b6cad72e598cbbcce1804b41635e3585580ba049d8d0848d28f8c2a840f6e2dfd684c9be89446528ecd49
|
7
|
+
data.tar.gz: a39f95988f080211d944a373ed64f26b6cb9d471ff8cf8d303d7876c80172e199ca06264be17edcceccd69607970ff016f643fa0f723db7c24d8542bb03b0ae3
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.89.0 (2025-09-29)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release introduces several new features and improvements to enhance pipeline management, logging, and resource configuration.
|
8
|
+
|
4
9
|
1.88.0 (2025-09-22)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.89.0
|
@@ -628,7 +628,14 @@ module Aws::Imagebuilder
|
|
628
628
|
# component `data` property. You cannot specify both properties.
|
629
629
|
#
|
630
630
|
# @option params [String] :kms_key_id
|
631
|
-
# The
|
631
|
+
# The Amazon Resource Name (ARN) that uniquely identifies the KMS key
|
632
|
+
# used to encrypt this component. This can be either the Key ARN or the
|
633
|
+
# Alias ARN. For more information, see [Key identifiers (KeyId)][1] in
|
634
|
+
# the *Key Management Service Developer Guide*.
|
635
|
+
#
|
636
|
+
#
|
637
|
+
#
|
638
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id-key-ARN
|
632
639
|
#
|
633
640
|
# @option params [Hash<String,String>] :tags
|
634
641
|
# The tags that apply to the component.
|
@@ -753,7 +760,14 @@ module Aws::Imagebuilder
|
|
753
760
|
# The destination repository for the container image.
|
754
761
|
#
|
755
762
|
# @option params [String] :kms_key_id
|
756
|
-
#
|
763
|
+
# The Amazon Resource Name (ARN) that uniquely identifies which KMS key
|
764
|
+
# is used to encrypt the Dockerfile template. This can be either the Key
|
765
|
+
# ARN or the Alias ARN. For more information, see [Key identifiers
|
766
|
+
# (KeyId)][1] in the *Key Management Service Developer Guide*.
|
767
|
+
#
|
768
|
+
#
|
769
|
+
#
|
770
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id-key-ARN
|
757
771
|
#
|
758
772
|
# @option params [required, String] :client_token
|
759
773
|
# Unique, case-sensitive identifier you provide to ensure idempotency of
|
@@ -1022,6 +1036,9 @@ module Aws::Imagebuilder
|
|
1022
1036
|
# The name or Amazon Resource Name (ARN) for the IAM role you create
|
1023
1037
|
# that grants Image Builder access to perform workflow actions.
|
1024
1038
|
#
|
1039
|
+
# @option params [Types::ImageLoggingConfiguration] :logging_configuration
|
1040
|
+
# Define logging configuration for the image build process.
|
1041
|
+
#
|
1025
1042
|
# @return [Types::CreateImageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1026
1043
|
#
|
1027
1044
|
# * {Types::CreateImageResponse#request_id #request_id} => String
|
@@ -1065,6 +1082,9 @@ module Aws::Imagebuilder
|
|
1065
1082
|
# },
|
1066
1083
|
# ],
|
1067
1084
|
# execution_role: "RoleNameOrArn",
|
1085
|
+
# logging_configuration: {
|
1086
|
+
# log_group_name: "LogGroupName",
|
1087
|
+
# },
|
1068
1088
|
# })
|
1069
1089
|
#
|
1070
1090
|
# @example Response structure
|
@@ -1148,6 +1168,9 @@ module Aws::Imagebuilder
|
|
1148
1168
|
# The name or Amazon Resource Name (ARN) for the IAM role you create
|
1149
1169
|
# that grants Image Builder access to perform workflow actions.
|
1150
1170
|
#
|
1171
|
+
# @option params [Types::PipelineLoggingConfiguration] :logging_configuration
|
1172
|
+
# Define logging configuration for the image build process.
|
1173
|
+
#
|
1151
1174
|
# @return [Types::CreateImagePipelineResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1152
1175
|
#
|
1153
1176
|
# * {Types::CreateImagePipelineResponse#request_id #request_id} => String
|
@@ -1172,6 +1195,9 @@ module Aws::Imagebuilder
|
|
1172
1195
|
# schedule_expression: "NonEmptyString",
|
1173
1196
|
# timezone: "Timezone",
|
1174
1197
|
# pipeline_execution_start_condition: "EXPRESSION_MATCH_ONLY", # accepts EXPRESSION_MATCH_ONLY, EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE
|
1198
|
+
# auto_disable_policy: {
|
1199
|
+
# failure_count: 1, # required
|
1200
|
+
# },
|
1175
1201
|
# },
|
1176
1202
|
# status: "DISABLED", # accepts DISABLED, ENABLED
|
1177
1203
|
# tags: {
|
@@ -1199,6 +1225,10 @@ module Aws::Imagebuilder
|
|
1199
1225
|
# },
|
1200
1226
|
# ],
|
1201
1227
|
# execution_role: "RoleNameOrArn",
|
1228
|
+
# logging_configuration: {
|
1229
|
+
# image_log_group_name: "LogGroupName",
|
1230
|
+
# pipeline_log_group_name: "LogGroupName",
|
1231
|
+
# },
|
1202
1232
|
# })
|
1203
1233
|
#
|
1204
1234
|
# @example Response structure
|
@@ -1278,6 +1308,10 @@ module Aws::Imagebuilder
|
|
1278
1308
|
# Specify additional settings and launch scripts for your build
|
1279
1309
|
# instances.
|
1280
1310
|
#
|
1311
|
+
# @option params [Hash<String,String>] :ami_tags
|
1312
|
+
# Tags that are applied to the AMI that Image Builder creates during the
|
1313
|
+
# Build phase prior to image distribution.
|
1314
|
+
#
|
1281
1315
|
# @option params [required, String] :client_token
|
1282
1316
|
# Unique, case-sensitive identifier you provide to ensure idempotency of
|
1283
1317
|
# the request. For more information, see [Ensuring idempotency][1] in
|
@@ -1341,6 +1375,9 @@ module Aws::Imagebuilder
|
|
1341
1375
|
# },
|
1342
1376
|
# user_data_override: "UserDataOverride",
|
1343
1377
|
# },
|
1378
|
+
# ami_tags: {
|
1379
|
+
# "TagKey" => "TagValue",
|
1380
|
+
# },
|
1344
1381
|
# client_token: "ClientToken", # required
|
1345
1382
|
# })
|
1346
1383
|
#
|
@@ -1666,7 +1703,14 @@ module Aws::Imagebuilder
|
|
1666
1703
|
# component `data` property. You cannot specify both properties.
|
1667
1704
|
#
|
1668
1705
|
# @option params [String] :kms_key_id
|
1669
|
-
# The
|
1706
|
+
# The Amazon Resource Name (ARN) that uniquely identifies the KMS key
|
1707
|
+
# used to encrypt this workflow resource. This can be either the Key ARN
|
1708
|
+
# or the Alias ARN. For more information, see [Key identifiers
|
1709
|
+
# (KeyId)][1] in the *Key Management Service Developer Guide*.
|
1710
|
+
#
|
1711
|
+
#
|
1712
|
+
#
|
1713
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id-key-ARN
|
1670
1714
|
#
|
1671
1715
|
# @option params [Hash<String,String>] :tags
|
1672
1716
|
# Tags that apply to the workflow resource.
|
@@ -2340,6 +2384,8 @@ module Aws::Imagebuilder
|
|
2340
2384
|
# resp.image.image_recipe.working_directory #=> String
|
2341
2385
|
# resp.image.image_recipe.additional_instance_configuration.systems_manager_agent.uninstall_after_build #=> Boolean
|
2342
2386
|
# resp.image.image_recipe.additional_instance_configuration.user_data_override #=> String
|
2387
|
+
# resp.image.image_recipe.ami_tags #=> Hash
|
2388
|
+
# resp.image.image_recipe.ami_tags["TagKey"] #=> String
|
2343
2389
|
# resp.image.container_recipe.arn #=> String
|
2344
2390
|
# resp.image.container_recipe.container_type #=> String, one of "DOCKER"
|
2345
2391
|
# resp.image.container_recipe.name #=> String
|
@@ -2492,6 +2538,7 @@ module Aws::Imagebuilder
|
|
2492
2538
|
# resp.image.workflows[0].parameters[0].value[0] #=> String
|
2493
2539
|
# resp.image.workflows[0].parallel_group #=> String
|
2494
2540
|
# resp.image.workflows[0].on_failure #=> String, one of "CONTINUE", "ABORT"
|
2541
|
+
# resp.image.logging_configuration.log_group_name #=> String
|
2495
2542
|
#
|
2496
2543
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetImage AWS API Documentation
|
2497
2544
|
#
|
@@ -2536,10 +2583,12 @@ module Aws::Imagebuilder
|
|
2536
2583
|
# resp.image_pipeline.schedule.schedule_expression #=> String
|
2537
2584
|
# resp.image_pipeline.schedule.timezone #=> String
|
2538
2585
|
# resp.image_pipeline.schedule.pipeline_execution_start_condition #=> String, one of "EXPRESSION_MATCH_ONLY", "EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE"
|
2586
|
+
# resp.image_pipeline.schedule.auto_disable_policy.failure_count #=> Integer
|
2539
2587
|
# resp.image_pipeline.status #=> String, one of "DISABLED", "ENABLED"
|
2540
2588
|
# resp.image_pipeline.date_created #=> String
|
2541
2589
|
# resp.image_pipeline.date_updated #=> String
|
2542
2590
|
# resp.image_pipeline.date_last_run #=> String
|
2591
|
+
# resp.image_pipeline.last_run_status #=> String, one of "PENDING", "CREATING", "BUILDING", "TESTING", "DISTRIBUTING", "INTEGRATING", "AVAILABLE", "CANCELLED", "FAILED", "DEPRECATED", "DELETED", "DISABLED"
|
2543
2592
|
# resp.image_pipeline.date_next_run #=> String
|
2544
2593
|
# resp.image_pipeline.tags #=> Hash
|
2545
2594
|
# resp.image_pipeline.tags["TagKey"] #=> String
|
@@ -2556,6 +2605,9 @@ module Aws::Imagebuilder
|
|
2556
2605
|
# resp.image_pipeline.workflows[0].parameters[0].value[0] #=> String
|
2557
2606
|
# resp.image_pipeline.workflows[0].parallel_group #=> String
|
2558
2607
|
# resp.image_pipeline.workflows[0].on_failure #=> String, one of "CONTINUE", "ABORT"
|
2608
|
+
# resp.image_pipeline.logging_configuration.image_log_group_name #=> String
|
2609
|
+
# resp.image_pipeline.logging_configuration.pipeline_log_group_name #=> String
|
2610
|
+
# resp.image_pipeline.consecutive_failures #=> Integer
|
2559
2611
|
#
|
2560
2612
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetImagePipeline AWS API Documentation
|
2561
2613
|
#
|
@@ -2649,6 +2701,8 @@ module Aws::Imagebuilder
|
|
2649
2701
|
# resp.image_recipe.working_directory #=> String
|
2650
2702
|
# resp.image_recipe.additional_instance_configuration.systems_manager_agent.uninstall_after_build #=> Boolean
|
2651
2703
|
# resp.image_recipe.additional_instance_configuration.user_data_override #=> String
|
2704
|
+
# resp.image_recipe.ami_tags #=> Hash
|
2705
|
+
# resp.image_recipe.ami_tags["TagKey"] #=> String
|
2652
2706
|
#
|
2653
2707
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/GetImageRecipe AWS API Documentation
|
2654
2708
|
#
|
@@ -3109,7 +3163,14 @@ module Aws::Imagebuilder
|
|
3109
3163
|
# `data` or `uri` can be used to specify the data within the component.
|
3110
3164
|
#
|
3111
3165
|
# @option params [String] :kms_key_id
|
3112
|
-
# The
|
3166
|
+
# The Amazon Resource Name (ARN) that uniquely identifies the KMS key
|
3167
|
+
# used to encrypt this component. This can be either the Key ARN or the
|
3168
|
+
# Alias ARN. For more information, see [Key identifiers (KeyId)][1] in
|
3169
|
+
# the *Key Management Service Developer Guide*.
|
3170
|
+
#
|
3171
|
+
#
|
3172
|
+
#
|
3173
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/concepts.html#key-id-key-ARN
|
3113
3174
|
#
|
3114
3175
|
# @option params [Hash<String,String>] :tags
|
3115
3176
|
# The tags of the component.
|
@@ -3204,6 +3265,9 @@ module Aws::Imagebuilder
|
|
3204
3265
|
# @option params [required, String] :uri
|
3205
3266
|
# The `uri` of the ISO disk file that's stored in Amazon S3.
|
3206
3267
|
#
|
3268
|
+
# @option params [Types::ImageLoggingConfiguration] :logging_configuration
|
3269
|
+
# Define logging configuration for the image build process.
|
3270
|
+
#
|
3207
3271
|
# @option params [Hash<String,String>] :tags
|
3208
3272
|
# Tags that are attached to image resources created from the import.
|
3209
3273
|
#
|
@@ -3235,6 +3299,9 @@ module Aws::Imagebuilder
|
|
3235
3299
|
# execution_role: "RoleNameOrArn",
|
3236
3300
|
# infrastructure_configuration_arn: "InfrastructureConfigurationArn", # required
|
3237
3301
|
# uri: "Uri", # required
|
3302
|
+
# logging_configuration: {
|
3303
|
+
# log_group_name: "LogGroupName",
|
3304
|
+
# },
|
3238
3305
|
# tags: {
|
3239
3306
|
# "TagKey" => "TagValue",
|
3240
3307
|
# },
|
@@ -3311,6 +3378,9 @@ module Aws::Imagebuilder
|
|
3311
3378
|
# process to pull in the AMI that is created from the VM source as the
|
3312
3379
|
# base image for your recipe.
|
3313
3380
|
#
|
3381
|
+
# @option params [Types::ImageLoggingConfiguration] :logging_configuration
|
3382
|
+
# Define logging configuration for the image build process.
|
3383
|
+
#
|
3314
3384
|
# @option params [Hash<String,String>] :tags
|
3315
3385
|
# Tags that are attached to the import resources.
|
3316
3386
|
#
|
@@ -3341,6 +3411,9 @@ module Aws::Imagebuilder
|
|
3341
3411
|
# platform: "Windows", # required, accepts Windows, Linux, macOS
|
3342
3412
|
# os_version: "OsVersion",
|
3343
3413
|
# vm_import_task_id: "NonEmptyString", # required
|
3414
|
+
# logging_configuration: {
|
3415
|
+
# log_group_name: "LogGroupName",
|
3416
|
+
# },
|
3344
3417
|
# tags: {
|
3345
3418
|
# "TagKey" => "TagValue",
|
3346
3419
|
# },
|
@@ -3370,7 +3443,7 @@ module Aws::Imagebuilder
|
|
3370
3443
|
# want to list.
|
3371
3444
|
#
|
3372
3445
|
# @option params [Integer] :max_results
|
3373
|
-
#
|
3446
|
+
# Specify the maximum number of items to return in a request.
|
3374
3447
|
#
|
3375
3448
|
# @option params [String] :next_token
|
3376
3449
|
# A token to specify where to start paginating. This is the nextToken
|
@@ -3467,7 +3540,7 @@ module Aws::Imagebuilder
|
|
3467
3540
|
# Returns the list of components for the specified name.
|
3468
3541
|
#
|
3469
3542
|
# @option params [Integer] :max_results
|
3470
|
-
#
|
3543
|
+
# Specify the maximum number of items to return in a request.
|
3471
3544
|
#
|
3472
3545
|
# @option params [String] :next_token
|
3473
3546
|
# A token to specify where to start paginating. This is the nextToken
|
@@ -3544,7 +3617,7 @@ module Aws::Imagebuilder
|
|
3544
3617
|
# * `platform`
|
3545
3618
|
#
|
3546
3619
|
# @option params [Integer] :max_results
|
3547
|
-
#
|
3620
|
+
# Specify the maximum number of items to return in a request.
|
3548
3621
|
#
|
3549
3622
|
# @option params [String] :next_token
|
3550
3623
|
# A token to specify where to start paginating. This is the nextToken
|
@@ -3583,6 +3656,7 @@ module Aws::Imagebuilder
|
|
3583
3656
|
# resp.container_recipe_summary_list[0].owner #=> String
|
3584
3657
|
# resp.container_recipe_summary_list[0].parent_image #=> String
|
3585
3658
|
# resp.container_recipe_summary_list[0].date_created #=> String
|
3659
|
+
# resp.container_recipe_summary_list[0].instance_image #=> String
|
3586
3660
|
# resp.container_recipe_summary_list[0].tags #=> Hash
|
3587
3661
|
# resp.container_recipe_summary_list[0].tags["TagKey"] #=> String
|
3588
3662
|
# resp.next_token #=> String
|
@@ -3602,7 +3676,7 @@ module Aws::Imagebuilder
|
|
3602
3676
|
# You can filter on `name` to streamline results.
|
3603
3677
|
#
|
3604
3678
|
# @option params [Integer] :max_results
|
3605
|
-
#
|
3679
|
+
# Specify the maximum number of items to return in a request.
|
3606
3680
|
#
|
3607
3681
|
# @option params [String] :next_token
|
3608
3682
|
# A token to specify where to start paginating. This is the nextToken
|
@@ -3673,7 +3747,7 @@ module Aws::Imagebuilder
|
|
3673
3747
|
# * `version`
|
3674
3748
|
#
|
3675
3749
|
# @option params [Integer] :max_results
|
3676
|
-
#
|
3750
|
+
# Specify the maximum number of items to return in a request.
|
3677
3751
|
#
|
3678
3752
|
# @option params [String] :next_token
|
3679
3753
|
# A token to specify where to start paginating. This is the nextToken
|
@@ -3733,6 +3807,7 @@ module Aws::Imagebuilder
|
|
3733
3807
|
# resp.image_summary_list[0].image_source #=> String, one of "AMAZON_MANAGED", "AWS_MARKETPLACE", "IMPORTED", "CUSTOM"
|
3734
3808
|
# resp.image_summary_list[0].deprecation_time #=> Time
|
3735
3809
|
# resp.image_summary_list[0].lifecycle_execution_id #=> String
|
3810
|
+
# resp.image_summary_list[0].logging_configuration.log_group_name #=> String
|
3736
3811
|
# resp.next_token #=> String
|
3737
3812
|
#
|
3738
3813
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListImageBuildVersions AWS API Documentation
|
@@ -3753,7 +3828,7 @@ module Aws::Imagebuilder
|
|
3753
3828
|
# Version ARN
|
3754
3829
|
#
|
3755
3830
|
# @option params [Integer] :max_results
|
3756
|
-
#
|
3831
|
+
# Specify the maximum number of items to return in a request.
|
3757
3832
|
#
|
3758
3833
|
# @option params [String] :next_token
|
3759
3834
|
# A token to specify where to start paginating. This is the nextToken
|
@@ -3806,7 +3881,7 @@ module Aws::Imagebuilder
|
|
3806
3881
|
# * `version`
|
3807
3882
|
#
|
3808
3883
|
# @option params [Integer] :max_results
|
3809
|
-
#
|
3884
|
+
# Specify the maximum number of items to return in a request.
|
3810
3885
|
#
|
3811
3886
|
# @option params [String] :next_token
|
3812
3887
|
# A token to specify where to start paginating. This is the nextToken
|
@@ -3866,6 +3941,7 @@ module Aws::Imagebuilder
|
|
3866
3941
|
# resp.image_summary_list[0].image_source #=> String, one of "AMAZON_MANAGED", "AWS_MARKETPLACE", "IMPORTED", "CUSTOM"
|
3867
3942
|
# resp.image_summary_list[0].deprecation_time #=> Time
|
3868
3943
|
# resp.image_summary_list[0].lifecycle_execution_id #=> String
|
3944
|
+
# resp.image_summary_list[0].logging_configuration.log_group_name #=> String
|
3869
3945
|
# resp.next_token #=> String
|
3870
3946
|
#
|
3871
3947
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListImagePipelineImages AWS API Documentation
|
@@ -3895,7 +3971,7 @@ module Aws::Imagebuilder
|
|
3895
3971
|
# * `status`
|
3896
3972
|
#
|
3897
3973
|
# @option params [Integer] :max_results
|
3898
|
-
#
|
3974
|
+
# Specify the maximum number of items to return in a request.
|
3899
3975
|
#
|
3900
3976
|
# @option params [String] :next_token
|
3901
3977
|
# A token to specify where to start paginating. This is the nextToken
|
@@ -3940,10 +4016,12 @@ module Aws::Imagebuilder
|
|
3940
4016
|
# resp.image_pipeline_list[0].schedule.schedule_expression #=> String
|
3941
4017
|
# resp.image_pipeline_list[0].schedule.timezone #=> String
|
3942
4018
|
# resp.image_pipeline_list[0].schedule.pipeline_execution_start_condition #=> String, one of "EXPRESSION_MATCH_ONLY", "EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE"
|
4019
|
+
# resp.image_pipeline_list[0].schedule.auto_disable_policy.failure_count #=> Integer
|
3943
4020
|
# resp.image_pipeline_list[0].status #=> String, one of "DISABLED", "ENABLED"
|
3944
4021
|
# resp.image_pipeline_list[0].date_created #=> String
|
3945
4022
|
# resp.image_pipeline_list[0].date_updated #=> String
|
3946
4023
|
# resp.image_pipeline_list[0].date_last_run #=> String
|
4024
|
+
# resp.image_pipeline_list[0].last_run_status #=> String, one of "PENDING", "CREATING", "BUILDING", "TESTING", "DISTRIBUTING", "INTEGRATING", "AVAILABLE", "CANCELLED", "FAILED", "DEPRECATED", "DELETED", "DISABLED"
|
3947
4025
|
# resp.image_pipeline_list[0].date_next_run #=> String
|
3948
4026
|
# resp.image_pipeline_list[0].tags #=> Hash
|
3949
4027
|
# resp.image_pipeline_list[0].tags["TagKey"] #=> String
|
@@ -3960,6 +4038,9 @@ module Aws::Imagebuilder
|
|
3960
4038
|
# resp.image_pipeline_list[0].workflows[0].parameters[0].value[0] #=> String
|
3961
4039
|
# resp.image_pipeline_list[0].workflows[0].parallel_group #=> String
|
3962
4040
|
# resp.image_pipeline_list[0].workflows[0].on_failure #=> String, one of "CONTINUE", "ABORT"
|
4041
|
+
# resp.image_pipeline_list[0].logging_configuration.image_log_group_name #=> String
|
4042
|
+
# resp.image_pipeline_list[0].logging_configuration.pipeline_log_group_name #=> String
|
4043
|
+
# resp.image_pipeline_list[0].consecutive_failures #=> Integer
|
3963
4044
|
# resp.next_token #=> String
|
3964
4045
|
#
|
3965
4046
|
# @see http://docs.aws.amazon.com/goto/WebAPI/imagebuilder-2019-12-02/ListImagePipelines AWS API Documentation
|
@@ -3974,11 +4055,10 @@ module Aws::Imagebuilder
|
|
3974
4055
|
# Returns a list of image recipes.
|
3975
4056
|
#
|
3976
4057
|
# @option params [String] :owner
|
3977
|
-
#
|
3978
|
-
# this request will only show image recipes owned by your
|
3979
|
-
#
|
3980
|
-
#
|
3981
|
-
# with you by other customers.
|
4058
|
+
# You can specify the recipe owner to filter results by that owner. By
|
4059
|
+
# default, this request will only show image recipes owned by your
|
4060
|
+
# account. To filter by a different owner, specify one of the `Valid
|
4061
|
+
# Values` that are listed for this parameter.
|
3982
4062
|
#
|
3983
4063
|
# @option params [Array<Types::Filter>] :filters
|
3984
4064
|
# Use the following filters to streamline results:
|
@@ -3990,7 +4070,7 @@ module Aws::Imagebuilder
|
|
3990
4070
|
# * `platform`
|
3991
4071
|
#
|
3992
4072
|
# @option params [Integer] :max_results
|
3993
|
-
#
|
4073
|
+
# Specify the maximum number of items to return in a request.
|
3994
4074
|
#
|
3995
4075
|
# @option params [String] :next_token
|
3996
4076
|
# A token to specify where to start paginating. This is the nextToken
|
@@ -4142,7 +4222,7 @@ module Aws::Imagebuilder
|
|
4142
4222
|
# listed.
|
4143
4223
|
#
|
4144
4224
|
# @option params [Integer] :max_results
|
4145
|
-
#
|
4225
|
+
# Specify the maximum number of items to return in a request.
|
4146
4226
|
#
|
4147
4227
|
# @option params [String] :next_token
|
4148
4228
|
# A token to specify where to start paginating. This is the nextToken
|
@@ -4259,7 +4339,7 @@ module Aws::Imagebuilder
|
|
4259
4339
|
# Requests a list of images with a specific recipe name.
|
4260
4340
|
#
|
4261
4341
|
# @option params [Integer] :max_results
|
4262
|
-
#
|
4342
|
+
# Specify the maximum number of items to return in a request.
|
4263
4343
|
#
|
4264
4344
|
# @option params [String] :next_token
|
4265
4345
|
# A token to specify where to start paginating. This is the nextToken
|
@@ -4323,7 +4403,7 @@ module Aws::Imagebuilder
|
|
4323
4403
|
# You can filter on `name` to streamline results.
|
4324
4404
|
#
|
4325
4405
|
# @option params [Integer] :max_results
|
4326
|
-
#
|
4406
|
+
# Specify the maximum number of items to return in a request.
|
4327
4407
|
#
|
4328
4408
|
# @option params [String] :next_token
|
4329
4409
|
# A token to specify where to start paginating. This is the nextToken
|
@@ -4399,7 +4479,7 @@ module Aws::Imagebuilder
|
|
4399
4479
|
# stored in ECR repositories.
|
4400
4480
|
#
|
4401
4481
|
# @option params [Integer] :max_results
|
4402
|
-
#
|
4482
|
+
# Specify the maximum number of items to return in a request.
|
4403
4483
|
#
|
4404
4484
|
# @option params [String] :next_token
|
4405
4485
|
# A token to specify where to start paginating. This is the nextToken
|
@@ -4458,7 +4538,7 @@ module Aws::Imagebuilder
|
|
4458
4538
|
# Get the lifecycle runtime history for the specified resource.
|
4459
4539
|
#
|
4460
4540
|
# @option params [Integer] :max_results
|
4461
|
-
#
|
4541
|
+
# Specify the maximum number of items to return in a request.
|
4462
4542
|
#
|
4463
4543
|
# @option params [String] :next_token
|
4464
4544
|
# A token to specify where to start paginating. This is the nextToken
|
@@ -4511,7 +4591,7 @@ module Aws::Imagebuilder
|
|
4511
4591
|
# `Status`.
|
4512
4592
|
#
|
4513
4593
|
# @option params [Integer] :max_results
|
4514
|
-
#
|
4594
|
+
# Specify the maximum number of items to return in a request.
|
4515
4595
|
#
|
4516
4596
|
# @option params [String] :next_token
|
4517
4597
|
# A token to specify where to start paginating. This is the nextToken
|
@@ -4596,7 +4676,7 @@ module Aws::Imagebuilder
|
|
4596
4676
|
# in your Amazon Web Services account.
|
4597
4677
|
#
|
4598
4678
|
# @option params [Integer] :max_results
|
4599
|
-
#
|
4679
|
+
# Specify the maximum number of items to return in a request.
|
4600
4680
|
#
|
4601
4681
|
# @option params [String] :next_token
|
4602
4682
|
# A token to specify where to start paginating. This is the nextToken
|
@@ -4644,7 +4724,7 @@ module Aws::Imagebuilder
|
|
4644
4724
|
# get a list of build versions.
|
4645
4725
|
#
|
4646
4726
|
# @option params [Integer] :max_results
|
4647
|
-
#
|
4727
|
+
# Specify the maximum number of items to return in a request.
|
4648
4728
|
#
|
4649
4729
|
# @option params [String] :next_token
|
4650
4730
|
# A token to specify where to start paginating. This is the nextToken
|
@@ -4695,7 +4775,7 @@ module Aws::Imagebuilder
|
|
4695
4775
|
# specific image build version.
|
4696
4776
|
#
|
4697
4777
|
# @option params [Integer] :max_results
|
4698
|
-
#
|
4778
|
+
# Specify the maximum number of items to return in a request.
|
4699
4779
|
#
|
4700
4780
|
# @option params [String] :next_token
|
4701
4781
|
# A token to specify where to start paginating. This is the nextToken
|
@@ -4756,7 +4836,7 @@ module Aws::Imagebuilder
|
|
4756
4836
|
# workflow that you specify in the request.
|
4757
4837
|
#
|
4758
4838
|
# @option params [Integer] :max_results
|
4759
|
-
#
|
4839
|
+
# Specify the maximum number of items to return in a request.
|
4760
4840
|
#
|
4761
4841
|
# @option params [String] :next_token
|
4762
4842
|
# A token to specify where to start paginating. This is the nextToken
|
@@ -4829,7 +4909,7 @@ module Aws::Imagebuilder
|
|
4829
4909
|
# Specify all or part of the workflow name to streamline results.
|
4830
4910
|
#
|
4831
4911
|
# @option params [Integer] :max_results
|
4832
|
-
#
|
4912
|
+
# Specify the maximum number of items to return in a request.
|
4833
4913
|
#
|
4834
4914
|
# @option params [String] :next_token
|
4835
4915
|
# A token to specify where to start paginating. This is the nextToken
|
@@ -5132,6 +5212,10 @@ module Aws::Imagebuilder
|
|
5132
5212
|
#
|
5133
5213
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
5134
5214
|
#
|
5215
|
+
# @option params [Hash<String,String>] :tags
|
5216
|
+
# Specify tags for Image Builder to apply to the image resource that's
|
5217
|
+
# created When it starts pipeline execution.
|
5218
|
+
#
|
5135
5219
|
# @return [Types::StartImagePipelineExecutionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
5136
5220
|
#
|
5137
5221
|
# * {Types::StartImagePipelineExecutionResponse#request_id #request_id} => String
|
@@ -5143,6 +5227,9 @@ module Aws::Imagebuilder
|
|
5143
5227
|
# resp = client.start_image_pipeline_execution({
|
5144
5228
|
# image_pipeline_arn: "ImagePipelineArn", # required
|
5145
5229
|
# client_token: "ClientToken", # required
|
5230
|
+
# tags: {
|
5231
|
+
# "TagKey" => "TagValue",
|
5232
|
+
# },
|
5146
5233
|
# })
|
5147
5234
|
#
|
5148
5235
|
# @example Response structure
|
@@ -5487,6 +5574,10 @@ module Aws::Imagebuilder
|
|
5487
5574
|
# @option params [Array<Types::WorkflowConfiguration>] :workflows
|
5488
5575
|
# Contains the workflows to run for the pipeline.
|
5489
5576
|
#
|
5577
|
+
# @option params [Types::PipelineLoggingConfiguration] :logging_configuration
|
5578
|
+
# Update logging configuration for the output image that's created when
|
5579
|
+
# the pipeline runs.
|
5580
|
+
#
|
5490
5581
|
# @option params [String] :execution_role
|
5491
5582
|
# The name or Amazon Resource Name (ARN) for the IAM role you create
|
5492
5583
|
# that grants Image Builder access to perform workflow actions.
|
@@ -5515,6 +5606,9 @@ module Aws::Imagebuilder
|
|
5515
5606
|
# schedule_expression: "NonEmptyString",
|
5516
5607
|
# timezone: "Timezone",
|
5517
5608
|
# pipeline_execution_start_condition: "EXPRESSION_MATCH_ONLY", # accepts EXPRESSION_MATCH_ONLY, EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE
|
5609
|
+
# auto_disable_policy: {
|
5610
|
+
# failure_count: 1, # required
|
5611
|
+
# },
|
5518
5612
|
# },
|
5519
5613
|
# status: "DISABLED", # accepts DISABLED, ENABLED
|
5520
5614
|
# client_token: "ClientToken", # required
|
@@ -5538,6 +5632,10 @@ module Aws::Imagebuilder
|
|
5538
5632
|
# on_failure: "CONTINUE", # accepts CONTINUE, ABORT
|
5539
5633
|
# },
|
5540
5634
|
# ],
|
5635
|
+
# logging_configuration: {
|
5636
|
+
# image_log_group_name: "LogGroupName",
|
5637
|
+
# pipeline_log_group_name: "LogGroupName",
|
5638
|
+
# },
|
5541
5639
|
# execution_role: "RoleNameOrArn",
|
5542
5640
|
# })
|
5543
5641
|
#
|
@@ -5827,7 +5925,7 @@ module Aws::Imagebuilder
|
|
5827
5925
|
tracer: tracer
|
5828
5926
|
)
|
5829
5927
|
context[:gem_name] = 'aws-sdk-imagebuilder'
|
5830
|
-
context[:gem_version] = '1.
|
5928
|
+
context[:gem_version] = '1.89.0'
|
5831
5929
|
Seahorse::Client::Request.new(handlers, context)
|
5832
5930
|
end
|
5833
5931
|
|