@aws-sdk/client-storage-gateway 3.743.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 +324 -12
- 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 +12 -12
|
@@ -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
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-storage-gateway",
|
|
3
3
|
"description": "AWS SDK for JavaScript Storage Gateway Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.748.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-storage-gateway",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.744.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.744.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.734.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.734.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.734.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.744.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.734.0",
|
|
30
30
|
"@aws-sdk/types": "3.734.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.743.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.734.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.744.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.0.1",
|
|
35
|
-
"@smithy/core": "^3.1.
|
|
35
|
+
"@smithy/core": "^3.1.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.1",
|
|
37
37
|
"@smithy/hash-node": "^4.0.1",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.0.1",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.0.1",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.0.
|
|
41
|
-
"@smithy/middleware-retry": "^4.0.
|
|
42
|
-
"@smithy/middleware-serde": "^4.0.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.0.3",
|
|
41
|
+
"@smithy/middleware-retry": "^4.0.4",
|
|
42
|
+
"@smithy/middleware-serde": "^4.0.2",
|
|
43
43
|
"@smithy/middleware-stack": "^4.0.1",
|
|
44
44
|
"@smithy/node-config-provider": "^4.0.1",
|
|
45
45
|
"@smithy/node-http-handler": "^4.0.2",
|
|
46
46
|
"@smithy/protocol-http": "^5.0.1",
|
|
47
|
-
"@smithy/smithy-client": "^4.1.
|
|
47
|
+
"@smithy/smithy-client": "^4.1.3",
|
|
48
48
|
"@smithy/types": "^4.1.0",
|
|
49
49
|
"@smithy/url-parser": "^4.0.1",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.4",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.4",
|
|
55
55
|
"@smithy/util-endpoints": "^3.0.1",
|
|
56
56
|
"@smithy/util-middleware": "^4.0.1",
|
|
57
57
|
"@smithy/util-retry": "^4.0.1",
|