@aws-sdk/client-storage-gateway 3.744.0 → 3.748.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/README.md +40 -0
- package/dist-cjs/index.js +233 -0
- package/dist-es/StorageGateway.js +10 -0
- package/dist-es/commands/CancelCacheReportCommand.js +22 -0
- package/dist-es/commands/DeleteCacheReportCommand.js +22 -0
- package/dist-es/commands/DescribeCacheReportCommand.js +22 -0
- package/dist-es/commands/ListCacheReportsCommand.js +22 -0
- package/dist-es/commands/StartCacheReportCommand.js +22 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +11 -0
- package/dist-es/protocols/Aws_json1_1.js +131 -1
- package/dist-types/StorageGateway.d.ts +36 -0
- package/dist-types/StorageGatewayClient.d.ts +7 -2
- package/dist-types/commands/CancelCacheReportCommand.d.ts +83 -0
- package/dist-types/commands/DeleteCacheReportCommand.d.ts +85 -0
- package/dist-types/commands/DescribeCacheReportCommand.d.ts +112 -0
- package/dist-types/commands/ListCacheReportsCommand.d.ts +117 -0
- package/dist-types/commands/NotifyWhenUploadedCommand.d.ts +5 -4
- package/dist-types/commands/StartCacheReportCommand.d.ts +140 -0
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +312 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +45 -0
- package/dist-types/ts3.4/StorageGateway.d.ts +86 -0
- package/dist-types/ts3.4/StorageGatewayClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/CancelCacheReportCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DeleteCacheReportCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeCacheReportCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListCacheReportsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StartCacheReportCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +72 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +60 -0
- package/package.json +1 -1
|
@@ -81,6 +81,10 @@ import {
|
|
|
81
81
|
CancelArchivalCommandInput,
|
|
82
82
|
CancelArchivalCommandOutput,
|
|
83
83
|
} from "./commands/CancelArchivalCommand";
|
|
84
|
+
import {
|
|
85
|
+
CancelCacheReportCommandInput,
|
|
86
|
+
CancelCacheReportCommandOutput,
|
|
87
|
+
} from "./commands/CancelCacheReportCommand";
|
|
84
88
|
import {
|
|
85
89
|
CancelRetrievalCommandInput,
|
|
86
90
|
CancelRetrievalCommandOutput,
|
|
@@ -129,6 +133,10 @@ import {
|
|
|
129
133
|
DeleteBandwidthRateLimitCommandInput,
|
|
130
134
|
DeleteBandwidthRateLimitCommandOutput,
|
|
131
135
|
} from "./commands/DeleteBandwidthRateLimitCommand";
|
|
136
|
+
import {
|
|
137
|
+
DeleteCacheReportCommandInput,
|
|
138
|
+
DeleteCacheReportCommandOutput,
|
|
139
|
+
} from "./commands/DeleteCacheReportCommand";
|
|
132
140
|
import {
|
|
133
141
|
DeleteChapCredentialsCommandInput,
|
|
134
142
|
DeleteChapCredentialsCommandOutput,
|
|
@@ -181,6 +189,10 @@ import {
|
|
|
181
189
|
DescribeCachediSCSIVolumesCommandInput,
|
|
182
190
|
DescribeCachediSCSIVolumesCommandOutput,
|
|
183
191
|
} from "./commands/DescribeCachediSCSIVolumesCommand";
|
|
192
|
+
import {
|
|
193
|
+
DescribeCacheReportCommandInput,
|
|
194
|
+
DescribeCacheReportCommandOutput,
|
|
195
|
+
} from "./commands/DescribeCacheReportCommand";
|
|
184
196
|
import {
|
|
185
197
|
DescribeChapCredentialsCommandInput,
|
|
186
198
|
DescribeChapCredentialsCommandOutput,
|
|
@@ -261,6 +273,10 @@ import {
|
|
|
261
273
|
ListAutomaticTapeCreationPoliciesCommandInput,
|
|
262
274
|
ListAutomaticTapeCreationPoliciesCommandOutput,
|
|
263
275
|
} from "./commands/ListAutomaticTapeCreationPoliciesCommand";
|
|
276
|
+
import {
|
|
277
|
+
ListCacheReportsCommandInput,
|
|
278
|
+
ListCacheReportsCommandOutput,
|
|
279
|
+
} from "./commands/ListCacheReportsCommand";
|
|
264
280
|
import {
|
|
265
281
|
ListFileSharesCommandInput,
|
|
266
282
|
ListFileSharesCommandOutput,
|
|
@@ -341,6 +357,10 @@ import {
|
|
|
341
357
|
StartAvailabilityMonitorTestCommandInput,
|
|
342
358
|
StartAvailabilityMonitorTestCommandOutput,
|
|
343
359
|
} from "./commands/StartAvailabilityMonitorTestCommand";
|
|
360
|
+
import {
|
|
361
|
+
StartCacheReportCommandInput,
|
|
362
|
+
StartCacheReportCommandOutput,
|
|
363
|
+
} from "./commands/StartCacheReportCommand";
|
|
344
364
|
import {
|
|
345
365
|
StartGatewayCommandInput,
|
|
346
366
|
StartGatewayCommandOutput,
|
|
@@ -422,6 +442,7 @@ export type ServiceInputTypes =
|
|
|
422
442
|
| AssociateFileSystemCommandInput
|
|
423
443
|
| AttachVolumeCommandInput
|
|
424
444
|
| CancelArchivalCommandInput
|
|
445
|
+
| CancelCacheReportCommandInput
|
|
425
446
|
| CancelRetrievalCommandInput
|
|
426
447
|
| CreateCachediSCSIVolumeCommandInput
|
|
427
448
|
| CreateNFSFileShareCommandInput
|
|
@@ -434,6 +455,7 @@ export type ServiceInputTypes =
|
|
|
434
455
|
| CreateTapesCommandInput
|
|
435
456
|
| DeleteAutomaticTapeCreationPolicyCommandInput
|
|
436
457
|
| DeleteBandwidthRateLimitCommandInput
|
|
458
|
+
| DeleteCacheReportCommandInput
|
|
437
459
|
| DeleteChapCredentialsCommandInput
|
|
438
460
|
| DeleteFileShareCommandInput
|
|
439
461
|
| DeleteGatewayCommandInput
|
|
@@ -446,6 +468,7 @@ export type ServiceInputTypes =
|
|
|
446
468
|
| DescribeBandwidthRateLimitCommandInput
|
|
447
469
|
| DescribeBandwidthRateLimitScheduleCommandInput
|
|
448
470
|
| DescribeCacheCommandInput
|
|
471
|
+
| DescribeCacheReportCommandInput
|
|
449
472
|
| DescribeCachediSCSIVolumesCommandInput
|
|
450
473
|
| DescribeChapCredentialsCommandInput
|
|
451
474
|
| DescribeFileSystemAssociationsCommandInput
|
|
@@ -467,6 +490,7 @@ export type ServiceInputTypes =
|
|
|
467
490
|
| DisassociateFileSystemCommandInput
|
|
468
491
|
| JoinDomainCommandInput
|
|
469
492
|
| ListAutomaticTapeCreationPoliciesCommandInput
|
|
493
|
+
| ListCacheReportsCommandInput
|
|
470
494
|
| ListFileSharesCommandInput
|
|
471
495
|
| ListFileSystemAssociationsCommandInput
|
|
472
496
|
| ListGatewaysCommandInput
|
|
@@ -487,6 +511,7 @@ export type ServiceInputTypes =
|
|
|
487
511
|
| SetSMBGuestPasswordCommandInput
|
|
488
512
|
| ShutdownGatewayCommandInput
|
|
489
513
|
| StartAvailabilityMonitorTestCommandInput
|
|
514
|
+
| StartCacheReportCommandInput
|
|
490
515
|
| StartGatewayCommandInput
|
|
491
516
|
| UpdateAutomaticTapeCreationPolicyCommandInput
|
|
492
517
|
| UpdateBandwidthRateLimitCommandInput
|
|
@@ -513,6 +538,7 @@ export type ServiceOutputTypes =
|
|
|
513
538
|
| AssociateFileSystemCommandOutput
|
|
514
539
|
| AttachVolumeCommandOutput
|
|
515
540
|
| CancelArchivalCommandOutput
|
|
541
|
+
| CancelCacheReportCommandOutput
|
|
516
542
|
| CancelRetrievalCommandOutput
|
|
517
543
|
| CreateCachediSCSIVolumeCommandOutput
|
|
518
544
|
| CreateNFSFileShareCommandOutput
|
|
@@ -525,6 +551,7 @@ export type ServiceOutputTypes =
|
|
|
525
551
|
| CreateTapesCommandOutput
|
|
526
552
|
| DeleteAutomaticTapeCreationPolicyCommandOutput
|
|
527
553
|
| DeleteBandwidthRateLimitCommandOutput
|
|
554
|
+
| DeleteCacheReportCommandOutput
|
|
528
555
|
| DeleteChapCredentialsCommandOutput
|
|
529
556
|
| DeleteFileShareCommandOutput
|
|
530
557
|
| DeleteGatewayCommandOutput
|
|
@@ -537,6 +564,7 @@ export type ServiceOutputTypes =
|
|
|
537
564
|
| DescribeBandwidthRateLimitCommandOutput
|
|
538
565
|
| DescribeBandwidthRateLimitScheduleCommandOutput
|
|
539
566
|
| DescribeCacheCommandOutput
|
|
567
|
+
| DescribeCacheReportCommandOutput
|
|
540
568
|
| DescribeCachediSCSIVolumesCommandOutput
|
|
541
569
|
| DescribeChapCredentialsCommandOutput
|
|
542
570
|
| DescribeFileSystemAssociationsCommandOutput
|
|
@@ -558,6 +586,7 @@ export type ServiceOutputTypes =
|
|
|
558
586
|
| DisassociateFileSystemCommandOutput
|
|
559
587
|
| JoinDomainCommandOutput
|
|
560
588
|
| ListAutomaticTapeCreationPoliciesCommandOutput
|
|
589
|
+
| ListCacheReportsCommandOutput
|
|
561
590
|
| ListFileSharesCommandOutput
|
|
562
591
|
| ListFileSystemAssociationsCommandOutput
|
|
563
592
|
| ListGatewaysCommandOutput
|
|
@@ -578,6 +607,7 @@ export type ServiceOutputTypes =
|
|
|
578
607
|
| SetSMBGuestPasswordCommandOutput
|
|
579
608
|
| ShutdownGatewayCommandOutput
|
|
580
609
|
| StartAvailabilityMonitorTestCommandOutput
|
|
610
|
+
| StartCacheReportCommandOutput
|
|
581
611
|
| StartGatewayCommandOutput
|
|
582
612
|
| UpdateAutomaticTapeCreationPolicyCommandOutput
|
|
583
613
|
| UpdateBandwidthRateLimitCommandOutput
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CancelCacheReportInput,
|
|
5
|
+
CancelCacheReportOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
StorageGatewayClientResolvedConfig,
|
|
11
|
+
} from "../StorageGatewayClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CancelCacheReportCommandInput extends CancelCacheReportInput {}
|
|
15
|
+
export interface CancelCacheReportCommandOutput
|
|
16
|
+
extends CancelCacheReportOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CancelCacheReportCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CancelCacheReportCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CancelCacheReportCommandInput,
|
|
23
|
+
CancelCacheReportCommandOutput,
|
|
24
|
+
StorageGatewayClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CancelCacheReportCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CancelCacheReportCommandInput,
|
|
32
|
+
CancelCacheReportCommandOutput,
|
|
33
|
+
StorageGatewayClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CancelCacheReportCommand extends CancelCacheReportCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: CancelCacheReportInput;
|
|
43
|
+
output: CancelCacheReportOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: CancelCacheReportCommandInput;
|
|
47
|
+
output: CancelCacheReportCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DeleteCacheReportInput,
|
|
5
|
+
DeleteCacheReportOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
StorageGatewayClientResolvedConfig,
|
|
11
|
+
} from "../StorageGatewayClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DeleteCacheReportCommandInput extends DeleteCacheReportInput {}
|
|
15
|
+
export interface DeleteCacheReportCommandOutput
|
|
16
|
+
extends DeleteCacheReportOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DeleteCacheReportCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DeleteCacheReportCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DeleteCacheReportCommandInput,
|
|
23
|
+
DeleteCacheReportCommandOutput,
|
|
24
|
+
StorageGatewayClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DeleteCacheReportCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DeleteCacheReportCommandInput,
|
|
32
|
+
DeleteCacheReportCommandOutput,
|
|
33
|
+
StorageGatewayClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class DeleteCacheReportCommand extends DeleteCacheReportCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: DeleteCacheReportInput;
|
|
43
|
+
output: DeleteCacheReportOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: DeleteCacheReportCommandInput;
|
|
47
|
+
output: DeleteCacheReportCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DescribeCacheReportInput,
|
|
5
|
+
DescribeCacheReportOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
StorageGatewayClientResolvedConfig,
|
|
11
|
+
} from "../StorageGatewayClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DescribeCacheReportCommandInput
|
|
15
|
+
extends DescribeCacheReportInput {}
|
|
16
|
+
export interface DescribeCacheReportCommandOutput
|
|
17
|
+
extends DescribeCacheReportOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DescribeCacheReportCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DescribeCacheReportCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DescribeCacheReportCommandInput,
|
|
24
|
+
DescribeCacheReportCommandOutput,
|
|
25
|
+
StorageGatewayClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
__0_0: DescribeCacheReportCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DescribeCacheReportCommandInput,
|
|
33
|
+
DescribeCacheReportCommandOutput,
|
|
34
|
+
StorageGatewayClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DescribeCacheReportCommand extends DescribeCacheReportCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DescribeCacheReportInput;
|
|
44
|
+
output: DescribeCacheReportOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DescribeCacheReportCommandInput;
|
|
48
|
+
output: DescribeCacheReportCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListCacheReportsInput,
|
|
5
|
+
ListCacheReportsOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
StorageGatewayClientResolvedConfig,
|
|
11
|
+
} from "../StorageGatewayClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListCacheReportsCommandInput extends ListCacheReportsInput {}
|
|
15
|
+
export interface ListCacheReportsCommandOutput
|
|
16
|
+
extends ListCacheReportsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListCacheReportsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListCacheReportsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListCacheReportsCommandInput,
|
|
23
|
+
ListCacheReportsCommandOutput,
|
|
24
|
+
StorageGatewayClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
...[input]: [] | [ListCacheReportsCommandInput]
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListCacheReportsCommandInput,
|
|
32
|
+
ListCacheReportsCommandOutput,
|
|
33
|
+
StorageGatewayClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListCacheReportsCommand extends ListCacheReportsCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ListCacheReportsInput;
|
|
43
|
+
output: ListCacheReportsOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ListCacheReportsCommandInput;
|
|
47
|
+
output: ListCacheReportsCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
StartCacheReportInput,
|
|
5
|
+
StartCacheReportOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
ServiceInputTypes,
|
|
9
|
+
ServiceOutputTypes,
|
|
10
|
+
StorageGatewayClientResolvedConfig,
|
|
11
|
+
} from "../StorageGatewayClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface StartCacheReportCommandInput extends StartCacheReportInput {}
|
|
15
|
+
export interface StartCacheReportCommandOutput
|
|
16
|
+
extends StartCacheReportOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const StartCacheReportCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: StartCacheReportCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
StartCacheReportCommandInput,
|
|
23
|
+
StartCacheReportCommandOutput,
|
|
24
|
+
StorageGatewayClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: StartCacheReportCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
StartCacheReportCommandInput,
|
|
32
|
+
StartCacheReportCommandOutput,
|
|
33
|
+
StorageGatewayClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class StartCacheReportCommand extends StartCacheReportCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: StartCacheReportInput;
|
|
43
|
+
output: StartCacheReportOutput;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: StartCacheReportCommandInput;
|
|
47
|
+
output: StartCacheReportCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -7,6 +7,7 @@ export * from "./AssignTapePoolCommand";
|
|
|
7
7
|
export * from "./AssociateFileSystemCommand";
|
|
8
8
|
export * from "./AttachVolumeCommand";
|
|
9
9
|
export * from "./CancelArchivalCommand";
|
|
10
|
+
export * from "./CancelCacheReportCommand";
|
|
10
11
|
export * from "./CancelRetrievalCommand";
|
|
11
12
|
export * from "./CreateCachediSCSIVolumeCommand";
|
|
12
13
|
export * from "./CreateNFSFileShareCommand";
|
|
@@ -19,6 +20,7 @@ export * from "./CreateTapeWithBarcodeCommand";
|
|
|
19
20
|
export * from "./CreateTapesCommand";
|
|
20
21
|
export * from "./DeleteAutomaticTapeCreationPolicyCommand";
|
|
21
22
|
export * from "./DeleteBandwidthRateLimitCommand";
|
|
23
|
+
export * from "./DeleteCacheReportCommand";
|
|
22
24
|
export * from "./DeleteChapCredentialsCommand";
|
|
23
25
|
export * from "./DeleteFileShareCommand";
|
|
24
26
|
export * from "./DeleteGatewayCommand";
|
|
@@ -31,6 +33,7 @@ export * from "./DescribeAvailabilityMonitorTestCommand";
|
|
|
31
33
|
export * from "./DescribeBandwidthRateLimitCommand";
|
|
32
34
|
export * from "./DescribeBandwidthRateLimitScheduleCommand";
|
|
33
35
|
export * from "./DescribeCacheCommand";
|
|
36
|
+
export * from "./DescribeCacheReportCommand";
|
|
34
37
|
export * from "./DescribeCachediSCSIVolumesCommand";
|
|
35
38
|
export * from "./DescribeChapCredentialsCommand";
|
|
36
39
|
export * from "./DescribeFileSystemAssociationsCommand";
|
|
@@ -52,6 +55,7 @@ export * from "./DisableGatewayCommand";
|
|
|
52
55
|
export * from "./DisassociateFileSystemCommand";
|
|
53
56
|
export * from "./JoinDomainCommand";
|
|
54
57
|
export * from "./ListAutomaticTapeCreationPoliciesCommand";
|
|
58
|
+
export * from "./ListCacheReportsCommand";
|
|
55
59
|
export * from "./ListFileSharesCommand";
|
|
56
60
|
export * from "./ListFileSystemAssociationsCommand";
|
|
57
61
|
export * from "./ListGatewaysCommand";
|
|
@@ -72,6 +76,7 @@ export * from "./SetLocalConsolePasswordCommand";
|
|
|
72
76
|
export * from "./SetSMBGuestPasswordCommand";
|
|
73
77
|
export * from "./ShutdownGatewayCommand";
|
|
74
78
|
export * from "./StartAvailabilityMonitorTestCommand";
|
|
79
|
+
export * from "./StartCacheReportCommand";
|
|
75
80
|
export * from "./StartGatewayCommand";
|
|
76
81
|
export * from "./UpdateAutomaticTapeCreationPolicyCommand";
|
|
77
82
|
export * from "./UpdateBandwidthRateLimitCommand";
|
|
@@ -235,6 +235,39 @@ export interface CachediSCSIVolume {
|
|
|
235
235
|
KMSKey?: string | undefined;
|
|
236
236
|
TargetName?: string | undefined;
|
|
237
237
|
}
|
|
238
|
+
export declare const CacheReportFilterName: {
|
|
239
|
+
readonly UploadFailureReason: "UploadFailureReason";
|
|
240
|
+
readonly UploadState: "UploadState";
|
|
241
|
+
};
|
|
242
|
+
export type CacheReportFilterName =
|
|
243
|
+
(typeof CacheReportFilterName)[keyof typeof CacheReportFilterName];
|
|
244
|
+
export interface CacheReportFilter {
|
|
245
|
+
Name: CacheReportFilterName | undefined;
|
|
246
|
+
Values: string[] | undefined;
|
|
247
|
+
}
|
|
248
|
+
export declare const CacheReportStatus: {
|
|
249
|
+
readonly CANCELED: "CANCELED";
|
|
250
|
+
readonly COMPLETED: "COMPLETED";
|
|
251
|
+
readonly ERROR: "ERROR";
|
|
252
|
+
readonly FAILED: "FAILED";
|
|
253
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
254
|
+
};
|
|
255
|
+
export type CacheReportStatus =
|
|
256
|
+
(typeof CacheReportStatus)[keyof typeof CacheReportStatus];
|
|
257
|
+
export interface CacheReportInfo {
|
|
258
|
+
CacheReportARN?: string | undefined;
|
|
259
|
+
CacheReportStatus?: CacheReportStatus | undefined;
|
|
260
|
+
ReportCompletionPercent?: number | undefined;
|
|
261
|
+
EndTime?: Date | undefined;
|
|
262
|
+
Role?: string | undefined;
|
|
263
|
+
FileShareARN?: string | undefined;
|
|
264
|
+
LocationARN?: string | undefined;
|
|
265
|
+
StartTime?: Date | undefined;
|
|
266
|
+
InclusionFilters?: CacheReportFilter[] | undefined;
|
|
267
|
+
ExclusionFilters?: CacheReportFilter[] | undefined;
|
|
268
|
+
ReportName?: string | undefined;
|
|
269
|
+
Tags?: Tag[] | undefined;
|
|
270
|
+
}
|
|
238
271
|
export interface CancelArchivalInput {
|
|
239
272
|
GatewayARN: string | undefined;
|
|
240
273
|
TapeARN: string | undefined;
|
|
@@ -242,6 +275,12 @@ export interface CancelArchivalInput {
|
|
|
242
275
|
export interface CancelArchivalOutput {
|
|
243
276
|
TapeARN?: string | undefined;
|
|
244
277
|
}
|
|
278
|
+
export interface CancelCacheReportInput {
|
|
279
|
+
CacheReportARN: string | undefined;
|
|
280
|
+
}
|
|
281
|
+
export interface CancelCacheReportOutput {
|
|
282
|
+
CacheReportARN?: string | undefined;
|
|
283
|
+
}
|
|
245
284
|
export interface CancelRetrievalInput {
|
|
246
285
|
GatewayARN: string | undefined;
|
|
247
286
|
TapeARN: string | undefined;
|
|
@@ -466,6 +505,12 @@ export interface DeleteBandwidthRateLimitInput {
|
|
|
466
505
|
export interface DeleteBandwidthRateLimitOutput {
|
|
467
506
|
GatewayARN?: string | undefined;
|
|
468
507
|
}
|
|
508
|
+
export interface DeleteCacheReportInput {
|
|
509
|
+
CacheReportARN: string | undefined;
|
|
510
|
+
}
|
|
511
|
+
export interface DeleteCacheReportOutput {
|
|
512
|
+
CacheReportARN?: string | undefined;
|
|
513
|
+
}
|
|
469
514
|
export interface DeleteChapCredentialsInput {
|
|
470
515
|
TargetARN: string | undefined;
|
|
471
516
|
InitiatorName: string | undefined;
|
|
@@ -561,6 +606,12 @@ export interface DescribeCachediSCSIVolumesInput {
|
|
|
561
606
|
export interface DescribeCachediSCSIVolumesOutput {
|
|
562
607
|
CachediSCSIVolumes?: CachediSCSIVolume[] | undefined;
|
|
563
608
|
}
|
|
609
|
+
export interface DescribeCacheReportInput {
|
|
610
|
+
CacheReportARN: string | undefined;
|
|
611
|
+
}
|
|
612
|
+
export interface DescribeCacheReportOutput {
|
|
613
|
+
CacheReportInfo?: CacheReportInfo | undefined;
|
|
614
|
+
}
|
|
564
615
|
export interface DescribeChapCredentialsInput {
|
|
565
616
|
TargetARN: string | undefined;
|
|
566
617
|
}
|
|
@@ -970,6 +1021,13 @@ export interface ListAutomaticTapeCreationPoliciesOutput {
|
|
|
970
1021
|
| AutomaticTapeCreationPolicyInfo[]
|
|
971
1022
|
| undefined;
|
|
972
1023
|
}
|
|
1024
|
+
export interface ListCacheReportsInput {
|
|
1025
|
+
Marker?: string | undefined;
|
|
1026
|
+
}
|
|
1027
|
+
export interface ListCacheReportsOutput {
|
|
1028
|
+
CacheReportList?: CacheReportInfo[] | undefined;
|
|
1029
|
+
Marker?: string | undefined;
|
|
1030
|
+
}
|
|
973
1031
|
export interface ListFileSharesInput {
|
|
974
1032
|
GatewayARN?: string | undefined;
|
|
975
1033
|
Limit?: number | undefined;
|
|
@@ -1163,6 +1221,20 @@ export interface StartAvailabilityMonitorTestInput {
|
|
|
1163
1221
|
export interface StartAvailabilityMonitorTestOutput {
|
|
1164
1222
|
GatewayARN?: string | undefined;
|
|
1165
1223
|
}
|
|
1224
|
+
export interface StartCacheReportInput {
|
|
1225
|
+
FileShareARN: string | undefined;
|
|
1226
|
+
Role: string | undefined;
|
|
1227
|
+
LocationARN: string | undefined;
|
|
1228
|
+
BucketRegion: string | undefined;
|
|
1229
|
+
VPCEndpointDNSName?: string | undefined;
|
|
1230
|
+
InclusionFilters?: CacheReportFilter[] | undefined;
|
|
1231
|
+
ExclusionFilters?: CacheReportFilter[] | undefined;
|
|
1232
|
+
ClientToken: string | undefined;
|
|
1233
|
+
Tags?: Tag[] | undefined;
|
|
1234
|
+
}
|
|
1235
|
+
export interface StartCacheReportOutput {
|
|
1236
|
+
CacheReportARN?: string | undefined;
|
|
1237
|
+
}
|
|
1166
1238
|
export interface StartGatewayInput {
|
|
1167
1239
|
GatewayARN: string | undefined;
|
|
1168
1240
|
}
|
|
@@ -39,6 +39,10 @@ import {
|
|
|
39
39
|
CancelArchivalCommandInput,
|
|
40
40
|
CancelArchivalCommandOutput,
|
|
41
41
|
} from "../commands/CancelArchivalCommand";
|
|
42
|
+
import {
|
|
43
|
+
CancelCacheReportCommandInput,
|
|
44
|
+
CancelCacheReportCommandOutput,
|
|
45
|
+
} from "../commands/CancelCacheReportCommand";
|
|
42
46
|
import {
|
|
43
47
|
CancelRetrievalCommandInput,
|
|
44
48
|
CancelRetrievalCommandOutput,
|
|
@@ -87,6 +91,10 @@ import {
|
|
|
87
91
|
DeleteBandwidthRateLimitCommandInput,
|
|
88
92
|
DeleteBandwidthRateLimitCommandOutput,
|
|
89
93
|
} from "../commands/DeleteBandwidthRateLimitCommand";
|
|
94
|
+
import {
|
|
95
|
+
DeleteCacheReportCommandInput,
|
|
96
|
+
DeleteCacheReportCommandOutput,
|
|
97
|
+
} from "../commands/DeleteCacheReportCommand";
|
|
90
98
|
import {
|
|
91
99
|
DeleteChapCredentialsCommandInput,
|
|
92
100
|
DeleteChapCredentialsCommandOutput,
|
|
@@ -139,6 +147,10 @@ import {
|
|
|
139
147
|
DescribeCachediSCSIVolumesCommandInput,
|
|
140
148
|
DescribeCachediSCSIVolumesCommandOutput,
|
|
141
149
|
} from "../commands/DescribeCachediSCSIVolumesCommand";
|
|
150
|
+
import {
|
|
151
|
+
DescribeCacheReportCommandInput,
|
|
152
|
+
DescribeCacheReportCommandOutput,
|
|
153
|
+
} from "../commands/DescribeCacheReportCommand";
|
|
142
154
|
import {
|
|
143
155
|
DescribeChapCredentialsCommandInput,
|
|
144
156
|
DescribeChapCredentialsCommandOutput,
|
|
@@ -219,6 +231,10 @@ import {
|
|
|
219
231
|
ListAutomaticTapeCreationPoliciesCommandInput,
|
|
220
232
|
ListAutomaticTapeCreationPoliciesCommandOutput,
|
|
221
233
|
} from "../commands/ListAutomaticTapeCreationPoliciesCommand";
|
|
234
|
+
import {
|
|
235
|
+
ListCacheReportsCommandInput,
|
|
236
|
+
ListCacheReportsCommandOutput,
|
|
237
|
+
} from "../commands/ListCacheReportsCommand";
|
|
222
238
|
import {
|
|
223
239
|
ListFileSharesCommandInput,
|
|
224
240
|
ListFileSharesCommandOutput,
|
|
@@ -299,6 +315,10 @@ import {
|
|
|
299
315
|
StartAvailabilityMonitorTestCommandInput,
|
|
300
316
|
StartAvailabilityMonitorTestCommandOutput,
|
|
301
317
|
} from "../commands/StartAvailabilityMonitorTestCommand";
|
|
318
|
+
import {
|
|
319
|
+
StartCacheReportCommandInput,
|
|
320
|
+
StartCacheReportCommandOutput,
|
|
321
|
+
} from "../commands/StartCacheReportCommand";
|
|
302
322
|
import {
|
|
303
323
|
StartGatewayCommandInput,
|
|
304
324
|
StartGatewayCommandOutput,
|
|
@@ -399,6 +419,10 @@ export declare const se_CancelArchivalCommand: (
|
|
|
399
419
|
input: CancelArchivalCommandInput,
|
|
400
420
|
context: __SerdeContext
|
|
401
421
|
) => Promise<__HttpRequest>;
|
|
422
|
+
export declare const se_CancelCacheReportCommand: (
|
|
423
|
+
input: CancelCacheReportCommandInput,
|
|
424
|
+
context: __SerdeContext
|
|
425
|
+
) => Promise<__HttpRequest>;
|
|
402
426
|
export declare const se_CancelRetrievalCommand: (
|
|
403
427
|
input: CancelRetrievalCommandInput,
|
|
404
428
|
context: __SerdeContext
|
|
@@ -447,6 +471,10 @@ export declare const se_DeleteBandwidthRateLimitCommand: (
|
|
|
447
471
|
input: DeleteBandwidthRateLimitCommandInput,
|
|
448
472
|
context: __SerdeContext
|
|
449
473
|
) => Promise<__HttpRequest>;
|
|
474
|
+
export declare const se_DeleteCacheReportCommand: (
|
|
475
|
+
input: DeleteCacheReportCommandInput,
|
|
476
|
+
context: __SerdeContext
|
|
477
|
+
) => Promise<__HttpRequest>;
|
|
450
478
|
export declare const se_DeleteChapCredentialsCommand: (
|
|
451
479
|
input: DeleteChapCredentialsCommandInput,
|
|
452
480
|
context: __SerdeContext
|
|
@@ -499,6 +527,10 @@ export declare const se_DescribeCachediSCSIVolumesCommand: (
|
|
|
499
527
|
input: DescribeCachediSCSIVolumesCommandInput,
|
|
500
528
|
context: __SerdeContext
|
|
501
529
|
) => Promise<__HttpRequest>;
|
|
530
|
+
export declare const se_DescribeCacheReportCommand: (
|
|
531
|
+
input: DescribeCacheReportCommandInput,
|
|
532
|
+
context: __SerdeContext
|
|
533
|
+
) => Promise<__HttpRequest>;
|
|
502
534
|
export declare const se_DescribeChapCredentialsCommand: (
|
|
503
535
|
input: DescribeChapCredentialsCommandInput,
|
|
504
536
|
context: __SerdeContext
|
|
@@ -579,6 +611,10 @@ export declare const se_ListAutomaticTapeCreationPoliciesCommand: (
|
|
|
579
611
|
input: ListAutomaticTapeCreationPoliciesCommandInput,
|
|
580
612
|
context: __SerdeContext
|
|
581
613
|
) => Promise<__HttpRequest>;
|
|
614
|
+
export declare const se_ListCacheReportsCommand: (
|
|
615
|
+
input: ListCacheReportsCommandInput,
|
|
616
|
+
context: __SerdeContext
|
|
617
|
+
) => Promise<__HttpRequest>;
|
|
582
618
|
export declare const se_ListFileSharesCommand: (
|
|
583
619
|
input: ListFileSharesCommandInput,
|
|
584
620
|
context: __SerdeContext
|
|
@@ -659,6 +695,10 @@ export declare const se_StartAvailabilityMonitorTestCommand: (
|
|
|
659
695
|
input: StartAvailabilityMonitorTestCommandInput,
|
|
660
696
|
context: __SerdeContext
|
|
661
697
|
) => Promise<__HttpRequest>;
|
|
698
|
+
export declare const se_StartCacheReportCommand: (
|
|
699
|
+
input: StartCacheReportCommandInput,
|
|
700
|
+
context: __SerdeContext
|
|
701
|
+
) => Promise<__HttpRequest>;
|
|
662
702
|
export declare const se_StartGatewayCommand: (
|
|
663
703
|
input: StartGatewayCommandInput,
|
|
664
704
|
context: __SerdeContext
|
|
@@ -759,6 +799,10 @@ export declare const de_CancelArchivalCommand: (
|
|
|
759
799
|
output: __HttpResponse,
|
|
760
800
|
context: __SerdeContext
|
|
761
801
|
) => Promise<CancelArchivalCommandOutput>;
|
|
802
|
+
export declare const de_CancelCacheReportCommand: (
|
|
803
|
+
output: __HttpResponse,
|
|
804
|
+
context: __SerdeContext
|
|
805
|
+
) => Promise<CancelCacheReportCommandOutput>;
|
|
762
806
|
export declare const de_CancelRetrievalCommand: (
|
|
763
807
|
output: __HttpResponse,
|
|
764
808
|
context: __SerdeContext
|
|
@@ -807,6 +851,10 @@ export declare const de_DeleteBandwidthRateLimitCommand: (
|
|
|
807
851
|
output: __HttpResponse,
|
|
808
852
|
context: __SerdeContext
|
|
809
853
|
) => Promise<DeleteBandwidthRateLimitCommandOutput>;
|
|
854
|
+
export declare const de_DeleteCacheReportCommand: (
|
|
855
|
+
output: __HttpResponse,
|
|
856
|
+
context: __SerdeContext
|
|
857
|
+
) => Promise<DeleteCacheReportCommandOutput>;
|
|
810
858
|
export declare const de_DeleteChapCredentialsCommand: (
|
|
811
859
|
output: __HttpResponse,
|
|
812
860
|
context: __SerdeContext
|
|
@@ -859,6 +907,10 @@ export declare const de_DescribeCachediSCSIVolumesCommand: (
|
|
|
859
907
|
output: __HttpResponse,
|
|
860
908
|
context: __SerdeContext
|
|
861
909
|
) => Promise<DescribeCachediSCSIVolumesCommandOutput>;
|
|
910
|
+
export declare const de_DescribeCacheReportCommand: (
|
|
911
|
+
output: __HttpResponse,
|
|
912
|
+
context: __SerdeContext
|
|
913
|
+
) => Promise<DescribeCacheReportCommandOutput>;
|
|
862
914
|
export declare const de_DescribeChapCredentialsCommand: (
|
|
863
915
|
output: __HttpResponse,
|
|
864
916
|
context: __SerdeContext
|
|
@@ -939,6 +991,10 @@ export declare const de_ListAutomaticTapeCreationPoliciesCommand: (
|
|
|
939
991
|
output: __HttpResponse,
|
|
940
992
|
context: __SerdeContext
|
|
941
993
|
) => Promise<ListAutomaticTapeCreationPoliciesCommandOutput>;
|
|
994
|
+
export declare const de_ListCacheReportsCommand: (
|
|
995
|
+
output: __HttpResponse,
|
|
996
|
+
context: __SerdeContext
|
|
997
|
+
) => Promise<ListCacheReportsCommandOutput>;
|
|
942
998
|
export declare const de_ListFileSharesCommand: (
|
|
943
999
|
output: __HttpResponse,
|
|
944
1000
|
context: __SerdeContext
|
|
@@ -1019,6 +1075,10 @@ export declare const de_StartAvailabilityMonitorTestCommand: (
|
|
|
1019
1075
|
output: __HttpResponse,
|
|
1020
1076
|
context: __SerdeContext
|
|
1021
1077
|
) => Promise<StartAvailabilityMonitorTestCommandOutput>;
|
|
1078
|
+
export declare const de_StartCacheReportCommand: (
|
|
1079
|
+
output: __HttpResponse,
|
|
1080
|
+
context: __SerdeContext
|
|
1081
|
+
) => Promise<StartCacheReportCommandOutput>;
|
|
1022
1082
|
export declare const de_StartGatewayCommand: (
|
|
1023
1083
|
output: __HttpResponse,
|
|
1024
1084
|
context: __SerdeContext
|