@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
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient";
|
|
5
5
|
import { RegisterWebhookWithThirdPartyInput, RegisterWebhookWithThirdPartyOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RegisterWebhookWithThirdPartyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RegisterWebhookWithThirdPartyCommandInput extends RegisterWebhookWithThirdPartyInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RegisterWebhookWithThirdPartyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RegisterWebhookWithThirdPartyCommandOutput extends RegisterWebhookWithThirdPartyOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Configures a connection between the webhook that was created and the external tool
|
|
18
23
|
* with events to be detected.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface RegisterWebhookWithThirdPartyCommandOutput extends RegisterWebh
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param RegisterWebhookWithThirdPartyCommandInput - {@link RegisterWebhookWithThirdPartyCommandInput}
|
|
35
|
+
* @returns {@link RegisterWebhookWithThirdPartyCommandOutput}
|
|
29
36
|
* @see {@link RegisterWebhookWithThirdPartyCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link RegisterWebhookWithThirdPartyCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -42,11 +49,20 @@ export interface RegisterWebhookWithThirdPartyCommandOutput extends RegisterWebh
|
|
|
42
49
|
export declare class RegisterWebhookWithThirdPartyCommand extends $Command<RegisterWebhookWithThirdPartyCommandInput, RegisterWebhookWithThirdPartyCommandOutput, CodePipelineClientResolvedConfig> {
|
|
43
50
|
readonly input: RegisterWebhookWithThirdPartyCommandInput;
|
|
44
51
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
45
55
|
constructor(input: RegisterWebhookWithThirdPartyCommandInput);
|
|
46
56
|
/**
|
|
47
57
|
* @internal
|
|
48
58
|
*/
|
|
49
59
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterWebhookWithThirdPartyCommandInput, RegisterWebhookWithThirdPartyCommandOutput>;
|
|
60
|
+
/**
|
|
61
|
+
* @internal
|
|
62
|
+
*/
|
|
50
63
|
private serialize;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
51
67
|
private deserialize;
|
|
52
68
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient";
|
|
5
5
|
import { RetryStageExecutionInput, RetryStageExecutionOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link RetryStageExecutionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface RetryStageExecutionCommandInput extends RetryStageExecutionInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link RetryStageExecutionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface RetryStageExecutionCommandOutput extends RetryStageExecutionOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Resumes the pipeline execution by retrying the last failed actions in a stage. You
|
|
18
23
|
* can retry a stage immediately if any of the actions in the stage fail. When you retry,
|
|
19
24
|
* all actions that are still in progress continue working, and failed actions are
|
|
@@ -28,6 +33,8 @@ export interface RetryStageExecutionCommandOutput extends RetryStageExecutionOut
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param RetryStageExecutionCommandInput - {@link RetryStageExecutionCommandInput}
|
|
37
|
+
* @returns {@link RetryStageExecutionCommandOutput}
|
|
31
38
|
* @see {@link RetryStageExecutionCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link RetryStageExecutionCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -59,11 +66,20 @@ export interface RetryStageExecutionCommandOutput extends RetryStageExecutionOut
|
|
|
59
66
|
export declare class RetryStageExecutionCommand extends $Command<RetryStageExecutionCommandInput, RetryStageExecutionCommandOutput, CodePipelineClientResolvedConfig> {
|
|
60
67
|
readonly input: RetryStageExecutionCommandInput;
|
|
61
68
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
69
|
+
/**
|
|
70
|
+
* @public
|
|
71
|
+
*/
|
|
62
72
|
constructor(input: RetryStageExecutionCommandInput);
|
|
63
73
|
/**
|
|
64
74
|
* @internal
|
|
65
75
|
*/
|
|
66
76
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RetryStageExecutionCommandInput, RetryStageExecutionCommandOutput>;
|
|
77
|
+
/**
|
|
78
|
+
* @internal
|
|
79
|
+
*/
|
|
67
80
|
private serialize;
|
|
81
|
+
/**
|
|
82
|
+
* @internal
|
|
83
|
+
*/
|
|
68
84
|
private deserialize;
|
|
69
85
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient";
|
|
5
5
|
import { StartPipelineExecutionInput, StartPipelineExecutionOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StartPipelineExecutionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StartPipelineExecutionCommandInput extends StartPipelineExecutionInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StartPipelineExecutionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StartPipelineExecutionCommandOutput extends StartPipelineExecutionOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Starts the specified pipeline. Specifically, it begins processing the latest commit
|
|
18
23
|
* to the source location specified as part of the pipeline.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface StartPipelineExecutionCommandOutput extends StartPipelineExecut
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param StartPipelineExecutionCommandInput - {@link StartPipelineExecutionCommandInput}
|
|
35
|
+
* @returns {@link StartPipelineExecutionCommandOutput}
|
|
29
36
|
* @see {@link StartPipelineExecutionCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link StartPipelineExecutionCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -45,11 +52,20 @@ export interface StartPipelineExecutionCommandOutput extends StartPipelineExecut
|
|
|
45
52
|
export declare class StartPipelineExecutionCommand extends $Command<StartPipelineExecutionCommandInput, StartPipelineExecutionCommandOutput, CodePipelineClientResolvedConfig> {
|
|
46
53
|
readonly input: StartPipelineExecutionCommandInput;
|
|
47
54
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
55
|
+
/**
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
48
58
|
constructor(input: StartPipelineExecutionCommandInput);
|
|
49
59
|
/**
|
|
50
60
|
* @internal
|
|
51
61
|
*/
|
|
52
62
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartPipelineExecutionCommandInput, StartPipelineExecutionCommandOutput>;
|
|
63
|
+
/**
|
|
64
|
+
* @internal
|
|
65
|
+
*/
|
|
53
66
|
private serialize;
|
|
67
|
+
/**
|
|
68
|
+
* @internal
|
|
69
|
+
*/
|
|
54
70
|
private deserialize;
|
|
55
71
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient";
|
|
5
5
|
import { StopPipelineExecutionInput, StopPipelineExecutionOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link StopPipelineExecutionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface StopPipelineExecutionCommandInput extends StopPipelineExecutionInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link StopPipelineExecutionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface StopPipelineExecutionCommandOutput extends StopPipelineExecutionOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Stops the specified pipeline execution. You choose to either stop the pipeline
|
|
18
23
|
* execution by completing in-progress actions without starting subsequent actions, or by
|
|
19
24
|
* abandoning in-progress actions. While completing or abandoning in-progress actions, the
|
|
@@ -30,6 +35,8 @@ export interface StopPipelineExecutionCommandOutput extends StopPipelineExecutio
|
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
32
37
|
*
|
|
38
|
+
* @param StopPipelineExecutionCommandInput - {@link StopPipelineExecutionCommandInput}
|
|
39
|
+
* @returns {@link StopPipelineExecutionCommandOutput}
|
|
33
40
|
* @see {@link StopPipelineExecutionCommandInput} for command's `input` shape.
|
|
34
41
|
* @see {@link StopPipelineExecutionCommandOutput} for command's `response` shape.
|
|
35
42
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -60,11 +67,20 @@ export interface StopPipelineExecutionCommandOutput extends StopPipelineExecutio
|
|
|
60
67
|
export declare class StopPipelineExecutionCommand extends $Command<StopPipelineExecutionCommandInput, StopPipelineExecutionCommandOutput, CodePipelineClientResolvedConfig> {
|
|
61
68
|
readonly input: StopPipelineExecutionCommandInput;
|
|
62
69
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
63
73
|
constructor(input: StopPipelineExecutionCommandInput);
|
|
64
74
|
/**
|
|
65
75
|
* @internal
|
|
66
76
|
*/
|
|
67
77
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopPipelineExecutionCommandInput, StopPipelineExecutionCommandOutput>;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
68
81
|
private serialize;
|
|
82
|
+
/**
|
|
83
|
+
* @internal
|
|
84
|
+
*/
|
|
69
85
|
private deserialize;
|
|
70
86
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient";
|
|
5
5
|
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link TagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface TagResourceCommandInput extends TagResourceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link TagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Adds to or modifies the tags of the given resource. Tags are metadata that can be used
|
|
18
23
|
* to manage a resource. </p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
35
|
+
* @returns {@link TagResourceCommandOutput}
|
|
29
36
|
* @see {@link TagResourceCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link TagResourceCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
53
60
|
export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, CodePipelineClientResolvedConfig> {
|
|
54
61
|
readonly input: TagResourceCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: TagResourceCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
|
|
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 { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UntagResourceCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UntagResourceCommandInput extends UntagResourceInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UntagResourceCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UntagResourceCommandOutput extends UntagResourceOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes tags from an AWS resource.</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 UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
34
|
+
* @returns {@link UntagResourceCommandOutput}
|
|
28
35
|
* @see {@link UntagResourceCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link UntagResourceCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -49,11 +56,20 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
49
56
|
export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, CodePipelineClientResolvedConfig> {
|
|
50
57
|
readonly input: UntagResourceCommandInput;
|
|
51
58
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
59
|
+
/**
|
|
60
|
+
* @public
|
|
61
|
+
*/
|
|
52
62
|
constructor(input: UntagResourceCommandInput);
|
|
53
63
|
/**
|
|
54
64
|
* @internal
|
|
55
65
|
*/
|
|
56
66
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
|
|
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 { UpdateActionTypeInput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdateActionTypeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdateActionTypeCommandInput extends UpdateActionTypeInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdateActionTypeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdateActionTypeCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates an action type that was created with any supported integration model, where
|
|
18
23
|
* the action type is to be used by customers of the action type provider. Use a JSON file
|
|
19
24
|
* with the action definition and <code>UpdateActionType</code> to provide the full
|
|
@@ -28,6 +33,8 @@ export interface UpdateActionTypeCommandOutput extends __MetadataBearer {
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param UpdateActionTypeCommandInput - {@link UpdateActionTypeCommandInput}
|
|
37
|
+
* @returns {@link UpdateActionTypeCommandOutput}
|
|
31
38
|
* @see {@link UpdateActionTypeCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link UpdateActionTypeCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface UpdateActionTypeCommandOutput extends __MetadataBearer {
|
|
|
46
53
|
export declare class UpdateActionTypeCommand extends $Command<UpdateActionTypeCommandInput, UpdateActionTypeCommandOutput, CodePipelineClientResolvedConfig> {
|
|
47
54
|
readonly input: UpdateActionTypeCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: UpdateActionTypeCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateActionTypeCommandInput, UpdateActionTypeCommandOutput>;
|
|
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 { UpdatePipelineInput, UpdatePipelineOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link UpdatePipelineCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface UpdatePipelineCommandInput extends UpdatePipelineInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link UpdatePipelineCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface UpdatePipelineCommandOutput extends UpdatePipelineOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Updates a specified pipeline with edits or changes to its structure. Use a JSON
|
|
18
23
|
* file with the pipeline structure and <code>UpdatePipeline</code> to provide the full
|
|
19
24
|
* structure of the pipeline. Updating the pipeline increases the version number of the
|
|
@@ -28,6 +33,8 @@ export interface UpdatePipelineCommandOutput extends UpdatePipelineOutput, __Met
|
|
|
28
33
|
* const response = await client.send(command);
|
|
29
34
|
* ```
|
|
30
35
|
*
|
|
36
|
+
* @param UpdatePipelineCommandInput - {@link UpdatePipelineCommandInput}
|
|
37
|
+
* @returns {@link UpdatePipelineCommandOutput}
|
|
31
38
|
* @see {@link UpdatePipelineCommandInput} for command's `input` shape.
|
|
32
39
|
* @see {@link UpdatePipelineCommandOutput} for command's `response` shape.
|
|
33
40
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -56,11 +63,20 @@ export interface UpdatePipelineCommandOutput extends UpdatePipelineOutput, __Met
|
|
|
56
63
|
export declare class UpdatePipelineCommand extends $Command<UpdatePipelineCommandInput, UpdatePipelineCommandOutput, CodePipelineClientResolvedConfig> {
|
|
57
64
|
readonly input: UpdatePipelineCommandInput;
|
|
58
65
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
59
69
|
constructor(input: UpdatePipelineCommandInput);
|
|
60
70
|
/**
|
|
61
71
|
* @internal
|
|
62
72
|
*/
|
|
63
73
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdatePipelineCommandInput, UpdatePipelineCommandOutput>;
|
|
74
|
+
/**
|
|
75
|
+
* @internal
|
|
76
|
+
*/
|
|
64
77
|
private serialize;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
65
81
|
private deserialize;
|
|
66
82
|
}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
|
|
2
2
|
/**
|
|
3
|
+
* @public
|
|
4
|
+
*
|
|
3
5
|
* Base exception class for all service exceptions from CodePipeline service.
|
|
4
6
|
*/
|
|
5
7
|
export declare class CodePipelineServiceException extends __ServiceException {
|