@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
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListActionExecutionsCommandInput, ListActionExecutionsCommandOutput } from "../commands/ListActionExecutionsCommand";
|
|
3
3
|
import { CodePipelinePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListActionExecutions(config: CodePipelinePaginationConfiguration, input: ListActionExecutionsCommandInput, ...additionalArguments: any): Paginator<ListActionExecutionsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListActionTypesCommandInput, ListActionTypesCommandOutput } from "../commands/ListActionTypesCommand";
|
|
3
3
|
import { CodePipelinePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListActionTypes(config: CodePipelinePaginationConfiguration, input: ListActionTypesCommandInput, ...additionalArguments: any): Paginator<ListActionTypesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListPipelineExecutionsCommandInput, ListPipelineExecutionsCommandOutput } from "../commands/ListPipelineExecutionsCommand";
|
|
3
3
|
import { CodePipelinePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListPipelineExecutions(config: CodePipelinePaginationConfiguration, input: ListPipelineExecutionsCommandInput, ...additionalArguments: any): Paginator<ListPipelineExecutionsCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListPipelinesCommandInput, ListPipelinesCommandOutput } from "../commands/ListPipelinesCommand";
|
|
3
3
|
import { CodePipelinePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListPipelines(config: CodePipelinePaginationConfiguration, input: ListPipelinesCommandInput, ...additionalArguments: any): Paginator<ListPipelinesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
3
3
|
import { CodePipelinePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListTagsForResource(config: CodePipelinePaginationConfiguration, input: ListTagsForResourceCommandInput, ...additionalArguments: any): Paginator<ListTagsForResourceCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListWebhooksCommandInput, ListWebhooksCommandOutput } from "../commands/ListWebhooksCommand";
|
|
3
3
|
import { CodePipelinePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListWebhooks(config: CodePipelinePaginationConfiguration, input: ListWebhooksCommandInput, ...additionalArguments: any): Paginator<ListWebhooksCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-codepipeline",
|
|
3
3
|
"description": "AWS SDK for JavaScript Codepipeline Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.297.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.297.0",
|
|
24
24
|
"@aws-sdk/config-resolver": "3.296.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.297.0",
|
|
26
26
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
27
27
|
"@aws-sdk/hash-node": "3.296.0",
|
|
28
28
|
"@aws-sdk/invalid-dependency": "3.296.0",
|