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