@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.
Files changed (51) hide show
  1. package/dist-types/CodePipeline.d.ts +40 -0
  2. package/dist-types/CodePipelineClient.d.ts +24 -4
  3. package/dist-types/commands/AcknowledgeJobCommand.d.ts +16 -0
  4. package/dist-types/commands/AcknowledgeThirdPartyJobCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateCustomActionTypeCommand.d.ts +16 -0
  6. package/dist-types/commands/CreatePipelineCommand.d.ts +16 -0
  7. package/dist-types/commands/DeleteCustomActionTypeCommand.d.ts +16 -0
  8. package/dist-types/commands/DeletePipelineCommand.d.ts +16 -0
  9. package/dist-types/commands/DeleteWebhookCommand.d.ts +16 -0
  10. package/dist-types/commands/DeregisterWebhookWithThirdPartyCommand.d.ts +16 -0
  11. package/dist-types/commands/DisableStageTransitionCommand.d.ts +16 -0
  12. package/dist-types/commands/EnableStageTransitionCommand.d.ts +16 -0
  13. package/dist-types/commands/GetActionTypeCommand.d.ts +16 -0
  14. package/dist-types/commands/GetJobDetailsCommand.d.ts +16 -0
  15. package/dist-types/commands/GetPipelineCommand.d.ts +16 -0
  16. package/dist-types/commands/GetPipelineExecutionCommand.d.ts +16 -0
  17. package/dist-types/commands/GetPipelineStateCommand.d.ts +16 -0
  18. package/dist-types/commands/GetThirdPartyJobDetailsCommand.d.ts +16 -0
  19. package/dist-types/commands/ListActionExecutionsCommand.d.ts +16 -0
  20. package/dist-types/commands/ListActionTypesCommand.d.ts +16 -0
  21. package/dist-types/commands/ListPipelineExecutionsCommand.d.ts +16 -0
  22. package/dist-types/commands/ListPipelinesCommand.d.ts +16 -0
  23. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  24. package/dist-types/commands/ListWebhooksCommand.d.ts +16 -0
  25. package/dist-types/commands/PollForJobsCommand.d.ts +16 -0
  26. package/dist-types/commands/PollForThirdPartyJobsCommand.d.ts +16 -0
  27. package/dist-types/commands/PutActionRevisionCommand.d.ts +16 -0
  28. package/dist-types/commands/PutApprovalResultCommand.d.ts +16 -0
  29. package/dist-types/commands/PutJobFailureResultCommand.d.ts +16 -0
  30. package/dist-types/commands/PutJobSuccessResultCommand.d.ts +16 -0
  31. package/dist-types/commands/PutThirdPartyJobFailureResultCommand.d.ts +16 -0
  32. package/dist-types/commands/PutThirdPartyJobSuccessResultCommand.d.ts +16 -0
  33. package/dist-types/commands/PutWebhookCommand.d.ts +16 -0
  34. package/dist-types/commands/RegisterWebhookWithThirdPartyCommand.d.ts +16 -0
  35. package/dist-types/commands/RetryStageExecutionCommand.d.ts +16 -0
  36. package/dist-types/commands/StartPipelineExecutionCommand.d.ts +16 -0
  37. package/dist-types/commands/StopPipelineExecutionCommand.d.ts +16 -0
  38. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  39. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  40. package/dist-types/commands/UpdateActionTypeCommand.d.ts +16 -0
  41. package/dist-types/commands/UpdatePipelineCommand.d.ts +16 -0
  42. package/dist-types/models/CodePipelineServiceException.d.ts +2 -0
  43. package/dist-types/models/models_0.d.ts +276 -3
  44. package/dist-types/pagination/Interfaces.d.ts +3 -0
  45. package/dist-types/pagination/ListActionExecutionsPaginator.d.ts +3 -0
  46. package/dist-types/pagination/ListActionTypesPaginator.d.ts +3 -0
  47. package/dist-types/pagination/ListPipelineExecutionsPaginator.d.ts +3 -0
  48. package/dist-types/pagination/ListPipelinesPaginator.d.ts +3 -0
  49. package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
  50. package/dist-types/pagination/ListWebhooksPaginator.d.ts +3 -0
  51. package/package.json +3 -3
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient";
5
5
  import { ListPipelineExecutionsInput, ListPipelineExecutionsOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListPipelineExecutionsCommand}.
8
10
  */
9
11
  export interface ListPipelineExecutionsCommandInput extends ListPipelineExecutionsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListPipelineExecutionsCommand}.
13
17
  */
14
18
  export interface ListPipelineExecutionsCommandOutput extends ListPipelineExecutionsOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets a summary of the most recent executions for a pipeline.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListPipelineExecutionsCommandOutput extends ListPipelineExecuti
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListPipelineExecutionsCommandInput - {@link ListPipelineExecutionsCommandInput}
34
+ * @returns {@link ListPipelineExecutionsCommandOutput}
28
35
  * @see {@link ListPipelineExecutionsCommandInput} for command's `input` shape.
29
36
  * @see {@link ListPipelineExecutionsCommandOutput} for command's `response` shape.
30
37
  * @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
@@ -44,11 +51,20 @@ export interface ListPipelineExecutionsCommandOutput extends ListPipelineExecuti
44
51
  export declare class ListPipelineExecutionsCommand extends $Command<ListPipelineExecutionsCommandInput, ListPipelineExecutionsCommandOutput, CodePipelineClientResolvedConfig> {
45
52
  readonly input: ListPipelineExecutionsCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: ListPipelineExecutionsCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPipelineExecutionsCommandInput, ListPipelineExecutionsCommandOutput>;
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 { ListPipelinesInput, ListPipelinesOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListPipelinesCommand}.
8
10
  */
9
11
  export interface ListPipelinesCommandInput extends ListPipelinesInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListPipelinesCommand}.
13
17
  */
14
18
  export interface ListPipelinesCommandOutput extends ListPipelinesOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets a summary of all of the pipelines associated with your account.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface ListPipelinesCommandOutput extends ListPipelinesOutput, __Metad
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param ListPipelinesCommandInput - {@link ListPipelinesCommandInput}
34
+ * @returns {@link ListPipelinesCommandOutput}
28
35
  * @see {@link ListPipelinesCommandInput} for command's `input` shape.
29
36
  * @see {@link ListPipelinesCommandOutput} for command's `response` shape.
30
37
  * @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
@@ -41,11 +48,20 @@ export interface ListPipelinesCommandOutput extends ListPipelinesOutput, __Metad
41
48
  export declare class ListPipelinesCommand extends $Command<ListPipelinesCommandInput, ListPipelinesCommandOutput, CodePipelineClientResolvedConfig> {
42
49
  readonly input: ListPipelinesCommandInput;
43
50
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
51
+ /**
52
+ * @public
53
+ */
44
54
  constructor(input: ListPipelinesCommandInput);
45
55
  /**
46
56
  * @internal
47
57
  */
48
58
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListPipelinesCommandInput, ListPipelinesCommandOutput>;
59
+ /**
60
+ * @internal
61
+ */
49
62
  private serialize;
63
+ /**
64
+ * @internal
65
+ */
50
66
  private deserialize;
51
67
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient";
5
5
  import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListTagsForResourceCommand}.
8
10
  */
9
11
  export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListTagsForResourceCommand}.
13
17
  */
14
18
  export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets the set of key-value pairs (metadata) that are used to manage the
18
23
  * resource.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
35
+ * @returns {@link ListTagsForResourceCommandOutput}
29
36
  * @see {@link ListTagsForResourceCommandInput} for command's `input` shape.
30
37
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
31
38
  * @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
@@ -48,11 +55,20 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
48
55
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, CodePipelineClientResolvedConfig> {
49
56
  readonly input: ListTagsForResourceCommandInput;
50
57
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
58
+ /**
59
+ * @public
60
+ */
51
61
  constructor(input: ListTagsForResourceCommandInput);
52
62
  /**
53
63
  * @internal
54
64
  */
55
65
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
66
+ /**
67
+ * @internal
68
+ */
56
69
  private serialize;
70
+ /**
71
+ * @internal
72
+ */
57
73
  private deserialize;
58
74
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient";
5
5
  import { ListWebhooksInput, ListWebhooksOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link ListWebhooksCommand}.
8
10
  */
9
11
  export interface ListWebhooksCommandInput extends ListWebhooksInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link ListWebhooksCommand}.
13
17
  */
14
18
  export interface ListWebhooksCommandOutput extends ListWebhooksOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Gets a listing of all the webhooks in this AWS Region for this account. The output
18
23
  * lists all webhooks and includes the webhook URL and ARN and the configuration for each
19
24
  * webhook.</p>
@@ -27,6 +32,8 @@ export interface ListWebhooksCommandOutput extends ListWebhooksOutput, __Metadat
27
32
  * const response = await client.send(command);
28
33
  * ```
29
34
  *
35
+ * @param ListWebhooksCommandInput - {@link ListWebhooksCommandInput}
36
+ * @returns {@link ListWebhooksCommandOutput}
30
37
  * @see {@link ListWebhooksCommandInput} for command's `input` shape.
31
38
  * @see {@link ListWebhooksCommandOutput} for command's `response` shape.
32
39
  * @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
@@ -43,11 +50,20 @@ export interface ListWebhooksCommandOutput extends ListWebhooksOutput, __Metadat
43
50
  export declare class ListWebhooksCommand extends $Command<ListWebhooksCommandInput, ListWebhooksCommandOutput, CodePipelineClientResolvedConfig> {
44
51
  readonly input: ListWebhooksCommandInput;
45
52
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
53
+ /**
54
+ * @public
55
+ */
46
56
  constructor(input: ListWebhooksCommandInput);
47
57
  /**
48
58
  * @internal
49
59
  */
50
60
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListWebhooksCommandInput, ListWebhooksCommandOutput>;
61
+ /**
62
+ * @internal
63
+ */
51
64
  private serialize;
65
+ /**
66
+ * @internal
67
+ */
52
68
  private deserialize;
53
69
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient";
5
5
  import { PollForJobsInput, PollForJobsOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PollForJobsCommand}.
8
10
  */
9
11
  export interface PollForJobsCommandInput extends PollForJobsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PollForJobsCommand}.
13
17
  */
14
18
  export interface PollForJobsCommandOutput extends PollForJobsOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Returns information about any jobs for AWS CodePipeline to act on.
18
23
  * <code>PollForJobs</code> is valid only for action types with "Custom" in the owner
19
24
  * field. If the action type contains "AWS" or "ThirdParty" in the owner field, the
@@ -34,6 +39,8 @@ export interface PollForJobsCommandOutput extends PollForJobsOutput, __MetadataB
34
39
  * const response = await client.send(command);
35
40
  * ```
36
41
  *
42
+ * @param PollForJobsCommandInput - {@link PollForJobsCommandInput}
43
+ * @returns {@link PollForJobsCommandOutput}
37
44
  * @see {@link PollForJobsCommandInput} for command's `input` shape.
38
45
  * @see {@link PollForJobsCommandOutput} for command's `response` shape.
39
46
  * @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
@@ -49,11 +56,20 @@ export interface PollForJobsCommandOutput extends PollForJobsOutput, __MetadataB
49
56
  export declare class PollForJobsCommand extends $Command<PollForJobsCommandInput, PollForJobsCommandOutput, CodePipelineClientResolvedConfig> {
50
57
  readonly input: PollForJobsCommandInput;
51
58
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
59
+ /**
60
+ * @public
61
+ */
52
62
  constructor(input: PollForJobsCommandInput);
53
63
  /**
54
64
  * @internal
55
65
  */
56
66
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PollForJobsCommandInput, PollForJobsCommandOutput>;
67
+ /**
68
+ * @internal
69
+ */
57
70
  private serialize;
71
+ /**
72
+ * @internal
73
+ */
58
74
  private deserialize;
59
75
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient";
5
5
  import { PollForThirdPartyJobsInput, PollForThirdPartyJobsOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PollForThirdPartyJobsCommand}.
8
10
  */
9
11
  export interface PollForThirdPartyJobsCommandInput extends PollForThirdPartyJobsInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PollForThirdPartyJobsCommand}.
13
17
  */
14
18
  export interface PollForThirdPartyJobsCommandOutput extends PollForThirdPartyJobsOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Determines whether there are any third party jobs for a job worker to act on. Used
18
23
  * for partner actions only.</p>
19
24
  * <important>
@@ -31,6 +36,8 @@ export interface PollForThirdPartyJobsCommandOutput extends PollForThirdPartyJob
31
36
  * const response = await client.send(command);
32
37
  * ```
33
38
  *
39
+ * @param PollForThirdPartyJobsCommandInput - {@link PollForThirdPartyJobsCommandInput}
40
+ * @returns {@link PollForThirdPartyJobsCommandOutput}
34
41
  * @see {@link PollForThirdPartyJobsCommandInput} for command's `input` shape.
35
42
  * @see {@link PollForThirdPartyJobsCommandOutput} for command's `response` shape.
36
43
  * @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
@@ -46,11 +53,20 @@ export interface PollForThirdPartyJobsCommandOutput extends PollForThirdPartyJob
46
53
  export declare class PollForThirdPartyJobsCommand extends $Command<PollForThirdPartyJobsCommandInput, PollForThirdPartyJobsCommandOutput, CodePipelineClientResolvedConfig> {
47
54
  readonly input: PollForThirdPartyJobsCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: PollForThirdPartyJobsCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PollForThirdPartyJobsCommandInput, PollForThirdPartyJobsCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient";
5
5
  import { PutActionRevisionInput, PutActionRevisionOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutActionRevisionCommand}.
8
10
  */
9
11
  export interface PutActionRevisionCommandInput extends PutActionRevisionInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutActionRevisionCommand}.
13
17
  */
14
18
  export interface PutActionRevisionCommandOutput extends PutActionRevisionOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Provides information to AWS CodePipeline about new revisions to a source.</p>
18
23
  * @example
19
24
  * Use a bare-bones client and the command you need to make an API call.
@@ -25,6 +30,8 @@ export interface PutActionRevisionCommandOutput extends PutActionRevisionOutput,
25
30
  * const response = await client.send(command);
26
31
  * ```
27
32
  *
33
+ * @param PutActionRevisionCommandInput - {@link PutActionRevisionCommandInput}
34
+ * @returns {@link PutActionRevisionCommandOutput}
28
35
  * @see {@link PutActionRevisionCommandInput} for command's `input` shape.
29
36
  * @see {@link PutActionRevisionCommandOutput} for command's `response` shape.
30
37
  * @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
@@ -46,11 +53,20 @@ export interface PutActionRevisionCommandOutput extends PutActionRevisionOutput,
46
53
  export declare class PutActionRevisionCommand extends $Command<PutActionRevisionCommandInput, PutActionRevisionCommandOutput, CodePipelineClientResolvedConfig> {
47
54
  readonly input: PutActionRevisionCommandInput;
48
55
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
56
+ /**
57
+ * @public
58
+ */
49
59
  constructor(input: PutActionRevisionCommandInput);
50
60
  /**
51
61
  * @internal
52
62
  */
53
63
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutActionRevisionCommandInput, PutActionRevisionCommandOutput>;
64
+ /**
65
+ * @internal
66
+ */
54
67
  private serialize;
68
+ /**
69
+ * @internal
70
+ */
55
71
  private deserialize;
56
72
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient";
5
5
  import { PutApprovalResultInput, PutApprovalResultOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutApprovalResultCommand}.
8
10
  */
9
11
  export interface PutApprovalResultCommandInput extends PutApprovalResultInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutApprovalResultCommand}.
13
17
  */
14
18
  export interface PutApprovalResultCommandOutput extends PutApprovalResultOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Provides the response to a manual approval request to AWS CodePipeline. Valid
18
23
  * responses include Approved and Rejected.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface PutApprovalResultCommandOutput extends PutApprovalResultOutput,
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param PutApprovalResultCommandInput - {@link PutApprovalResultCommandInput}
35
+ * @returns {@link PutApprovalResultCommandOutput}
29
36
  * @see {@link PutApprovalResultCommandInput} for command's `input` shape.
30
37
  * @see {@link PutApprovalResultCommandOutput} for command's `response` shape.
31
38
  * @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
@@ -53,11 +60,20 @@ export interface PutApprovalResultCommandOutput extends PutApprovalResultOutput,
53
60
  export declare class PutApprovalResultCommand extends $Command<PutApprovalResultCommandInput, PutApprovalResultCommandOutput, CodePipelineClientResolvedConfig> {
54
61
  readonly input: PutApprovalResultCommandInput;
55
62
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
56
66
  constructor(input: PutApprovalResultCommandInput);
57
67
  /**
58
68
  * @internal
59
69
  */
60
70
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutApprovalResultCommandInput, PutApprovalResultCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
61
74
  private serialize;
75
+ /**
76
+ * @internal
77
+ */
62
78
  private deserialize;
63
79
  }
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
4
4
  import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient";
5
5
  import { PutJobFailureResultInput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutJobFailureResultCommand}.
8
10
  */
9
11
  export interface PutJobFailureResultCommandInput extends PutJobFailureResultInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutJobFailureResultCommand}.
13
17
  */
14
18
  export interface PutJobFailureResultCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Represents the failure of a job as returned to the pipeline by a job worker. Used
18
23
  * for custom actions only.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface PutJobFailureResultCommandOutput extends __MetadataBearer {
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param PutJobFailureResultCommandInput - {@link PutJobFailureResultCommandInput}
35
+ * @returns {@link PutJobFailureResultCommandOutput}
29
36
  * @see {@link PutJobFailureResultCommandInput} for command's `input` shape.
30
37
  * @see {@link PutJobFailureResultCommandOutput} for command's `response` shape.
31
38
  * @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
@@ -44,11 +51,20 @@ export interface PutJobFailureResultCommandOutput extends __MetadataBearer {
44
51
  export declare class PutJobFailureResultCommand extends $Command<PutJobFailureResultCommandInput, PutJobFailureResultCommandOutput, CodePipelineClientResolvedConfig> {
45
52
  readonly input: PutJobFailureResultCommandInput;
46
53
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
54
+ /**
55
+ * @public
56
+ */
47
57
  constructor(input: PutJobFailureResultCommandInput);
48
58
  /**
49
59
  * @internal
50
60
  */
51
61
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutJobFailureResultCommandInput, PutJobFailureResultCommandOutput>;
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 { PutJobSuccessResultInput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutJobSuccessResultCommand}.
8
10
  */
9
11
  export interface PutJobSuccessResultCommandInput extends PutJobSuccessResultInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutJobSuccessResultCommand}.
13
17
  */
14
18
  export interface PutJobSuccessResultCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Represents the success of a job as returned to the pipeline by a job worker. Used
18
23
  * for custom actions only.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface PutJobSuccessResultCommandOutput extends __MetadataBearer {
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param PutJobSuccessResultCommandInput - {@link PutJobSuccessResultCommandInput}
35
+ * @returns {@link PutJobSuccessResultCommandOutput}
29
36
  * @see {@link PutJobSuccessResultCommandInput} for command's `input` shape.
30
37
  * @see {@link PutJobSuccessResultCommandOutput} for command's `response` shape.
31
38
  * @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
@@ -47,11 +54,20 @@ export interface PutJobSuccessResultCommandOutput extends __MetadataBearer {
47
54
  export declare class PutJobSuccessResultCommand extends $Command<PutJobSuccessResultCommandInput, PutJobSuccessResultCommandOutput, CodePipelineClientResolvedConfig> {
48
55
  readonly input: PutJobSuccessResultCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: PutJobSuccessResultCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutJobSuccessResultCommandInput, PutJobSuccessResultCommandOutput>;
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 { PutThirdPartyJobFailureResultInput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutThirdPartyJobFailureResultCommand}.
8
10
  */
9
11
  export interface PutThirdPartyJobFailureResultCommandInput extends PutThirdPartyJobFailureResultInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutThirdPartyJobFailureResultCommand}.
13
17
  */
14
18
  export interface PutThirdPartyJobFailureResultCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Represents the failure of a third party job as returned to the pipeline by a job
18
23
  * worker. Used for partner actions only.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface PutThirdPartyJobFailureResultCommandOutput extends __MetadataBe
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param PutThirdPartyJobFailureResultCommandInput - {@link PutThirdPartyJobFailureResultCommandInput}
35
+ * @returns {@link PutThirdPartyJobFailureResultCommandOutput}
29
36
  * @see {@link PutThirdPartyJobFailureResultCommandInput} for command's `input` shape.
30
37
  * @see {@link PutThirdPartyJobFailureResultCommandOutput} for command's `response` shape.
31
38
  * @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
@@ -47,11 +54,20 @@ export interface PutThirdPartyJobFailureResultCommandOutput extends __MetadataBe
47
54
  export declare class PutThirdPartyJobFailureResultCommand extends $Command<PutThirdPartyJobFailureResultCommandInput, PutThirdPartyJobFailureResultCommandOutput, CodePipelineClientResolvedConfig> {
48
55
  readonly input: PutThirdPartyJobFailureResultCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: PutThirdPartyJobFailureResultCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutThirdPartyJobFailureResultCommandInput, PutThirdPartyJobFailureResultCommandOutput>;
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 { PutThirdPartyJobSuccessResultInput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutThirdPartyJobSuccessResultCommand}.
8
10
  */
9
11
  export interface PutThirdPartyJobSuccessResultCommandInput extends PutThirdPartyJobSuccessResultInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutThirdPartyJobSuccessResultCommand}.
13
17
  */
14
18
  export interface PutThirdPartyJobSuccessResultCommandOutput extends __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Represents the success of a third party job as returned to the pipeline by a job
18
23
  * worker. Used for partner actions only.</p>
19
24
  * @example
@@ -26,6 +31,8 @@ export interface PutThirdPartyJobSuccessResultCommandOutput extends __MetadataBe
26
31
  * const response = await client.send(command);
27
32
  * ```
28
33
  *
34
+ * @param PutThirdPartyJobSuccessResultCommandInput - {@link PutThirdPartyJobSuccessResultCommandInput}
35
+ * @returns {@link PutThirdPartyJobSuccessResultCommandOutput}
29
36
  * @see {@link PutThirdPartyJobSuccessResultCommandInput} for command's `input` shape.
30
37
  * @see {@link PutThirdPartyJobSuccessResultCommandOutput} for command's `response` shape.
31
38
  * @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
@@ -47,11 +54,20 @@ export interface PutThirdPartyJobSuccessResultCommandOutput extends __MetadataBe
47
54
  export declare class PutThirdPartyJobSuccessResultCommand extends $Command<PutThirdPartyJobSuccessResultCommandInput, PutThirdPartyJobSuccessResultCommandOutput, CodePipelineClientResolvedConfig> {
48
55
  readonly input: PutThirdPartyJobSuccessResultCommandInput;
49
56
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
57
+ /**
58
+ * @public
59
+ */
50
60
  constructor(input: PutThirdPartyJobSuccessResultCommandInput);
51
61
  /**
52
62
  * @internal
53
63
  */
54
64
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutThirdPartyJobSuccessResultCommandInput, PutThirdPartyJobSuccessResultCommandOutput>;
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 { PutWebhookInput, PutWebhookOutput } from "../models/models_0";
6
6
  /**
7
+ * @public
8
+ *
7
9
  * The input for {@link PutWebhookCommand}.
8
10
  */
9
11
  export interface PutWebhookCommandInput extends PutWebhookInput {
10
12
  }
11
13
  /**
14
+ * @public
15
+ *
12
16
  * The output of {@link PutWebhookCommand}.
13
17
  */
14
18
  export interface PutWebhookCommandOutput extends PutWebhookOutput, __MetadataBearer {
15
19
  }
16
20
  /**
21
+ * @public
17
22
  * <p>Defines a webhook and returns a unique webhook URL generated by CodePipeline. This
18
23
  * URL can be supplied to third party source hosting providers to call every time there's a
19
24
  * code change. When CodePipeline receives a POST request on this URL, the pipeline defined
@@ -31,6 +36,8 @@ export interface PutWebhookCommandOutput extends PutWebhookOutput, __MetadataBea
31
36
  * const response = await client.send(command);
32
37
  * ```
33
38
  *
39
+ * @param PutWebhookCommandInput - {@link PutWebhookCommandInput}
40
+ * @returns {@link PutWebhookCommandOutput}
34
41
  * @see {@link PutWebhookCommandInput} for command's `input` shape.
35
42
  * @see {@link PutWebhookCommandOutput} for command's `response` shape.
36
43
  * @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
@@ -65,11 +72,20 @@ export interface PutWebhookCommandOutput extends PutWebhookOutput, __MetadataBea
65
72
  export declare class PutWebhookCommand extends $Command<PutWebhookCommandInput, PutWebhookCommandOutput, CodePipelineClientResolvedConfig> {
66
73
  readonly input: PutWebhookCommandInput;
67
74
  static getEndpointParameterInstructions(): EndpointParameterInstructions;
75
+ /**
76
+ * @public
77
+ */
68
78
  constructor(input: PutWebhookCommandInput);
69
79
  /**
70
80
  * @internal
71
81
  */
72
82
  resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutWebhookCommandInput, PutWebhookCommandOutput>;
83
+ /**
84
+ * @internal
85
+ */
73
86
  private serialize;
87
+ /**
88
+ * @internal
89
+ */
74
90
  private deserialize;
75
91
  }