@aws-sdk/client-s3-control 3.637.0 → 3.649.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 +8 -0
- package/dist-cjs/endpoint/endpointResolver.js +17 -2
- package/dist-cjs/index.js +171 -54
- package/dist-es/S3Control.js +2 -0
- package/dist-es/commands/ListCallerAccessGrantsCommand.js +30 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/endpoint/endpointResolver.js +18 -3
- package/dist-es/pagination/ListCallerAccessGrantsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restXml.js +89 -0
- package/dist-types/S3Control.d.ts +8 -0
- package/dist-types/S3ControlClient.d.ts +3 -2
- package/dist-types/commands/CreateAccessGrantsInstanceCommand.d.ts +2 -0
- package/dist-types/commands/GetAccessGrantsInstanceCommand.d.ts +6 -0
- package/dist-types/commands/ListAccessGrantsInstancesCommand.d.ts +2 -0
- package/dist-types/commands/ListCallerAccessGrantsCommand.d.ts +77 -0
- package/dist-types/commands/ListStorageLensConfigurationsCommand.d.ts +2 -1
- package/dist-types/commands/ListStorageLensGroupsCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +148 -93
- package/dist-types/models/models_1.d.ts +67 -2
- package/dist-types/pagination/ListCallerAccessGrantsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restXml.d.ts +9 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/S3Control.d.ts +18 -0
- package/dist-types/ts3.4/S3ControlClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListCallerAccessGrantsCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListStorageLensConfigurationsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListStorageLensGroupsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +22 -14
- package/dist-types/ts3.4/models/models_1.d.ts +14 -0
- package/dist-types/ts3.4/pagination/ListCallerAccessGrantsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +12 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +41 -41
|
@@ -259,6 +259,10 @@ import {
|
|
|
259
259
|
ListAccessPointsForObjectLambdaCommandInput,
|
|
260
260
|
ListAccessPointsForObjectLambdaCommandOutput,
|
|
261
261
|
} from "./commands/ListAccessPointsForObjectLambdaCommand";
|
|
262
|
+
import {
|
|
263
|
+
ListCallerAccessGrantsCommandInput,
|
|
264
|
+
ListCallerAccessGrantsCommandOutput,
|
|
265
|
+
} from "./commands/ListCallerAccessGrantsCommand";
|
|
262
266
|
import {
|
|
263
267
|
ListJobsCommandInput,
|
|
264
268
|
ListJobsCommandOutput,
|
|
@@ -1305,6 +1309,20 @@ export interface S3Control {
|
|
|
1305
1309
|
options: __HttpHandlerOptions,
|
|
1306
1310
|
cb: (err: any, data?: ListAccessPointsForObjectLambdaCommandOutput) => void
|
|
1307
1311
|
): void;
|
|
1312
|
+
listCallerAccessGrants(): Promise<ListCallerAccessGrantsCommandOutput>;
|
|
1313
|
+
listCallerAccessGrants(
|
|
1314
|
+
args: ListCallerAccessGrantsCommandInput,
|
|
1315
|
+
options?: __HttpHandlerOptions
|
|
1316
|
+
): Promise<ListCallerAccessGrantsCommandOutput>;
|
|
1317
|
+
listCallerAccessGrants(
|
|
1318
|
+
args: ListCallerAccessGrantsCommandInput,
|
|
1319
|
+
cb: (err: any, data?: ListCallerAccessGrantsCommandOutput) => void
|
|
1320
|
+
): void;
|
|
1321
|
+
listCallerAccessGrants(
|
|
1322
|
+
args: ListCallerAccessGrantsCommandInput,
|
|
1323
|
+
options: __HttpHandlerOptions,
|
|
1324
|
+
cb: (err: any, data?: ListCallerAccessGrantsCommandOutput) => void
|
|
1325
|
+
): void;
|
|
1308
1326
|
listJobs(): Promise<ListJobsCommandOutput>;
|
|
1309
1327
|
listJobs(
|
|
1310
1328
|
args: ListJobsCommandInput,
|
|
@@ -311,6 +311,10 @@ import {
|
|
|
311
311
|
ListAccessPointsForObjectLambdaCommandInput,
|
|
312
312
|
ListAccessPointsForObjectLambdaCommandOutput,
|
|
313
313
|
} from "./commands/ListAccessPointsForObjectLambdaCommand";
|
|
314
|
+
import {
|
|
315
|
+
ListCallerAccessGrantsCommandInput,
|
|
316
|
+
ListCallerAccessGrantsCommandOutput,
|
|
317
|
+
} from "./commands/ListCallerAccessGrantsCommand";
|
|
314
318
|
import {
|
|
315
319
|
ListJobsCommandInput,
|
|
316
320
|
ListJobsCommandOutput,
|
|
@@ -492,6 +496,7 @@ export type ServiceInputTypes =
|
|
|
492
496
|
| ListAccessGrantsLocationsCommandInput
|
|
493
497
|
| ListAccessPointsCommandInput
|
|
494
498
|
| ListAccessPointsForObjectLambdaCommandInput
|
|
499
|
+
| ListCallerAccessGrantsCommandInput
|
|
495
500
|
| ListJobsCommandInput
|
|
496
501
|
| ListMultiRegionAccessPointsCommandInput
|
|
497
502
|
| ListRegionalBucketsCommandInput
|
|
@@ -585,6 +590,7 @@ export type ServiceOutputTypes =
|
|
|
585
590
|
| ListAccessGrantsLocationsCommandOutput
|
|
586
591
|
| ListAccessPointsCommandOutput
|
|
587
592
|
| ListAccessPointsForObjectLambdaCommandOutput
|
|
593
|
+
| ListCallerAccessGrantsCommandOutput
|
|
588
594
|
| ListJobsCommandOutput
|
|
589
595
|
| ListMultiRegionAccessPointsCommandOutput
|
|
590
596
|
| ListRegionalBucketsCommandOutput
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
ListCallerAccessGrantsRequest,
|
|
5
|
+
ListCallerAccessGrantsResult,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
S3ControlClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../S3ControlClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListCallerAccessGrantsCommandInput
|
|
15
|
+
extends ListCallerAccessGrantsRequest {}
|
|
16
|
+
export interface ListCallerAccessGrantsCommandOutput
|
|
17
|
+
extends ListCallerAccessGrantsResult,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const ListCallerAccessGrantsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: ListCallerAccessGrantsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
ListCallerAccessGrantsCommandInput,
|
|
24
|
+
ListCallerAccessGrantsCommandOutput,
|
|
25
|
+
S3ControlClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [ListCallerAccessGrantsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
ListCallerAccessGrantsCommandInput,
|
|
33
|
+
ListCallerAccessGrantsCommandOutput,
|
|
34
|
+
S3ControlClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class ListCallerAccessGrantsCommand extends ListCallerAccessGrantsCommand_base {}
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
ListStorageLensConfigurationsResult,
|
|
6
|
-
} from "../models/models_0";
|
|
3
|
+
import { ListStorageLensConfigurationsRequest } from "../models/models_0";
|
|
4
|
+
import { ListStorageLensConfigurationsResult } from "../models/models_1";
|
|
7
5
|
import {
|
|
8
6
|
S3ControlClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
3
|
+
import {
|
|
4
|
+
ListStorageLensGroupsRequest,
|
|
5
|
+
ListStorageLensGroupsResult,
|
|
6
|
+
} from "../models/models_1";
|
|
5
7
|
import {
|
|
6
8
|
S3ControlClientResolvedConfig,
|
|
7
9
|
ServiceInputTypes,
|
|
@@ -63,6 +63,7 @@ export * from "./ListAccessGrantsInstancesCommand";
|
|
|
63
63
|
export * from "./ListAccessGrantsLocationsCommand";
|
|
64
64
|
export * from "./ListAccessPointsCommand";
|
|
65
65
|
export * from "./ListAccessPointsForObjectLambdaCommand";
|
|
66
|
+
export * from "./ListCallerAccessGrantsCommand";
|
|
66
67
|
export * from "./ListJobsCommand";
|
|
67
68
|
export * from "./ListMultiRegionAccessPointsCommand";
|
|
68
69
|
export * from "./ListRegionalBucketsCommand";
|
|
@@ -15,6 +15,8 @@ export interface ListAccessGrantsInstanceEntry {
|
|
|
15
15
|
AccessGrantsInstanceArn?: string;
|
|
16
16
|
CreatedAt?: Date;
|
|
17
17
|
IdentityCenterArn?: string;
|
|
18
|
+
IdentityCenterInstanceArn?: string;
|
|
19
|
+
IdentityCenterApplicationArn?: string;
|
|
18
20
|
}
|
|
19
21
|
export interface AccessGrantsLocationConfiguration {
|
|
20
22
|
S3SubPrefix?: string;
|
|
@@ -222,6 +224,8 @@ export interface CreateAccessGrantsInstanceResult {
|
|
|
222
224
|
AccessGrantsInstanceId?: string;
|
|
223
225
|
AccessGrantsInstanceArn?: string;
|
|
224
226
|
IdentityCenterArn?: string;
|
|
227
|
+
IdentityCenterInstanceArn?: string;
|
|
228
|
+
IdentityCenterApplicationArn?: string;
|
|
225
229
|
}
|
|
226
230
|
export interface CreateAccessGrantsLocationRequest {
|
|
227
231
|
AccountId?: string;
|
|
@@ -941,6 +945,8 @@ export interface GetAccessGrantsInstanceResult {
|
|
|
941
945
|
AccessGrantsInstanceArn?: string;
|
|
942
946
|
AccessGrantsInstanceId?: string;
|
|
943
947
|
IdentityCenterArn?: string;
|
|
948
|
+
IdentityCenterInstanceArn?: string;
|
|
949
|
+
IdentityCenterApplicationArn?: string;
|
|
944
950
|
CreatedAt?: Date;
|
|
945
951
|
}
|
|
946
952
|
export interface GetAccessGrantsInstanceForPrefixRequest {
|
|
@@ -1515,6 +1521,22 @@ export interface ListAccessPointsForObjectLambdaResult {
|
|
|
1515
1521
|
ObjectLambdaAccessPointList?: ObjectLambdaAccessPoint[];
|
|
1516
1522
|
NextToken?: string;
|
|
1517
1523
|
}
|
|
1524
|
+
export interface ListCallerAccessGrantsRequest {
|
|
1525
|
+
AccountId?: string;
|
|
1526
|
+
GrantScope?: string;
|
|
1527
|
+
NextToken?: string;
|
|
1528
|
+
MaxResults?: number;
|
|
1529
|
+
AllowedByApplication?: boolean;
|
|
1530
|
+
}
|
|
1531
|
+
export interface ListCallerAccessGrantsEntry {
|
|
1532
|
+
Permission?: Permission;
|
|
1533
|
+
GrantScope?: string;
|
|
1534
|
+
ApplicationArn?: string;
|
|
1535
|
+
}
|
|
1536
|
+
export interface ListCallerAccessGrantsResult {
|
|
1537
|
+
NextToken?: string;
|
|
1538
|
+
CallerAccessGrantsList?: ListCallerAccessGrantsEntry[];
|
|
1539
|
+
}
|
|
1518
1540
|
export declare class InvalidNextTokenException extends __BaseException {
|
|
1519
1541
|
readonly name: "InvalidNextTokenException";
|
|
1520
1542
|
readonly $fault: "client";
|
|
@@ -1593,20 +1615,6 @@ export interface ListStorageLensConfigurationsRequest {
|
|
|
1593
1615
|
AccountId?: string;
|
|
1594
1616
|
NextToken?: string;
|
|
1595
1617
|
}
|
|
1596
|
-
export interface ListStorageLensConfigurationEntry {
|
|
1597
|
-
Id: string | undefined;
|
|
1598
|
-
StorageLensArn: string | undefined;
|
|
1599
|
-
HomeRegion: string | undefined;
|
|
1600
|
-
IsEnabled?: boolean;
|
|
1601
|
-
}
|
|
1602
|
-
export interface ListStorageLensConfigurationsResult {
|
|
1603
|
-
NextToken?: string;
|
|
1604
|
-
StorageLensConfigurationList?: ListStorageLensConfigurationEntry[];
|
|
1605
|
-
}
|
|
1606
|
-
export interface ListStorageLensGroupsRequest {
|
|
1607
|
-
AccountId?: string;
|
|
1608
|
-
NextToken?: string;
|
|
1609
|
-
}
|
|
1610
1618
|
export declare const CredentialsFilterSensitiveLog: (obj: Credentials) => any;
|
|
1611
1619
|
export declare const GetDataAccessResultFilterSensitiveLog: (
|
|
1612
1620
|
obj: GetDataAccessResult
|
|
@@ -15,6 +15,20 @@ import {
|
|
|
15
15
|
Tag,
|
|
16
16
|
} from "./models_0";
|
|
17
17
|
import { S3ControlServiceException as __BaseException } from "./S3ControlServiceException";
|
|
18
|
+
export interface ListStorageLensConfigurationEntry {
|
|
19
|
+
Id: string | undefined;
|
|
20
|
+
StorageLensArn: string | undefined;
|
|
21
|
+
HomeRegion: string | undefined;
|
|
22
|
+
IsEnabled?: boolean;
|
|
23
|
+
}
|
|
24
|
+
export interface ListStorageLensConfigurationsResult {
|
|
25
|
+
NextToken?: string;
|
|
26
|
+
StorageLensConfigurationList?: ListStorageLensConfigurationEntry[];
|
|
27
|
+
}
|
|
28
|
+
export interface ListStorageLensGroupsRequest {
|
|
29
|
+
AccountId?: string;
|
|
30
|
+
NextToken?: string;
|
|
31
|
+
}
|
|
18
32
|
export interface ListStorageLensGroupEntry {
|
|
19
33
|
Name: string | undefined;
|
|
20
34
|
StorageLensGroupArn: string | undefined;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCallerAccessGrantsCommandInput,
|
|
4
|
+
ListCallerAccessGrantsCommandOutput,
|
|
5
|
+
} from "../commands/ListCallerAccessGrantsCommand";
|
|
6
|
+
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListCallerAccessGrants: (
|
|
8
|
+
config: S3ControlPaginationConfiguration,
|
|
9
|
+
input: ListCallerAccessGrantsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListCallerAccessGrantsCommandOutput>;
|
|
@@ -4,6 +4,7 @@ export * from "./ListAccessGrantsLocationsPaginator";
|
|
|
4
4
|
export * from "./ListAccessGrantsPaginator";
|
|
5
5
|
export * from "./ListAccessPointsForObjectLambdaPaginator";
|
|
6
6
|
export * from "./ListAccessPointsPaginator";
|
|
7
|
+
export * from "./ListCallerAccessGrantsPaginator";
|
|
7
8
|
export * from "./ListJobsPaginator";
|
|
8
9
|
export * from "./ListMultiRegionAccessPointsPaginator";
|
|
9
10
|
export * from "./ListRegionalBucketsPaginator";
|
|
@@ -263,6 +263,10 @@ import {
|
|
|
263
263
|
ListAccessPointsForObjectLambdaCommandInput,
|
|
264
264
|
ListAccessPointsForObjectLambdaCommandOutput,
|
|
265
265
|
} from "../commands/ListAccessPointsForObjectLambdaCommand";
|
|
266
|
+
import {
|
|
267
|
+
ListCallerAccessGrantsCommandInput,
|
|
268
|
+
ListCallerAccessGrantsCommandOutput,
|
|
269
|
+
} from "../commands/ListCallerAccessGrantsCommand";
|
|
266
270
|
import {
|
|
267
271
|
ListJobsCommandInput,
|
|
268
272
|
ListJobsCommandOutput,
|
|
@@ -631,6 +635,10 @@ export declare const se_ListAccessPointsForObjectLambdaCommand: (
|
|
|
631
635
|
input: ListAccessPointsForObjectLambdaCommandInput,
|
|
632
636
|
context: __SerdeContext
|
|
633
637
|
) => Promise<__HttpRequest>;
|
|
638
|
+
export declare const se_ListCallerAccessGrantsCommand: (
|
|
639
|
+
input: ListCallerAccessGrantsCommandInput,
|
|
640
|
+
context: __SerdeContext
|
|
641
|
+
) => Promise<__HttpRequest>;
|
|
634
642
|
export declare const se_ListJobsCommand: (
|
|
635
643
|
input: ListJobsCommandInput,
|
|
636
644
|
context: __SerdeContext
|
|
@@ -999,6 +1007,10 @@ export declare const de_ListAccessPointsForObjectLambdaCommand: (
|
|
|
999
1007
|
output: __HttpResponse,
|
|
1000
1008
|
context: __SerdeContext
|
|
1001
1009
|
) => Promise<ListAccessPointsForObjectLambdaCommandOutput>;
|
|
1010
|
+
export declare const de_ListCallerAccessGrantsCommand: (
|
|
1011
|
+
output: __HttpResponse,
|
|
1012
|
+
context: __SerdeContext
|
|
1013
|
+
) => Promise<ListCallerAccessGrantsCommandOutput>;
|
|
1002
1014
|
export declare const de_ListJobsCommand: (
|
|
1003
1015
|
output: __HttpResponse,
|
|
1004
1016
|
context: __SerdeContext
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
27
27
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
28
28
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
29
29
|
apiVersion: string;
|
|
30
|
+
cacheMiddleware?: boolean | undefined;
|
|
30
31
|
urlParser: import("@smithy/types").UrlParser;
|
|
31
32
|
base64Decoder: import("@smithy/types").Decoder;
|
|
32
33
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -65,6 +66,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
65
66
|
}
|
|
66
67
|
) => import("@smithy/types").EndpointV2;
|
|
67
68
|
tls?: boolean | undefined;
|
|
69
|
+
serviceConfiguredEndpoint?: undefined;
|
|
68
70
|
useArnRegion?:
|
|
69
71
|
| boolean
|
|
70
72
|
| import("@smithy/types").Provider<boolean>
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
31
31
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
32
32
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
33
33
|
apiVersion: string;
|
|
34
|
+
cacheMiddleware?: boolean | undefined;
|
|
34
35
|
urlParser: import("@smithy/types").UrlParser;
|
|
35
36
|
base64Decoder: import("@smithy/types").Decoder;
|
|
36
37
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -69,6 +70,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
69
70
|
}
|
|
70
71
|
) => import("@smithy/types").EndpointV2;
|
|
71
72
|
tls?: boolean | undefined;
|
|
73
|
+
serviceConfiguredEndpoint?: undefined;
|
|
72
74
|
useArnRegion?:
|
|
73
75
|
| boolean
|
|
74
76
|
| import("@smithy/types").Provider<boolean>
|
|
@@ -9,6 +9,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
9
9
|
| import("@smithy/protocol-http").HttpHandler<any>
|
|
10
10
|
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
11
|
apiVersion: string;
|
|
12
|
+
cacheMiddleware?: boolean | undefined;
|
|
12
13
|
urlParser: import("@smithy/types").UrlParser;
|
|
13
14
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
14
15
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -59,6 +60,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
59
60
|
}
|
|
60
61
|
) => import("@smithy/types").EndpointV2;
|
|
61
62
|
tls?: boolean | undefined;
|
|
63
|
+
serviceConfiguredEndpoint?: undefined;
|
|
62
64
|
useArnRegion?:
|
|
63
65
|
| boolean
|
|
64
66
|
| import("@smithy/types").Provider<boolean>
|
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.649.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-s3-control",
|
|
@@ -22,49 +22,49 @@
|
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
24
24
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
25
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
26
|
-
"@aws-sdk/client-sts": "3.
|
|
27
|
-
"@aws-sdk/core": "3.
|
|
28
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
29
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
30
|
-
"@aws-sdk/middleware-logger": "3.
|
|
31
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
32
|
-
"@aws-sdk/middleware-sdk-s3-control": "3.
|
|
33
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
34
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
35
|
-
"@aws-sdk/types": "3.
|
|
36
|
-
"@aws-sdk/util-endpoints": "3.
|
|
37
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
38
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
39
|
-
"@aws-sdk/xml-builder": "3.
|
|
40
|
-
"@smithy/config-resolver": "^3.0.
|
|
41
|
-
"@smithy/core": "^2.4.
|
|
42
|
-
"@smithy/fetch-http-handler": "^3.2.
|
|
43
|
-
"@smithy/hash-blob-browser": "^3.1.
|
|
44
|
-
"@smithy/hash-node": "^3.0.
|
|
45
|
-
"@smithy/hash-stream-node": "^3.1.
|
|
46
|
-
"@smithy/invalid-dependency": "^3.0.
|
|
47
|
-
"@smithy/md5-js": "^3.0.
|
|
48
|
-
"@smithy/middleware-apply-body-checksum": "^3.0.
|
|
49
|
-
"@smithy/middleware-content-length": "^3.0.
|
|
50
|
-
"@smithy/middleware-endpoint": "^3.1.
|
|
51
|
-
"@smithy/middleware-retry": "^3.0.
|
|
52
|
-
"@smithy/middleware-serde": "^3.0.
|
|
53
|
-
"@smithy/middleware-stack": "^3.0.
|
|
54
|
-
"@smithy/node-config-provider": "^3.1.
|
|
55
|
-
"@smithy/node-http-handler": "^3.
|
|
56
|
-
"@smithy/protocol-http": "^4.1.
|
|
57
|
-
"@smithy/smithy-client": "^3.
|
|
58
|
-
"@smithy/types": "^3.
|
|
59
|
-
"@smithy/url-parser": "^3.0.
|
|
25
|
+
"@aws-sdk/client-sso-oidc": "3.649.0",
|
|
26
|
+
"@aws-sdk/client-sts": "3.649.0",
|
|
27
|
+
"@aws-sdk/core": "3.649.0",
|
|
28
|
+
"@aws-sdk/credential-provider-node": "3.649.0",
|
|
29
|
+
"@aws-sdk/middleware-host-header": "3.649.0",
|
|
30
|
+
"@aws-sdk/middleware-logger": "3.649.0",
|
|
31
|
+
"@aws-sdk/middleware-recursion-detection": "3.649.0",
|
|
32
|
+
"@aws-sdk/middleware-sdk-s3-control": "3.649.0",
|
|
33
|
+
"@aws-sdk/middleware-user-agent": "3.649.0",
|
|
34
|
+
"@aws-sdk/region-config-resolver": "3.649.0",
|
|
35
|
+
"@aws-sdk/types": "3.649.0",
|
|
36
|
+
"@aws-sdk/util-endpoints": "3.649.0",
|
|
37
|
+
"@aws-sdk/util-user-agent-browser": "3.649.0",
|
|
38
|
+
"@aws-sdk/util-user-agent-node": "3.649.0",
|
|
39
|
+
"@aws-sdk/xml-builder": "3.649.0",
|
|
40
|
+
"@smithy/config-resolver": "^3.0.6",
|
|
41
|
+
"@smithy/core": "^2.4.1",
|
|
42
|
+
"@smithy/fetch-http-handler": "^3.2.5",
|
|
43
|
+
"@smithy/hash-blob-browser": "^3.1.3",
|
|
44
|
+
"@smithy/hash-node": "^3.0.4",
|
|
45
|
+
"@smithy/hash-stream-node": "^3.1.3",
|
|
46
|
+
"@smithy/invalid-dependency": "^3.0.4",
|
|
47
|
+
"@smithy/md5-js": "^3.0.4",
|
|
48
|
+
"@smithy/middleware-apply-body-checksum": "^3.0.6",
|
|
49
|
+
"@smithy/middleware-content-length": "^3.0.6",
|
|
50
|
+
"@smithy/middleware-endpoint": "^3.1.1",
|
|
51
|
+
"@smithy/middleware-retry": "^3.0.16",
|
|
52
|
+
"@smithy/middleware-serde": "^3.0.4",
|
|
53
|
+
"@smithy/middleware-stack": "^3.0.4",
|
|
54
|
+
"@smithy/node-config-provider": "^3.1.5",
|
|
55
|
+
"@smithy/node-http-handler": "^3.2.0",
|
|
56
|
+
"@smithy/protocol-http": "^4.1.1",
|
|
57
|
+
"@smithy/smithy-client": "^3.3.0",
|
|
58
|
+
"@smithy/types": "^3.4.0",
|
|
59
|
+
"@smithy/url-parser": "^3.0.4",
|
|
60
60
|
"@smithy/util-base64": "^3.0.0",
|
|
61
61
|
"@smithy/util-body-length-browser": "^3.0.0",
|
|
62
62
|
"@smithy/util-body-length-node": "^3.0.0",
|
|
63
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
|
64
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
|
65
|
-
"@smithy/util-endpoints": "^2.0
|
|
66
|
-
"@smithy/util-middleware": "^3.0.
|
|
67
|
-
"@smithy/util-retry": "^3.0.
|
|
63
|
+
"@smithy/util-defaults-mode-browser": "^3.0.16",
|
|
64
|
+
"@smithy/util-defaults-mode-node": "^3.0.16",
|
|
65
|
+
"@smithy/util-endpoints": "^2.1.0",
|
|
66
|
+
"@smithy/util-middleware": "^3.0.4",
|
|
67
|
+
"@smithy/util-retry": "^3.0.4",
|
|
68
68
|
"@smithy/util-utf8": "^3.0.0",
|
|
69
69
|
"tslib": "^2.6.2",
|
|
70
70
|
"uuid": "^9.0.1"
|