@aws-sdk/client-codepipeline 3.620.1 → 3.622.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/README.md +24 -0
- package/dist-cjs/index.js +386 -89
- package/dist-es/CodePipeline.js +6 -0
- package/dist-es/CodePipelineClient.js +12 -18
- package/dist-es/commands/ListRuleExecutionsCommand.js +24 -0
- package/dist-es/commands/ListRuleTypesCommand.js +24 -0
- package/dist-es/commands/OverrideStageConditionCommand.js +24 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +82 -39
- package/dist-es/pagination/ListRuleExecutionsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +198 -14
- package/dist-types/CodePipeline.d.ts +22 -0
- package/dist-types/CodePipelineClient.d.ts +7 -6
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +4 -4
- package/dist-types/commands/CreatePipelineCommand.d.ts +172 -2
- package/dist-types/commands/GetPipelineCommand.d.ts +86 -1
- package/dist-types/commands/GetPipelineStateCommand.d.ts +123 -0
- package/dist-types/commands/ListRuleExecutionsCommand.d.ts +132 -0
- package/dist-types/commands/ListRuleTypesCommand.d.ts +98 -0
- package/dist-types/commands/OverrideStageConditionCommand.d.ts +85 -0
- package/dist-types/commands/PutActionRevisionCommand.d.ts +3 -0
- package/dist-types/commands/RetryStageExecutionCommand.d.ts +3 -0
- package/dist-types/commands/UpdatePipelineCommand.d.ts +172 -2
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +1019 -222
- package/dist-types/pagination/ListRuleExecutionsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/CodePipeline.d.ts +52 -0
- package/dist-types/ts3.4/CodePipelineClient.d.ts +24 -8
- package/dist-types/ts3.4/commands/ListRuleExecutionsCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListRuleTypesCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/OverrideStageConditionCommand.d.ts +35 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +228 -29
- package/dist-types/ts3.4/pagination/ListRuleExecutionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +36 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +5 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +5 -5
- package/package.json +11 -11
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListRuleExecutionsCommandInput, ListRuleExecutionsCommandOutput } from "../commands/ListRuleExecutionsCommand";
|
|
3
|
+
import { CodePipelinePaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListRuleExecutions: (config: CodePipelinePaginationConfiguration, input: ListRuleExecutionsCommandInput, ...rest: any[]) => Paginator<ListRuleExecutionsCommandOutput>;
|
|
@@ -3,5 +3,6 @@ export * from "./ListActionExecutionsPaginator";
|
|
|
3
3
|
export * from "./ListActionTypesPaginator";
|
|
4
4
|
export * from "./ListPipelineExecutionsPaginator";
|
|
5
5
|
export * from "./ListPipelinesPaginator";
|
|
6
|
+
export * from "./ListRuleExecutionsPaginator";
|
|
6
7
|
export * from "./ListTagsForResourcePaginator";
|
|
7
8
|
export * from "./ListWebhooksPaginator";
|
|
@@ -20,8 +20,11 @@ import { ListActionExecutionsCommandInput, ListActionExecutionsCommandOutput } f
|
|
|
20
20
|
import { ListActionTypesCommandInput, ListActionTypesCommandOutput } from "../commands/ListActionTypesCommand";
|
|
21
21
|
import { ListPipelineExecutionsCommandInput, ListPipelineExecutionsCommandOutput } from "../commands/ListPipelineExecutionsCommand";
|
|
22
22
|
import { ListPipelinesCommandInput, ListPipelinesCommandOutput } from "../commands/ListPipelinesCommand";
|
|
23
|
+
import { ListRuleExecutionsCommandInput, ListRuleExecutionsCommandOutput } from "../commands/ListRuleExecutionsCommand";
|
|
24
|
+
import { ListRuleTypesCommandInput, ListRuleTypesCommandOutput } from "../commands/ListRuleTypesCommand";
|
|
23
25
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
24
26
|
import { ListWebhooksCommandInput, ListWebhooksCommandOutput } from "../commands/ListWebhooksCommand";
|
|
27
|
+
import { OverrideStageConditionCommandInput, OverrideStageConditionCommandOutput } from "../commands/OverrideStageConditionCommand";
|
|
25
28
|
import { PollForJobsCommandInput, PollForJobsCommandOutput } from "../commands/PollForJobsCommand";
|
|
26
29
|
import { PollForThirdPartyJobsCommandInput, PollForThirdPartyJobsCommandOutput } from "../commands/PollForThirdPartyJobsCommand";
|
|
27
30
|
import { PutActionRevisionCommandInput, PutActionRevisionCommandOutput } from "../commands/PutActionRevisionCommand";
|
|
@@ -120,6 +123,14 @@ export declare const se_ListPipelineExecutionsCommand: (input: ListPipelineExecu
|
|
|
120
123
|
* serializeAws_json1_1ListPipelinesCommand
|
|
121
124
|
*/
|
|
122
125
|
export declare const se_ListPipelinesCommand: (input: ListPipelinesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
126
|
+
/**
|
|
127
|
+
* serializeAws_json1_1ListRuleExecutionsCommand
|
|
128
|
+
*/
|
|
129
|
+
export declare const se_ListRuleExecutionsCommand: (input: ListRuleExecutionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
130
|
+
/**
|
|
131
|
+
* serializeAws_json1_1ListRuleTypesCommand
|
|
132
|
+
*/
|
|
133
|
+
export declare const se_ListRuleTypesCommand: (input: ListRuleTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
123
134
|
/**
|
|
124
135
|
* serializeAws_json1_1ListTagsForResourceCommand
|
|
125
136
|
*/
|
|
@@ -128,6 +139,10 @@ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceC
|
|
|
128
139
|
* serializeAws_json1_1ListWebhooksCommand
|
|
129
140
|
*/
|
|
130
141
|
export declare const se_ListWebhooksCommand: (input: ListWebhooksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
142
|
+
/**
|
|
143
|
+
* serializeAws_json1_1OverrideStageConditionCommand
|
|
144
|
+
*/
|
|
145
|
+
export declare const se_OverrideStageConditionCommand: (input: OverrideStageConditionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
131
146
|
/**
|
|
132
147
|
* serializeAws_json1_1PollForJobsCommand
|
|
133
148
|
*/
|
|
@@ -280,6 +295,14 @@ export declare const de_ListPipelineExecutionsCommand: (output: __HttpResponse,
|
|
|
280
295
|
* deserializeAws_json1_1ListPipelinesCommand
|
|
281
296
|
*/
|
|
282
297
|
export declare const de_ListPipelinesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListPipelinesCommandOutput>;
|
|
298
|
+
/**
|
|
299
|
+
* deserializeAws_json1_1ListRuleExecutionsCommand
|
|
300
|
+
*/
|
|
301
|
+
export declare const de_ListRuleExecutionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRuleExecutionsCommandOutput>;
|
|
302
|
+
/**
|
|
303
|
+
* deserializeAws_json1_1ListRuleTypesCommand
|
|
304
|
+
*/
|
|
305
|
+
export declare const de_ListRuleTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRuleTypesCommandOutput>;
|
|
283
306
|
/**
|
|
284
307
|
* deserializeAws_json1_1ListTagsForResourceCommand
|
|
285
308
|
*/
|
|
@@ -288,6 +311,10 @@ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, con
|
|
|
288
311
|
* deserializeAws_json1_1ListWebhooksCommand
|
|
289
312
|
*/
|
|
290
313
|
export declare const de_ListWebhooksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListWebhooksCommandOutput>;
|
|
314
|
+
/**
|
|
315
|
+
* deserializeAws_json1_1OverrideStageConditionCommand
|
|
316
|
+
*/
|
|
317
|
+
export declare const de_OverrideStageConditionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<OverrideStageConditionCommandOutput>;
|
|
291
318
|
/**
|
|
292
319
|
* deserializeAws_json1_1PollForJobsCommand
|
|
293
320
|
*/
|
|
@@ -27,13 +27,13 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
|
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
31
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
30
32
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
31
33
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
33
35
|
}) => import("@smithy/types").EndpointV2;
|
|
34
36
|
tls?: boolean | undefined;
|
|
35
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
37
37
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
38
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodePipelineHttpAuthSchemeProvider;
|
|
39
39
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -27,13 +27,13 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
|
|
|
27
27
|
serviceId: string;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
31
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
30
32
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
31
33
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
32
34
|
logger?: import("@smithy/types").Logger | undefined;
|
|
33
35
|
}) => import("@smithy/types").EndpointV2;
|
|
34
36
|
tls?: boolean | undefined;
|
|
35
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
36
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
37
37
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
38
38
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodePipelineHttpAuthSchemeProvider;
|
|
39
39
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -26,13 +26,13 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
|
|
|
26
26
|
logger: import("@smithy/types").Logger;
|
|
27
27
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
28
28
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
29
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
30
|
+
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
29
31
|
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
30
32
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
31
33
|
logger?: import("@smithy/types").Logger | undefined;
|
|
32
34
|
}) => import("@smithy/types").EndpointV2;
|
|
33
35
|
tls?: boolean | undefined;
|
|
34
|
-
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
35
|
-
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
36
36
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
37
37
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodePipelineHttpAuthSchemeProvider;
|
|
38
38
|
credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
|
|
@@ -80,6 +80,14 @@ import {
|
|
|
80
80
|
ListPipelinesCommandInput,
|
|
81
81
|
ListPipelinesCommandOutput,
|
|
82
82
|
} from "./commands/ListPipelinesCommand";
|
|
83
|
+
import {
|
|
84
|
+
ListRuleExecutionsCommandInput,
|
|
85
|
+
ListRuleExecutionsCommandOutput,
|
|
86
|
+
} from "./commands/ListRuleExecutionsCommand";
|
|
87
|
+
import {
|
|
88
|
+
ListRuleTypesCommandInput,
|
|
89
|
+
ListRuleTypesCommandOutput,
|
|
90
|
+
} from "./commands/ListRuleTypesCommand";
|
|
83
91
|
import {
|
|
84
92
|
ListTagsForResourceCommandInput,
|
|
85
93
|
ListTagsForResourceCommandOutput,
|
|
@@ -88,6 +96,10 @@ import {
|
|
|
88
96
|
ListWebhooksCommandInput,
|
|
89
97
|
ListWebhooksCommandOutput,
|
|
90
98
|
} from "./commands/ListWebhooksCommand";
|
|
99
|
+
import {
|
|
100
|
+
OverrideStageConditionCommandInput,
|
|
101
|
+
OverrideStageConditionCommandOutput,
|
|
102
|
+
} from "./commands/OverrideStageConditionCommand";
|
|
91
103
|
import {
|
|
92
104
|
PollForJobsCommandInput,
|
|
93
105
|
PollForJobsCommandOutput,
|
|
@@ -424,6 +436,33 @@ export interface CodePipeline {
|
|
|
424
436
|
options: __HttpHandlerOptions,
|
|
425
437
|
cb: (err: any, data?: ListPipelinesCommandOutput) => void
|
|
426
438
|
): void;
|
|
439
|
+
listRuleExecutions(
|
|
440
|
+
args: ListRuleExecutionsCommandInput,
|
|
441
|
+
options?: __HttpHandlerOptions
|
|
442
|
+
): Promise<ListRuleExecutionsCommandOutput>;
|
|
443
|
+
listRuleExecutions(
|
|
444
|
+
args: ListRuleExecutionsCommandInput,
|
|
445
|
+
cb: (err: any, data?: ListRuleExecutionsCommandOutput) => void
|
|
446
|
+
): void;
|
|
447
|
+
listRuleExecutions(
|
|
448
|
+
args: ListRuleExecutionsCommandInput,
|
|
449
|
+
options: __HttpHandlerOptions,
|
|
450
|
+
cb: (err: any, data?: ListRuleExecutionsCommandOutput) => void
|
|
451
|
+
): void;
|
|
452
|
+
listRuleTypes(): Promise<ListRuleTypesCommandOutput>;
|
|
453
|
+
listRuleTypes(
|
|
454
|
+
args: ListRuleTypesCommandInput,
|
|
455
|
+
options?: __HttpHandlerOptions
|
|
456
|
+
): Promise<ListRuleTypesCommandOutput>;
|
|
457
|
+
listRuleTypes(
|
|
458
|
+
args: ListRuleTypesCommandInput,
|
|
459
|
+
cb: (err: any, data?: ListRuleTypesCommandOutput) => void
|
|
460
|
+
): void;
|
|
461
|
+
listRuleTypes(
|
|
462
|
+
args: ListRuleTypesCommandInput,
|
|
463
|
+
options: __HttpHandlerOptions,
|
|
464
|
+
cb: (err: any, data?: ListRuleTypesCommandOutput) => void
|
|
465
|
+
): void;
|
|
427
466
|
listTagsForResource(
|
|
428
467
|
args: ListTagsForResourceCommandInput,
|
|
429
468
|
options?: __HttpHandlerOptions
|
|
@@ -451,6 +490,19 @@ export interface CodePipeline {
|
|
|
451
490
|
options: __HttpHandlerOptions,
|
|
452
491
|
cb: (err: any, data?: ListWebhooksCommandOutput) => void
|
|
453
492
|
): void;
|
|
493
|
+
overrideStageCondition(
|
|
494
|
+
args: OverrideStageConditionCommandInput,
|
|
495
|
+
options?: __HttpHandlerOptions
|
|
496
|
+
): Promise<OverrideStageConditionCommandOutput>;
|
|
497
|
+
overrideStageCondition(
|
|
498
|
+
args: OverrideStageConditionCommandInput,
|
|
499
|
+
cb: (err: any, data?: OverrideStageConditionCommandOutput) => void
|
|
500
|
+
): void;
|
|
501
|
+
overrideStageCondition(
|
|
502
|
+
args: OverrideStageConditionCommandInput,
|
|
503
|
+
options: __HttpHandlerOptions,
|
|
504
|
+
cb: (err: any, data?: OverrideStageConditionCommandOutput) => void
|
|
505
|
+
): void;
|
|
454
506
|
pollForJobs(
|
|
455
507
|
args: PollForJobsCommandInput,
|
|
456
508
|
options?: __HttpHandlerOptions
|
|
@@ -125,6 +125,14 @@ import {
|
|
|
125
125
|
ListPipelinesCommandInput,
|
|
126
126
|
ListPipelinesCommandOutput,
|
|
127
127
|
} from "./commands/ListPipelinesCommand";
|
|
128
|
+
import {
|
|
129
|
+
ListRuleExecutionsCommandInput,
|
|
130
|
+
ListRuleExecutionsCommandOutput,
|
|
131
|
+
} from "./commands/ListRuleExecutionsCommand";
|
|
132
|
+
import {
|
|
133
|
+
ListRuleTypesCommandInput,
|
|
134
|
+
ListRuleTypesCommandOutput,
|
|
135
|
+
} from "./commands/ListRuleTypesCommand";
|
|
128
136
|
import {
|
|
129
137
|
ListTagsForResourceCommandInput,
|
|
130
138
|
ListTagsForResourceCommandOutput,
|
|
@@ -133,6 +141,10 @@ import {
|
|
|
133
141
|
ListWebhooksCommandInput,
|
|
134
142
|
ListWebhooksCommandOutput,
|
|
135
143
|
} from "./commands/ListWebhooksCommand";
|
|
144
|
+
import {
|
|
145
|
+
OverrideStageConditionCommandInput,
|
|
146
|
+
OverrideStageConditionCommandOutput,
|
|
147
|
+
} from "./commands/OverrideStageConditionCommand";
|
|
136
148
|
import {
|
|
137
149
|
PollForJobsCommandInput,
|
|
138
150
|
PollForJobsCommandOutput,
|
|
@@ -233,8 +245,11 @@ export type ServiceInputTypes =
|
|
|
233
245
|
| ListActionTypesCommandInput
|
|
234
246
|
| ListPipelineExecutionsCommandInput
|
|
235
247
|
| ListPipelinesCommandInput
|
|
248
|
+
| ListRuleExecutionsCommandInput
|
|
249
|
+
| ListRuleTypesCommandInput
|
|
236
250
|
| ListTagsForResourceCommandInput
|
|
237
251
|
| ListWebhooksCommandInput
|
|
252
|
+
| OverrideStageConditionCommandInput
|
|
238
253
|
| PollForJobsCommandInput
|
|
239
254
|
| PollForThirdPartyJobsCommandInput
|
|
240
255
|
| PutActionRevisionCommandInput
|
|
@@ -274,8 +289,11 @@ export type ServiceOutputTypes =
|
|
|
274
289
|
| ListActionTypesCommandOutput
|
|
275
290
|
| ListPipelineExecutionsCommandOutput
|
|
276
291
|
| ListPipelinesCommandOutput
|
|
292
|
+
| ListRuleExecutionsCommandOutput
|
|
293
|
+
| ListRuleTypesCommandOutput
|
|
277
294
|
| ListTagsForResourceCommandOutput
|
|
278
295
|
| ListWebhooksCommandOutput
|
|
296
|
+
| OverrideStageConditionCommandOutput
|
|
279
297
|
| PollForJobsCommandOutput
|
|
280
298
|
| PollForThirdPartyJobsCommandOutput
|
|
281
299
|
| PutActionRevisionCommandOutput
|
|
@@ -323,11 +341,11 @@ export type CodePipelineClientConfigType = Partial<
|
|
|
323
341
|
__SmithyConfiguration<__HttpHandlerOptions>
|
|
324
342
|
> &
|
|
325
343
|
ClientDefaults &
|
|
326
|
-
RegionInputConfig &
|
|
327
|
-
EndpointInputConfig<EndpointParameters> &
|
|
328
|
-
HostHeaderInputConfig &
|
|
329
344
|
UserAgentInputConfig &
|
|
330
345
|
RetryInputConfig &
|
|
346
|
+
RegionInputConfig &
|
|
347
|
+
HostHeaderInputConfig &
|
|
348
|
+
EndpointInputConfig<EndpointParameters> &
|
|
331
349
|
HttpAuthSchemeInputConfig &
|
|
332
350
|
ClientInputEndpointParameters;
|
|
333
351
|
export interface CodePipelineClientConfig
|
|
@@ -336,11 +354,11 @@ export type CodePipelineClientResolvedConfigType =
|
|
|
336
354
|
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
337
355
|
Required<ClientDefaults> &
|
|
338
356
|
RuntimeExtensionsConfig &
|
|
339
|
-
RegionResolvedConfig &
|
|
340
|
-
EndpointResolvedConfig<EndpointParameters> &
|
|
341
|
-
HostHeaderResolvedConfig &
|
|
342
357
|
UserAgentResolvedConfig &
|
|
343
358
|
RetryResolvedConfig &
|
|
359
|
+
RegionResolvedConfig &
|
|
360
|
+
HostHeaderResolvedConfig &
|
|
361
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
344
362
|
HttpAuthSchemeResolvedConfig &
|
|
345
363
|
ClientResolvedEndpointParameters;
|
|
346
364
|
export interface CodePipelineClientResolvedConfig
|
|
@@ -356,6 +374,4 @@ export declare class CodePipelineClient extends __Client<
|
|
|
356
374
|
...[configuration]: __CheckOptionalClientConfig<CodePipelineClientConfig>
|
|
357
375
|
);
|
|
358
376
|
destroy(): void;
|
|
359
|
-
private getDefaultHttpAuthSchemeParametersProvider;
|
|
360
|
-
private getIdentityProviderConfigProvider;
|
|
361
377
|
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CodePipelineClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CodePipelineClient";
|
|
8
|
+
import {
|
|
9
|
+
ListRuleExecutionsInput,
|
|
10
|
+
ListRuleExecutionsOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListRuleExecutionsCommandInput
|
|
15
|
+
extends ListRuleExecutionsInput {}
|
|
16
|
+
export interface ListRuleExecutionsCommandOutput
|
|
17
|
+
extends ListRuleExecutionsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListRuleExecutionsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListRuleExecutionsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListRuleExecutionsCommandInput,
|
|
24
|
+
ListRuleExecutionsCommandOutput,
|
|
25
|
+
CodePipelineClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: ListRuleExecutionsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListRuleExecutionsCommandInput,
|
|
33
|
+
ListRuleExecutionsCommandOutput,
|
|
34
|
+
CodePipelineClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListRuleExecutionsCommand extends ListRuleExecutionsCommand_base {}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CodePipelineClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CodePipelineClient";
|
|
8
|
+
import { ListRuleTypesInput, ListRuleTypesOutput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface ListRuleTypesCommandInput extends ListRuleTypesInput {}
|
|
12
|
+
export interface ListRuleTypesCommandOutput
|
|
13
|
+
extends ListRuleTypesOutput,
|
|
14
|
+
__MetadataBearer {}
|
|
15
|
+
declare const ListRuleTypesCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: ListRuleTypesCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
ListRuleTypesCommandInput,
|
|
20
|
+
ListRuleTypesCommandOutput,
|
|
21
|
+
CodePipelineClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
...[input]: [] | [ListRuleTypesCommandInput]
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
ListRuleTypesCommandInput,
|
|
29
|
+
ListRuleTypesCommandOutput,
|
|
30
|
+
CodePipelineClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class ListRuleTypesCommand extends ListRuleTypesCommand_base {}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CodePipelineClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CodePipelineClient";
|
|
8
|
+
import { OverrideStageConditionInput } from "../models/models_0";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface OverrideStageConditionCommandInput
|
|
12
|
+
extends OverrideStageConditionInput {}
|
|
13
|
+
export interface OverrideStageConditionCommandOutput extends __MetadataBearer {}
|
|
14
|
+
declare const OverrideStageConditionCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: OverrideStageConditionCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
OverrideStageConditionCommandInput,
|
|
19
|
+
OverrideStageConditionCommandOutput,
|
|
20
|
+
CodePipelineClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
new (
|
|
25
|
+
__0_0: OverrideStageConditionCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
OverrideStageConditionCommandInput,
|
|
28
|
+
OverrideStageConditionCommandOutput,
|
|
29
|
+
CodePipelineClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
33
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
34
|
+
};
|
|
35
|
+
export declare class OverrideStageConditionCommand extends OverrideStageConditionCommand_base {}
|
|
@@ -18,8 +18,11 @@ export * from "./ListActionExecutionsCommand";
|
|
|
18
18
|
export * from "./ListActionTypesCommand";
|
|
19
19
|
export * from "./ListPipelineExecutionsCommand";
|
|
20
20
|
export * from "./ListPipelinesCommand";
|
|
21
|
+
export * from "./ListRuleExecutionsCommand";
|
|
22
|
+
export * from "./ListRuleTypesCommand";
|
|
21
23
|
export * from "./ListTagsForResourceCommand";
|
|
22
24
|
export * from "./ListWebhooksCommand";
|
|
25
|
+
export * from "./OverrideStageConditionCommand";
|
|
23
26
|
export * from "./PollForJobsCommand";
|
|
24
27
|
export * from "./PollForThirdPartyJobsCommand";
|
|
25
28
|
export * from "./PutActionRevisionCommand";
|