@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 { DeletePipelineInput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeletePipelineCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeletePipelineCommandInput extends DeletePipelineInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeletePipelineCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeletePipelineCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes the specified 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 DeletePipelineCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param DeletePipelineCommandInput - {@link DeletePipelineCommandInput}
|
|
34
|
+
* @returns {@link DeletePipelineCommandOutput}
|
|
28
35
|
* @see {@link DeletePipelineCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link DeletePipelineCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -40,11 +47,20 @@ export interface DeletePipelineCommandOutput extends __MetadataBearer {
|
|
|
40
47
|
export declare class DeletePipelineCommand extends $Command<DeletePipelineCommandInput, DeletePipelineCommandOutput, CodePipelineClientResolvedConfig> {
|
|
41
48
|
readonly input: DeletePipelineCommandInput;
|
|
42
49
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
50
|
+
/**
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
43
53
|
constructor(input: DeletePipelineCommandInput);
|
|
44
54
|
/**
|
|
45
55
|
* @internal
|
|
46
56
|
*/
|
|
47
57
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeletePipelineCommandInput, DeletePipelineCommandOutput>;
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
48
61
|
private serialize;
|
|
62
|
+
/**
|
|
63
|
+
* @internal
|
|
64
|
+
*/
|
|
49
65
|
private deserialize;
|
|
50
66
|
}
|
|
@@ -4,16 +4,21 @@ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as
|
|
|
4
4
|
import { CodePipelineClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../CodePipelineClient";
|
|
5
5
|
import { DeleteWebhookInput, DeleteWebhookOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeleteWebhookCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeleteWebhookCommandInput extends DeleteWebhookInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeleteWebhookCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeleteWebhookCommandOutput extends DeleteWebhookOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Deletes a previously created webhook by name. Deleting the webhook stops AWS
|
|
18
23
|
* CodePipeline from starting a pipeline every time an external event occurs. The API
|
|
19
24
|
* returns successfully when trying to delete a webhook that is already deleted. If a
|
|
@@ -29,6 +34,8 @@ export interface DeleteWebhookCommandOutput extends DeleteWebhookOutput, __Metad
|
|
|
29
34
|
* const response = await client.send(command);
|
|
30
35
|
* ```
|
|
31
36
|
*
|
|
37
|
+
* @param DeleteWebhookCommandInput - {@link DeleteWebhookCommandInput}
|
|
38
|
+
* @returns {@link DeleteWebhookCommandOutput}
|
|
32
39
|
* @see {@link DeleteWebhookCommandInput} for command's `input` shape.
|
|
33
40
|
* @see {@link DeleteWebhookCommandOutput} for command's `response` shape.
|
|
34
41
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface DeleteWebhookCommandOutput extends DeleteWebhookOutput, __Metad
|
|
|
44
51
|
export declare class DeleteWebhookCommand extends $Command<DeleteWebhookCommandInput, DeleteWebhookCommandOutput, CodePipelineClientResolvedConfig> {
|
|
45
52
|
readonly input: DeleteWebhookCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: DeleteWebhookCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteWebhookCommandInput, DeleteWebhookCommandOutput>;
|
|
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 { DeregisterWebhookWithThirdPartyInput, DeregisterWebhookWithThirdPartyOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DeregisterWebhookWithThirdPartyCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DeregisterWebhookWithThirdPartyCommandInput extends DeregisterWebhookWithThirdPartyInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DeregisterWebhookWithThirdPartyCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DeregisterWebhookWithThirdPartyCommandOutput extends DeregisterWebhookWithThirdPartyOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Removes the connection between the webhook that was created by CodePipeline and the
|
|
18
23
|
* external tool with events to be detected. Currently supported only for webhooks that
|
|
19
24
|
* target an action type of GitHub.</p>
|
|
@@ -27,6 +32,8 @@ export interface DeregisterWebhookWithThirdPartyCommandOutput extends Deregister
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param DeregisterWebhookWithThirdPartyCommandInput - {@link DeregisterWebhookWithThirdPartyCommandInput}
|
|
36
|
+
* @returns {@link DeregisterWebhookWithThirdPartyCommandOutput}
|
|
30
37
|
* @see {@link DeregisterWebhookWithThirdPartyCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link DeregisterWebhookWithThirdPartyCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface DeregisterWebhookWithThirdPartyCommandOutput extends Deregister
|
|
|
43
50
|
export declare class DeregisterWebhookWithThirdPartyCommand extends $Command<DeregisterWebhookWithThirdPartyCommandInput, DeregisterWebhookWithThirdPartyCommandOutput, CodePipelineClientResolvedConfig> {
|
|
44
51
|
readonly input: DeregisterWebhookWithThirdPartyCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: DeregisterWebhookWithThirdPartyCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeregisterWebhookWithThirdPartyCommandInput, DeregisterWebhookWithThirdPartyCommandOutput>;
|
|
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 { DisableStageTransitionInput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link DisableStageTransitionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface DisableStageTransitionCommandInput extends DisableStageTransitionInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link DisableStageTransitionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface DisableStageTransitionCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Prevents artifacts in a pipeline from transitioning to the next stage in the
|
|
18
23
|
* pipeline.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface DisableStageTransitionCommandOutput extends __MetadataBearer {
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param DisableStageTransitionCommandInput - {@link DisableStageTransitionCommandInput}
|
|
35
|
+
* @returns {@link DisableStageTransitionCommandOutput}
|
|
29
36
|
* @see {@link DisableStageTransitionCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link DisableStageTransitionCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -44,11 +51,20 @@ export interface DisableStageTransitionCommandOutput extends __MetadataBearer {
|
|
|
44
51
|
export declare class DisableStageTransitionCommand extends $Command<DisableStageTransitionCommandInput, DisableStageTransitionCommandOutput, CodePipelineClientResolvedConfig> {
|
|
45
52
|
readonly input: DisableStageTransitionCommandInput;
|
|
46
53
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
47
57
|
constructor(input: DisableStageTransitionCommandInput);
|
|
48
58
|
/**
|
|
49
59
|
* @internal
|
|
50
60
|
*/
|
|
51
61
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DisableStageTransitionCommandInput, DisableStageTransitionCommandOutput>;
|
|
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 { EnableStageTransitionInput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link EnableStageTransitionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface EnableStageTransitionCommandInput extends EnableStageTransitionInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link EnableStageTransitionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface EnableStageTransitionCommandOutput extends __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Enables artifacts in a pipeline to transition to a stage in 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 EnableStageTransitionCommandOutput extends __MetadataBearer {
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param EnableStageTransitionCommandInput - {@link EnableStageTransitionCommandInput}
|
|
34
|
+
* @returns {@link EnableStageTransitionCommandOutput}
|
|
28
35
|
* @see {@link EnableStageTransitionCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link EnableStageTransitionCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -43,11 +50,20 @@ export interface EnableStageTransitionCommandOutput extends __MetadataBearer {
|
|
|
43
50
|
export declare class EnableStageTransitionCommand extends $Command<EnableStageTransitionCommandInput, EnableStageTransitionCommandOutput, CodePipelineClientResolvedConfig> {
|
|
44
51
|
readonly input: EnableStageTransitionCommandInput;
|
|
45
52
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
53
|
+
/**
|
|
54
|
+
* @public
|
|
55
|
+
*/
|
|
46
56
|
constructor(input: EnableStageTransitionCommandInput);
|
|
47
57
|
/**
|
|
48
58
|
* @internal
|
|
49
59
|
*/
|
|
50
60
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EnableStageTransitionCommandInput, EnableStageTransitionCommandOutput>;
|
|
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 { GetActionTypeInput, GetActionTypeOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetActionTypeCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetActionTypeCommandInput extends GetActionTypeInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetActionTypeCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetActionTypeCommandOutput extends GetActionTypeOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about an action type created for an external provider, where the
|
|
18
23
|
* action is to be used by customers of the external provider. The action can be created
|
|
19
24
|
* with any supported integration model.</p>
|
|
@@ -27,6 +32,8 @@ export interface GetActionTypeCommandOutput extends GetActionTypeOutput, __Metad
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetActionTypeCommandInput - {@link GetActionTypeCommandInput}
|
|
36
|
+
* @returns {@link GetActionTypeCommandOutput}
|
|
30
37
|
* @see {@link GetActionTypeCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetActionTypeCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -42,11 +49,20 @@ export interface GetActionTypeCommandOutput extends GetActionTypeOutput, __Metad
|
|
|
42
49
|
export declare class GetActionTypeCommand extends $Command<GetActionTypeCommandInput, GetActionTypeCommandOutput, CodePipelineClientResolvedConfig> {
|
|
43
50
|
readonly input: GetActionTypeCommandInput;
|
|
44
51
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
45
55
|
constructor(input: GetActionTypeCommandInput);
|
|
46
56
|
/**
|
|
47
57
|
* @internal
|
|
48
58
|
*/
|
|
49
59
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetActionTypeCommandInput, GetActionTypeCommandOutput>;
|
|
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 { GetJobDetailsInput, GetJobDetailsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetJobDetailsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetJobDetailsCommandInput extends GetJobDetailsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetJobDetailsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetJobDetailsCommandOutput extends GetJobDetailsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about a job. Used for custom actions only.</p>
|
|
18
23
|
* <important>
|
|
19
24
|
* <p>When this API is called, AWS CodePipeline returns temporary credentials for the
|
|
@@ -31,6 +36,8 @@ export interface GetJobDetailsCommandOutput extends GetJobDetailsOutput, __Metad
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param GetJobDetailsCommandInput - {@link GetJobDetailsCommandInput}
|
|
40
|
+
* @returns {@link GetJobDetailsCommandOutput}
|
|
34
41
|
* @see {@link GetJobDetailsCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link GetJobDetailsCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetJobDetailsCommandOutput extends GetJobDetailsOutput, __Metad
|
|
|
46
53
|
export declare class GetJobDetailsCommand extends $Command<GetJobDetailsCommandInput, GetJobDetailsCommandOutput, CodePipelineClientResolvedConfig> {
|
|
47
54
|
readonly input: GetJobDetailsCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetJobDetailsCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetJobDetailsCommandInput, GetJobDetailsCommandOutput>;
|
|
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 { GetPipelineInput, GetPipelineOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetPipelineCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetPipelineCommandInput extends GetPipelineInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetPipelineCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetPipelineCommandOutput extends GetPipelineOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns the metadata, structure, stages, and actions of a pipeline. Can be used to
|
|
18
23
|
* return the entire structure of a pipeline in JSON format, which can then be modified and
|
|
19
24
|
* used to update the pipeline structure with <a>UpdatePipeline</a>.</p>
|
|
@@ -27,6 +32,8 @@ export interface GetPipelineCommandOutput extends GetPipelineOutput, __MetadataB
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetPipelineCommandInput - {@link GetPipelineCommandInput}
|
|
36
|
+
* @returns {@link GetPipelineCommandOutput}
|
|
30
37
|
* @see {@link GetPipelineCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetPipelineCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetPipelineCommandOutput extends GetPipelineOutput, __MetadataB
|
|
|
46
53
|
export declare class GetPipelineCommand extends $Command<GetPipelineCommandInput, GetPipelineCommandOutput, CodePipelineClientResolvedConfig> {
|
|
47
54
|
readonly input: GetPipelineCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetPipelineCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPipelineCommandInput, GetPipelineCommandOutput>;
|
|
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 { GetPipelineExecutionInput, GetPipelineExecutionOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetPipelineExecutionCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetPipelineExecutionCommandInput extends GetPipelineExecutionInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetPipelineExecutionCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetPipelineExecutionCommandOutput extends GetPipelineExecutionOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about an execution of a pipeline, including details about
|
|
18
23
|
* artifacts, the pipeline execution ID, and the name, version, and status of the
|
|
19
24
|
* pipeline.</p>
|
|
@@ -27,6 +32,8 @@ export interface GetPipelineExecutionCommandOutput extends GetPipelineExecutionO
|
|
|
27
32
|
* const response = await client.send(command);
|
|
28
33
|
* ```
|
|
29
34
|
*
|
|
35
|
+
* @param GetPipelineExecutionCommandInput - {@link GetPipelineExecutionCommandInput}
|
|
36
|
+
* @returns {@link GetPipelineExecutionCommandOutput}
|
|
30
37
|
* @see {@link GetPipelineExecutionCommandInput} for command's `input` shape.
|
|
31
38
|
* @see {@link GetPipelineExecutionCommandOutput} for command's `response` shape.
|
|
32
39
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetPipelineExecutionCommandOutput extends GetPipelineExecutionO
|
|
|
46
53
|
export declare class GetPipelineExecutionCommand extends $Command<GetPipelineExecutionCommandInput, GetPipelineExecutionCommandOutput, CodePipelineClientResolvedConfig> {
|
|
47
54
|
readonly input: GetPipelineExecutionCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetPipelineExecutionCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPipelineExecutionCommandInput, GetPipelineExecutionCommandOutput>;
|
|
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 { GetPipelineStateInput, GetPipelineStateOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetPipelineStateCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetPipelineStateCommandInput extends GetPipelineStateInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetPipelineStateCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetPipelineStateCommandOutput extends GetPipelineStateOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Returns information about the state of a pipeline, including the stages and
|
|
18
23
|
* actions.</p>
|
|
19
24
|
* <note>
|
|
@@ -31,6 +36,8 @@ export interface GetPipelineStateCommandOutput extends GetPipelineStateOutput, _
|
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
33
38
|
*
|
|
39
|
+
* @param GetPipelineStateCommandInput - {@link GetPipelineStateCommandInput}
|
|
40
|
+
* @returns {@link GetPipelineStateCommandOutput}
|
|
34
41
|
* @see {@link GetPipelineStateCommandInput} for command's `input` shape.
|
|
35
42
|
* @see {@link GetPipelineStateCommandOutput} for command's `response` shape.
|
|
36
43
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -46,11 +53,20 @@ export interface GetPipelineStateCommandOutput extends GetPipelineStateOutput, _
|
|
|
46
53
|
export declare class GetPipelineStateCommand extends $Command<GetPipelineStateCommandInput, GetPipelineStateCommandOutput, CodePipelineClientResolvedConfig> {
|
|
47
54
|
readonly input: GetPipelineStateCommandInput;
|
|
48
55
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
56
|
+
/**
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
49
59
|
constructor(input: GetPipelineStateCommandInput);
|
|
50
60
|
/**
|
|
51
61
|
* @internal
|
|
52
62
|
*/
|
|
53
63
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetPipelineStateCommandInput, GetPipelineStateCommandOutput>;
|
|
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 { GetThirdPartyJobDetailsInput, GetThirdPartyJobDetailsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link GetThirdPartyJobDetailsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface GetThirdPartyJobDetailsCommandInput extends GetThirdPartyJobDetailsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link GetThirdPartyJobDetailsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface GetThirdPartyJobDetailsCommandOutput extends GetThirdPartyJobDetailsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Requests the details of a job for a third party action. Used for partner actions
|
|
18
23
|
* only.</p>
|
|
19
24
|
* <important>
|
|
@@ -32,6 +37,8 @@ export interface GetThirdPartyJobDetailsCommandOutput extends GetThirdPartyJobDe
|
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
34
39
|
*
|
|
40
|
+
* @param GetThirdPartyJobDetailsCommandInput - {@link GetThirdPartyJobDetailsCommandInput}
|
|
41
|
+
* @returns {@link GetThirdPartyJobDetailsCommandOutput}
|
|
35
42
|
* @see {@link GetThirdPartyJobDetailsCommandInput} for command's `input` shape.
|
|
36
43
|
* @see {@link GetThirdPartyJobDetailsCommandOutput} for command's `response` shape.
|
|
37
44
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -53,11 +60,20 @@ export interface GetThirdPartyJobDetailsCommandOutput extends GetThirdPartyJobDe
|
|
|
53
60
|
export declare class GetThirdPartyJobDetailsCommand extends $Command<GetThirdPartyJobDetailsCommandInput, GetThirdPartyJobDetailsCommandOutput, CodePipelineClientResolvedConfig> {
|
|
54
61
|
readonly input: GetThirdPartyJobDetailsCommandInput;
|
|
55
62
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
56
66
|
constructor(input: GetThirdPartyJobDetailsCommandInput);
|
|
57
67
|
/**
|
|
58
68
|
* @internal
|
|
59
69
|
*/
|
|
60
70
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GetThirdPartyJobDetailsCommandInput, GetThirdPartyJobDetailsCommandOutput>;
|
|
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 { ListActionExecutionsInput, ListActionExecutionsOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListActionExecutionsCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListActionExecutionsCommandInput extends ListActionExecutionsInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListActionExecutionsCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListActionExecutionsCommandOutput extends ListActionExecutionsOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Lists the action executions that have occurred in 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 ListActionExecutionsCommandOutput extends ListActionExecutionsO
|
|
|
25
30
|
* const response = await client.send(command);
|
|
26
31
|
* ```
|
|
27
32
|
*
|
|
33
|
+
* @param ListActionExecutionsCommandInput - {@link ListActionExecutionsCommandInput}
|
|
34
|
+
* @returns {@link ListActionExecutionsCommandOutput}
|
|
28
35
|
* @see {@link ListActionExecutionsCommandInput} for command's `input` shape.
|
|
29
36
|
* @see {@link ListActionExecutionsCommandOutput} for command's `response` shape.
|
|
30
37
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -48,11 +55,20 @@ export interface ListActionExecutionsCommandOutput extends ListActionExecutionsO
|
|
|
48
55
|
export declare class ListActionExecutionsCommand extends $Command<ListActionExecutionsCommandInput, ListActionExecutionsCommandOutput, CodePipelineClientResolvedConfig> {
|
|
49
56
|
readonly input: ListActionExecutionsCommandInput;
|
|
50
57
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
51
61
|
constructor(input: ListActionExecutionsCommandInput);
|
|
52
62
|
/**
|
|
53
63
|
* @internal
|
|
54
64
|
*/
|
|
55
65
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListActionExecutionsCommandInput, ListActionExecutionsCommandOutput>;
|
|
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 { ListActionTypesInput, ListActionTypesOutput } from "../models/models_0";
|
|
6
6
|
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
7
9
|
* The input for {@link ListActionTypesCommand}.
|
|
8
10
|
*/
|
|
9
11
|
export interface ListActionTypesCommandInput extends ListActionTypesInput {
|
|
10
12
|
}
|
|
11
13
|
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
12
16
|
* The output of {@link ListActionTypesCommand}.
|
|
13
17
|
*/
|
|
14
18
|
export interface ListActionTypesCommandOutput extends ListActionTypesOutput, __MetadataBearer {
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
21
|
+
* @public
|
|
17
22
|
* <p>Gets a summary of all AWS CodePipeline action types associated with your
|
|
18
23
|
* account.</p>
|
|
19
24
|
* @example
|
|
@@ -26,6 +31,8 @@ export interface ListActionTypesCommandOutput extends ListActionTypesOutput, __M
|
|
|
26
31
|
* const response = await client.send(command);
|
|
27
32
|
* ```
|
|
28
33
|
*
|
|
34
|
+
* @param ListActionTypesCommandInput - {@link ListActionTypesCommandInput}
|
|
35
|
+
* @returns {@link ListActionTypesCommandOutput}
|
|
29
36
|
* @see {@link ListActionTypesCommandInput} for command's `input` shape.
|
|
30
37
|
* @see {@link ListActionTypesCommandOutput} for command's `response` shape.
|
|
31
38
|
* @see {@link CodePipelineClientResolvedConfig | config} for CodePipelineClient's `config` shape.
|
|
@@ -42,11 +49,20 @@ export interface ListActionTypesCommandOutput extends ListActionTypesOutput, __M
|
|
|
42
49
|
export declare class ListActionTypesCommand extends $Command<ListActionTypesCommandInput, ListActionTypesCommandOutput, CodePipelineClientResolvedConfig> {
|
|
43
50
|
readonly input: ListActionTypesCommandInput;
|
|
44
51
|
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
52
|
+
/**
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
45
55
|
constructor(input: ListActionTypesCommandInput);
|
|
46
56
|
/**
|
|
47
57
|
* @internal
|
|
48
58
|
*/
|
|
49
59
|
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: CodePipelineClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListActionTypesCommandInput, ListActionTypesCommandOutput>;
|
|
60
|
+
/**
|
|
61
|
+
* @internal
|
|
62
|
+
*/
|
|
50
63
|
private serialize;
|
|
64
|
+
/**
|
|
65
|
+
* @internal
|
|
66
|
+
*/
|
|
51
67
|
private deserialize;
|
|
52
68
|
}
|