@aws-sdk/client-codepipeline 3.927.0 → 3.928.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-cjs/index.js +2313 -2278
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/CodePipelineClient.js +2 -0
- package/dist-es/commands/AcknowledgeJobCommand.js +3 -9
- package/dist-es/commands/AcknowledgeThirdPartyJobCommand.js +3 -9
- package/dist-es/commands/CreateCustomActionTypeCommand.js +3 -9
- package/dist-es/commands/CreatePipelineCommand.js +3 -9
- package/dist-es/commands/DeleteCustomActionTypeCommand.js +3 -9
- package/dist-es/commands/DeletePipelineCommand.js +3 -9
- package/dist-es/commands/DeleteWebhookCommand.js +3 -9
- package/dist-es/commands/DeregisterWebhookWithThirdPartyCommand.js +3 -9
- package/dist-es/commands/DisableStageTransitionCommand.js +3 -9
- package/dist-es/commands/EnableStageTransitionCommand.js +3 -9
- package/dist-es/commands/GetActionTypeCommand.js +3 -9
- package/dist-es/commands/GetJobDetailsCommand.js +3 -10
- package/dist-es/commands/GetPipelineCommand.js +3 -9
- package/dist-es/commands/GetPipelineExecutionCommand.js +3 -9
- package/dist-es/commands/GetPipelineStateCommand.js +3 -9
- package/dist-es/commands/GetThirdPartyJobDetailsCommand.js +3 -10
- package/dist-es/commands/ListActionExecutionsCommand.js +3 -9
- package/dist-es/commands/ListActionTypesCommand.js +3 -9
- package/dist-es/commands/ListDeployActionExecutionTargetsCommand.js +3 -9
- package/dist-es/commands/ListPipelineExecutionsCommand.js +3 -9
- package/dist-es/commands/ListPipelinesCommand.js +3 -9
- package/dist-es/commands/ListRuleExecutionsCommand.js +3 -9
- package/dist-es/commands/ListRuleTypesCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListWebhooksCommand.js +3 -9
- package/dist-es/commands/OverrideStageConditionCommand.js +3 -9
- package/dist-es/commands/PollForJobsCommand.js +3 -10
- package/dist-es/commands/PollForThirdPartyJobsCommand.js +3 -9
- package/dist-es/commands/PutActionRevisionCommand.js +3 -9
- package/dist-es/commands/PutApprovalResultCommand.js +3 -9
- package/dist-es/commands/PutJobFailureResultCommand.js +3 -9
- package/dist-es/commands/PutJobSuccessResultCommand.js +3 -9
- package/dist-es/commands/PutThirdPartyJobFailureResultCommand.js +3 -9
- package/dist-es/commands/PutThirdPartyJobSuccessResultCommand.js +3 -9
- package/dist-es/commands/PutWebhookCommand.js +3 -9
- package/dist-es/commands/RegisterWebhookWithThirdPartyCommand.js +3 -9
- package/dist-es/commands/RetryStageExecutionCommand.js +3 -9
- package/dist-es/commands/RollbackStageCommand.js +3 -9
- package/dist-es/commands/StartPipelineExecutionCommand.js +3 -9
- package/dist-es/commands/StopPipelineExecutionCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateActionTypeCommand.js +3 -9
- package/dist-es/commands/UpdatePipelineCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -39
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +2118 -0
- package/dist-types/CodePipelineClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -36
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +340 -0
- package/dist-types/ts3.4/CodePipelineClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -21
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +347 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_json1_1.js +0 -1804
- package/dist-types/protocols/Aws_json1_1.d.ts +0 -398
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +0 -533
|
@@ -1,533 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
AcknowledgeJobCommandInput,
|
|
8
|
-
AcknowledgeJobCommandOutput,
|
|
9
|
-
} from "../commands/AcknowledgeJobCommand";
|
|
10
|
-
import {
|
|
11
|
-
AcknowledgeThirdPartyJobCommandInput,
|
|
12
|
-
AcknowledgeThirdPartyJobCommandOutput,
|
|
13
|
-
} from "../commands/AcknowledgeThirdPartyJobCommand";
|
|
14
|
-
import {
|
|
15
|
-
CreateCustomActionTypeCommandInput,
|
|
16
|
-
CreateCustomActionTypeCommandOutput,
|
|
17
|
-
} from "../commands/CreateCustomActionTypeCommand";
|
|
18
|
-
import {
|
|
19
|
-
CreatePipelineCommandInput,
|
|
20
|
-
CreatePipelineCommandOutput,
|
|
21
|
-
} from "../commands/CreatePipelineCommand";
|
|
22
|
-
import {
|
|
23
|
-
DeleteCustomActionTypeCommandInput,
|
|
24
|
-
DeleteCustomActionTypeCommandOutput,
|
|
25
|
-
} from "../commands/DeleteCustomActionTypeCommand";
|
|
26
|
-
import {
|
|
27
|
-
DeletePipelineCommandInput,
|
|
28
|
-
DeletePipelineCommandOutput,
|
|
29
|
-
} from "../commands/DeletePipelineCommand";
|
|
30
|
-
import {
|
|
31
|
-
DeleteWebhookCommandInput,
|
|
32
|
-
DeleteWebhookCommandOutput,
|
|
33
|
-
} from "../commands/DeleteWebhookCommand";
|
|
34
|
-
import {
|
|
35
|
-
DeregisterWebhookWithThirdPartyCommandInput,
|
|
36
|
-
DeregisterWebhookWithThirdPartyCommandOutput,
|
|
37
|
-
} from "../commands/DeregisterWebhookWithThirdPartyCommand";
|
|
38
|
-
import {
|
|
39
|
-
DisableStageTransitionCommandInput,
|
|
40
|
-
DisableStageTransitionCommandOutput,
|
|
41
|
-
} from "../commands/DisableStageTransitionCommand";
|
|
42
|
-
import {
|
|
43
|
-
EnableStageTransitionCommandInput,
|
|
44
|
-
EnableStageTransitionCommandOutput,
|
|
45
|
-
} from "../commands/EnableStageTransitionCommand";
|
|
46
|
-
import {
|
|
47
|
-
GetActionTypeCommandInput,
|
|
48
|
-
GetActionTypeCommandOutput,
|
|
49
|
-
} from "../commands/GetActionTypeCommand";
|
|
50
|
-
import {
|
|
51
|
-
GetJobDetailsCommandInput,
|
|
52
|
-
GetJobDetailsCommandOutput,
|
|
53
|
-
} from "../commands/GetJobDetailsCommand";
|
|
54
|
-
import {
|
|
55
|
-
GetPipelineCommandInput,
|
|
56
|
-
GetPipelineCommandOutput,
|
|
57
|
-
} from "../commands/GetPipelineCommand";
|
|
58
|
-
import {
|
|
59
|
-
GetPipelineExecutionCommandInput,
|
|
60
|
-
GetPipelineExecutionCommandOutput,
|
|
61
|
-
} from "../commands/GetPipelineExecutionCommand";
|
|
62
|
-
import {
|
|
63
|
-
GetPipelineStateCommandInput,
|
|
64
|
-
GetPipelineStateCommandOutput,
|
|
65
|
-
} from "../commands/GetPipelineStateCommand";
|
|
66
|
-
import {
|
|
67
|
-
GetThirdPartyJobDetailsCommandInput,
|
|
68
|
-
GetThirdPartyJobDetailsCommandOutput,
|
|
69
|
-
} from "../commands/GetThirdPartyJobDetailsCommand";
|
|
70
|
-
import {
|
|
71
|
-
ListActionExecutionsCommandInput,
|
|
72
|
-
ListActionExecutionsCommandOutput,
|
|
73
|
-
} from "../commands/ListActionExecutionsCommand";
|
|
74
|
-
import {
|
|
75
|
-
ListActionTypesCommandInput,
|
|
76
|
-
ListActionTypesCommandOutput,
|
|
77
|
-
} from "../commands/ListActionTypesCommand";
|
|
78
|
-
import {
|
|
79
|
-
ListDeployActionExecutionTargetsCommandInput,
|
|
80
|
-
ListDeployActionExecutionTargetsCommandOutput,
|
|
81
|
-
} from "../commands/ListDeployActionExecutionTargetsCommand";
|
|
82
|
-
import {
|
|
83
|
-
ListPipelineExecutionsCommandInput,
|
|
84
|
-
ListPipelineExecutionsCommandOutput,
|
|
85
|
-
} from "../commands/ListPipelineExecutionsCommand";
|
|
86
|
-
import {
|
|
87
|
-
ListPipelinesCommandInput,
|
|
88
|
-
ListPipelinesCommandOutput,
|
|
89
|
-
} from "../commands/ListPipelinesCommand";
|
|
90
|
-
import {
|
|
91
|
-
ListRuleExecutionsCommandInput,
|
|
92
|
-
ListRuleExecutionsCommandOutput,
|
|
93
|
-
} from "../commands/ListRuleExecutionsCommand";
|
|
94
|
-
import {
|
|
95
|
-
ListRuleTypesCommandInput,
|
|
96
|
-
ListRuleTypesCommandOutput,
|
|
97
|
-
} from "../commands/ListRuleTypesCommand";
|
|
98
|
-
import {
|
|
99
|
-
ListTagsForResourceCommandInput,
|
|
100
|
-
ListTagsForResourceCommandOutput,
|
|
101
|
-
} from "../commands/ListTagsForResourceCommand";
|
|
102
|
-
import {
|
|
103
|
-
ListWebhooksCommandInput,
|
|
104
|
-
ListWebhooksCommandOutput,
|
|
105
|
-
} from "../commands/ListWebhooksCommand";
|
|
106
|
-
import {
|
|
107
|
-
OverrideStageConditionCommandInput,
|
|
108
|
-
OverrideStageConditionCommandOutput,
|
|
109
|
-
} from "../commands/OverrideStageConditionCommand";
|
|
110
|
-
import {
|
|
111
|
-
PollForJobsCommandInput,
|
|
112
|
-
PollForJobsCommandOutput,
|
|
113
|
-
} from "../commands/PollForJobsCommand";
|
|
114
|
-
import {
|
|
115
|
-
PollForThirdPartyJobsCommandInput,
|
|
116
|
-
PollForThirdPartyJobsCommandOutput,
|
|
117
|
-
} from "../commands/PollForThirdPartyJobsCommand";
|
|
118
|
-
import {
|
|
119
|
-
PutActionRevisionCommandInput,
|
|
120
|
-
PutActionRevisionCommandOutput,
|
|
121
|
-
} from "../commands/PutActionRevisionCommand";
|
|
122
|
-
import {
|
|
123
|
-
PutApprovalResultCommandInput,
|
|
124
|
-
PutApprovalResultCommandOutput,
|
|
125
|
-
} from "../commands/PutApprovalResultCommand";
|
|
126
|
-
import {
|
|
127
|
-
PutJobFailureResultCommandInput,
|
|
128
|
-
PutJobFailureResultCommandOutput,
|
|
129
|
-
} from "../commands/PutJobFailureResultCommand";
|
|
130
|
-
import {
|
|
131
|
-
PutJobSuccessResultCommandInput,
|
|
132
|
-
PutJobSuccessResultCommandOutput,
|
|
133
|
-
} from "../commands/PutJobSuccessResultCommand";
|
|
134
|
-
import {
|
|
135
|
-
PutThirdPartyJobFailureResultCommandInput,
|
|
136
|
-
PutThirdPartyJobFailureResultCommandOutput,
|
|
137
|
-
} from "../commands/PutThirdPartyJobFailureResultCommand";
|
|
138
|
-
import {
|
|
139
|
-
PutThirdPartyJobSuccessResultCommandInput,
|
|
140
|
-
PutThirdPartyJobSuccessResultCommandOutput,
|
|
141
|
-
} from "../commands/PutThirdPartyJobSuccessResultCommand";
|
|
142
|
-
import {
|
|
143
|
-
PutWebhookCommandInput,
|
|
144
|
-
PutWebhookCommandOutput,
|
|
145
|
-
} from "../commands/PutWebhookCommand";
|
|
146
|
-
import {
|
|
147
|
-
RegisterWebhookWithThirdPartyCommandInput,
|
|
148
|
-
RegisterWebhookWithThirdPartyCommandOutput,
|
|
149
|
-
} from "../commands/RegisterWebhookWithThirdPartyCommand";
|
|
150
|
-
import {
|
|
151
|
-
RetryStageExecutionCommandInput,
|
|
152
|
-
RetryStageExecutionCommandOutput,
|
|
153
|
-
} from "../commands/RetryStageExecutionCommand";
|
|
154
|
-
import {
|
|
155
|
-
RollbackStageCommandInput,
|
|
156
|
-
RollbackStageCommandOutput,
|
|
157
|
-
} from "../commands/RollbackStageCommand";
|
|
158
|
-
import {
|
|
159
|
-
StartPipelineExecutionCommandInput,
|
|
160
|
-
StartPipelineExecutionCommandOutput,
|
|
161
|
-
} from "../commands/StartPipelineExecutionCommand";
|
|
162
|
-
import {
|
|
163
|
-
StopPipelineExecutionCommandInput,
|
|
164
|
-
StopPipelineExecutionCommandOutput,
|
|
165
|
-
} from "../commands/StopPipelineExecutionCommand";
|
|
166
|
-
import {
|
|
167
|
-
TagResourceCommandInput,
|
|
168
|
-
TagResourceCommandOutput,
|
|
169
|
-
} from "../commands/TagResourceCommand";
|
|
170
|
-
import {
|
|
171
|
-
UntagResourceCommandInput,
|
|
172
|
-
UntagResourceCommandOutput,
|
|
173
|
-
} from "../commands/UntagResourceCommand";
|
|
174
|
-
import {
|
|
175
|
-
UpdateActionTypeCommandInput,
|
|
176
|
-
UpdateActionTypeCommandOutput,
|
|
177
|
-
} from "../commands/UpdateActionTypeCommand";
|
|
178
|
-
import {
|
|
179
|
-
UpdatePipelineCommandInput,
|
|
180
|
-
UpdatePipelineCommandOutput,
|
|
181
|
-
} from "../commands/UpdatePipelineCommand";
|
|
182
|
-
export declare const se_AcknowledgeJobCommand: (
|
|
183
|
-
input: AcknowledgeJobCommandInput,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<__HttpRequest>;
|
|
186
|
-
export declare const se_AcknowledgeThirdPartyJobCommand: (
|
|
187
|
-
input: AcknowledgeThirdPartyJobCommandInput,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<__HttpRequest>;
|
|
190
|
-
export declare const se_CreateCustomActionTypeCommand: (
|
|
191
|
-
input: CreateCustomActionTypeCommandInput,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<__HttpRequest>;
|
|
194
|
-
export declare const se_CreatePipelineCommand: (
|
|
195
|
-
input: CreatePipelineCommandInput,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<__HttpRequest>;
|
|
198
|
-
export declare const se_DeleteCustomActionTypeCommand: (
|
|
199
|
-
input: DeleteCustomActionTypeCommandInput,
|
|
200
|
-
context: __SerdeContext
|
|
201
|
-
) => Promise<__HttpRequest>;
|
|
202
|
-
export declare const se_DeletePipelineCommand: (
|
|
203
|
-
input: DeletePipelineCommandInput,
|
|
204
|
-
context: __SerdeContext
|
|
205
|
-
) => Promise<__HttpRequest>;
|
|
206
|
-
export declare const se_DeleteWebhookCommand: (
|
|
207
|
-
input: DeleteWebhookCommandInput,
|
|
208
|
-
context: __SerdeContext
|
|
209
|
-
) => Promise<__HttpRequest>;
|
|
210
|
-
export declare const se_DeregisterWebhookWithThirdPartyCommand: (
|
|
211
|
-
input: DeregisterWebhookWithThirdPartyCommandInput,
|
|
212
|
-
context: __SerdeContext
|
|
213
|
-
) => Promise<__HttpRequest>;
|
|
214
|
-
export declare const se_DisableStageTransitionCommand: (
|
|
215
|
-
input: DisableStageTransitionCommandInput,
|
|
216
|
-
context: __SerdeContext
|
|
217
|
-
) => Promise<__HttpRequest>;
|
|
218
|
-
export declare const se_EnableStageTransitionCommand: (
|
|
219
|
-
input: EnableStageTransitionCommandInput,
|
|
220
|
-
context: __SerdeContext
|
|
221
|
-
) => Promise<__HttpRequest>;
|
|
222
|
-
export declare const se_GetActionTypeCommand: (
|
|
223
|
-
input: GetActionTypeCommandInput,
|
|
224
|
-
context: __SerdeContext
|
|
225
|
-
) => Promise<__HttpRequest>;
|
|
226
|
-
export declare const se_GetJobDetailsCommand: (
|
|
227
|
-
input: GetJobDetailsCommandInput,
|
|
228
|
-
context: __SerdeContext
|
|
229
|
-
) => Promise<__HttpRequest>;
|
|
230
|
-
export declare const se_GetPipelineCommand: (
|
|
231
|
-
input: GetPipelineCommandInput,
|
|
232
|
-
context: __SerdeContext
|
|
233
|
-
) => Promise<__HttpRequest>;
|
|
234
|
-
export declare const se_GetPipelineExecutionCommand: (
|
|
235
|
-
input: GetPipelineExecutionCommandInput,
|
|
236
|
-
context: __SerdeContext
|
|
237
|
-
) => Promise<__HttpRequest>;
|
|
238
|
-
export declare const se_GetPipelineStateCommand: (
|
|
239
|
-
input: GetPipelineStateCommandInput,
|
|
240
|
-
context: __SerdeContext
|
|
241
|
-
) => Promise<__HttpRequest>;
|
|
242
|
-
export declare const se_GetThirdPartyJobDetailsCommand: (
|
|
243
|
-
input: GetThirdPartyJobDetailsCommandInput,
|
|
244
|
-
context: __SerdeContext
|
|
245
|
-
) => Promise<__HttpRequest>;
|
|
246
|
-
export declare const se_ListActionExecutionsCommand: (
|
|
247
|
-
input: ListActionExecutionsCommandInput,
|
|
248
|
-
context: __SerdeContext
|
|
249
|
-
) => Promise<__HttpRequest>;
|
|
250
|
-
export declare const se_ListActionTypesCommand: (
|
|
251
|
-
input: ListActionTypesCommandInput,
|
|
252
|
-
context: __SerdeContext
|
|
253
|
-
) => Promise<__HttpRequest>;
|
|
254
|
-
export declare const se_ListDeployActionExecutionTargetsCommand: (
|
|
255
|
-
input: ListDeployActionExecutionTargetsCommandInput,
|
|
256
|
-
context: __SerdeContext
|
|
257
|
-
) => Promise<__HttpRequest>;
|
|
258
|
-
export declare const se_ListPipelineExecutionsCommand: (
|
|
259
|
-
input: ListPipelineExecutionsCommandInput,
|
|
260
|
-
context: __SerdeContext
|
|
261
|
-
) => Promise<__HttpRequest>;
|
|
262
|
-
export declare const se_ListPipelinesCommand: (
|
|
263
|
-
input: ListPipelinesCommandInput,
|
|
264
|
-
context: __SerdeContext
|
|
265
|
-
) => Promise<__HttpRequest>;
|
|
266
|
-
export declare const se_ListRuleExecutionsCommand: (
|
|
267
|
-
input: ListRuleExecutionsCommandInput,
|
|
268
|
-
context: __SerdeContext
|
|
269
|
-
) => Promise<__HttpRequest>;
|
|
270
|
-
export declare const se_ListRuleTypesCommand: (
|
|
271
|
-
input: ListRuleTypesCommandInput,
|
|
272
|
-
context: __SerdeContext
|
|
273
|
-
) => Promise<__HttpRequest>;
|
|
274
|
-
export declare const se_ListTagsForResourceCommand: (
|
|
275
|
-
input: ListTagsForResourceCommandInput,
|
|
276
|
-
context: __SerdeContext
|
|
277
|
-
) => Promise<__HttpRequest>;
|
|
278
|
-
export declare const se_ListWebhooksCommand: (
|
|
279
|
-
input: ListWebhooksCommandInput,
|
|
280
|
-
context: __SerdeContext
|
|
281
|
-
) => Promise<__HttpRequest>;
|
|
282
|
-
export declare const se_OverrideStageConditionCommand: (
|
|
283
|
-
input: OverrideStageConditionCommandInput,
|
|
284
|
-
context: __SerdeContext
|
|
285
|
-
) => Promise<__HttpRequest>;
|
|
286
|
-
export declare const se_PollForJobsCommand: (
|
|
287
|
-
input: PollForJobsCommandInput,
|
|
288
|
-
context: __SerdeContext
|
|
289
|
-
) => Promise<__HttpRequest>;
|
|
290
|
-
export declare const se_PollForThirdPartyJobsCommand: (
|
|
291
|
-
input: PollForThirdPartyJobsCommandInput,
|
|
292
|
-
context: __SerdeContext
|
|
293
|
-
) => Promise<__HttpRequest>;
|
|
294
|
-
export declare const se_PutActionRevisionCommand: (
|
|
295
|
-
input: PutActionRevisionCommandInput,
|
|
296
|
-
context: __SerdeContext
|
|
297
|
-
) => Promise<__HttpRequest>;
|
|
298
|
-
export declare const se_PutApprovalResultCommand: (
|
|
299
|
-
input: PutApprovalResultCommandInput,
|
|
300
|
-
context: __SerdeContext
|
|
301
|
-
) => Promise<__HttpRequest>;
|
|
302
|
-
export declare const se_PutJobFailureResultCommand: (
|
|
303
|
-
input: PutJobFailureResultCommandInput,
|
|
304
|
-
context: __SerdeContext
|
|
305
|
-
) => Promise<__HttpRequest>;
|
|
306
|
-
export declare const se_PutJobSuccessResultCommand: (
|
|
307
|
-
input: PutJobSuccessResultCommandInput,
|
|
308
|
-
context: __SerdeContext
|
|
309
|
-
) => Promise<__HttpRequest>;
|
|
310
|
-
export declare const se_PutThirdPartyJobFailureResultCommand: (
|
|
311
|
-
input: PutThirdPartyJobFailureResultCommandInput,
|
|
312
|
-
context: __SerdeContext
|
|
313
|
-
) => Promise<__HttpRequest>;
|
|
314
|
-
export declare const se_PutThirdPartyJobSuccessResultCommand: (
|
|
315
|
-
input: PutThirdPartyJobSuccessResultCommandInput,
|
|
316
|
-
context: __SerdeContext
|
|
317
|
-
) => Promise<__HttpRequest>;
|
|
318
|
-
export declare const se_PutWebhookCommand: (
|
|
319
|
-
input: PutWebhookCommandInput,
|
|
320
|
-
context: __SerdeContext
|
|
321
|
-
) => Promise<__HttpRequest>;
|
|
322
|
-
export declare const se_RegisterWebhookWithThirdPartyCommand: (
|
|
323
|
-
input: RegisterWebhookWithThirdPartyCommandInput,
|
|
324
|
-
context: __SerdeContext
|
|
325
|
-
) => Promise<__HttpRequest>;
|
|
326
|
-
export declare const se_RetryStageExecutionCommand: (
|
|
327
|
-
input: RetryStageExecutionCommandInput,
|
|
328
|
-
context: __SerdeContext
|
|
329
|
-
) => Promise<__HttpRequest>;
|
|
330
|
-
export declare const se_RollbackStageCommand: (
|
|
331
|
-
input: RollbackStageCommandInput,
|
|
332
|
-
context: __SerdeContext
|
|
333
|
-
) => Promise<__HttpRequest>;
|
|
334
|
-
export declare const se_StartPipelineExecutionCommand: (
|
|
335
|
-
input: StartPipelineExecutionCommandInput,
|
|
336
|
-
context: __SerdeContext
|
|
337
|
-
) => Promise<__HttpRequest>;
|
|
338
|
-
export declare const se_StopPipelineExecutionCommand: (
|
|
339
|
-
input: StopPipelineExecutionCommandInput,
|
|
340
|
-
context: __SerdeContext
|
|
341
|
-
) => Promise<__HttpRequest>;
|
|
342
|
-
export declare const se_TagResourceCommand: (
|
|
343
|
-
input: TagResourceCommandInput,
|
|
344
|
-
context: __SerdeContext
|
|
345
|
-
) => Promise<__HttpRequest>;
|
|
346
|
-
export declare const se_UntagResourceCommand: (
|
|
347
|
-
input: UntagResourceCommandInput,
|
|
348
|
-
context: __SerdeContext
|
|
349
|
-
) => Promise<__HttpRequest>;
|
|
350
|
-
export declare const se_UpdateActionTypeCommand: (
|
|
351
|
-
input: UpdateActionTypeCommandInput,
|
|
352
|
-
context: __SerdeContext
|
|
353
|
-
) => Promise<__HttpRequest>;
|
|
354
|
-
export declare const se_UpdatePipelineCommand: (
|
|
355
|
-
input: UpdatePipelineCommandInput,
|
|
356
|
-
context: __SerdeContext
|
|
357
|
-
) => Promise<__HttpRequest>;
|
|
358
|
-
export declare const de_AcknowledgeJobCommand: (
|
|
359
|
-
output: __HttpResponse,
|
|
360
|
-
context: __SerdeContext
|
|
361
|
-
) => Promise<AcknowledgeJobCommandOutput>;
|
|
362
|
-
export declare const de_AcknowledgeThirdPartyJobCommand: (
|
|
363
|
-
output: __HttpResponse,
|
|
364
|
-
context: __SerdeContext
|
|
365
|
-
) => Promise<AcknowledgeThirdPartyJobCommandOutput>;
|
|
366
|
-
export declare const de_CreateCustomActionTypeCommand: (
|
|
367
|
-
output: __HttpResponse,
|
|
368
|
-
context: __SerdeContext
|
|
369
|
-
) => Promise<CreateCustomActionTypeCommandOutput>;
|
|
370
|
-
export declare const de_CreatePipelineCommand: (
|
|
371
|
-
output: __HttpResponse,
|
|
372
|
-
context: __SerdeContext
|
|
373
|
-
) => Promise<CreatePipelineCommandOutput>;
|
|
374
|
-
export declare const de_DeleteCustomActionTypeCommand: (
|
|
375
|
-
output: __HttpResponse,
|
|
376
|
-
context: __SerdeContext
|
|
377
|
-
) => Promise<DeleteCustomActionTypeCommandOutput>;
|
|
378
|
-
export declare const de_DeletePipelineCommand: (
|
|
379
|
-
output: __HttpResponse,
|
|
380
|
-
context: __SerdeContext
|
|
381
|
-
) => Promise<DeletePipelineCommandOutput>;
|
|
382
|
-
export declare const de_DeleteWebhookCommand: (
|
|
383
|
-
output: __HttpResponse,
|
|
384
|
-
context: __SerdeContext
|
|
385
|
-
) => Promise<DeleteWebhookCommandOutput>;
|
|
386
|
-
export declare const de_DeregisterWebhookWithThirdPartyCommand: (
|
|
387
|
-
output: __HttpResponse,
|
|
388
|
-
context: __SerdeContext
|
|
389
|
-
) => Promise<DeregisterWebhookWithThirdPartyCommandOutput>;
|
|
390
|
-
export declare const de_DisableStageTransitionCommand: (
|
|
391
|
-
output: __HttpResponse,
|
|
392
|
-
context: __SerdeContext
|
|
393
|
-
) => Promise<DisableStageTransitionCommandOutput>;
|
|
394
|
-
export declare const de_EnableStageTransitionCommand: (
|
|
395
|
-
output: __HttpResponse,
|
|
396
|
-
context: __SerdeContext
|
|
397
|
-
) => Promise<EnableStageTransitionCommandOutput>;
|
|
398
|
-
export declare const de_GetActionTypeCommand: (
|
|
399
|
-
output: __HttpResponse,
|
|
400
|
-
context: __SerdeContext
|
|
401
|
-
) => Promise<GetActionTypeCommandOutput>;
|
|
402
|
-
export declare const de_GetJobDetailsCommand: (
|
|
403
|
-
output: __HttpResponse,
|
|
404
|
-
context: __SerdeContext
|
|
405
|
-
) => Promise<GetJobDetailsCommandOutput>;
|
|
406
|
-
export declare const de_GetPipelineCommand: (
|
|
407
|
-
output: __HttpResponse,
|
|
408
|
-
context: __SerdeContext
|
|
409
|
-
) => Promise<GetPipelineCommandOutput>;
|
|
410
|
-
export declare const de_GetPipelineExecutionCommand: (
|
|
411
|
-
output: __HttpResponse,
|
|
412
|
-
context: __SerdeContext
|
|
413
|
-
) => Promise<GetPipelineExecutionCommandOutput>;
|
|
414
|
-
export declare const de_GetPipelineStateCommand: (
|
|
415
|
-
output: __HttpResponse,
|
|
416
|
-
context: __SerdeContext
|
|
417
|
-
) => Promise<GetPipelineStateCommandOutput>;
|
|
418
|
-
export declare const de_GetThirdPartyJobDetailsCommand: (
|
|
419
|
-
output: __HttpResponse,
|
|
420
|
-
context: __SerdeContext
|
|
421
|
-
) => Promise<GetThirdPartyJobDetailsCommandOutput>;
|
|
422
|
-
export declare const de_ListActionExecutionsCommand: (
|
|
423
|
-
output: __HttpResponse,
|
|
424
|
-
context: __SerdeContext
|
|
425
|
-
) => Promise<ListActionExecutionsCommandOutput>;
|
|
426
|
-
export declare const de_ListActionTypesCommand: (
|
|
427
|
-
output: __HttpResponse,
|
|
428
|
-
context: __SerdeContext
|
|
429
|
-
) => Promise<ListActionTypesCommandOutput>;
|
|
430
|
-
export declare const de_ListDeployActionExecutionTargetsCommand: (
|
|
431
|
-
output: __HttpResponse,
|
|
432
|
-
context: __SerdeContext
|
|
433
|
-
) => Promise<ListDeployActionExecutionTargetsCommandOutput>;
|
|
434
|
-
export declare const de_ListPipelineExecutionsCommand: (
|
|
435
|
-
output: __HttpResponse,
|
|
436
|
-
context: __SerdeContext
|
|
437
|
-
) => Promise<ListPipelineExecutionsCommandOutput>;
|
|
438
|
-
export declare const de_ListPipelinesCommand: (
|
|
439
|
-
output: __HttpResponse,
|
|
440
|
-
context: __SerdeContext
|
|
441
|
-
) => Promise<ListPipelinesCommandOutput>;
|
|
442
|
-
export declare const de_ListRuleExecutionsCommand: (
|
|
443
|
-
output: __HttpResponse,
|
|
444
|
-
context: __SerdeContext
|
|
445
|
-
) => Promise<ListRuleExecutionsCommandOutput>;
|
|
446
|
-
export declare const de_ListRuleTypesCommand: (
|
|
447
|
-
output: __HttpResponse,
|
|
448
|
-
context: __SerdeContext
|
|
449
|
-
) => Promise<ListRuleTypesCommandOutput>;
|
|
450
|
-
export declare const de_ListTagsForResourceCommand: (
|
|
451
|
-
output: __HttpResponse,
|
|
452
|
-
context: __SerdeContext
|
|
453
|
-
) => Promise<ListTagsForResourceCommandOutput>;
|
|
454
|
-
export declare const de_ListWebhooksCommand: (
|
|
455
|
-
output: __HttpResponse,
|
|
456
|
-
context: __SerdeContext
|
|
457
|
-
) => Promise<ListWebhooksCommandOutput>;
|
|
458
|
-
export declare const de_OverrideStageConditionCommand: (
|
|
459
|
-
output: __HttpResponse,
|
|
460
|
-
context: __SerdeContext
|
|
461
|
-
) => Promise<OverrideStageConditionCommandOutput>;
|
|
462
|
-
export declare const de_PollForJobsCommand: (
|
|
463
|
-
output: __HttpResponse,
|
|
464
|
-
context: __SerdeContext
|
|
465
|
-
) => Promise<PollForJobsCommandOutput>;
|
|
466
|
-
export declare const de_PollForThirdPartyJobsCommand: (
|
|
467
|
-
output: __HttpResponse,
|
|
468
|
-
context: __SerdeContext
|
|
469
|
-
) => Promise<PollForThirdPartyJobsCommandOutput>;
|
|
470
|
-
export declare const de_PutActionRevisionCommand: (
|
|
471
|
-
output: __HttpResponse,
|
|
472
|
-
context: __SerdeContext
|
|
473
|
-
) => Promise<PutActionRevisionCommandOutput>;
|
|
474
|
-
export declare const de_PutApprovalResultCommand: (
|
|
475
|
-
output: __HttpResponse,
|
|
476
|
-
context: __SerdeContext
|
|
477
|
-
) => Promise<PutApprovalResultCommandOutput>;
|
|
478
|
-
export declare const de_PutJobFailureResultCommand: (
|
|
479
|
-
output: __HttpResponse,
|
|
480
|
-
context: __SerdeContext
|
|
481
|
-
) => Promise<PutJobFailureResultCommandOutput>;
|
|
482
|
-
export declare const de_PutJobSuccessResultCommand: (
|
|
483
|
-
output: __HttpResponse,
|
|
484
|
-
context: __SerdeContext
|
|
485
|
-
) => Promise<PutJobSuccessResultCommandOutput>;
|
|
486
|
-
export declare const de_PutThirdPartyJobFailureResultCommand: (
|
|
487
|
-
output: __HttpResponse,
|
|
488
|
-
context: __SerdeContext
|
|
489
|
-
) => Promise<PutThirdPartyJobFailureResultCommandOutput>;
|
|
490
|
-
export declare const de_PutThirdPartyJobSuccessResultCommand: (
|
|
491
|
-
output: __HttpResponse,
|
|
492
|
-
context: __SerdeContext
|
|
493
|
-
) => Promise<PutThirdPartyJobSuccessResultCommandOutput>;
|
|
494
|
-
export declare const de_PutWebhookCommand: (
|
|
495
|
-
output: __HttpResponse,
|
|
496
|
-
context: __SerdeContext
|
|
497
|
-
) => Promise<PutWebhookCommandOutput>;
|
|
498
|
-
export declare const de_RegisterWebhookWithThirdPartyCommand: (
|
|
499
|
-
output: __HttpResponse,
|
|
500
|
-
context: __SerdeContext
|
|
501
|
-
) => Promise<RegisterWebhookWithThirdPartyCommandOutput>;
|
|
502
|
-
export declare const de_RetryStageExecutionCommand: (
|
|
503
|
-
output: __HttpResponse,
|
|
504
|
-
context: __SerdeContext
|
|
505
|
-
) => Promise<RetryStageExecutionCommandOutput>;
|
|
506
|
-
export declare const de_RollbackStageCommand: (
|
|
507
|
-
output: __HttpResponse,
|
|
508
|
-
context: __SerdeContext
|
|
509
|
-
) => Promise<RollbackStageCommandOutput>;
|
|
510
|
-
export declare const de_StartPipelineExecutionCommand: (
|
|
511
|
-
output: __HttpResponse,
|
|
512
|
-
context: __SerdeContext
|
|
513
|
-
) => Promise<StartPipelineExecutionCommandOutput>;
|
|
514
|
-
export declare const de_StopPipelineExecutionCommand: (
|
|
515
|
-
output: __HttpResponse,
|
|
516
|
-
context: __SerdeContext
|
|
517
|
-
) => Promise<StopPipelineExecutionCommandOutput>;
|
|
518
|
-
export declare const de_TagResourceCommand: (
|
|
519
|
-
output: __HttpResponse,
|
|
520
|
-
context: __SerdeContext
|
|
521
|
-
) => Promise<TagResourceCommandOutput>;
|
|
522
|
-
export declare const de_UntagResourceCommand: (
|
|
523
|
-
output: __HttpResponse,
|
|
524
|
-
context: __SerdeContext
|
|
525
|
-
) => Promise<UntagResourceCommandOutput>;
|
|
526
|
-
export declare const de_UpdateActionTypeCommand: (
|
|
527
|
-
output: __HttpResponse,
|
|
528
|
-
context: __SerdeContext
|
|
529
|
-
) => Promise<UpdateActionTypeCommandOutput>;
|
|
530
|
-
export declare const de_UpdatePipelineCommand: (
|
|
531
|
-
output: __HttpResponse,
|
|
532
|
-
context: __SerdeContext
|
|
533
|
-
) => Promise<UpdatePipelineCommandOutput>;
|