aws-sdk-codepipeline 1.114.0 → 1.115.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b309d1ccd73f654fff6d63b8bc42615d6254bc80e4591160f296732768bd57e3
4
- data.tar.gz: 6438589ed739b6ff22a7ec2d3667a5a6e5fa2757f554fbd1b250c46477d1b5f0
3
+ metadata.gz: 1124db7aca5571f93203f6aa2f4ddd497fb990f51857b33118d40761f01139dd
4
+ data.tar.gz: bb9f9f517ffb493edb21382d46684a05554f1a04f820940bfa4b379e2e31cc09
5
5
  SHA512:
6
- metadata.gz: da1eed1fecceb73f588a6ba070ccacdb9259fc84187c1953b4671f351f8bd84bb2ed592ca1521a4ed009beab7a76ec49ad3b88701396dd85a27fa4ed93aebb82
7
- data.tar.gz: '0728387a6dcb2902c3e24c2f8e4db2f23cca259bb0790640922d3f05ac9e472153fd0a37d87efb3e4adba54fb34313b21921fa46bd58b786d13854289c2a8e0d'
6
+ metadata.gz: fbd23d61f0e853c29bd0537de78690c45b5c78bdcf0548ce1a881b504b5d1e7fa9c8bfe36a21325efb6f56bffadd43c1e4c3c5b8340ed11f657e8225dab04ced
7
+ data.tar.gz: f38f931a8e3e36671fb0073af5c18124560fbe2cf26f501b8f44a590c3ba379fabf603c8a4d7983f4d899eff0eb184410c0665a265922dfafa18c7a14c1725e0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.115.0 (2026-05-19)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.114.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.114.0
1
+ 1.115.0
@@ -3774,7 +3774,7 @@ module Aws::CodePipeline
3774
3774
  tracer: tracer
3775
3775
  )
3776
3776
  context[:gem_name] = 'aws-sdk-codepipeline'
3777
- context[:gem_version] = '1.114.0'
3777
+ context[:gem_version] = '1.115.0'
3778
3778
  Seahorse::Client::Request.new(handlers, context)
3779
3779
  end
3780
3780
 
@@ -54,7 +54,7 @@ module Aws::CodePipeline
54
54
  autoload :EndpointProvider, 'aws-sdk-codepipeline/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-codepipeline/endpoints'
56
56
 
57
- GEM_VERSION = '1.114.0'
57
+ GEM_VERSION = '1.115.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -127,7 +127,7 @@ module Aws
127
127
  queryable: bool?,
128
128
  description: ::String?,
129
129
  type: ("String" | "Number" | "Boolean")?
130
- },
130
+ }
131
131
  ],
132
132
  input_artifact_details: {
133
133
  minimum_count: ::Integer,
@@ -141,7 +141,7 @@ module Aws
141
141
  {
142
142
  key: ::String,
143
143
  value: ::String
144
- },
144
+ }
145
145
  ]
146
146
  ) -> _CreateCustomActionTypeResponseSuccess
147
147
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCustomActionTypeResponseSuccess
@@ -153,214 +153,12 @@ module Aws
153
153
  end
154
154
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodePipeline/Client.html#create_pipeline-instance_method
155
155
  def create_pipeline: (
156
- pipeline: {
157
- name: ::String,
158
- role_arn: ::String,
159
- artifact_store: {
160
- type: ("S3"),
161
- location: ::String,
162
- encryption_key: {
163
- id: ::String,
164
- type: ("KMS")
165
- }?
166
- }?,
167
- artifact_stores: Hash[::String, {
168
- type: ("S3"),
169
- location: ::String,
170
- encryption_key: {
171
- id: ::String,
172
- type: ("KMS")
173
- }?
174
- }]?,
175
- stages: Array[
176
- {
177
- name: ::String,
178
- blockers: Array[
179
- {
180
- name: ::String,
181
- type: ("Schedule")
182
- },
183
- ]?,
184
- actions: Array[
185
- {
186
- name: ::String,
187
- action_type_id: {
188
- category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval" | "Compute"),
189
- owner: ("AWS" | "ThirdParty" | "Custom"),
190
- provider: ::String,
191
- version: ::String
192
- },
193
- run_order: ::Integer?,
194
- configuration: Hash[::String, ::String]?,
195
- commands: Array[::String]?,
196
- output_artifacts: Array[
197
- {
198
- name: ::String,
199
- files: Array[::String]?
200
- },
201
- ]?,
202
- input_artifacts: Array[
203
- {
204
- name: ::String
205
- },
206
- ]?,
207
- output_variables: Array[::String]?,
208
- role_arn: ::String?,
209
- region: ::String?,
210
- namespace: ::String?,
211
- timeout_in_minutes: ::Integer?,
212
- environment_variables: Array[
213
- {
214
- name: ::String,
215
- value: ::String,
216
- type: ("PLAINTEXT" | "SECRETS_MANAGER")?
217
- },
218
- ]?
219
- },
220
- ],
221
- on_failure: {
222
- result: ("ROLLBACK" | "FAIL" | "RETRY" | "SKIP")?,
223
- retry_configuration: {
224
- retry_mode: ("FAILED_ACTIONS" | "ALL_ACTIONS")?
225
- }?,
226
- conditions: Array[
227
- {
228
- result: ("ROLLBACK" | "FAIL" | "RETRY" | "SKIP")?,
229
- rules: Array[
230
- {
231
- name: ::String,
232
- rule_type_id: {
233
- category: ("Rule"),
234
- owner: ("AWS")?,
235
- provider: ::String,
236
- version: ::String?
237
- },
238
- configuration: Hash[::String, ::String]?,
239
- commands: Array[::String]?,
240
- input_artifacts: Array[
241
- {
242
- name: ::String
243
- },
244
- ]?,
245
- role_arn: ::String?,
246
- region: ::String?,
247
- timeout_in_minutes: ::Integer?
248
- },
249
- ]?
250
- },
251
- ]?
252
- }?,
253
- on_success: {
254
- conditions: Array[
255
- {
256
- result: ("ROLLBACK" | "FAIL" | "RETRY" | "SKIP")?,
257
- rules: Array[
258
- {
259
- name: ::String,
260
- rule_type_id: {
261
- category: ("Rule"),
262
- owner: ("AWS")?,
263
- provider: ::String,
264
- version: ::String?
265
- },
266
- configuration: Hash[::String, ::String]?,
267
- commands: Array[::String]?,
268
- input_artifacts: Array[
269
- {
270
- name: ::String
271
- },
272
- ]?,
273
- role_arn: ::String?,
274
- region: ::String?,
275
- timeout_in_minutes: ::Integer?
276
- },
277
- ]?
278
- },
279
- ]
280
- }?,
281
- before_entry: {
282
- conditions: Array[
283
- {
284
- result: ("ROLLBACK" | "FAIL" | "RETRY" | "SKIP")?,
285
- rules: Array[
286
- {
287
- name: ::String,
288
- rule_type_id: {
289
- category: ("Rule"),
290
- owner: ("AWS")?,
291
- provider: ::String,
292
- version: ::String?
293
- },
294
- configuration: Hash[::String, ::String]?,
295
- commands: Array[::String]?,
296
- input_artifacts: Array[
297
- {
298
- name: ::String
299
- },
300
- ]?,
301
- role_arn: ::String?,
302
- region: ::String?,
303
- timeout_in_minutes: ::Integer?
304
- },
305
- ]?
306
- },
307
- ]
308
- }?
309
- },
310
- ],
311
- version: ::Integer?,
312
- execution_mode: ("QUEUED" | "SUPERSEDED" | "PARALLEL")?,
313
- pipeline_type: ("V1" | "V2")?,
314
- variables: Array[
315
- {
316
- name: ::String,
317
- default_value: ::String?,
318
- description: ::String?
319
- },
320
- ]?,
321
- triggers: Array[
322
- {
323
- provider_type: ("CodeStarSourceConnection"),
324
- git_configuration: {
325
- source_action_name: ::String,
326
- push: Array[
327
- {
328
- tags: {
329
- includes: Array[::String]?,
330
- excludes: Array[::String]?
331
- }?,
332
- branches: {
333
- includes: Array[::String]?,
334
- excludes: Array[::String]?
335
- }?,
336
- file_paths: {
337
- includes: Array[::String]?,
338
- excludes: Array[::String]?
339
- }?
340
- },
341
- ]?,
342
- pull_request: Array[
343
- {
344
- events: Array[("OPEN" | "UPDATED" | "CLOSED")]?,
345
- branches: {
346
- includes: Array[::String]?,
347
- excludes: Array[::String]?
348
- }?,
349
- file_paths: {
350
- includes: Array[::String]?,
351
- excludes: Array[::String]?
352
- }?
353
- },
354
- ]?
355
- }
356
- },
357
- ]?
358
- },
156
+ pipeline: Params::pipeline_declaration,
359
157
  ?tags: Array[
360
158
  {
361
159
  key: ::String,
362
160
  value: ::String
363
- },
161
+ }
364
162
  ]
365
163
  ) -> _CreatePipelineResponseSuccess
366
164
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePipelineResponseSuccess
@@ -531,7 +329,7 @@ module Aws
531
329
  {
532
330
  name: ("TARGET_STATUS")?,
533
331
  values: Array[::String]?
534
- },
332
+ }
535
333
  ],
536
334
  ?max_results: ::Integer,
537
335
  ?next_token: ::String
@@ -776,7 +574,7 @@ module Aws
776
574
  {
777
575
  json_path: ::String,
778
576
  match_equals: ::String?
779
- },
577
+ }
780
578
  ],
781
579
  authentication: ("GITHUB_HMAC" | "IP" | "UNAUTHENTICATED"),
782
580
  authentication_configuration: {
@@ -788,7 +586,7 @@ module Aws
788
586
  {
789
587
  key: ::String,
790
588
  value: ::String
791
- },
589
+ }
792
590
  ]
793
591
  ) -> _PutWebhookResponseSuccess
794
592
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutWebhookResponseSuccess
@@ -838,7 +636,7 @@ module Aws
838
636
  {
839
637
  name: ::String,
840
638
  value: ::String
841
- },
639
+ }
842
640
  ],
843
641
  ?client_request_token: ::String,
844
642
  ?source_revisions: Array[
@@ -846,7 +644,7 @@ module Aws
846
644
  action_name: ::String,
847
645
  revision_type: ("COMMIT_ID" | "IMAGE_DIGEST" | "S3_OBJECT_VERSION_ID" | "S3_OBJECT_KEY"),
848
646
  revision_value: ::String
849
- },
647
+ }
850
648
  ]
851
649
  ) -> _StartPipelineExecutionResponseSuccess
852
650
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartPipelineExecutionResponseSuccess
@@ -874,7 +672,7 @@ module Aws
874
672
  {
875
673
  key: ::String,
876
674
  value: ::String
877
- },
675
+ }
878
676
  ]
879
677
  ) -> _TagResourceResponseSuccess
880
678
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
@@ -932,7 +730,7 @@ module Aws
932
730
  no_echo: bool,
933
731
  queryable: bool?,
934
732
  description: ::String?
935
- },
733
+ }
936
734
  ]?,
937
735
  urls: {
938
736
  configuration_url: ::String?,
@@ -950,209 +748,7 @@ module Aws
950
748
  end
951
749
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/CodePipeline/Client.html#update_pipeline-instance_method
952
750
  def update_pipeline: (
953
- pipeline: {
954
- name: ::String,
955
- role_arn: ::String,
956
- artifact_store: {
957
- type: ("S3"),
958
- location: ::String,
959
- encryption_key: {
960
- id: ::String,
961
- type: ("KMS")
962
- }?
963
- }?,
964
- artifact_stores: Hash[::String, {
965
- type: ("S3"),
966
- location: ::String,
967
- encryption_key: {
968
- id: ::String,
969
- type: ("KMS")
970
- }?
971
- }]?,
972
- stages: Array[
973
- {
974
- name: ::String,
975
- blockers: Array[
976
- {
977
- name: ::String,
978
- type: ("Schedule")
979
- },
980
- ]?,
981
- actions: Array[
982
- {
983
- name: ::String,
984
- action_type_id: {
985
- category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval" | "Compute"),
986
- owner: ("AWS" | "ThirdParty" | "Custom"),
987
- provider: ::String,
988
- version: ::String
989
- },
990
- run_order: ::Integer?,
991
- configuration: Hash[::String, ::String]?,
992
- commands: Array[::String]?,
993
- output_artifacts: Array[
994
- {
995
- name: ::String,
996
- files: Array[::String]?
997
- },
998
- ]?,
999
- input_artifacts: Array[
1000
- {
1001
- name: ::String
1002
- },
1003
- ]?,
1004
- output_variables: Array[::String]?,
1005
- role_arn: ::String?,
1006
- region: ::String?,
1007
- namespace: ::String?,
1008
- timeout_in_minutes: ::Integer?,
1009
- environment_variables: Array[
1010
- {
1011
- name: ::String,
1012
- value: ::String,
1013
- type: ("PLAINTEXT" | "SECRETS_MANAGER")?
1014
- },
1015
- ]?
1016
- },
1017
- ],
1018
- on_failure: {
1019
- result: ("ROLLBACK" | "FAIL" | "RETRY" | "SKIP")?,
1020
- retry_configuration: {
1021
- retry_mode: ("FAILED_ACTIONS" | "ALL_ACTIONS")?
1022
- }?,
1023
- conditions: Array[
1024
- {
1025
- result: ("ROLLBACK" | "FAIL" | "RETRY" | "SKIP")?,
1026
- rules: Array[
1027
- {
1028
- name: ::String,
1029
- rule_type_id: {
1030
- category: ("Rule"),
1031
- owner: ("AWS")?,
1032
- provider: ::String,
1033
- version: ::String?
1034
- },
1035
- configuration: Hash[::String, ::String]?,
1036
- commands: Array[::String]?,
1037
- input_artifacts: Array[
1038
- {
1039
- name: ::String
1040
- },
1041
- ]?,
1042
- role_arn: ::String?,
1043
- region: ::String?,
1044
- timeout_in_minutes: ::Integer?
1045
- },
1046
- ]?
1047
- },
1048
- ]?
1049
- }?,
1050
- on_success: {
1051
- conditions: Array[
1052
- {
1053
- result: ("ROLLBACK" | "FAIL" | "RETRY" | "SKIP")?,
1054
- rules: Array[
1055
- {
1056
- name: ::String,
1057
- rule_type_id: {
1058
- category: ("Rule"),
1059
- owner: ("AWS")?,
1060
- provider: ::String,
1061
- version: ::String?
1062
- },
1063
- configuration: Hash[::String, ::String]?,
1064
- commands: Array[::String]?,
1065
- input_artifacts: Array[
1066
- {
1067
- name: ::String
1068
- },
1069
- ]?,
1070
- role_arn: ::String?,
1071
- region: ::String?,
1072
- timeout_in_minutes: ::Integer?
1073
- },
1074
- ]?
1075
- },
1076
- ]
1077
- }?,
1078
- before_entry: {
1079
- conditions: Array[
1080
- {
1081
- result: ("ROLLBACK" | "FAIL" | "RETRY" | "SKIP")?,
1082
- rules: Array[
1083
- {
1084
- name: ::String,
1085
- rule_type_id: {
1086
- category: ("Rule"),
1087
- owner: ("AWS")?,
1088
- provider: ::String,
1089
- version: ::String?
1090
- },
1091
- configuration: Hash[::String, ::String]?,
1092
- commands: Array[::String]?,
1093
- input_artifacts: Array[
1094
- {
1095
- name: ::String
1096
- },
1097
- ]?,
1098
- role_arn: ::String?,
1099
- region: ::String?,
1100
- timeout_in_minutes: ::Integer?
1101
- },
1102
- ]?
1103
- },
1104
- ]
1105
- }?
1106
- },
1107
- ],
1108
- version: ::Integer?,
1109
- execution_mode: ("QUEUED" | "SUPERSEDED" | "PARALLEL")?,
1110
- pipeline_type: ("V1" | "V2")?,
1111
- variables: Array[
1112
- {
1113
- name: ::String,
1114
- default_value: ::String?,
1115
- description: ::String?
1116
- },
1117
- ]?,
1118
- triggers: Array[
1119
- {
1120
- provider_type: ("CodeStarSourceConnection"),
1121
- git_configuration: {
1122
- source_action_name: ::String,
1123
- push: Array[
1124
- {
1125
- tags: {
1126
- includes: Array[::String]?,
1127
- excludes: Array[::String]?
1128
- }?,
1129
- branches: {
1130
- includes: Array[::String]?,
1131
- excludes: Array[::String]?
1132
- }?,
1133
- file_paths: {
1134
- includes: Array[::String]?,
1135
- excludes: Array[::String]?
1136
- }?
1137
- },
1138
- ]?,
1139
- pull_request: Array[
1140
- {
1141
- events: Array[("OPEN" | "UPDATED" | "CLOSED")]?,
1142
- branches: {
1143
- includes: Array[::String]?,
1144
- excludes: Array[::String]?
1145
- }?,
1146
- file_paths: {
1147
- includes: Array[::String]?,
1148
- excludes: Array[::String]?
1149
- }?
1150
- },
1151
- ]?
1152
- }
1153
- },
1154
- ]?
1155
- }
751
+ pipeline: Params::pipeline_declaration
1156
752
  ) -> _UpdatePipelineResponseSuccess
1157
753
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePipelineResponseSuccess
1158
754
  end
data/sig/params.rbs ADDED
@@ -0,0 +1,188 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module CodePipeline
10
+ module Params
11
+ type artifact_store = {
12
+ type: ("S3"),
13
+ location: ::String,
14
+ encryption_key: {
15
+ id: ::String,
16
+ type: ("KMS")
17
+ }?
18
+ }
19
+
20
+ type pipeline_declaration = {
21
+ name: ::String,
22
+ role_arn: ::String,
23
+ artifact_store: Params::artifact_store?,
24
+ artifact_stores: Hash[::String, Params::artifact_store]?,
25
+ stages: Array[
26
+ Params::stage_declaration
27
+ ],
28
+ version: ::Integer?,
29
+ execution_mode: ("QUEUED" | "SUPERSEDED" | "PARALLEL")?,
30
+ pipeline_type: ("V1" | "V2")?,
31
+ variables: Array[
32
+ {
33
+ name: ::String,
34
+ default_value: ::String?,
35
+ description: ::String?
36
+ }
37
+ ]?,
38
+ triggers: Array[
39
+ Params::pipeline_trigger_declaration
40
+ ]?
41
+ }
42
+
43
+ type failure_conditions = {
44
+ result: ("ROLLBACK" | "FAIL" | "RETRY" | "SKIP")?,
45
+ retry_configuration: {
46
+ retry_mode: ("FAILED_ACTIONS" | "ALL_ACTIONS")?
47
+ }?,
48
+ conditions: Array[
49
+ Params::condition
50
+ ]?
51
+ }
52
+
53
+ type success_conditions = {
54
+ conditions: Array[
55
+ Params::condition
56
+ ]
57
+ }
58
+
59
+ type before_entry_conditions = {
60
+ conditions: Array[
61
+ Params::condition
62
+ ]
63
+ }
64
+
65
+ type stage_declaration = {
66
+ name: ::String,
67
+ blockers: Array[
68
+ {
69
+ name: ::String,
70
+ type: ("Schedule")
71
+ }
72
+ ]?,
73
+ actions: Array[
74
+ Params::action_declaration
75
+ ],
76
+ on_failure: Params::failure_conditions?,
77
+ on_success: Params::success_conditions?,
78
+ before_entry: Params::before_entry_conditions?
79
+ }
80
+
81
+ type action_declaration = {
82
+ name: ::String,
83
+ action_type_id: {
84
+ category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval" | "Compute"),
85
+ owner: ("AWS" | "ThirdParty" | "Custom"),
86
+ provider: ::String,
87
+ version: ::String
88
+ },
89
+ run_order: ::Integer?,
90
+ configuration: Hash[::String, ::String]?,
91
+ commands: Array[::String]?,
92
+ output_artifacts: Array[
93
+ {
94
+ name: ::String,
95
+ files: Array[::String]?
96
+ }
97
+ ]?,
98
+ input_artifacts: Array[
99
+ {
100
+ name: ::String
101
+ }
102
+ ]?,
103
+ output_variables: Array[::String]?,
104
+ role_arn: ::String?,
105
+ region: ::String?,
106
+ namespace: ::String?,
107
+ timeout_in_minutes: ::Integer?,
108
+ environment_variables: Array[
109
+ {
110
+ name: ::String,
111
+ value: ::String,
112
+ type: ("PLAINTEXT" | "SECRETS_MANAGER")?
113
+ }
114
+ ]?
115
+ }
116
+
117
+ type condition = {
118
+ result: ("ROLLBACK" | "FAIL" | "RETRY" | "SKIP")?,
119
+ rules: Array[
120
+ Params::rule_declaration
121
+ ]?
122
+ }
123
+
124
+ type rule_declaration = {
125
+ name: ::String,
126
+ rule_type_id: {
127
+ category: ("Rule"),
128
+ owner: ("AWS")?,
129
+ provider: ::String,
130
+ version: ::String?
131
+ },
132
+ configuration: Hash[::String, ::String]?,
133
+ commands: Array[::String]?,
134
+ input_artifacts: Array[
135
+ {
136
+ name: ::String
137
+ }
138
+ ]?,
139
+ role_arn: ::String?,
140
+ region: ::String?,
141
+ timeout_in_minutes: ::Integer?
142
+ }
143
+
144
+ type git_configuration = {
145
+ source_action_name: ::String,
146
+ push: Array[
147
+ Params::git_push_filter
148
+ ]?,
149
+ pull_request: Array[
150
+ Params::git_pull_request_filter
151
+ ]?
152
+ }
153
+
154
+ type pipeline_trigger_declaration = {
155
+ provider_type: ("CodeStarSourceConnection"),
156
+ git_configuration: Params::git_configuration
157
+ }
158
+
159
+ type git_push_filter = {
160
+ tags: {
161
+ includes: Array[::String]?,
162
+ excludes: Array[::String]?
163
+ }?,
164
+ branches: {
165
+ includes: Array[::String]?,
166
+ excludes: Array[::String]?
167
+ }?,
168
+ file_paths: {
169
+ includes: Array[::String]?,
170
+ excludes: Array[::String]?
171
+ }?
172
+ }
173
+
174
+ type git_pull_request_filter = {
175
+ events: Array[("OPEN" | "UPDATED" | "CLOSED")]?,
176
+ branches: {
177
+ includes: Array[::String]?,
178
+ excludes: Array[::String]?
179
+ }?,
180
+ file_paths: {
181
+ includes: Array[::String]?,
182
+ excludes: Array[::String]?
183
+ }?
184
+ }
185
+
186
+ end
187
+ end
188
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-codepipeline
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.114.0
4
+ version: 1.115.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -67,6 +67,7 @@ files:
67
67
  - lib/aws-sdk-codepipeline/types.rb
68
68
  - sig/client.rbs
69
69
  - sig/errors.rbs
70
+ - sig/params.rbs
70
71
  - sig/resource.rbs
71
72
  - sig/types.rbs
72
73
  - sig/waiters.rbs