@aws-sdk/client-s3-control 3.171.0 → 3.178.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/CHANGELOG.md +19 -0
- package/dist-cjs/S3Control.js +30 -0
- package/dist-cjs/commands/GetBucketVersioningCommand.js +38 -0
- package/dist-cjs/commands/PutBucketVersioningCommand.js +40 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +79 -5
- package/dist-cjs/protocols/Aws_restXml.js +143 -3
- package/dist-es/S3Control.js +30 -0
- package/dist-es/commands/GetBucketVersioningCommand.js +41 -0
- package/dist-es/commands/PutBucketVersioningCommand.js +43 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +62 -0
- package/dist-es/protocols/Aws_restXml.js +187 -0
- package/dist-types/S3Control.d.ts +116 -18
- package/dist-types/S3ControlClient.d.ts +4 -2
- package/dist-types/commands/CreateAccessPointCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAccessPointCommand.d.ts +1 -1
- package/dist-types/commands/DeleteAccessPointPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteBucketCommand.d.ts +1 -1
- package/dist-types/commands/DeleteBucketLifecycleConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteBucketPolicyCommand.d.ts +1 -1
- package/dist-types/commands/DeleteBucketTaggingCommand.d.ts +1 -1
- package/dist-types/commands/GetAccessPointCommand.d.ts +1 -1
- package/dist-types/commands/GetBucketCommand.d.ts +1 -1
- package/dist-types/commands/GetBucketLifecycleConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/GetBucketPolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetBucketTaggingCommand.d.ts +1 -1
- package/dist-types/commands/GetBucketVersioningCommand.d.ts +66 -0
- package/dist-types/commands/ListAccessPointsCommand.d.ts +1 -1
- package/dist-types/commands/PutAccessPointPolicyCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketPolicyCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketTaggingCommand.d.ts +1 -1
- package/dist-types/commands/PutBucketVersioningCommand.d.ts +88 -0
- package/dist-types/commands/PutPublicAccessBlockCommand.d.ts +1 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +127 -12
- package/dist-types/protocols/Aws_restXml.d.ts +6 -0
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/S3Control.d.ts +34 -0
- package/dist-types/ts3.4/S3ControlClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetBucketVersioningCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +31 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +79 -26
- package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +24 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +3 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -1
- package/package.json +31 -31
|
@@ -172,6 +172,10 @@ import {
|
|
|
172
172
|
GetBucketTaggingCommandInput,
|
|
173
173
|
GetBucketTaggingCommandOutput,
|
|
174
174
|
} from "./commands/GetBucketTaggingCommand";
|
|
175
|
+
import {
|
|
176
|
+
GetBucketVersioningCommandInput,
|
|
177
|
+
GetBucketVersioningCommandOutput,
|
|
178
|
+
} from "./commands/GetBucketVersioningCommand";
|
|
175
179
|
import {
|
|
176
180
|
GetJobTaggingCommandInput,
|
|
177
181
|
GetJobTaggingCommandOutput,
|
|
@@ -248,6 +252,10 @@ import {
|
|
|
248
252
|
PutBucketTaggingCommandInput,
|
|
249
253
|
PutBucketTaggingCommandOutput,
|
|
250
254
|
} from "./commands/PutBucketTaggingCommand";
|
|
255
|
+
import {
|
|
256
|
+
PutBucketVersioningCommandInput,
|
|
257
|
+
PutBucketVersioningCommandOutput,
|
|
258
|
+
} from "./commands/PutBucketVersioningCommand";
|
|
251
259
|
import {
|
|
252
260
|
PutJobTaggingCommandInput,
|
|
253
261
|
PutJobTaggingCommandOutput,
|
|
@@ -308,6 +316,7 @@ export declare type ServiceInputTypes =
|
|
|
308
316
|
| GetBucketLifecycleConfigurationCommandInput
|
|
309
317
|
| GetBucketPolicyCommandInput
|
|
310
318
|
| GetBucketTaggingCommandInput
|
|
319
|
+
| GetBucketVersioningCommandInput
|
|
311
320
|
| GetJobTaggingCommandInput
|
|
312
321
|
| GetMultiRegionAccessPointCommandInput
|
|
313
322
|
| GetMultiRegionAccessPointPolicyCommandInput
|
|
@@ -327,6 +336,7 @@ export declare type ServiceInputTypes =
|
|
|
327
336
|
| PutBucketLifecycleConfigurationCommandInput
|
|
328
337
|
| PutBucketPolicyCommandInput
|
|
329
338
|
| PutBucketTaggingCommandInput
|
|
339
|
+
| PutBucketVersioningCommandInput
|
|
330
340
|
| PutJobTaggingCommandInput
|
|
331
341
|
| PutMultiRegionAccessPointPolicyCommandInput
|
|
332
342
|
| PutPublicAccessBlockCommandInput
|
|
@@ -366,6 +376,7 @@ export declare type ServiceOutputTypes =
|
|
|
366
376
|
| GetBucketLifecycleConfigurationCommandOutput
|
|
367
377
|
| GetBucketPolicyCommandOutput
|
|
368
378
|
| GetBucketTaggingCommandOutput
|
|
379
|
+
| GetBucketVersioningCommandOutput
|
|
369
380
|
| GetJobTaggingCommandOutput
|
|
370
381
|
| GetMultiRegionAccessPointCommandOutput
|
|
371
382
|
| GetMultiRegionAccessPointPolicyCommandOutput
|
|
@@ -385,6 +396,7 @@ export declare type ServiceOutputTypes =
|
|
|
385
396
|
| PutBucketLifecycleConfigurationCommandOutput
|
|
386
397
|
| PutBucketPolicyCommandOutput
|
|
387
398
|
| PutBucketTaggingCommandOutput
|
|
399
|
+
| PutBucketVersioningCommandOutput
|
|
388
400
|
| PutJobTaggingCommandOutput
|
|
389
401
|
| PutMultiRegionAccessPointPolicyCommandOutput
|
|
390
402
|
| PutPublicAccessBlockCommandOutput
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
GetBucketVersioningRequest,
|
|
10
|
+
GetBucketVersioningResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
S3ControlClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../S3ControlClient";
|
|
17
|
+
export interface GetBucketVersioningCommandInput
|
|
18
|
+
extends GetBucketVersioningRequest {}
|
|
19
|
+
export interface GetBucketVersioningCommandOutput
|
|
20
|
+
extends GetBucketVersioningResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class GetBucketVersioningCommand extends $Command<
|
|
23
|
+
GetBucketVersioningCommandInput,
|
|
24
|
+
GetBucketVersioningCommandOutput,
|
|
25
|
+
S3ControlClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: GetBucketVersioningCommandInput;
|
|
28
|
+
constructor(input: GetBucketVersioningCommandInput);
|
|
29
|
+
resolveMiddleware(
|
|
30
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
31
|
+
configuration: S3ControlClientResolvedConfig,
|
|
32
|
+
options?: __HttpHandlerOptions
|
|
33
|
+
): Handler<GetBucketVersioningCommandInput, GetBucketVersioningCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import { PutBucketVersioningRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
S3ControlClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../S3ControlClient";
|
|
14
|
+
export interface PutBucketVersioningCommandInput
|
|
15
|
+
extends PutBucketVersioningRequest {}
|
|
16
|
+
export interface PutBucketVersioningCommandOutput extends __MetadataBearer {}
|
|
17
|
+
export declare class PutBucketVersioningCommand extends $Command<
|
|
18
|
+
PutBucketVersioningCommandInput,
|
|
19
|
+
PutBucketVersioningCommandOutput,
|
|
20
|
+
S3ControlClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: PutBucketVersioningCommandInput;
|
|
23
|
+
constructor(input: PutBucketVersioningCommandInput);
|
|
24
|
+
resolveMiddleware(
|
|
25
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
26
|
+
configuration: S3ControlClientResolvedConfig,
|
|
27
|
+
options?: __HttpHandlerOptions
|
|
28
|
+
): Handler<PutBucketVersioningCommandInput, PutBucketVersioningCommandOutput>;
|
|
29
|
+
private serialize;
|
|
30
|
+
private deserialize;
|
|
31
|
+
}
|
|
@@ -29,6 +29,7 @@ export * from "./GetBucketCommand";
|
|
|
29
29
|
export * from "./GetBucketLifecycleConfigurationCommand";
|
|
30
30
|
export * from "./GetBucketPolicyCommand";
|
|
31
31
|
export * from "./GetBucketTaggingCommand";
|
|
32
|
+
export * from "./GetBucketVersioningCommand";
|
|
32
33
|
export * from "./GetJobTaggingCommand";
|
|
33
34
|
export * from "./GetMultiRegionAccessPointCommand";
|
|
34
35
|
export * from "./GetMultiRegionAccessPointPolicyCommand";
|
|
@@ -48,6 +49,7 @@ export * from "./PutAccessPointPolicyForObjectLambdaCommand";
|
|
|
48
49
|
export * from "./PutBucketLifecycleConfigurationCommand";
|
|
49
50
|
export * from "./PutBucketPolicyCommand";
|
|
50
51
|
export * from "./PutBucketTaggingCommand";
|
|
52
|
+
export * from "./PutBucketVersioningCommand";
|
|
51
53
|
export * from "./PutJobTaggingCommand";
|
|
52
54
|
export * from "./PutMultiRegionAccessPointPolicyCommand";
|
|
53
55
|
export * from "./PutPublicAccessBlockCommand";
|
|
@@ -176,23 +176,25 @@ export declare class BucketAlreadyOwnedByYou extends __BaseException {
|
|
|
176
176
|
opts: __ExceptionOptionType<BucketAlreadyOwnedByYou, __BaseException>
|
|
177
177
|
);
|
|
178
178
|
}
|
|
179
|
-
export declare
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
179
|
+
export declare enum BucketCannedACL {
|
|
180
|
+
authenticated_read = "authenticated-read",
|
|
181
|
+
private = "private",
|
|
182
|
+
public_read = "public-read",
|
|
183
|
+
public_read_write = "public-read-write",
|
|
184
|
+
}
|
|
185
|
+
export declare enum BucketLocationConstraint {
|
|
186
|
+
EU = "EU",
|
|
187
|
+
ap_northeast_1 = "ap-northeast-1",
|
|
188
|
+
ap_south_1 = "ap-south-1",
|
|
189
|
+
ap_southeast_1 = "ap-southeast-1",
|
|
190
|
+
ap_southeast_2 = "ap-southeast-2",
|
|
191
|
+
cn_north_1 = "cn-north-1",
|
|
192
|
+
eu_central_1 = "eu-central-1",
|
|
193
|
+
eu_west_1 = "eu-west-1",
|
|
194
|
+
sa_east_1 = "sa-east-1",
|
|
195
|
+
us_west_1 = "us-west-1",
|
|
196
|
+
us_west_2 = "us-west-2",
|
|
197
|
+
}
|
|
196
198
|
export interface CreateBucketConfiguration {
|
|
197
199
|
LocationConstraint?: BucketLocationConstraint | string;
|
|
198
200
|
}
|
|
@@ -740,17 +742,21 @@ export interface LifecycleRuleFilter {
|
|
|
740
742
|
export interface NoncurrentVersionExpiration {
|
|
741
743
|
NoncurrentDays?: number;
|
|
742
744
|
}
|
|
743
|
-
export declare
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
745
|
+
export declare enum TransitionStorageClass {
|
|
746
|
+
DEEP_ARCHIVE = "DEEP_ARCHIVE",
|
|
747
|
+
GLACIER = "GLACIER",
|
|
748
|
+
INTELLIGENT_TIERING = "INTELLIGENT_TIERING",
|
|
749
|
+
ONEZONE_IA = "ONEZONE_IA",
|
|
750
|
+
STANDARD_IA = "STANDARD_IA",
|
|
751
|
+
}
|
|
749
752
|
export interface NoncurrentVersionTransition {
|
|
750
753
|
NoncurrentDays?: number;
|
|
751
754
|
StorageClass?: TransitionStorageClass | string;
|
|
752
755
|
}
|
|
753
|
-
export declare
|
|
756
|
+
export declare enum ExpirationStatus {
|
|
757
|
+
Disabled = "Disabled",
|
|
758
|
+
Enabled = "Enabled",
|
|
759
|
+
}
|
|
754
760
|
export interface Transition {
|
|
755
761
|
Date?: Date;
|
|
756
762
|
Days?: number;
|
|
@@ -783,6 +789,22 @@ export interface GetBucketTaggingRequest {
|
|
|
783
789
|
export interface GetBucketTaggingResult {
|
|
784
790
|
TagSet: S3Tag[] | undefined;
|
|
785
791
|
}
|
|
792
|
+
export interface GetBucketVersioningRequest {
|
|
793
|
+
AccountId?: string;
|
|
794
|
+
Bucket: string | undefined;
|
|
795
|
+
}
|
|
796
|
+
export declare enum MFADeleteStatus {
|
|
797
|
+
Disabled = "Disabled",
|
|
798
|
+
Enabled = "Enabled",
|
|
799
|
+
}
|
|
800
|
+
export declare enum BucketVersioningStatus {
|
|
801
|
+
Enabled = "Enabled",
|
|
802
|
+
Suspended = "Suspended",
|
|
803
|
+
}
|
|
804
|
+
export interface GetBucketVersioningResult {
|
|
805
|
+
Status?: BucketVersioningStatus | string;
|
|
806
|
+
MFADelete?: MFADeleteStatus | string;
|
|
807
|
+
}
|
|
786
808
|
export interface GetJobTaggingRequest {
|
|
787
809
|
AccountId?: string;
|
|
788
810
|
JobId: string | undefined;
|
|
@@ -876,8 +898,13 @@ export interface StorageLensDataExportEncryption {
|
|
|
876
898
|
SSES3?: SSES3;
|
|
877
899
|
SSEKMS?: SSEKMS;
|
|
878
900
|
}
|
|
879
|
-
export declare
|
|
880
|
-
|
|
901
|
+
export declare enum Format {
|
|
902
|
+
CSV = "CSV",
|
|
903
|
+
Parquet = "Parquet",
|
|
904
|
+
}
|
|
905
|
+
export declare enum OutputSchemaVersion {
|
|
906
|
+
V_1 = "V_1",
|
|
907
|
+
}
|
|
881
908
|
export interface S3BucketDestination {
|
|
882
909
|
Format: Format | string | undefined;
|
|
883
910
|
OutputSchemaVersion: OutputSchemaVersion | string | undefined;
|
|
@@ -1069,6 +1096,20 @@ export interface PutBucketTaggingRequest {
|
|
|
1069
1096
|
Bucket: string | undefined;
|
|
1070
1097
|
Tagging: Tagging | undefined;
|
|
1071
1098
|
}
|
|
1099
|
+
export declare enum MFADelete {
|
|
1100
|
+
Disabled = "Disabled",
|
|
1101
|
+
Enabled = "Enabled",
|
|
1102
|
+
}
|
|
1103
|
+
export interface VersioningConfiguration {
|
|
1104
|
+
MFADelete?: MFADelete | string;
|
|
1105
|
+
Status?: BucketVersioningStatus | string;
|
|
1106
|
+
}
|
|
1107
|
+
export interface PutBucketVersioningRequest {
|
|
1108
|
+
AccountId?: string;
|
|
1109
|
+
Bucket: string | undefined;
|
|
1110
|
+
MFA?: string;
|
|
1111
|
+
VersioningConfiguration: VersioningConfiguration | undefined;
|
|
1112
|
+
}
|
|
1072
1113
|
export interface PutJobTaggingRequest {
|
|
1073
1114
|
AccountId?: string;
|
|
1074
1115
|
JobId: string | undefined;
|
|
@@ -1465,6 +1506,12 @@ export declare const GetBucketTaggingRequestFilterSensitiveLog: (
|
|
|
1465
1506
|
export declare const GetBucketTaggingResultFilterSensitiveLog: (
|
|
1466
1507
|
obj: GetBucketTaggingResult
|
|
1467
1508
|
) => any;
|
|
1509
|
+
export declare const GetBucketVersioningRequestFilterSensitiveLog: (
|
|
1510
|
+
obj: GetBucketVersioningRequest
|
|
1511
|
+
) => any;
|
|
1512
|
+
export declare const GetBucketVersioningResultFilterSensitiveLog: (
|
|
1513
|
+
obj: GetBucketVersioningResult
|
|
1514
|
+
) => any;
|
|
1468
1515
|
export declare const GetJobTaggingRequestFilterSensitiveLog: (
|
|
1469
1516
|
obj: GetJobTaggingRequest
|
|
1470
1517
|
) => any;
|
|
@@ -1615,6 +1662,12 @@ export declare const TaggingFilterSensitiveLog: (obj: Tagging) => any;
|
|
|
1615
1662
|
export declare const PutBucketTaggingRequestFilterSensitiveLog: (
|
|
1616
1663
|
obj: PutBucketTaggingRequest
|
|
1617
1664
|
) => any;
|
|
1665
|
+
export declare const VersioningConfigurationFilterSensitiveLog: (
|
|
1666
|
+
obj: VersioningConfiguration
|
|
1667
|
+
) => any;
|
|
1668
|
+
export declare const PutBucketVersioningRequestFilterSensitiveLog: (
|
|
1669
|
+
obj: PutBucketVersioningRequest
|
|
1670
|
+
) => any;
|
|
1618
1671
|
export declare const PutJobTaggingRequestFilterSensitiveLog: (
|
|
1619
1672
|
obj: PutJobTaggingRequest
|
|
1620
1673
|
) => any;
|
|
@@ -127,6 +127,10 @@ import {
|
|
|
127
127
|
GetBucketTaggingCommandInput,
|
|
128
128
|
GetBucketTaggingCommandOutput,
|
|
129
129
|
} from "../commands/GetBucketTaggingCommand";
|
|
130
|
+
import {
|
|
131
|
+
GetBucketVersioningCommandInput,
|
|
132
|
+
GetBucketVersioningCommandOutput,
|
|
133
|
+
} from "../commands/GetBucketVersioningCommand";
|
|
130
134
|
import {
|
|
131
135
|
GetJobTaggingCommandInput,
|
|
132
136
|
GetJobTaggingCommandOutput,
|
|
@@ -203,6 +207,10 @@ import {
|
|
|
203
207
|
PutBucketTaggingCommandInput,
|
|
204
208
|
PutBucketTaggingCommandOutput,
|
|
205
209
|
} from "../commands/PutBucketTaggingCommand";
|
|
210
|
+
import {
|
|
211
|
+
PutBucketVersioningCommandInput,
|
|
212
|
+
PutBucketVersioningCommandOutput,
|
|
213
|
+
} from "../commands/PutBucketVersioningCommand";
|
|
206
214
|
import {
|
|
207
215
|
PutJobTaggingCommandInput,
|
|
208
216
|
PutJobTaggingCommandOutput,
|
|
@@ -355,6 +363,10 @@ export declare const serializeAws_restXmlGetBucketTaggingCommand: (
|
|
|
355
363
|
input: GetBucketTaggingCommandInput,
|
|
356
364
|
context: __SerdeContext
|
|
357
365
|
) => Promise<__HttpRequest>;
|
|
366
|
+
export declare const serializeAws_restXmlGetBucketVersioningCommand: (
|
|
367
|
+
input: GetBucketVersioningCommandInput,
|
|
368
|
+
context: __SerdeContext
|
|
369
|
+
) => Promise<__HttpRequest>;
|
|
358
370
|
export declare const serializeAws_restXmlGetJobTaggingCommand: (
|
|
359
371
|
input: GetJobTaggingCommandInput,
|
|
360
372
|
context: __SerdeContext
|
|
@@ -431,6 +443,10 @@ export declare const serializeAws_restXmlPutBucketTaggingCommand: (
|
|
|
431
443
|
input: PutBucketTaggingCommandInput,
|
|
432
444
|
context: __SerdeContext
|
|
433
445
|
) => Promise<__HttpRequest>;
|
|
446
|
+
export declare const serializeAws_restXmlPutBucketVersioningCommand: (
|
|
447
|
+
input: PutBucketVersioningCommandInput,
|
|
448
|
+
context: __SerdeContext
|
|
449
|
+
) => Promise<__HttpRequest>;
|
|
434
450
|
export declare const serializeAws_restXmlPutJobTaggingCommand: (
|
|
435
451
|
input: PutJobTaggingCommandInput,
|
|
436
452
|
context: __SerdeContext
|
|
@@ -583,6 +599,10 @@ export declare const deserializeAws_restXmlGetBucketTaggingCommand: (
|
|
|
583
599
|
output: __HttpResponse,
|
|
584
600
|
context: __SerdeContext
|
|
585
601
|
) => Promise<GetBucketTaggingCommandOutput>;
|
|
602
|
+
export declare const deserializeAws_restXmlGetBucketVersioningCommand: (
|
|
603
|
+
output: __HttpResponse,
|
|
604
|
+
context: __SerdeContext
|
|
605
|
+
) => Promise<GetBucketVersioningCommandOutput>;
|
|
586
606
|
export declare const deserializeAws_restXmlGetJobTaggingCommand: (
|
|
587
607
|
output: __HttpResponse,
|
|
588
608
|
context: __SerdeContext
|
|
@@ -659,6 +679,10 @@ export declare const deserializeAws_restXmlPutBucketTaggingCommand: (
|
|
|
659
679
|
output: __HttpResponse,
|
|
660
680
|
context: __SerdeContext
|
|
661
681
|
) => Promise<PutBucketTaggingCommandOutput>;
|
|
682
|
+
export declare const deserializeAws_restXmlPutBucketVersioningCommand: (
|
|
683
|
+
output: __HttpResponse,
|
|
684
|
+
context: __SerdeContext
|
|
685
|
+
) => Promise<PutBucketVersioningCommandOutput>;
|
|
662
686
|
export declare const deserializeAws_restXmlPutJobTaggingCommand: (
|
|
663
687
|
output: __HttpResponse,
|
|
664
688
|
context: __SerdeContext
|
|
@@ -54,7 +54,9 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
54
54
|
| undefined;
|
|
55
55
|
signer?:
|
|
56
56
|
| import("@aws-sdk/types").RequestSigner
|
|
57
|
-
|
|
|
57
|
+
| ((
|
|
58
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
59
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
58
60
|
| undefined;
|
|
59
61
|
signingEscapePath?: boolean | undefined;
|
|
60
62
|
systemClockOffset?: number | undefined;
|
|
@@ -55,7 +55,9 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
55
55
|
| undefined;
|
|
56
56
|
signer?:
|
|
57
57
|
| import("@aws-sdk/types").RequestSigner
|
|
58
|
-
|
|
|
58
|
+
| ((
|
|
59
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
60
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
59
61
|
| undefined;
|
|
60
62
|
signingEscapePath?: boolean | undefined;
|
|
61
63
|
systemClockOffset?: number | undefined;
|
|
@@ -55,7 +55,9 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
55
55
|
| undefined;
|
|
56
56
|
signer?:
|
|
57
57
|
| import("@aws-sdk/types").RequestSigner
|
|
58
|
-
|
|
|
58
|
+
| ((
|
|
59
|
+
authScheme?: import("@aws-sdk/types").AuthScheme | undefined
|
|
60
|
+
) => Promise<import("@aws-sdk/types").RequestSigner>)
|
|
59
61
|
| undefined;
|
|
60
62
|
signingEscapePath?: boolean | undefined;
|
|
61
63
|
systemClockOffset?: number | undefined;
|
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.178.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",
|
|
@@ -21,40 +21,40 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
28
|
-
"@aws-sdk/hash-blob-browser": "3.
|
|
29
|
-
"@aws-sdk/hash-node": "3.
|
|
30
|
-
"@aws-sdk/hash-stream-node": "3.
|
|
31
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
32
|
-
"@aws-sdk/md5-js": "3.
|
|
33
|
-
"@aws-sdk/middleware-apply-body-checksum": "3.
|
|
34
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
35
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
36
|
-
"@aws-sdk/middleware-logger": "3.
|
|
37
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
38
|
-
"@aws-sdk/middleware-retry": "3.
|
|
39
|
-
"@aws-sdk/middleware-sdk-s3-control": "3.
|
|
40
|
-
"@aws-sdk/middleware-serde": "3.
|
|
41
|
-
"@aws-sdk/middleware-signing": "3.
|
|
42
|
-
"@aws-sdk/middleware-stack": "3.
|
|
43
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
44
|
-
"@aws-sdk/node-config-provider": "3.
|
|
45
|
-
"@aws-sdk/node-http-handler": "3.
|
|
46
|
-
"@aws-sdk/protocol-http": "3.
|
|
47
|
-
"@aws-sdk/smithy-client": "3.
|
|
48
|
-
"@aws-sdk/types": "3.
|
|
49
|
-
"@aws-sdk/url-parser": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.178.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.178.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.178.0",
|
|
27
|
+
"@aws-sdk/fetch-http-handler": "3.178.0",
|
|
28
|
+
"@aws-sdk/hash-blob-browser": "3.178.0",
|
|
29
|
+
"@aws-sdk/hash-node": "3.178.0",
|
|
30
|
+
"@aws-sdk/hash-stream-node": "3.178.0",
|
|
31
|
+
"@aws-sdk/invalid-dependency": "3.178.0",
|
|
32
|
+
"@aws-sdk/md5-js": "3.178.0",
|
|
33
|
+
"@aws-sdk/middleware-apply-body-checksum": "3.178.0",
|
|
34
|
+
"@aws-sdk/middleware-content-length": "3.178.0",
|
|
35
|
+
"@aws-sdk/middleware-host-header": "3.178.0",
|
|
36
|
+
"@aws-sdk/middleware-logger": "3.178.0",
|
|
37
|
+
"@aws-sdk/middleware-recursion-detection": "3.178.0",
|
|
38
|
+
"@aws-sdk/middleware-retry": "3.178.0",
|
|
39
|
+
"@aws-sdk/middleware-sdk-s3-control": "3.178.0",
|
|
40
|
+
"@aws-sdk/middleware-serde": "3.178.0",
|
|
41
|
+
"@aws-sdk/middleware-signing": "3.178.0",
|
|
42
|
+
"@aws-sdk/middleware-stack": "3.178.0",
|
|
43
|
+
"@aws-sdk/middleware-user-agent": "3.178.0",
|
|
44
|
+
"@aws-sdk/node-config-provider": "3.178.0",
|
|
45
|
+
"@aws-sdk/node-http-handler": "3.178.0",
|
|
46
|
+
"@aws-sdk/protocol-http": "3.178.0",
|
|
47
|
+
"@aws-sdk/smithy-client": "3.178.0",
|
|
48
|
+
"@aws-sdk/types": "3.178.0",
|
|
49
|
+
"@aws-sdk/url-parser": "3.178.0",
|
|
50
50
|
"@aws-sdk/util-base64-browser": "3.170.0",
|
|
51
51
|
"@aws-sdk/util-base64-node": "3.170.0",
|
|
52
52
|
"@aws-sdk/util-body-length-browser": "3.170.0",
|
|
53
53
|
"@aws-sdk/util-body-length-node": "3.170.0",
|
|
54
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
55
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
56
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
57
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-defaults-mode-browser": "3.178.0",
|
|
55
|
+
"@aws-sdk/util-defaults-mode-node": "3.178.0",
|
|
56
|
+
"@aws-sdk/util-user-agent-browser": "3.178.0",
|
|
57
|
+
"@aws-sdk/util-user-agent-node": "3.178.0",
|
|
58
58
|
"@aws-sdk/util-utf8-browser": "3.170.0",
|
|
59
59
|
"@aws-sdk/util-utf8-node": "3.170.0",
|
|
60
60
|
"@aws-sdk/xml-builder": "3.170.0",
|