@aws-sdk/client-ebs 3.170.0 → 3.178.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.178.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.177.0...v3.178.0) (2022-09-23)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-ebs
9
+
10
+
11
+
12
+
13
+
14
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-ebs
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-ebs
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
31
31
  tls?: boolean | undefined;
32
32
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
33
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
35
35
  signingEscapePath?: boolean | undefined;
36
36
  systemClockOffset?: number | undefined;
37
37
  signingRegion?: string | undefined;
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
31
31
  tls?: boolean | undefined;
32
32
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
33
33
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
34
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
34
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
35
35
  signingEscapePath?: boolean | undefined;
36
36
  systemClockOffset?: number | undefined;
37
37
  signingRegion?: string | undefined;
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
30
30
  tls?: boolean | undefined;
31
31
  retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
32
32
  credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
33
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
34
34
  signingEscapePath?: boolean | undefined;
35
35
  systemClockOffset?: number | undefined;
36
36
  signingRegion?: string | undefined;
@@ -24,7 +24,6 @@ import {
24
24
  StartSnapshotCommandOutput,
25
25
  } from "./commands/StartSnapshotCommand";
26
26
  import { EBSClient } from "./EBSClient";
27
-
28
27
  export declare class EBS extends EBSClient {
29
28
  completeSnapshot(
30
29
  args: CompleteSnapshotCommandInput,
@@ -39,7 +38,6 @@ export declare class EBS extends EBSClient {
39
38
  options: __HttpHandlerOptions,
40
39
  cb: (err: any, data?: CompleteSnapshotCommandOutput) => void
41
40
  ): void;
42
-
43
41
  getSnapshotBlock(
44
42
  args: GetSnapshotBlockCommandInput,
45
43
  options?: __HttpHandlerOptions
@@ -53,7 +51,6 @@ export declare class EBS extends EBSClient {
53
51
  options: __HttpHandlerOptions,
54
52
  cb: (err: any, data?: GetSnapshotBlockCommandOutput) => void
55
53
  ): void;
56
-
57
54
  listChangedBlocks(
58
55
  args: ListChangedBlocksCommandInput,
59
56
  options?: __HttpHandlerOptions
@@ -67,7 +64,6 @@ export declare class EBS extends EBSClient {
67
64
  options: __HttpHandlerOptions,
68
65
  cb: (err: any, data?: ListChangedBlocksCommandOutput) => void
69
66
  ): void;
70
-
71
67
  listSnapshotBlocks(
72
68
  args: ListSnapshotBlocksCommandInput,
73
69
  options?: __HttpHandlerOptions
@@ -81,7 +77,6 @@ export declare class EBS extends EBSClient {
81
77
  options: __HttpHandlerOptions,
82
78
  cb: (err: any, data?: ListSnapshotBlocksCommandOutput) => void
83
79
  ): void;
84
-
85
80
  putSnapshotBlock(
86
81
  args: PutSnapshotBlockCommandInput,
87
82
  options?: __HttpHandlerOptions
@@ -95,7 +90,6 @@ export declare class EBS extends EBSClient {
95
90
  options: __HttpHandlerOptions,
96
91
  cb: (err: any, data?: PutSnapshotBlockCommandOutput) => void
97
92
  ): void;
98
-
99
93
  startSnapshot(
100
94
  args: StartSnapshotCommandInput,
101
95
  options?: __HttpHandlerOptions
@@ -83,47 +83,26 @@ export declare type ServiceOutputTypes =
83
83
  export interface ClientDefaults
84
84
  extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
85
85
  requestHandler?: __HttpHandler;
86
-
87
86
  sha256?: __HashConstructor;
88
-
89
87
  urlParser?: __UrlParser;
90
-
91
88
  bodyLengthChecker?: __BodyLengthCalculator;
92
-
93
89
  streamCollector?: __StreamCollector;
94
-
95
90
  base64Decoder?: __Decoder;
96
-
97
91
  base64Encoder?: __Encoder;
98
-
99
92
  utf8Decoder?: __Decoder;
100
-
101
93
  utf8Encoder?: __Encoder;
102
-
103
94
  runtime?: string;
104
-
105
95
  disableHostPrefix?: boolean;
106
-
107
96
  maxAttempts?: number | __Provider<number>;
108
-
109
97
  retryMode?: string | __Provider<string>;
110
-
111
98
  logger?: __Logger;
112
-
113
99
  useDualstackEndpoint?: boolean | __Provider<boolean>;
114
-
115
100
  useFipsEndpoint?: boolean | __Provider<boolean>;
116
-
117
101
  serviceId?: string;
118
-
119
102
  region?: string | __Provider<string>;
120
-
121
103
  credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
122
-
123
104
  regionInfoProvider?: RegionInfoProvider;
124
-
125
105
  defaultUserAgentProvider?: Provider<__UserAgent>;
126
-
127
106
  defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
128
107
  }
129
108
  declare type EBSClientConfigType = Partial<
@@ -136,7 +115,6 @@ declare type EBSClientConfigType = Partial<
136
115
  HostHeaderInputConfig &
137
116
  AwsAuthInputConfig &
138
117
  UserAgentInputConfig;
139
-
140
118
  export interface EBSClientConfig extends EBSClientConfigType {}
141
119
  declare type EBSClientResolvedConfigType =
142
120
  __SmithyResolvedConfiguration<__HttpHandlerOptions> &
@@ -147,9 +125,7 @@ declare type EBSClientResolvedConfigType =
147
125
  HostHeaderResolvedConfig &
148
126
  AwsAuthResolvedConfig &
149
127
  UserAgentResolvedConfig;
150
-
151
128
  export interface EBSClientResolvedConfig extends EBSClientResolvedConfigType {}
152
-
153
129
  export declare class EBSClient extends __Client<
154
130
  __HttpHandlerOptions,
155
131
  ServiceInputTypes,
@@ -158,7 +134,6 @@ export declare class EBSClient extends __Client<
158
134
  > {
159
135
  readonly config: EBSClientResolvedConfig;
160
136
  constructor(configuration: EBSClientConfig);
161
-
162
137
  destroy(): void;
163
138
  }
164
139
  export {};
@@ -18,7 +18,6 @@ export interface CompleteSnapshotCommandInput extends CompleteSnapshotRequest {}
18
18
  export interface CompleteSnapshotCommandOutput
19
19
  extends CompleteSnapshotResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class CompleteSnapshotCommand extends $Command<
23
22
  CompleteSnapshotCommandInput,
24
23
  CompleteSnapshotCommandOutput,
@@ -26,7 +25,6 @@ export declare class CompleteSnapshotCommand extends $Command<
26
25
  > {
27
26
  readonly input: CompleteSnapshotCommandInput;
28
27
  constructor(input: CompleteSnapshotCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: EBSClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface GetSnapshotBlockCommandInput extends GetSnapshotBlockRequest {}
18
18
  export interface GetSnapshotBlockCommandOutput
19
19
  extends GetSnapshotBlockResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class GetSnapshotBlockCommand extends $Command<
23
22
  GetSnapshotBlockCommandInput,
24
23
  GetSnapshotBlockCommandOutput,
@@ -26,7 +25,6 @@ export declare class GetSnapshotBlockCommand extends $Command<
26
25
  > {
27
26
  readonly input: GetSnapshotBlockCommandInput;
28
27
  constructor(input: GetSnapshotBlockCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: EBSClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface ListChangedBlocksCommandInput
19
19
  export interface ListChangedBlocksCommandOutput
20
20
  extends ListChangedBlocksResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class ListChangedBlocksCommand extends $Command<
24
23
  ListChangedBlocksCommandInput,
25
24
  ListChangedBlocksCommandOutput,
@@ -27,7 +26,6 @@ export declare class ListChangedBlocksCommand extends $Command<
27
26
  > {
28
27
  readonly input: ListChangedBlocksCommandInput;
29
28
  constructor(input: ListChangedBlocksCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: EBSClientResolvedConfig,
@@ -19,7 +19,6 @@ export interface ListSnapshotBlocksCommandInput
19
19
  export interface ListSnapshotBlocksCommandOutput
20
20
  extends ListSnapshotBlocksResponse,
21
21
  __MetadataBearer {}
22
-
23
22
  export declare class ListSnapshotBlocksCommand extends $Command<
24
23
  ListSnapshotBlocksCommandInput,
25
24
  ListSnapshotBlocksCommandOutput,
@@ -27,7 +26,6 @@ export declare class ListSnapshotBlocksCommand extends $Command<
27
26
  > {
28
27
  readonly input: ListSnapshotBlocksCommandInput;
29
28
  constructor(input: ListSnapshotBlocksCommandInput);
30
-
31
29
  resolveMiddleware(
32
30
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
31
  configuration: EBSClientResolvedConfig,
@@ -24,13 +24,11 @@ declare type PutSnapshotBlockCommandInputType = Pick<
24
24
  | Uint8Array
25
25
  | Buffer;
26
26
  };
27
-
28
27
  export interface PutSnapshotBlockCommandInput
29
28
  extends PutSnapshotBlockCommandInputType {}
30
29
  export interface PutSnapshotBlockCommandOutput
31
30
  extends PutSnapshotBlockResponse,
32
31
  __MetadataBearer {}
33
-
34
32
  export declare class PutSnapshotBlockCommand extends $Command<
35
33
  PutSnapshotBlockCommandInput,
36
34
  PutSnapshotBlockCommandOutput,
@@ -38,7 +36,6 @@ export declare class PutSnapshotBlockCommand extends $Command<
38
36
  > {
39
37
  readonly input: PutSnapshotBlockCommandInput;
40
38
  constructor(input: PutSnapshotBlockCommandInput);
41
-
42
39
  resolveMiddleware(
43
40
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
44
41
  configuration: EBSClientResolvedConfig,
@@ -18,7 +18,6 @@ export interface StartSnapshotCommandInput extends StartSnapshotRequest {}
18
18
  export interface StartSnapshotCommandOutput
19
19
  extends StartSnapshotResponse,
20
20
  __MetadataBearer {}
21
-
22
21
  export declare class StartSnapshotCommand extends $Command<
23
22
  StartSnapshotCommandInput,
24
23
  StartSnapshotCommandOutput,
@@ -26,7 +25,6 @@ export declare class StartSnapshotCommand extends $Command<
26
25
  > {
27
26
  readonly input: StartSnapshotCommandInput;
28
27
  constructor(input: StartSnapshotCommandInput);
29
-
30
28
  resolveMiddleware(
31
29
  clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
30
  configuration: EBSClientResolvedConfig,
@@ -2,7 +2,6 @@ import {
2
2
  ServiceException as __ServiceException,
3
3
  ServiceExceptionOptions as __ServiceExceptionOptions,
4
4
  } from "@aws-sdk/smithy-client";
5
-
6
5
  export declare class EBSServiceException extends __ServiceException {
7
6
  constructor(options: __ServiceExceptionOptions);
8
7
  }
@@ -5,30 +5,22 @@ export declare enum AccessDeniedExceptionReason {
5
5
  DEPENDENCY_ACCESS_DENIED = "DEPENDENCY_ACCESS_DENIED",
6
6
  UNAUTHORIZED_ACCOUNT = "UNAUTHORIZED_ACCOUNT",
7
7
  }
8
-
9
8
  export declare class AccessDeniedException extends __BaseException {
10
9
  readonly name: "AccessDeniedException";
11
10
  readonly $fault: "client";
12
11
  Message?: string;
13
-
14
12
  Reason: AccessDeniedExceptionReason | string | undefined;
15
-
16
13
  constructor(
17
14
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
18
15
  );
19
16
  }
20
-
21
17
  export interface Block {
22
18
  BlockIndex?: number;
23
-
24
19
  BlockToken?: string;
25
20
  }
26
-
27
21
  export interface ChangedBlock {
28
22
  BlockIndex?: number;
29
-
30
23
  FirstBlockToken?: string;
31
-
32
24
  SecondBlockToken?: string;
33
25
  }
34
26
  export declare enum ChecksumAggregationMethod {
@@ -39,13 +31,9 @@ export declare enum ChecksumAlgorithm {
39
31
  }
40
32
  export interface CompleteSnapshotRequest {
41
33
  SnapshotId: string | undefined;
42
-
43
34
  ChangedBlocksCount: number | undefined;
44
-
45
35
  Checksum?: string;
46
-
47
36
  ChecksumAlgorithm?: ChecksumAlgorithm | string;
48
-
49
37
  ChecksumAggregationMethod?: ChecksumAggregationMethod | string;
50
38
  }
51
39
  export declare enum Status {
@@ -56,12 +44,10 @@ export declare enum Status {
56
44
  export interface CompleteSnapshotResponse {
57
45
  Status?: Status | string;
58
46
  }
59
-
60
47
  export declare class InternalServerException extends __BaseException {
61
48
  readonly name: "InternalServerException";
62
49
  readonly $fault: "server";
63
50
  Message?: string;
64
-
65
51
  constructor(
66
52
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
67
53
  );
@@ -71,14 +57,11 @@ export declare enum RequestThrottledExceptionReason {
71
57
  DEPENDENCY_REQUEST_THROTTLED = "DEPENDENCY_REQUEST_THROTTLED",
72
58
  RESOURCE_LEVEL_THROTTLE = "RESOURCE_LEVEL_THROTTLE",
73
59
  }
74
-
75
60
  export declare class RequestThrottledException extends __BaseException {
76
61
  readonly name: "RequestThrottledException";
77
62
  readonly $fault: "client";
78
63
  Message?: string;
79
-
80
64
  Reason?: RequestThrottledExceptionReason | string;
81
-
82
65
  constructor(
83
66
  opts: __ExceptionOptionType<RequestThrottledException, __BaseException>
84
67
  );
@@ -87,14 +70,11 @@ export declare enum ResourceNotFoundExceptionReason {
87
70
  DEPENDENCY_RESOURCE_NOT_FOUND = "DEPENDENCY_RESOURCE_NOT_FOUND",
88
71
  SNAPSHOT_NOT_FOUND = "SNAPSHOT_NOT_FOUND",
89
72
  }
90
-
91
73
  export declare class ResourceNotFoundException extends __BaseException {
92
74
  readonly name: "ResourceNotFoundException";
93
75
  readonly $fault: "client";
94
76
  Message?: string;
95
-
96
77
  Reason?: ResourceNotFoundExceptionReason | string;
97
-
98
78
  constructor(
99
79
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
100
80
  );
@@ -102,14 +82,11 @@ export declare class ResourceNotFoundException extends __BaseException {
102
82
  export declare enum ServiceQuotaExceededExceptionReason {
103
83
  DEPENDENCY_SERVICE_QUOTA_EXCEEDED = "DEPENDENCY_SERVICE_QUOTA_EXCEEDED",
104
84
  }
105
-
106
85
  export declare class ServiceQuotaExceededException extends __BaseException {
107
86
  readonly name: "ServiceQuotaExceededException";
108
87
  readonly $fault: "client";
109
88
  Message?: string;
110
-
111
89
  Reason?: ServiceQuotaExceededExceptionReason | string;
112
-
113
90
  constructor(
114
91
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
115
92
  );
@@ -128,24 +105,19 @@ export declare enum ValidationExceptionReason {
128
105
  INVALID_VOLUME_SIZE = "INVALID_VOLUME_SIZE",
129
106
  UNRELATED_SNAPSHOTS = "UNRELATED_SNAPSHOTS",
130
107
  }
131
-
132
108
  export declare class ValidationException extends __BaseException {
133
109
  readonly name: "ValidationException";
134
110
  readonly $fault: "client";
135
111
  Message?: string;
136
-
137
112
  Reason?: ValidationExceptionReason | string;
138
-
139
113
  constructor(
140
114
  opts: __ExceptionOptionType<ValidationException, __BaseException>
141
115
  );
142
116
  }
143
-
144
117
  export declare class ConcurrentLimitExceededException extends __BaseException {
145
118
  readonly name: "ConcurrentLimitExceededException";
146
119
  readonly $fault: "client";
147
120
  Message?: string;
148
-
149
121
  constructor(
150
122
  opts: __ExceptionOptionType<
151
123
  ConcurrentLimitExceededException,
@@ -153,187 +125,125 @@ export declare class ConcurrentLimitExceededException extends __BaseException {
153
125
  >
154
126
  );
155
127
  }
156
-
157
128
  export declare class ConflictException extends __BaseException {
158
129
  readonly name: "ConflictException";
159
130
  readonly $fault: "client";
160
131
  Message?: string;
161
-
162
132
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
163
133
  }
164
134
  export interface GetSnapshotBlockRequest {
165
135
  SnapshotId: string | undefined;
166
-
167
136
  BlockIndex: number | undefined;
168
-
169
137
  BlockToken: string | undefined;
170
138
  }
171
139
  export interface GetSnapshotBlockResponse {
172
140
  DataLength?: number;
173
-
174
141
  BlockData?: Readable | ReadableStream | Blob;
175
-
176
142
  Checksum?: string;
177
-
178
143
  ChecksumAlgorithm?: ChecksumAlgorithm | string;
179
144
  }
180
145
  export interface ListChangedBlocksRequest {
181
146
  FirstSnapshotId?: string;
182
-
183
147
  SecondSnapshotId: string | undefined;
184
-
185
148
  NextToken?: string;
186
-
187
149
  MaxResults?: number;
188
-
189
150
  StartingBlockIndex?: number;
190
151
  }
191
152
  export interface ListChangedBlocksResponse {
192
153
  ChangedBlocks?: ChangedBlock[];
193
-
194
154
  ExpiryTime?: Date;
195
-
196
155
  VolumeSize?: number;
197
-
198
156
  BlockSize?: number;
199
-
200
157
  NextToken?: string;
201
158
  }
202
159
  export interface ListSnapshotBlocksRequest {
203
160
  SnapshotId: string | undefined;
204
-
205
161
  NextToken?: string;
206
-
207
162
  MaxResults?: number;
208
-
209
163
  StartingBlockIndex?: number;
210
164
  }
211
165
  export interface ListSnapshotBlocksResponse {
212
166
  Blocks?: Block[];
213
-
214
167
  ExpiryTime?: Date;
215
-
216
168
  VolumeSize?: number;
217
-
218
169
  BlockSize?: number;
219
-
220
170
  NextToken?: string;
221
171
  }
222
172
  export interface PutSnapshotBlockRequest {
223
173
  SnapshotId: string | undefined;
224
-
225
174
  BlockIndex: number | undefined;
226
-
227
175
  BlockData: Readable | ReadableStream | Blob | undefined;
228
-
229
176
  DataLength: number | undefined;
230
-
231
177
  Progress?: number;
232
-
233
178
  Checksum: string | undefined;
234
-
235
179
  ChecksumAlgorithm: ChecksumAlgorithm | string | undefined;
236
180
  }
237
181
  export interface PutSnapshotBlockResponse {
238
182
  Checksum?: string;
239
-
240
183
  ChecksumAlgorithm?: ChecksumAlgorithm | string;
241
184
  }
242
-
243
185
  export interface Tag {
244
186
  Key?: string;
245
-
246
187
  Value?: string;
247
188
  }
248
189
  export interface StartSnapshotRequest {
249
190
  VolumeSize: number | undefined;
250
-
251
191
  ParentSnapshotId?: string;
252
-
253
192
  Tags?: Tag[];
254
-
255
193
  Description?: string;
256
-
257
194
  ClientToken?: string;
258
-
259
195
  Encrypted?: boolean;
260
-
261
196
  KmsKeyArn?: string;
262
-
263
197
  Timeout?: number;
264
198
  }
265
199
  export interface StartSnapshotResponse {
266
200
  Description?: string;
267
-
268
201
  SnapshotId?: string;
269
-
270
202
  OwnerId?: string;
271
-
272
203
  Status?: Status | string;
273
-
274
204
  StartTime?: Date;
275
-
276
205
  VolumeSize?: number;
277
-
278
206
  BlockSize?: number;
279
-
280
207
  Tags?: Tag[];
281
-
282
208
  ParentSnapshotId?: string;
283
-
284
209
  KmsKeyArn?: string;
285
210
  }
286
-
287
211
  export declare const BlockFilterSensitiveLog: (obj: Block) => any;
288
-
289
212
  export declare const ChangedBlockFilterSensitiveLog: (obj: ChangedBlock) => any;
290
-
291
213
  export declare const CompleteSnapshotRequestFilterSensitiveLog: (
292
214
  obj: CompleteSnapshotRequest
293
215
  ) => any;
294
-
295
216
  export declare const CompleteSnapshotResponseFilterSensitiveLog: (
296
217
  obj: CompleteSnapshotResponse
297
218
  ) => any;
298
-
299
219
  export declare const GetSnapshotBlockRequestFilterSensitiveLog: (
300
220
  obj: GetSnapshotBlockRequest
301
221
  ) => any;
302
-
303
222
  export declare const GetSnapshotBlockResponseFilterSensitiveLog: (
304
223
  obj: GetSnapshotBlockResponse
305
224
  ) => any;
306
-
307
225
  export declare const ListChangedBlocksRequestFilterSensitiveLog: (
308
226
  obj: ListChangedBlocksRequest
309
227
  ) => any;
310
-
311
228
  export declare const ListChangedBlocksResponseFilterSensitiveLog: (
312
229
  obj: ListChangedBlocksResponse
313
230
  ) => any;
314
-
315
231
  export declare const ListSnapshotBlocksRequestFilterSensitiveLog: (
316
232
  obj: ListSnapshotBlocksRequest
317
233
  ) => any;
318
-
319
234
  export declare const ListSnapshotBlocksResponseFilterSensitiveLog: (
320
235
  obj: ListSnapshotBlocksResponse
321
236
  ) => any;
322
-
323
237
  export declare const PutSnapshotBlockRequestFilterSensitiveLog: (
324
238
  obj: PutSnapshotBlockRequest
325
239
  ) => any;
326
-
327
240
  export declare const PutSnapshotBlockResponseFilterSensitiveLog: (
328
241
  obj: PutSnapshotBlockResponse
329
242
  ) => any;
330
-
331
243
  export declare const TagFilterSensitiveLog: (obj: Tag) => any;
332
-
333
244
  export declare const StartSnapshotRequestFilterSensitiveLog: (
334
245
  obj: StartSnapshotRequest
335
246
  ) => any;
336
-
337
247
  export declare const StartSnapshotResponseFilterSensitiveLog: (
338
248
  obj: StartSnapshotResponse
339
249
  ) => any;
@@ -1,6 +1,5 @@
1
1
  import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
2
  import { EBSClientConfig } from "./EBSClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: EBSClientConfig) => {
5
4
  runtime: string;
6
5
  defaultsMode: import("@aws-sdk/types").Provider<
@@ -51,7 +50,9 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
51
50
  | undefined;
52
51
  signer?:
53
52
  | import("@aws-sdk/types").RequestSigner
54
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
53
+ | ((
54
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
55
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
55
56
  | undefined;
56
57
  signingEscapePath?: boolean | undefined;
57
58
  systemClockOffset?: number | undefined;
@@ -1,6 +1,5 @@
1
1
  import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
2
  import { EBSClientConfig } from "./EBSClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: EBSClientConfig) => {
5
4
  runtime: string;
6
5
  defaultsMode: import("@aws-sdk/types").Provider<
@@ -51,7 +50,9 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
51
50
  | undefined;
52
51
  signer?:
53
52
  | import("@aws-sdk/types").RequestSigner
54
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
53
+ | ((
54
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
55
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
55
56
  | undefined;
56
57
  signingEscapePath?: boolean | undefined;
57
58
  systemClockOffset?: number | undefined;
@@ -1,5 +1,4 @@
1
1
  import { EBSClientConfig } from "./EBSClient";
2
-
3
2
  export declare const getRuntimeConfig: (config: EBSClientConfig) => {
4
3
  runtime: string;
5
4
  sha256: import("@aws-sdk/types").HashConstructor;
@@ -52,7 +51,9 @@ export declare const getRuntimeConfig: (config: EBSClientConfig) => {
52
51
  | undefined;
53
52
  signer?:
54
53
  | import("@aws-sdk/types").RequestSigner
55
- | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
54
+ | ((
55
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
56
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
56
57
  | undefined;
57
58
  signingEscapePath?: boolean | undefined;
58
59
  systemClockOffset?: number | undefined;
@@ -1,6 +1,5 @@
1
1
  import { Logger as __Logger } from "@aws-sdk/types";
2
2
  import { EBSClientConfig } from "./EBSClient";
3
-
4
3
  export declare const getRuntimeConfig: (config: EBSClientConfig) => {
5
4
  apiVersion: string;
6
5
  disableHostPrefix: boolean;
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.170.0",
4
+ "version": "3.178.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -19,35 +19,35 @@
19
19
  "dependencies": {
20
20
  "@aws-crypto/sha256-browser": "2.0.0",
21
21
  "@aws-crypto/sha256-js": "2.0.0",
22
- "@aws-sdk/client-sts": "3.170.0",
23
- "@aws-sdk/config-resolver": "3.170.0",
24
- "@aws-sdk/credential-provider-node": "3.170.0",
25
- "@aws-sdk/fetch-http-handler": "3.170.0",
26
- "@aws-sdk/hash-node": "3.170.0",
27
- "@aws-sdk/invalid-dependency": "3.170.0",
28
- "@aws-sdk/middleware-content-length": "3.170.0",
29
- "@aws-sdk/middleware-host-header": "3.170.0",
30
- "@aws-sdk/middleware-logger": "3.170.0",
31
- "@aws-sdk/middleware-recursion-detection": "3.170.0",
32
- "@aws-sdk/middleware-retry": "3.170.0",
33
- "@aws-sdk/middleware-serde": "3.170.0",
34
- "@aws-sdk/middleware-signing": "3.170.0",
35
- "@aws-sdk/middleware-stack": "3.170.0",
36
- "@aws-sdk/middleware-user-agent": "3.170.0",
37
- "@aws-sdk/node-config-provider": "3.170.0",
38
- "@aws-sdk/node-http-handler": "3.170.0",
39
- "@aws-sdk/protocol-http": "3.170.0",
40
- "@aws-sdk/smithy-client": "3.170.0",
41
- "@aws-sdk/types": "3.170.0",
42
- "@aws-sdk/url-parser": "3.170.0",
22
+ "@aws-sdk/client-sts": "3.178.0",
23
+ "@aws-sdk/config-resolver": "3.178.0",
24
+ "@aws-sdk/credential-provider-node": "3.178.0",
25
+ "@aws-sdk/fetch-http-handler": "3.178.0",
26
+ "@aws-sdk/hash-node": "3.178.0",
27
+ "@aws-sdk/invalid-dependency": "3.178.0",
28
+ "@aws-sdk/middleware-content-length": "3.178.0",
29
+ "@aws-sdk/middleware-host-header": "3.178.0",
30
+ "@aws-sdk/middleware-logger": "3.178.0",
31
+ "@aws-sdk/middleware-recursion-detection": "3.178.0",
32
+ "@aws-sdk/middleware-retry": "3.178.0",
33
+ "@aws-sdk/middleware-serde": "3.178.0",
34
+ "@aws-sdk/middleware-signing": "3.178.0",
35
+ "@aws-sdk/middleware-stack": "3.178.0",
36
+ "@aws-sdk/middleware-user-agent": "3.178.0",
37
+ "@aws-sdk/node-config-provider": "3.178.0",
38
+ "@aws-sdk/node-http-handler": "3.178.0",
39
+ "@aws-sdk/protocol-http": "3.178.0",
40
+ "@aws-sdk/smithy-client": "3.178.0",
41
+ "@aws-sdk/types": "3.178.0",
42
+ "@aws-sdk/url-parser": "3.178.0",
43
43
  "@aws-sdk/util-base64-browser": "3.170.0",
44
44
  "@aws-sdk/util-base64-node": "3.170.0",
45
45
  "@aws-sdk/util-body-length-browser": "3.170.0",
46
46
  "@aws-sdk/util-body-length-node": "3.170.0",
47
- "@aws-sdk/util-defaults-mode-browser": "3.170.0",
48
- "@aws-sdk/util-defaults-mode-node": "3.170.0",
49
- "@aws-sdk/util-user-agent-browser": "3.170.0",
50
- "@aws-sdk/util-user-agent-node": "3.170.0",
47
+ "@aws-sdk/util-defaults-mode-browser": "3.178.0",
48
+ "@aws-sdk/util-defaults-mode-node": "3.178.0",
49
+ "@aws-sdk/util-user-agent-browser": "3.178.0",
50
+ "@aws-sdk/util-user-agent-node": "3.178.0",
51
51
  "@aws-sdk/util-utf8-browser": "3.170.0",
52
52
  "@aws-sdk/util-utf8-node": "3.170.0",
53
53
  "tslib": "^2.3.1",