@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.
Files changed (46) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/index.js +386 -89
  3. package/dist-es/CodePipeline.js +6 -0
  4. package/dist-es/CodePipelineClient.js +12 -18
  5. package/dist-es/commands/ListRuleExecutionsCommand.js +24 -0
  6. package/dist-es/commands/ListRuleTypesCommand.js +24 -0
  7. package/dist-es/commands/OverrideStageConditionCommand.js +24 -0
  8. package/dist-es/commands/index.js +3 -0
  9. package/dist-es/models/models_0.js +82 -39
  10. package/dist-es/pagination/ListRuleExecutionsPaginator.js +4 -0
  11. package/dist-es/pagination/index.js +1 -0
  12. package/dist-es/protocols/Aws_json1_1.js +198 -14
  13. package/dist-types/CodePipeline.d.ts +22 -0
  14. package/dist-types/CodePipelineClient.d.ts +7 -6
  15. package/dist-types/auth/httpAuthSchemeProvider.d.ts +4 -4
  16. package/dist-types/commands/CreatePipelineCommand.d.ts +172 -2
  17. package/dist-types/commands/GetPipelineCommand.d.ts +86 -1
  18. package/dist-types/commands/GetPipelineStateCommand.d.ts +123 -0
  19. package/dist-types/commands/ListRuleExecutionsCommand.d.ts +132 -0
  20. package/dist-types/commands/ListRuleTypesCommand.d.ts +98 -0
  21. package/dist-types/commands/OverrideStageConditionCommand.d.ts +85 -0
  22. package/dist-types/commands/PutActionRevisionCommand.d.ts +3 -0
  23. package/dist-types/commands/RetryStageExecutionCommand.d.ts +3 -0
  24. package/dist-types/commands/UpdatePipelineCommand.d.ts +172 -2
  25. package/dist-types/commands/index.d.ts +3 -0
  26. package/dist-types/models/models_0.d.ts +1019 -222
  27. package/dist-types/pagination/ListRuleExecutionsPaginator.d.ts +7 -0
  28. package/dist-types/pagination/index.d.ts +1 -0
  29. package/dist-types/protocols/Aws_json1_1.d.ts +27 -0
  30. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  31. package/dist-types/runtimeConfig.d.ts +2 -2
  32. package/dist-types/runtimeConfig.native.d.ts +2 -2
  33. package/dist-types/ts3.4/CodePipeline.d.ts +52 -0
  34. package/dist-types/ts3.4/CodePipelineClient.d.ts +24 -8
  35. package/dist-types/ts3.4/commands/ListRuleExecutionsCommand.d.ts +40 -0
  36. package/dist-types/ts3.4/commands/ListRuleTypesCommand.d.ts +36 -0
  37. package/dist-types/ts3.4/commands/OverrideStageConditionCommand.d.ts +35 -0
  38. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  39. package/dist-types/ts3.4/models/models_0.d.ts +228 -29
  40. package/dist-types/ts3.4/pagination/ListRuleExecutionsPaginator.d.ts +11 -0
  41. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  42. package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +36 -0
  43. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -5
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +5 -5
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +5 -5
  46. package/package.json +11 -11
@@ -367,6 +367,41 @@ export interface AWSSessionCredentials {
367
367
  secretAccessKey: string | undefined;
368
368
  sessionToken: string | undefined;
369
369
  }
370
+ export declare const Result: {
371
+ readonly FAIL: "FAIL";
372
+ readonly ROLLBACK: "ROLLBACK";
373
+ };
374
+ export type Result = (typeof Result)[keyof typeof Result];
375
+ export declare const RuleCategory: {
376
+ readonly Rule: "Rule";
377
+ };
378
+ export type RuleCategory = (typeof RuleCategory)[keyof typeof RuleCategory];
379
+ export declare const RuleOwner: {
380
+ readonly AWS: "AWS";
381
+ };
382
+ export type RuleOwner = (typeof RuleOwner)[keyof typeof RuleOwner];
383
+ export interface RuleTypeId {
384
+ category: RuleCategory | undefined;
385
+ owner?: RuleOwner;
386
+ provider: string | undefined;
387
+ version?: string;
388
+ }
389
+ export interface RuleDeclaration {
390
+ name: string | undefined;
391
+ ruleTypeId: RuleTypeId | undefined;
392
+ configuration?: Record<string, string>;
393
+ inputArtifacts?: InputArtifact[];
394
+ roleArn?: string;
395
+ region?: string;
396
+ timeoutInMinutes?: number;
397
+ }
398
+ export interface Condition {
399
+ result?: Result;
400
+ rules?: RuleDeclaration[];
401
+ }
402
+ export interface BeforeEntryConditions {
403
+ conditions: Condition[] | undefined;
404
+ }
370
405
  export declare const BlockerType: {
371
406
  readonly Schedule: "Schedule";
372
407
  };
@@ -435,18 +470,20 @@ export declare const PipelineType: {
435
470
  readonly V2: "V2";
436
471
  };
437
472
  export type PipelineType = (typeof PipelineType)[keyof typeof PipelineType];
438
- export declare const Result: {
439
- readonly ROLLBACK: "ROLLBACK";
440
- };
441
- export type Result = (typeof Result)[keyof typeof Result];
442
473
  export interface FailureConditions {
443
474
  result?: Result;
475
+ conditions?: Condition[];
476
+ }
477
+ export interface SuccessConditions {
478
+ conditions: Condition[] | undefined;
444
479
  }
445
480
  export interface StageDeclaration {
446
481
  name: string | undefined;
447
482
  blockers?: BlockerDeclaration[];
448
483
  actions: ActionDeclaration[] | undefined;
449
484
  onFailure?: FailureConditions;
485
+ onSuccess?: SuccessConditions;
486
+ beforeEntry?: BeforeEntryConditions;
450
487
  }
451
488
  export interface GitBranchFilterCriteria {
452
489
  includes?: string[];
@@ -750,6 +787,65 @@ export declare class PipelineExecutionNotFoundException extends __BaseException
750
787
  export interface GetPipelineStateInput {
751
788
  name: string | undefined;
752
789
  }
790
+ export declare const ConditionExecutionStatus: {
791
+ readonly Abandoned: "Abandoned";
792
+ readonly Cancelled: "Cancelled";
793
+ readonly Errored: "Errored";
794
+ readonly Failed: "Failed";
795
+ readonly InProgress: "InProgress";
796
+ readonly Overridden: "Overridden";
797
+ readonly Succeeded: "Succeeded";
798
+ };
799
+ export type ConditionExecutionStatus =
800
+ (typeof ConditionExecutionStatus)[keyof typeof ConditionExecutionStatus];
801
+ export interface ConditionExecution {
802
+ status?: ConditionExecutionStatus;
803
+ summary?: string;
804
+ lastStatusChange?: Date;
805
+ }
806
+ export interface RuleRevision {
807
+ revisionId: string | undefined;
808
+ revisionChangeId: string | undefined;
809
+ created: Date | undefined;
810
+ }
811
+ export declare const RuleExecutionStatus: {
812
+ readonly Abandoned: "Abandoned";
813
+ readonly Failed: "Failed";
814
+ readonly InProgress: "InProgress";
815
+ readonly Succeeded: "Succeeded";
816
+ };
817
+ export type RuleExecutionStatus =
818
+ (typeof RuleExecutionStatus)[keyof typeof RuleExecutionStatus];
819
+ export interface RuleExecution {
820
+ ruleExecutionId?: string;
821
+ status?: RuleExecutionStatus;
822
+ summary?: string;
823
+ lastStatusChange?: Date;
824
+ token?: string;
825
+ lastUpdatedBy?: string;
826
+ externalExecutionId?: string;
827
+ externalExecutionUrl?: string;
828
+ errorDetails?: ErrorDetails;
829
+ }
830
+ export interface RuleState {
831
+ ruleName?: string;
832
+ currentRevision?: RuleRevision;
833
+ latestExecution?: RuleExecution;
834
+ entityUrl?: string;
835
+ revisionUrl?: string;
836
+ }
837
+ export interface ConditionState {
838
+ latestExecution?: ConditionExecution;
839
+ ruleStates?: RuleState[];
840
+ }
841
+ export interface StageConditionsExecution {
842
+ status?: ConditionExecutionStatus;
843
+ summary?: string;
844
+ }
845
+ export interface StageConditionState {
846
+ latestExecution?: StageConditionsExecution;
847
+ conditionStates?: ConditionState[];
848
+ }
753
849
  export declare const StageExecutionStatus: {
754
850
  readonly Cancelled: "Cancelled";
755
851
  readonly Failed: "Failed";
@@ -778,6 +874,9 @@ export interface StageState {
778
874
  inboundTransitionState?: TransitionState;
779
875
  actionStates?: ActionState[];
780
876
  latestExecution?: StageExecution;
877
+ beforeEntryConditionState?: StageConditionState;
878
+ onSuccessConditionState?: StageConditionState;
879
+ onFailureConditionState?: StageConditionState;
781
880
  }
782
881
  export interface GetPipelineStateOutput {
783
882
  pipelineName?: string;
@@ -895,6 +994,85 @@ export interface ListPipelinesOutput {
895
994
  pipelines?: PipelineSummary[];
896
995
  nextToken?: string;
897
996
  }
997
+ export interface RuleExecutionFilter {
998
+ pipelineExecutionId?: string;
999
+ latestInPipelineExecution?: LatestInPipelineExecutionFilter;
1000
+ }
1001
+ export interface ListRuleExecutionsInput {
1002
+ pipelineName: string | undefined;
1003
+ filter?: RuleExecutionFilter;
1004
+ maxResults?: number;
1005
+ nextToken?: string;
1006
+ }
1007
+ export interface RuleExecutionInput {
1008
+ ruleTypeId?: RuleTypeId;
1009
+ configuration?: Record<string, string>;
1010
+ resolvedConfiguration?: Record<string, string>;
1011
+ roleArn?: string;
1012
+ region?: string;
1013
+ inputArtifacts?: ArtifactDetail[];
1014
+ }
1015
+ export interface RuleExecutionResult {
1016
+ externalExecutionId?: string;
1017
+ externalExecutionSummary?: string;
1018
+ externalExecutionUrl?: string;
1019
+ errorDetails?: ErrorDetails;
1020
+ }
1021
+ export interface RuleExecutionOutput {
1022
+ executionResult?: RuleExecutionResult;
1023
+ }
1024
+ export interface RuleExecutionDetail {
1025
+ pipelineExecutionId?: string;
1026
+ ruleExecutionId?: string;
1027
+ pipelineVersion?: number;
1028
+ stageName?: string;
1029
+ ruleName?: string;
1030
+ startTime?: Date;
1031
+ lastUpdateTime?: Date;
1032
+ updatedBy?: string;
1033
+ status?: RuleExecutionStatus;
1034
+ input?: RuleExecutionInput;
1035
+ output?: RuleExecutionOutput;
1036
+ }
1037
+ export interface ListRuleExecutionsOutput {
1038
+ ruleExecutionDetails?: RuleExecutionDetail[];
1039
+ nextToken?: string;
1040
+ }
1041
+ export interface ListRuleTypesInput {
1042
+ ruleOwnerFilter?: RuleOwner;
1043
+ regionFilter?: string;
1044
+ }
1045
+ export declare const RuleConfigurationPropertyType: {
1046
+ readonly Boolean: "Boolean";
1047
+ readonly Number: "Number";
1048
+ readonly String: "String";
1049
+ };
1050
+ export type RuleConfigurationPropertyType =
1051
+ (typeof RuleConfigurationPropertyType)[keyof typeof RuleConfigurationPropertyType];
1052
+ export interface RuleConfigurationProperty {
1053
+ name: string | undefined;
1054
+ required: boolean | undefined;
1055
+ key: boolean | undefined;
1056
+ secret: boolean | undefined;
1057
+ queryable?: boolean;
1058
+ description?: string;
1059
+ type?: RuleConfigurationPropertyType;
1060
+ }
1061
+ export interface RuleTypeSettings {
1062
+ thirdPartyConfigurationUrl?: string;
1063
+ entityUrlTemplate?: string;
1064
+ executionUrlTemplate?: string;
1065
+ revisionUrlTemplate?: string;
1066
+ }
1067
+ export interface RuleType {
1068
+ id: RuleTypeId | undefined;
1069
+ settings?: RuleTypeSettings;
1070
+ ruleConfigurationProperties?: RuleConfigurationProperty[];
1071
+ inputArtifactDetails: ArtifactDetails | undefined;
1072
+ }
1073
+ export interface ListRuleTypesOutput {
1074
+ ruleTypes: RuleType[] | undefined;
1075
+ }
898
1076
  export declare class InvalidArnException extends __BaseException {
899
1077
  readonly name: "InvalidArnException";
900
1078
  readonly $fault: "client";
@@ -958,6 +1136,52 @@ export interface ListWebhooksOutput {
958
1136
  webhooks?: ListWebhookItem[];
959
1137
  NextToken?: string;
960
1138
  }
1139
+ export declare class ConcurrentPipelineExecutionsLimitExceededException extends __BaseException {
1140
+ readonly name: "ConcurrentPipelineExecutionsLimitExceededException";
1141
+ readonly $fault: "client";
1142
+ constructor(
1143
+ opts: __ExceptionOptionType<
1144
+ ConcurrentPipelineExecutionsLimitExceededException,
1145
+ __BaseException
1146
+ >
1147
+ );
1148
+ }
1149
+ export declare class ConditionNotOverridableException extends __BaseException {
1150
+ readonly name: "ConditionNotOverridableException";
1151
+ readonly $fault: "client";
1152
+ constructor(
1153
+ opts: __ExceptionOptionType<
1154
+ ConditionNotOverridableException,
1155
+ __BaseException
1156
+ >
1157
+ );
1158
+ }
1159
+ export declare class ConflictException extends __BaseException {
1160
+ readonly name: "ConflictException";
1161
+ readonly $fault: "client";
1162
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
1163
+ }
1164
+ export declare class NotLatestPipelineExecutionException extends __BaseException {
1165
+ readonly name: "NotLatestPipelineExecutionException";
1166
+ readonly $fault: "client";
1167
+ constructor(
1168
+ opts: __ExceptionOptionType<
1169
+ NotLatestPipelineExecutionException,
1170
+ __BaseException
1171
+ >
1172
+ );
1173
+ }
1174
+ export declare const ConditionType: {
1175
+ readonly BEFORE_ENTRY: "BEFORE_ENTRY";
1176
+ readonly ON_SUCCESS: "ON_SUCCESS";
1177
+ };
1178
+ export type ConditionType = (typeof ConditionType)[keyof typeof ConditionType];
1179
+ export interface OverrideStageConditionInput {
1180
+ pipelineName: string | undefined;
1181
+ stageName: string | undefined;
1182
+ pipelineExecutionId: string | undefined;
1183
+ conditionType: ConditionType | undefined;
1184
+ }
961
1185
  export interface PollForJobsInput {
962
1186
  actionTypeId: ActionTypeId | undefined;
963
1187
  maxBatchSize?: number;
@@ -1106,21 +1330,6 @@ export interface RegisterWebhookWithThirdPartyInput {
1106
1330
  webhookName?: string;
1107
1331
  }
1108
1332
  export interface RegisterWebhookWithThirdPartyOutput {}
1109
- export declare class ConflictException extends __BaseException {
1110
- readonly name: "ConflictException";
1111
- readonly $fault: "client";
1112
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
1113
- }
1114
- export declare class NotLatestPipelineExecutionException extends __BaseException {
1115
- readonly name: "NotLatestPipelineExecutionException";
1116
- readonly $fault: "client";
1117
- constructor(
1118
- opts: __ExceptionOptionType<
1119
- NotLatestPipelineExecutionException,
1120
- __BaseException
1121
- >
1122
- );
1123
- }
1124
1333
  export declare const StageRetryMode: {
1125
1334
  readonly ALL_ACTIONS: "ALL_ACTIONS";
1126
1335
  readonly FAILED_ACTIONS: "FAILED_ACTIONS";
@@ -1168,16 +1377,6 @@ export declare class UnableToRollbackStageException extends __BaseException {
1168
1377
  opts: __ExceptionOptionType<UnableToRollbackStageException, __BaseException>
1169
1378
  );
1170
1379
  }
1171
- export declare class ConcurrentPipelineExecutionsLimitExceededException extends __BaseException {
1172
- readonly name: "ConcurrentPipelineExecutionsLimitExceededException";
1173
- readonly $fault: "client";
1174
- constructor(
1175
- opts: __ExceptionOptionType<
1176
- ConcurrentPipelineExecutionsLimitExceededException,
1177
- __BaseException
1178
- >
1179
- );
1180
- }
1181
1380
  export declare const SourceRevisionType: {
1182
1381
  readonly COMMIT_ID: "COMMIT_ID";
1183
1382
  readonly IMAGE_DIGEST: "IMAGE_DIGEST";
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ ListRuleExecutionsCommandInput,
4
+ ListRuleExecutionsCommandOutput,
5
+ } from "../commands/ListRuleExecutionsCommand";
6
+ import { CodePipelinePaginationConfiguration } from "./Interfaces";
7
+ export declare const paginateListRuleExecutions: (
8
+ config: CodePipelinePaginationConfiguration,
9
+ input: ListRuleExecutionsCommandInput,
10
+ ...rest: any[]
11
+ ) => 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";
@@ -83,6 +83,14 @@ import {
83
83
  ListPipelinesCommandInput,
84
84
  ListPipelinesCommandOutput,
85
85
  } from "../commands/ListPipelinesCommand";
86
+ import {
87
+ ListRuleExecutionsCommandInput,
88
+ ListRuleExecutionsCommandOutput,
89
+ } from "../commands/ListRuleExecutionsCommand";
90
+ import {
91
+ ListRuleTypesCommandInput,
92
+ ListRuleTypesCommandOutput,
93
+ } from "../commands/ListRuleTypesCommand";
86
94
  import {
87
95
  ListTagsForResourceCommandInput,
88
96
  ListTagsForResourceCommandOutput,
@@ -91,6 +99,10 @@ import {
91
99
  ListWebhooksCommandInput,
92
100
  ListWebhooksCommandOutput,
93
101
  } from "../commands/ListWebhooksCommand";
102
+ import {
103
+ OverrideStageConditionCommandInput,
104
+ OverrideStageConditionCommandOutput,
105
+ } from "../commands/OverrideStageConditionCommand";
94
106
  import {
95
107
  PollForJobsCommandInput,
96
108
  PollForJobsCommandOutput,
@@ -243,6 +255,14 @@ export declare const se_ListPipelinesCommand: (
243
255
  input: ListPipelinesCommandInput,
244
256
  context: __SerdeContext
245
257
  ) => Promise<__HttpRequest>;
258
+ export declare const se_ListRuleExecutionsCommand: (
259
+ input: ListRuleExecutionsCommandInput,
260
+ context: __SerdeContext
261
+ ) => Promise<__HttpRequest>;
262
+ export declare const se_ListRuleTypesCommand: (
263
+ input: ListRuleTypesCommandInput,
264
+ context: __SerdeContext
265
+ ) => Promise<__HttpRequest>;
246
266
  export declare const se_ListTagsForResourceCommand: (
247
267
  input: ListTagsForResourceCommandInput,
248
268
  context: __SerdeContext
@@ -251,6 +271,10 @@ export declare const se_ListWebhooksCommand: (
251
271
  input: ListWebhooksCommandInput,
252
272
  context: __SerdeContext
253
273
  ) => Promise<__HttpRequest>;
274
+ export declare const se_OverrideStageConditionCommand: (
275
+ input: OverrideStageConditionCommandInput,
276
+ context: __SerdeContext
277
+ ) => Promise<__HttpRequest>;
254
278
  export declare const se_PollForJobsCommand: (
255
279
  input: PollForJobsCommandInput,
256
280
  context: __SerdeContext
@@ -403,6 +427,14 @@ export declare const de_ListPipelinesCommand: (
403
427
  output: __HttpResponse,
404
428
  context: __SerdeContext
405
429
  ) => Promise<ListPipelinesCommandOutput>;
430
+ export declare const de_ListRuleExecutionsCommand: (
431
+ output: __HttpResponse,
432
+ context: __SerdeContext
433
+ ) => Promise<ListRuleExecutionsCommandOutput>;
434
+ export declare const de_ListRuleTypesCommand: (
435
+ output: __HttpResponse,
436
+ context: __SerdeContext
437
+ ) => Promise<ListRuleTypesCommandOutput>;
406
438
  export declare const de_ListTagsForResourceCommand: (
407
439
  output: __HttpResponse,
408
440
  context: __SerdeContext
@@ -411,6 +443,10 @@ export declare const de_ListWebhooksCommand: (
411
443
  output: __HttpResponse,
412
444
  context: __SerdeContext
413
445
  ) => Promise<ListWebhooksCommandOutput>;
446
+ export declare const de_OverrideStageConditionCommand: (
447
+ output: __HttpResponse,
448
+ context: __SerdeContext
449
+ ) => Promise<OverrideStageConditionCommandOutput>;
414
450
  export declare const de_PollForJobsCommand: (
415
451
  output: __HttpResponse,
416
452
  context: __SerdeContext
@@ -32,6 +32,11 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
32
32
  serviceId: string;
33
33
  logger: import("@smithy/types").Logger;
34
34
  extensions: import("./runtimeExtensions").RuntimeExtension[];
35
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
36
+ retryStrategy?:
37
+ | import("@smithy/types").RetryStrategy
38
+ | import("@smithy/types").RetryStrategyV2
39
+ | undefined;
35
40
  endpoint?:
36
41
  | ((
37
42
  | string
@@ -56,11 +61,6 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
56
61
  }
57
62
  ) => import("@smithy/types").EndpointV2;
58
63
  tls?: boolean | undefined;
59
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
60
- retryStrategy?:
61
- | import("@smithy/types").RetryStrategy
62
- | import("@smithy/types").RetryStrategyV2
63
- | undefined;
64
64
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
65
65
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodePipelineHttpAuthSchemeProvider;
66
66
  credentials?:
@@ -36,6 +36,11 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
36
36
  serviceId: string;
37
37
  logger: import("@smithy/types").Logger;
38
38
  extensions: import("./runtimeExtensions").RuntimeExtension[];
39
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
40
+ retryStrategy?:
41
+ | import("@smithy/types").RetryStrategy
42
+ | import("@smithy/types").RetryStrategyV2
43
+ | undefined;
39
44
  endpoint?:
40
45
  | ((
41
46
  | string
@@ -60,11 +65,6 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
60
65
  }
61
66
  ) => import("@smithy/types").EndpointV2;
62
67
  tls?: boolean | undefined;
63
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
64
- retryStrategy?:
65
- | import("@smithy/types").RetryStrategy
66
- | import("@smithy/types").RetryStrategyV2
67
- | undefined;
68
68
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
69
69
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodePipelineHttpAuthSchemeProvider;
70
70
  credentials?:
@@ -36,6 +36,11 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
36
36
  | import("@smithy/types").Provider<
37
37
  import("@smithy/smithy-client").DefaultsMode
38
38
  >;
39
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
40
+ retryStrategy?:
41
+ | import("@smithy/types").RetryStrategy
42
+ | import("@smithy/types").RetryStrategyV2
43
+ | undefined;
39
44
  endpoint?:
40
45
  | string
41
46
  | import("@smithy/types").Endpoint
@@ -50,11 +55,6 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
50
55
  }
51
56
  ) => import("@smithy/types").EndpointV2;
52
57
  tls?: boolean | undefined;
53
- customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
54
- retryStrategy?:
55
- | import("@smithy/types").RetryStrategy
56
- | import("@smithy/types").RetryStrategyV2
57
- | undefined;
58
58
  httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
59
59
  httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").CodePipelineHttpAuthSchemeProvider;
60
60
  credentials?:
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codepipeline",
3
3
  "description": "AWS SDK for JavaScript Codepipeline Client for Node.js, Browser and React Native",
4
- "version": "3.620.1",
4
+ "version": "3.622.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-codepipeline",
@@ -20,10 +20,10 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.620.1",
24
- "@aws-sdk/client-sts": "3.620.1",
25
- "@aws-sdk/core": "3.620.1",
26
- "@aws-sdk/credential-provider-node": "3.620.1",
23
+ "@aws-sdk/client-sso-oidc": "3.622.0",
24
+ "@aws-sdk/client-sts": "3.622.0",
25
+ "@aws-sdk/core": "3.622.0",
26
+ "@aws-sdk/credential-provider-node": "3.622.0",
27
27
  "@aws-sdk/middleware-host-header": "3.620.0",
28
28
  "@aws-sdk/middleware-logger": "3.609.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.620.0",
@@ -34,26 +34,26 @@
34
34
  "@aws-sdk/util-user-agent-browser": "3.609.0",
35
35
  "@aws-sdk/util-user-agent-node": "3.614.0",
36
36
  "@smithy/config-resolver": "^3.0.5",
37
- "@smithy/core": "^2.3.0",
38
- "@smithy/fetch-http-handler": "^3.2.3",
37
+ "@smithy/core": "^2.3.2",
38
+ "@smithy/fetch-http-handler": "^3.2.4",
39
39
  "@smithy/hash-node": "^3.0.3",
40
40
  "@smithy/invalid-dependency": "^3.0.3",
41
41
  "@smithy/middleware-content-length": "^3.0.5",
42
42
  "@smithy/middleware-endpoint": "^3.1.0",
43
- "@smithy/middleware-retry": "^3.0.12",
43
+ "@smithy/middleware-retry": "^3.0.14",
44
44
  "@smithy/middleware-serde": "^3.0.3",
45
45
  "@smithy/middleware-stack": "^3.0.3",
46
46
  "@smithy/node-config-provider": "^3.1.4",
47
47
  "@smithy/node-http-handler": "^3.1.4",
48
48
  "@smithy/protocol-http": "^4.1.0",
49
- "@smithy/smithy-client": "^3.1.10",
49
+ "@smithy/smithy-client": "^3.1.12",
50
50
  "@smithy/types": "^3.3.0",
51
51
  "@smithy/url-parser": "^3.0.3",
52
52
  "@smithy/util-base64": "^3.0.0",
53
53
  "@smithy/util-body-length-browser": "^3.0.0",
54
54
  "@smithy/util-body-length-node": "^3.0.0",
55
- "@smithy/util-defaults-mode-browser": "^3.0.12",
56
- "@smithy/util-defaults-mode-node": "^3.0.12",
55
+ "@smithy/util-defaults-mode-browser": "^3.0.14",
56
+ "@smithy/util-defaults-mode-node": "^3.0.14",
57
57
  "@smithy/util-endpoints": "^2.0.5",
58
58
  "@smithy/util-middleware": "^3.0.3",
59
59
  "@smithy/util-retry": "^3.0.3",