@aws-sdk/client-storage-gateway 3.782.0 → 3.787.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/dist-cjs/index.js +7 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/ListCacheReportsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-types/commands/DescribeSMBSettingsCommand.d.ts +1 -1
- package/dist-types/commands/JoinDomainCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +10 -3
- package/dist-types/pagination/ListCacheReportsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1 -0
- package/dist-types/ts3.4/pagination/ListCacheReportsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/package.json +5 -5
package/dist-cjs/index.js
CHANGED
|
@@ -154,6 +154,7 @@ __export(index_exports, {
|
|
|
154
154
|
paginateDescribeTapeRecoveryPoints: () => paginateDescribeTapeRecoveryPoints,
|
|
155
155
|
paginateDescribeTapes: () => paginateDescribeTapes,
|
|
156
156
|
paginateDescribeVTLDevices: () => paginateDescribeVTLDevices,
|
|
157
|
+
paginateListCacheReports: () => paginateListCacheReports,
|
|
157
158
|
paginateListFileShares: () => paginateListFileShares,
|
|
158
159
|
paginateListFileSystemAssociations: () => paginateListFileSystemAssociations,
|
|
159
160
|
paginateListGateways: () => paginateListGateways,
|
|
@@ -454,6 +455,7 @@ var InvalidGatewayRequestException = class _InvalidGatewayRequestException exten
|
|
|
454
455
|
var ActiveDirectoryStatus = {
|
|
455
456
|
ACCESS_DENIED: "ACCESS_DENIED",
|
|
456
457
|
DETACHED: "DETACHED",
|
|
458
|
+
INSUFFICIENT_PERMISSIONS: "INSUFFICIENT_PERMISSIONS",
|
|
457
459
|
JOINED: "JOINED",
|
|
458
460
|
JOINING: "JOINING",
|
|
459
461
|
NETWORK_ERROR: "NETWORK_ERROR",
|
|
@@ -4282,6 +4284,10 @@ var paginateDescribeTapes = (0, import_core.createPaginator)(StorageGatewayClien
|
|
|
4282
4284
|
|
|
4283
4285
|
var paginateDescribeVTLDevices = (0, import_core.createPaginator)(StorageGatewayClient, DescribeVTLDevicesCommand, "Marker", "Marker", "Limit");
|
|
4284
4286
|
|
|
4287
|
+
// src/pagination/ListCacheReportsPaginator.ts
|
|
4288
|
+
|
|
4289
|
+
var paginateListCacheReports = (0, import_core.createPaginator)(StorageGatewayClient, ListCacheReportsCommand, "Marker", "Marker", "");
|
|
4290
|
+
|
|
4285
4291
|
// src/pagination/ListFileSharesPaginator.ts
|
|
4286
4292
|
|
|
4287
4293
|
var paginateListFileShares = (0, import_core.createPaginator)(StorageGatewayClient, ListFileSharesCommand, "Marker", "NextMarker", "Limit");
|
|
@@ -4417,6 +4423,7 @@ var paginateListVolumes = (0, import_core.createPaginator)(StorageGatewayClient,
|
|
|
4417
4423
|
paginateDescribeTapeRecoveryPoints,
|
|
4418
4424
|
paginateDescribeTapes,
|
|
4419
4425
|
paginateDescribeVTLDevices,
|
|
4426
|
+
paginateListCacheReports,
|
|
4420
4427
|
paginateListFileShares,
|
|
4421
4428
|
paginateListFileSystemAssociations,
|
|
4422
4429
|
paginateListGateways,
|
|
@@ -95,6 +95,7 @@ export class InvalidGatewayRequestException extends __BaseException {
|
|
|
95
95
|
export const ActiveDirectoryStatus = {
|
|
96
96
|
ACCESS_DENIED: "ACCESS_DENIED",
|
|
97
97
|
DETACHED: "DETACHED",
|
|
98
|
+
INSUFFICIENT_PERMISSIONS: "INSUFFICIENT_PERMISSIONS",
|
|
98
99
|
JOINED: "JOINED",
|
|
99
100
|
JOINING: "JOINING",
|
|
100
101
|
NETWORK_ERROR: "NETWORK_ERROR",
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
2
|
+
import { ListCacheReportsCommand, } from "../commands/ListCacheReportsCommand";
|
|
3
|
+
import { StorageGatewayClient } from "../StorageGatewayClient";
|
|
4
|
+
export const paginateListCacheReports = createPaginator(StorageGatewayClient, ListCacheReportsCommand, "Marker", "Marker", "");
|
|
@@ -3,6 +3,7 @@ export * from "./DescribeTapeRecoveryPointsPaginator";
|
|
|
3
3
|
export * from "./DescribeTapesPaginator";
|
|
4
4
|
export * from "./DescribeVTLDevicesPaginator";
|
|
5
5
|
export * from "./Interfaces";
|
|
6
|
+
export * from "./ListCacheReportsPaginator";
|
|
6
7
|
export * from "./ListFileSharesPaginator";
|
|
7
8
|
export * from "./ListFileSystemAssociationsPaginator";
|
|
8
9
|
export * from "./ListGatewaysPaginator";
|
|
@@ -43,7 +43,7 @@ declare const DescribeSMBSettingsCommand_base: {
|
|
|
43
43
|
* // { // DescribeSMBSettingsOutput
|
|
44
44
|
* // GatewayARN: "STRING_VALUE",
|
|
45
45
|
* // DomainName: "STRING_VALUE",
|
|
46
|
-
* // ActiveDirectoryStatus: "ACCESS_DENIED" || "DETACHED" || "JOINED" || "JOINING" || "NETWORK_ERROR" || "TIMEOUT" || "UNKNOWN_ERROR",
|
|
46
|
+
* // ActiveDirectoryStatus: "ACCESS_DENIED" || "DETACHED" || "JOINED" || "JOINING" || "NETWORK_ERROR" || "TIMEOUT" || "UNKNOWN_ERROR" || "INSUFFICIENT_PERMISSIONS",
|
|
47
47
|
* // SMBGuestPasswordSet: true || false,
|
|
48
48
|
* // SMBSecurityStrategy: "ClientSpecified" || "MandatorySigning" || "MandatoryEncryption" || "MandatoryEncryptionNoAes128",
|
|
49
49
|
* // FileSharesVisible: true || false,
|
|
@@ -59,7 +59,7 @@ declare const JoinDomainCommand_base: {
|
|
|
59
59
|
* const response = await client.send(command);
|
|
60
60
|
* // { // JoinDomainOutput
|
|
61
61
|
* // GatewayARN: "STRING_VALUE",
|
|
62
|
-
* // ActiveDirectoryStatus: "ACCESS_DENIED" || "DETACHED" || "JOINED" || "JOINING" || "NETWORK_ERROR" || "TIMEOUT" || "UNKNOWN_ERROR",
|
|
62
|
+
* // ActiveDirectoryStatus: "ACCESS_DENIED" || "DETACHED" || "JOINED" || "JOINING" || "NETWORK_ERROR" || "TIMEOUT" || "UNKNOWN_ERROR" || "INSUFFICIENT_PERMISSIONS",
|
|
63
63
|
* // };
|
|
64
64
|
*
|
|
65
65
|
* ```
|
|
@@ -302,6 +302,7 @@ export declare class InvalidGatewayRequestException extends __BaseException {
|
|
|
302
302
|
export declare const ActiveDirectoryStatus: {
|
|
303
303
|
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
304
304
|
readonly DETACHED: "DETACHED";
|
|
305
|
+
readonly INSUFFICIENT_PERMISSIONS: "INSUFFICIENT_PERMISSIONS";
|
|
305
306
|
readonly JOINED: "JOINED";
|
|
306
307
|
readonly JOINING: "JOINING";
|
|
307
308
|
readonly NETWORK_ERROR: "NETWORK_ERROR";
|
|
@@ -5486,6 +5487,12 @@ export interface JoinDomainOutput {
|
|
|
5486
5487
|
* </li>
|
|
5487
5488
|
* <li>
|
|
5488
5489
|
* <p>
|
|
5490
|
+
* <code>INSUFFICIENT_PERMISSIONS</code>: Indicates that the <code>JoinDomain</code>
|
|
5491
|
+
* operation failed because the specified user lacks the necessary permissions to join
|
|
5492
|
+
* the domain.</p>
|
|
5493
|
+
* </li>
|
|
5494
|
+
* <li>
|
|
5495
|
+
* <p>
|
|
5489
5496
|
* <code>NETWORK_ERROR</code>: Indicates that <code>JoinDomain</code> operation
|
|
5490
5497
|
* failed due to a network or connectivity error.</p>
|
|
5491
5498
|
* </li>
|
|
@@ -6516,7 +6523,7 @@ export interface StartCacheReportInput {
|
|
|
6516
6523
|
*/
|
|
6517
6524
|
Role: string | undefined;
|
|
6518
6525
|
/**
|
|
6519
|
-
* <p>The ARN of the Amazon S3 bucket where the cache report
|
|
6526
|
+
* <p>The ARN of the Amazon S3 bucket where you want to save the cache report.</p>
|
|
6520
6527
|
* <note>
|
|
6521
6528
|
* <p>We do not recommend saving the cache report to the same Amazon S3 bucket for
|
|
6522
6529
|
* which you are generating the report.</p>
|
|
@@ -6526,8 +6533,8 @@ export interface StartCacheReportInput {
|
|
|
6526
6533
|
*/
|
|
6527
6534
|
LocationARN: string | undefined;
|
|
6528
6535
|
/**
|
|
6529
|
-
* <p>The Amazon Web Services Region of the Amazon S3 bucket
|
|
6530
|
-
*
|
|
6536
|
+
* <p>The Amazon Web Services Region of the Amazon S3 bucket where you want to save the
|
|
6537
|
+
* cache report.</p>
|
|
6531
6538
|
* @public
|
|
6532
6539
|
*/
|
|
6533
6540
|
BucketRegion: string | undefined;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListCacheReportsCommandInput, ListCacheReportsCommandOutput } from "../commands/ListCacheReportsCommand";
|
|
3
|
+
import { StorageGatewayPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListCacheReports: (config: StorageGatewayPaginationConfiguration, input: ListCacheReportsCommandInput, ...rest: any[]) => Paginator<ListCacheReportsCommandOutput>;
|
|
@@ -3,6 +3,7 @@ export * from "./DescribeTapeRecoveryPointsPaginator";
|
|
|
3
3
|
export * from "./DescribeTapesPaginator";
|
|
4
4
|
export * from "./DescribeVTLDevicesPaginator";
|
|
5
5
|
export * from "./Interfaces";
|
|
6
|
+
export * from "./ListCacheReportsPaginator";
|
|
6
7
|
export * from "./ListFileSharesPaginator";
|
|
7
8
|
export * from "./ListFileSystemAssociationsPaginator";
|
|
8
9
|
export * from "./ListGatewaysPaginator";
|
|
@@ -105,6 +105,7 @@ export declare class InvalidGatewayRequestException extends __BaseException {
|
|
|
105
105
|
export declare const ActiveDirectoryStatus: {
|
|
106
106
|
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
107
107
|
readonly DETACHED: "DETACHED";
|
|
108
|
+
readonly INSUFFICIENT_PERMISSIONS: "INSUFFICIENT_PERMISSIONS";
|
|
108
109
|
readonly JOINED: "JOINED";
|
|
109
110
|
readonly JOINING: "JOINING";
|
|
110
111
|
readonly NETWORK_ERROR: "NETWORK_ERROR";
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCacheReportsCommandInput,
|
|
4
|
+
ListCacheReportsCommandOutput,
|
|
5
|
+
} from "../commands/ListCacheReportsCommand";
|
|
6
|
+
import { StorageGatewayPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListCacheReports: (
|
|
8
|
+
config: StorageGatewayPaginationConfiguration,
|
|
9
|
+
input: ListCacheReportsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListCacheReportsCommandOutput>;
|
|
@@ -3,6 +3,7 @@ export * from "./DescribeTapeRecoveryPointsPaginator";
|
|
|
3
3
|
export * from "./DescribeTapesPaginator";
|
|
4
4
|
export * from "./DescribeVTLDevicesPaginator";
|
|
5
5
|
export * from "./Interfaces";
|
|
6
|
+
export * from "./ListCacheReportsPaginator";
|
|
6
7
|
export * from "./ListFileSharesPaginator";
|
|
7
8
|
export * from "./ListFileSystemAssociationsPaginator";
|
|
8
9
|
export * from "./ListGatewaysPaginator";
|
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.787.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",
|
|
@@ -21,16 +21,16 @@
|
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
23
|
"@aws-sdk/core": "3.775.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.787.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.775.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.775.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.775.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.787.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.775.0",
|
|
30
30
|
"@aws-sdk/types": "3.775.0",
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.787.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.775.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.787.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.1.0",
|
|
35
35
|
"@smithy/core": "^3.2.0",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.0.2",
|