@aws-sdk/client-ebs 3.168.0 → 3.170.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.
@@ -1,24 +1,50 @@
1
-
2
- import { Command as $Command } from "@aws-sdk/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
- import { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient";
5
- import { PutSnapshotBlockRequest, PutSnapshotBlockResponse } from "../models/models_0";
6
- declare type PutSnapshotBlockCommandInputType = Pick<PutSnapshotBlockRequest, Exclude<keyof PutSnapshotBlockRequest, "BlockData">> & {
7
-
8
- BlockData: PutSnapshotBlockRequest["BlockData"] | string | Uint8Array | Buffer;
9
- };
10
-
11
- export interface PutSnapshotBlockCommandInput extends PutSnapshotBlockCommandInputType {
12
- }
13
- export interface PutSnapshotBlockCommandOutput extends PutSnapshotBlockResponse, __MetadataBearer {
14
- }
15
-
16
- export declare class PutSnapshotBlockCommand extends $Command<PutSnapshotBlockCommandInput, PutSnapshotBlockCommandOutput, EBSClientResolvedConfig> {
17
- readonly input: PutSnapshotBlockCommandInput;
18
- constructor(input: PutSnapshotBlockCommandInput);
19
-
20
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EBSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PutSnapshotBlockCommandInput, PutSnapshotBlockCommandOutput>;
21
- private serialize;
22
- private deserialize;
23
- }
24
- export {};
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ EBSClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EBSClient";
13
+ import {
14
+ PutSnapshotBlockRequest,
15
+ PutSnapshotBlockResponse,
16
+ } from "../models/models_0";
17
+ declare type PutSnapshotBlockCommandInputType = Pick<
18
+ PutSnapshotBlockRequest,
19
+ Exclude<keyof PutSnapshotBlockRequest, "BlockData">
20
+ > & {
21
+ BlockData:
22
+ | PutSnapshotBlockRequest["BlockData"]
23
+ | string
24
+ | Uint8Array
25
+ | Buffer;
26
+ };
27
+
28
+ export interface PutSnapshotBlockCommandInput
29
+ extends PutSnapshotBlockCommandInputType {}
30
+ export interface PutSnapshotBlockCommandOutput
31
+ extends PutSnapshotBlockResponse,
32
+ __MetadataBearer {}
33
+
34
+ export declare class PutSnapshotBlockCommand extends $Command<
35
+ PutSnapshotBlockCommandInput,
36
+ PutSnapshotBlockCommandOutput,
37
+ EBSClientResolvedConfig
38
+ > {
39
+ readonly input: PutSnapshotBlockCommandInput;
40
+ constructor(input: PutSnapshotBlockCommandInput);
41
+
42
+ resolveMiddleware(
43
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
44
+ configuration: EBSClientResolvedConfig,
45
+ options?: __HttpHandlerOptions
46
+ ): Handler<PutSnapshotBlockCommandInput, PutSnapshotBlockCommandOutput>;
47
+ private serialize;
48
+ private deserialize;
49
+ }
50
+ export {};
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { EBSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EBSClient";
4
- import { StartSnapshotRequest, StartSnapshotResponse } from "../models/models_0";
5
- export interface StartSnapshotCommandInput extends StartSnapshotRequest {
6
- }
7
- export interface StartSnapshotCommandOutput extends StartSnapshotResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class StartSnapshotCommand extends $Command<StartSnapshotCommandInput, StartSnapshotCommandOutput, EBSClientResolvedConfig> {
11
- readonly input: StartSnapshotCommandInput;
12
- constructor(input: StartSnapshotCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: EBSClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartSnapshotCommandInput, StartSnapshotCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ EBSClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../EBSClient";
13
+ import {
14
+ StartSnapshotRequest,
15
+ StartSnapshotResponse,
16
+ } from "../models/models_0";
17
+ export interface StartSnapshotCommandInput extends StartSnapshotRequest {}
18
+ export interface StartSnapshotCommandOutput
19
+ extends StartSnapshotResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class StartSnapshotCommand extends $Command<
23
+ StartSnapshotCommandInput,
24
+ StartSnapshotCommandOutput,
25
+ EBSClientResolvedConfig
26
+ > {
27
+ readonly input: StartSnapshotCommandInput;
28
+ constructor(input: StartSnapshotCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: EBSClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<StartSnapshotCommandInput, StartSnapshotCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,6 +1,6 @@
1
- export * from "./CompleteSnapshotCommand";
2
- export * from "./GetSnapshotBlockCommand";
3
- export * from "./ListChangedBlocksCommand";
4
- export * from "./ListSnapshotBlocksCommand";
5
- export * from "./PutSnapshotBlockCommand";
6
- export * from "./StartSnapshotCommand";
1
+ export * from "./CompleteSnapshotCommand";
2
+ export * from "./GetSnapshotBlockCommand";
3
+ export * from "./ListChangedBlocksCommand";
4
+ export * from "./ListSnapshotBlocksCommand";
5
+ export * from "./PutSnapshotBlockCommand";
6
+ export * from "./StartSnapshotCommand";
@@ -1,2 +1,2 @@
1
- import { RegionInfoProvider } from "@aws-sdk/types";
2
- export declare const defaultRegionInfoProvider: RegionInfoProvider;
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -1,6 +1,6 @@
1
- export * from "./EBS";
2
- export * from "./EBSClient";
3
- export * from "./commands";
4
- export * from "./models";
5
- export * from "./pagination";
6
- export { EBSServiceException } from "./models/EBSServiceException";
1
+ export * from "./EBS";
2
+ export * from "./EBSClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { EBSServiceException } from "./models/EBSServiceException";
@@ -1,6 +1,8 @@
1
- import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
-
3
- export declare class EBSServiceException extends __ServiceException {
4
-
5
- constructor(options: __ServiceExceptionOptions);
6
- }
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@aws-sdk/smithy-client";
5
+
6
+ export declare class EBSServiceException extends __ServiceException {
7
+ constructor(options: __ServiceExceptionOptions);
8
+ }
@@ -1 +1 @@
1
- export * from "./models_0";
1
+ export * from "./models_0";