@aws-sdk/client-codepipeline 3.299.0 → 3.301.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/commands/AcknowledgeJobCommand.d.ts +4 -0
- package/dist-types/commands/AcknowledgeThirdPartyJobCommand.d.ts +5 -0
- package/dist-types/commands/CreateCustomActionTypeCommand.d.ts +36 -0
- package/dist-types/commands/CreatePipelineCommand.d.ts +70 -0
- package/dist-types/commands/DeleteCustomActionTypeCommand.d.ts +5 -0
- package/dist-types/commands/DeletePipelineCommand.d.ts +3 -0
- package/dist-types/commands/DeleteWebhookCommand.d.ts +3 -0
- package/dist-types/commands/DeregisterWebhookWithThirdPartyCommand.d.ts +3 -0
- package/dist-types/commands/DisableStageTransitionCommand.d.ts +6 -0
- package/dist-types/commands/EnableStageTransitionCommand.d.ts +5 -0
- package/dist-types/commands/GetActionTypeCommand.d.ts +6 -0
- package/dist-types/commands/GetJobDetailsCommand.d.ts +3 -0
- package/dist-types/commands/GetPipelineCommand.d.ts +4 -0
- package/dist-types/commands/GetPipelineExecutionCommand.d.ts +4 -0
- package/dist-types/commands/GetPipelineStateCommand.d.ts +3 -0
- package/dist-types/commands/GetThirdPartyJobDetailsCommand.d.ts +4 -0
- package/dist-types/commands/ListActionExecutionsCommand.d.ts +8 -0
- package/dist-types/commands/ListActionTypesCommand.d.ts +5 -0
- package/dist-types/commands/ListPipelineExecutionsCommand.d.ts +5 -0
- package/dist-types/commands/ListPipelinesCommand.d.ts +4 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +5 -0
- package/dist-types/commands/ListWebhooksCommand.d.ts +4 -0
- package/dist-types/commands/PollForJobsCommand.d.ts +12 -0
- package/dist-types/commands/PollForThirdPartyJobsCommand.d.ts +9 -0
- package/dist-types/commands/PutActionRevisionCommand.d.ts +10 -0
- package/dist-types/commands/PutApprovalResultCommand.d.ts +10 -0
- package/dist-types/commands/PutJobFailureResultCommand.d.ts +8 -0
- package/dist-types/commands/PutJobSuccessResultCommand.d.ts +18 -0
- package/dist-types/commands/PutThirdPartyJobFailureResultCommand.d.ts +9 -0
- package/dist-types/commands/PutThirdPartyJobSuccessResultCommand.d.ts +16 -0
- package/dist-types/commands/PutWebhookCommand.d.ts +24 -0
- package/dist-types/commands/RegisterWebhookWithThirdPartyCommand.d.ts +3 -0
- package/dist-types/commands/RetryStageExecutionCommand.d.ts +6 -0
- package/dist-types/commands/StartPipelineExecutionCommand.d.ts +4 -0
- package/dist-types/commands/StopPipelineExecutionCommand.d.ts +6 -0
- package/dist-types/commands/TagResourceCommand.d.ts +9 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateActionTypeCommand.d.ts +58 -0
- package/dist-types/commands/UpdatePipelineCommand.d.ts +64 -0
- package/package.json +8 -8
|
@@ -27,6 +27,10 @@ export interface AcknowledgeJobCommandOutput extends AcknowledgeJobOutput, __Met
|
|
|
27
27
|
* import { CodePipelineClient, AcknowledgeJobCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
28
28
|
* // const { CodePipelineClient, AcknowledgeJobCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
29
29
|
* const client = new CodePipelineClient(config);
|
|
30
|
+
* const input = { // AcknowledgeJobInput
|
|
31
|
+
* jobId: "STRING_VALUE", // required
|
|
32
|
+
* nonce: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new AcknowledgeJobCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -27,6 +27,11 @@ export interface AcknowledgeThirdPartyJobCommandOutput extends AcknowledgeThirdP
|
|
|
27
27
|
* import { CodePipelineClient, AcknowledgeThirdPartyJobCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
28
28
|
* // const { CodePipelineClient, AcknowledgeThirdPartyJobCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
29
29
|
* const client = new CodePipelineClient(config);
|
|
30
|
+
* const input = { // AcknowledgeThirdPartyJobInput
|
|
31
|
+
* jobId: "STRING_VALUE", // required
|
|
32
|
+
* nonce: "STRING_VALUE", // required
|
|
33
|
+
* clientToken: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
30
35
|
* const command = new AcknowledgeThirdPartyJobCommand(input);
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
@@ -27,6 +27,42 @@ export interface CreateCustomActionTypeCommandOutput extends CreateCustomActionT
|
|
|
27
27
|
* import { CodePipelineClient, CreateCustomActionTypeCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
28
28
|
* // const { CodePipelineClient, CreateCustomActionTypeCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
29
29
|
* const client = new CodePipelineClient(config);
|
|
30
|
+
* const input = { // CreateCustomActionTypeInput
|
|
31
|
+
* category: "STRING_VALUE", // required
|
|
32
|
+
* provider: "STRING_VALUE", // required
|
|
33
|
+
* version: "STRING_VALUE", // required
|
|
34
|
+
* settings: { // ActionTypeSettings
|
|
35
|
+
* thirdPartyConfigurationUrl: "STRING_VALUE",
|
|
36
|
+
* entityUrlTemplate: "STRING_VALUE",
|
|
37
|
+
* executionUrlTemplate: "STRING_VALUE",
|
|
38
|
+
* revisionUrlTemplate: "STRING_VALUE",
|
|
39
|
+
* },
|
|
40
|
+
* configurationProperties: [ // ActionConfigurationPropertyList
|
|
41
|
+
* { // ActionConfigurationProperty
|
|
42
|
+
* name: "STRING_VALUE", // required
|
|
43
|
+
* required: true || false, // required
|
|
44
|
+
* key: true || false, // required
|
|
45
|
+
* secret: true || false, // required
|
|
46
|
+
* queryable: true || false,
|
|
47
|
+
* description: "STRING_VALUE",
|
|
48
|
+
* type: "STRING_VALUE",
|
|
49
|
+
* },
|
|
50
|
+
* ],
|
|
51
|
+
* inputArtifactDetails: { // ArtifactDetails
|
|
52
|
+
* minimumCount: Number("int"), // required
|
|
53
|
+
* maximumCount: Number("int"), // required
|
|
54
|
+
* },
|
|
55
|
+
* outputArtifactDetails: {
|
|
56
|
+
* minimumCount: Number("int"), // required
|
|
57
|
+
* maximumCount: Number("int"), // required
|
|
58
|
+
* },
|
|
59
|
+
* tags: [ // TagList
|
|
60
|
+
* { // Tag
|
|
61
|
+
* key: "STRING_VALUE", // required
|
|
62
|
+
* value: "STRING_VALUE", // required
|
|
63
|
+
* },
|
|
64
|
+
* ],
|
|
65
|
+
* };
|
|
30
66
|
* const command = new CreateCustomActionTypeCommand(input);
|
|
31
67
|
* const response = await client.send(command);
|
|
32
68
|
* ```
|
|
@@ -32,6 +32,76 @@ export interface CreatePipelineCommandOutput extends CreatePipelineOutput, __Met
|
|
|
32
32
|
* import { CodePipelineClient, CreatePipelineCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
33
33
|
* // const { CodePipelineClient, CreatePipelineCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
34
34
|
* const client = new CodePipelineClient(config);
|
|
35
|
+
* const input = { // CreatePipelineInput
|
|
36
|
+
* pipeline: { // PipelineDeclaration
|
|
37
|
+
* name: "STRING_VALUE", // required
|
|
38
|
+
* roleArn: "STRING_VALUE", // required
|
|
39
|
+
* artifactStore: { // ArtifactStore
|
|
40
|
+
* type: "STRING_VALUE", // required
|
|
41
|
+
* location: "STRING_VALUE", // required
|
|
42
|
+
* encryptionKey: { // EncryptionKey
|
|
43
|
+
* id: "STRING_VALUE", // required
|
|
44
|
+
* type: "STRING_VALUE", // required
|
|
45
|
+
* },
|
|
46
|
+
* },
|
|
47
|
+
* artifactStores: { // ArtifactStoreMap
|
|
48
|
+
* "<keys>": {
|
|
49
|
+
* type: "STRING_VALUE", // required
|
|
50
|
+
* location: "STRING_VALUE", // required
|
|
51
|
+
* encryptionKey: {
|
|
52
|
+
* id: "STRING_VALUE", // required
|
|
53
|
+
* type: "STRING_VALUE", // required
|
|
54
|
+
* },
|
|
55
|
+
* },
|
|
56
|
+
* },
|
|
57
|
+
* stages: [ // PipelineStageDeclarationList // required
|
|
58
|
+
* { // StageDeclaration
|
|
59
|
+
* name: "STRING_VALUE", // required
|
|
60
|
+
* blockers: [ // StageBlockerDeclarationList
|
|
61
|
+
* { // BlockerDeclaration
|
|
62
|
+
* name: "STRING_VALUE", // required
|
|
63
|
+
* type: "STRING_VALUE", // required
|
|
64
|
+
* },
|
|
65
|
+
* ],
|
|
66
|
+
* actions: [ // StageActionDeclarationList // required
|
|
67
|
+
* { // ActionDeclaration
|
|
68
|
+
* name: "STRING_VALUE", // required
|
|
69
|
+
* actionTypeId: { // ActionTypeId
|
|
70
|
+
* category: "STRING_VALUE", // required
|
|
71
|
+
* owner: "STRING_VALUE", // required
|
|
72
|
+
* provider: "STRING_VALUE", // required
|
|
73
|
+
* version: "STRING_VALUE", // required
|
|
74
|
+
* },
|
|
75
|
+
* runOrder: Number("int"),
|
|
76
|
+
* configuration: { // ActionConfigurationMap
|
|
77
|
+
* "<keys>": "STRING_VALUE",
|
|
78
|
+
* },
|
|
79
|
+
* outputArtifacts: [ // OutputArtifactList
|
|
80
|
+
* { // OutputArtifact
|
|
81
|
+
* name: "STRING_VALUE", // required
|
|
82
|
+
* },
|
|
83
|
+
* ],
|
|
84
|
+
* inputArtifacts: [ // InputArtifactList
|
|
85
|
+
* { // InputArtifact
|
|
86
|
+
* name: "STRING_VALUE", // required
|
|
87
|
+
* },
|
|
88
|
+
* ],
|
|
89
|
+
* roleArn: "STRING_VALUE",
|
|
90
|
+
* region: "STRING_VALUE",
|
|
91
|
+
* namespace: "STRING_VALUE",
|
|
92
|
+
* },
|
|
93
|
+
* ],
|
|
94
|
+
* },
|
|
95
|
+
* ],
|
|
96
|
+
* version: Number("int"),
|
|
97
|
+
* },
|
|
98
|
+
* tags: [ // TagList
|
|
99
|
+
* { // Tag
|
|
100
|
+
* key: "STRING_VALUE", // required
|
|
101
|
+
* value: "STRING_VALUE", // required
|
|
102
|
+
* },
|
|
103
|
+
* ],
|
|
104
|
+
* };
|
|
35
105
|
* const command = new CreatePipelineCommand(input);
|
|
36
106
|
* const response = await client.send(command);
|
|
37
107
|
* ```
|
|
@@ -34,6 +34,11 @@ export interface DeleteCustomActionTypeCommandOutput extends __MetadataBearer {
|
|
|
34
34
|
* import { CodePipelineClient, DeleteCustomActionTypeCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
35
35
|
* // const { CodePipelineClient, DeleteCustomActionTypeCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
36
36
|
* const client = new CodePipelineClient(config);
|
|
37
|
+
* const input = { // DeleteCustomActionTypeInput
|
|
38
|
+
* category: "STRING_VALUE", // required
|
|
39
|
+
* provider: "STRING_VALUE", // required
|
|
40
|
+
* version: "STRING_VALUE", // required
|
|
41
|
+
* };
|
|
37
42
|
* const command = new DeleteCustomActionTypeCommand(input);
|
|
38
43
|
* const response = await client.send(command);
|
|
39
44
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeletePipelineCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { CodePipelineClient, DeletePipelineCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
27
27
|
* // const { CodePipelineClient, DeletePipelineCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
28
28
|
* const client = new CodePipelineClient(config);
|
|
29
|
+
* const input = { // DeletePipelineInput
|
|
30
|
+
* name: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeletePipelineCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -30,6 +30,9 @@ export interface DeleteWebhookCommandOutput extends DeleteWebhookOutput, __Metad
|
|
|
30
30
|
* import { CodePipelineClient, DeleteWebhookCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
31
31
|
* // const { CodePipelineClient, DeleteWebhookCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
32
32
|
* const client = new CodePipelineClient(config);
|
|
33
|
+
* const input = { // DeleteWebhookInput
|
|
34
|
+
* name: "STRING_VALUE", // required
|
|
35
|
+
* };
|
|
33
36
|
* const command = new DeleteWebhookCommand(input);
|
|
34
37
|
* const response = await client.send(command);
|
|
35
38
|
* ```
|
|
@@ -28,6 +28,9 @@ export interface DeregisterWebhookWithThirdPartyCommandOutput extends Deregister
|
|
|
28
28
|
* import { CodePipelineClient, DeregisterWebhookWithThirdPartyCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
29
29
|
* // const { CodePipelineClient, DeregisterWebhookWithThirdPartyCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
30
30
|
* const client = new CodePipelineClient(config);
|
|
31
|
+
* const input = { // DeregisterWebhookWithThirdPartyInput
|
|
32
|
+
* webhookName: "STRING_VALUE",
|
|
33
|
+
* };
|
|
31
34
|
* const command = new DeregisterWebhookWithThirdPartyCommand(input);
|
|
32
35
|
* const response = await client.send(command);
|
|
33
36
|
* ```
|
|
@@ -27,6 +27,12 @@ export interface DisableStageTransitionCommandOutput extends __MetadataBearer {
|
|
|
27
27
|
* import { CodePipelineClient, DisableStageTransitionCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
28
28
|
* // const { CodePipelineClient, DisableStageTransitionCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
29
29
|
* const client = new CodePipelineClient(config);
|
|
30
|
+
* const input = { // DisableStageTransitionInput
|
|
31
|
+
* pipelineName: "STRING_VALUE", // required
|
|
32
|
+
* stageName: "STRING_VALUE", // required
|
|
33
|
+
* transitionType: "STRING_VALUE", // required
|
|
34
|
+
* reason: "STRING_VALUE", // required
|
|
35
|
+
* };
|
|
30
36
|
* const command = new DisableStageTransitionCommand(input);
|
|
31
37
|
* const response = await client.send(command);
|
|
32
38
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface EnableStageTransitionCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { CodePipelineClient, EnableStageTransitionCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
27
27
|
* // const { CodePipelineClient, EnableStageTransitionCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
28
28
|
* const client = new CodePipelineClient(config);
|
|
29
|
+
* const input = { // EnableStageTransitionInput
|
|
30
|
+
* pipelineName: "STRING_VALUE", // required
|
|
31
|
+
* stageName: "STRING_VALUE", // required
|
|
32
|
+
* transitionType: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
29
34
|
* const command = new EnableStageTransitionCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -28,6 +28,12 @@ export interface GetActionTypeCommandOutput extends GetActionTypeOutput, __Metad
|
|
|
28
28
|
* import { CodePipelineClient, GetActionTypeCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
29
29
|
* // const { CodePipelineClient, GetActionTypeCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
30
30
|
* const client = new CodePipelineClient(config);
|
|
31
|
+
* const input = { // GetActionTypeInput
|
|
32
|
+
* category: "STRING_VALUE", // required
|
|
33
|
+
* owner: "STRING_VALUE", // required
|
|
34
|
+
* provider: "STRING_VALUE", // required
|
|
35
|
+
* version: "STRING_VALUE", // required
|
|
36
|
+
* };
|
|
31
37
|
* const command = new GetActionTypeCommand(input);
|
|
32
38
|
* const response = await client.send(command);
|
|
33
39
|
* ```
|
|
@@ -32,6 +32,9 @@ export interface GetJobDetailsCommandOutput extends GetJobDetailsOutput, __Metad
|
|
|
32
32
|
* import { CodePipelineClient, GetJobDetailsCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
33
33
|
* // const { CodePipelineClient, GetJobDetailsCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
34
34
|
* const client = new CodePipelineClient(config);
|
|
35
|
+
* const input = { // GetJobDetailsInput
|
|
36
|
+
* jobId: "STRING_VALUE", // required
|
|
37
|
+
* };
|
|
35
38
|
* const command = new GetJobDetailsCommand(input);
|
|
36
39
|
* const response = await client.send(command);
|
|
37
40
|
* ```
|
|
@@ -28,6 +28,10 @@ export interface GetPipelineCommandOutput extends GetPipelineOutput, __MetadataB
|
|
|
28
28
|
* import { CodePipelineClient, GetPipelineCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
29
29
|
* // const { CodePipelineClient, GetPipelineCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
30
30
|
* const client = new CodePipelineClient(config);
|
|
31
|
+
* const input = { // GetPipelineInput
|
|
32
|
+
* name: "STRING_VALUE", // required
|
|
33
|
+
* version: Number("int"),
|
|
34
|
+
* };
|
|
31
35
|
* const command = new GetPipelineCommand(input);
|
|
32
36
|
* const response = await client.send(command);
|
|
33
37
|
* ```
|
|
@@ -28,6 +28,10 @@ export interface GetPipelineExecutionCommandOutput extends GetPipelineExecutionO
|
|
|
28
28
|
* import { CodePipelineClient, GetPipelineExecutionCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
29
29
|
* // const { CodePipelineClient, GetPipelineExecutionCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
30
30
|
* const client = new CodePipelineClient(config);
|
|
31
|
+
* const input = { // GetPipelineExecutionInput
|
|
32
|
+
* pipelineName: "STRING_VALUE", // required
|
|
33
|
+
* pipelineExecutionId: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
31
35
|
* const command = new GetPipelineExecutionCommand(input);
|
|
32
36
|
* const response = await client.send(command);
|
|
33
37
|
* ```
|
|
@@ -32,6 +32,9 @@ export interface GetPipelineStateCommandOutput extends GetPipelineStateOutput, _
|
|
|
32
32
|
* import { CodePipelineClient, GetPipelineStateCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
33
33
|
* // const { CodePipelineClient, GetPipelineStateCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
34
34
|
* const client = new CodePipelineClient(config);
|
|
35
|
+
* const input = { // GetPipelineStateInput
|
|
36
|
+
* name: "STRING_VALUE", // required
|
|
37
|
+
* };
|
|
35
38
|
* const command = new GetPipelineStateCommand(input);
|
|
36
39
|
* const response = await client.send(command);
|
|
37
40
|
* ```
|
|
@@ -33,6 +33,10 @@ export interface GetThirdPartyJobDetailsCommandOutput extends GetThirdPartyJobDe
|
|
|
33
33
|
* import { CodePipelineClient, GetThirdPartyJobDetailsCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
34
34
|
* // const { CodePipelineClient, GetThirdPartyJobDetailsCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
35
35
|
* const client = new CodePipelineClient(config);
|
|
36
|
+
* const input = { // GetThirdPartyJobDetailsInput
|
|
37
|
+
* jobId: "STRING_VALUE", // required
|
|
38
|
+
* clientToken: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
36
40
|
* const command = new GetThirdPartyJobDetailsCommand(input);
|
|
37
41
|
* const response = await client.send(command);
|
|
38
42
|
* ```
|
|
@@ -26,6 +26,14 @@ export interface ListActionExecutionsCommandOutput extends ListActionExecutionsO
|
|
|
26
26
|
* import { CodePipelineClient, ListActionExecutionsCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
27
27
|
* // const { CodePipelineClient, ListActionExecutionsCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
28
28
|
* const client = new CodePipelineClient(config);
|
|
29
|
+
* const input = { // ListActionExecutionsInput
|
|
30
|
+
* pipelineName: "STRING_VALUE", // required
|
|
31
|
+
* filter: { // ActionExecutionFilter
|
|
32
|
+
* pipelineExecutionId: "STRING_VALUE",
|
|
33
|
+
* },
|
|
34
|
+
* maxResults: Number("int"),
|
|
35
|
+
* nextToken: "STRING_VALUE",
|
|
36
|
+
* };
|
|
29
37
|
* const command = new ListActionExecutionsCommand(input);
|
|
30
38
|
* const response = await client.send(command);
|
|
31
39
|
* ```
|
|
@@ -27,6 +27,11 @@ export interface ListActionTypesCommandOutput extends ListActionTypesOutput, __M
|
|
|
27
27
|
* import { CodePipelineClient, ListActionTypesCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
28
28
|
* // const { CodePipelineClient, ListActionTypesCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
29
29
|
* const client = new CodePipelineClient(config);
|
|
30
|
+
* const input = { // ListActionTypesInput
|
|
31
|
+
* actionOwnerFilter: "STRING_VALUE",
|
|
32
|
+
* nextToken: "STRING_VALUE",
|
|
33
|
+
* regionFilter: "STRING_VALUE",
|
|
34
|
+
* };
|
|
30
35
|
* const command = new ListActionTypesCommand(input);
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListPipelineExecutionsCommandOutput extends ListPipelineExecuti
|
|
|
26
26
|
* import { CodePipelineClient, ListPipelineExecutionsCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
27
27
|
* // const { CodePipelineClient, ListPipelineExecutionsCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
28
28
|
* const client = new CodePipelineClient(config);
|
|
29
|
+
* const input = { // ListPipelineExecutionsInput
|
|
30
|
+
* pipelineName: "STRING_VALUE", // required
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* nextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListPipelineExecutionsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListPipelinesCommandOutput extends ListPipelinesOutput, __Metad
|
|
|
26
26
|
* import { CodePipelineClient, ListPipelinesCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
27
27
|
* // const { CodePipelineClient, ListPipelinesCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
28
28
|
* const client = new CodePipelineClient(config);
|
|
29
|
+
* const input = { // ListPipelinesInput
|
|
30
|
+
* nextToken: "STRING_VALUE",
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListPipelinesCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -27,6 +27,11 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
|
|
|
27
27
|
* import { CodePipelineClient, ListTagsForResourceCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
28
28
|
* // const { CodePipelineClient, ListTagsForResourceCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
29
29
|
* const client = new CodePipelineClient(config);
|
|
30
|
+
* const input = { // ListTagsForResourceInput
|
|
31
|
+
* resourceArn: "STRING_VALUE", // required
|
|
32
|
+
* nextToken: "STRING_VALUE",
|
|
33
|
+
* maxResults: Number("int"),
|
|
34
|
+
* };
|
|
30
35
|
* const command = new ListTagsForResourceCommand(input);
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
@@ -28,6 +28,10 @@ export interface ListWebhooksCommandOutput extends ListWebhooksOutput, __Metadat
|
|
|
28
28
|
* import { CodePipelineClient, ListWebhooksCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
29
29
|
* // const { CodePipelineClient, ListWebhooksCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
30
30
|
* const client = new CodePipelineClient(config);
|
|
31
|
+
* const input = { // ListWebhooksInput
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* MaxResults: Number("int"),
|
|
34
|
+
* };
|
|
31
35
|
* const command = new ListWebhooksCommand(input);
|
|
32
36
|
* const response = await client.send(command);
|
|
33
37
|
* ```
|
|
@@ -35,6 +35,18 @@ export interface PollForJobsCommandOutput extends PollForJobsOutput, __MetadataB
|
|
|
35
35
|
* import { CodePipelineClient, PollForJobsCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
36
36
|
* // const { CodePipelineClient, PollForJobsCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
37
37
|
* const client = new CodePipelineClient(config);
|
|
38
|
+
* const input = { // PollForJobsInput
|
|
39
|
+
* actionTypeId: { // ActionTypeId
|
|
40
|
+
* category: "STRING_VALUE", // required
|
|
41
|
+
* owner: "STRING_VALUE", // required
|
|
42
|
+
* provider: "STRING_VALUE", // required
|
|
43
|
+
* version: "STRING_VALUE", // required
|
|
44
|
+
* },
|
|
45
|
+
* maxBatchSize: Number("int"),
|
|
46
|
+
* queryParam: { // QueryParamMap
|
|
47
|
+
* "<keys>": "STRING_VALUE",
|
|
48
|
+
* },
|
|
49
|
+
* };
|
|
38
50
|
* const command = new PollForJobsCommand(input);
|
|
39
51
|
* const response = await client.send(command);
|
|
40
52
|
* ```
|
|
@@ -32,6 +32,15 @@ export interface PollForThirdPartyJobsCommandOutput extends PollForThirdPartyJob
|
|
|
32
32
|
* import { CodePipelineClient, PollForThirdPartyJobsCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
33
33
|
* // const { CodePipelineClient, PollForThirdPartyJobsCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
34
34
|
* const client = new CodePipelineClient(config);
|
|
35
|
+
* const input = { // PollForThirdPartyJobsInput
|
|
36
|
+
* actionTypeId: { // ActionTypeId
|
|
37
|
+
* category: "STRING_VALUE", // required
|
|
38
|
+
* owner: "STRING_VALUE", // required
|
|
39
|
+
* provider: "STRING_VALUE", // required
|
|
40
|
+
* version: "STRING_VALUE", // required
|
|
41
|
+
* },
|
|
42
|
+
* maxBatchSize: Number("int"),
|
|
43
|
+
* };
|
|
35
44
|
* const command = new PollForThirdPartyJobsCommand(input);
|
|
36
45
|
* const response = await client.send(command);
|
|
37
46
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface PutActionRevisionCommandOutput extends PutActionRevisionOutput,
|
|
|
26
26
|
* import { CodePipelineClient, PutActionRevisionCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
27
27
|
* // const { CodePipelineClient, PutActionRevisionCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
28
28
|
* const client = new CodePipelineClient(config);
|
|
29
|
+
* const input = { // PutActionRevisionInput
|
|
30
|
+
* pipelineName: "STRING_VALUE", // required
|
|
31
|
+
* stageName: "STRING_VALUE", // required
|
|
32
|
+
* actionName: "STRING_VALUE", // required
|
|
33
|
+
* actionRevision: { // ActionRevision
|
|
34
|
+
* revisionId: "STRING_VALUE", // required
|
|
35
|
+
* revisionChangeId: "STRING_VALUE", // required
|
|
36
|
+
* created: new Date("TIMESTAMP"), // required
|
|
37
|
+
* },
|
|
38
|
+
* };
|
|
29
39
|
* const command = new PutActionRevisionCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -27,6 +27,16 @@ export interface PutApprovalResultCommandOutput extends PutApprovalResultOutput,
|
|
|
27
27
|
* import { CodePipelineClient, PutApprovalResultCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
28
28
|
* // const { CodePipelineClient, PutApprovalResultCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
29
29
|
* const client = new CodePipelineClient(config);
|
|
30
|
+
* const input = { // PutApprovalResultInput
|
|
31
|
+
* pipelineName: "STRING_VALUE", // required
|
|
32
|
+
* stageName: "STRING_VALUE", // required
|
|
33
|
+
* actionName: "STRING_VALUE", // required
|
|
34
|
+
* result: { // ApprovalResult
|
|
35
|
+
* summary: "STRING_VALUE", // required
|
|
36
|
+
* status: "STRING_VALUE", // required
|
|
37
|
+
* },
|
|
38
|
+
* token: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
30
40
|
* const command = new PutApprovalResultCommand(input);
|
|
31
41
|
* const response = await client.send(command);
|
|
32
42
|
* ```
|
|
@@ -27,6 +27,14 @@ export interface PutJobFailureResultCommandOutput extends __MetadataBearer {
|
|
|
27
27
|
* import { CodePipelineClient, PutJobFailureResultCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
28
28
|
* // const { CodePipelineClient, PutJobFailureResultCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
29
29
|
* const client = new CodePipelineClient(config);
|
|
30
|
+
* const input = { // PutJobFailureResultInput
|
|
31
|
+
* jobId: "STRING_VALUE", // required
|
|
32
|
+
* failureDetails: { // FailureDetails
|
|
33
|
+
* type: "STRING_VALUE", // required
|
|
34
|
+
* message: "STRING_VALUE", // required
|
|
35
|
+
* externalExecutionId: "STRING_VALUE",
|
|
36
|
+
* },
|
|
37
|
+
* };
|
|
30
38
|
* const command = new PutJobFailureResultCommand(input);
|
|
31
39
|
* const response = await client.send(command);
|
|
32
40
|
* ```
|
|
@@ -27,6 +27,24 @@ export interface PutJobSuccessResultCommandOutput extends __MetadataBearer {
|
|
|
27
27
|
* import { CodePipelineClient, PutJobSuccessResultCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
28
28
|
* // const { CodePipelineClient, PutJobSuccessResultCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
29
29
|
* const client = new CodePipelineClient(config);
|
|
30
|
+
* const input = { // PutJobSuccessResultInput
|
|
31
|
+
* jobId: "STRING_VALUE", // required
|
|
32
|
+
* currentRevision: { // CurrentRevision
|
|
33
|
+
* revision: "STRING_VALUE", // required
|
|
34
|
+
* changeIdentifier: "STRING_VALUE", // required
|
|
35
|
+
* created: new Date("TIMESTAMP"),
|
|
36
|
+
* revisionSummary: "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* continuationToken: "STRING_VALUE",
|
|
39
|
+
* executionDetails: { // ExecutionDetails
|
|
40
|
+
* summary: "STRING_VALUE",
|
|
41
|
+
* externalExecutionId: "STRING_VALUE",
|
|
42
|
+
* percentComplete: Number("int"),
|
|
43
|
+
* },
|
|
44
|
+
* outputVariables: { // OutputVariablesMap
|
|
45
|
+
* "<keys>": "STRING_VALUE",
|
|
46
|
+
* },
|
|
47
|
+
* };
|
|
30
48
|
* const command = new PutJobSuccessResultCommand(input);
|
|
31
49
|
* const response = await client.send(command);
|
|
32
50
|
* ```
|
|
@@ -27,6 +27,15 @@ export interface PutThirdPartyJobFailureResultCommandOutput extends __MetadataBe
|
|
|
27
27
|
* import { CodePipelineClient, PutThirdPartyJobFailureResultCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
28
28
|
* // const { CodePipelineClient, PutThirdPartyJobFailureResultCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
29
29
|
* const client = new CodePipelineClient(config);
|
|
30
|
+
* const input = { // PutThirdPartyJobFailureResultInput
|
|
31
|
+
* jobId: "STRING_VALUE", // required
|
|
32
|
+
* clientToken: "STRING_VALUE", // required
|
|
33
|
+
* failureDetails: { // FailureDetails
|
|
34
|
+
* type: "STRING_VALUE", // required
|
|
35
|
+
* message: "STRING_VALUE", // required
|
|
36
|
+
* externalExecutionId: "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* };
|
|
30
39
|
* const command = new PutThirdPartyJobFailureResultCommand(input);
|
|
31
40
|
* const response = await client.send(command);
|
|
32
41
|
* ```
|
|
@@ -27,6 +27,22 @@ export interface PutThirdPartyJobSuccessResultCommandOutput extends __MetadataBe
|
|
|
27
27
|
* import { CodePipelineClient, PutThirdPartyJobSuccessResultCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
28
28
|
* // const { CodePipelineClient, PutThirdPartyJobSuccessResultCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
29
29
|
* const client = new CodePipelineClient(config);
|
|
30
|
+
* const input = { // PutThirdPartyJobSuccessResultInput
|
|
31
|
+
* jobId: "STRING_VALUE", // required
|
|
32
|
+
* clientToken: "STRING_VALUE", // required
|
|
33
|
+
* currentRevision: { // CurrentRevision
|
|
34
|
+
* revision: "STRING_VALUE", // required
|
|
35
|
+
* changeIdentifier: "STRING_VALUE", // required
|
|
36
|
+
* created: new Date("TIMESTAMP"),
|
|
37
|
+
* revisionSummary: "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* continuationToken: "STRING_VALUE",
|
|
40
|
+
* executionDetails: { // ExecutionDetails
|
|
41
|
+
* summary: "STRING_VALUE",
|
|
42
|
+
* externalExecutionId: "STRING_VALUE",
|
|
43
|
+
* percentComplete: Number("int"),
|
|
44
|
+
* },
|
|
45
|
+
* };
|
|
30
46
|
* const command = new PutThirdPartyJobSuccessResultCommand(input);
|
|
31
47
|
* const response = await client.send(command);
|
|
32
48
|
* ```
|
|
@@ -32,6 +32,30 @@ export interface PutWebhookCommandOutput extends PutWebhookOutput, __MetadataBea
|
|
|
32
32
|
* import { CodePipelineClient, PutWebhookCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
33
33
|
* // const { CodePipelineClient, PutWebhookCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
34
34
|
* const client = new CodePipelineClient(config);
|
|
35
|
+
* const input = { // PutWebhookInput
|
|
36
|
+
* webhook: { // WebhookDefinition
|
|
37
|
+
* name: "STRING_VALUE", // required
|
|
38
|
+
* targetPipeline: "STRING_VALUE", // required
|
|
39
|
+
* targetAction: "STRING_VALUE", // required
|
|
40
|
+
* filters: [ // WebhookFilters // required
|
|
41
|
+
* { // WebhookFilterRule
|
|
42
|
+
* jsonPath: "STRING_VALUE", // required
|
|
43
|
+
* matchEquals: "STRING_VALUE",
|
|
44
|
+
* },
|
|
45
|
+
* ],
|
|
46
|
+
* authentication: "STRING_VALUE", // required
|
|
47
|
+
* authenticationConfiguration: { // WebhookAuthConfiguration
|
|
48
|
+
* AllowedIPRange: "STRING_VALUE",
|
|
49
|
+
* SecretToken: "STRING_VALUE",
|
|
50
|
+
* },
|
|
51
|
+
* },
|
|
52
|
+
* tags: [ // TagList
|
|
53
|
+
* { // Tag
|
|
54
|
+
* key: "STRING_VALUE", // required
|
|
55
|
+
* value: "STRING_VALUE", // required
|
|
56
|
+
* },
|
|
57
|
+
* ],
|
|
58
|
+
* };
|
|
35
59
|
* const command = new PutWebhookCommand(input);
|
|
36
60
|
* const response = await client.send(command);
|
|
37
61
|
* ```
|
|
@@ -27,6 +27,9 @@ export interface RegisterWebhookWithThirdPartyCommandOutput extends RegisterWebh
|
|
|
27
27
|
* import { CodePipelineClient, RegisterWebhookWithThirdPartyCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
28
28
|
* // const { CodePipelineClient, RegisterWebhookWithThirdPartyCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
29
29
|
* const client = new CodePipelineClient(config);
|
|
30
|
+
* const input = { // RegisterWebhookWithThirdPartyInput
|
|
31
|
+
* webhookName: "STRING_VALUE",
|
|
32
|
+
* };
|
|
30
33
|
* const command = new RegisterWebhookWithThirdPartyCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -29,6 +29,12 @@ export interface RetryStageExecutionCommandOutput extends RetryStageExecutionOut
|
|
|
29
29
|
* import { CodePipelineClient, RetryStageExecutionCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
30
30
|
* // const { CodePipelineClient, RetryStageExecutionCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
31
31
|
* const client = new CodePipelineClient(config);
|
|
32
|
+
* const input = { // RetryStageExecutionInput
|
|
33
|
+
* pipelineName: "STRING_VALUE", // required
|
|
34
|
+
* stageName: "STRING_VALUE", // required
|
|
35
|
+
* pipelineExecutionId: "STRING_VALUE", // required
|
|
36
|
+
* retryMode: "STRING_VALUE", // required
|
|
37
|
+
* };
|
|
32
38
|
* const command = new RetryStageExecutionCommand(input);
|
|
33
39
|
* const response = await client.send(command);
|
|
34
40
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface StartPipelineExecutionCommandOutput extends StartPipelineExecut
|
|
|
27
27
|
* import { CodePipelineClient, StartPipelineExecutionCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
28
28
|
* // const { CodePipelineClient, StartPipelineExecutionCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
29
29
|
* const client = new CodePipelineClient(config);
|
|
30
|
+
* const input = { // StartPipelineExecutionInput
|
|
31
|
+
* name: "STRING_VALUE", // required
|
|
32
|
+
* clientRequestToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
30
34
|
* const command = new StartPipelineExecutionCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -31,6 +31,12 @@ export interface StopPipelineExecutionCommandOutput extends StopPipelineExecutio
|
|
|
31
31
|
* import { CodePipelineClient, StopPipelineExecutionCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
32
32
|
* // const { CodePipelineClient, StopPipelineExecutionCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
33
33
|
* const client = new CodePipelineClient(config);
|
|
34
|
+
* const input = { // StopPipelineExecutionInput
|
|
35
|
+
* pipelineName: "STRING_VALUE", // required
|
|
36
|
+
* pipelineExecutionId: "STRING_VALUE", // required
|
|
37
|
+
* abandon: true || false,
|
|
38
|
+
* reason: "STRING_VALUE",
|
|
39
|
+
* };
|
|
34
40
|
* const command = new StopPipelineExecutionCommand(input);
|
|
35
41
|
* const response = await client.send(command);
|
|
36
42
|
* ```
|
|
@@ -27,6 +27,15 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
|
|
|
27
27
|
* import { CodePipelineClient, TagResourceCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
28
28
|
* // const { CodePipelineClient, TagResourceCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
29
29
|
* const client = new CodePipelineClient(config);
|
|
30
|
+
* const input = { // TagResourceInput
|
|
31
|
+
* resourceArn: "STRING_VALUE", // required
|
|
32
|
+
* tags: [ // TagList // required
|
|
33
|
+
* { // Tag
|
|
34
|
+
* key: "STRING_VALUE", // required
|
|
35
|
+
* value: "STRING_VALUE", // required
|
|
36
|
+
* },
|
|
37
|
+
* ],
|
|
38
|
+
* };
|
|
30
39
|
* const command = new TagResourceCommand(input);
|
|
31
40
|
* const response = await client.send(command);
|
|
32
41
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
|
|
|
26
26
|
* import { CodePipelineClient, UntagResourceCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
27
27
|
* // const { CodePipelineClient, UntagResourceCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
28
28
|
* const client = new CodePipelineClient(config);
|
|
29
|
+
* const input = { // UntagResourceInput
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* tagKeys: [ // TagKeyList // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UntagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -29,6 +29,64 @@ export interface UpdateActionTypeCommandOutput extends __MetadataBearer {
|
|
|
29
29
|
* import { CodePipelineClient, UpdateActionTypeCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
30
30
|
* // const { CodePipelineClient, UpdateActionTypeCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
31
31
|
* const client = new CodePipelineClient(config);
|
|
32
|
+
* const input = { // UpdateActionTypeInput
|
|
33
|
+
* actionType: { // ActionTypeDeclaration
|
|
34
|
+
* description: "STRING_VALUE",
|
|
35
|
+
* executor: { // ActionTypeExecutor
|
|
36
|
+
* configuration: { // ExecutorConfiguration
|
|
37
|
+
* lambdaExecutorConfiguration: { // LambdaExecutorConfiguration
|
|
38
|
+
* lambdaFunctionArn: "STRING_VALUE", // required
|
|
39
|
+
* },
|
|
40
|
+
* jobWorkerExecutorConfiguration: { // JobWorkerExecutorConfiguration
|
|
41
|
+
* pollingAccounts: [ // PollingAccountList
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* pollingServicePrincipals: [ // PollingServicePrincipalList
|
|
45
|
+
* "STRING_VALUE",
|
|
46
|
+
* ],
|
|
47
|
+
* },
|
|
48
|
+
* },
|
|
49
|
+
* type: "STRING_VALUE", // required
|
|
50
|
+
* policyStatementsTemplate: "STRING_VALUE",
|
|
51
|
+
* jobTimeout: Number("int"),
|
|
52
|
+
* },
|
|
53
|
+
* id: { // ActionTypeIdentifier
|
|
54
|
+
* category: "STRING_VALUE", // required
|
|
55
|
+
* owner: "STRING_VALUE", // required
|
|
56
|
+
* provider: "STRING_VALUE", // required
|
|
57
|
+
* version: "STRING_VALUE", // required
|
|
58
|
+
* },
|
|
59
|
+
* inputArtifactDetails: { // ActionTypeArtifactDetails
|
|
60
|
+
* minimumCount: Number("int"), // required
|
|
61
|
+
* maximumCount: Number("int"), // required
|
|
62
|
+
* },
|
|
63
|
+
* outputArtifactDetails: {
|
|
64
|
+
* minimumCount: Number("int"), // required
|
|
65
|
+
* maximumCount: Number("int"), // required
|
|
66
|
+
* },
|
|
67
|
+
* permissions: { // ActionTypePermissions
|
|
68
|
+
* allowedAccounts: [ // AllowedAccounts // required
|
|
69
|
+
* "STRING_VALUE",
|
|
70
|
+
* ],
|
|
71
|
+
* },
|
|
72
|
+
* properties: [ // ActionTypeProperties
|
|
73
|
+
* { // ActionTypeProperty
|
|
74
|
+
* name: "STRING_VALUE", // required
|
|
75
|
+
* optional: true || false, // required
|
|
76
|
+
* key: true || false, // required
|
|
77
|
+
* noEcho: true || false, // required
|
|
78
|
+
* queryable: true || false,
|
|
79
|
+
* description: "STRING_VALUE",
|
|
80
|
+
* },
|
|
81
|
+
* ],
|
|
82
|
+
* urls: { // ActionTypeUrls
|
|
83
|
+
* configurationUrl: "STRING_VALUE",
|
|
84
|
+
* entityUrlTemplate: "STRING_VALUE",
|
|
85
|
+
* executionUrlTemplate: "STRING_VALUE",
|
|
86
|
+
* revisionUrlTemplate: "STRING_VALUE",
|
|
87
|
+
* },
|
|
88
|
+
* },
|
|
89
|
+
* };
|
|
32
90
|
* const command = new UpdateActionTypeCommand(input);
|
|
33
91
|
* const response = await client.send(command);
|
|
34
92
|
* ```
|
|
@@ -29,6 +29,70 @@ export interface UpdatePipelineCommandOutput extends UpdatePipelineOutput, __Met
|
|
|
29
29
|
* import { CodePipelineClient, UpdatePipelineCommand } from "@aws-sdk/client-codepipeline"; // ES Modules import
|
|
30
30
|
* // const { CodePipelineClient, UpdatePipelineCommand } = require("@aws-sdk/client-codepipeline"); // CommonJS import
|
|
31
31
|
* const client = new CodePipelineClient(config);
|
|
32
|
+
* const input = { // UpdatePipelineInput
|
|
33
|
+
* pipeline: { // PipelineDeclaration
|
|
34
|
+
* name: "STRING_VALUE", // required
|
|
35
|
+
* roleArn: "STRING_VALUE", // required
|
|
36
|
+
* artifactStore: { // ArtifactStore
|
|
37
|
+
* type: "STRING_VALUE", // required
|
|
38
|
+
* location: "STRING_VALUE", // required
|
|
39
|
+
* encryptionKey: { // EncryptionKey
|
|
40
|
+
* id: "STRING_VALUE", // required
|
|
41
|
+
* type: "STRING_VALUE", // required
|
|
42
|
+
* },
|
|
43
|
+
* },
|
|
44
|
+
* artifactStores: { // ArtifactStoreMap
|
|
45
|
+
* "<keys>": {
|
|
46
|
+
* type: "STRING_VALUE", // required
|
|
47
|
+
* location: "STRING_VALUE", // required
|
|
48
|
+
* encryptionKey: {
|
|
49
|
+
* id: "STRING_VALUE", // required
|
|
50
|
+
* type: "STRING_VALUE", // required
|
|
51
|
+
* },
|
|
52
|
+
* },
|
|
53
|
+
* },
|
|
54
|
+
* stages: [ // PipelineStageDeclarationList // required
|
|
55
|
+
* { // StageDeclaration
|
|
56
|
+
* name: "STRING_VALUE", // required
|
|
57
|
+
* blockers: [ // StageBlockerDeclarationList
|
|
58
|
+
* { // BlockerDeclaration
|
|
59
|
+
* name: "STRING_VALUE", // required
|
|
60
|
+
* type: "STRING_VALUE", // required
|
|
61
|
+
* },
|
|
62
|
+
* ],
|
|
63
|
+
* actions: [ // StageActionDeclarationList // required
|
|
64
|
+
* { // ActionDeclaration
|
|
65
|
+
* name: "STRING_VALUE", // required
|
|
66
|
+
* actionTypeId: { // ActionTypeId
|
|
67
|
+
* category: "STRING_VALUE", // required
|
|
68
|
+
* owner: "STRING_VALUE", // required
|
|
69
|
+
* provider: "STRING_VALUE", // required
|
|
70
|
+
* version: "STRING_VALUE", // required
|
|
71
|
+
* },
|
|
72
|
+
* runOrder: Number("int"),
|
|
73
|
+
* configuration: { // ActionConfigurationMap
|
|
74
|
+
* "<keys>": "STRING_VALUE",
|
|
75
|
+
* },
|
|
76
|
+
* outputArtifacts: [ // OutputArtifactList
|
|
77
|
+
* { // OutputArtifact
|
|
78
|
+
* name: "STRING_VALUE", // required
|
|
79
|
+
* },
|
|
80
|
+
* ],
|
|
81
|
+
* inputArtifacts: [ // InputArtifactList
|
|
82
|
+
* { // InputArtifact
|
|
83
|
+
* name: "STRING_VALUE", // required
|
|
84
|
+
* },
|
|
85
|
+
* ],
|
|
86
|
+
* roleArn: "STRING_VALUE",
|
|
87
|
+
* region: "STRING_VALUE",
|
|
88
|
+
* namespace: "STRING_VALUE",
|
|
89
|
+
* },
|
|
90
|
+
* ],
|
|
91
|
+
* },
|
|
92
|
+
* ],
|
|
93
|
+
* version: Number("int"),
|
|
94
|
+
* },
|
|
95
|
+
* };
|
|
32
96
|
* const command = new UpdatePipelineCommand(input);
|
|
33
97
|
* const response = await client.send(command);
|
|
34
98
|
* ```
|
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.301.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",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|