@aws-sdk/client-codepipeline 3.1018.0 → 3.1020.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 (31) hide show
  1. package/dist-cjs/auth/httpAuthSchemeProvider.js +2 -2
  2. package/dist-cjs/runtimeConfig.js +4 -3
  3. package/dist-cjs/runtimeConfig.shared.js +2 -2
  4. package/dist-es/CodePipeline.js +4 -4
  5. package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
  6. package/dist-es/runtimeConfig.js +2 -1
  7. package/dist-es/runtimeConfig.shared.js +1 -1
  8. package/dist-types/CodePipeline.d.ts +44 -44
  9. package/dist-types/CodePipelineClient.d.ts +47 -47
  10. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  11. package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
  12. package/dist-types/index.d.ts +1 -1
  13. package/dist-types/models/models_0.d.ts +1 -1
  14. package/dist-types/pagination/ListActionExecutionsPaginator.d.ts +1 -1
  15. package/dist-types/pagination/ListActionTypesPaginator.d.ts +1 -1
  16. package/dist-types/pagination/ListDeployActionExecutionTargetsPaginator.d.ts +1 -1
  17. package/dist-types/pagination/ListPipelineExecutionsPaginator.d.ts +1 -1
  18. package/dist-types/pagination/ListPipelinesPaginator.d.ts +1 -1
  19. package/dist-types/pagination/ListRuleExecutionsPaginator.d.ts +1 -1
  20. package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +1 -1
  21. package/dist-types/pagination/ListWebhooksPaginator.d.ts +1 -1
  22. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  23. package/dist-types/runtimeConfig.d.ts +1 -1
  24. package/dist-types/runtimeConfig.native.d.ts +1 -1
  25. package/dist-types/ts3.4/CodePipelineClient.d.ts +2 -3
  26. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  27. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
  28. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  29. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  30. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  31. package/package.json +13 -13
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.resolveHttpAuthSchemeConfig = exports.defaultCodePipelineHttpAuthSchemeProvider = exports.defaultCodePipelineHttpAuthSchemeParametersProvider = void 0;
4
- const core_1 = require("@aws-sdk/core");
4
+ const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
5
5
  const util_middleware_1 = require("@smithy/util-middleware");
6
6
  const defaultCodePipelineHttpAuthSchemeParametersProvider = async (config, context, input) => {
7
7
  return {
@@ -38,7 +38,7 @@ const defaultCodePipelineHttpAuthSchemeProvider = (authParameters) => {
38
38
  };
39
39
  exports.defaultCodePipelineHttpAuthSchemeProvider = defaultCodePipelineHttpAuthSchemeProvider;
40
40
  const resolveHttpAuthSchemeConfig = (config) => {
41
- const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
41
+ const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
42
42
  return Object.assign(config_0, {
43
43
  authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? []),
44
44
  });
@@ -3,7 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const package_json_1 = tslib_1.__importDefault(require("../package.json"));
6
- const core_1 = require("@aws-sdk/core");
6
+ const client_1 = require("@aws-sdk/core/client");
7
+ const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
7
8
  const credential_provider_node_1 = require("@aws-sdk/credential-provider-node");
8
9
  const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
9
10
  const config_resolver_1 = require("@smithy/config-resolver");
@@ -21,7 +22,7 @@ const getRuntimeConfig = (config) => {
21
22
  const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
22
23
  const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
23
24
  const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
24
- (0, core_1.emitWarningIfUnsupportedVersion)(process.version);
25
+ (0, client_1.emitWarningIfUnsupportedVersion)(process.version);
25
26
  const loaderConfig = {
26
27
  profile: config?.profile,
27
28
  logger: clientSharedValues.logger,
@@ -31,7 +32,7 @@ const getRuntimeConfig = (config) => {
31
32
  ...config,
32
33
  runtime: "node",
33
34
  defaultsMode,
34
- authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(core_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
35
+ authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
35
36
  bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
36
37
  credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
37
38
  defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
- const core_1 = require("@aws-sdk/core");
4
+ const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
5
5
  const protocols_1 = require("@aws-sdk/core/protocols");
6
6
  const smithy_client_1 = require("@smithy/smithy-client");
7
7
  const url_parser_1 = require("@smithy/url-parser");
@@ -23,7 +23,7 @@ const getRuntimeConfig = (config) => {
23
23
  {
24
24
  schemeId: "aws.auth#sigv4",
25
25
  identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
26
- signer: new core_1.AwsSdkSigV4Signer(),
26
+ signer: new httpAuthSchemes_1.AwsSdkSigV4Signer(),
27
27
  },
28
28
  ],
29
29
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
@@ -12,7 +12,7 @@ import { DisableStageTransitionCommand, } from "./commands/DisableStageTransitio
12
12
  import { EnableStageTransitionCommand, } from "./commands/EnableStageTransitionCommand";
13
13
  import { GetActionTypeCommand, } from "./commands/GetActionTypeCommand";
14
14
  import { GetJobDetailsCommand, } from "./commands/GetJobDetailsCommand";
15
- import { GetPipelineCommand } from "./commands/GetPipelineCommand";
15
+ import { GetPipelineCommand, } from "./commands/GetPipelineCommand";
16
16
  import { GetPipelineExecutionCommand, } from "./commands/GetPipelineExecutionCommand";
17
17
  import { GetPipelineStateCommand, } from "./commands/GetPipelineStateCommand";
18
18
  import { GetThirdPartyJobDetailsCommand, } from "./commands/GetThirdPartyJobDetailsCommand";
@@ -26,7 +26,7 @@ import { ListRuleTypesCommand, } from "./commands/ListRuleTypesCommand";
26
26
  import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
27
27
  import { ListWebhooksCommand, } from "./commands/ListWebhooksCommand";
28
28
  import { OverrideStageConditionCommand, } from "./commands/OverrideStageConditionCommand";
29
- import { PollForJobsCommand } from "./commands/PollForJobsCommand";
29
+ import { PollForJobsCommand, } from "./commands/PollForJobsCommand";
30
30
  import { PollForThirdPartyJobsCommand, } from "./commands/PollForThirdPartyJobsCommand";
31
31
  import { PutActionRevisionCommand, } from "./commands/PutActionRevisionCommand";
32
32
  import { PutApprovalResultCommand, } from "./commands/PutApprovalResultCommand";
@@ -34,13 +34,13 @@ import { PutJobFailureResultCommand, } from "./commands/PutJobFailureResultComma
34
34
  import { PutJobSuccessResultCommand, } from "./commands/PutJobSuccessResultCommand";
35
35
  import { PutThirdPartyJobFailureResultCommand, } from "./commands/PutThirdPartyJobFailureResultCommand";
36
36
  import { PutThirdPartyJobSuccessResultCommand, } from "./commands/PutThirdPartyJobSuccessResultCommand";
37
- import { PutWebhookCommand } from "./commands/PutWebhookCommand";
37
+ import { PutWebhookCommand, } from "./commands/PutWebhookCommand";
38
38
  import { RegisterWebhookWithThirdPartyCommand, } from "./commands/RegisterWebhookWithThirdPartyCommand";
39
39
  import { RetryStageExecutionCommand, } from "./commands/RetryStageExecutionCommand";
40
40
  import { RollbackStageCommand, } from "./commands/RollbackStageCommand";
41
41
  import { StartPipelineExecutionCommand, } from "./commands/StartPipelineExecutionCommand";
42
42
  import { StopPipelineExecutionCommand, } from "./commands/StopPipelineExecutionCommand";
43
- import { TagResourceCommand } from "./commands/TagResourceCommand";
43
+ import { TagResourceCommand, } from "./commands/TagResourceCommand";
44
44
  import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
45
45
  import { UpdateActionTypeCommand, } from "./commands/UpdateActionTypeCommand";
46
46
  import { UpdatePipelineCommand, } from "./commands/UpdatePipelineCommand";
@@ -1,4 +1,4 @@
1
- import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
1
+ import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
3
3
  export const defaultCodePipelineHttpAuthSchemeParametersProvider = async (config, context, input) => {
4
4
  return {
@@ -1,5 +1,6 @@
1
1
  import packageInfo from "../package.json";
2
- import { emitWarningIfUnsupportedVersion as awsCheckVersion, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core";
2
+ import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core/client";
3
+ import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core/httpAuthSchemes";
3
4
  import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
4
5
  import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
5
6
  import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
@@ -1,4 +1,4 @@
1
- import { AwsSdkSigV4Signer } from "@aws-sdk/core";
1
+ import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols";
3
3
  import { NoOpLogger } from "@smithy/smithy-client";
4
4
  import { parseUrl } from "@smithy/url-parser";
@@ -1,49 +1,49 @@
1
1
  import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
2
2
  import { CodePipelineClient } from "./CodePipelineClient";
3
- import { AcknowledgeJobCommandInput, AcknowledgeJobCommandOutput } from "./commands/AcknowledgeJobCommand";
4
- import { AcknowledgeThirdPartyJobCommandInput, AcknowledgeThirdPartyJobCommandOutput } from "./commands/AcknowledgeThirdPartyJobCommand";
5
- import { CreateCustomActionTypeCommandInput, CreateCustomActionTypeCommandOutput } from "./commands/CreateCustomActionTypeCommand";
6
- import { CreatePipelineCommandInput, CreatePipelineCommandOutput } from "./commands/CreatePipelineCommand";
7
- import { DeleteCustomActionTypeCommandInput, DeleteCustomActionTypeCommandOutput } from "./commands/DeleteCustomActionTypeCommand";
8
- import { DeletePipelineCommandInput, DeletePipelineCommandOutput } from "./commands/DeletePipelineCommand";
9
- import { DeleteWebhookCommandInput, DeleteWebhookCommandOutput } from "./commands/DeleteWebhookCommand";
10
- import { DeregisterWebhookWithThirdPartyCommandInput, DeregisterWebhookWithThirdPartyCommandOutput } from "./commands/DeregisterWebhookWithThirdPartyCommand";
11
- import { DisableStageTransitionCommandInput, DisableStageTransitionCommandOutput } from "./commands/DisableStageTransitionCommand";
12
- import { EnableStageTransitionCommandInput, EnableStageTransitionCommandOutput } from "./commands/EnableStageTransitionCommand";
13
- import { GetActionTypeCommandInput, GetActionTypeCommandOutput } from "./commands/GetActionTypeCommand";
14
- import { GetJobDetailsCommandInput, GetJobDetailsCommandOutput } from "./commands/GetJobDetailsCommand";
15
- import { GetPipelineCommandInput, GetPipelineCommandOutput } from "./commands/GetPipelineCommand";
16
- import { GetPipelineExecutionCommandInput, GetPipelineExecutionCommandOutput } from "./commands/GetPipelineExecutionCommand";
17
- import { GetPipelineStateCommandInput, GetPipelineStateCommandOutput } from "./commands/GetPipelineStateCommand";
18
- import { GetThirdPartyJobDetailsCommandInput, GetThirdPartyJobDetailsCommandOutput } from "./commands/GetThirdPartyJobDetailsCommand";
19
- import { ListActionExecutionsCommandInput, ListActionExecutionsCommandOutput } from "./commands/ListActionExecutionsCommand";
20
- import { ListActionTypesCommandInput, ListActionTypesCommandOutput } from "./commands/ListActionTypesCommand";
21
- import { ListDeployActionExecutionTargetsCommandInput, ListDeployActionExecutionTargetsCommandOutput } from "./commands/ListDeployActionExecutionTargetsCommand";
22
- import { ListPipelineExecutionsCommandInput, ListPipelineExecutionsCommandOutput } from "./commands/ListPipelineExecutionsCommand";
23
- import { ListPipelinesCommandInput, ListPipelinesCommandOutput } from "./commands/ListPipelinesCommand";
24
- import { ListRuleExecutionsCommandInput, ListRuleExecutionsCommandOutput } from "./commands/ListRuleExecutionsCommand";
25
- import { ListRuleTypesCommandInput, ListRuleTypesCommandOutput } from "./commands/ListRuleTypesCommand";
26
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
27
- import { ListWebhooksCommandInput, ListWebhooksCommandOutput } from "./commands/ListWebhooksCommand";
28
- import { OverrideStageConditionCommandInput, OverrideStageConditionCommandOutput } from "./commands/OverrideStageConditionCommand";
29
- import { PollForJobsCommandInput, PollForJobsCommandOutput } from "./commands/PollForJobsCommand";
30
- import { PollForThirdPartyJobsCommandInput, PollForThirdPartyJobsCommandOutput } from "./commands/PollForThirdPartyJobsCommand";
31
- import { PutActionRevisionCommandInput, PutActionRevisionCommandOutput } from "./commands/PutActionRevisionCommand";
32
- import { PutApprovalResultCommandInput, PutApprovalResultCommandOutput } from "./commands/PutApprovalResultCommand";
33
- import { PutJobFailureResultCommandInput, PutJobFailureResultCommandOutput } from "./commands/PutJobFailureResultCommand";
34
- import { PutJobSuccessResultCommandInput, PutJobSuccessResultCommandOutput } from "./commands/PutJobSuccessResultCommand";
35
- import { PutThirdPartyJobFailureResultCommandInput, PutThirdPartyJobFailureResultCommandOutput } from "./commands/PutThirdPartyJobFailureResultCommand";
36
- import { PutThirdPartyJobSuccessResultCommandInput, PutThirdPartyJobSuccessResultCommandOutput } from "./commands/PutThirdPartyJobSuccessResultCommand";
37
- import { PutWebhookCommandInput, PutWebhookCommandOutput } from "./commands/PutWebhookCommand";
38
- import { RegisterWebhookWithThirdPartyCommandInput, RegisterWebhookWithThirdPartyCommandOutput } from "./commands/RegisterWebhookWithThirdPartyCommand";
39
- import { RetryStageExecutionCommandInput, RetryStageExecutionCommandOutput } from "./commands/RetryStageExecutionCommand";
40
- import { RollbackStageCommandInput, RollbackStageCommandOutput } from "./commands/RollbackStageCommand";
41
- import { StartPipelineExecutionCommandInput, StartPipelineExecutionCommandOutput } from "./commands/StartPipelineExecutionCommand";
42
- import { StopPipelineExecutionCommandInput, StopPipelineExecutionCommandOutput } from "./commands/StopPipelineExecutionCommand";
43
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
44
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
45
- import { UpdateActionTypeCommandInput, UpdateActionTypeCommandOutput } from "./commands/UpdateActionTypeCommand";
46
- import { UpdatePipelineCommandInput, UpdatePipelineCommandOutput } from "./commands/UpdatePipelineCommand";
3
+ import { type AcknowledgeJobCommandInput, type AcknowledgeJobCommandOutput } from "./commands/AcknowledgeJobCommand";
4
+ import { type AcknowledgeThirdPartyJobCommandInput, type AcknowledgeThirdPartyJobCommandOutput } from "./commands/AcknowledgeThirdPartyJobCommand";
5
+ import { type CreateCustomActionTypeCommandInput, type CreateCustomActionTypeCommandOutput } from "./commands/CreateCustomActionTypeCommand";
6
+ import { type CreatePipelineCommandInput, type CreatePipelineCommandOutput } from "./commands/CreatePipelineCommand";
7
+ import { type DeleteCustomActionTypeCommandInput, type DeleteCustomActionTypeCommandOutput } from "./commands/DeleteCustomActionTypeCommand";
8
+ import { type DeletePipelineCommandInput, type DeletePipelineCommandOutput } from "./commands/DeletePipelineCommand";
9
+ import { type DeleteWebhookCommandInput, type DeleteWebhookCommandOutput } from "./commands/DeleteWebhookCommand";
10
+ import { type DeregisterWebhookWithThirdPartyCommandInput, type DeregisterWebhookWithThirdPartyCommandOutput } from "./commands/DeregisterWebhookWithThirdPartyCommand";
11
+ import { type DisableStageTransitionCommandInput, type DisableStageTransitionCommandOutput } from "./commands/DisableStageTransitionCommand";
12
+ import { type EnableStageTransitionCommandInput, type EnableStageTransitionCommandOutput } from "./commands/EnableStageTransitionCommand";
13
+ import { type GetActionTypeCommandInput, type GetActionTypeCommandOutput } from "./commands/GetActionTypeCommand";
14
+ import { type GetJobDetailsCommandInput, type GetJobDetailsCommandOutput } from "./commands/GetJobDetailsCommand";
15
+ import { type GetPipelineCommandInput, type GetPipelineCommandOutput } from "./commands/GetPipelineCommand";
16
+ import { type GetPipelineExecutionCommandInput, type GetPipelineExecutionCommandOutput } from "./commands/GetPipelineExecutionCommand";
17
+ import { type GetPipelineStateCommandInput, type GetPipelineStateCommandOutput } from "./commands/GetPipelineStateCommand";
18
+ import { type GetThirdPartyJobDetailsCommandInput, type GetThirdPartyJobDetailsCommandOutput } from "./commands/GetThirdPartyJobDetailsCommand";
19
+ import { type ListActionExecutionsCommandInput, type ListActionExecutionsCommandOutput } from "./commands/ListActionExecutionsCommand";
20
+ import { type ListActionTypesCommandInput, type ListActionTypesCommandOutput } from "./commands/ListActionTypesCommand";
21
+ import { type ListDeployActionExecutionTargetsCommandInput, type ListDeployActionExecutionTargetsCommandOutput } from "./commands/ListDeployActionExecutionTargetsCommand";
22
+ import { type ListPipelineExecutionsCommandInput, type ListPipelineExecutionsCommandOutput } from "./commands/ListPipelineExecutionsCommand";
23
+ import { type ListPipelinesCommandInput, type ListPipelinesCommandOutput } from "./commands/ListPipelinesCommand";
24
+ import { type ListRuleExecutionsCommandInput, type ListRuleExecutionsCommandOutput } from "./commands/ListRuleExecutionsCommand";
25
+ import { type ListRuleTypesCommandInput, type ListRuleTypesCommandOutput } from "./commands/ListRuleTypesCommand";
26
+ import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
27
+ import { type ListWebhooksCommandInput, type ListWebhooksCommandOutput } from "./commands/ListWebhooksCommand";
28
+ import { type OverrideStageConditionCommandInput, type OverrideStageConditionCommandOutput } from "./commands/OverrideStageConditionCommand";
29
+ import { type PollForJobsCommandInput, type PollForJobsCommandOutput } from "./commands/PollForJobsCommand";
30
+ import { type PollForThirdPartyJobsCommandInput, type PollForThirdPartyJobsCommandOutput } from "./commands/PollForThirdPartyJobsCommand";
31
+ import { type PutActionRevisionCommandInput, type PutActionRevisionCommandOutput } from "./commands/PutActionRevisionCommand";
32
+ import { type PutApprovalResultCommandInput, type PutApprovalResultCommandOutput } from "./commands/PutApprovalResultCommand";
33
+ import { type PutJobFailureResultCommandInput, type PutJobFailureResultCommandOutput } from "./commands/PutJobFailureResultCommand";
34
+ import { type PutJobSuccessResultCommandInput, type PutJobSuccessResultCommandOutput } from "./commands/PutJobSuccessResultCommand";
35
+ import { type PutThirdPartyJobFailureResultCommandInput, type PutThirdPartyJobFailureResultCommandOutput } from "./commands/PutThirdPartyJobFailureResultCommand";
36
+ import { type PutThirdPartyJobSuccessResultCommandInput, type PutThirdPartyJobSuccessResultCommandOutput } from "./commands/PutThirdPartyJobSuccessResultCommand";
37
+ import { type PutWebhookCommandInput, type PutWebhookCommandOutput } from "./commands/PutWebhookCommand";
38
+ import { type RegisterWebhookWithThirdPartyCommandInput, type RegisterWebhookWithThirdPartyCommandOutput } from "./commands/RegisterWebhookWithThirdPartyCommand";
39
+ import { type RetryStageExecutionCommandInput, type RetryStageExecutionCommandOutput } from "./commands/RetryStageExecutionCommand";
40
+ import { type RollbackStageCommandInput, type RollbackStageCommandOutput } from "./commands/RollbackStageCommand";
41
+ import { type StartPipelineExecutionCommandInput, type StartPipelineExecutionCommandOutput } from "./commands/StartPipelineExecutionCommand";
42
+ import { type StopPipelineExecutionCommandInput, type StopPipelineExecutionCommandOutput } from "./commands/StopPipelineExecutionCommand";
43
+ import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
44
+ import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
45
+ import { type UpdateActionTypeCommandInput, type UpdateActionTypeCommandOutput } from "./commands/UpdateActionTypeCommand";
46
+ import { type UpdatePipelineCommandInput, type UpdatePipelineCommandOutput } from "./commands/UpdatePipelineCommand";
47
47
  export interface CodePipeline {
48
48
  /**
49
49
  * @see {@link AcknowledgeJobCommand}
@@ -5,53 +5,53 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
5
5
  import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
6
6
  import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
7
7
  import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
8
- import { type BodyLengthCalculator as __BodyLengthCalculator, type CheckOptionalClientConfig as __CheckOptionalClientConfig, type ChecksumConstructor as __ChecksumConstructor, type Decoder as __Decoder, type Encoder as __Encoder, type HashConstructor as __HashConstructor, type HttpHandlerOptions as __HttpHandlerOptions, type Logger as __Logger, type Provider as __Provider, type StreamCollector as __StreamCollector, type UrlParser as __UrlParser, AwsCredentialIdentityProvider, Provider, UserAgent as __UserAgent } from "@smithy/types";
8
+ import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
9
9
  import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
10
- import { AcknowledgeJobCommandInput, AcknowledgeJobCommandOutput } from "./commands/AcknowledgeJobCommand";
11
- import { AcknowledgeThirdPartyJobCommandInput, AcknowledgeThirdPartyJobCommandOutput } from "./commands/AcknowledgeThirdPartyJobCommand";
12
- import { CreateCustomActionTypeCommandInput, CreateCustomActionTypeCommandOutput } from "./commands/CreateCustomActionTypeCommand";
13
- import { CreatePipelineCommandInput, CreatePipelineCommandOutput } from "./commands/CreatePipelineCommand";
14
- import { DeleteCustomActionTypeCommandInput, DeleteCustomActionTypeCommandOutput } from "./commands/DeleteCustomActionTypeCommand";
15
- import { DeletePipelineCommandInput, DeletePipelineCommandOutput } from "./commands/DeletePipelineCommand";
16
- import { DeleteWebhookCommandInput, DeleteWebhookCommandOutput } from "./commands/DeleteWebhookCommand";
17
- import { DeregisterWebhookWithThirdPartyCommandInput, DeregisterWebhookWithThirdPartyCommandOutput } from "./commands/DeregisterWebhookWithThirdPartyCommand";
18
- import { DisableStageTransitionCommandInput, DisableStageTransitionCommandOutput } from "./commands/DisableStageTransitionCommand";
19
- import { EnableStageTransitionCommandInput, EnableStageTransitionCommandOutput } from "./commands/EnableStageTransitionCommand";
20
- import { GetActionTypeCommandInput, GetActionTypeCommandOutput } from "./commands/GetActionTypeCommand";
21
- import { GetJobDetailsCommandInput, GetJobDetailsCommandOutput } from "./commands/GetJobDetailsCommand";
22
- import { GetPipelineCommandInput, GetPipelineCommandOutput } from "./commands/GetPipelineCommand";
23
- import { GetPipelineExecutionCommandInput, GetPipelineExecutionCommandOutput } from "./commands/GetPipelineExecutionCommand";
24
- import { GetPipelineStateCommandInput, GetPipelineStateCommandOutput } from "./commands/GetPipelineStateCommand";
25
- import { GetThirdPartyJobDetailsCommandInput, GetThirdPartyJobDetailsCommandOutput } from "./commands/GetThirdPartyJobDetailsCommand";
26
- import { ListActionExecutionsCommandInput, ListActionExecutionsCommandOutput } from "./commands/ListActionExecutionsCommand";
27
- import { ListActionTypesCommandInput, ListActionTypesCommandOutput } from "./commands/ListActionTypesCommand";
28
- import { ListDeployActionExecutionTargetsCommandInput, ListDeployActionExecutionTargetsCommandOutput } from "./commands/ListDeployActionExecutionTargetsCommand";
29
- import { ListPipelineExecutionsCommandInput, ListPipelineExecutionsCommandOutput } from "./commands/ListPipelineExecutionsCommand";
30
- import { ListPipelinesCommandInput, ListPipelinesCommandOutput } from "./commands/ListPipelinesCommand";
31
- import { ListRuleExecutionsCommandInput, ListRuleExecutionsCommandOutput } from "./commands/ListRuleExecutionsCommand";
32
- import { ListRuleTypesCommandInput, ListRuleTypesCommandOutput } from "./commands/ListRuleTypesCommand";
33
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
34
- import { ListWebhooksCommandInput, ListWebhooksCommandOutput } from "./commands/ListWebhooksCommand";
35
- import { OverrideStageConditionCommandInput, OverrideStageConditionCommandOutput } from "./commands/OverrideStageConditionCommand";
36
- import { PollForJobsCommandInput, PollForJobsCommandOutput } from "./commands/PollForJobsCommand";
37
- import { PollForThirdPartyJobsCommandInput, PollForThirdPartyJobsCommandOutput } from "./commands/PollForThirdPartyJobsCommand";
38
- import { PutActionRevisionCommandInput, PutActionRevisionCommandOutput } from "./commands/PutActionRevisionCommand";
39
- import { PutApprovalResultCommandInput, PutApprovalResultCommandOutput } from "./commands/PutApprovalResultCommand";
40
- import { PutJobFailureResultCommandInput, PutJobFailureResultCommandOutput } from "./commands/PutJobFailureResultCommand";
41
- import { PutJobSuccessResultCommandInput, PutJobSuccessResultCommandOutput } from "./commands/PutJobSuccessResultCommand";
42
- import { PutThirdPartyJobFailureResultCommandInput, PutThirdPartyJobFailureResultCommandOutput } from "./commands/PutThirdPartyJobFailureResultCommand";
43
- import { PutThirdPartyJobSuccessResultCommandInput, PutThirdPartyJobSuccessResultCommandOutput } from "./commands/PutThirdPartyJobSuccessResultCommand";
44
- import { PutWebhookCommandInput, PutWebhookCommandOutput } from "./commands/PutWebhookCommand";
45
- import { RegisterWebhookWithThirdPartyCommandInput, RegisterWebhookWithThirdPartyCommandOutput } from "./commands/RegisterWebhookWithThirdPartyCommand";
46
- import { RetryStageExecutionCommandInput, RetryStageExecutionCommandOutput } from "./commands/RetryStageExecutionCommand";
47
- import { RollbackStageCommandInput, RollbackStageCommandOutput } from "./commands/RollbackStageCommand";
48
- import { StartPipelineExecutionCommandInput, StartPipelineExecutionCommandOutput } from "./commands/StartPipelineExecutionCommand";
49
- import { StopPipelineExecutionCommandInput, StopPipelineExecutionCommandOutput } from "./commands/StopPipelineExecutionCommand";
50
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
51
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
52
- import { UpdateActionTypeCommandInput, UpdateActionTypeCommandOutput } from "./commands/UpdateActionTypeCommand";
53
- import { UpdatePipelineCommandInput, UpdatePipelineCommandOutput } from "./commands/UpdatePipelineCommand";
54
- import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
10
+ import type { AcknowledgeJobCommandInput, AcknowledgeJobCommandOutput } from "./commands/AcknowledgeJobCommand";
11
+ import type { AcknowledgeThirdPartyJobCommandInput, AcknowledgeThirdPartyJobCommandOutput } from "./commands/AcknowledgeThirdPartyJobCommand";
12
+ import type { CreateCustomActionTypeCommandInput, CreateCustomActionTypeCommandOutput } from "./commands/CreateCustomActionTypeCommand";
13
+ import type { CreatePipelineCommandInput, CreatePipelineCommandOutput } from "./commands/CreatePipelineCommand";
14
+ import type { DeleteCustomActionTypeCommandInput, DeleteCustomActionTypeCommandOutput } from "./commands/DeleteCustomActionTypeCommand";
15
+ import type { DeletePipelineCommandInput, DeletePipelineCommandOutput } from "./commands/DeletePipelineCommand";
16
+ import type { DeleteWebhookCommandInput, DeleteWebhookCommandOutput } from "./commands/DeleteWebhookCommand";
17
+ import type { DeregisterWebhookWithThirdPartyCommandInput, DeregisterWebhookWithThirdPartyCommandOutput } from "./commands/DeregisterWebhookWithThirdPartyCommand";
18
+ import type { DisableStageTransitionCommandInput, DisableStageTransitionCommandOutput } from "./commands/DisableStageTransitionCommand";
19
+ import type { EnableStageTransitionCommandInput, EnableStageTransitionCommandOutput } from "./commands/EnableStageTransitionCommand";
20
+ import type { GetActionTypeCommandInput, GetActionTypeCommandOutput } from "./commands/GetActionTypeCommand";
21
+ import type { GetJobDetailsCommandInput, GetJobDetailsCommandOutput } from "./commands/GetJobDetailsCommand";
22
+ import type { GetPipelineCommandInput, GetPipelineCommandOutput } from "./commands/GetPipelineCommand";
23
+ import type { GetPipelineExecutionCommandInput, GetPipelineExecutionCommandOutput } from "./commands/GetPipelineExecutionCommand";
24
+ import type { GetPipelineStateCommandInput, GetPipelineStateCommandOutput } from "./commands/GetPipelineStateCommand";
25
+ import type { GetThirdPartyJobDetailsCommandInput, GetThirdPartyJobDetailsCommandOutput } from "./commands/GetThirdPartyJobDetailsCommand";
26
+ import type { ListActionExecutionsCommandInput, ListActionExecutionsCommandOutput } from "./commands/ListActionExecutionsCommand";
27
+ import type { ListActionTypesCommandInput, ListActionTypesCommandOutput } from "./commands/ListActionTypesCommand";
28
+ import type { ListDeployActionExecutionTargetsCommandInput, ListDeployActionExecutionTargetsCommandOutput } from "./commands/ListDeployActionExecutionTargetsCommand";
29
+ import type { ListPipelineExecutionsCommandInput, ListPipelineExecutionsCommandOutput } from "./commands/ListPipelineExecutionsCommand";
30
+ import type { ListPipelinesCommandInput, ListPipelinesCommandOutput } from "./commands/ListPipelinesCommand";
31
+ import type { ListRuleExecutionsCommandInput, ListRuleExecutionsCommandOutput } from "./commands/ListRuleExecutionsCommand";
32
+ import type { ListRuleTypesCommandInput, ListRuleTypesCommandOutput } from "./commands/ListRuleTypesCommand";
33
+ import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
34
+ import type { ListWebhooksCommandInput, ListWebhooksCommandOutput } from "./commands/ListWebhooksCommand";
35
+ import type { OverrideStageConditionCommandInput, OverrideStageConditionCommandOutput } from "./commands/OverrideStageConditionCommand";
36
+ import type { PollForJobsCommandInput, PollForJobsCommandOutput } from "./commands/PollForJobsCommand";
37
+ import type { PollForThirdPartyJobsCommandInput, PollForThirdPartyJobsCommandOutput } from "./commands/PollForThirdPartyJobsCommand";
38
+ import type { PutActionRevisionCommandInput, PutActionRevisionCommandOutput } from "./commands/PutActionRevisionCommand";
39
+ import type { PutApprovalResultCommandInput, PutApprovalResultCommandOutput } from "./commands/PutApprovalResultCommand";
40
+ import type { PutJobFailureResultCommandInput, PutJobFailureResultCommandOutput } from "./commands/PutJobFailureResultCommand";
41
+ import type { PutJobSuccessResultCommandInput, PutJobSuccessResultCommandOutput } from "./commands/PutJobSuccessResultCommand";
42
+ import type { PutThirdPartyJobFailureResultCommandInput, PutThirdPartyJobFailureResultCommandOutput } from "./commands/PutThirdPartyJobFailureResultCommand";
43
+ import type { PutThirdPartyJobSuccessResultCommandInput, PutThirdPartyJobSuccessResultCommandOutput } from "./commands/PutThirdPartyJobSuccessResultCommand";
44
+ import type { PutWebhookCommandInput, PutWebhookCommandOutput } from "./commands/PutWebhookCommand";
45
+ import type { RegisterWebhookWithThirdPartyCommandInput, RegisterWebhookWithThirdPartyCommandOutput } from "./commands/RegisterWebhookWithThirdPartyCommand";
46
+ import type { RetryStageExecutionCommandInput, RetryStageExecutionCommandOutput } from "./commands/RetryStageExecutionCommand";
47
+ import type { RollbackStageCommandInput, RollbackStageCommandOutput } from "./commands/RollbackStageCommand";
48
+ import type { StartPipelineExecutionCommandInput, StartPipelineExecutionCommandOutput } from "./commands/StartPipelineExecutionCommand";
49
+ import type { StopPipelineExecutionCommandInput, StopPipelineExecutionCommandOutput } from "./commands/StopPipelineExecutionCommand";
50
+ import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
51
+ import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
52
+ import type { UpdateActionTypeCommandInput, UpdateActionTypeCommandOutput } from "./commands/UpdateActionTypeCommand";
53
+ import type { UpdatePipelineCommandInput, UpdatePipelineCommandOutput } from "./commands/UpdatePipelineCommand";
54
+ import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
55
55
  import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
56
56
  export { __Client };
57
57
  /**
@@ -160,7 +160,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
160
160
  * The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
161
161
  * @internal
162
162
  */
163
- defaultUserAgentProvider?: Provider<__UserAgent>;
163
+ defaultUserAgentProvider?: __Provider<__UserAgent>;
164
164
  /**
165
165
  * Default credentials provider; Not available in browser runtime.
166
166
  * @deprecated
@@ -1,4 +1,4 @@
1
- import { type HttpAuthScheme, AwsCredentialIdentity, AwsCredentialIdentityProvider } from "@smithy/types";
1
+ import type { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
2
2
  import type { CodePipelineHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
3
3
  /**
4
4
  * @internal
@@ -1,4 +1,4 @@
1
- import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
1
+ import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import type { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider } from "@smithy/types";
3
3
  import { type CodePipelineClientResolvedConfig } from "../CodePipelineClient";
4
4
  /**
@@ -201,7 +201,7 @@
201
201
  */
202
202
  export * from "./CodePipelineClient";
203
203
  export * from "./CodePipeline";
204
- export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
204
+ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
205
205
  export type { RuntimeExtension } from "./runtimeExtensions";
206
206
  export type { CodePipelineExtensionConfiguration } from "./extensionConfiguration";
207
207
  export * from "./commands";
@@ -1,4 +1,4 @@
1
- import { ActionCategory, ActionConfigurationPropertyType, ActionExecutionStatus, ActionOwner, ApprovalStatus, ArtifactLocationType, ArtifactStoreType, BlockerType, ConditionExecutionStatus, ConditionType, EncryptionKeyType, EnvironmentVariableType, ExecutionMode, ExecutionType, ExecutorType, FailureType, GitPullRequestEventType, JobStatus, PipelineExecutionStatus, PipelineTriggerProviderType, PipelineType, Result, RetryTrigger, RuleCategory, RuleConfigurationPropertyType, RuleExecutionStatus, RuleOwner, SourceRevisionType, StageExecutionStatus, StageRetryMode, StageTransitionType, StartTimeRange, TargetFilterName, TriggerType, WebhookAuthenticationType } from "./enums";
1
+ import type { ActionCategory, ActionConfigurationPropertyType, ActionExecutionStatus, ActionOwner, ApprovalStatus, ArtifactLocationType, ArtifactStoreType, BlockerType, ConditionExecutionStatus, ConditionType, EncryptionKeyType, EnvironmentVariableType, ExecutionMode, ExecutionType, ExecutorType, FailureType, GitPullRequestEventType, JobStatus, PipelineExecutionStatus, PipelineTriggerProviderType, PipelineType, Result, RetryTrigger, RuleCategory, RuleConfigurationPropertyType, RuleExecutionStatus, RuleOwner, SourceRevisionType, StageExecutionStatus, StageRetryMode, StageTransitionType, StartTimeRange, TargetFilterName, TriggerType, WebhookAuthenticationType } from "./enums";
2
2
  /**
3
3
  * <p>Represents the input of an AcknowledgeJob action.</p>
4
4
  * @public
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListActionExecutionsCommandInput, ListActionExecutionsCommandOutput } from "../commands/ListActionExecutionsCommand";
3
- import { CodePipelinePaginationConfiguration } from "./Interfaces";
3
+ import type { CodePipelinePaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListActionTypesCommandInput, ListActionTypesCommandOutput } from "../commands/ListActionTypesCommand";
3
- import { CodePipelinePaginationConfiguration } from "./Interfaces";
3
+ import type { CodePipelinePaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListDeployActionExecutionTargetsCommandInput, ListDeployActionExecutionTargetsCommandOutput } from "../commands/ListDeployActionExecutionTargetsCommand";
3
- import { CodePipelinePaginationConfiguration } from "./Interfaces";
3
+ import type { CodePipelinePaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListPipelineExecutionsCommandInput, ListPipelineExecutionsCommandOutput } from "../commands/ListPipelineExecutionsCommand";
3
- import { CodePipelinePaginationConfiguration } from "./Interfaces";
3
+ import type { CodePipelinePaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListPipelinesCommandInput, ListPipelinesCommandOutput } from "../commands/ListPipelinesCommand";
3
- import { CodePipelinePaginationConfiguration } from "./Interfaces";
3
+ import type { CodePipelinePaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListRuleExecutionsCommandInput, ListRuleExecutionsCommandOutput } from "../commands/ListRuleExecutionsCommand";
3
- import { CodePipelinePaginationConfiguration } from "./Interfaces";
3
+ import type { CodePipelinePaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
3
- import { CodePipelinePaginationConfiguration } from "./Interfaces";
3
+ import type { CodePipelinePaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -1,6 +1,6 @@
1
1
  import type { Paginator } from "@smithy/types";
2
2
  import { ListWebhooksCommandInput, ListWebhooksCommandOutput } from "../commands/ListWebhooksCommand";
3
- import { CodePipelinePaginationConfiguration } from "./Interfaces";
3
+ import type { CodePipelinePaginationConfiguration } from "./Interfaces";
4
4
  /**
5
5
  * @public
6
6
  */
@@ -18,7 +18,7 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
18
18
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
19
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
20
20
  cacheMiddleware?: boolean | undefined;
21
- protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
21
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
22
22
  protocolSettings: {
23
23
  defaultNamespace?: string;
24
24
  [setting: string]: unknown;
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
20
20
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
21
  userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
22
22
  cacheMiddleware?: boolean | undefined;
23
- protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
23
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
24
24
  protocolSettings: {
25
25
  defaultNamespace?: string;
26
26
  [setting: string]: unknown;
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
7
7
  sha256: import("@smithy/types").HashConstructor;
8
8
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
9
  cacheMiddleware?: boolean;
10
- protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
10
+ protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
11
11
  protocolSettings: {
12
12
  defaultNamespace?: string;
13
13
  [setting: string]: unknown;
@@ -26,6 +26,7 @@ import {
26
26
  Client as __Client,
27
27
  } from "@smithy/smithy-client";
28
28
  import {
29
+ AwsCredentialIdentityProvider,
29
30
  BodyLengthCalculator as __BodyLengthCalculator,
30
31
  CheckOptionalClientConfig as __CheckOptionalClientConfig,
31
32
  ChecksumConstructor as __ChecksumConstructor,
@@ -37,8 +38,6 @@ import {
37
38
  Provider as __Provider,
38
39
  StreamCollector as __StreamCollector,
39
40
  UrlParser as __UrlParser,
40
- AwsCredentialIdentityProvider,
41
- Provider,
42
41
  UserAgent as __UserAgent,
43
42
  } from "@smithy/types";
44
43
  import {
@@ -336,7 +335,7 @@ export interface ClientDefaults
336
335
  useFipsEndpoint?: boolean | __Provider<boolean>;
337
336
  region?: string | __Provider<string>;
338
337
  profile?: string;
339
- defaultUserAgentProvider?: Provider<__UserAgent>;
338
+ defaultUserAgentProvider?: __Provider<__UserAgent>;
340
339
  credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
341
340
  maxAttempts?: number | __Provider<number>;
342
341
  retryMode?: string | __Provider<string>;
@@ -1,7 +1,7 @@
1
1
  import {
2
- HttpAuthScheme,
3
2
  AwsCredentialIdentity,
4
3
  AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
5
  } from "@smithy/types";
6
6
  import { CodePipelineHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
7
  export interface HttpAuthExtensionConfiguration {
@@ -2,7 +2,7 @@ import {
2
2
  AwsSdkSigV4AuthInputConfig,
3
3
  AwsSdkSigV4AuthResolvedConfig,
4
4
  AwsSdkSigV4PreviouslyResolved,
5
- } from "@aws-sdk/core";
5
+ } from "@aws-sdk/core/httpAuthSchemes";
6
6
  import {
7
7
  HandlerExecutionContext,
8
8
  HttpAuthScheme,
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
30
30
  protocol:
31
31
  | import("@smithy/types").ClientProtocol<any, any>
32
32
  | import("@smithy/types").ClientProtocolCtor<any, any>
33
- | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
33
+ | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
34
34
  protocolSettings: {
35
35
  defaultNamespace?: string;
36
36
  [setting: string]: unknown;
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
30
30
  protocol:
31
31
  | import("@smithy/types").ClientProtocol<any, any>
32
32
  | import("@smithy/types").ClientProtocolCtor<any, any>
33
- | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
33
+ | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
34
34
  protocolSettings: {
35
35
  defaultNamespace?: string;
36
36
  [setting: string]: unknown;
@@ -12,7 +12,7 @@ export declare const getRuntimeConfig: (config: CodePipelineClientConfig) => {
12
12
  protocol:
13
13
  | import("@smithy/types").ClientProtocol<any, any>
14
14
  | import("@smithy/types").ClientProtocolCtor<any, any>
15
- | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
15
+ | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
16
16
  protocolSettings: {
17
17
  defaultNamespace?: string;
18
18
  [setting: string]: unknown;
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.1018.0",
4
+ "version": "3.1020.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-codepipeline",
@@ -23,38 +23,38 @@
23
23
  "dependencies": {
24
24
  "@aws-crypto/sha256-browser": "5.2.0",
25
25
  "@aws-crypto/sha256-js": "5.2.0",
26
- "@aws-sdk/core": "^3.973.25",
27
- "@aws-sdk/credential-provider-node": "^3.972.26",
26
+ "@aws-sdk/core": "^3.973.26",
27
+ "@aws-sdk/credential-provider-node": "^3.972.28",
28
28
  "@aws-sdk/middleware-host-header": "^3.972.8",
29
29
  "@aws-sdk/middleware-logger": "^3.972.8",
30
30
  "@aws-sdk/middleware-recursion-detection": "^3.972.9",
31
- "@aws-sdk/middleware-user-agent": "^3.972.26",
31
+ "@aws-sdk/middleware-user-agent": "^3.972.27",
32
32
  "@aws-sdk/region-config-resolver": "^3.972.10",
33
33
  "@aws-sdk/types": "^3.973.6",
34
34
  "@aws-sdk/util-endpoints": "^3.996.5",
35
35
  "@aws-sdk/util-user-agent-browser": "^3.972.8",
36
- "@aws-sdk/util-user-agent-node": "^3.973.12",
36
+ "@aws-sdk/util-user-agent-node": "^3.973.13",
37
37
  "@smithy/config-resolver": "^4.4.13",
38
- "@smithy/core": "^3.23.12",
38
+ "@smithy/core": "^3.23.13",
39
39
  "@smithy/fetch-http-handler": "^5.3.15",
40
40
  "@smithy/hash-node": "^4.2.12",
41
41
  "@smithy/invalid-dependency": "^4.2.12",
42
42
  "@smithy/middleware-content-length": "^4.2.12",
43
- "@smithy/middleware-endpoint": "^4.4.27",
44
- "@smithy/middleware-retry": "^4.4.44",
45
- "@smithy/middleware-serde": "^4.2.15",
43
+ "@smithy/middleware-endpoint": "^4.4.28",
44
+ "@smithy/middleware-retry": "^4.4.45",
45
+ "@smithy/middleware-serde": "^4.2.16",
46
46
  "@smithy/middleware-stack": "^4.2.12",
47
47
  "@smithy/node-config-provider": "^4.3.12",
48
- "@smithy/node-http-handler": "^4.5.0",
48
+ "@smithy/node-http-handler": "^4.5.1",
49
49
  "@smithy/protocol-http": "^5.3.12",
50
- "@smithy/smithy-client": "^4.12.7",
50
+ "@smithy/smithy-client": "^4.12.8",
51
51
  "@smithy/types": "^4.13.1",
52
52
  "@smithy/url-parser": "^4.2.12",
53
53
  "@smithy/util-base64": "^4.3.2",
54
54
  "@smithy/util-body-length-browser": "^4.2.2",
55
55
  "@smithy/util-body-length-node": "^4.2.3",
56
- "@smithy/util-defaults-mode-browser": "^4.3.43",
57
- "@smithy/util-defaults-mode-node": "^4.2.47",
56
+ "@smithy/util-defaults-mode-browser": "^4.3.44",
57
+ "@smithy/util-defaults-mode-node": "^4.2.48",
58
58
  "@smithy/util-endpoints": "^3.3.3",
59
59
  "@smithy/util-middleware": "^4.2.12",
60
60
  "@smithy/util-retry": "^4.2.12",