@aws-sdk/client-ebs 3.1076.0 → 3.1078.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 (38) hide show
  1. package/dist-cjs/index.js +17 -65
  2. package/dist-es/commandBuilder.js +6 -0
  3. package/dist-es/commands/CompleteSnapshotCommand.js +2 -14
  4. package/dist-es/commands/GetSnapshotBlockCommand.js +2 -14
  5. package/dist-es/commands/ListChangedBlocksCommand.js +2 -14
  6. package/dist-es/commands/ListSnapshotBlocksCommand.js +2 -14
  7. package/dist-es/commands/PutSnapshotBlockCommand.js +2 -14
  8. package/dist-es/commands/StartSnapshotCommand.js +2 -14
  9. package/dist-es/index.js +1 -0
  10. package/dist-es/runtimeConfig.browser.js +0 -2
  11. package/dist-es/runtimeConfig.js +1 -2
  12. package/dist-es/runtimeConfig.native.js +0 -2
  13. package/dist-es/runtimeConfig.shared.js +2 -0
  14. package/dist-types/commandBuilder.d.ts +18 -0
  15. package/dist-types/commands/CompleteSnapshotCommand.d.ts +3 -8
  16. package/dist-types/commands/GetSnapshotBlockCommand.d.ts +3 -8
  17. package/dist-types/commands/ListChangedBlocksCommand.d.ts +3 -8
  18. package/dist-types/commands/ListSnapshotBlocksCommand.d.ts +3 -8
  19. package/dist-types/commands/PutSnapshotBlockCommand.d.ts +3 -8
  20. package/dist-types/commands/StartSnapshotCommand.d.ts +3 -8
  21. package/dist-types/index.d.ts +1 -0
  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/runtimeConfig.shared.d.ts +1 -0
  26. package/dist-types/ts3.4/commandBuilder.d.ts +46 -0
  27. package/dist-types/ts3.4/commands/CompleteSnapshotCommand.d.ts +7 -16
  28. package/dist-types/ts3.4/commands/GetSnapshotBlockCommand.d.ts +7 -16
  29. package/dist-types/ts3.4/commands/ListChangedBlocksCommand.d.ts +7 -16
  30. package/dist-types/ts3.4/commands/ListSnapshotBlocksCommand.d.ts +7 -16
  31. package/dist-types/ts3.4/commands/PutSnapshotBlockCommand.d.ts +7 -16
  32. package/dist-types/ts3.4/commands/StartSnapshotCommand.d.ts +7 -16
  33. package/dist-types/ts3.4/index.d.ts +1 -0
  34. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  35. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  36. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  37. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  38. package/package.json +8 -10
package/dist-cjs/index.js CHANGED
@@ -1,7 +1,8 @@
1
1
  const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
2
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
3
- const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
4
- exports.$Command = Command;
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, makeBuilder, createAggregatedClient } = require("@smithy/core/client");
4
+ const { Command: $Command } = require("@smithy/core/client");
5
+ exports.$Command = $Command;
5
6
  exports.__Client = Client;
6
7
  const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
7
8
  const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
@@ -10,9 +11,10 @@ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CON
10
11
  const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
12
  const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
13
  const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
- const { toUtf8, fromUtf8, sdkStreamMixin, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
14
+ const { toUtf8, fromUtf8, sdkStreamMixin, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
14
15
  const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
16
  const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
17
+ const { Sha256 } = require("@smithy/core/checksum");
16
18
 
17
19
  const defaultEBSHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
20
  return {
@@ -67,7 +69,7 @@ const commonParams = {
67
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
68
70
  };
69
71
 
70
- var version = "3.1075.0";
72
+ var version = "3.1077.0";
71
73
  var packageInfo = {
72
74
  version: version};
73
75
 
@@ -535,6 +537,7 @@ const getRuntimeConfig$1 = (config) => {
535
537
  },
536
538
  sdkStreamMixin: config?.sdkStreamMixin ?? sdkStreamMixin,
537
539
  serviceId: config?.serviceId ?? "EBS",
540
+ sha256: config?.sha256 ?? Sha256,
538
541
  urlParser: config?.urlParser ?? parseUrl,
539
542
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,
540
543
  utf8Encoder: config?.utf8Encoder ?? toUtf8,
@@ -568,7 +571,6 @@ const getRuntimeConfig = (config) => {
568
571
  ...NODE_RETRY_MODE_CONFIG_OPTIONS,
569
572
  default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
570
573
  }, config),
571
- sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
572
574
  streamCollector: config?.streamCollector ?? streamCollector,
573
575
  useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
574
576
  useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
@@ -656,76 +658,26 @@ class EBSClient extends Client {
656
658
  }
657
659
  }
658
660
 
659
- class CompleteSnapshotCommand extends Command
660
- .classBuilder()
661
- .ep(commonParams)
662
- .m(function (Command, cs, config, o) {
663
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
664
- })
665
- .s("Ebs", "CompleteSnapshot", {})
666
- .n("EBSClient", "CompleteSnapshotCommand")
667
- .sc(CompleteSnapshot$)
668
- .build() {
661
+ const command = makeBuilder(commonParams, "Ebs", "EBSClient", getEndpointPlugin);
662
+ const _ep0 = {};
663
+ const _mw0 = (Command, cs, config, o) => [];
664
+
665
+ class CompleteSnapshotCommand extends command(_ep0, _mw0, "CompleteSnapshot", CompleteSnapshot$) {
669
666
  }
670
667
 
671
- class GetSnapshotBlockCommand extends Command
672
- .classBuilder()
673
- .ep(commonParams)
674
- .m(function (Command, cs, config, o) {
675
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
676
- })
677
- .s("Ebs", "GetSnapshotBlock", {})
678
- .n("EBSClient", "GetSnapshotBlockCommand")
679
- .sc(GetSnapshotBlock$)
680
- .build() {
668
+ class GetSnapshotBlockCommand extends command(_ep0, _mw0, "GetSnapshotBlock", GetSnapshotBlock$) {
681
669
  }
682
670
 
683
- class ListChangedBlocksCommand extends Command
684
- .classBuilder()
685
- .ep(commonParams)
686
- .m(function (Command, cs, config, o) {
687
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
688
- })
689
- .s("Ebs", "ListChangedBlocks", {})
690
- .n("EBSClient", "ListChangedBlocksCommand")
691
- .sc(ListChangedBlocks$)
692
- .build() {
671
+ class ListChangedBlocksCommand extends command(_ep0, _mw0, "ListChangedBlocks", ListChangedBlocks$) {
693
672
  }
694
673
 
695
- class ListSnapshotBlocksCommand extends Command
696
- .classBuilder()
697
- .ep(commonParams)
698
- .m(function (Command, cs, config, o) {
699
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
700
- })
701
- .s("Ebs", "ListSnapshotBlocks", {})
702
- .n("EBSClient", "ListSnapshotBlocksCommand")
703
- .sc(ListSnapshotBlocks$)
704
- .build() {
674
+ class ListSnapshotBlocksCommand extends command(_ep0, _mw0, "ListSnapshotBlocks", ListSnapshotBlocks$) {
705
675
  }
706
676
 
707
- class PutSnapshotBlockCommand extends Command
708
- .classBuilder()
709
- .ep(commonParams)
710
- .m(function (Command, cs, config, o) {
711
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
712
- })
713
- .s("Ebs", "PutSnapshotBlock", {})
714
- .n("EBSClient", "PutSnapshotBlockCommand")
715
- .sc(PutSnapshotBlock$)
716
- .build() {
677
+ class PutSnapshotBlockCommand extends command(_ep0, _mw0, "PutSnapshotBlock", PutSnapshotBlock$) {
717
678
  }
718
679
 
719
- class StartSnapshotCommand extends Command
720
- .classBuilder()
721
- .ep(commonParams)
722
- .m(function (Command, cs, config, o) {
723
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
724
- })
725
- .s("Ebs", "StartSnapshot", {})
726
- .n("EBSClient", "StartSnapshotCommand")
727
- .sc(StartSnapshot$)
728
- .build() {
680
+ class StartSnapshotCommand extends command(_ep0, _mw0, "StartSnapshot", StartSnapshot$) {
729
681
  }
730
682
 
731
683
  const paginateListChangedBlocks = createPaginator(EBSClient, ListChangedBlocksCommand, "NextToken", "NextToken", "MaxResults");
@@ -0,0 +1,6 @@
1
+ import { makeBuilder } from "@smithy/core/client";
2
+ import { getEndpointPlugin } from "@smithy/core/endpoints";
3
+ import { commonParams } from "./endpoint/EndpointParameters";
4
+ export const command = makeBuilder(commonParams, "Ebs", "EBSClient", getEndpointPlugin);
5
+ export const _ep0 = {};
6
+ export const _mw0 = (Command, cs, config, o) => [];
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { CompleteSnapshot$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class CompleteSnapshotCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("Ebs", "CompleteSnapshot", {})
13
- .n("EBSClient", "CompleteSnapshotCommand")
14
- .sc(CompleteSnapshot$)
15
- .build() {
3
+ export class CompleteSnapshotCommand extends command(_ep0, _mw0, "CompleteSnapshot", CompleteSnapshot$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { GetSnapshotBlock$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class GetSnapshotBlockCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("Ebs", "GetSnapshotBlock", {})
13
- .n("EBSClient", "GetSnapshotBlockCommand")
14
- .sc(GetSnapshotBlock$)
15
- .build() {
3
+ export class GetSnapshotBlockCommand extends command(_ep0, _mw0, "GetSnapshotBlock", GetSnapshotBlock$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListChangedBlocks$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListChangedBlocksCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("Ebs", "ListChangedBlocks", {})
13
- .n("EBSClient", "ListChangedBlocksCommand")
14
- .sc(ListChangedBlocks$)
15
- .build() {
3
+ export class ListChangedBlocksCommand extends command(_ep0, _mw0, "ListChangedBlocks", ListChangedBlocks$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { ListSnapshotBlocks$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class ListSnapshotBlocksCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("Ebs", "ListSnapshotBlocks", {})
13
- .n("EBSClient", "ListSnapshotBlocksCommand")
14
- .sc(ListSnapshotBlocks$)
15
- .build() {
3
+ export class ListSnapshotBlocksCommand extends command(_ep0, _mw0, "ListSnapshotBlocks", ListSnapshotBlocks$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { PutSnapshotBlock$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class PutSnapshotBlockCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("Ebs", "PutSnapshotBlock", {})
13
- .n("EBSClient", "PutSnapshotBlockCommand")
14
- .sc(PutSnapshotBlock$)
15
- .build() {
3
+ export class PutSnapshotBlockCommand extends command(_ep0, _mw0, "PutSnapshotBlock", PutSnapshotBlock$) {
16
4
  }
@@ -1,16 +1,4 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
- import { getEndpointPlugin } from "@smithy/core/endpoints";
3
- import { commonParams } from "../endpoint/EndpointParameters";
1
+ import { _ep0, _mw0, command } from "../commandBuilder";
4
2
  import { StartSnapshot$ } from "../schemas/schemas_0";
5
- export { $Command };
6
- export class StartSnapshotCommand extends $Command
7
- .classBuilder()
8
- .ep(commonParams)
9
- .m(function (Command, cs, config, o) {
10
- return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
11
- })
12
- .s("Ebs", "StartSnapshot", {})
13
- .n("EBSClient", "StartSnapshotCommand")
14
- .sc(StartSnapshot$)
15
- .build() {
3
+ export class StartSnapshotCommand extends command(_ep0, _mw0, "StartSnapshot", StartSnapshot$) {
16
4
  }
package/dist-es/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  export * from "./EBSClient";
2
2
  export * from "./EBS";
3
3
  export * from "./commands";
4
+ export { Command as $Command } from "@smithy/core/client";
4
5
  export * from "./schemas/schemas_0";
5
6
  export * from "./pagination";
6
7
  export * from "./models/enums";
@@ -1,5 +1,4 @@
1
1
  import packageInfo from "../package.json";
2
- import { Sha256 } from "@aws-crypto/sha256-browser";
3
2
  import { createDefaultUserAgentProvider } from "@aws-sdk/core/client";
4
3
  import { invalidProvider, loadConfigsForDefaultMode } from "@smithy/core/client";
5
4
  import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig, } from "@smithy/core/config";
@@ -23,7 +22,6 @@ export const getRuntimeConfig = (config) => {
23
22
  region: config?.region ?? invalidProvider("Region is missing"),
24
23
  requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
25
24
  retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
26
- sha256: config?.sha256 ?? Sha256,
27
25
  streamCollector: config?.streamCollector ?? streamCollector,
28
26
  useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
29
27
  useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
@@ -5,7 +5,7 @@ import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credentia
5
5
  import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/core/client";
6
6
  import { loadConfig as loadNodeConfig, NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveDefaultsModeConfig, } from "@smithy/core/config";
7
7
  import { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@smithy/core/retry";
8
- import { calculateBodyLength, Hash } from "@smithy/core/serde";
8
+ import { calculateBodyLength } from "@smithy/core/serde";
9
9
  import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler";
10
10
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
11
11
  export const getRuntimeConfig = (config) => {
@@ -35,7 +35,6 @@ export const getRuntimeConfig = (config) => {
35
35
  ...NODE_RETRY_MODE_CONFIG_OPTIONS,
36
36
  default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
37
37
  }, config),
38
- sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
39
38
  streamCollector: config?.streamCollector ?? streamCollector,
40
39
  useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
41
40
  useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
@@ -1,4 +1,3 @@
1
- import { Sha256 } from "@aws-crypto/sha256-js";
2
1
  import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser";
3
2
  export const getRuntimeConfig = (config) => {
4
3
  const browserDefaults = getBrowserRuntimeConfig(config);
@@ -6,6 +5,5 @@ export const getRuntimeConfig = (config) => {
6
5
  ...browserDefaults,
7
6
  ...config,
8
7
  runtime: "react-native",
9
- sha256: config?.sha256 ?? Sha256,
10
8
  };
11
9
  };
@@ -1,5 +1,6 @@
1
1
  import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
3
+ import { Sha256 } from "@smithy/core/checksum";
3
4
  import { NoOpLogger } from "@smithy/core/client";
4
5
  import { parseUrl } from "@smithy/core/protocols";
5
6
  import { fromBase64, fromUtf8, sdkStreamMixin, toBase64, toUtf8 } from "@smithy/core/serde";
@@ -32,6 +33,7 @@ export const getRuntimeConfig = (config) => {
32
33
  },
33
34
  sdkStreamMixin: config?.sdkStreamMixin ?? sdkStreamMixin,
34
35
  serviceId: config?.serviceId ?? "EBS",
36
+ sha256: config?.sha256 ?? Sha256,
35
37
  urlParser: config?.urlParser ?? parseUrl,
36
38
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,
37
39
  utf8Encoder: config?.utf8Encoder ?? toUtf8,
@@ -0,0 +1,18 @@
1
+ import type { EndpointParameterInstructions } from "@smithy/types";
2
+ import type { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "./EBSClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const command: <I extends ServiceInputTypes, O extends ServiceOutputTypes>(added: EndpointParameterInstructions, plugins: (CommandCtor: any, clientStack: any, config: any, options: any) => import("@smithy/types").Pluggable<any, any>[], op: string, $: import("@smithy/types").StaticOperationSchema, smithyContext?: Record<string, unknown>) => {
7
+ new (input: I): import("@smithy/core/client").CommandImpl<I, O, EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
8
+ new (...[input]: import("@smithy/types").OptionalParameter<I>): import("@smithy/core/client").CommandImpl<I, O, EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
9
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
10
+ };
11
+ /**
12
+ * @internal
13
+ */
14
+ export declare const _ep0: EndpointParameterInstructions;
15
+ /**
16
+ * @internal
17
+ */
18
+ export declare const _mw0: (Command: any, cs: any, config: any, o: any) => never[];
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient";
4
2
  import type { CompleteSnapshotRequest, CompleteSnapshotResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface CompleteSnapshotCommandInput extends CompleteSnapshotRequest {
22
19
  export interface CompleteSnapshotCommandOutput extends CompleteSnapshotResponse, __MetadataBearer {
23
20
  }
24
21
  declare const CompleteSnapshotCommand_base: {
25
- new (input: CompleteSnapshotCommandInput): import("@smithy/core/client").CommandImpl<CompleteSnapshotCommandInput, CompleteSnapshotCommandOutput, EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: CompleteSnapshotCommandInput): import("@smithy/core/client").CommandImpl<CompleteSnapshotCommandInput, CompleteSnapshotCommandOutput, EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: CompleteSnapshotCommandInput): import("@smithy/core/client").CommandImpl<CompleteSnapshotCommandInput, CompleteSnapshotCommandOutput, import("..").EBSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: CompleteSnapshotCommandInput): import("@smithy/core/client").CommandImpl<CompleteSnapshotCommandInput, CompleteSnapshotCommandOutput, import("..").EBSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Seals and completes the snapshot after all of the required blocks of data have been
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadOutputTypes } from "@smithy/types";
3
- import type { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient";
4
2
  import type { GetSnapshotBlockRequest, GetSnapshotBlockResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -23,11 +20,9 @@ export interface GetSnapshotBlockCommandOutput extends Omit<GetSnapshotBlockResp
23
20
  BlockData?: StreamingBlobPayloadOutputTypes;
24
21
  }
25
22
  declare const GetSnapshotBlockCommand_base: {
26
- new (input: GetSnapshotBlockCommandInput): import("@smithy/core/client").CommandImpl<GetSnapshotBlockCommandInput, GetSnapshotBlockCommandOutput, EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- new (input: GetSnapshotBlockCommandInput): import("@smithy/core/client").CommandImpl<GetSnapshotBlockCommandInput, GetSnapshotBlockCommandOutput, EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
28
- getEndpointParameterInstructions(): {
29
- [x: string]: unknown;
30
- };
23
+ new (input: GetSnapshotBlockCommandInput): import("@smithy/core/client").CommandImpl<GetSnapshotBlockCommandInput, GetSnapshotBlockCommandOutput, import("..").EBSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ new (input: GetSnapshotBlockCommandInput): import("@smithy/core/client").CommandImpl<GetSnapshotBlockCommandInput, GetSnapshotBlockCommandOutput, import("..").EBSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
31
26
  };
32
27
  /**
33
28
  * <p>Returns the data in a block in an Amazon Elastic Block Store snapshot.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient";
4
2
  import type { ListChangedBlocksRequest, ListChangedBlocksResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListChangedBlocksCommandInput extends ListChangedBlocksRequest
22
19
  export interface ListChangedBlocksCommandOutput extends ListChangedBlocksResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListChangedBlocksCommand_base: {
25
- new (input: ListChangedBlocksCommandInput): import("@smithy/core/client").CommandImpl<ListChangedBlocksCommandInput, ListChangedBlocksCommandOutput, EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListChangedBlocksCommandInput): import("@smithy/core/client").CommandImpl<ListChangedBlocksCommandInput, ListChangedBlocksCommandOutput, EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListChangedBlocksCommandInput): import("@smithy/core/client").CommandImpl<ListChangedBlocksCommandInput, ListChangedBlocksCommandOutput, import("..").EBSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListChangedBlocksCommandInput): import("@smithy/core/client").CommandImpl<ListChangedBlocksCommandInput, ListChangedBlocksCommandOutput, import("..").EBSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns information about the blocks that are different between two
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient";
4
2
  import type { ListSnapshotBlocksRequest, ListSnapshotBlocksResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface ListSnapshotBlocksCommandInput extends ListSnapshotBlocksReques
22
19
  export interface ListSnapshotBlocksCommandOutput extends ListSnapshotBlocksResponse, __MetadataBearer {
23
20
  }
24
21
  declare const ListSnapshotBlocksCommand_base: {
25
- new (input: ListSnapshotBlocksCommandInput): import("@smithy/core/client").CommandImpl<ListSnapshotBlocksCommandInput, ListSnapshotBlocksCommandOutput, EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: ListSnapshotBlocksCommandInput): import("@smithy/core/client").CommandImpl<ListSnapshotBlocksCommandInput, ListSnapshotBlocksCommandOutput, EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: ListSnapshotBlocksCommandInput): import("@smithy/core/client").CommandImpl<ListSnapshotBlocksCommandInput, ListSnapshotBlocksCommandOutput, import("..").EBSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: ListSnapshotBlocksCommandInput): import("@smithy/core/client").CommandImpl<ListSnapshotBlocksCommandInput, ListSnapshotBlocksCommandOutput, import("..").EBSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Returns information about the blocks in an Amazon Elastic Block Store snapshot.</p>
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer, StreamingBlobPayloadInputTypes } from "@smithy/types";
3
- import type { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient";
4
2
  import type { PutSnapshotBlockRequest, PutSnapshotBlockResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -23,11 +20,9 @@ export interface PutSnapshotBlockCommandInput extends Omit<PutSnapshotBlockReque
23
20
  export interface PutSnapshotBlockCommandOutput extends PutSnapshotBlockResponse, __MetadataBearer {
24
21
  }
25
22
  declare const PutSnapshotBlockCommand_base: {
26
- new (input: PutSnapshotBlockCommandInput): import("@smithy/core/client").CommandImpl<PutSnapshotBlockCommandInput, PutSnapshotBlockCommandOutput, EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- new (input: PutSnapshotBlockCommandInput): import("@smithy/core/client").CommandImpl<PutSnapshotBlockCommandInput, PutSnapshotBlockCommandOutput, EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
28
- getEndpointParameterInstructions(): {
29
- [x: string]: unknown;
30
- };
23
+ new (input: PutSnapshotBlockCommandInput): import("@smithy/core/client").CommandImpl<PutSnapshotBlockCommandInput, PutSnapshotBlockCommandOutput, import("..").EBSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ new (input: PutSnapshotBlockCommandInput): import("@smithy/core/client").CommandImpl<PutSnapshotBlockCommandInput, PutSnapshotBlockCommandOutput, import("..").EBSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
31
26
  };
32
27
  /**
33
28
  * <p>Writes a block of data to a snapshot. If the specified block contains
@@ -1,12 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import type { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient";
4
2
  import type { StartSnapshotRequest, StartSnapshotResponse } from "../models/models_0";
5
3
  /**
6
4
  * @public
7
5
  */
8
6
  export type { __MetadataBearer };
9
- export { $Command };
10
7
  /**
11
8
  * @public
12
9
  *
@@ -22,11 +19,9 @@ export interface StartSnapshotCommandInput extends StartSnapshotRequest {
22
19
  export interface StartSnapshotCommandOutput extends StartSnapshotResponse, __MetadataBearer {
23
20
  }
24
21
  declare const StartSnapshotCommand_base: {
25
- new (input: StartSnapshotCommandInput): import("@smithy/core/client").CommandImpl<StartSnapshotCommandInput, StartSnapshotCommandOutput, EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
- new (input: StartSnapshotCommandInput): import("@smithy/core/client").CommandImpl<StartSnapshotCommandInput, StartSnapshotCommandOutput, EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
- getEndpointParameterInstructions(): {
28
- [x: string]: unknown;
29
- };
22
+ new (input: StartSnapshotCommandInput): import("@smithy/core/client").CommandImpl<StartSnapshotCommandInput, StartSnapshotCommandOutput, import("..").EBSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
23
+ new (input: StartSnapshotCommandInput): import("@smithy/core/client").CommandImpl<StartSnapshotCommandInput, StartSnapshotCommandOutput, import("..").EBSClientResolvedConfig, import("..").ServiceInputTypes, import("..").ServiceOutputTypes>;
24
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
30
25
  };
31
26
  /**
32
27
  * <p>Creates a new Amazon EBS snapshot. The new snapshot enters the <code>pending</code> state
@@ -25,6 +25,7 @@ export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameter
25
25
  export type { RuntimeExtension } from "./runtimeExtensions";
26
26
  export type { EBSExtensionConfiguration } from "./extensionConfiguration";
27
27
  export * from "./commands";
28
+ export { Command as $Command } from "@smithy/core/client";
28
29
  export * from "./schemas/schemas_0";
29
30
  export * from "./pagination";
30
31
  export * from "./models/enums";
@@ -13,7 +13,6 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
13
13
  region: string | import("@smithy/types").Provider<any>;
14
14
  requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
15
15
  retryMode: string | import("@smithy/types").Provider<string>;
16
- sha256: import("@smithy/types").HashConstructor;
17
16
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
18
17
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
18
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
@@ -24,6 +23,7 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
24
23
  [setting: string]: unknown;
25
24
  };
26
25
  apiVersion: string;
26
+ sha256: import("@smithy/types").HashConstructor;
27
27
  urlParser: import("@smithy/types").UrlParser;
28
28
  base64Decoder: import("@smithy/types").Decoder;
29
29
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -14,7 +14,6 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
14
14
  region: string | import("@smithy/types").Provider<string>;
15
15
  requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
16
16
  retryMode: string | import("@smithy/types").Provider<string>;
17
- sha256: import("@smithy/types").HashConstructor;
18
17
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
19
18
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
19
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -26,6 +25,7 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
26
25
  [setting: string]: unknown;
27
26
  };
28
27
  apiVersion: string;
28
+ sha256: import("@smithy/types").HashConstructor;
29
29
  urlParser: import("@smithy/types").UrlParser;
30
30
  base64Decoder: import("@smithy/types").Decoder;
31
31
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -4,7 +4,6 @@ import type { EBSClientConfig } from "./EBSClient";
4
4
  */
5
5
  export declare const getRuntimeConfig: (config: EBSClientConfig) => {
6
6
  runtime: string;
7
- sha256: import("@smithy/types").HashConstructor;
8
7
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
8
  cacheMiddleware?: boolean;
10
9
  protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
@@ -13,6 +12,7 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
13
12
  [setting: string]: unknown;
14
13
  };
15
14
  apiVersion: string;
15
+ sha256: import("@smithy/types").HashConstructor;
16
16
  urlParser: import("@smithy/types").UrlParser;
17
17
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
18
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
@@ -22,6 +22,7 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
22
22
  };
23
23
  sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
24
24
  serviceId: string;
25
+ sha256: import("@smithy/types").HashConstructor;
25
26
  urlParser: import("@smithy/types").UrlParser;
26
27
  utf8Decoder: import("@smithy/types").Decoder;
27
28
  utf8Encoder: (input: Uint8Array | string) => string;
@@ -0,0 +1,46 @@
1
+ import { EndpointParameterInstructions } from "@smithy/types";
2
+ import {
3
+ EBSClientResolvedConfig,
4
+ ServiceInputTypes,
5
+ ServiceOutputTypes,
6
+ } from "./EBSClient";
7
+ export declare const command: <
8
+ I extends ServiceInputTypes,
9
+ O extends ServiceOutputTypes
10
+ >(
11
+ added: EndpointParameterInstructions,
12
+ plugins: (
13
+ CommandCtor: any,
14
+ clientStack: any,
15
+ config: any,
16
+ options: any
17
+ ) => import("@smithy/types").Pluggable<any, any>[],
18
+ op: string,
19
+ $: import("@smithy/types").StaticOperationSchema,
20
+ smithyContext?: Record<string, unknown>
21
+ ) => {
22
+ new (input: I): import("@smithy/core/client").CommandImpl<
23
+ I,
24
+ O,
25
+ EBSClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ ...[input]: import("@smithy/types").OptionalParameter<I>
31
+ ): import("@smithy/core/client").CommandImpl<
32
+ I,
33
+ O,
34
+ EBSClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): EndpointParameterInstructions;
39
+ };
40
+ export declare const _ep0: EndpointParameterInstructions;
41
+ export declare const _mw0: (
42
+ Command: any,
43
+ cs: any,
44
+ config: any,
45
+ o: any
46
+ ) => never[];
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- EBSClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../EBSClient";
8
2
  import {
9
3
  CompleteSnapshotRequest,
10
4
  CompleteSnapshotResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface CompleteSnapshotCommandInput extends CompleteSnapshotRequest {}
15
8
  export interface CompleteSnapshotCommandOutput
16
9
  extends CompleteSnapshotResponse,
@@ -21,22 +14,20 @@ declare const CompleteSnapshotCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  CompleteSnapshotCommandInput,
23
16
  CompleteSnapshotCommandOutput,
24
- EBSClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").EBSClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: CompleteSnapshotCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  CompleteSnapshotCommandInput,
32
25
  CompleteSnapshotCommandOutput,
33
- EBSClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").EBSClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class CompleteSnapshotCommand extends CompleteSnapshotCommand_base {
42
33
  protected static __types: {
@@ -1,19 +1,12 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import {
3
2
  MetadataBearer as __MetadataBearer,
4
3
  StreamingBlobPayloadOutputTypes,
5
4
  } from "@smithy/types";
6
- import {
7
- EBSClientResolvedConfig,
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- } from "../EBSClient";
11
5
  import {
12
6
  GetSnapshotBlockRequest,
13
7
  GetSnapshotBlockResponse,
14
8
  } from "../models/models_0";
15
9
  export { __MetadataBearer };
16
- export { $Command };
17
10
  export interface GetSnapshotBlockCommandInput extends GetSnapshotBlockRequest {}
18
11
  export interface GetSnapshotBlockCommandOutput
19
12
  extends Pick<
@@ -29,22 +22,20 @@ declare const GetSnapshotBlockCommand_base: {
29
22
  ): import("@smithy/core/client").CommandImpl<
30
23
  GetSnapshotBlockCommandInput,
31
24
  GetSnapshotBlockCommandOutput,
32
- EBSClientResolvedConfig,
33
- ServiceInputTypes,
34
- ServiceOutputTypes
25
+ import("..").EBSClientResolvedConfig,
26
+ import("..").ServiceInputTypes,
27
+ import("..").ServiceOutputTypes
35
28
  >;
36
29
  new (
37
30
  input: GetSnapshotBlockCommandInput
38
31
  ): import("@smithy/core/client").CommandImpl<
39
32
  GetSnapshotBlockCommandInput,
40
33
  GetSnapshotBlockCommandOutput,
41
- EBSClientResolvedConfig,
42
- ServiceInputTypes,
43
- ServiceOutputTypes
34
+ import("..").EBSClientResolvedConfig,
35
+ import("..").ServiceInputTypes,
36
+ import("..").ServiceOutputTypes
44
37
  >;
45
- getEndpointParameterInstructions(): {
46
- [x: string]: unknown;
47
- };
38
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
48
39
  };
49
40
  export declare class GetSnapshotBlockCommand extends GetSnapshotBlockCommand_base {
50
41
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- EBSClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../EBSClient";
8
2
  import {
9
3
  ListChangedBlocksRequest,
10
4
  ListChangedBlocksResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListChangedBlocksCommandInput
15
8
  extends ListChangedBlocksRequest {}
16
9
  export interface ListChangedBlocksCommandOutput
@@ -22,22 +15,20 @@ declare const ListChangedBlocksCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListChangedBlocksCommandInput,
24
17
  ListChangedBlocksCommandOutput,
25
- EBSClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").EBSClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: ListChangedBlocksCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListChangedBlocksCommandInput,
33
26
  ListChangedBlocksCommandOutput,
34
- EBSClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").EBSClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListChangedBlocksCommand extends ListChangedBlocksCommand_base {
43
34
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- EBSClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../EBSClient";
8
2
  import {
9
3
  ListSnapshotBlocksRequest,
10
4
  ListSnapshotBlocksResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface ListSnapshotBlocksCommandInput
15
8
  extends ListSnapshotBlocksRequest {}
16
9
  export interface ListSnapshotBlocksCommandOutput
@@ -22,22 +15,20 @@ declare const ListSnapshotBlocksCommand_base: {
22
15
  ): import("@smithy/core/client").CommandImpl<
23
16
  ListSnapshotBlocksCommandInput,
24
17
  ListSnapshotBlocksCommandOutput,
25
- EBSClientResolvedConfig,
26
- ServiceInputTypes,
27
- ServiceOutputTypes
18
+ import("..").EBSClientResolvedConfig,
19
+ import("..").ServiceInputTypes,
20
+ import("..").ServiceOutputTypes
28
21
  >;
29
22
  new (
30
23
  input: ListSnapshotBlocksCommandInput
31
24
  ): import("@smithy/core/client").CommandImpl<
32
25
  ListSnapshotBlocksCommandInput,
33
26
  ListSnapshotBlocksCommandOutput,
34
- EBSClientResolvedConfig,
35
- ServiceInputTypes,
36
- ServiceOutputTypes
27
+ import("..").EBSClientResolvedConfig,
28
+ import("..").ServiceInputTypes,
29
+ import("..").ServiceOutputTypes
37
30
  >;
38
- getEndpointParameterInstructions(): {
39
- [x: string]: unknown;
40
- };
31
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
41
32
  };
42
33
  export declare class ListSnapshotBlocksCommand extends ListSnapshotBlocksCommand_base {
43
34
  protected static __types: {
@@ -1,19 +1,12 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import {
3
2
  MetadataBearer as __MetadataBearer,
4
3
  StreamingBlobPayloadInputTypes,
5
4
  } from "@smithy/types";
6
- import {
7
- EBSClientResolvedConfig,
8
- ServiceInputTypes,
9
- ServiceOutputTypes,
10
- } from "../EBSClient";
11
5
  import {
12
6
  PutSnapshotBlockRequest,
13
7
  PutSnapshotBlockResponse,
14
8
  } from "../models/models_0";
15
9
  export { __MetadataBearer };
16
- export { $Command };
17
10
  export interface PutSnapshotBlockCommandInput
18
11
  extends Pick<
19
12
  PutSnapshotBlockRequest,
@@ -30,22 +23,20 @@ declare const PutSnapshotBlockCommand_base: {
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  PutSnapshotBlockCommandInput,
32
25
  PutSnapshotBlockCommandOutput,
33
- EBSClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").EBSClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
30
  new (
38
31
  input: PutSnapshotBlockCommandInput
39
32
  ): import("@smithy/core/client").CommandImpl<
40
33
  PutSnapshotBlockCommandInput,
41
34
  PutSnapshotBlockCommandOutput,
42
- EBSClientResolvedConfig,
43
- ServiceInputTypes,
44
- ServiceOutputTypes
35
+ import("..").EBSClientResolvedConfig,
36
+ import("..").ServiceInputTypes,
37
+ import("..").ServiceOutputTypes
45
38
  >;
46
- getEndpointParameterInstructions(): {
47
- [x: string]: unknown;
48
- };
39
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
49
40
  };
50
41
  export declare class PutSnapshotBlockCommand extends PutSnapshotBlockCommand_base {
51
42
  protected static __types: {
@@ -1,16 +1,9 @@
1
- import { Command as $Command } from "@smithy/core/client";
2
1
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import {
4
- EBSClientResolvedConfig,
5
- ServiceInputTypes,
6
- ServiceOutputTypes,
7
- } from "../EBSClient";
8
2
  import {
9
3
  StartSnapshotRequest,
10
4
  StartSnapshotResponse,
11
5
  } from "../models/models_0";
12
6
  export { __MetadataBearer };
13
- export { $Command };
14
7
  export interface StartSnapshotCommandInput extends StartSnapshotRequest {}
15
8
  export interface StartSnapshotCommandOutput
16
9
  extends StartSnapshotResponse,
@@ -21,22 +14,20 @@ declare const StartSnapshotCommand_base: {
21
14
  ): import("@smithy/core/client").CommandImpl<
22
15
  StartSnapshotCommandInput,
23
16
  StartSnapshotCommandOutput,
24
- EBSClientResolvedConfig,
25
- ServiceInputTypes,
26
- ServiceOutputTypes
17
+ import("..").EBSClientResolvedConfig,
18
+ import("..").ServiceInputTypes,
19
+ import("..").ServiceOutputTypes
27
20
  >;
28
21
  new (
29
22
  input: StartSnapshotCommandInput
30
23
  ): import("@smithy/core/client").CommandImpl<
31
24
  StartSnapshotCommandInput,
32
25
  StartSnapshotCommandOutput,
33
- EBSClientResolvedConfig,
34
- ServiceInputTypes,
35
- ServiceOutputTypes
26
+ import("..").EBSClientResolvedConfig,
27
+ import("..").ServiceInputTypes,
28
+ import("..").ServiceOutputTypes
36
29
  >;
37
- getEndpointParameterInstructions(): {
38
- [x: string]: unknown;
39
- };
30
+ getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions;
40
31
  };
41
32
  export declare class StartSnapshotCommand extends StartSnapshotCommand_base {
42
33
  protected static __types: {
@@ -4,6 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
4
  export { RuntimeExtension } from "./runtimeExtensions";
5
5
  export { EBSExtensionConfiguration } from "./extensionConfiguration";
6
6
  export * from "./commands";
7
+ export { Command as $Command } from "@smithy/core/client";
7
8
  export * from "./schemas/schemas_0";
8
9
  export * from "./pagination";
9
10
  export * from "./models/enums";
@@ -20,7 +20,6 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
20
20
  | import("@smithy/core/protocols").HttpHandler<any>
21
21
  | RequestHandler;
22
22
  retryMode: string | import("@smithy/types").Provider<string>;
23
- sha256: import("@smithy/types").HashConstructor;
24
23
  streamCollector: (
25
24
  stream:
26
25
  | import("stream").Readable
@@ -42,6 +41,7 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
42
41
  [setting: string]: unknown;
43
42
  };
44
43
  apiVersion: string;
44
+ sha256: import("@smithy/types").HashConstructor;
45
45
  urlParser: import("@smithy/types").UrlParser;
46
46
  base64Decoder: import("@smithy/types").Decoder;
47
47
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -21,7 +21,6 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
21
21
  | RequestHandler
22
22
  | import("@smithy/core/protocols").HttpHandler<any>;
23
23
  retryMode: string | import("@smithy/types").Provider<string>;
24
- sha256: import("@smithy/types").HashConstructor;
25
24
  streamCollector: (
26
25
  stream:
27
26
  | import("stream").Readable
@@ -42,6 +41,7 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
42
41
  [setting: string]: unknown;
43
42
  };
44
43
  apiVersion: string;
44
+ sha256: import("@smithy/types").HashConstructor;
45
45
  urlParser: import("@smithy/types").UrlParser;
46
46
  base64Decoder: import("@smithy/types").Decoder;
47
47
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -1,7 +1,6 @@
1
1
  import { EBSClientConfig } from "./EBSClient";
2
2
  export declare const getRuntimeConfig: (config: EBSClientConfig) => {
3
3
  runtime: string;
4
- sha256: import("@smithy/types").HashConstructor;
5
4
  requestHandler:
6
5
  | import("@smithy/types").NodeHttpHandlerOptions
7
6
  | import("@smithy/types").FetchHttpHandlerOptions
@@ -18,6 +17,7 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
18
17
  [setting: string]: unknown;
19
18
  };
20
19
  apiVersion: string;
20
+ sha256: import("@smithy/types").HashConstructor;
21
21
  urlParser: import("@smithy/types").UrlParser;
22
22
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
23
23
  streamCollector: (
@@ -25,6 +25,7 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
25
25
  };
26
26
  sdkStreamMixin: import("@smithy/types").SdkStreamMixinInjector;
27
27
  serviceId: string;
28
+ sha256: import("@smithy/types").HashConstructor;
28
29
  urlParser: import("@smithy/types").UrlParser;
29
30
  utf8Decoder: import("@smithy/types").Decoder;
30
31
  utf8Encoder: (input: Uint8Array | string) => string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-ebs",
3
3
  "description": "AWS SDK for JavaScript Ebs Client for Node.js, Browser and React Native",
4
- "version": "3.1076.0",
4
+ "version": "3.1078.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",
@@ -19,15 +19,13 @@
19
19
  "module": "./dist-es/index.js",
20
20
  "sideEffects": false,
21
21
  "dependencies": {
22
- "@aws-crypto/sha256-browser": "5.2.0",
23
- "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.974.24",
25
- "@aws-sdk/credential-provider-node": "^3.972.59",
26
- "@aws-sdk/types": "^3.973.14",
27
- "@smithy/core": "^3.27.0",
28
- "@smithy/fetch-http-handler": "^5.6.0",
29
- "@smithy/node-http-handler": "^4.9.0",
30
- "@smithy/types": "^4.15.0",
22
+ "@aws-sdk/core": "^3.974.26",
23
+ "@aws-sdk/credential-provider-node": "^3.972.61",
24
+ "@aws-sdk/types": "^3.973.15",
25
+ "@smithy/core": "^3.29.0",
26
+ "@smithy/fetch-http-handler": "^5.6.2",
27
+ "@smithy/node-http-handler": "^4.9.2",
28
+ "@smithy/types": "^4.15.1",
31
29
  "tslib": "^2.6.2"
32
30
  },
33
31
  "devDependencies": {