@aws-sdk/client-codepipeline
Advanced tools
Comparing version
@@ -21,2 +21,3 @@ import { createAggregatedClient } from "@smithy/smithy-client"; | ||
import { ListActionTypesCommand, } from "./commands/ListActionTypesCommand"; | ||
import { ListDeployActionExecutionTargetsCommand, } from "./commands/ListDeployActionExecutionTargetsCommand"; | ||
import { ListPipelineExecutionsCommand, } from "./commands/ListPipelineExecutionsCommand"; | ||
@@ -66,2 +67,3 @@ import { ListPipelinesCommand, } from "./commands/ListPipelinesCommand"; | ||
ListActionTypesCommand, | ||
ListDeployActionExecutionTargetsCommand, | ||
ListPipelineExecutionsCommand, | ||
@@ -68,0 +70,0 @@ ListPipelinesCommand, |
@@ -19,2 +19,3 @@ export * from "./AcknowledgeJobCommand"; | ||
export * from "./ListActionTypesCommand"; | ||
export * from "./ListDeployActionExecutionTargetsCommand"; | ||
export * from "./ListPipelineExecutionsCommand"; | ||
@@ -21,0 +22,0 @@ export * from "./ListPipelinesCommand"; |
@@ -93,2 +93,14 @@ import { SENSITIVE_STRING } from "@smithy/smithy-client"; | ||
}; | ||
export class ActionExecutionNotFoundException extends __BaseException { | ||
name = "ActionExecutionNotFoundException"; | ||
$fault = "client"; | ||
constructor(opts) { | ||
super({ | ||
name: "ActionExecutionNotFoundException", | ||
$fault: "client", | ||
...opts, | ||
}); | ||
Object.setPrototypeOf(this, ActionExecutionNotFoundException.prototype); | ||
} | ||
} | ||
export class ActionNotFoundException extends __BaseException { | ||
@@ -431,2 +443,5 @@ name = "ActionNotFoundException"; | ||
} | ||
export const TargetFilterName = { | ||
TARGET_STATUS: "TARGET_STATUS", | ||
}; | ||
export const RuleConfigurationPropertyType = { | ||
@@ -433,0 +448,0 @@ Boolean: "Boolean", |
export * from "./Interfaces"; | ||
export * from "./ListActionExecutionsPaginator"; | ||
export * from "./ListActionTypesPaginator"; | ||
export * from "./ListDeployActionExecutionTargetsPaginator"; | ||
export * from "./ListPipelineExecutionsPaginator"; | ||
@@ -5,0 +6,0 @@ export * from "./ListPipelinesPaginator"; |
@@ -21,2 +21,3 @@ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; | ||
import { ListActionTypesCommandInput, ListActionTypesCommandOutput } from "./commands/ListActionTypesCommand"; | ||
import { ListDeployActionExecutionTargetsCommandInput, ListDeployActionExecutionTargetsCommandOutput } from "./commands/ListDeployActionExecutionTargetsCommand"; | ||
import { ListPipelineExecutionsCommandInput, ListPipelineExecutionsCommandOutput } from "./commands/ListPipelineExecutionsCommand"; | ||
@@ -159,2 +160,8 @@ import { ListPipelinesCommandInput, ListPipelinesCommandOutput } from "./commands/ListPipelinesCommand"; | ||
/** | ||
* @see {@link ListDeployActionExecutionTargetsCommand} | ||
*/ | ||
listDeployActionExecutionTargets(args: ListDeployActionExecutionTargetsCommandInput, options?: __HttpHandlerOptions): Promise<ListDeployActionExecutionTargetsCommandOutput>; | ||
listDeployActionExecutionTargets(args: ListDeployActionExecutionTargetsCommandInput, cb: (err: any, data?: ListDeployActionExecutionTargetsCommandOutput) => void): void; | ||
listDeployActionExecutionTargets(args: ListDeployActionExecutionTargetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListDeployActionExecutionTargetsCommandOutput) => void): void; | ||
/** | ||
* @see {@link ListPipelineExecutionsCommand} | ||
@@ -161,0 +168,0 @@ */ |
@@ -28,2 +28,3 @@ import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header"; | ||
import { ListActionTypesCommandInput, ListActionTypesCommandOutput } from "./commands/ListActionTypesCommand"; | ||
import { ListDeployActionExecutionTargetsCommandInput, ListDeployActionExecutionTargetsCommandOutput } from "./commands/ListDeployActionExecutionTargetsCommand"; | ||
import { ListPipelineExecutionsCommandInput, ListPipelineExecutionsCommandOutput } from "./commands/ListPipelineExecutionsCommand"; | ||
@@ -60,7 +61,7 @@ import { ListPipelinesCommandInput, ListPipelinesCommandOutput } from "./commands/ListPipelinesCommand"; | ||
*/ | ||
export type ServiceInputTypes = AcknowledgeJobCommandInput | AcknowledgeThirdPartyJobCommandInput | CreateCustomActionTypeCommandInput | CreatePipelineCommandInput | DeleteCustomActionTypeCommandInput | DeletePipelineCommandInput | DeleteWebhookCommandInput | DeregisterWebhookWithThirdPartyCommandInput | DisableStageTransitionCommandInput | EnableStageTransitionCommandInput | GetActionTypeCommandInput | GetJobDetailsCommandInput | GetPipelineCommandInput | GetPipelineExecutionCommandInput | GetPipelineStateCommandInput | GetThirdPartyJobDetailsCommandInput | ListActionExecutionsCommandInput | ListActionTypesCommandInput | ListPipelineExecutionsCommandInput | ListPipelinesCommandInput | ListRuleExecutionsCommandInput | ListRuleTypesCommandInput | ListTagsForResourceCommandInput | ListWebhooksCommandInput | OverrideStageConditionCommandInput | PollForJobsCommandInput | PollForThirdPartyJobsCommandInput | PutActionRevisionCommandInput | PutApprovalResultCommandInput | PutJobFailureResultCommandInput | PutJobSuccessResultCommandInput | PutThirdPartyJobFailureResultCommandInput | PutThirdPartyJobSuccessResultCommandInput | PutWebhookCommandInput | RegisterWebhookWithThirdPartyCommandInput | RetryStageExecutionCommandInput | RollbackStageCommandInput | StartPipelineExecutionCommandInput | StopPipelineExecutionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateActionTypeCommandInput | UpdatePipelineCommandInput; | ||
export type ServiceInputTypes = AcknowledgeJobCommandInput | AcknowledgeThirdPartyJobCommandInput | CreateCustomActionTypeCommandInput | CreatePipelineCommandInput | DeleteCustomActionTypeCommandInput | DeletePipelineCommandInput | DeleteWebhookCommandInput | DeregisterWebhookWithThirdPartyCommandInput | DisableStageTransitionCommandInput | EnableStageTransitionCommandInput | GetActionTypeCommandInput | GetJobDetailsCommandInput | GetPipelineCommandInput | GetPipelineExecutionCommandInput | GetPipelineStateCommandInput | GetThirdPartyJobDetailsCommandInput | ListActionExecutionsCommandInput | ListActionTypesCommandInput | ListDeployActionExecutionTargetsCommandInput | ListPipelineExecutionsCommandInput | ListPipelinesCommandInput | ListRuleExecutionsCommandInput | ListRuleTypesCommandInput | ListTagsForResourceCommandInput | ListWebhooksCommandInput | OverrideStageConditionCommandInput | PollForJobsCommandInput | PollForThirdPartyJobsCommandInput | PutActionRevisionCommandInput | PutApprovalResultCommandInput | PutJobFailureResultCommandInput | PutJobSuccessResultCommandInput | PutThirdPartyJobFailureResultCommandInput | PutThirdPartyJobSuccessResultCommandInput | PutWebhookCommandInput | RegisterWebhookWithThirdPartyCommandInput | RetryStageExecutionCommandInput | RollbackStageCommandInput | StartPipelineExecutionCommandInput | StopPipelineExecutionCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateActionTypeCommandInput | UpdatePipelineCommandInput; | ||
/** | ||
* @public | ||
*/ | ||
export type ServiceOutputTypes = AcknowledgeJobCommandOutput | AcknowledgeThirdPartyJobCommandOutput | CreateCustomActionTypeCommandOutput | CreatePipelineCommandOutput | DeleteCustomActionTypeCommandOutput | DeletePipelineCommandOutput | DeleteWebhookCommandOutput | DeregisterWebhookWithThirdPartyCommandOutput | DisableStageTransitionCommandOutput | EnableStageTransitionCommandOutput | GetActionTypeCommandOutput | GetJobDetailsCommandOutput | GetPipelineCommandOutput | GetPipelineExecutionCommandOutput | GetPipelineStateCommandOutput | GetThirdPartyJobDetailsCommandOutput | ListActionExecutionsCommandOutput | ListActionTypesCommandOutput | ListPipelineExecutionsCommandOutput | ListPipelinesCommandOutput | ListRuleExecutionsCommandOutput | ListRuleTypesCommandOutput | ListTagsForResourceCommandOutput | ListWebhooksCommandOutput | OverrideStageConditionCommandOutput | PollForJobsCommandOutput | PollForThirdPartyJobsCommandOutput | PutActionRevisionCommandOutput | PutApprovalResultCommandOutput | PutJobFailureResultCommandOutput | PutJobSuccessResultCommandOutput | PutThirdPartyJobFailureResultCommandOutput | PutThirdPartyJobSuccessResultCommandOutput | PutWebhookCommandOutput | RegisterWebhookWithThirdPartyCommandOutput | RetryStageExecutionCommandOutput | RollbackStageCommandOutput | StartPipelineExecutionCommandOutput | StopPipelineExecutionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateActionTypeCommandOutput | UpdatePipelineCommandOutput; | ||
export type ServiceOutputTypes = AcknowledgeJobCommandOutput | AcknowledgeThirdPartyJobCommandOutput | CreateCustomActionTypeCommandOutput | CreatePipelineCommandOutput | DeleteCustomActionTypeCommandOutput | DeletePipelineCommandOutput | DeleteWebhookCommandOutput | DeregisterWebhookWithThirdPartyCommandOutput | DisableStageTransitionCommandOutput | EnableStageTransitionCommandOutput | GetActionTypeCommandOutput | GetJobDetailsCommandOutput | GetPipelineCommandOutput | GetPipelineExecutionCommandOutput | GetPipelineStateCommandOutput | GetThirdPartyJobDetailsCommandOutput | ListActionExecutionsCommandOutput | ListActionTypesCommandOutput | ListDeployActionExecutionTargetsCommandOutput | ListPipelineExecutionsCommandOutput | ListPipelinesCommandOutput | ListRuleExecutionsCommandOutput | ListRuleTypesCommandOutput | ListTagsForResourceCommandOutput | ListWebhooksCommandOutput | OverrideStageConditionCommandOutput | PollForJobsCommandOutput | PollForThirdPartyJobsCommandOutput | PutActionRevisionCommandOutput | PutApprovalResultCommandOutput | PutJobFailureResultCommandOutput | PutJobSuccessResultCommandOutput | PutThirdPartyJobFailureResultCommandOutput | PutThirdPartyJobSuccessResultCommandOutput | PutWebhookCommandOutput | RegisterWebhookWithThirdPartyCommandOutput | RetryStageExecutionCommandOutput | RollbackStageCommandOutput | StartPipelineExecutionCommandOutput | StopPipelineExecutionCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateActionTypeCommandOutput | UpdatePipelineCommandOutput; | ||
/** | ||
@@ -67,0 +68,0 @@ * @public |
@@ -19,2 +19,3 @@ export * from "./AcknowledgeJobCommand"; | ||
export * from "./ListActionTypesCommand"; | ||
export * from "./ListDeployActionExecutionTargetsCommand"; | ||
export * from "./ListPipelineExecutionsCommand"; | ||
@@ -21,0 +22,0 @@ export * from "./ListPipelinesCommand"; |
export * from "./Interfaces"; | ||
export * from "./ListActionExecutionsPaginator"; | ||
export * from "./ListActionTypesPaginator"; | ||
export * from "./ListDeployActionExecutionTargetsPaginator"; | ||
export * from "./ListPipelineExecutionsPaginator"; | ||
@@ -5,0 +6,0 @@ export * from "./ListPipelinesPaginator"; |
@@ -21,2 +21,3 @@ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http"; | ||
import { ListActionTypesCommandInput, ListActionTypesCommandOutput } from "../commands/ListActionTypesCommand"; | ||
import { ListDeployActionExecutionTargetsCommandInput, ListDeployActionExecutionTargetsCommandOutput } from "../commands/ListDeployActionExecutionTargetsCommand"; | ||
import { ListPipelineExecutionsCommandInput, ListPipelineExecutionsCommandOutput } from "../commands/ListPipelineExecutionsCommand"; | ||
@@ -120,2 +121,6 @@ import { ListPipelinesCommandInput, ListPipelinesCommandOutput } from "../commands/ListPipelinesCommand"; | ||
/** | ||
* serializeAws_json1_1ListDeployActionExecutionTargetsCommand | ||
*/ | ||
export declare const se_ListDeployActionExecutionTargetsCommand: (input: ListDeployActionExecutionTargetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>; | ||
/** | ||
* serializeAws_json1_1ListPipelineExecutionsCommand | ||
@@ -293,2 +298,6 @@ */ | ||
/** | ||
* deserializeAws_json1_1ListDeployActionExecutionTargetsCommand | ||
*/ | ||
export declare const de_ListDeployActionExecutionTargetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListDeployActionExecutionTargetsCommandOutput>; | ||
/** | ||
* deserializeAws_json1_1ListPipelineExecutionsCommand | ||
@@ -295,0 +304,0 @@ */ |
@@ -76,2 +76,6 @@ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types"; | ||
import { | ||
ListDeployActionExecutionTargetsCommandInput, | ||
ListDeployActionExecutionTargetsCommandOutput, | ||
} from "./commands/ListDeployActionExecutionTargetsCommand"; | ||
import { | ||
ListPipelineExecutionsCommandInput, | ||
@@ -413,2 +417,15 @@ ListPipelineExecutionsCommandOutput, | ||
): void; | ||
listDeployActionExecutionTargets( | ||
args: ListDeployActionExecutionTargetsCommandInput, | ||
options?: __HttpHandlerOptions | ||
): Promise<ListDeployActionExecutionTargetsCommandOutput>; | ||
listDeployActionExecutionTargets( | ||
args: ListDeployActionExecutionTargetsCommandInput, | ||
cb: (err: any, data?: ListDeployActionExecutionTargetsCommandOutput) => void | ||
): void; | ||
listDeployActionExecutionTargets( | ||
args: ListDeployActionExecutionTargetsCommandInput, | ||
options: __HttpHandlerOptions, | ||
cb: (err: any, data?: ListDeployActionExecutionTargetsCommandOutput) => void | ||
): void; | ||
listPipelineExecutions( | ||
@@ -415,0 +432,0 @@ args: ListPipelineExecutionsCommandInput, |
@@ -121,2 +121,6 @@ import { | ||
import { | ||
ListDeployActionExecutionTargetsCommandInput, | ||
ListDeployActionExecutionTargetsCommandOutput, | ||
} from "./commands/ListDeployActionExecutionTargetsCommand"; | ||
import { | ||
ListPipelineExecutionsCommandInput, | ||
@@ -247,2 +251,3 @@ ListPipelineExecutionsCommandOutput, | ||
| ListActionTypesCommandInput | ||
| ListDeployActionExecutionTargetsCommandInput | ||
| ListPipelineExecutionsCommandInput | ||
@@ -292,2 +297,3 @@ | ListPipelinesCommandInput | ||
| ListActionTypesCommandOutput | ||
| ListDeployActionExecutionTargetsCommandOutput | ||
| ListPipelineExecutionsCommandOutput | ||
@@ -294,0 +300,0 @@ | ListPipelinesCommandOutput |
@@ -19,2 +19,3 @@ export * from "./AcknowledgeJobCommand"; | ||
export * from "./ListActionTypesCommand"; | ||
export * from "./ListDeployActionExecutionTargetsCommand"; | ||
export * from "./ListPipelineExecutionsCommand"; | ||
@@ -21,0 +22,0 @@ export * from "./ListPipelinesCommand"; |
@@ -216,2 +216,12 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client"; | ||
} | ||
export declare class ActionExecutionNotFoundException extends __BaseException { | ||
readonly name: "ActionExecutionNotFoundException"; | ||
readonly $fault: "client"; | ||
constructor( | ||
opts: __ExceptionOptionType< | ||
ActionExecutionNotFoundException, | ||
__BaseException | ||
> | ||
); | ||
} | ||
export declare class ActionNotFoundException extends __BaseException { | ||
@@ -987,2 +997,41 @@ readonly name: "ActionNotFoundException"; | ||
} | ||
export declare const TargetFilterName: { | ||
readonly TARGET_STATUS: "TARGET_STATUS"; | ||
}; | ||
export type TargetFilterName = | ||
(typeof TargetFilterName)[keyof typeof TargetFilterName]; | ||
export interface TargetFilter { | ||
name?: TargetFilterName | undefined; | ||
values?: string[] | undefined; | ||
} | ||
export interface ListDeployActionExecutionTargetsInput { | ||
pipelineName?: string | undefined; | ||
actionExecutionId: string | undefined; | ||
filters?: TargetFilter[] | undefined; | ||
maxResults?: number | undefined; | ||
nextToken?: string | undefined; | ||
} | ||
export interface DeployTargetEventContext { | ||
ssmCommandId?: string | undefined; | ||
message?: string | undefined; | ||
} | ||
export interface DeployTargetEvent { | ||
name?: string | undefined; | ||
status?: string | undefined; | ||
startTime?: Date | undefined; | ||
endTime?: Date | undefined; | ||
context?: DeployTargetEventContext | undefined; | ||
} | ||
export interface DeployActionExecutionTarget { | ||
targetId?: string | undefined; | ||
targetType?: string | undefined; | ||
status?: string | undefined; | ||
startTime?: Date | undefined; | ||
endTime?: Date | undefined; | ||
events?: DeployTargetEvent[] | undefined; | ||
} | ||
export interface ListDeployActionExecutionTargetsOutput { | ||
targets?: DeployActionExecutionTarget[] | undefined; | ||
nextToken?: string | undefined; | ||
} | ||
export interface SucceededInStageFilter { | ||
@@ -989,0 +1038,0 @@ stageName?: string | undefined; |
export * from "./Interfaces"; | ||
export * from "./ListActionExecutionsPaginator"; | ||
export * from "./ListActionTypesPaginator"; | ||
export * from "./ListDeployActionExecutionTargetsPaginator"; | ||
export * from "./ListPipelineExecutionsPaginator"; | ||
@@ -5,0 +6,0 @@ export * from "./ListPipelinesPaginator"; |
@@ -79,2 +79,6 @@ import { | ||
import { | ||
ListDeployActionExecutionTargetsCommandInput, | ||
ListDeployActionExecutionTargetsCommandOutput, | ||
} from "../commands/ListDeployActionExecutionTargetsCommand"; | ||
import { | ||
ListPipelineExecutionsCommandInput, | ||
@@ -251,2 +255,6 @@ ListPipelineExecutionsCommandOutput, | ||
) => Promise<__HttpRequest>; | ||
export declare const se_ListDeployActionExecutionTargetsCommand: ( | ||
input: ListDeployActionExecutionTargetsCommandInput, | ||
context: __SerdeContext | ||
) => Promise<__HttpRequest>; | ||
export declare const se_ListPipelineExecutionsCommand: ( | ||
@@ -424,2 +432,6 @@ input: ListPipelineExecutionsCommandInput, | ||
) => Promise<ListActionTypesCommandOutput>; | ||
export declare const de_ListDeployActionExecutionTargetsCommand: ( | ||
output: __HttpResponse, | ||
context: __SerdeContext | ||
) => Promise<ListDeployActionExecutionTargetsCommandOutput>; | ||
export declare const de_ListPipelineExecutionsCommand: ( | ||
@@ -426,0 +438,0 @@ output: __HttpResponse, |
{ | ||
"name": "@aws-sdk/client-codepipeline", | ||
"description": "AWS SDK for JavaScript Codepipeline Client for Node.js, Browser and React Native", | ||
"version": "3.810.0", | ||
"version": "3.812.0", | ||
"scripts": { | ||
@@ -23,8 +23,8 @@ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'", | ||
"@aws-crypto/sha256-js": "5.2.0", | ||
"@aws-sdk/core": "3.810.0", | ||
"@aws-sdk/credential-provider-node": "3.810.0", | ||
"@aws-sdk/core": "3.812.0", | ||
"@aws-sdk/credential-provider-node": "3.812.0", | ||
"@aws-sdk/middleware-host-header": "3.804.0", | ||
"@aws-sdk/middleware-logger": "3.804.0", | ||
"@aws-sdk/middleware-recursion-detection": "3.804.0", | ||
"@aws-sdk/middleware-user-agent": "3.810.0", | ||
"@aws-sdk/middleware-user-agent": "3.812.0", | ||
"@aws-sdk/region-config-resolver": "3.808.0", | ||
@@ -34,3 +34,3 @@ "@aws-sdk/types": "3.804.0", | ||
"@aws-sdk/util-user-agent-browser": "3.804.0", | ||
"@aws-sdk/util-user-agent-node": "3.810.0", | ||
"@aws-sdk/util-user-agent-node": "3.812.0", | ||
"@smithy/config-resolver": "^4.1.2", | ||
@@ -37,0 +37,0 @@ "@smithy/core": "^3.3.3", |
@@ -549,2 +549,10 @@ <!-- generated file, do not edit directly --> | ||
<summary> | ||
ListDeployActionExecutionTargets | ||
</summary> | ||
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/codepipeline/command/ListDeployActionExecutionTargetsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-codepipeline/Interface/ListDeployActionExecutionTargetsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-codepipeline/Interface/ListDeployActionExecutionTargetsCommandOutput/) | ||
</details> | ||
<details> | ||
<summary> | ||
ListPipelineExecutions | ||
@@ -551,0 +559,0 @@ </summary> |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
1174984
2.53%230
2.68%28105
2.52%755
1.07%+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
- Removed
Updated