@aws-sdk/client-codepipeline 3.1087.0 → 3.1088.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 +1 -1
- package/dist-types/ts3.4/CodePipeline.d.ts +145 -159
- package/dist-types/ts3.4/CodePipelineClient.d.ts +10 -32
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/AcknowledgeJobCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/AcknowledgeThirdPartyJobCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateCustomActionTypeCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreatePipelineCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteCustomActionTypeCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/DeletePipelineCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/DeleteWebhookCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeregisterWebhookWithThirdPartyCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DisableStageTransitionCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/EnableStageTransitionCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/GetActionTypeCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetJobDetailsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetPipelineCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/GetPipelineExecutionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/GetPipelineStateCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/GetThirdPartyJobDetailsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListActionExecutionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListActionTypesCommand.d.ts +3 -8
- package/dist-types/ts3.4/commands/ListDeployActionExecutionTargetsCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/ListPipelineExecutionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListPipelinesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListRuleExecutionsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListRuleTypesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListWebhooksCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/OverrideStageConditionCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/PollForJobsCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/PollForThirdPartyJobsCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/PutActionRevisionCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/PutApprovalResultCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/PutJobFailureResultCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/PutJobSuccessResultCommand.d.ts +3 -4
- package/dist-types/ts3.4/commands/PutThirdPartyJobFailureResultCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/PutThirdPartyJobSuccessResultCommand.d.ts +4 -6
- package/dist-types/ts3.4/commands/PutWebhookCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/RegisterWebhookWithThirdPartyCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/RetryStageExecutionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/RollbackStageCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/StartPipelineExecutionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/StopPipelineExecutionCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateActionTypeCommand.d.ts +2 -2
- package/dist-types/ts3.4/commands/UpdatePipelineCommand.d.ts +3 -5
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +12 -24
- package/dist-types/ts3.4/models/errors.d.ts +40 -161
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -5
- package/package.json +38 -38
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListActionExecutionsInput,
|
|
4
|
-
ListActionExecutionsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListActionExecutionsInput, ListActionExecutionsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListActionExecutionsCommandInput
|
|
8
|
-
extends ListActionExecutionsInput {}
|
|
4
|
+
export interface ListActionExecutionsCommandInput extends ListActionExecutionsInput {}
|
|
9
5
|
export interface ListActionExecutionsCommandOutput
|
|
10
|
-
extends ListActionExecutionsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListActionExecutionsOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListActionExecutionsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListActionExecutionsCommandInput
|
|
9
|
+
input: ListActionExecutionsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListActionExecutionsCommandInput,
|
|
17
12
|
ListActionExecutionsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListActionExecutionsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListActionExecutionsCommandInput
|
|
18
|
+
input: ListActionExecutionsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListActionExecutionsCommandInput,
|
|
26
21
|
ListActionExecutionsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListActionTypesInput,
|
|
4
|
-
ListActionTypesOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListActionTypesInput, ListActionTypesOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface ListActionTypesCommandInput extends ListActionTypesInput {}
|
|
8
|
-
export interface ListActionTypesCommandOutput
|
|
9
|
-
extends ListActionTypesOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListActionTypesCommandOutput extends ListActionTypesOutput, __MetadataBearer {}
|
|
11
6
|
declare const ListActionTypesCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: ListActionTypesCommandInput
|
|
8
|
+
input: ListActionTypesCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
ListActionTypesCommandInput,
|
|
16
11
|
ListActionTypesCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
ListDeployActionExecutionTargetsOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListDeployActionExecutionTargetsCommandInput
|
|
8
|
-
extends ListDeployActionExecutionTargetsInput {}
|
|
7
|
+
export interface ListDeployActionExecutionTargetsCommandInput extends ListDeployActionExecutionTargetsInput {}
|
|
9
8
|
export interface ListDeployActionExecutionTargetsCommandOutput
|
|
10
|
-
extends ListDeployActionExecutionTargetsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends ListDeployActionExecutionTargetsOutput, __MetadataBearer {}
|
|
12
10
|
declare const ListDeployActionExecutionTargetsCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: ListDeployActionExecutionTargetsCommandInput
|
|
12
|
+
input: ListDeployActionExecutionTargetsCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
ListDeployActionExecutionTargetsCommandInput,
|
|
17
15
|
ListDeployActionExecutionTargetsCommandOutput,
|
|
@@ -20,7 +18,7 @@ declare const ListDeployActionExecutionTargetsCommand_base: {
|
|
|
20
18
|
import("..").ServiceOutputTypes
|
|
21
19
|
>;
|
|
22
20
|
new (
|
|
23
|
-
input: ListDeployActionExecutionTargetsCommandInput
|
|
21
|
+
input: ListDeployActionExecutionTargetsCommandInput,
|
|
24
22
|
): import("@smithy/core/client").CommandImpl<
|
|
25
23
|
ListDeployActionExecutionTargetsCommandInput,
|
|
26
24
|
ListDeployActionExecutionTargetsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListPipelineExecutionsInput,
|
|
4
|
-
ListPipelineExecutionsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListPipelineExecutionsInput, ListPipelineExecutionsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListPipelineExecutionsCommandInput
|
|
8
|
-
extends ListPipelineExecutionsInput {}
|
|
4
|
+
export interface ListPipelineExecutionsCommandInput extends ListPipelineExecutionsInput {}
|
|
9
5
|
export interface ListPipelineExecutionsCommandOutput
|
|
10
|
-
extends ListPipelineExecutionsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListPipelineExecutionsOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListPipelineExecutionsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListPipelineExecutionsCommandInput
|
|
9
|
+
input: ListPipelineExecutionsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListPipelineExecutionsCommandInput,
|
|
17
12
|
ListPipelineExecutionsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListPipelineExecutionsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListPipelineExecutionsCommandInput
|
|
18
|
+
input: ListPipelineExecutionsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListPipelineExecutionsCommandInput,
|
|
26
21
|
ListPipelineExecutionsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListPipelinesInput, ListPipelinesOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListPipelinesCommandInput extends ListPipelinesInput {}
|
|
5
|
-
export interface ListPipelinesCommandOutput
|
|
6
|
-
extends ListPipelinesOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListPipelinesCommandOutput extends ListPipelinesOutput, __MetadataBearer {}
|
|
8
6
|
declare const ListPipelinesCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListPipelinesCommandInput
|
|
8
|
+
input: ListPipelinesCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListPipelinesCommandInput,
|
|
13
11
|
ListPipelinesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListRuleExecutionsInput,
|
|
4
|
-
ListRuleExecutionsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListRuleExecutionsInput, ListRuleExecutionsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListRuleExecutionsCommandInput
|
|
8
|
-
extends ListRuleExecutionsInput {}
|
|
4
|
+
export interface ListRuleExecutionsCommandInput extends ListRuleExecutionsInput {}
|
|
9
5
|
export interface ListRuleExecutionsCommandOutput
|
|
10
|
-
extends ListRuleExecutionsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListRuleExecutionsOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListRuleExecutionsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListRuleExecutionsCommandInput
|
|
9
|
+
input: ListRuleExecutionsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListRuleExecutionsCommandInput,
|
|
17
12
|
ListRuleExecutionsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListRuleExecutionsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListRuleExecutionsCommandInput
|
|
18
|
+
input: ListRuleExecutionsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListRuleExecutionsCommandInput,
|
|
26
21
|
ListRuleExecutionsCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListRuleTypesInput, ListRuleTypesOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListRuleTypesCommandInput extends ListRuleTypesInput {}
|
|
5
|
-
export interface ListRuleTypesCommandOutput
|
|
6
|
-
extends ListRuleTypesOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListRuleTypesCommandOutput extends ListRuleTypesOutput, __MetadataBearer {}
|
|
8
6
|
declare const ListRuleTypesCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListRuleTypesCommandInput
|
|
8
|
+
input: ListRuleTypesCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListRuleTypesCommandInput,
|
|
13
11
|
ListRuleTypesCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
ListTagsForResourceInput,
|
|
4
|
-
ListTagsForResourceOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { ListTagsForResourceInput, ListTagsForResourceOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface ListTagsForResourceCommandInput
|
|
8
|
-
extends ListTagsForResourceInput {}
|
|
4
|
+
export interface ListTagsForResourceCommandInput extends ListTagsForResourceInput {}
|
|
9
5
|
export interface ListTagsForResourceCommandOutput
|
|
10
|
-
extends ListTagsForResourceOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends ListTagsForResourceOutput, __MetadataBearer {}
|
|
12
7
|
declare const ListTagsForResourceCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: ListTagsForResourceCommandInput
|
|
9
|
+
input: ListTagsForResourceCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
ListTagsForResourceCommandInput,
|
|
17
12
|
ListTagsForResourceCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: ListTagsForResourceCommandInput
|
|
18
|
+
input: ListTagsForResourceCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
ListTagsForResourceCommandInput,
|
|
26
21
|
ListTagsForResourceCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { ListWebhooksInput, ListWebhooksOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface ListWebhooksCommandInput extends ListWebhooksInput {}
|
|
5
|
-
export interface ListWebhooksCommandOutput
|
|
6
|
-
extends ListWebhooksOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface ListWebhooksCommandOutput extends ListWebhooksOutput, __MetadataBearer {}
|
|
8
6
|
declare const ListWebhooksCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: ListWebhooksCommandInput
|
|
8
|
+
input: ListWebhooksCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
ListWebhooksCommandInput,
|
|
13
11
|
ListWebhooksCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { OverrideStageConditionInput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface OverrideStageConditionCommandInput
|
|
5
|
-
extends OverrideStageConditionInput {}
|
|
4
|
+
export interface OverrideStageConditionCommandInput extends OverrideStageConditionInput {}
|
|
6
5
|
export interface OverrideStageConditionCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const OverrideStageConditionCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: OverrideStageConditionCommandInput
|
|
8
|
+
input: OverrideStageConditionCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
OverrideStageConditionCommandInput,
|
|
12
11
|
OverrideStageConditionCommandOutput,
|
|
@@ -15,7 +14,7 @@ declare const OverrideStageConditionCommand_base: {
|
|
|
15
14
|
import("..").ServiceOutputTypes
|
|
16
15
|
>;
|
|
17
16
|
new (
|
|
18
|
-
input: OverrideStageConditionCommandInput
|
|
17
|
+
input: OverrideStageConditionCommandInput,
|
|
19
18
|
): import("@smithy/core/client").CommandImpl<
|
|
20
19
|
OverrideStageConditionCommandInput,
|
|
21
20
|
OverrideStageConditionCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { PollForJobsInput, PollForJobsOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface PollForJobsCommandInput extends PollForJobsInput {}
|
|
5
|
-
export interface PollForJobsCommandOutput
|
|
6
|
-
extends PollForJobsOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface PollForJobsCommandOutput extends PollForJobsOutput, __MetadataBearer {}
|
|
8
6
|
declare const PollForJobsCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: PollForJobsCommandInput
|
|
8
|
+
input: PollForJobsCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
PollForJobsCommandInput,
|
|
13
11
|
PollForJobsCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const PollForJobsCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: PollForJobsCommandInput
|
|
17
|
+
input: PollForJobsCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
PollForJobsCommandInput,
|
|
22
20
|
PollForJobsCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
PollForThirdPartyJobsInput,
|
|
4
|
-
PollForThirdPartyJobsOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { PollForThirdPartyJobsInput, PollForThirdPartyJobsOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface PollForThirdPartyJobsCommandInput
|
|
8
|
-
extends PollForThirdPartyJobsInput {}
|
|
4
|
+
export interface PollForThirdPartyJobsCommandInput extends PollForThirdPartyJobsInput {}
|
|
9
5
|
export interface PollForThirdPartyJobsCommandOutput
|
|
10
|
-
extends PollForThirdPartyJobsOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends PollForThirdPartyJobsOutput, __MetadataBearer {}
|
|
12
7
|
declare const PollForThirdPartyJobsCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: PollForThirdPartyJobsCommandInput
|
|
9
|
+
input: PollForThirdPartyJobsCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
PollForThirdPartyJobsCommandInput,
|
|
17
12
|
PollForThirdPartyJobsCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const PollForThirdPartyJobsCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: PollForThirdPartyJobsCommandInput
|
|
18
|
+
input: PollForThirdPartyJobsCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
PollForThirdPartyJobsCommandInput,
|
|
26
21
|
PollForThirdPartyJobsCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
PutActionRevisionInput,
|
|
4
|
-
PutActionRevisionOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { PutActionRevisionInput, PutActionRevisionOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface PutActionRevisionCommandInput extends PutActionRevisionInput {}
|
|
8
|
-
export interface PutActionRevisionCommandOutput
|
|
9
|
-
extends PutActionRevisionOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface PutActionRevisionCommandOutput extends PutActionRevisionOutput, __MetadataBearer {}
|
|
11
6
|
declare const PutActionRevisionCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: PutActionRevisionCommandInput
|
|
8
|
+
input: PutActionRevisionCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
PutActionRevisionCommandInput,
|
|
16
11
|
PutActionRevisionCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const PutActionRevisionCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: PutActionRevisionCommandInput
|
|
17
|
+
input: PutActionRevisionCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
PutActionRevisionCommandInput,
|
|
25
20
|
PutActionRevisionCommandOutput,
|
|
@@ -1,16 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
PutApprovalResultInput,
|
|
4
|
-
PutApprovalResultOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { PutApprovalResultInput, PutApprovalResultOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
4
|
export interface PutApprovalResultCommandInput extends PutApprovalResultInput {}
|
|
8
|
-
export interface PutApprovalResultCommandOutput
|
|
9
|
-
extends PutApprovalResultOutput,
|
|
10
|
-
__MetadataBearer {}
|
|
5
|
+
export interface PutApprovalResultCommandOutput extends PutApprovalResultOutput, __MetadataBearer {}
|
|
11
6
|
declare const PutApprovalResultCommand_base: {
|
|
12
7
|
new (
|
|
13
|
-
input: PutApprovalResultCommandInput
|
|
8
|
+
input: PutApprovalResultCommandInput,
|
|
14
9
|
): import("@smithy/core/client").CommandImpl<
|
|
15
10
|
PutApprovalResultCommandInput,
|
|
16
11
|
PutApprovalResultCommandOutput,
|
|
@@ -19,7 +14,7 @@ declare const PutApprovalResultCommand_base: {
|
|
|
19
14
|
import("..").ServiceOutputTypes
|
|
20
15
|
>;
|
|
21
16
|
new (
|
|
22
|
-
input: PutApprovalResultCommandInput
|
|
17
|
+
input: PutApprovalResultCommandInput,
|
|
23
18
|
): import("@smithy/core/client").CommandImpl<
|
|
24
19
|
PutApprovalResultCommandInput,
|
|
25
20
|
PutApprovalResultCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { PutJobFailureResultInput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface PutJobFailureResultCommandInput
|
|
5
|
-
extends PutJobFailureResultInput {}
|
|
4
|
+
export interface PutJobFailureResultCommandInput extends PutJobFailureResultInput {}
|
|
6
5
|
export interface PutJobFailureResultCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const PutJobFailureResultCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: PutJobFailureResultCommandInput
|
|
8
|
+
input: PutJobFailureResultCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
PutJobFailureResultCommandInput,
|
|
12
11
|
PutJobFailureResultCommandOutput,
|
|
@@ -15,7 +14,7 @@ declare const PutJobFailureResultCommand_base: {
|
|
|
15
14
|
import("..").ServiceOutputTypes
|
|
16
15
|
>;
|
|
17
16
|
new (
|
|
18
|
-
input: PutJobFailureResultCommandInput
|
|
17
|
+
input: PutJobFailureResultCommandInput,
|
|
19
18
|
): import("@smithy/core/client").CommandImpl<
|
|
20
19
|
PutJobFailureResultCommandInput,
|
|
21
20
|
PutJobFailureResultCommandOutput,
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { PutJobSuccessResultInput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface PutJobSuccessResultCommandInput
|
|
5
|
-
extends PutJobSuccessResultInput {}
|
|
4
|
+
export interface PutJobSuccessResultCommandInput extends PutJobSuccessResultInput {}
|
|
6
5
|
export interface PutJobSuccessResultCommandOutput extends __MetadataBearer {}
|
|
7
6
|
declare const PutJobSuccessResultCommand_base: {
|
|
8
7
|
new (
|
|
9
|
-
input: PutJobSuccessResultCommandInput
|
|
8
|
+
input: PutJobSuccessResultCommandInput,
|
|
10
9
|
): import("@smithy/core/client").CommandImpl<
|
|
11
10
|
PutJobSuccessResultCommandInput,
|
|
12
11
|
PutJobSuccessResultCommandOutput,
|
|
@@ -15,7 +14,7 @@ declare const PutJobSuccessResultCommand_base: {
|
|
|
15
14
|
import("..").ServiceOutputTypes
|
|
16
15
|
>;
|
|
17
16
|
new (
|
|
18
|
-
input: PutJobSuccessResultCommandInput
|
|
17
|
+
input: PutJobSuccessResultCommandInput,
|
|
19
18
|
): import("@smithy/core/client").CommandImpl<
|
|
20
19
|
PutJobSuccessResultCommandInput,
|
|
21
20
|
PutJobSuccessResultCommandOutput,
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { PutThirdPartyJobFailureResultInput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface PutThirdPartyJobFailureResultCommandInput
|
|
5
|
-
|
|
6
|
-
export interface PutThirdPartyJobFailureResultCommandOutput
|
|
7
|
-
extends __MetadataBearer {}
|
|
4
|
+
export interface PutThirdPartyJobFailureResultCommandInput extends PutThirdPartyJobFailureResultInput {}
|
|
5
|
+
export interface PutThirdPartyJobFailureResultCommandOutput extends __MetadataBearer {}
|
|
8
6
|
declare const PutThirdPartyJobFailureResultCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: PutThirdPartyJobFailureResultCommandInput
|
|
8
|
+
input: PutThirdPartyJobFailureResultCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
PutThirdPartyJobFailureResultCommandInput,
|
|
13
11
|
PutThirdPartyJobFailureResultCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const PutThirdPartyJobFailureResultCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: PutThirdPartyJobFailureResultCommandInput
|
|
17
|
+
input: PutThirdPartyJobFailureResultCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
PutThirdPartyJobFailureResultCommandInput,
|
|
22
20
|
PutThirdPartyJobFailureResultCommandOutput,
|
|
@@ -1,13 +1,11 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
2
|
import { PutThirdPartyJobSuccessResultInput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
|
-
export interface PutThirdPartyJobSuccessResultCommandInput
|
|
5
|
-
|
|
6
|
-
export interface PutThirdPartyJobSuccessResultCommandOutput
|
|
7
|
-
extends __MetadataBearer {}
|
|
4
|
+
export interface PutThirdPartyJobSuccessResultCommandInput extends PutThirdPartyJobSuccessResultInput {}
|
|
5
|
+
export interface PutThirdPartyJobSuccessResultCommandOutput extends __MetadataBearer {}
|
|
8
6
|
declare const PutThirdPartyJobSuccessResultCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: PutThirdPartyJobSuccessResultCommandInput
|
|
8
|
+
input: PutThirdPartyJobSuccessResultCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
PutThirdPartyJobSuccessResultCommandInput,
|
|
13
11
|
PutThirdPartyJobSuccessResultCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const PutThirdPartyJobSuccessResultCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: PutThirdPartyJobSuccessResultCommandInput
|
|
17
|
+
input: PutThirdPartyJobSuccessResultCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
PutThirdPartyJobSuccessResultCommandInput,
|
|
22
20
|
PutThirdPartyJobSuccessResultCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { PutWebhookInput, PutWebhookOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface PutWebhookCommandInput extends PutWebhookInput {}
|
|
5
|
-
export interface PutWebhookCommandOutput
|
|
6
|
-
extends PutWebhookOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface PutWebhookCommandOutput extends PutWebhookOutput, __MetadataBearer {}
|
|
8
6
|
declare const PutWebhookCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: PutWebhookCommandInput
|
|
8
|
+
input: PutWebhookCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
PutWebhookCommandInput,
|
|
13
11
|
PutWebhookCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const PutWebhookCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: PutWebhookCommandInput
|
|
17
|
+
input: PutWebhookCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
PutWebhookCommandInput,
|
|
22
20
|
PutWebhookCommandOutput,
|
|
@@ -4,14 +4,12 @@ import {
|
|
|
4
4
|
RegisterWebhookWithThirdPartyOutput,
|
|
5
5
|
} from "../models/models_0";
|
|
6
6
|
export { __MetadataBearer };
|
|
7
|
-
export interface RegisterWebhookWithThirdPartyCommandInput
|
|
8
|
-
extends RegisterWebhookWithThirdPartyInput {}
|
|
7
|
+
export interface RegisterWebhookWithThirdPartyCommandInput extends RegisterWebhookWithThirdPartyInput {}
|
|
9
8
|
export interface RegisterWebhookWithThirdPartyCommandOutput
|
|
10
|
-
extends RegisterWebhookWithThirdPartyOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
9
|
+
extends RegisterWebhookWithThirdPartyOutput, __MetadataBearer {}
|
|
12
10
|
declare const RegisterWebhookWithThirdPartyCommand_base: {
|
|
13
11
|
new (
|
|
14
|
-
input: RegisterWebhookWithThirdPartyCommandInput
|
|
12
|
+
input: RegisterWebhookWithThirdPartyCommandInput,
|
|
15
13
|
): import("@smithy/core/client").CommandImpl<
|
|
16
14
|
RegisterWebhookWithThirdPartyCommandInput,
|
|
17
15
|
RegisterWebhookWithThirdPartyCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
RetryStageExecutionInput,
|
|
4
|
-
RetryStageExecutionOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { RetryStageExecutionInput, RetryStageExecutionOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface RetryStageExecutionCommandInput
|
|
8
|
-
extends RetryStageExecutionInput {}
|
|
4
|
+
export interface RetryStageExecutionCommandInput extends RetryStageExecutionInput {}
|
|
9
5
|
export interface RetryStageExecutionCommandOutput
|
|
10
|
-
extends RetryStageExecutionOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends RetryStageExecutionOutput, __MetadataBearer {}
|
|
12
7
|
declare const RetryStageExecutionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: RetryStageExecutionCommandInput
|
|
9
|
+
input: RetryStageExecutionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
RetryStageExecutionCommandInput,
|
|
17
12
|
RetryStageExecutionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const RetryStageExecutionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: RetryStageExecutionCommandInput
|
|
18
|
+
input: RetryStageExecutionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
RetryStageExecutionCommandInput,
|
|
26
21
|
RetryStageExecutionCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { RollbackStageInput, RollbackStageOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface RollbackStageCommandInput extends RollbackStageInput {}
|
|
5
|
-
export interface RollbackStageCommandOutput
|
|
6
|
-
extends RollbackStageOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface RollbackStageCommandOutput extends RollbackStageOutput, __MetadataBearer {}
|
|
8
6
|
declare const RollbackStageCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: RollbackStageCommandInput
|
|
8
|
+
input: RollbackStageCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
RollbackStageCommandInput,
|
|
13
11
|
RollbackStageCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const RollbackStageCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: RollbackStageCommandInput
|
|
17
|
+
input: RollbackStageCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
RollbackStageCommandInput,
|
|
22
20
|
RollbackStageCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StartPipelineExecutionInput,
|
|
4
|
-
StartPipelineExecutionOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StartPipelineExecutionInput, StartPipelineExecutionOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StartPipelineExecutionCommandInput
|
|
8
|
-
extends StartPipelineExecutionInput {}
|
|
4
|
+
export interface StartPipelineExecutionCommandInput extends StartPipelineExecutionInput {}
|
|
9
5
|
export interface StartPipelineExecutionCommandOutput
|
|
10
|
-
extends StartPipelineExecutionOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StartPipelineExecutionOutput, __MetadataBearer {}
|
|
12
7
|
declare const StartPipelineExecutionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StartPipelineExecutionCommandInput
|
|
9
|
+
input: StartPipelineExecutionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StartPipelineExecutionCommandInput,
|
|
17
12
|
StartPipelineExecutionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const StartPipelineExecutionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: StartPipelineExecutionCommandInput
|
|
18
|
+
input: StartPipelineExecutionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
StartPipelineExecutionCommandInput,
|
|
26
21
|
StartPipelineExecutionCommandOutput,
|
|
@@ -1,17 +1,12 @@
|
|
|
1
1
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
2
|
-
import {
|
|
3
|
-
StopPipelineExecutionInput,
|
|
4
|
-
StopPipelineExecutionOutput,
|
|
5
|
-
} from "../models/models_0";
|
|
2
|
+
import { StopPipelineExecutionInput, StopPipelineExecutionOutput } from "../models/models_0";
|
|
6
3
|
export { __MetadataBearer };
|
|
7
|
-
export interface StopPipelineExecutionCommandInput
|
|
8
|
-
extends StopPipelineExecutionInput {}
|
|
4
|
+
export interface StopPipelineExecutionCommandInput extends StopPipelineExecutionInput {}
|
|
9
5
|
export interface StopPipelineExecutionCommandOutput
|
|
10
|
-
extends StopPipelineExecutionOutput,
|
|
11
|
-
__MetadataBearer {}
|
|
6
|
+
extends StopPipelineExecutionOutput, __MetadataBearer {}
|
|
12
7
|
declare const StopPipelineExecutionCommand_base: {
|
|
13
8
|
new (
|
|
14
|
-
input: StopPipelineExecutionCommandInput
|
|
9
|
+
input: StopPipelineExecutionCommandInput,
|
|
15
10
|
): import("@smithy/core/client").CommandImpl<
|
|
16
11
|
StopPipelineExecutionCommandInput,
|
|
17
12
|
StopPipelineExecutionCommandOutput,
|
|
@@ -20,7 +15,7 @@ declare const StopPipelineExecutionCommand_base: {
|
|
|
20
15
|
import("..").ServiceOutputTypes
|
|
21
16
|
>;
|
|
22
17
|
new (
|
|
23
|
-
input: StopPipelineExecutionCommandInput
|
|
18
|
+
input: StopPipelineExecutionCommandInput,
|
|
24
19
|
): import("@smithy/core/client").CommandImpl<
|
|
25
20
|
StopPipelineExecutionCommandInput,
|
|
26
21
|
StopPipelineExecutionCommandOutput,
|
|
@@ -2,12 +2,10 @@ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
|
2
2
|
import { TagResourceInput, TagResourceOutput } from "../models/models_0";
|
|
3
3
|
export { __MetadataBearer };
|
|
4
4
|
export interface TagResourceCommandInput extends TagResourceInput {}
|
|
5
|
-
export interface TagResourceCommandOutput
|
|
6
|
-
extends TagResourceOutput,
|
|
7
|
-
__MetadataBearer {}
|
|
5
|
+
export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataBearer {}
|
|
8
6
|
declare const TagResourceCommand_base: {
|
|
9
7
|
new (
|
|
10
|
-
input: TagResourceCommandInput
|
|
8
|
+
input: TagResourceCommandInput,
|
|
11
9
|
): import("@smithy/core/client").CommandImpl<
|
|
12
10
|
TagResourceCommandInput,
|
|
13
11
|
TagResourceCommandOutput,
|
|
@@ -16,7 +14,7 @@ declare const TagResourceCommand_base: {
|
|
|
16
14
|
import("..").ServiceOutputTypes
|
|
17
15
|
>;
|
|
18
16
|
new (
|
|
19
|
-
input: TagResourceCommandInput
|
|
17
|
+
input: TagResourceCommandInput,
|
|
20
18
|
): import("@smithy/core/client").CommandImpl<
|
|
21
19
|
TagResourceCommandInput,
|
|
22
20
|
TagResourceCommandOutput,
|