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
data/sig/types.rbs
CHANGED
@@ -95,6 +95,7 @@ module Aws::CodePipeline
|
|
95
95
|
attr_accessor action_name: ::String
|
96
96
|
attr_accessor start_time: ::Time
|
97
97
|
attr_accessor last_update_time: ::Time
|
98
|
+
attr_accessor updated_by: ::String
|
98
99
|
attr_accessor status: ("InProgress" | "Abandoned" | "Succeeded" | "Failed")
|
99
100
|
attr_accessor input: Types::ActionExecutionInput
|
100
101
|
attr_accessor output: Types::ActionExecutionOutput
|
@@ -103,6 +104,7 @@ module Aws::CodePipeline
|
|
103
104
|
|
104
105
|
class ActionExecutionFilter
|
105
106
|
attr_accessor pipeline_execution_id: ::String
|
107
|
+
attr_accessor latest_in_pipeline_execution: Types::LatestInPipelineExecutionFilter
|
106
108
|
SENSITIVE: []
|
107
109
|
end
|
108
110
|
|
@@ -128,6 +130,7 @@ module Aws::CodePipeline
|
|
128
130
|
attr_accessor external_execution_id: ::String
|
129
131
|
attr_accessor external_execution_summary: ::String
|
130
132
|
attr_accessor external_execution_url: ::String
|
133
|
+
attr_accessor error_details: Types::ErrorDetails
|
131
134
|
SENSITIVE: []
|
132
135
|
end
|
133
136
|
|
@@ -300,6 +303,11 @@ module Aws::CodePipeline
|
|
300
303
|
SENSITIVE: []
|
301
304
|
end
|
302
305
|
|
306
|
+
class ConcurrentPipelineExecutionsLimitExceededException
|
307
|
+
attr_accessor message: ::String
|
308
|
+
SENSITIVE: []
|
309
|
+
end
|
310
|
+
|
303
311
|
class ConflictException
|
304
312
|
attr_accessor message: ::String
|
305
313
|
SENSITIVE: []
|
@@ -500,14 +508,36 @@ module Aws::CodePipeline
|
|
500
508
|
SENSITIVE: []
|
501
509
|
end
|
502
510
|
|
511
|
+
class GitBranchFilterCriteria
|
512
|
+
attr_accessor includes: ::Array[::String]
|
513
|
+
attr_accessor excludes: ::Array[::String]
|
514
|
+
SENSITIVE: []
|
515
|
+
end
|
516
|
+
|
503
517
|
class GitConfiguration
|
504
518
|
attr_accessor source_action_name: ::String
|
505
519
|
attr_accessor push: ::Array[Types::GitPushFilter]
|
520
|
+
attr_accessor pull_request: ::Array[Types::GitPullRequestFilter]
|
521
|
+
SENSITIVE: []
|
522
|
+
end
|
523
|
+
|
524
|
+
class GitFilePathFilterCriteria
|
525
|
+
attr_accessor includes: ::Array[::String]
|
526
|
+
attr_accessor excludes: ::Array[::String]
|
527
|
+
SENSITIVE: []
|
528
|
+
end
|
529
|
+
|
530
|
+
class GitPullRequestFilter
|
531
|
+
attr_accessor events: ::Array[("OPEN" | "UPDATED" | "CLOSED")]
|
532
|
+
attr_accessor branches: Types::GitBranchFilterCriteria
|
533
|
+
attr_accessor file_paths: Types::GitFilePathFilterCriteria
|
506
534
|
SENSITIVE: []
|
507
535
|
end
|
508
536
|
|
509
537
|
class GitPushFilter
|
510
538
|
attr_accessor tags: Types::GitTagFilterCriteria
|
539
|
+
attr_accessor branches: Types::GitBranchFilterCriteria
|
540
|
+
attr_accessor file_paths: Types::GitFilePathFilterCriteria
|
511
541
|
SENSITIVE: []
|
512
542
|
end
|
513
543
|
|
@@ -609,6 +639,12 @@ module Aws::CodePipeline
|
|
609
639
|
SENSITIVE: []
|
610
640
|
end
|
611
641
|
|
642
|
+
class LatestInPipelineExecutionFilter
|
643
|
+
attr_accessor pipeline_execution_id: ::String
|
644
|
+
attr_accessor start_time_range: ("Latest" | "All")
|
645
|
+
SENSITIVE: []
|
646
|
+
end
|
647
|
+
|
612
648
|
class LimitExceededException < Aws::EmptyStructure
|
613
649
|
end
|
614
650
|
|
@@ -729,9 +765,10 @@ module Aws::CodePipeline
|
|
729
765
|
attr_accessor artifact_stores: ::Hash[::String, Types::ArtifactStore]
|
730
766
|
attr_accessor stages: ::Array[Types::StageDeclaration]
|
731
767
|
attr_accessor version: ::Integer
|
768
|
+
attr_accessor execution_mode: ("QUEUED" | "SUPERSEDED" | "PARALLEL")
|
732
769
|
attr_accessor pipeline_type: ("V1" | "V2")
|
733
|
-
attr_accessor triggers: ::Array[Types::PipelineTriggerDeclaration]
|
734
770
|
attr_accessor variables: ::Array[Types::PipelineVariableDeclaration]
|
771
|
+
attr_accessor triggers: ::Array[Types::PipelineTriggerDeclaration]
|
735
772
|
SENSITIVE: []
|
736
773
|
end
|
737
774
|
|
@@ -742,8 +779,9 @@ module Aws::CodePipeline
|
|
742
779
|
attr_accessor status: ("Cancelled" | "InProgress" | "Stopped" | "Stopping" | "Succeeded" | "Superseded" | "Failed")
|
743
780
|
attr_accessor status_summary: ::String
|
744
781
|
attr_accessor artifact_revisions: ::Array[Types::ArtifactRevision]
|
745
|
-
attr_accessor trigger: Types::ExecutionTrigger
|
746
782
|
attr_accessor variables: ::Array[Types::ResolvedPipelineVariable]
|
783
|
+
attr_accessor trigger: Types::ExecutionTrigger
|
784
|
+
attr_accessor execution_mode: ("QUEUED" | "SUPERSEDED" | "PARALLEL")
|
747
785
|
SENSITIVE: []
|
748
786
|
end
|
749
787
|
|
@@ -763,6 +801,7 @@ module Aws::CodePipeline
|
|
763
801
|
attr_accessor source_revisions: ::Array[Types::SourceRevision]
|
764
802
|
attr_accessor trigger: Types::ExecutionTrigger
|
765
803
|
attr_accessor stop_trigger: Types::StopExecutionTrigger
|
804
|
+
attr_accessor execution_mode: ("QUEUED" | "SUPERSEDED" | "PARALLEL")
|
766
805
|
SENSITIVE: []
|
767
806
|
end
|
768
807
|
|
@@ -784,6 +823,7 @@ module Aws::CodePipeline
|
|
784
823
|
attr_accessor name: ::String
|
785
824
|
attr_accessor version: ::Integer
|
786
825
|
attr_accessor pipeline_type: ("V1" | "V2")
|
826
|
+
attr_accessor execution_mode: ("QUEUED" | "SUPERSEDED" | "PARALLEL")
|
787
827
|
attr_accessor created: ::Time
|
788
828
|
attr_accessor updated: ::Time
|
789
829
|
SENSITIVE: []
|
@@ -993,6 +1033,7 @@ module Aws::CodePipeline
|
|
993
1033
|
class StageState
|
994
1034
|
attr_accessor stage_name: ::String
|
995
1035
|
attr_accessor inbound_execution: Types::StageExecution
|
1036
|
+
attr_accessor inbound_executions: ::Array[Types::StageExecution]
|
996
1037
|
attr_accessor inbound_transition_state: Types::TransitionState
|
997
1038
|
attr_accessor action_states: ::Array[Types::ActionState]
|
998
1039
|
attr_accessor latest_execution: Types::StageExecution
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-codepipeline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.69.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|