@aws-sdk/client-codepipeline 3.296.0 → 3.297.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.
- package/dist-types/CodePipeline.d.ts +40 -0
- package/dist-types/CodePipelineClient.d.ts +24 -4
- package/dist-types/commands/AcknowledgeJobCommand.d.ts +16 -0
- package/dist-types/commands/AcknowledgeThirdPartyJobCommand.d.ts +16 -0
- package/dist-types/commands/CreateCustomActionTypeCommand.d.ts +16 -0
- package/dist-types/commands/CreatePipelineCommand.d.ts +16 -0
- package/dist-types/commands/DeleteCustomActionTypeCommand.d.ts +16 -0
- package/dist-types/commands/DeletePipelineCommand.d.ts +16 -0
- package/dist-types/commands/DeleteWebhookCommand.d.ts +16 -0
- package/dist-types/commands/DeregisterWebhookWithThirdPartyCommand.d.ts +16 -0
- package/dist-types/commands/DisableStageTransitionCommand.d.ts +16 -0
- package/dist-types/commands/EnableStageTransitionCommand.d.ts +16 -0
- package/dist-types/commands/GetActionTypeCommand.d.ts +16 -0
- package/dist-types/commands/GetJobDetailsCommand.d.ts +16 -0
- package/dist-types/commands/GetPipelineCommand.d.ts +16 -0
- package/dist-types/commands/GetPipelineExecutionCommand.d.ts +16 -0
- package/dist-types/commands/GetPipelineStateCommand.d.ts +16 -0
- package/dist-types/commands/GetThirdPartyJobDetailsCommand.d.ts +16 -0
- package/dist-types/commands/ListActionExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/ListActionTypesCommand.d.ts +16 -0
- package/dist-types/commands/ListPipelineExecutionsCommand.d.ts +16 -0
- package/dist-types/commands/ListPipelinesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/ListWebhooksCommand.d.ts +16 -0
- package/dist-types/commands/PollForJobsCommand.d.ts +16 -0
- package/dist-types/commands/PollForThirdPartyJobsCommand.d.ts +16 -0
- package/dist-types/commands/PutActionRevisionCommand.d.ts +16 -0
- package/dist-types/commands/PutApprovalResultCommand.d.ts +16 -0
- package/dist-types/commands/PutJobFailureResultCommand.d.ts +16 -0
- package/dist-types/commands/PutJobSuccessResultCommand.d.ts +16 -0
- package/dist-types/commands/PutThirdPartyJobFailureResultCommand.d.ts +16 -0
- package/dist-types/commands/PutThirdPartyJobSuccessResultCommand.d.ts +16 -0
- package/dist-types/commands/PutWebhookCommand.d.ts +16 -0
- package/dist-types/commands/RegisterWebhookWithThirdPartyCommand.d.ts +16 -0
- package/dist-types/commands/RetryStageExecutionCommand.d.ts +16 -0
- package/dist-types/commands/StartPipelineExecutionCommand.d.ts +16 -0
- package/dist-types/commands/StopPipelineExecutionCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateActionTypeCommand.d.ts +16 -0
- package/dist-types/commands/UpdatePipelineCommand.d.ts +16 -0
- package/dist-types/models/CodePipelineServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +276 -3
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListActionExecutionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListActionTypesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPipelineExecutionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPipelinesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
- package/dist-types/pagination/ListWebhooksPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -40,6 +40,7 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
40
40
|
import { UpdateActionTypeCommandInput, UpdateActionTypeCommandOutput } from "./commands/UpdateActionTypeCommand";
|
|
41
41
|
import { UpdatePipelineCommandInput, UpdatePipelineCommandOutput } from "./commands/UpdatePipelineCommand";
|
|
42
42
|
/**
|
|
43
|
+
* @public
|
|
43
44
|
* <fullname>AWS CodePipeline</fullname>
|
|
44
45
|
* <p>
|
|
45
46
|
* <b>Overview</b>
|
|
@@ -238,6 +239,7 @@ import { UpdatePipelineCommandInput, UpdatePipelineCommandOutput } from "./comma
|
|
|
238
239
|
*/
|
|
239
240
|
export declare class CodePipeline extends CodePipelineClient {
|
|
240
241
|
/**
|
|
242
|
+
* @public
|
|
241
243
|
* <p>Returns information about a specified job and whether that job has been received by
|
|
242
244
|
* the job worker. Used for custom actions only.</p>
|
|
243
245
|
*/
|
|
@@ -245,6 +247,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
245
247
|
acknowledgeJob(args: AcknowledgeJobCommandInput, cb: (err: any, data?: AcknowledgeJobCommandOutput) => void): void;
|
|
246
248
|
acknowledgeJob(args: AcknowledgeJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcknowledgeJobCommandOutput) => void): void;
|
|
247
249
|
/**
|
|
250
|
+
* @public
|
|
248
251
|
* <p>Confirms a job worker has received the specified job. Used for partner actions
|
|
249
252
|
* only.</p>
|
|
250
253
|
*/
|
|
@@ -252,6 +255,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
252
255
|
acknowledgeThirdPartyJob(args: AcknowledgeThirdPartyJobCommandInput, cb: (err: any, data?: AcknowledgeThirdPartyJobCommandOutput) => void): void;
|
|
253
256
|
acknowledgeThirdPartyJob(args: AcknowledgeThirdPartyJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcknowledgeThirdPartyJobCommandOutput) => void): void;
|
|
254
257
|
/**
|
|
258
|
+
* @public
|
|
255
259
|
* <p>Creates a new custom action that can be used in all pipelines associated with the
|
|
256
260
|
* AWS account. Only used for custom actions.</p>
|
|
257
261
|
*/
|
|
@@ -259,6 +263,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
259
263
|
createCustomActionType(args: CreateCustomActionTypeCommandInput, cb: (err: any, data?: CreateCustomActionTypeCommandOutput) => void): void;
|
|
260
264
|
createCustomActionType(args: CreateCustomActionTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateCustomActionTypeCommandOutput) => void): void;
|
|
261
265
|
/**
|
|
266
|
+
* @public
|
|
262
267
|
* <p>Creates a pipeline.</p>
|
|
263
268
|
* <note>
|
|
264
269
|
* <p>In the pipeline structure, you must include either <code>artifactStore</code>
|
|
@@ -271,6 +276,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
271
276
|
createPipeline(args: CreatePipelineCommandInput, cb: (err: any, data?: CreatePipelineCommandOutput) => void): void;
|
|
272
277
|
createPipeline(args: CreatePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreatePipelineCommandOutput) => void): void;
|
|
273
278
|
/**
|
|
279
|
+
* @public
|
|
274
280
|
* <p>Marks a custom action as deleted. <code>PollForJobs</code> for the custom action
|
|
275
281
|
* fails after the action is marked for deletion. Used for custom actions only.</p>
|
|
276
282
|
* <important>
|
|
@@ -285,12 +291,14 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
285
291
|
deleteCustomActionType(args: DeleteCustomActionTypeCommandInput, cb: (err: any, data?: DeleteCustomActionTypeCommandOutput) => void): void;
|
|
286
292
|
deleteCustomActionType(args: DeleteCustomActionTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteCustomActionTypeCommandOutput) => void): void;
|
|
287
293
|
/**
|
|
294
|
+
* @public
|
|
288
295
|
* <p>Deletes the specified pipeline.</p>
|
|
289
296
|
*/
|
|
290
297
|
deletePipeline(args: DeletePipelineCommandInput, options?: __HttpHandlerOptions): Promise<DeletePipelineCommandOutput>;
|
|
291
298
|
deletePipeline(args: DeletePipelineCommandInput, cb: (err: any, data?: DeletePipelineCommandOutput) => void): void;
|
|
292
299
|
deletePipeline(args: DeletePipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeletePipelineCommandOutput) => void): void;
|
|
293
300
|
/**
|
|
301
|
+
* @public
|
|
294
302
|
* <p>Deletes a previously created webhook by name. Deleting the webhook stops AWS
|
|
295
303
|
* CodePipeline from starting a pipeline every time an external event occurs. The API
|
|
296
304
|
* returns successfully when trying to delete a webhook that is already deleted. If a
|
|
@@ -301,6 +309,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
301
309
|
deleteWebhook(args: DeleteWebhookCommandInput, cb: (err: any, data?: DeleteWebhookCommandOutput) => void): void;
|
|
302
310
|
deleteWebhook(args: DeleteWebhookCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteWebhookCommandOutput) => void): void;
|
|
303
311
|
/**
|
|
312
|
+
* @public
|
|
304
313
|
* <p>Removes the connection between the webhook that was created by CodePipeline and the
|
|
305
314
|
* external tool with events to be detected. Currently supported only for webhooks that
|
|
306
315
|
* target an action type of GitHub.</p>
|
|
@@ -309,6 +318,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
309
318
|
deregisterWebhookWithThirdParty(args: DeregisterWebhookWithThirdPartyCommandInput, cb: (err: any, data?: DeregisterWebhookWithThirdPartyCommandOutput) => void): void;
|
|
310
319
|
deregisterWebhookWithThirdParty(args: DeregisterWebhookWithThirdPartyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeregisterWebhookWithThirdPartyCommandOutput) => void): void;
|
|
311
320
|
/**
|
|
321
|
+
* @public
|
|
312
322
|
* <p>Prevents artifacts in a pipeline from transitioning to the next stage in the
|
|
313
323
|
* pipeline.</p>
|
|
314
324
|
*/
|
|
@@ -316,12 +326,14 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
316
326
|
disableStageTransition(args: DisableStageTransitionCommandInput, cb: (err: any, data?: DisableStageTransitionCommandOutput) => void): void;
|
|
317
327
|
disableStageTransition(args: DisableStageTransitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DisableStageTransitionCommandOutput) => void): void;
|
|
318
328
|
/**
|
|
329
|
+
* @public
|
|
319
330
|
* <p>Enables artifacts in a pipeline to transition to a stage in a pipeline.</p>
|
|
320
331
|
*/
|
|
321
332
|
enableStageTransition(args: EnableStageTransitionCommandInput, options?: __HttpHandlerOptions): Promise<EnableStageTransitionCommandOutput>;
|
|
322
333
|
enableStageTransition(args: EnableStageTransitionCommandInput, cb: (err: any, data?: EnableStageTransitionCommandOutput) => void): void;
|
|
323
334
|
enableStageTransition(args: EnableStageTransitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: EnableStageTransitionCommandOutput) => void): void;
|
|
324
335
|
/**
|
|
336
|
+
* @public
|
|
325
337
|
* <p>Returns information about an action type created for an external provider, where the
|
|
326
338
|
* action is to be used by customers of the external provider. The action can be created
|
|
327
339
|
* with any supported integration model.</p>
|
|
@@ -330,6 +342,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
330
342
|
getActionType(args: GetActionTypeCommandInput, cb: (err: any, data?: GetActionTypeCommandOutput) => void): void;
|
|
331
343
|
getActionType(args: GetActionTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetActionTypeCommandOutput) => void): void;
|
|
332
344
|
/**
|
|
345
|
+
* @public
|
|
333
346
|
* <p>Returns information about a job. Used for custom actions only.</p>
|
|
334
347
|
* <important>
|
|
335
348
|
* <p>When this API is called, AWS CodePipeline returns temporary credentials for the
|
|
@@ -342,6 +355,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
342
355
|
getJobDetails(args: GetJobDetailsCommandInput, cb: (err: any, data?: GetJobDetailsCommandOutput) => void): void;
|
|
343
356
|
getJobDetails(args: GetJobDetailsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetJobDetailsCommandOutput) => void): void;
|
|
344
357
|
/**
|
|
358
|
+
* @public
|
|
345
359
|
* <p>Returns the metadata, structure, stages, and actions of a pipeline. Can be used to
|
|
346
360
|
* return the entire structure of a pipeline in JSON format, which can then be modified and
|
|
347
361
|
* used to update the pipeline structure with <a>UpdatePipeline</a>.</p>
|
|
@@ -350,6 +364,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
350
364
|
getPipeline(args: GetPipelineCommandInput, cb: (err: any, data?: GetPipelineCommandOutput) => void): void;
|
|
351
365
|
getPipeline(args: GetPipelineCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPipelineCommandOutput) => void): void;
|
|
352
366
|
/**
|
|
367
|
+
* @public
|
|
353
368
|
* <p>Returns information about an execution of a pipeline, including details about
|
|
354
369
|
* artifacts, the pipeline execution ID, and the name, version, and status of the
|
|
355
370
|
* pipeline.</p>
|
|
@@ -358,6 +373,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
358
373
|
getPipelineExecution(args: GetPipelineExecutionCommandInput, cb: (err: any, data?: GetPipelineExecutionCommandOutput) => void): void;
|
|
359
374
|
getPipelineExecution(args: GetPipelineExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPipelineExecutionCommandOutput) => void): void;
|
|
360
375
|
/**
|
|
376
|
+
* @public
|
|
361
377
|
* <p>Returns information about the state of a pipeline, including the stages and
|
|
362
378
|
* actions.</p>
|
|
363
379
|
* <note>
|
|
@@ -370,6 +386,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
370
386
|
getPipelineState(args: GetPipelineStateCommandInput, cb: (err: any, data?: GetPipelineStateCommandOutput) => void): void;
|
|
371
387
|
getPipelineState(args: GetPipelineStateCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetPipelineStateCommandOutput) => void): void;
|
|
372
388
|
/**
|
|
389
|
+
* @public
|
|
373
390
|
* <p>Requests the details of a job for a third party action. Used for partner actions
|
|
374
391
|
* only.</p>
|
|
375
392
|
* <important>
|
|
@@ -383,12 +400,14 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
383
400
|
getThirdPartyJobDetails(args: GetThirdPartyJobDetailsCommandInput, cb: (err: any, data?: GetThirdPartyJobDetailsCommandOutput) => void): void;
|
|
384
401
|
getThirdPartyJobDetails(args: GetThirdPartyJobDetailsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetThirdPartyJobDetailsCommandOutput) => void): void;
|
|
385
402
|
/**
|
|
403
|
+
* @public
|
|
386
404
|
* <p>Lists the action executions that have occurred in a pipeline.</p>
|
|
387
405
|
*/
|
|
388
406
|
listActionExecutions(args: ListActionExecutionsCommandInput, options?: __HttpHandlerOptions): Promise<ListActionExecutionsCommandOutput>;
|
|
389
407
|
listActionExecutions(args: ListActionExecutionsCommandInput, cb: (err: any, data?: ListActionExecutionsCommandOutput) => void): void;
|
|
390
408
|
listActionExecutions(args: ListActionExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListActionExecutionsCommandOutput) => void): void;
|
|
391
409
|
/**
|
|
410
|
+
* @public
|
|
392
411
|
* <p>Gets a summary of all AWS CodePipeline action types associated with your
|
|
393
412
|
* account.</p>
|
|
394
413
|
*/
|
|
@@ -396,18 +415,21 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
396
415
|
listActionTypes(args: ListActionTypesCommandInput, cb: (err: any, data?: ListActionTypesCommandOutput) => void): void;
|
|
397
416
|
listActionTypes(args: ListActionTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListActionTypesCommandOutput) => void): void;
|
|
398
417
|
/**
|
|
418
|
+
* @public
|
|
399
419
|
* <p>Gets a summary of the most recent executions for a pipeline.</p>
|
|
400
420
|
*/
|
|
401
421
|
listPipelineExecutions(args: ListPipelineExecutionsCommandInput, options?: __HttpHandlerOptions): Promise<ListPipelineExecutionsCommandOutput>;
|
|
402
422
|
listPipelineExecutions(args: ListPipelineExecutionsCommandInput, cb: (err: any, data?: ListPipelineExecutionsCommandOutput) => void): void;
|
|
403
423
|
listPipelineExecutions(args: ListPipelineExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPipelineExecutionsCommandOutput) => void): void;
|
|
404
424
|
/**
|
|
425
|
+
* @public
|
|
405
426
|
* <p>Gets a summary of all of the pipelines associated with your account.</p>
|
|
406
427
|
*/
|
|
407
428
|
listPipelines(args: ListPipelinesCommandInput, options?: __HttpHandlerOptions): Promise<ListPipelinesCommandOutput>;
|
|
408
429
|
listPipelines(args: ListPipelinesCommandInput, cb: (err: any, data?: ListPipelinesCommandOutput) => void): void;
|
|
409
430
|
listPipelines(args: ListPipelinesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListPipelinesCommandOutput) => void): void;
|
|
410
431
|
/**
|
|
432
|
+
* @public
|
|
411
433
|
* <p>Gets the set of key-value pairs (metadata) that are used to manage the
|
|
412
434
|
* resource.</p>
|
|
413
435
|
*/
|
|
@@ -415,6 +437,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
415
437
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
416
438
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
417
439
|
/**
|
|
440
|
+
* @public
|
|
418
441
|
* <p>Gets a listing of all the webhooks in this AWS Region for this account. The output
|
|
419
442
|
* lists all webhooks and includes the webhook URL and ARN and the configuration for each
|
|
420
443
|
* webhook.</p>
|
|
@@ -423,6 +446,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
423
446
|
listWebhooks(args: ListWebhooksCommandInput, cb: (err: any, data?: ListWebhooksCommandOutput) => void): void;
|
|
424
447
|
listWebhooks(args: ListWebhooksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListWebhooksCommandOutput) => void): void;
|
|
425
448
|
/**
|
|
449
|
+
* @public
|
|
426
450
|
* <p>Returns information about any jobs for AWS CodePipeline to act on.
|
|
427
451
|
* <code>PollForJobs</code> is valid only for action types with "Custom" in the owner
|
|
428
452
|
* field. If the action type contains "AWS" or "ThirdParty" in the owner field, the
|
|
@@ -438,6 +462,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
438
462
|
pollForJobs(args: PollForJobsCommandInput, cb: (err: any, data?: PollForJobsCommandOutput) => void): void;
|
|
439
463
|
pollForJobs(args: PollForJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PollForJobsCommandOutput) => void): void;
|
|
440
464
|
/**
|
|
465
|
+
* @public
|
|
441
466
|
* <p>Determines whether there are any third party jobs for a job worker to act on. Used
|
|
442
467
|
* for partner actions only.</p>
|
|
443
468
|
* <important>
|
|
@@ -450,12 +475,14 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
450
475
|
pollForThirdPartyJobs(args: PollForThirdPartyJobsCommandInput, cb: (err: any, data?: PollForThirdPartyJobsCommandOutput) => void): void;
|
|
451
476
|
pollForThirdPartyJobs(args: PollForThirdPartyJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PollForThirdPartyJobsCommandOutput) => void): void;
|
|
452
477
|
/**
|
|
478
|
+
* @public
|
|
453
479
|
* <p>Provides information to AWS CodePipeline about new revisions to a source.</p>
|
|
454
480
|
*/
|
|
455
481
|
putActionRevision(args: PutActionRevisionCommandInput, options?: __HttpHandlerOptions): Promise<PutActionRevisionCommandOutput>;
|
|
456
482
|
putActionRevision(args: PutActionRevisionCommandInput, cb: (err: any, data?: PutActionRevisionCommandOutput) => void): void;
|
|
457
483
|
putActionRevision(args: PutActionRevisionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutActionRevisionCommandOutput) => void): void;
|
|
458
484
|
/**
|
|
485
|
+
* @public
|
|
459
486
|
* <p>Provides the response to a manual approval request to AWS CodePipeline. Valid
|
|
460
487
|
* responses include Approved and Rejected.</p>
|
|
461
488
|
*/
|
|
@@ -463,6 +490,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
463
490
|
putApprovalResult(args: PutApprovalResultCommandInput, cb: (err: any, data?: PutApprovalResultCommandOutput) => void): void;
|
|
464
491
|
putApprovalResult(args: PutApprovalResultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutApprovalResultCommandOutput) => void): void;
|
|
465
492
|
/**
|
|
493
|
+
* @public
|
|
466
494
|
* <p>Represents the failure of a job as returned to the pipeline by a job worker. Used
|
|
467
495
|
* for custom actions only.</p>
|
|
468
496
|
*/
|
|
@@ -470,6 +498,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
470
498
|
putJobFailureResult(args: PutJobFailureResultCommandInput, cb: (err: any, data?: PutJobFailureResultCommandOutput) => void): void;
|
|
471
499
|
putJobFailureResult(args: PutJobFailureResultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutJobFailureResultCommandOutput) => void): void;
|
|
472
500
|
/**
|
|
501
|
+
* @public
|
|
473
502
|
* <p>Represents the success of a job as returned to the pipeline by a job worker. Used
|
|
474
503
|
* for custom actions only.</p>
|
|
475
504
|
*/
|
|
@@ -477,6 +506,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
477
506
|
putJobSuccessResult(args: PutJobSuccessResultCommandInput, cb: (err: any, data?: PutJobSuccessResultCommandOutput) => void): void;
|
|
478
507
|
putJobSuccessResult(args: PutJobSuccessResultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutJobSuccessResultCommandOutput) => void): void;
|
|
479
508
|
/**
|
|
509
|
+
* @public
|
|
480
510
|
* <p>Represents the failure of a third party job as returned to the pipeline by a job
|
|
481
511
|
* worker. Used for partner actions only.</p>
|
|
482
512
|
*/
|
|
@@ -484,6 +514,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
484
514
|
putThirdPartyJobFailureResult(args: PutThirdPartyJobFailureResultCommandInput, cb: (err: any, data?: PutThirdPartyJobFailureResultCommandOutput) => void): void;
|
|
485
515
|
putThirdPartyJobFailureResult(args: PutThirdPartyJobFailureResultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutThirdPartyJobFailureResultCommandOutput) => void): void;
|
|
486
516
|
/**
|
|
517
|
+
* @public
|
|
487
518
|
* <p>Represents the success of a third party job as returned to the pipeline by a job
|
|
488
519
|
* worker. Used for partner actions only.</p>
|
|
489
520
|
*/
|
|
@@ -491,6 +522,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
491
522
|
putThirdPartyJobSuccessResult(args: PutThirdPartyJobSuccessResultCommandInput, cb: (err: any, data?: PutThirdPartyJobSuccessResultCommandOutput) => void): void;
|
|
492
523
|
putThirdPartyJobSuccessResult(args: PutThirdPartyJobSuccessResultCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutThirdPartyJobSuccessResultCommandOutput) => void): void;
|
|
493
524
|
/**
|
|
525
|
+
* @public
|
|
494
526
|
* <p>Defines a webhook and returns a unique webhook URL generated by CodePipeline. This
|
|
495
527
|
* URL can be supplied to third party source hosting providers to call every time there's a
|
|
496
528
|
* code change. When CodePipeline receives a POST request on this URL, the pipeline defined
|
|
@@ -503,6 +535,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
503
535
|
putWebhook(args: PutWebhookCommandInput, cb: (err: any, data?: PutWebhookCommandOutput) => void): void;
|
|
504
536
|
putWebhook(args: PutWebhookCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutWebhookCommandOutput) => void): void;
|
|
505
537
|
/**
|
|
538
|
+
* @public
|
|
506
539
|
* <p>Configures a connection between the webhook that was created and the external tool
|
|
507
540
|
* with events to be detected.</p>
|
|
508
541
|
*/
|
|
@@ -510,6 +543,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
510
543
|
registerWebhookWithThirdParty(args: RegisterWebhookWithThirdPartyCommandInput, cb: (err: any, data?: RegisterWebhookWithThirdPartyCommandOutput) => void): void;
|
|
511
544
|
registerWebhookWithThirdParty(args: RegisterWebhookWithThirdPartyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterWebhookWithThirdPartyCommandOutput) => void): void;
|
|
512
545
|
/**
|
|
546
|
+
* @public
|
|
513
547
|
* <p>Resumes the pipeline execution by retrying the last failed actions in a stage. You
|
|
514
548
|
* can retry a stage immediately if any of the actions in the stage fail. When you retry,
|
|
515
549
|
* all actions that are still in progress continue working, and failed actions are
|
|
@@ -519,6 +553,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
519
553
|
retryStageExecution(args: RetryStageExecutionCommandInput, cb: (err: any, data?: RetryStageExecutionCommandOutput) => void): void;
|
|
520
554
|
retryStageExecution(args: RetryStageExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RetryStageExecutionCommandOutput) => void): void;
|
|
521
555
|
/**
|
|
556
|
+
* @public
|
|
522
557
|
* <p>Starts the specified pipeline. Specifically, it begins processing the latest commit
|
|
523
558
|
* to the source location specified as part of the pipeline.</p>
|
|
524
559
|
*/
|
|
@@ -526,6 +561,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
526
561
|
startPipelineExecution(args: StartPipelineExecutionCommandInput, cb: (err: any, data?: StartPipelineExecutionCommandOutput) => void): void;
|
|
527
562
|
startPipelineExecution(args: StartPipelineExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartPipelineExecutionCommandOutput) => void): void;
|
|
528
563
|
/**
|
|
564
|
+
* @public
|
|
529
565
|
* <p>Stops the specified pipeline execution. You choose to either stop the pipeline
|
|
530
566
|
* execution by completing in-progress actions without starting subsequent actions, or by
|
|
531
567
|
* abandoning in-progress actions. While completing or abandoning in-progress actions, the
|
|
@@ -537,6 +573,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
537
573
|
stopPipelineExecution(args: StopPipelineExecutionCommandInput, cb: (err: any, data?: StopPipelineExecutionCommandOutput) => void): void;
|
|
538
574
|
stopPipelineExecution(args: StopPipelineExecutionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopPipelineExecutionCommandOutput) => void): void;
|
|
539
575
|
/**
|
|
576
|
+
* @public
|
|
540
577
|
* <p>Adds to or modifies the tags of the given resource. Tags are metadata that can be used
|
|
541
578
|
* to manage a resource. </p>
|
|
542
579
|
*/
|
|
@@ -544,12 +581,14 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
544
581
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
545
582
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
546
583
|
/**
|
|
584
|
+
* @public
|
|
547
585
|
* <p>Removes tags from an AWS resource.</p>
|
|
548
586
|
*/
|
|
549
587
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
550
588
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
551
589
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
552
590
|
/**
|
|
591
|
+
* @public
|
|
553
592
|
* <p>Updates an action type that was created with any supported integration model, where
|
|
554
593
|
* the action type is to be used by customers of the action type provider. Use a JSON file
|
|
555
594
|
* with the action definition and <code>UpdateActionType</code> to provide the full
|
|
@@ -559,6 +598,7 @@ export declare class CodePipeline extends CodePipelineClient {
|
|
|
559
598
|
updateActionType(args: UpdateActionTypeCommandInput, cb: (err: any, data?: UpdateActionTypeCommandOutput) => void): void;
|
|
560
599
|
updateActionType(args: UpdateActionTypeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateActionTypeCommandOutput) => void): void;
|
|
561
600
|
/**
|
|
601
|
+
* @public
|
|
562
602
|
* <p>Updates a specified pipeline with edits or changes to its structure. Use a JSON
|
|
563
603
|
* file with the pipeline structure and <code>UpdatePipeline</code> to provide the full
|
|
564
604
|
* structure of the pipeline. Updating the pipeline increases the version number of the
|
|
@@ -47,15 +47,24 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./command
|
|
|
47
47
|
import { UpdateActionTypeCommandInput, UpdateActionTypeCommandOutput } from "./commands/UpdateActionTypeCommand";
|
|
48
48
|
import { UpdatePipelineCommandInput, UpdatePipelineCommandOutput } from "./commands/UpdatePipelineCommand";
|
|
49
49
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
50
53
|
export type ServiceInputTypes = AcknowledgeJobCommandInput | AcknowledgeThirdPartyJobCommandInput | CreateCustomActionTypeCommandInput | CreatePipelineCommandInput | DeleteCustomActionTypeCommandInput | DeletePipelineCommandInput | DeleteWebhookCommandInput | DeregisterWebhookWithThirdPartyCommandInput | DisableStageTransitionCommandInput | EnableStageTransitionCommandInput | GetActionTypeCommandInput | GetJobDetailsCommandInput | GetPipelineCommandInput | GetPipelineExecutionCommandInput | GetPipelineStateCommandInput | GetThirdPartyJobDetailsCommandInput | ListActionExecutionsCommandInput | ListActionTypesCommandInput | ListPipelineExecutionsCommandInput | ListPipelinesCommandInput | ListTagsForResourceCommandInput | ListWebhooksCommandInput | PollForJobsCommandInput | PollForThirdPartyJobsCommandInput | PutActionRevisionCommandInput | PutApprovalResultCommandInput | PutJobFailureResultCommandInput | PutJobSuccessResultCommandInput | PutThirdPartyJobFailureResultCommandInput | PutThirdPartyJobSuccessResultCommandInput | PutWebhookCommandInput | RegisterWebhookWithThirdPartyCommandInput | RetryStageExecutionCommandInput | StartPipelineExecutionCommandInput | StopPipelineExecutionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateActionTypeCommandInput | UpdatePipelineCommandInput;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
51
57
|
export type ServiceOutputTypes = AcknowledgeJobCommandOutput | AcknowledgeThirdPartyJobCommandOutput | CreateCustomActionTypeCommandOutput | CreatePipelineCommandOutput | DeleteCustomActionTypeCommandOutput | DeletePipelineCommandOutput | DeleteWebhookCommandOutput | DeregisterWebhookWithThirdPartyCommandOutput | DisableStageTransitionCommandOutput | EnableStageTransitionCommandOutput | GetActionTypeCommandOutput | GetJobDetailsCommandOutput | GetPipelineCommandOutput | GetPipelineExecutionCommandOutput | GetPipelineStateCommandOutput | GetThirdPartyJobDetailsCommandOutput | ListActionExecutionsCommandOutput | ListActionTypesCommandOutput | ListPipelineExecutionsCommandOutput | ListPipelinesCommandOutput | ListTagsForResourceCommandOutput | ListWebhooksCommandOutput | PollForJobsCommandOutput | PollForThirdPartyJobsCommandOutput | PutActionRevisionCommandOutput | PutApprovalResultCommandOutput | PutJobFailureResultCommandOutput | PutJobSuccessResultCommandOutput | PutThirdPartyJobFailureResultCommandOutput | PutThirdPartyJobSuccessResultCommandOutput | PutWebhookCommandOutput | RegisterWebhookWithThirdPartyCommandOutput | RetryStageExecutionCommandOutput | StartPipelineExecutionCommandOutput | StopPipelineExecutionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateActionTypeCommandOutput | UpdatePipelineCommandOutput;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
52
61
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
53
62
|
/**
|
|
54
63
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
55
64
|
*/
|
|
56
65
|
requestHandler?: __HttpHandler;
|
|
57
66
|
/**
|
|
58
|
-
* A constructor for a class implementing the {@link
|
|
67
|
+
* A constructor for a class implementing the {@link @aws-sdk/types#ChecksumConstructor} interface
|
|
59
68
|
* that computes the SHA-256 HMAC or checksum of a string or binary buffer.
|
|
60
69
|
* @internal
|
|
61
70
|
*/
|
|
@@ -145,23 +154,34 @@ export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__
|
|
|
145
154
|
*/
|
|
146
155
|
logger?: __Logger;
|
|
147
156
|
/**
|
|
148
|
-
* The {@link
|
|
157
|
+
* The {@link @aws-sdk/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
149
158
|
*/
|
|
150
159
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
151
160
|
}
|
|
161
|
+
/**
|
|
162
|
+
* @public
|
|
163
|
+
*/
|
|
152
164
|
type CodePipelineClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointInputConfig<EndpointParameters> & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig & ClientInputEndpointParameters;
|
|
153
165
|
/**
|
|
154
|
-
*
|
|
166
|
+
* @public
|
|
167
|
+
*
|
|
168
|
+
* The configuration interface of CodePipelineClient class constructor that set the region, credentials and other options.
|
|
155
169
|
*/
|
|
156
170
|
export interface CodePipelineClientConfig extends CodePipelineClientConfigType {
|
|
157
171
|
}
|
|
172
|
+
/**
|
|
173
|
+
* @public
|
|
174
|
+
*/
|
|
158
175
|
type CodePipelineClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointResolvedConfig<EndpointParameters> & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig & ClientResolvedEndpointParameters;
|
|
159
176
|
/**
|
|
160
|
-
*
|
|
177
|
+
* @public
|
|
178
|
+
*
|
|
179
|
+
* The resolved configuration interface of CodePipelineClient class. This is resolved and normalized from the {@link CodePipelineClientConfig | constructor configuration interface}.
|
|
161
180
|
*/
|
|
162
181
|
export interface CodePipelineClientResolvedConfig extends CodePipelineClientResolvedConfigType {
|
|
163
182
|
}
|
|
164
183
|
/**
|
|
184
|
+
* @public
|
|
165
185
|
* <fullname>AWS CodePipeline</fullname>
|
|
166
186
|
* <p>
|
|
167
187
|
* <b>Overview</b>
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient";
|
|
5
5
|
import { AcknowledgeJobInput, AcknowledgeJobOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AcknowledgeJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AcknowledgeJobCommandInput extends AcknowledgeJobInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AcknowledgeJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AcknowledgeJobCommandOutput extends AcknowledgeJobOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about a specified job and whether that job has been received by
|
|
18
23
|
* the job worker. Used for custom actions only.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface AcknowledgeJobCommandOutput extends AcknowledgeJobOutput, __Met
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param AcknowledgeJobCommandInput - {@link AcknowledgeJobCommandInput}
|
|
35
|
+
* @returns {@link AcknowledgeJobCommandOutput}
|
|
29
36
|
* @see {@link AcknowledgeJobCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link AcknowledgeJobCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface AcknowledgeJobCommandOutput extends AcknowledgeJobOutput, __Met
|
|
|
44
51
|
export declare class AcknowledgeJobCommand extends $Command<AcknowledgeJobCommandInput, AcknowledgeJobCommandOutput, CodePipelineClientResolvedConfig> {
|
|
45
52
|
readonly input: AcknowledgeJobCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: AcknowledgeJobCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AcknowledgeJobCommandInput, AcknowledgeJobCommandOutput>;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
52
65
|
private serialize;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
53
69
|
private deserialize;
|
|
54
70
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient";
|
|
5
5
|
import { AcknowledgeThirdPartyJobInput, AcknowledgeThirdPartyJobOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link AcknowledgeThirdPartyJobCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface AcknowledgeThirdPartyJobCommandInput extends AcknowledgeThirdPartyJobInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link AcknowledgeThirdPartyJobCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface AcknowledgeThirdPartyJobCommandOutput extends AcknowledgeThirdPartyJobOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Confirms a job worker has received the specified job. Used for partner actions
|
|
18
23
|
* only.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface AcknowledgeThirdPartyJobCommandOutput extends AcknowledgeThirdP
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param AcknowledgeThirdPartyJobCommandInput - {@link AcknowledgeThirdPartyJobCommandInput}
|
|
35
|
+
* @returns {@link AcknowledgeThirdPartyJobCommandOutput}
|
|
29
36
|
* @see {@link AcknowledgeThirdPartyJobCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link AcknowledgeThirdPartyJobCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -47,11 +54,20 @@ export interface AcknowledgeThirdPartyJobCommandOutput extends AcknowledgeThirdP
|
|
|
47
54
|
export declare class AcknowledgeThirdPartyJobCommand extends $Command<AcknowledgeThirdPartyJobCommandInput, AcknowledgeThirdPartyJobCommandOutput, CodePipelineClientResolvedConfig> {
|
|
48
55
|
readonly input: AcknowledgeThirdPartyJobCommandInput;
|
|
49
56
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
57
|
+
/**
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
50
60
|
constructor(input: AcknowledgeThirdPartyJobCommandInput);
|
|
51
61
|
/**
|
|
52
62
|
* @internal
|
|
53
63
|
*/
|
|
54
64
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<AcknowledgeThirdPartyJobCommandInput, AcknowledgeThirdPartyJobCommandOutput>;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
55
68
|
private serialize;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
56
72
|
private deserialize;
|
|
57
73
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient";
|
|
5
5
|
import { CreateCustomActionTypeInput, CreateCustomActionTypeOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreateCustomActionTypeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreateCustomActionTypeCommandInput extends CreateCustomActionTypeInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreateCustomActionTypeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreateCustomActionTypeCommandOutput extends CreateCustomActionTypeOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a new custom action that can be used in all pipelines associated with the
|
|
18
23
|
* AWS account. Only used for custom actions.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface CreateCustomActionTypeCommandOutput extends CreateCustomActionT
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param CreateCustomActionTypeCommandInput - {@link CreateCustomActionTypeCommandInput}
|
|
35
|
+
* @returns {@link CreateCustomActionTypeCommandOutput}
|
|
29
36
|
* @see {@link CreateCustomActionTypeCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link CreateCustomActionTypeCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -51,11 +58,20 @@ export interface CreateCustomActionTypeCommandOutput extends CreateCustomActionT
|
|
|
51
58
|
export declare class CreateCustomActionTypeCommand extends $Command<CreateCustomActionTypeCommandInput, CreateCustomActionTypeCommandOutput, CodePipelineClientResolvedConfig> {
|
|
52
59
|
readonly input: CreateCustomActionTypeCommandInput;
|
|
53
60
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
61
|
+
/**
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
54
64
|
constructor(input: CreateCustomActionTypeCommandInput);
|
|
55
65
|
/**
|
|
56
66
|
* @internal
|
|
57
67
|
*/
|
|
58
68
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateCustomActionTypeCommandInput, CreateCustomActionTypeCommandOutput>;
|
|
69
|
+
/**
|
|
70
|
+
* @internal
|
|
71
|
+
*/
|
|
59
72
|
private serialize;
|
|
73
|
+
/**
|
|
74
|
+
* @internal
|
|
75
|
+
*/
|
|
60
76
|
private deserialize;
|
|
61
77
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient";
|
|
5
5
|
import { CreatePipelineInput, CreatePipelineOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link CreatePipelineCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface CreatePipelineCommandInput extends CreatePipelineInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link CreatePipelineCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Creates a pipeline.</p>
|
|
18
23
|
* <note>
|
|
19
24
|
* <p>In the pipeline structure, you must include either <code>artifactStore</code>
|
|
@@ -31,6 +36,8 @@ export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __Met
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param CreatePipelineCommandInput - {@link CreatePipelineCommandInput}
|
|
40
|
+
* @returns {@link CreatePipelineCommandOutput}
|
|
34
41
|
* @see {@link CreatePipelineCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link CreatePipelineCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -71,11 +78,20 @@ export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __Met
|
|
|
71
78
|
export declare class CreatePipelineCommand extends $Command<CreatePipelineCommandInput, CreatePipelineCommandOutput, CodePipelineClientResolvedConfig> {
|
|
72
79
|
readonly input: CreatePipelineCommandInput;
|
|
73
80
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
81
|
+
/**
|
|
82
|
+
* @public
|
|
83
|
+
*/
|
|
74
84
|
constructor(input: CreatePipelineCommandInput);
|
|
75
85
|
/**
|
|
76
86
|
* @internal
|
|
77
87
|
*/
|
|
78
88
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreatePipelineCommandInput, CreatePipelineCommandOutput>;
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
79
92
|
private serialize;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
80
96
|
private deserialize;
|
|
81
97
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient";
|
|
5
5
|
import { DeleteCustomActionTypeInput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteCustomActionTypeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteCustomActionTypeCommandInput extends DeleteCustomActionTypeInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteCustomActionTypeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteCustomActionTypeCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Marks a custom action as deleted. <code>PollForJobs</code> for the custom action
|
|
18
23
|
* fails after the action is marked for deletion. Used for custom actions only.</p>
|
|
19
24
|
* <important>
|
|
@@ -33,6 +38,8 @@ export interface DeleteCustomActionTypeCommandOutput extends __MetadataBearer {
|
|
|
33
38
|
* const response = await client.send(command);
|
|
34
39
|
* ```
|
|
35
40
|
*
|
|
41
|
+
* @param DeleteCustomActionTypeCommandInput - {@link DeleteCustomActionTypeCommandInput}
|
|
42
|
+
* @returns {@link DeleteCustomActionTypeCommandOutput}
|
|
36
43
|
* @see {@link DeleteCustomActionTypeCommandInput} for command's `input` shape.
|
|
37
44
|
* @see {@link DeleteCustomActionTypeCommandOutput} for command's `response` shape.
|
|
38
45
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface DeleteCustomActionTypeCommandOutput extends __MetadataBearer {
|
|
|
48
55
|
export declare class DeleteCustomActionTypeCommand extends $Command<DeleteCustomActionTypeCommandInput, DeleteCustomActionTypeCommandOutput, CodePipelineClientResolvedConfig> {
|
|
49
56
|
readonly input: DeleteCustomActionTypeCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: DeleteCustomActionTypeCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteCustomActionTypeCommandInput, DeleteCustomActionTypeCommandOutput>;
|
|
66
|
+
/**
|
|
67
|
+
* @internal
|
|
68
|
+
*/
|
|
56
69
|
private serialize;
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
57
73
|
private deserialize;
|
|
58
74
|
}
|