@aws-sdk/client-s3-control 3.477.0 → 3.478.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/pagination/ListAccessGrantsInstancesPaginator.js +2 -24
- package/dist-cjs/pagination/ListAccessGrantsLocationsPaginator.js +2 -24
- package/dist-cjs/pagination/ListAccessGrantsPaginator.js +2 -24
- package/dist-cjs/pagination/ListAccessPointsForObjectLambdaPaginator.js +2 -24
- package/dist-cjs/pagination/ListAccessPointsPaginator.js +2 -24
- package/dist-cjs/pagination/ListJobsPaginator.js +2 -24
- package/dist-cjs/pagination/ListMultiRegionAccessPointsPaginator.js +2 -24
- package/dist-cjs/pagination/ListRegionalBucketsPaginator.js +2 -24
- package/dist-cjs/pagination/ListStorageLensConfigurationsPaginator.js +2 -23
- package/dist-cjs/pagination/ListStorageLensGroupsPaginator.js +2 -23
- package/dist-es/pagination/ListAccessGrantsInstancesPaginator.js +2 -23
- package/dist-es/pagination/ListAccessGrantsLocationsPaginator.js +2 -23
- package/dist-es/pagination/ListAccessGrantsPaginator.js +2 -23
- package/dist-es/pagination/ListAccessPointsForObjectLambdaPaginator.js +2 -23
- package/dist-es/pagination/ListAccessPointsPaginator.js +2 -23
- package/dist-es/pagination/ListJobsPaginator.js +2 -23
- package/dist-es/pagination/ListMultiRegionAccessPointsPaginator.js +2 -23
- package/dist-es/pagination/ListRegionalBucketsPaginator.js +2 -23
- package/dist-es/pagination/ListStorageLensConfigurationsPaginator.js +2 -22
- package/dist-es/pagination/ListStorageLensGroupsPaginator.js +2 -22
- package/dist-types/pagination/ListAccessGrantsInstancesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAccessGrantsLocationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAccessGrantsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAccessPointsForObjectLambdaPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAccessPointsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListJobsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListMultiRegionAccessPointsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListRegionalBucketsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListStorageLensConfigurationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListStorageLensGroupsPaginator.d.ts +1 -1
- package/dist-types/ts3.4/pagination/ListAccessGrantsInstancesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListAccessGrantsLocationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListAccessGrantsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListAccessPointsForObjectLambdaPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListAccessPointsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListMultiRegionAccessPointsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListRegionalBucketsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListStorageLensConfigurationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListStorageLensGroupsPaginator.d.ts +3 -3
- package/package.json +6 -6
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListAccessGrantsInstances = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListAccessGrantsInstancesCommand_1 = require("../commands/ListAccessGrantsInstancesCommand");
|
|
5
6
|
const S3ControlClient_1 = require("../S3ControlClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListAccessGrantsInstancesCommand_1.ListAccessGrantsInstancesCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListAccessGrantsInstances(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected S3Control | S3ControlClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListAccessGrantsInstances = paginateListAccessGrantsInstances;
|
|
7
|
+
exports.paginateListAccessGrantsInstances = (0, core_1.createPaginator)(S3ControlClient_1.S3ControlClient, ListAccessGrantsInstancesCommand_1.ListAccessGrantsInstancesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListAccessGrantsLocations = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListAccessGrantsLocationsCommand_1 = require("../commands/ListAccessGrantsLocationsCommand");
|
|
5
6
|
const S3ControlClient_1 = require("../S3ControlClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListAccessGrantsLocationsCommand_1.ListAccessGrantsLocationsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListAccessGrantsLocations(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected S3Control | S3ControlClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListAccessGrantsLocations = paginateListAccessGrantsLocations;
|
|
7
|
+
exports.paginateListAccessGrantsLocations = (0, core_1.createPaginator)(S3ControlClient_1.S3ControlClient, ListAccessGrantsLocationsCommand_1.ListAccessGrantsLocationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListAccessGrants = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListAccessGrantsCommand_1 = require("../commands/ListAccessGrantsCommand");
|
|
5
6
|
const S3ControlClient_1 = require("../S3ControlClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListAccessGrantsCommand_1.ListAccessGrantsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListAccessGrants(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected S3Control | S3ControlClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListAccessGrants = paginateListAccessGrants;
|
|
7
|
+
exports.paginateListAccessGrants = (0, core_1.createPaginator)(S3ControlClient_1.S3ControlClient, ListAccessGrantsCommand_1.ListAccessGrantsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListAccessPointsForObjectLambda = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListAccessPointsForObjectLambdaCommand_1 = require("../commands/ListAccessPointsForObjectLambdaCommand");
|
|
5
6
|
const S3ControlClient_1 = require("../S3ControlClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListAccessPointsForObjectLambdaCommand_1.ListAccessPointsForObjectLambdaCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListAccessPointsForObjectLambda(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected S3Control | S3ControlClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListAccessPointsForObjectLambda = paginateListAccessPointsForObjectLambda;
|
|
7
|
+
exports.paginateListAccessPointsForObjectLambda = (0, core_1.createPaginator)(S3ControlClient_1.S3ControlClient, ListAccessPointsForObjectLambdaCommand_1.ListAccessPointsForObjectLambdaCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListAccessPoints = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListAccessPointsCommand_1 = require("../commands/ListAccessPointsCommand");
|
|
5
6
|
const S3ControlClient_1 = require("../S3ControlClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListAccessPointsCommand_1.ListAccessPointsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListAccessPoints(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected S3Control | S3ControlClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListAccessPoints = paginateListAccessPoints;
|
|
7
|
+
exports.paginateListAccessPoints = (0, core_1.createPaginator)(S3ControlClient_1.S3ControlClient, ListAccessPointsCommand_1.ListAccessPointsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListJobs = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListJobsCommand_1 = require("../commands/ListJobsCommand");
|
|
5
6
|
const S3ControlClient_1 = require("../S3ControlClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListJobsCommand_1.ListJobsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListJobs(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected S3Control | S3ControlClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListJobs = paginateListJobs;
|
|
7
|
+
exports.paginateListJobs = (0, core_1.createPaginator)(S3ControlClient_1.S3ControlClient, ListJobsCommand_1.ListJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListMultiRegionAccessPoints = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListMultiRegionAccessPointsCommand_1 = require("../commands/ListMultiRegionAccessPointsCommand");
|
|
5
6
|
const S3ControlClient_1 = require("../S3ControlClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListMultiRegionAccessPointsCommand_1.ListMultiRegionAccessPointsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListMultiRegionAccessPoints(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected S3Control | S3ControlClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListMultiRegionAccessPoints = paginateListMultiRegionAccessPoints;
|
|
7
|
+
exports.paginateListMultiRegionAccessPoints = (0, core_1.createPaginator)(S3ControlClient_1.S3ControlClient, ListMultiRegionAccessPointsCommand_1.ListMultiRegionAccessPointsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListRegionalBuckets = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListRegionalBucketsCommand_1 = require("../commands/ListRegionalBucketsCommand");
|
|
5
6
|
const S3ControlClient_1 = require("../S3ControlClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListRegionalBucketsCommand_1.ListRegionalBucketsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListRegionalBuckets(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected S3Control | S3ControlClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListRegionalBuckets = paginateListRegionalBuckets;
|
|
7
|
+
exports.paginateListRegionalBuckets = (0, core_1.createPaginator)(S3ControlClient_1.S3ControlClient, ListRegionalBucketsCommand_1.ListRegionalBucketsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,28 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListStorageLensConfigurations = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListStorageLensConfigurationsCommand_1 = require("../commands/ListStorageLensConfigurationsCommand");
|
|
5
6
|
const S3ControlClient_1 = require("../S3ControlClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListStorageLensConfigurationsCommand_1.ListStorageLensConfigurationsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListStorageLensConfigurations(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
16
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
17
|
-
}
|
|
18
|
-
else {
|
|
19
|
-
throw new Error("Invalid client, expected S3Control | S3ControlClient");
|
|
20
|
-
}
|
|
21
|
-
yield page;
|
|
22
|
-
const prevToken = token;
|
|
23
|
-
token = page.NextToken;
|
|
24
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
25
|
-
}
|
|
26
|
-
return undefined;
|
|
27
|
-
}
|
|
28
|
-
exports.paginateListStorageLensConfigurations = paginateListStorageLensConfigurations;
|
|
7
|
+
exports.paginateListStorageLensConfigurations = (0, core_1.createPaginator)(S3ControlClient_1.S3ControlClient, ListStorageLensConfigurationsCommand_1.ListStorageLensConfigurationsCommand, "NextToken", "NextToken", "");
|
|
@@ -1,28 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListStorageLensGroups = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListStorageLensGroupsCommand_1 = require("../commands/ListStorageLensGroupsCommand");
|
|
5
6
|
const S3ControlClient_1 = require("../S3ControlClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListStorageLensGroupsCommand_1.ListStorageLensGroupsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListStorageLensGroups(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
if (config.client instanceof S3ControlClient_1.S3ControlClient) {
|
|
16
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
17
|
-
}
|
|
18
|
-
else {
|
|
19
|
-
throw new Error("Invalid client, expected S3Control | S3ControlClient");
|
|
20
|
-
}
|
|
21
|
-
yield page;
|
|
22
|
-
const prevToken = token;
|
|
23
|
-
token = page.NextToken;
|
|
24
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
25
|
-
}
|
|
26
|
-
return undefined;
|
|
27
|
-
}
|
|
28
|
-
exports.paginateListStorageLensGroups = paginateListStorageLensGroups;
|
|
7
|
+
exports.paginateListStorageLensGroups = (0, core_1.createPaginator)(S3ControlClient_1.S3ControlClient, ListStorageLensGroupsCommand_1.ListStorageLensGroupsCommand, "NextToken", "NextToken", "");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListAccessGrantsInstancesCommand, } from "../commands/ListAccessGrantsInstancesCommand";
|
|
2
3
|
import { S3ControlClient } from "../S3ControlClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListAccessGrantsInstancesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListAccessGrantsInstances(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof S3ControlClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected S3Control | S3ControlClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListAccessGrantsInstances = createPaginator(S3ControlClient, ListAccessGrantsInstancesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListAccessGrantsLocationsCommand, } from "../commands/ListAccessGrantsLocationsCommand";
|
|
2
3
|
import { S3ControlClient } from "../S3ControlClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListAccessGrantsLocationsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListAccessGrantsLocations(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof S3ControlClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected S3Control | S3ControlClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListAccessGrantsLocations = createPaginator(S3ControlClient, ListAccessGrantsLocationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListAccessGrantsCommand, } from "../commands/ListAccessGrantsCommand";
|
|
2
3
|
import { S3ControlClient } from "../S3ControlClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListAccessGrantsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListAccessGrants(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof S3ControlClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected S3Control | S3ControlClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListAccessGrants = createPaginator(S3ControlClient, ListAccessGrantsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListAccessPointsForObjectLambdaCommand, } from "../commands/ListAccessPointsForObjectLambdaCommand";
|
|
2
3
|
import { S3ControlClient } from "../S3ControlClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListAccessPointsForObjectLambdaCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListAccessPointsForObjectLambda(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof S3ControlClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected S3Control | S3ControlClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListAccessPointsForObjectLambda = createPaginator(S3ControlClient, ListAccessPointsForObjectLambdaCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListAccessPointsCommand, } from "../commands/ListAccessPointsCommand";
|
|
2
3
|
import { S3ControlClient } from "../S3ControlClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListAccessPointsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListAccessPoints(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof S3ControlClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected S3Control | S3ControlClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListAccessPoints = createPaginator(S3ControlClient, ListAccessPointsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListJobsCommand } from "../commands/ListJobsCommand";
|
|
2
3
|
import { S3ControlClient } from "../S3ControlClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListJobsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListJobs(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof S3ControlClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected S3Control | S3ControlClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListJobs = createPaginator(S3ControlClient, ListJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListMultiRegionAccessPointsCommand, } from "../commands/ListMultiRegionAccessPointsCommand";
|
|
2
3
|
import { S3ControlClient } from "../S3ControlClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListMultiRegionAccessPointsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListMultiRegionAccessPoints(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof S3ControlClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected S3Control | S3ControlClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListMultiRegionAccessPoints = createPaginator(S3ControlClient, ListMultiRegionAccessPointsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListRegionalBucketsCommand, } from "../commands/ListRegionalBucketsCommand";
|
|
2
3
|
import { S3ControlClient } from "../S3ControlClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListRegionalBucketsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListRegionalBuckets(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof S3ControlClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected S3Control | S3ControlClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListRegionalBuckets = createPaginator(S3ControlClient, ListRegionalBucketsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,24 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListStorageLensConfigurationsCommand, } from "../commands/ListStorageLensConfigurationsCommand";
|
|
2
3
|
import { S3ControlClient } from "../S3ControlClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListStorageLensConfigurationsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListStorageLensConfigurations(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
if (config.client instanceof S3ControlClient) {
|
|
13
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
14
|
-
}
|
|
15
|
-
else {
|
|
16
|
-
throw new Error("Invalid client, expected S3Control | S3ControlClient");
|
|
17
|
-
}
|
|
18
|
-
yield page;
|
|
19
|
-
const prevToken = token;
|
|
20
|
-
token = page.NextToken;
|
|
21
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
22
|
-
}
|
|
23
|
-
return undefined;
|
|
24
|
-
}
|
|
4
|
+
export const paginateListStorageLensConfigurations = createPaginator(S3ControlClient, ListStorageLensConfigurationsCommand, "NextToken", "NextToken", "");
|
|
@@ -1,24 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListStorageLensGroupsCommand, } from "../commands/ListStorageLensGroupsCommand";
|
|
2
3
|
import { S3ControlClient } from "../S3ControlClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListStorageLensGroupsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListStorageLensGroups(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
if (config.client instanceof S3ControlClient) {
|
|
13
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
14
|
-
}
|
|
15
|
-
else {
|
|
16
|
-
throw new Error("Invalid client, expected S3Control | S3ControlClient");
|
|
17
|
-
}
|
|
18
|
-
yield page;
|
|
19
|
-
const prevToken = token;
|
|
20
|
-
token = page.NextToken;
|
|
21
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
22
|
-
}
|
|
23
|
-
return undefined;
|
|
24
|
-
}
|
|
4
|
+
export const paginateListStorageLensGroups = createPaginator(S3ControlClient, ListStorageLensGroupsCommand, "NextToken", "NextToken", "");
|
|
@@ -4,4 +4,4 @@ import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListAccessGrantsInstances: (config: S3ControlPaginationConfiguration, input: ListAccessGrantsInstancesCommandInput, ...rest: any[]) => Paginator<ListAccessGrantsInstancesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListAccessGrantsLocations: (config: S3ControlPaginationConfiguration, input: ListAccessGrantsLocationsCommandInput, ...rest: any[]) => Paginator<ListAccessGrantsLocationsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListAccessGrants: (config: S3ControlPaginationConfiguration, input: ListAccessGrantsCommandInput, ...rest: any[]) => Paginator<ListAccessGrantsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListAccessPointsForObjectLambda: (config: S3ControlPaginationConfiguration, input: ListAccessPointsForObjectLambdaCommandInput, ...rest: any[]) => Paginator<ListAccessPointsForObjectLambdaCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListAccessPoints: (config: S3ControlPaginationConfiguration, input: ListAccessPointsCommandInput, ...rest: any[]) => Paginator<ListAccessPointsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListJobs: (config: S3ControlPaginationConfiguration, input: ListJobsCommandInput, ...rest: any[]) => Paginator<ListJobsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListMultiRegionAccessPoints: (config: S3ControlPaginationConfiguration, input: ListMultiRegionAccessPointsCommandInput, ...rest: any[]) => Paginator<ListMultiRegionAccessPointsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListRegionalBuckets: (config: S3ControlPaginationConfiguration, input: ListRegionalBucketsCommandInput, ...rest: any[]) => Paginator<ListRegionalBucketsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListStorageLensConfigurations: (config: S3ControlPaginationConfiguration, input: ListStorageLensConfigurationsCommandInput, ...rest: any[]) => Paginator<ListStorageLensConfigurationsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListStorageLensGroups: (config: S3ControlPaginationConfiguration, input: ListStorageLensGroupsCommandInput, ...rest: any[]) => Paginator<ListStorageLensGroupsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListAccessGrantsInstancesCommandOutput,
|
|
5
5
|
} from "../commands/ListAccessGrantsInstancesCommand";
|
|
6
6
|
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListAccessGrantsInstances: (
|
|
8
8
|
config: S3ControlPaginationConfiguration,
|
|
9
9
|
input: ListAccessGrantsInstancesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAccessGrantsInstancesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListAccessGrantsLocationsCommandOutput,
|
|
5
5
|
} from "../commands/ListAccessGrantsLocationsCommand";
|
|
6
6
|
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListAccessGrantsLocations: (
|
|
8
8
|
config: S3ControlPaginationConfiguration,
|
|
9
9
|
input: ListAccessGrantsLocationsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAccessGrantsLocationsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListAccessGrantsCommandOutput,
|
|
5
5
|
} from "../commands/ListAccessGrantsCommand";
|
|
6
6
|
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListAccessGrants: (
|
|
8
8
|
config: S3ControlPaginationConfiguration,
|
|
9
9
|
input: ListAccessGrantsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAccessGrantsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListAccessPointsForObjectLambdaCommandOutput,
|
|
5
5
|
} from "../commands/ListAccessPointsForObjectLambdaCommand";
|
|
6
6
|
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListAccessPointsForObjectLambda: (
|
|
8
8
|
config: S3ControlPaginationConfiguration,
|
|
9
9
|
input: ListAccessPointsForObjectLambdaCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAccessPointsForObjectLambdaCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListAccessPointsCommandOutput,
|
|
5
5
|
} from "../commands/ListAccessPointsCommand";
|
|
6
6
|
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListAccessPoints: (
|
|
8
8
|
config: S3ControlPaginationConfiguration,
|
|
9
9
|
input: ListAccessPointsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListAccessPointsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListJobsCommandOutput,
|
|
5
5
|
} from "../commands/ListJobsCommand";
|
|
6
6
|
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListJobs: (
|
|
8
8
|
config: S3ControlPaginationConfiguration,
|
|
9
9
|
input: ListJobsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListJobsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListMultiRegionAccessPointsCommandOutput,
|
|
5
5
|
} from "../commands/ListMultiRegionAccessPointsCommand";
|
|
6
6
|
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListMultiRegionAccessPoints: (
|
|
8
8
|
config: S3ControlPaginationConfiguration,
|
|
9
9
|
input: ListMultiRegionAccessPointsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListMultiRegionAccessPointsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListRegionalBucketsCommandOutput,
|
|
5
5
|
} from "../commands/ListRegionalBucketsCommand";
|
|
6
6
|
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListRegionalBuckets: (
|
|
8
8
|
config: S3ControlPaginationConfiguration,
|
|
9
9
|
input: ListRegionalBucketsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListRegionalBucketsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListStorageLensConfigurationsCommandOutput,
|
|
5
5
|
} from "../commands/ListStorageLensConfigurationsCommand";
|
|
6
6
|
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListStorageLensConfigurations: (
|
|
8
8
|
config: S3ControlPaginationConfiguration,
|
|
9
9
|
input: ListStorageLensConfigurationsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListStorageLensConfigurationsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListStorageLensGroupsCommandOutput,
|
|
5
5
|
} from "../commands/ListStorageLensGroupsCommand";
|
|
6
6
|
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListStorageLensGroups: (
|
|
8
8
|
config: S3ControlPaginationConfiguration,
|
|
9
9
|
input: ListStorageLensGroupsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListStorageLensGroupsCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-s3-control",
|
|
3
3
|
"description": "AWS SDK for JavaScript S3 Control Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.478.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",
|
|
@@ -22,18 +22,18 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
24
24
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
25
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
+
"@aws-sdk/client-sts": "3.478.0",
|
|
26
26
|
"@aws-sdk/core": "3.477.0",
|
|
27
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
+
"@aws-sdk/credential-provider-node": "3.478.0",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "3.468.0",
|
|
29
29
|
"@aws-sdk/middleware-logger": "3.468.0",
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "3.468.0",
|
|
31
|
-
"@aws-sdk/middleware-sdk-s3-control": "3.
|
|
31
|
+
"@aws-sdk/middleware-sdk-s3-control": "3.478.0",
|
|
32
32
|
"@aws-sdk/middleware-signing": "3.468.0",
|
|
33
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
33
|
+
"@aws-sdk/middleware-user-agent": "3.478.0",
|
|
34
34
|
"@aws-sdk/region-config-resolver": "3.470.0",
|
|
35
35
|
"@aws-sdk/types": "3.468.0",
|
|
36
|
-
"@aws-sdk/util-endpoints": "3.
|
|
36
|
+
"@aws-sdk/util-endpoints": "3.478.0",
|
|
37
37
|
"@aws-sdk/util-user-agent-browser": "3.468.0",
|
|
38
38
|
"@aws-sdk/util-user-agent-node": "3.470.0",
|
|
39
39
|
"@aws-sdk/xml-builder": "3.472.0",
|