aws-sdk-codepipeline 1.68.0 → 1.69.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-codepipeline/client.rb +146 -29
- data/lib/aws-sdk-codepipeline/client_api.rb +59 -2
- data/lib/aws-sdk-codepipeline/errors.rb +16 -0
- data/lib/aws-sdk-codepipeline/types.rb +202 -85
- data/lib/aws-sdk-codepipeline.rb +1 -1
- data/sig/client.rbs +63 -15
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +43 -2
- metadata +2 -2
@@ -395,6 +395,10 @@ module Aws::CodePipeline
|
|
395
395
|
# The last update time of the action execution.
|
396
396
|
# @return [Time]
|
397
397
|
#
|
398
|
+
# @!attribute [rw] updated_by
|
399
|
+
# The ARN of the user who changed the pipeline execution details.
|
400
|
+
# @return [String]
|
401
|
+
#
|
398
402
|
# @!attribute [rw] status
|
399
403
|
# The status of the action execution. Status categories are
|
400
404
|
# `InProgress`, `Succeeded`, and `Failed`.
|
@@ -420,6 +424,7 @@ module Aws::CodePipeline
|
|
420
424
|
:action_name,
|
421
425
|
:start_time,
|
422
426
|
:last_update_time,
|
427
|
+
:updated_by,
|
423
428
|
:status,
|
424
429
|
:input,
|
425
430
|
:output)
|
@@ -433,10 +438,20 @@ module Aws::CodePipeline
|
|
433
438
|
# The pipeline execution ID used to filter action execution history.
|
434
439
|
# @return [String]
|
435
440
|
#
|
441
|
+
# @!attribute [rw] latest_in_pipeline_execution
|
442
|
+
# The latest execution in the pipeline.
|
443
|
+
#
|
444
|
+
# <note markdown="1"> Filtering on the latest execution is available for executions run on
|
445
|
+
# or after February 08, 2024.
|
446
|
+
#
|
447
|
+
# </note>
|
448
|
+
# @return [Types::LatestInPipelineExecutionFilter]
|
449
|
+
#
|
436
450
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionExecutionFilter AWS API Documentation
|
437
451
|
#
|
438
452
|
class ActionExecutionFilter < Struct.new(
|
439
|
-
:pipeline_execution_id
|
453
|
+
:pipeline_execution_id,
|
454
|
+
:latest_in_pipeline_execution)
|
440
455
|
SENSITIVE = []
|
441
456
|
include Aws::Structure
|
442
457
|
end
|
@@ -533,12 +548,17 @@ module Aws::CodePipeline
|
|
533
548
|
# action.
|
534
549
|
# @return [String]
|
535
550
|
#
|
551
|
+
# @!attribute [rw] error_details
|
552
|
+
# Represents information about an error in CodePipeline.
|
553
|
+
# @return [Types::ErrorDetails]
|
554
|
+
#
|
536
555
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ActionExecutionResult AWS API Documentation
|
537
556
|
#
|
538
557
|
class ActionExecutionResult < Struct.new(
|
539
558
|
:external_execution_id,
|
540
559
|
:external_execution_summary,
|
541
|
-
:external_execution_url
|
560
|
+
:external_execution_url,
|
561
|
+
:error_details)
|
542
562
|
SENSITIVE = []
|
543
563
|
include Aws::Structure
|
544
564
|
end
|
@@ -1262,6 +1282,19 @@ module Aws::CodePipeline
|
|
1262
1282
|
include Aws::Structure
|
1263
1283
|
end
|
1264
1284
|
|
1285
|
+
# The pipeline has reached the limit for concurrent pipeline executions.
|
1286
|
+
#
|
1287
|
+
# @!attribute [rw] message
|
1288
|
+
# @return [String]
|
1289
|
+
#
|
1290
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ConcurrentPipelineExecutionsLimitExceededException AWS API Documentation
|
1291
|
+
#
|
1292
|
+
class ConcurrentPipelineExecutionsLimitExceededException < Struct.new(
|
1293
|
+
:message)
|
1294
|
+
SENSITIVE = []
|
1295
|
+
include Aws::Structure
|
1296
|
+
end
|
1297
|
+
|
1265
1298
|
# Your request cannot be handled because the pipeline is busy handling
|
1266
1299
|
# ongoing activities. Try again later.
|
1267
1300
|
#
|
@@ -1989,6 +2022,28 @@ module Aws::CodePipeline
|
|
1989
2022
|
include Aws::Structure
|
1990
2023
|
end
|
1991
2024
|
|
2025
|
+
# The Git repository branches specified as filter criteria to start the
|
2026
|
+
# pipeline.
|
2027
|
+
#
|
2028
|
+
# @!attribute [rw] includes
|
2029
|
+
# The list of patterns of Git branches that, when a commit is pushed,
|
2030
|
+
# are to be included as criteria that starts the pipeline.
|
2031
|
+
# @return [Array<String>]
|
2032
|
+
#
|
2033
|
+
# @!attribute [rw] excludes
|
2034
|
+
# The list of patterns of Git branches that, when a commit is pushed,
|
2035
|
+
# are to be excluded from starting the pipeline.
|
2036
|
+
# @return [Array<String>]
|
2037
|
+
#
|
2038
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GitBranchFilterCriteria AWS API Documentation
|
2039
|
+
#
|
2040
|
+
class GitBranchFilterCriteria < Struct.new(
|
2041
|
+
:includes,
|
2042
|
+
:excludes)
|
2043
|
+
SENSITIVE = []
|
2044
|
+
include Aws::Structure
|
2045
|
+
end
|
2046
|
+
|
1992
2047
|
# A type of trigger configuration for Git-based source actions.
|
1993
2048
|
#
|
1994
2049
|
# <note markdown="1"> You can specify the Git configuration trigger type for all third-party
|
@@ -1997,17 +2052,6 @@ module Aws::CodePipeline
|
|
1997
2052
|
#
|
1998
2053
|
# </note>
|
1999
2054
|
#
|
2000
|
-
# <note markdown="1"> V2 type pipelines, along with triggers on Git tags and pipeline-level
|
2001
|
-
# variables, are not currently supported for CloudFormation and CDK
|
2002
|
-
# resources in CodePipeline. For more information about V2 type
|
2003
|
-
# pipelines, see [Pipeline types][1] in the *CodePipeline User Guide*.
|
2004
|
-
#
|
2005
|
-
# </note>
|
2006
|
-
#
|
2007
|
-
#
|
2008
|
-
#
|
2009
|
-
# [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types.html
|
2010
|
-
#
|
2011
2055
|
# @!attribute [rw] source_action_name
|
2012
2056
|
# The name of the pipeline source action where the trigger
|
2013
2057
|
# configuration, such as Git tags, is specified. The trigger
|
@@ -2022,17 +2066,70 @@ module Aws::CodePipeline
|
|
2022
2066
|
# @!attribute [rw] push
|
2023
2067
|
# The field where the repository event that will start the pipeline,
|
2024
2068
|
# such as pushing Git tags, is specified with details.
|
2025
|
-
#
|
2026
|
-
# <note markdown="1"> Git tags is the only supported event type.
|
2027
|
-
#
|
2028
|
-
# </note>
|
2029
2069
|
# @return [Array<Types::GitPushFilter>]
|
2030
2070
|
#
|
2071
|
+
# @!attribute [rw] pull_request
|
2072
|
+
# The field where the repository event that will start the pipeline is
|
2073
|
+
# specified as pull requests.
|
2074
|
+
# @return [Array<Types::GitPullRequestFilter>]
|
2075
|
+
#
|
2031
2076
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GitConfiguration AWS API Documentation
|
2032
2077
|
#
|
2033
2078
|
class GitConfiguration < Struct.new(
|
2034
2079
|
:source_action_name,
|
2035
|
-
:push
|
2080
|
+
:push,
|
2081
|
+
:pull_request)
|
2082
|
+
SENSITIVE = []
|
2083
|
+
include Aws::Structure
|
2084
|
+
end
|
2085
|
+
|
2086
|
+
# The Git repository file paths specified as filter criteria to start
|
2087
|
+
# the pipeline.
|
2088
|
+
#
|
2089
|
+
# @!attribute [rw] includes
|
2090
|
+
# The list of patterns of Git repository file paths that, when a
|
2091
|
+
# commit is pushed, are to be included as criteria that starts the
|
2092
|
+
# pipeline.
|
2093
|
+
# @return [Array<String>]
|
2094
|
+
#
|
2095
|
+
# @!attribute [rw] excludes
|
2096
|
+
# The list of patterns of Git repository file paths that, when a
|
2097
|
+
# commit is pushed, are to be excluded from starting the pipeline.
|
2098
|
+
# @return [Array<String>]
|
2099
|
+
#
|
2100
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GitFilePathFilterCriteria AWS API Documentation
|
2101
|
+
#
|
2102
|
+
class GitFilePathFilterCriteria < Struct.new(
|
2103
|
+
:includes,
|
2104
|
+
:excludes)
|
2105
|
+
SENSITIVE = []
|
2106
|
+
include Aws::Structure
|
2107
|
+
end
|
2108
|
+
|
2109
|
+
# The event criteria for the pull request trigger configuration, such as
|
2110
|
+
# the lists of branches or file paths to include and exclude.
|
2111
|
+
#
|
2112
|
+
# @!attribute [rw] events
|
2113
|
+
# The field that specifies which pull request events to filter on
|
2114
|
+
# (opened, updated, closed) for the trigger configuration.
|
2115
|
+
# @return [Array<String>]
|
2116
|
+
#
|
2117
|
+
# @!attribute [rw] branches
|
2118
|
+
# The field that specifies to filter on branches for the pull request
|
2119
|
+
# trigger configuration.
|
2120
|
+
# @return [Types::GitBranchFilterCriteria]
|
2121
|
+
#
|
2122
|
+
# @!attribute [rw] file_paths
|
2123
|
+
# The field that specifies to filter on file paths for the pull
|
2124
|
+
# request trigger configuration.
|
2125
|
+
# @return [Types::GitFilePathFilterCriteria]
|
2126
|
+
#
|
2127
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GitPullRequestFilter AWS API Documentation
|
2128
|
+
#
|
2129
|
+
class GitPullRequestFilter < Struct.new(
|
2130
|
+
:events,
|
2131
|
+
:branches,
|
2132
|
+
:file_paths)
|
2036
2133
|
SENSITIVE = []
|
2037
2134
|
include Aws::Structure
|
2038
2135
|
end
|
@@ -2046,10 +2143,22 @@ module Aws::CodePipeline
|
|
2046
2143
|
# configuration.
|
2047
2144
|
# @return [Types::GitTagFilterCriteria]
|
2048
2145
|
#
|
2146
|
+
# @!attribute [rw] branches
|
2147
|
+
# The field that specifies to filter on branches for the push trigger
|
2148
|
+
# configuration.
|
2149
|
+
# @return [Types::GitBranchFilterCriteria]
|
2150
|
+
#
|
2151
|
+
# @!attribute [rw] file_paths
|
2152
|
+
# The field that specifies to filter on file paths for the push
|
2153
|
+
# trigger configuration.
|
2154
|
+
# @return [Types::GitFilePathFilterCriteria]
|
2155
|
+
#
|
2049
2156
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GitPushFilter AWS API Documentation
|
2050
2157
|
#
|
2051
2158
|
class GitPushFilter < Struct.new(
|
2052
|
-
:tags
|
2159
|
+
:tags,
|
2160
|
+
:branches,
|
2161
|
+
:file_paths)
|
2053
2162
|
SENSITIVE = []
|
2054
2163
|
include Aws::Structure
|
2055
2164
|
end
|
@@ -2364,6 +2473,36 @@ module Aws::CodePipeline
|
|
2364
2473
|
include Aws::Structure
|
2365
2474
|
end
|
2366
2475
|
|
2476
|
+
# The field that specifies to filter on the latest execution in the
|
2477
|
+
# pipeline.
|
2478
|
+
#
|
2479
|
+
# <note markdown="1"> Filtering on the latest execution is available for executions run on
|
2480
|
+
# or after February 08, 2024.
|
2481
|
+
#
|
2482
|
+
# </note>
|
2483
|
+
#
|
2484
|
+
# @!attribute [rw] pipeline_execution_id
|
2485
|
+
# The execution ID for the latest execution in the pipeline.
|
2486
|
+
# @return [String]
|
2487
|
+
#
|
2488
|
+
# @!attribute [rw] start_time_range
|
2489
|
+
# The start time to filter on for the latest execution in the
|
2490
|
+
# pipeline. Valid options:
|
2491
|
+
#
|
2492
|
+
# * All
|
2493
|
+
#
|
2494
|
+
# * Latest
|
2495
|
+
# @return [String]
|
2496
|
+
#
|
2497
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/LatestInPipelineExecutionFilter AWS API Documentation
|
2498
|
+
#
|
2499
|
+
class LatestInPipelineExecutionFilter < Struct.new(
|
2500
|
+
:pipeline_execution_id,
|
2501
|
+
:start_time_range)
|
2502
|
+
SENSITIVE = []
|
2503
|
+
include Aws::Structure
|
2504
|
+
end
|
2505
|
+
|
2367
2506
|
# The number of pipelines associated with the Amazon Web Services
|
2368
2507
|
# account has exceeded the limit allowed for the account.
|
2369
2508
|
#
|
@@ -2843,6 +2982,11 @@ module Aws::CodePipeline
|
|
2843
2982
|
# updated.
|
2844
2983
|
# @return [Integer]
|
2845
2984
|
#
|
2985
|
+
# @!attribute [rw] execution_mode
|
2986
|
+
# The method that the pipeline will use to handle multiple executions.
|
2987
|
+
# The default mode is SUPERSEDED.
|
2988
|
+
# @return [String]
|
2989
|
+
#
|
2846
2990
|
# @!attribute [rw] pipeline_type
|
2847
2991
|
# CodePipeline provides the following pipeline types, which differ in
|
2848
2992
|
# characteristics and price, so that you can tailor your pipeline
|
@@ -2865,21 +3009,18 @@ module Aws::CodePipeline
|
|
2865
3009
|
# For information about which type of pipeline to choose, see [What
|
2866
3010
|
# type of pipeline is right for me?][2].
|
2867
3011
|
#
|
2868
|
-
# <note markdown="1"> V2 type pipelines, along with triggers on Git tags and
|
2869
|
-
# pipeline-level variables, are not currently supported for
|
2870
|
-
# CloudFormation and CDK resources in CodePipeline. For more
|
2871
|
-
# information about V2 type pipelines, see [Pipeline types][3] in the
|
2872
|
-
# *CodePipeline User Guide*.
|
2873
3012
|
#
|
2874
|
-
# </note>
|
2875
3013
|
#
|
2876
|
-
#
|
2877
|
-
#
|
2878
|
-
# [1]: https://aws.amazon.com/codepipeline/pricing/
|
3014
|
+
# [1]: http://aws.amazon.com/codepipeline/pricing/
|
2879
3015
|
# [2]: https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types-planning.html
|
2880
|
-
# [3]: https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types.html
|
2881
3016
|
# @return [String]
|
2882
3017
|
#
|
3018
|
+
# @!attribute [rw] variables
|
3019
|
+
# A list that defines the pipeline variables for a pipeline resource.
|
3020
|
+
# Variable names can have alphanumeric and underscore characters, and
|
3021
|
+
# the values must match `[A-Za-z0-9@\-_]+`.
|
3022
|
+
# @return [Array<Types::PipelineVariableDeclaration>]
|
3023
|
+
#
|
2883
3024
|
# @!attribute [rw] triggers
|
2884
3025
|
# The trigger configuration specifying a type of event, such as Git
|
2885
3026
|
# tags, that starts the pipeline.
|
@@ -2890,12 +3031,6 @@ module Aws::CodePipeline
|
|
2890
3031
|
# </note>
|
2891
3032
|
# @return [Array<Types::PipelineTriggerDeclaration>]
|
2892
3033
|
#
|
2893
|
-
# @!attribute [rw] variables
|
2894
|
-
# A list that defines the pipeline variables for a pipeline resource.
|
2895
|
-
# Variable names can have alphanumeric and underscore characters, and
|
2896
|
-
# the values must match `[A-Za-z0-9@\-_]+`.
|
2897
|
-
# @return [Array<Types::PipelineVariableDeclaration>]
|
2898
|
-
#
|
2899
3034
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PipelineDeclaration AWS API Documentation
|
2900
3035
|
#
|
2901
3036
|
class PipelineDeclaration < Struct.new(
|
@@ -2905,9 +3040,10 @@ module Aws::CodePipeline
|
|
2905
3040
|
:artifact_stores,
|
2906
3041
|
:stages,
|
2907
3042
|
:version,
|
3043
|
+
:execution_mode,
|
2908
3044
|
:pipeline_type,
|
2909
|
-
:
|
2910
|
-
:
|
3045
|
+
:variables,
|
3046
|
+
:triggers)
|
2911
3047
|
SENSITIVE = []
|
2912
3048
|
include Aws::Structure
|
2913
3049
|
end
|
@@ -2968,13 +3104,18 @@ module Aws::CodePipeline
|
|
2968
3104
|
# execution.
|
2969
3105
|
# @return [Array<Types::ArtifactRevision>]
|
2970
3106
|
#
|
3107
|
+
# @!attribute [rw] variables
|
3108
|
+
# A list of pipeline variables used for the pipeline execution.
|
3109
|
+
# @return [Array<Types::ResolvedPipelineVariable>]
|
3110
|
+
#
|
2971
3111
|
# @!attribute [rw] trigger
|
2972
3112
|
# The interaction or event that started a pipeline execution.
|
2973
3113
|
# @return [Types::ExecutionTrigger]
|
2974
3114
|
#
|
2975
|
-
# @!attribute [rw]
|
2976
|
-
#
|
2977
|
-
#
|
3115
|
+
# @!attribute [rw] execution_mode
|
3116
|
+
# The method that the pipeline will use to handle multiple executions.
|
3117
|
+
# The default mode is SUPERSEDED.
|
3118
|
+
# @return [String]
|
2978
3119
|
#
|
2979
3120
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PipelineExecution AWS API Documentation
|
2980
3121
|
#
|
@@ -2985,8 +3126,9 @@ module Aws::CodePipeline
|
|
2985
3126
|
:status,
|
2986
3127
|
:status_summary,
|
2987
3128
|
:artifact_revisions,
|
3129
|
+
:variables,
|
2988
3130
|
:trigger,
|
2989
|
-
:
|
3131
|
+
:execution_mode)
|
2990
3132
|
SENSITIVE = []
|
2991
3133
|
include Aws::Structure
|
2992
3134
|
end
|
@@ -3070,6 +3212,11 @@ module Aws::CodePipeline
|
|
3070
3212
|
# The interaction that stopped a pipeline execution.
|
3071
3213
|
# @return [Types::StopExecutionTrigger]
|
3072
3214
|
#
|
3215
|
+
# @!attribute [rw] execution_mode
|
3216
|
+
# The method that the pipeline will use to handle multiple executions.
|
3217
|
+
# The default mode is SUPERSEDED.
|
3218
|
+
# @return [String]
|
3219
|
+
#
|
3073
3220
|
# @see http://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PipelineExecutionSummary AWS API Documentation
|
3074
3221
|
#
|
3075
3222
|
class PipelineExecutionSummary < Struct.new(
|
@@ -3079,7 +3226,8 @@ module Aws::CodePipeline
|
|
3079
3226
|
:last_update_time,
|
3080
3227
|
:source_revisions,
|
3081
3228
|
:trigger,
|
3082
|
-
:stop_trigger
|
3229
|
+
:stop_trigger,
|
3230
|
+
:execution_mode)
|
3083
3231
|
SENSITIVE = []
|
3084
3232
|
include Aws::Structure
|
3085
3233
|
end
|
@@ -3168,19 +3316,15 @@ module Aws::CodePipeline
|
|
3168
3316
|
# For information about which type of pipeline to choose, see [What
|
3169
3317
|
# type of pipeline is right for me?][2].
|
3170
3318
|
#
|
3171
|
-
# <note markdown="1"> V2 type pipelines, along with triggers on Git tags and
|
3172
|
-
# pipeline-level variables, are not currently supported for
|
3173
|
-
# CloudFormation and CDK resources in CodePipeline. For more
|
3174
|
-
# information about V2 type pipelines, see [Pipeline types][3] in the
|
3175
|
-
# *CodePipeline User Guide*.
|
3176
|
-
#
|
3177
|
-
# </note>
|
3178
3319
|
#
|
3179
3320
|
#
|
3180
|
-
#
|
3181
|
-
# [1]: https://aws.amazon.com/codepipeline/pricing/
|
3321
|
+
# [1]: http://aws.amazon.com/codepipeline/pricing/
|
3182
3322
|
# [2]: https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types-planning.html
|
3183
|
-
# [
|
3323
|
+
# @return [String]
|
3324
|
+
#
|
3325
|
+
# @!attribute [rw] execution_mode
|
3326
|
+
# The method that the pipeline will use to handle multiple executions.
|
3327
|
+
# The default mode is SUPERSEDED.
|
3184
3328
|
# @return [String]
|
3185
3329
|
#
|
3186
3330
|
# @!attribute [rw] created
|
@@ -3198,6 +3342,7 @@ module Aws::CodePipeline
|
|
3198
3342
|
:name,
|
3199
3343
|
:version,
|
3200
3344
|
:pipeline_type,
|
3345
|
+
:execution_mode,
|
3201
3346
|
:created,
|
3202
3347
|
:updated)
|
3203
3348
|
SENSITIVE = []
|
@@ -3217,17 +3362,6 @@ module Aws::CodePipeline
|
|
3217
3362
|
#
|
3218
3363
|
# </note>
|
3219
3364
|
#
|
3220
|
-
# <note markdown="1"> V2 type pipelines, along with triggers on Git tags and pipeline-level
|
3221
|
-
# variables, are not currently supported for CloudFormation and CDK
|
3222
|
-
# resources in CodePipeline. For more information about V2 type
|
3223
|
-
# pipelines, see [Pipeline types][1] in the *CodePipeline User Guide*.
|
3224
|
-
#
|
3225
|
-
# </note>
|
3226
|
-
#
|
3227
|
-
#
|
3228
|
-
#
|
3229
|
-
# [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types.html
|
3230
|
-
#
|
3231
3365
|
# @!attribute [rw] provider_type
|
3232
3366
|
# The source provider for the event, such as connections configured
|
3233
3367
|
# for a repository with Git tags, for the specified trigger
|
@@ -3250,17 +3384,6 @@ module Aws::CodePipeline
|
|
3250
3384
|
|
3251
3385
|
# A pipeline-level variable used for a pipeline execution.
|
3252
3386
|
#
|
3253
|
-
# <note markdown="1"> V2 type pipelines, along with triggers on Git tags and pipeline-level
|
3254
|
-
# variables, are not currently supported for CloudFormation and CDK
|
3255
|
-
# resources in CodePipeline. For more information about V2 type
|
3256
|
-
# pipelines, see [Pipeline types][1] in the *CodePipeline User Guide*.
|
3257
|
-
#
|
3258
|
-
# </note>
|
3259
|
-
#
|
3260
|
-
#
|
3261
|
-
#
|
3262
|
-
# [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types.html
|
3263
|
-
#
|
3264
3387
|
# @!attribute [rw] name
|
3265
3388
|
# The name of a pipeline-level variable.
|
3266
3389
|
# @return [String]
|
@@ -3280,17 +3403,6 @@ module Aws::CodePipeline
|
|
3280
3403
|
|
3281
3404
|
# A variable declared at the pipeline level.
|
3282
3405
|
#
|
3283
|
-
# <note markdown="1"> V2 type pipelines, along with triggers on Git tags and pipeline-level
|
3284
|
-
# variables, are not currently supported for CloudFormation and CDK
|
3285
|
-
# resources in CodePipeline. For more information about V2 type
|
3286
|
-
# pipelines, see [Pipeline types][1] in the *CodePipeline User Guide*.
|
3287
|
-
#
|
3288
|
-
# </note>
|
3289
|
-
#
|
3290
|
-
#
|
3291
|
-
#
|
3292
|
-
# [1]: https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types.html
|
3293
|
-
#
|
3294
3406
|
# @!attribute [rw] name
|
3295
3407
|
# The name of a pipeline-level variable.
|
3296
3408
|
# @return [String]
|
@@ -3962,6 +4074,10 @@ module Aws::CodePipeline
|
|
3962
4074
|
# Represents information about the run of a stage.
|
3963
4075
|
# @return [Types::StageExecution]
|
3964
4076
|
#
|
4077
|
+
# @!attribute [rw] inbound_executions
|
4078
|
+
# The inbound executions for a stage.
|
4079
|
+
# @return [Array<Types::StageExecution>]
|
4080
|
+
#
|
3965
4081
|
# @!attribute [rw] inbound_transition_state
|
3966
4082
|
# The state of the inbound transition, which is either enabled or
|
3967
4083
|
# disabled.
|
@@ -3981,6 +4097,7 @@ module Aws::CodePipeline
|
|
3981
4097
|
class StageState < Struct.new(
|
3982
4098
|
:stage_name,
|
3983
4099
|
:inbound_execution,
|
4100
|
+
:inbound_executions,
|
3984
4101
|
:inbound_transition_state,
|
3985
4102
|
:action_states,
|
3986
4103
|
:latest_execution)
|
data/lib/aws-sdk-codepipeline.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -204,7 +204,15 @@ module Aws
|
|
204
204
|
},
|
205
205
|
],
|
206
206
|
version: ::Integer?,
|
207
|
+
execution_mode: ("QUEUED" | "SUPERSEDED" | "PARALLEL")?,
|
207
208
|
pipeline_type: ("V1" | "V2")?,
|
209
|
+
variables: Array[
|
210
|
+
{
|
211
|
+
name: ::String,
|
212
|
+
default_value: ::String?,
|
213
|
+
description: ::String?
|
214
|
+
},
|
215
|
+
]?,
|
208
216
|
triggers: Array[
|
209
217
|
{
|
210
218
|
provider_type: ("CodeStarSourceConnection"),
|
@@ -215,18 +223,32 @@ module Aws
|
|
215
223
|
tags: {
|
216
224
|
includes: Array[::String]?,
|
217
225
|
excludes: Array[::String]?
|
226
|
+
}?,
|
227
|
+
branches: {
|
228
|
+
includes: Array[::String]?,
|
229
|
+
excludes: Array[::String]?
|
230
|
+
}?,
|
231
|
+
file_paths: {
|
232
|
+
includes: Array[::String]?,
|
233
|
+
excludes: Array[::String]?
|
234
|
+
}?
|
235
|
+
},
|
236
|
+
]?,
|
237
|
+
pull_request: Array[
|
238
|
+
{
|
239
|
+
events: Array[("OPEN" | "UPDATED" | "CLOSED")]?,
|
240
|
+
branches: {
|
241
|
+
includes: Array[::String]?,
|
242
|
+
excludes: Array[::String]?
|
243
|
+
}?,
|
244
|
+
file_paths: {
|
245
|
+
includes: Array[::String]?,
|
246
|
+
excludes: Array[::String]?
|
218
247
|
}?
|
219
248
|
},
|
220
249
|
]?
|
221
250
|
}
|
222
251
|
},
|
223
|
-
]?,
|
224
|
-
variables: Array[
|
225
|
-
{
|
226
|
-
name: ::String,
|
227
|
-
default_value: ::String?,
|
228
|
-
description: ::String?
|
229
|
-
},
|
230
252
|
]?
|
231
253
|
},
|
232
254
|
?tags: Array[
|
@@ -367,7 +389,11 @@ module Aws
|
|
367
389
|
def list_action_executions: (
|
368
390
|
pipeline_name: ::String,
|
369
391
|
?filter: {
|
370
|
-
pipeline_execution_id: ::String
|
392
|
+
pipeline_execution_id: ::String?,
|
393
|
+
latest_in_pipeline_execution: {
|
394
|
+
pipeline_execution_id: ::String,
|
395
|
+
start_time_range: ("Latest" | "All")
|
396
|
+
}?
|
371
397
|
},
|
372
398
|
?max_results: ::Integer,
|
373
399
|
?next_token: ::String
|
@@ -799,7 +825,15 @@ module Aws
|
|
799
825
|
},
|
800
826
|
],
|
801
827
|
version: ::Integer?,
|
828
|
+
execution_mode: ("QUEUED" | "SUPERSEDED" | "PARALLEL")?,
|
802
829
|
pipeline_type: ("V1" | "V2")?,
|
830
|
+
variables: Array[
|
831
|
+
{
|
832
|
+
name: ::String,
|
833
|
+
default_value: ::String?,
|
834
|
+
description: ::String?
|
835
|
+
},
|
836
|
+
]?,
|
803
837
|
triggers: Array[
|
804
838
|
{
|
805
839
|
provider_type: ("CodeStarSourceConnection"),
|
@@ -810,18 +844,32 @@ module Aws
|
|
810
844
|
tags: {
|
811
845
|
includes: Array[::String]?,
|
812
846
|
excludes: Array[::String]?
|
847
|
+
}?,
|
848
|
+
branches: {
|
849
|
+
includes: Array[::String]?,
|
850
|
+
excludes: Array[::String]?
|
851
|
+
}?,
|
852
|
+
file_paths: {
|
853
|
+
includes: Array[::String]?,
|
854
|
+
excludes: Array[::String]?
|
855
|
+
}?
|
856
|
+
},
|
857
|
+
]?,
|
858
|
+
pull_request: Array[
|
859
|
+
{
|
860
|
+
events: Array[("OPEN" | "UPDATED" | "CLOSED")]?,
|
861
|
+
branches: {
|
862
|
+
includes: Array[::String]?,
|
863
|
+
excludes: Array[::String]?
|
864
|
+
}?,
|
865
|
+
file_paths: {
|
866
|
+
includes: Array[::String]?,
|
867
|
+
excludes: Array[::String]?
|
813
868
|
}?
|
814
869
|
},
|
815
870
|
]?
|
816
871
|
}
|
817
872
|
},
|
818
|
-
]?,
|
819
|
-
variables: Array[
|
820
|
-
{
|
821
|
-
name: ::String,
|
822
|
-
default_value: ::String?,
|
823
|
-
description: ::String?
|
824
|
-
},
|
825
873
|
]?
|
826
874
|
}
|
827
875
|
) -> _UpdatePipelineResponseSuccess
|
data/sig/errors.rbs
CHANGED
@@ -22,6 +22,9 @@ module Aws
|
|
22
22
|
class ConcurrentModificationException < ::Aws::Errors::ServiceError
|
23
23
|
def message: () -> ::String
|
24
24
|
end
|
25
|
+
class ConcurrentPipelineExecutionsLimitExceededException < ::Aws::Errors::ServiceError
|
26
|
+
def message: () -> ::String
|
27
|
+
end
|
25
28
|
class ConflictException < ::Aws::Errors::ServiceError
|
26
29
|
def message: () -> ::String
|
27
30
|
end
|