aws-sdk-codepipeline 1.67.0 → 1.69.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -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/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-codepipeline/types.rb +202 -85
- data/lib/aws-sdk-codepipeline.rb +1 -1
- data/sig/client.rbs +880 -0
- data/sig/errors.rbs +102 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +1179 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1179 @@
|
|
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::CodePipeline
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AWSSessionCredentials
|
12
|
+
attr_accessor access_key_id: ::String
|
13
|
+
attr_accessor secret_access_key: ::String
|
14
|
+
attr_accessor session_token: ::String
|
15
|
+
SENSITIVE: [:access_key_id, :secret_access_key, :session_token]
|
16
|
+
end
|
17
|
+
|
18
|
+
class AcknowledgeJobInput
|
19
|
+
attr_accessor job_id: ::String
|
20
|
+
attr_accessor nonce: ::String
|
21
|
+
SENSITIVE: []
|
22
|
+
end
|
23
|
+
|
24
|
+
class AcknowledgeJobOutput
|
25
|
+
attr_accessor status: ("Created" | "Queued" | "Dispatched" | "InProgress" | "TimedOut" | "Succeeded" | "Failed")
|
26
|
+
SENSITIVE: []
|
27
|
+
end
|
28
|
+
|
29
|
+
class AcknowledgeThirdPartyJobInput
|
30
|
+
attr_accessor job_id: ::String
|
31
|
+
attr_accessor nonce: ::String
|
32
|
+
attr_accessor client_token: ::String
|
33
|
+
SENSITIVE: []
|
34
|
+
end
|
35
|
+
|
36
|
+
class AcknowledgeThirdPartyJobOutput
|
37
|
+
attr_accessor status: ("Created" | "Queued" | "Dispatched" | "InProgress" | "TimedOut" | "Succeeded" | "Failed")
|
38
|
+
SENSITIVE: []
|
39
|
+
end
|
40
|
+
|
41
|
+
class ActionConfiguration
|
42
|
+
attr_accessor configuration: ::Hash[::String, ::String]
|
43
|
+
SENSITIVE: []
|
44
|
+
end
|
45
|
+
|
46
|
+
class ActionConfigurationProperty
|
47
|
+
attr_accessor name: ::String
|
48
|
+
attr_accessor required: bool
|
49
|
+
attr_accessor key: bool
|
50
|
+
attr_accessor secret: bool
|
51
|
+
attr_accessor queryable: bool
|
52
|
+
attr_accessor description: ::String
|
53
|
+
attr_accessor type: ("String" | "Number" | "Boolean")
|
54
|
+
SENSITIVE: []
|
55
|
+
end
|
56
|
+
|
57
|
+
class ActionContext
|
58
|
+
attr_accessor name: ::String
|
59
|
+
attr_accessor action_execution_id: ::String
|
60
|
+
SENSITIVE: []
|
61
|
+
end
|
62
|
+
|
63
|
+
class ActionDeclaration
|
64
|
+
attr_accessor name: ::String
|
65
|
+
attr_accessor action_type_id: Types::ActionTypeId
|
66
|
+
attr_accessor run_order: ::Integer
|
67
|
+
attr_accessor configuration: ::Hash[::String, ::String]
|
68
|
+
attr_accessor output_artifacts: ::Array[Types::OutputArtifact]
|
69
|
+
attr_accessor input_artifacts: ::Array[Types::InputArtifact]
|
70
|
+
attr_accessor role_arn: ::String
|
71
|
+
attr_accessor region: ::String
|
72
|
+
attr_accessor namespace: ::String
|
73
|
+
SENSITIVE: []
|
74
|
+
end
|
75
|
+
|
76
|
+
class ActionExecution
|
77
|
+
attr_accessor action_execution_id: ::String
|
78
|
+
attr_accessor status: ("InProgress" | "Abandoned" | "Succeeded" | "Failed")
|
79
|
+
attr_accessor summary: ::String
|
80
|
+
attr_accessor last_status_change: ::Time
|
81
|
+
attr_accessor token: ::String
|
82
|
+
attr_accessor last_updated_by: ::String
|
83
|
+
attr_accessor external_execution_id: ::String
|
84
|
+
attr_accessor external_execution_url: ::String
|
85
|
+
attr_accessor percent_complete: ::Integer
|
86
|
+
attr_accessor error_details: Types::ErrorDetails
|
87
|
+
SENSITIVE: []
|
88
|
+
end
|
89
|
+
|
90
|
+
class ActionExecutionDetail
|
91
|
+
attr_accessor pipeline_execution_id: ::String
|
92
|
+
attr_accessor action_execution_id: ::String
|
93
|
+
attr_accessor pipeline_version: ::Integer
|
94
|
+
attr_accessor stage_name: ::String
|
95
|
+
attr_accessor action_name: ::String
|
96
|
+
attr_accessor start_time: ::Time
|
97
|
+
attr_accessor last_update_time: ::Time
|
98
|
+
attr_accessor updated_by: ::String
|
99
|
+
attr_accessor status: ("InProgress" | "Abandoned" | "Succeeded" | "Failed")
|
100
|
+
attr_accessor input: Types::ActionExecutionInput
|
101
|
+
attr_accessor output: Types::ActionExecutionOutput
|
102
|
+
SENSITIVE: []
|
103
|
+
end
|
104
|
+
|
105
|
+
class ActionExecutionFilter
|
106
|
+
attr_accessor pipeline_execution_id: ::String
|
107
|
+
attr_accessor latest_in_pipeline_execution: Types::LatestInPipelineExecutionFilter
|
108
|
+
SENSITIVE: []
|
109
|
+
end
|
110
|
+
|
111
|
+
class ActionExecutionInput
|
112
|
+
attr_accessor action_type_id: Types::ActionTypeId
|
113
|
+
attr_accessor configuration: ::Hash[::String, ::String]
|
114
|
+
attr_accessor resolved_configuration: ::Hash[::String, ::String]
|
115
|
+
attr_accessor role_arn: ::String
|
116
|
+
attr_accessor region: ::String
|
117
|
+
attr_accessor input_artifacts: ::Array[Types::ArtifactDetail]
|
118
|
+
attr_accessor namespace: ::String
|
119
|
+
SENSITIVE: []
|
120
|
+
end
|
121
|
+
|
122
|
+
class ActionExecutionOutput
|
123
|
+
attr_accessor output_artifacts: ::Array[Types::ArtifactDetail]
|
124
|
+
attr_accessor execution_result: Types::ActionExecutionResult
|
125
|
+
attr_accessor output_variables: ::Hash[::String, ::String]
|
126
|
+
SENSITIVE: []
|
127
|
+
end
|
128
|
+
|
129
|
+
class ActionExecutionResult
|
130
|
+
attr_accessor external_execution_id: ::String
|
131
|
+
attr_accessor external_execution_summary: ::String
|
132
|
+
attr_accessor external_execution_url: ::String
|
133
|
+
attr_accessor error_details: Types::ErrorDetails
|
134
|
+
SENSITIVE: []
|
135
|
+
end
|
136
|
+
|
137
|
+
class ActionNotFoundException < Aws::EmptyStructure
|
138
|
+
end
|
139
|
+
|
140
|
+
class ActionRevision
|
141
|
+
attr_accessor revision_id: ::String
|
142
|
+
attr_accessor revision_change_id: ::String
|
143
|
+
attr_accessor created: ::Time
|
144
|
+
SENSITIVE: []
|
145
|
+
end
|
146
|
+
|
147
|
+
class ActionState
|
148
|
+
attr_accessor action_name: ::String
|
149
|
+
attr_accessor current_revision: Types::ActionRevision
|
150
|
+
attr_accessor latest_execution: Types::ActionExecution
|
151
|
+
attr_accessor entity_url: ::String
|
152
|
+
attr_accessor revision_url: ::String
|
153
|
+
SENSITIVE: []
|
154
|
+
end
|
155
|
+
|
156
|
+
class ActionType
|
157
|
+
attr_accessor id: Types::ActionTypeId
|
158
|
+
attr_accessor settings: Types::ActionTypeSettings
|
159
|
+
attr_accessor action_configuration_properties: ::Array[Types::ActionConfigurationProperty]
|
160
|
+
attr_accessor input_artifact_details: Types::ArtifactDetails
|
161
|
+
attr_accessor output_artifact_details: Types::ArtifactDetails
|
162
|
+
SENSITIVE: []
|
163
|
+
end
|
164
|
+
|
165
|
+
class ActionTypeAlreadyExistsException < Aws::EmptyStructure
|
166
|
+
end
|
167
|
+
|
168
|
+
class ActionTypeArtifactDetails
|
169
|
+
attr_accessor minimum_count: ::Integer
|
170
|
+
attr_accessor maximum_count: ::Integer
|
171
|
+
SENSITIVE: []
|
172
|
+
end
|
173
|
+
|
174
|
+
class ActionTypeDeclaration
|
175
|
+
attr_accessor description: ::String
|
176
|
+
attr_accessor executor: Types::ActionTypeExecutor
|
177
|
+
attr_accessor id: Types::ActionTypeIdentifier
|
178
|
+
attr_accessor input_artifact_details: Types::ActionTypeArtifactDetails
|
179
|
+
attr_accessor output_artifact_details: Types::ActionTypeArtifactDetails
|
180
|
+
attr_accessor permissions: Types::ActionTypePermissions
|
181
|
+
attr_accessor properties: ::Array[Types::ActionTypeProperty]
|
182
|
+
attr_accessor urls: Types::ActionTypeUrls
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class ActionTypeExecutor
|
187
|
+
attr_accessor configuration: Types::ExecutorConfiguration
|
188
|
+
attr_accessor type: ("JobWorker" | "Lambda")
|
189
|
+
attr_accessor policy_statements_template: ::String
|
190
|
+
attr_accessor job_timeout: ::Integer
|
191
|
+
SENSITIVE: []
|
192
|
+
end
|
193
|
+
|
194
|
+
class ActionTypeId
|
195
|
+
attr_accessor category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval")
|
196
|
+
attr_accessor owner: ("AWS" | "ThirdParty" | "Custom")
|
197
|
+
attr_accessor provider: ::String
|
198
|
+
attr_accessor version: ::String
|
199
|
+
SENSITIVE: []
|
200
|
+
end
|
201
|
+
|
202
|
+
class ActionTypeIdentifier
|
203
|
+
attr_accessor category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval")
|
204
|
+
attr_accessor owner: ::String
|
205
|
+
attr_accessor provider: ::String
|
206
|
+
attr_accessor version: ::String
|
207
|
+
SENSITIVE: []
|
208
|
+
end
|
209
|
+
|
210
|
+
class ActionTypeNotFoundException < Aws::EmptyStructure
|
211
|
+
end
|
212
|
+
|
213
|
+
class ActionTypePermissions
|
214
|
+
attr_accessor allowed_accounts: ::Array[::String]
|
215
|
+
SENSITIVE: []
|
216
|
+
end
|
217
|
+
|
218
|
+
class ActionTypeProperty
|
219
|
+
attr_accessor name: ::String
|
220
|
+
attr_accessor optional: bool
|
221
|
+
attr_accessor key: bool
|
222
|
+
attr_accessor no_echo: bool
|
223
|
+
attr_accessor queryable: bool
|
224
|
+
attr_accessor description: ::String
|
225
|
+
SENSITIVE: []
|
226
|
+
end
|
227
|
+
|
228
|
+
class ActionTypeSettings
|
229
|
+
attr_accessor third_party_configuration_url: ::String
|
230
|
+
attr_accessor entity_url_template: ::String
|
231
|
+
attr_accessor execution_url_template: ::String
|
232
|
+
attr_accessor revision_url_template: ::String
|
233
|
+
SENSITIVE: []
|
234
|
+
end
|
235
|
+
|
236
|
+
class ActionTypeUrls
|
237
|
+
attr_accessor configuration_url: ::String
|
238
|
+
attr_accessor entity_url_template: ::String
|
239
|
+
attr_accessor execution_url_template: ::String
|
240
|
+
attr_accessor revision_url_template: ::String
|
241
|
+
SENSITIVE: []
|
242
|
+
end
|
243
|
+
|
244
|
+
class ApprovalAlreadyCompletedException < Aws::EmptyStructure
|
245
|
+
end
|
246
|
+
|
247
|
+
class ApprovalResult
|
248
|
+
attr_accessor summary: ::String
|
249
|
+
attr_accessor status: ("Approved" | "Rejected")
|
250
|
+
SENSITIVE: []
|
251
|
+
end
|
252
|
+
|
253
|
+
class Artifact
|
254
|
+
attr_accessor name: ::String
|
255
|
+
attr_accessor revision: ::String
|
256
|
+
attr_accessor location: Types::ArtifactLocation
|
257
|
+
SENSITIVE: []
|
258
|
+
end
|
259
|
+
|
260
|
+
class ArtifactDetail
|
261
|
+
attr_accessor name: ::String
|
262
|
+
attr_accessor s3location: Types::S3Location
|
263
|
+
SENSITIVE: []
|
264
|
+
end
|
265
|
+
|
266
|
+
class ArtifactDetails
|
267
|
+
attr_accessor minimum_count: ::Integer
|
268
|
+
attr_accessor maximum_count: ::Integer
|
269
|
+
SENSITIVE: []
|
270
|
+
end
|
271
|
+
|
272
|
+
class ArtifactLocation
|
273
|
+
attr_accessor type: ("S3")
|
274
|
+
attr_accessor s3_location: Types::S3ArtifactLocation
|
275
|
+
SENSITIVE: []
|
276
|
+
end
|
277
|
+
|
278
|
+
class ArtifactRevision
|
279
|
+
attr_accessor name: ::String
|
280
|
+
attr_accessor revision_id: ::String
|
281
|
+
attr_accessor revision_change_identifier: ::String
|
282
|
+
attr_accessor revision_summary: ::String
|
283
|
+
attr_accessor created: ::Time
|
284
|
+
attr_accessor revision_url: ::String
|
285
|
+
SENSITIVE: []
|
286
|
+
end
|
287
|
+
|
288
|
+
class ArtifactStore
|
289
|
+
attr_accessor type: ("S3")
|
290
|
+
attr_accessor location: ::String
|
291
|
+
attr_accessor encryption_key: Types::EncryptionKey
|
292
|
+
SENSITIVE: []
|
293
|
+
end
|
294
|
+
|
295
|
+
class BlockerDeclaration
|
296
|
+
attr_accessor name: ::String
|
297
|
+
attr_accessor type: ("Schedule")
|
298
|
+
SENSITIVE: []
|
299
|
+
end
|
300
|
+
|
301
|
+
class ConcurrentModificationException
|
302
|
+
attr_accessor message: ::String
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
306
|
+
class ConcurrentPipelineExecutionsLimitExceededException
|
307
|
+
attr_accessor message: ::String
|
308
|
+
SENSITIVE: []
|
309
|
+
end
|
310
|
+
|
311
|
+
class ConflictException
|
312
|
+
attr_accessor message: ::String
|
313
|
+
SENSITIVE: []
|
314
|
+
end
|
315
|
+
|
316
|
+
class CreateCustomActionTypeInput
|
317
|
+
attr_accessor category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval")
|
318
|
+
attr_accessor provider: ::String
|
319
|
+
attr_accessor version: ::String
|
320
|
+
attr_accessor settings: Types::ActionTypeSettings
|
321
|
+
attr_accessor configuration_properties: ::Array[Types::ActionConfigurationProperty]
|
322
|
+
attr_accessor input_artifact_details: Types::ArtifactDetails
|
323
|
+
attr_accessor output_artifact_details: Types::ArtifactDetails
|
324
|
+
attr_accessor tags: ::Array[Types::Tag]
|
325
|
+
SENSITIVE: []
|
326
|
+
end
|
327
|
+
|
328
|
+
class CreateCustomActionTypeOutput
|
329
|
+
attr_accessor action_type: Types::ActionType
|
330
|
+
attr_accessor tags: ::Array[Types::Tag]
|
331
|
+
SENSITIVE: []
|
332
|
+
end
|
333
|
+
|
334
|
+
class CreatePipelineInput
|
335
|
+
attr_accessor pipeline: Types::PipelineDeclaration
|
336
|
+
attr_accessor tags: ::Array[Types::Tag]
|
337
|
+
SENSITIVE: []
|
338
|
+
end
|
339
|
+
|
340
|
+
class CreatePipelineOutput
|
341
|
+
attr_accessor pipeline: Types::PipelineDeclaration
|
342
|
+
attr_accessor tags: ::Array[Types::Tag]
|
343
|
+
SENSITIVE: []
|
344
|
+
end
|
345
|
+
|
346
|
+
class CurrentRevision
|
347
|
+
attr_accessor revision: ::String
|
348
|
+
attr_accessor change_identifier: ::String
|
349
|
+
attr_accessor created: ::Time
|
350
|
+
attr_accessor revision_summary: ::String
|
351
|
+
SENSITIVE: []
|
352
|
+
end
|
353
|
+
|
354
|
+
class DeleteCustomActionTypeInput
|
355
|
+
attr_accessor category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval")
|
356
|
+
attr_accessor provider: ::String
|
357
|
+
attr_accessor version: ::String
|
358
|
+
SENSITIVE: []
|
359
|
+
end
|
360
|
+
|
361
|
+
class DeletePipelineInput
|
362
|
+
attr_accessor name: ::String
|
363
|
+
SENSITIVE: []
|
364
|
+
end
|
365
|
+
|
366
|
+
class DeleteWebhookInput
|
367
|
+
attr_accessor name: ::String
|
368
|
+
SENSITIVE: []
|
369
|
+
end
|
370
|
+
|
371
|
+
class DeleteWebhookOutput < Aws::EmptyStructure
|
372
|
+
end
|
373
|
+
|
374
|
+
class DeregisterWebhookWithThirdPartyInput
|
375
|
+
attr_accessor webhook_name: ::String
|
376
|
+
SENSITIVE: []
|
377
|
+
end
|
378
|
+
|
379
|
+
class DeregisterWebhookWithThirdPartyOutput < Aws::EmptyStructure
|
380
|
+
end
|
381
|
+
|
382
|
+
class DisableStageTransitionInput
|
383
|
+
attr_accessor pipeline_name: ::String
|
384
|
+
attr_accessor stage_name: ::String
|
385
|
+
attr_accessor transition_type: ("Inbound" | "Outbound")
|
386
|
+
attr_accessor reason: ::String
|
387
|
+
SENSITIVE: []
|
388
|
+
end
|
389
|
+
|
390
|
+
class DuplicatedStopRequestException
|
391
|
+
attr_accessor message: ::String
|
392
|
+
SENSITIVE: []
|
393
|
+
end
|
394
|
+
|
395
|
+
class EnableStageTransitionInput
|
396
|
+
attr_accessor pipeline_name: ::String
|
397
|
+
attr_accessor stage_name: ::String
|
398
|
+
attr_accessor transition_type: ("Inbound" | "Outbound")
|
399
|
+
SENSITIVE: []
|
400
|
+
end
|
401
|
+
|
402
|
+
class EncryptionKey
|
403
|
+
attr_accessor id: ::String
|
404
|
+
attr_accessor type: ("KMS")
|
405
|
+
SENSITIVE: []
|
406
|
+
end
|
407
|
+
|
408
|
+
class ErrorDetails
|
409
|
+
attr_accessor code: ::String
|
410
|
+
attr_accessor message: ::String
|
411
|
+
SENSITIVE: []
|
412
|
+
end
|
413
|
+
|
414
|
+
class ExecutionDetails
|
415
|
+
attr_accessor summary: ::String
|
416
|
+
attr_accessor external_execution_id: ::String
|
417
|
+
attr_accessor percent_complete: ::Integer
|
418
|
+
SENSITIVE: []
|
419
|
+
end
|
420
|
+
|
421
|
+
class ExecutionTrigger
|
422
|
+
attr_accessor trigger_type: ("CreatePipeline" | "StartPipelineExecution" | "PollForSourceChanges" | "Webhook" | "CloudWatchEvent" | "PutActionRevision" | "WebhookV2")
|
423
|
+
attr_accessor trigger_detail: ::String
|
424
|
+
SENSITIVE: []
|
425
|
+
end
|
426
|
+
|
427
|
+
class ExecutorConfiguration
|
428
|
+
attr_accessor lambda_executor_configuration: Types::LambdaExecutorConfiguration
|
429
|
+
attr_accessor job_worker_executor_configuration: Types::JobWorkerExecutorConfiguration
|
430
|
+
SENSITIVE: []
|
431
|
+
end
|
432
|
+
|
433
|
+
class FailureDetails
|
434
|
+
attr_accessor type: ("JobFailed" | "ConfigurationError" | "PermissionError" | "RevisionOutOfSync" | "RevisionUnavailable" | "SystemUnavailable")
|
435
|
+
attr_accessor message: ::String
|
436
|
+
attr_accessor external_execution_id: ::String
|
437
|
+
SENSITIVE: []
|
438
|
+
end
|
439
|
+
|
440
|
+
class GetActionTypeInput
|
441
|
+
attr_accessor category: ("Source" | "Build" | "Deploy" | "Test" | "Invoke" | "Approval")
|
442
|
+
attr_accessor owner: ::String
|
443
|
+
attr_accessor provider: ::String
|
444
|
+
attr_accessor version: ::String
|
445
|
+
SENSITIVE: []
|
446
|
+
end
|
447
|
+
|
448
|
+
class GetActionTypeOutput
|
449
|
+
attr_accessor action_type: Types::ActionTypeDeclaration
|
450
|
+
SENSITIVE: []
|
451
|
+
end
|
452
|
+
|
453
|
+
class GetJobDetailsInput
|
454
|
+
attr_accessor job_id: ::String
|
455
|
+
SENSITIVE: []
|
456
|
+
end
|
457
|
+
|
458
|
+
class GetJobDetailsOutput
|
459
|
+
attr_accessor job_details: Types::JobDetails
|
460
|
+
SENSITIVE: []
|
461
|
+
end
|
462
|
+
|
463
|
+
class GetPipelineExecutionInput
|
464
|
+
attr_accessor pipeline_name: ::String
|
465
|
+
attr_accessor pipeline_execution_id: ::String
|
466
|
+
SENSITIVE: []
|
467
|
+
end
|
468
|
+
|
469
|
+
class GetPipelineExecutionOutput
|
470
|
+
attr_accessor pipeline_execution: Types::PipelineExecution
|
471
|
+
SENSITIVE: []
|
472
|
+
end
|
473
|
+
|
474
|
+
class GetPipelineInput
|
475
|
+
attr_accessor name: ::String
|
476
|
+
attr_accessor version: ::Integer
|
477
|
+
SENSITIVE: []
|
478
|
+
end
|
479
|
+
|
480
|
+
class GetPipelineOutput
|
481
|
+
attr_accessor pipeline: Types::PipelineDeclaration
|
482
|
+
attr_accessor metadata: Types::PipelineMetadata
|
483
|
+
SENSITIVE: []
|
484
|
+
end
|
485
|
+
|
486
|
+
class GetPipelineStateInput
|
487
|
+
attr_accessor name: ::String
|
488
|
+
SENSITIVE: []
|
489
|
+
end
|
490
|
+
|
491
|
+
class GetPipelineStateOutput
|
492
|
+
attr_accessor pipeline_name: ::String
|
493
|
+
attr_accessor pipeline_version: ::Integer
|
494
|
+
attr_accessor stage_states: ::Array[Types::StageState]
|
495
|
+
attr_accessor created: ::Time
|
496
|
+
attr_accessor updated: ::Time
|
497
|
+
SENSITIVE: []
|
498
|
+
end
|
499
|
+
|
500
|
+
class GetThirdPartyJobDetailsInput
|
501
|
+
attr_accessor job_id: ::String
|
502
|
+
attr_accessor client_token: ::String
|
503
|
+
SENSITIVE: []
|
504
|
+
end
|
505
|
+
|
506
|
+
class GetThirdPartyJobDetailsOutput
|
507
|
+
attr_accessor job_details: Types::ThirdPartyJobDetails
|
508
|
+
SENSITIVE: []
|
509
|
+
end
|
510
|
+
|
511
|
+
class GitBranchFilterCriteria
|
512
|
+
attr_accessor includes: ::Array[::String]
|
513
|
+
attr_accessor excludes: ::Array[::String]
|
514
|
+
SENSITIVE: []
|
515
|
+
end
|
516
|
+
|
517
|
+
class GitConfiguration
|
518
|
+
attr_accessor source_action_name: ::String
|
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
|
534
|
+
SENSITIVE: []
|
535
|
+
end
|
536
|
+
|
537
|
+
class GitPushFilter
|
538
|
+
attr_accessor tags: Types::GitTagFilterCriteria
|
539
|
+
attr_accessor branches: Types::GitBranchFilterCriteria
|
540
|
+
attr_accessor file_paths: Types::GitFilePathFilterCriteria
|
541
|
+
SENSITIVE: []
|
542
|
+
end
|
543
|
+
|
544
|
+
class GitTagFilterCriteria
|
545
|
+
attr_accessor includes: ::Array[::String]
|
546
|
+
attr_accessor excludes: ::Array[::String]
|
547
|
+
SENSITIVE: []
|
548
|
+
end
|
549
|
+
|
550
|
+
class InputArtifact
|
551
|
+
attr_accessor name: ::String
|
552
|
+
SENSITIVE: []
|
553
|
+
end
|
554
|
+
|
555
|
+
class InvalidActionDeclarationException < Aws::EmptyStructure
|
556
|
+
end
|
557
|
+
|
558
|
+
class InvalidApprovalTokenException < Aws::EmptyStructure
|
559
|
+
end
|
560
|
+
|
561
|
+
class InvalidArnException
|
562
|
+
attr_accessor message: ::String
|
563
|
+
SENSITIVE: []
|
564
|
+
end
|
565
|
+
|
566
|
+
class InvalidBlockerDeclarationException < Aws::EmptyStructure
|
567
|
+
end
|
568
|
+
|
569
|
+
class InvalidClientTokenException < Aws::EmptyStructure
|
570
|
+
end
|
571
|
+
|
572
|
+
class InvalidJobException < Aws::EmptyStructure
|
573
|
+
end
|
574
|
+
|
575
|
+
class InvalidJobStateException < Aws::EmptyStructure
|
576
|
+
end
|
577
|
+
|
578
|
+
class InvalidNextTokenException < Aws::EmptyStructure
|
579
|
+
end
|
580
|
+
|
581
|
+
class InvalidNonceException < Aws::EmptyStructure
|
582
|
+
end
|
583
|
+
|
584
|
+
class InvalidStageDeclarationException < Aws::EmptyStructure
|
585
|
+
end
|
586
|
+
|
587
|
+
class InvalidStructureException < Aws::EmptyStructure
|
588
|
+
end
|
589
|
+
|
590
|
+
class InvalidTagsException
|
591
|
+
attr_accessor message: ::String
|
592
|
+
SENSITIVE: []
|
593
|
+
end
|
594
|
+
|
595
|
+
class InvalidWebhookAuthenticationParametersException < Aws::EmptyStructure
|
596
|
+
end
|
597
|
+
|
598
|
+
class InvalidWebhookFilterPatternException < Aws::EmptyStructure
|
599
|
+
end
|
600
|
+
|
601
|
+
class Job
|
602
|
+
attr_accessor id: ::String
|
603
|
+
attr_accessor data: Types::JobData
|
604
|
+
attr_accessor nonce: ::String
|
605
|
+
attr_accessor account_id: ::String
|
606
|
+
SENSITIVE: []
|
607
|
+
end
|
608
|
+
|
609
|
+
class JobData
|
610
|
+
attr_accessor action_type_id: Types::ActionTypeId
|
611
|
+
attr_accessor action_configuration: Types::ActionConfiguration
|
612
|
+
attr_accessor pipeline_context: Types::PipelineContext
|
613
|
+
attr_accessor input_artifacts: ::Array[Types::Artifact]
|
614
|
+
attr_accessor output_artifacts: ::Array[Types::Artifact]
|
615
|
+
attr_accessor artifact_credentials: Types::AWSSessionCredentials
|
616
|
+
attr_accessor continuation_token: ::String
|
617
|
+
attr_accessor encryption_key: Types::EncryptionKey
|
618
|
+
SENSITIVE: [:artifact_credentials]
|
619
|
+
end
|
620
|
+
|
621
|
+
class JobDetails
|
622
|
+
attr_accessor id: ::String
|
623
|
+
attr_accessor data: Types::JobData
|
624
|
+
attr_accessor account_id: ::String
|
625
|
+
SENSITIVE: []
|
626
|
+
end
|
627
|
+
|
628
|
+
class JobNotFoundException < Aws::EmptyStructure
|
629
|
+
end
|
630
|
+
|
631
|
+
class JobWorkerExecutorConfiguration
|
632
|
+
attr_accessor polling_accounts: ::Array[::String]
|
633
|
+
attr_accessor polling_service_principals: ::Array[::String]
|
634
|
+
SENSITIVE: []
|
635
|
+
end
|
636
|
+
|
637
|
+
class LambdaExecutorConfiguration
|
638
|
+
attr_accessor lambda_function_arn: ::String
|
639
|
+
SENSITIVE: []
|
640
|
+
end
|
641
|
+
|
642
|
+
class LatestInPipelineExecutionFilter
|
643
|
+
attr_accessor pipeline_execution_id: ::String
|
644
|
+
attr_accessor start_time_range: ("Latest" | "All")
|
645
|
+
SENSITIVE: []
|
646
|
+
end
|
647
|
+
|
648
|
+
class LimitExceededException < Aws::EmptyStructure
|
649
|
+
end
|
650
|
+
|
651
|
+
class ListActionExecutionsInput
|
652
|
+
attr_accessor pipeline_name: ::String
|
653
|
+
attr_accessor filter: Types::ActionExecutionFilter
|
654
|
+
attr_accessor max_results: ::Integer
|
655
|
+
attr_accessor next_token: ::String
|
656
|
+
SENSITIVE: []
|
657
|
+
end
|
658
|
+
|
659
|
+
class ListActionExecutionsOutput
|
660
|
+
attr_accessor action_execution_details: ::Array[Types::ActionExecutionDetail]
|
661
|
+
attr_accessor next_token: ::String
|
662
|
+
SENSITIVE: []
|
663
|
+
end
|
664
|
+
|
665
|
+
class ListActionTypesInput
|
666
|
+
attr_accessor action_owner_filter: ("AWS" | "ThirdParty" | "Custom")
|
667
|
+
attr_accessor next_token: ::String
|
668
|
+
attr_accessor region_filter: ::String
|
669
|
+
SENSITIVE: []
|
670
|
+
end
|
671
|
+
|
672
|
+
class ListActionTypesOutput
|
673
|
+
attr_accessor action_types: ::Array[Types::ActionType]
|
674
|
+
attr_accessor next_token: ::String
|
675
|
+
SENSITIVE: []
|
676
|
+
end
|
677
|
+
|
678
|
+
class ListPipelineExecutionsInput
|
679
|
+
attr_accessor pipeline_name: ::String
|
680
|
+
attr_accessor max_results: ::Integer
|
681
|
+
attr_accessor next_token: ::String
|
682
|
+
SENSITIVE: []
|
683
|
+
end
|
684
|
+
|
685
|
+
class ListPipelineExecutionsOutput
|
686
|
+
attr_accessor pipeline_execution_summaries: ::Array[Types::PipelineExecutionSummary]
|
687
|
+
attr_accessor next_token: ::String
|
688
|
+
SENSITIVE: []
|
689
|
+
end
|
690
|
+
|
691
|
+
class ListPipelinesInput
|
692
|
+
attr_accessor next_token: ::String
|
693
|
+
attr_accessor max_results: ::Integer
|
694
|
+
SENSITIVE: []
|
695
|
+
end
|
696
|
+
|
697
|
+
class ListPipelinesOutput
|
698
|
+
attr_accessor pipelines: ::Array[Types::PipelineSummary]
|
699
|
+
attr_accessor next_token: ::String
|
700
|
+
SENSITIVE: []
|
701
|
+
end
|
702
|
+
|
703
|
+
class ListTagsForResourceInput
|
704
|
+
attr_accessor resource_arn: ::String
|
705
|
+
attr_accessor next_token: ::String
|
706
|
+
attr_accessor max_results: ::Integer
|
707
|
+
SENSITIVE: []
|
708
|
+
end
|
709
|
+
|
710
|
+
class ListTagsForResourceOutput
|
711
|
+
attr_accessor tags: ::Array[Types::Tag]
|
712
|
+
attr_accessor next_token: ::String
|
713
|
+
SENSITIVE: []
|
714
|
+
end
|
715
|
+
|
716
|
+
class ListWebhookItem
|
717
|
+
attr_accessor definition: Types::WebhookDefinition
|
718
|
+
attr_accessor url: ::String
|
719
|
+
attr_accessor error_message: ::String
|
720
|
+
attr_accessor error_code: ::String
|
721
|
+
attr_accessor last_triggered: ::Time
|
722
|
+
attr_accessor arn: ::String
|
723
|
+
attr_accessor tags: ::Array[Types::Tag]
|
724
|
+
SENSITIVE: []
|
725
|
+
end
|
726
|
+
|
727
|
+
class ListWebhooksInput
|
728
|
+
attr_accessor next_token: ::String
|
729
|
+
attr_accessor max_results: ::Integer
|
730
|
+
SENSITIVE: []
|
731
|
+
end
|
732
|
+
|
733
|
+
class ListWebhooksOutput
|
734
|
+
attr_accessor webhooks: ::Array[Types::ListWebhookItem]
|
735
|
+
attr_accessor next_token: ::String
|
736
|
+
SENSITIVE: []
|
737
|
+
end
|
738
|
+
|
739
|
+
class NotLatestPipelineExecutionException < Aws::EmptyStructure
|
740
|
+
end
|
741
|
+
|
742
|
+
class OutputArtifact
|
743
|
+
attr_accessor name: ::String
|
744
|
+
SENSITIVE: []
|
745
|
+
end
|
746
|
+
|
747
|
+
class OutputVariablesSizeExceededException
|
748
|
+
attr_accessor message: ::String
|
749
|
+
SENSITIVE: []
|
750
|
+
end
|
751
|
+
|
752
|
+
class PipelineContext
|
753
|
+
attr_accessor pipeline_name: ::String
|
754
|
+
attr_accessor stage: Types::StageContext
|
755
|
+
attr_accessor action: Types::ActionContext
|
756
|
+
attr_accessor pipeline_arn: ::String
|
757
|
+
attr_accessor pipeline_execution_id: ::String
|
758
|
+
SENSITIVE: []
|
759
|
+
end
|
760
|
+
|
761
|
+
class PipelineDeclaration
|
762
|
+
attr_accessor name: ::String
|
763
|
+
attr_accessor role_arn: ::String
|
764
|
+
attr_accessor artifact_store: Types::ArtifactStore
|
765
|
+
attr_accessor artifact_stores: ::Hash[::String, Types::ArtifactStore]
|
766
|
+
attr_accessor stages: ::Array[Types::StageDeclaration]
|
767
|
+
attr_accessor version: ::Integer
|
768
|
+
attr_accessor execution_mode: ("QUEUED" | "SUPERSEDED" | "PARALLEL")
|
769
|
+
attr_accessor pipeline_type: ("V1" | "V2")
|
770
|
+
attr_accessor variables: ::Array[Types::PipelineVariableDeclaration]
|
771
|
+
attr_accessor triggers: ::Array[Types::PipelineTriggerDeclaration]
|
772
|
+
SENSITIVE: []
|
773
|
+
end
|
774
|
+
|
775
|
+
class PipelineExecution
|
776
|
+
attr_accessor pipeline_name: ::String
|
777
|
+
attr_accessor pipeline_version: ::Integer
|
778
|
+
attr_accessor pipeline_execution_id: ::String
|
779
|
+
attr_accessor status: ("Cancelled" | "InProgress" | "Stopped" | "Stopping" | "Succeeded" | "Superseded" | "Failed")
|
780
|
+
attr_accessor status_summary: ::String
|
781
|
+
attr_accessor artifact_revisions: ::Array[Types::ArtifactRevision]
|
782
|
+
attr_accessor variables: ::Array[Types::ResolvedPipelineVariable]
|
783
|
+
attr_accessor trigger: Types::ExecutionTrigger
|
784
|
+
attr_accessor execution_mode: ("QUEUED" | "SUPERSEDED" | "PARALLEL")
|
785
|
+
SENSITIVE: []
|
786
|
+
end
|
787
|
+
|
788
|
+
class PipelineExecutionNotFoundException < Aws::EmptyStructure
|
789
|
+
end
|
790
|
+
|
791
|
+
class PipelineExecutionNotStoppableException
|
792
|
+
attr_accessor message: ::String
|
793
|
+
SENSITIVE: []
|
794
|
+
end
|
795
|
+
|
796
|
+
class PipelineExecutionSummary
|
797
|
+
attr_accessor pipeline_execution_id: ::String
|
798
|
+
attr_accessor status: ("Cancelled" | "InProgress" | "Stopped" | "Stopping" | "Succeeded" | "Superseded" | "Failed")
|
799
|
+
attr_accessor start_time: ::Time
|
800
|
+
attr_accessor last_update_time: ::Time
|
801
|
+
attr_accessor source_revisions: ::Array[Types::SourceRevision]
|
802
|
+
attr_accessor trigger: Types::ExecutionTrigger
|
803
|
+
attr_accessor stop_trigger: Types::StopExecutionTrigger
|
804
|
+
attr_accessor execution_mode: ("QUEUED" | "SUPERSEDED" | "PARALLEL")
|
805
|
+
SENSITIVE: []
|
806
|
+
end
|
807
|
+
|
808
|
+
class PipelineMetadata
|
809
|
+
attr_accessor pipeline_arn: ::String
|
810
|
+
attr_accessor created: ::Time
|
811
|
+
attr_accessor updated: ::Time
|
812
|
+
attr_accessor polling_disabled_at: ::Time
|
813
|
+
SENSITIVE: []
|
814
|
+
end
|
815
|
+
|
816
|
+
class PipelineNameInUseException < Aws::EmptyStructure
|
817
|
+
end
|
818
|
+
|
819
|
+
class PipelineNotFoundException < Aws::EmptyStructure
|
820
|
+
end
|
821
|
+
|
822
|
+
class PipelineSummary
|
823
|
+
attr_accessor name: ::String
|
824
|
+
attr_accessor version: ::Integer
|
825
|
+
attr_accessor pipeline_type: ("V1" | "V2")
|
826
|
+
attr_accessor execution_mode: ("QUEUED" | "SUPERSEDED" | "PARALLEL")
|
827
|
+
attr_accessor created: ::Time
|
828
|
+
attr_accessor updated: ::Time
|
829
|
+
SENSITIVE: []
|
830
|
+
end
|
831
|
+
|
832
|
+
class PipelineTriggerDeclaration
|
833
|
+
attr_accessor provider_type: ("CodeStarSourceConnection")
|
834
|
+
attr_accessor git_configuration: Types::GitConfiguration
|
835
|
+
SENSITIVE: []
|
836
|
+
end
|
837
|
+
|
838
|
+
class PipelineVariable
|
839
|
+
attr_accessor name: ::String
|
840
|
+
attr_accessor value: ::String
|
841
|
+
SENSITIVE: []
|
842
|
+
end
|
843
|
+
|
844
|
+
class PipelineVariableDeclaration
|
845
|
+
attr_accessor name: ::String
|
846
|
+
attr_accessor default_value: ::String
|
847
|
+
attr_accessor description: ::String
|
848
|
+
SENSITIVE: []
|
849
|
+
end
|
850
|
+
|
851
|
+
class PipelineVersionNotFoundException < Aws::EmptyStructure
|
852
|
+
end
|
853
|
+
|
854
|
+
class PollForJobsInput
|
855
|
+
attr_accessor action_type_id: Types::ActionTypeId
|
856
|
+
attr_accessor max_batch_size: ::Integer
|
857
|
+
attr_accessor query_param: ::Hash[::String, ::String]
|
858
|
+
SENSITIVE: []
|
859
|
+
end
|
860
|
+
|
861
|
+
class PollForJobsOutput
|
862
|
+
attr_accessor jobs: ::Array[Types::Job]
|
863
|
+
SENSITIVE: []
|
864
|
+
end
|
865
|
+
|
866
|
+
class PollForThirdPartyJobsInput
|
867
|
+
attr_accessor action_type_id: Types::ActionTypeId
|
868
|
+
attr_accessor max_batch_size: ::Integer
|
869
|
+
SENSITIVE: []
|
870
|
+
end
|
871
|
+
|
872
|
+
class PollForThirdPartyJobsOutput
|
873
|
+
attr_accessor jobs: ::Array[Types::ThirdPartyJob]
|
874
|
+
SENSITIVE: []
|
875
|
+
end
|
876
|
+
|
877
|
+
class PutActionRevisionInput
|
878
|
+
attr_accessor pipeline_name: ::String
|
879
|
+
attr_accessor stage_name: ::String
|
880
|
+
attr_accessor action_name: ::String
|
881
|
+
attr_accessor action_revision: Types::ActionRevision
|
882
|
+
SENSITIVE: []
|
883
|
+
end
|
884
|
+
|
885
|
+
class PutActionRevisionOutput
|
886
|
+
attr_accessor new_revision: bool
|
887
|
+
attr_accessor pipeline_execution_id: ::String
|
888
|
+
SENSITIVE: []
|
889
|
+
end
|
890
|
+
|
891
|
+
class PutApprovalResultInput
|
892
|
+
attr_accessor pipeline_name: ::String
|
893
|
+
attr_accessor stage_name: ::String
|
894
|
+
attr_accessor action_name: ::String
|
895
|
+
attr_accessor result: Types::ApprovalResult
|
896
|
+
attr_accessor token: ::String
|
897
|
+
SENSITIVE: []
|
898
|
+
end
|
899
|
+
|
900
|
+
class PutApprovalResultOutput
|
901
|
+
attr_accessor approved_at: ::Time
|
902
|
+
SENSITIVE: []
|
903
|
+
end
|
904
|
+
|
905
|
+
class PutJobFailureResultInput
|
906
|
+
attr_accessor job_id: ::String
|
907
|
+
attr_accessor failure_details: Types::FailureDetails
|
908
|
+
SENSITIVE: []
|
909
|
+
end
|
910
|
+
|
911
|
+
class PutJobSuccessResultInput
|
912
|
+
attr_accessor job_id: ::String
|
913
|
+
attr_accessor current_revision: Types::CurrentRevision
|
914
|
+
attr_accessor continuation_token: ::String
|
915
|
+
attr_accessor execution_details: Types::ExecutionDetails
|
916
|
+
attr_accessor output_variables: ::Hash[::String, ::String]
|
917
|
+
SENSITIVE: []
|
918
|
+
end
|
919
|
+
|
920
|
+
class PutThirdPartyJobFailureResultInput
|
921
|
+
attr_accessor job_id: ::String
|
922
|
+
attr_accessor client_token: ::String
|
923
|
+
attr_accessor failure_details: Types::FailureDetails
|
924
|
+
SENSITIVE: []
|
925
|
+
end
|
926
|
+
|
927
|
+
class PutThirdPartyJobSuccessResultInput
|
928
|
+
attr_accessor job_id: ::String
|
929
|
+
attr_accessor client_token: ::String
|
930
|
+
attr_accessor current_revision: Types::CurrentRevision
|
931
|
+
attr_accessor continuation_token: ::String
|
932
|
+
attr_accessor execution_details: Types::ExecutionDetails
|
933
|
+
SENSITIVE: []
|
934
|
+
end
|
935
|
+
|
936
|
+
class PutWebhookInput
|
937
|
+
attr_accessor webhook: Types::WebhookDefinition
|
938
|
+
attr_accessor tags: ::Array[Types::Tag]
|
939
|
+
SENSITIVE: []
|
940
|
+
end
|
941
|
+
|
942
|
+
class PutWebhookOutput
|
943
|
+
attr_accessor webhook: Types::ListWebhookItem
|
944
|
+
SENSITIVE: []
|
945
|
+
end
|
946
|
+
|
947
|
+
class RegisterWebhookWithThirdPartyInput
|
948
|
+
attr_accessor webhook_name: ::String
|
949
|
+
SENSITIVE: []
|
950
|
+
end
|
951
|
+
|
952
|
+
class RegisterWebhookWithThirdPartyOutput < Aws::EmptyStructure
|
953
|
+
end
|
954
|
+
|
955
|
+
class RequestFailedException
|
956
|
+
attr_accessor message: ::String
|
957
|
+
SENSITIVE: []
|
958
|
+
end
|
959
|
+
|
960
|
+
class ResolvedPipelineVariable
|
961
|
+
attr_accessor name: ::String
|
962
|
+
attr_accessor resolved_value: ::String
|
963
|
+
SENSITIVE: []
|
964
|
+
end
|
965
|
+
|
966
|
+
class ResourceNotFoundException < Aws::EmptyStructure
|
967
|
+
end
|
968
|
+
|
969
|
+
class RetryStageExecutionInput
|
970
|
+
attr_accessor pipeline_name: ::String
|
971
|
+
attr_accessor stage_name: ::String
|
972
|
+
attr_accessor pipeline_execution_id: ::String
|
973
|
+
attr_accessor retry_mode: ("FAILED_ACTIONS" | "ALL_ACTIONS")
|
974
|
+
SENSITIVE: []
|
975
|
+
end
|
976
|
+
|
977
|
+
class RetryStageExecutionOutput
|
978
|
+
attr_accessor pipeline_execution_id: ::String
|
979
|
+
SENSITIVE: []
|
980
|
+
end
|
981
|
+
|
982
|
+
class S3ArtifactLocation
|
983
|
+
attr_accessor bucket_name: ::String
|
984
|
+
attr_accessor object_key: ::String
|
985
|
+
SENSITIVE: []
|
986
|
+
end
|
987
|
+
|
988
|
+
class S3Location
|
989
|
+
attr_accessor bucket: ::String
|
990
|
+
attr_accessor key: ::String
|
991
|
+
SENSITIVE: []
|
992
|
+
end
|
993
|
+
|
994
|
+
class SourceRevision
|
995
|
+
attr_accessor action_name: ::String
|
996
|
+
attr_accessor revision_id: ::String
|
997
|
+
attr_accessor revision_summary: ::String
|
998
|
+
attr_accessor revision_url: ::String
|
999
|
+
SENSITIVE: []
|
1000
|
+
end
|
1001
|
+
|
1002
|
+
class SourceRevisionOverride
|
1003
|
+
attr_accessor action_name: ::String
|
1004
|
+
attr_accessor revision_type: ("COMMIT_ID" | "IMAGE_DIGEST" | "S3_OBJECT_VERSION_ID")
|
1005
|
+
attr_accessor revision_value: ::String
|
1006
|
+
SENSITIVE: []
|
1007
|
+
end
|
1008
|
+
|
1009
|
+
class StageContext
|
1010
|
+
attr_accessor name: ::String
|
1011
|
+
SENSITIVE: []
|
1012
|
+
end
|
1013
|
+
|
1014
|
+
class StageDeclaration
|
1015
|
+
attr_accessor name: ::String
|
1016
|
+
attr_accessor blockers: ::Array[Types::BlockerDeclaration]
|
1017
|
+
attr_accessor actions: ::Array[Types::ActionDeclaration]
|
1018
|
+
SENSITIVE: []
|
1019
|
+
end
|
1020
|
+
|
1021
|
+
class StageExecution
|
1022
|
+
attr_accessor pipeline_execution_id: ::String
|
1023
|
+
attr_accessor status: ("Cancelled" | "InProgress" | "Failed" | "Stopped" | "Stopping" | "Succeeded")
|
1024
|
+
SENSITIVE: []
|
1025
|
+
end
|
1026
|
+
|
1027
|
+
class StageNotFoundException < Aws::EmptyStructure
|
1028
|
+
end
|
1029
|
+
|
1030
|
+
class StageNotRetryableException < Aws::EmptyStructure
|
1031
|
+
end
|
1032
|
+
|
1033
|
+
class StageState
|
1034
|
+
attr_accessor stage_name: ::String
|
1035
|
+
attr_accessor inbound_execution: Types::StageExecution
|
1036
|
+
attr_accessor inbound_executions: ::Array[Types::StageExecution]
|
1037
|
+
attr_accessor inbound_transition_state: Types::TransitionState
|
1038
|
+
attr_accessor action_states: ::Array[Types::ActionState]
|
1039
|
+
attr_accessor latest_execution: Types::StageExecution
|
1040
|
+
SENSITIVE: []
|
1041
|
+
end
|
1042
|
+
|
1043
|
+
class StartPipelineExecutionInput
|
1044
|
+
attr_accessor name: ::String
|
1045
|
+
attr_accessor variables: ::Array[Types::PipelineVariable]
|
1046
|
+
attr_accessor client_request_token: ::String
|
1047
|
+
attr_accessor source_revisions: ::Array[Types::SourceRevisionOverride]
|
1048
|
+
SENSITIVE: []
|
1049
|
+
end
|
1050
|
+
|
1051
|
+
class StartPipelineExecutionOutput
|
1052
|
+
attr_accessor pipeline_execution_id: ::String
|
1053
|
+
SENSITIVE: []
|
1054
|
+
end
|
1055
|
+
|
1056
|
+
class StopExecutionTrigger
|
1057
|
+
attr_accessor reason: ::String
|
1058
|
+
SENSITIVE: []
|
1059
|
+
end
|
1060
|
+
|
1061
|
+
class StopPipelineExecutionInput
|
1062
|
+
attr_accessor pipeline_name: ::String
|
1063
|
+
attr_accessor pipeline_execution_id: ::String
|
1064
|
+
attr_accessor abandon: bool
|
1065
|
+
attr_accessor reason: ::String
|
1066
|
+
SENSITIVE: []
|
1067
|
+
end
|
1068
|
+
|
1069
|
+
class StopPipelineExecutionOutput
|
1070
|
+
attr_accessor pipeline_execution_id: ::String
|
1071
|
+
SENSITIVE: []
|
1072
|
+
end
|
1073
|
+
|
1074
|
+
class Tag
|
1075
|
+
attr_accessor key: ::String
|
1076
|
+
attr_accessor value: ::String
|
1077
|
+
SENSITIVE: []
|
1078
|
+
end
|
1079
|
+
|
1080
|
+
class TagResourceInput
|
1081
|
+
attr_accessor resource_arn: ::String
|
1082
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1083
|
+
SENSITIVE: []
|
1084
|
+
end
|
1085
|
+
|
1086
|
+
class TagResourceOutput < Aws::EmptyStructure
|
1087
|
+
end
|
1088
|
+
|
1089
|
+
class ThirdPartyJob
|
1090
|
+
attr_accessor client_id: ::String
|
1091
|
+
attr_accessor job_id: ::String
|
1092
|
+
SENSITIVE: []
|
1093
|
+
end
|
1094
|
+
|
1095
|
+
class ThirdPartyJobData
|
1096
|
+
attr_accessor action_type_id: Types::ActionTypeId
|
1097
|
+
attr_accessor action_configuration: Types::ActionConfiguration
|
1098
|
+
attr_accessor pipeline_context: Types::PipelineContext
|
1099
|
+
attr_accessor input_artifacts: ::Array[Types::Artifact]
|
1100
|
+
attr_accessor output_artifacts: ::Array[Types::Artifact]
|
1101
|
+
attr_accessor artifact_credentials: Types::AWSSessionCredentials
|
1102
|
+
attr_accessor continuation_token: ::String
|
1103
|
+
attr_accessor encryption_key: Types::EncryptionKey
|
1104
|
+
SENSITIVE: [:artifact_credentials]
|
1105
|
+
end
|
1106
|
+
|
1107
|
+
class ThirdPartyJobDetails
|
1108
|
+
attr_accessor id: ::String
|
1109
|
+
attr_accessor data: Types::ThirdPartyJobData
|
1110
|
+
attr_accessor nonce: ::String
|
1111
|
+
SENSITIVE: []
|
1112
|
+
end
|
1113
|
+
|
1114
|
+
class TooManyTagsException
|
1115
|
+
attr_accessor message: ::String
|
1116
|
+
SENSITIVE: []
|
1117
|
+
end
|
1118
|
+
|
1119
|
+
class TransitionState
|
1120
|
+
attr_accessor enabled: bool
|
1121
|
+
attr_accessor last_changed_by: ::String
|
1122
|
+
attr_accessor last_changed_at: ::Time
|
1123
|
+
attr_accessor disabled_reason: ::String
|
1124
|
+
SENSITIVE: []
|
1125
|
+
end
|
1126
|
+
|
1127
|
+
class UntagResourceInput
|
1128
|
+
attr_accessor resource_arn: ::String
|
1129
|
+
attr_accessor tag_keys: ::Array[::String]
|
1130
|
+
SENSITIVE: []
|
1131
|
+
end
|
1132
|
+
|
1133
|
+
class UntagResourceOutput < Aws::EmptyStructure
|
1134
|
+
end
|
1135
|
+
|
1136
|
+
class UpdateActionTypeInput
|
1137
|
+
attr_accessor action_type: Types::ActionTypeDeclaration
|
1138
|
+
SENSITIVE: []
|
1139
|
+
end
|
1140
|
+
|
1141
|
+
class UpdatePipelineInput
|
1142
|
+
attr_accessor pipeline: Types::PipelineDeclaration
|
1143
|
+
SENSITIVE: []
|
1144
|
+
end
|
1145
|
+
|
1146
|
+
class UpdatePipelineOutput
|
1147
|
+
attr_accessor pipeline: Types::PipelineDeclaration
|
1148
|
+
SENSITIVE: []
|
1149
|
+
end
|
1150
|
+
|
1151
|
+
class ValidationException < Aws::EmptyStructure
|
1152
|
+
end
|
1153
|
+
|
1154
|
+
class WebhookAuthConfiguration
|
1155
|
+
attr_accessor allowed_ip_range: ::String
|
1156
|
+
attr_accessor secret_token: ::String
|
1157
|
+
SENSITIVE: []
|
1158
|
+
end
|
1159
|
+
|
1160
|
+
class WebhookDefinition
|
1161
|
+
attr_accessor name: ::String
|
1162
|
+
attr_accessor target_pipeline: ::String
|
1163
|
+
attr_accessor target_action: ::String
|
1164
|
+
attr_accessor filters: ::Array[Types::WebhookFilterRule]
|
1165
|
+
attr_accessor authentication: ("GITHUB_HMAC" | "IP" | "UNAUTHENTICATED")
|
1166
|
+
attr_accessor authentication_configuration: Types::WebhookAuthConfiguration
|
1167
|
+
SENSITIVE: []
|
1168
|
+
end
|
1169
|
+
|
1170
|
+
class WebhookFilterRule
|
1171
|
+
attr_accessor json_path: ::String
|
1172
|
+
attr_accessor match_equals: ::String
|
1173
|
+
SENSITIVE: []
|
1174
|
+
end
|
1175
|
+
|
1176
|
+
class WebhookNotFoundException < Aws::EmptyStructure
|
1177
|
+
end
|
1178
|
+
end
|
1179
|
+
end
|