@justworkflowit/cdk-constructs 0.0.72 → 0.0.74
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/lambda/definitionDeployerLambda.js +647 -216
- package/package.json +1 -1
|
@@ -9752,9 +9752,8 @@ var init_XmlShapeDeserializer = __esm({
|
|
|
9752
9752
|
readSchema(_schema, value) {
|
|
9753
9753
|
const ns = NormalizedSchema.of(_schema);
|
|
9754
9754
|
const traits = ns.getMergedTraits();
|
|
9755
|
-
const schema = ns.getSchema();
|
|
9756
9755
|
if (ns.isListSchema() && !Array.isArray(value)) {
|
|
9757
|
-
return this.readSchema(
|
|
9756
|
+
return this.readSchema(ns, [value]);
|
|
9758
9757
|
}
|
|
9759
9758
|
if (value == null) {
|
|
9760
9759
|
return value;
|
|
@@ -9810,14 +9809,14 @@ var init_XmlShapeDeserializer = __esm({
|
|
|
9810
9809
|
return value;
|
|
9811
9810
|
}
|
|
9812
9811
|
throw new Error(`@aws-sdk/core/protocols - xml deserializer unhandled schema type for ${ns.getName(true)}`);
|
|
9813
|
-
} else {
|
|
9814
|
-
if (ns.isListSchema()) {
|
|
9815
|
-
return [];
|
|
9816
|
-
} else if (ns.isMapSchema() || ns.isStructSchema()) {
|
|
9817
|
-
return {};
|
|
9818
|
-
}
|
|
9819
|
-
return this.stringDeserializer.read(ns, value);
|
|
9820
9812
|
}
|
|
9813
|
+
if (ns.isListSchema()) {
|
|
9814
|
+
return [];
|
|
9815
|
+
}
|
|
9816
|
+
if (ns.isMapSchema() || ns.isStructSchema()) {
|
|
9817
|
+
return {};
|
|
9818
|
+
}
|
|
9819
|
+
return this.stringDeserializer.read(ns, value);
|
|
9821
9820
|
}
|
|
9822
9821
|
parseXml(xml) {
|
|
9823
9822
|
if (xml.length) {
|
|
@@ -15756,9 +15755,8 @@ var init_XmlShapeDeserializer2 = __esm({
|
|
|
15756
15755
|
readSchema(_schema, value) {
|
|
15757
15756
|
const ns = NormalizedSchema.of(_schema);
|
|
15758
15757
|
const traits = ns.getMergedTraits();
|
|
15759
|
-
const schema = ns.getSchema();
|
|
15760
15758
|
if (ns.isListSchema() && !Array.isArray(value)) {
|
|
15761
|
-
return this.readSchema(
|
|
15759
|
+
return this.readSchema(ns, [value]);
|
|
15762
15760
|
}
|
|
15763
15761
|
if (value == null) {
|
|
15764
15762
|
return value;
|
|
@@ -15814,14 +15812,14 @@ var init_XmlShapeDeserializer2 = __esm({
|
|
|
15814
15812
|
return value;
|
|
15815
15813
|
}
|
|
15816
15814
|
throw new Error(`@aws-sdk/core/protocols - xml deserializer unhandled schema type for ${ns.getName(true)}`);
|
|
15817
|
-
} else {
|
|
15818
|
-
if (ns.isListSchema()) {
|
|
15819
|
-
return [];
|
|
15820
|
-
} else if (ns.isMapSchema() || ns.isStructSchema()) {
|
|
15821
|
-
return {};
|
|
15822
|
-
}
|
|
15823
|
-
return this.stringDeserializer.read(ns, value);
|
|
15824
15815
|
}
|
|
15816
|
+
if (ns.isListSchema()) {
|
|
15817
|
+
return [];
|
|
15818
|
+
}
|
|
15819
|
+
if (ns.isMapSchema() || ns.isStructSchema()) {
|
|
15820
|
+
return {};
|
|
15821
|
+
}
|
|
15822
|
+
return this.stringDeserializer.read(ns, value);
|
|
15825
15823
|
}
|
|
15826
15824
|
parseXml(xml) {
|
|
15827
15825
|
if (xml.length) {
|
|
@@ -21062,9 +21060,8 @@ var init_XmlShapeDeserializer3 = __esm({
|
|
|
21062
21060
|
readSchema(_schema, value) {
|
|
21063
21061
|
const ns = NormalizedSchema.of(_schema);
|
|
21064
21062
|
const traits = ns.getMergedTraits();
|
|
21065
|
-
const schema = ns.getSchema();
|
|
21066
21063
|
if (ns.isListSchema() && !Array.isArray(value)) {
|
|
21067
|
-
return this.readSchema(
|
|
21064
|
+
return this.readSchema(ns, [value]);
|
|
21068
21065
|
}
|
|
21069
21066
|
if (value == null) {
|
|
21070
21067
|
return value;
|
|
@@ -21120,14 +21117,14 @@ var init_XmlShapeDeserializer3 = __esm({
|
|
|
21120
21117
|
return value;
|
|
21121
21118
|
}
|
|
21122
21119
|
throw new Error(`@aws-sdk/core/protocols - xml deserializer unhandled schema type for ${ns.getName(true)}`);
|
|
21123
|
-
} else {
|
|
21124
|
-
if (ns.isListSchema()) {
|
|
21125
|
-
return [];
|
|
21126
|
-
} else if (ns.isMapSchema() || ns.isStructSchema()) {
|
|
21127
|
-
return {};
|
|
21128
|
-
}
|
|
21129
|
-
return this.stringDeserializer.read(ns, value);
|
|
21130
21120
|
}
|
|
21121
|
+
if (ns.isListSchema()) {
|
|
21122
|
+
return [];
|
|
21123
|
+
}
|
|
21124
|
+
if (ns.isMapSchema() || ns.isStructSchema()) {
|
|
21125
|
+
return {};
|
|
21126
|
+
}
|
|
21127
|
+
return this.stringDeserializer.read(ns, value);
|
|
21131
21128
|
}
|
|
21132
21129
|
parseXml(xml) {
|
|
21133
21130
|
if (xml.length) {
|
|
@@ -24343,6 +24340,7 @@ var require_dist_cjs46 = __commonJS({
|
|
|
24343
24340
|
}
|
|
24344
24341
|
if (endpointFromConfig) {
|
|
24345
24342
|
clientConfig.endpoint = () => Promise.resolve(toEndpointV1(endpointFromConfig));
|
|
24343
|
+
clientConfig.isCustomEndpoint = true;
|
|
24346
24344
|
}
|
|
24347
24345
|
}
|
|
24348
24346
|
const endpointParams = await resolveParams(commandInput, instructionsSupplier, clientConfig);
|
|
@@ -25210,7 +25208,7 @@ var require_package = __commonJS({
|
|
|
25210
25208
|
module2.exports = {
|
|
25211
25209
|
name: "@aws-sdk/client-s3",
|
|
25212
25210
|
description: "AWS SDK for JavaScript S3 Client for Node.js, Browser and React Native",
|
|
25213
|
-
version: "3.
|
|
25211
|
+
version: "3.846.0",
|
|
25214
25212
|
scripts: {
|
|
25215
25213
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
25216
25214
|
"build:cjs": "node ../../scripts/compilation/inline client-s3",
|
|
@@ -25238,24 +25236,24 @@ var require_package = __commonJS({
|
|
|
25238
25236
|
"@aws-crypto/sha1-browser": "5.2.0",
|
|
25239
25237
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25240
25238
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
25241
|
-
"@aws-sdk/core": "3.
|
|
25242
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25239
|
+
"@aws-sdk/core": "3.846.0",
|
|
25240
|
+
"@aws-sdk/credential-provider-node": "3.846.0",
|
|
25243
25241
|
"@aws-sdk/middleware-bucket-endpoint": "3.840.0",
|
|
25244
25242
|
"@aws-sdk/middleware-expect-continue": "3.840.0",
|
|
25245
|
-
"@aws-sdk/middleware-flexible-checksums": "3.
|
|
25243
|
+
"@aws-sdk/middleware-flexible-checksums": "3.846.0",
|
|
25246
25244
|
"@aws-sdk/middleware-host-header": "3.840.0",
|
|
25247
25245
|
"@aws-sdk/middleware-location-constraint": "3.840.0",
|
|
25248
25246
|
"@aws-sdk/middleware-logger": "3.840.0",
|
|
25249
25247
|
"@aws-sdk/middleware-recursion-detection": "3.840.0",
|
|
25250
|
-
"@aws-sdk/middleware-sdk-s3": "3.
|
|
25248
|
+
"@aws-sdk/middleware-sdk-s3": "3.846.0",
|
|
25251
25249
|
"@aws-sdk/middleware-ssec": "3.840.0",
|
|
25252
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
25250
|
+
"@aws-sdk/middleware-user-agent": "3.846.0",
|
|
25253
25251
|
"@aws-sdk/region-config-resolver": "3.840.0",
|
|
25254
|
-
"@aws-sdk/signature-v4-multi-region": "3.
|
|
25252
|
+
"@aws-sdk/signature-v4-multi-region": "3.846.0",
|
|
25255
25253
|
"@aws-sdk/types": "3.840.0",
|
|
25256
|
-
"@aws-sdk/util-endpoints": "3.
|
|
25254
|
+
"@aws-sdk/util-endpoints": "3.845.0",
|
|
25257
25255
|
"@aws-sdk/util-user-agent-browser": "3.840.0",
|
|
25258
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
25256
|
+
"@aws-sdk/util-user-agent-node": "3.846.0",
|
|
25259
25257
|
"@aws-sdk/xml-builder": "3.821.0",
|
|
25260
25258
|
"@smithy/config-resolver": "^4.1.4",
|
|
25261
25259
|
"@smithy/core": "^3.7.0",
|
|
@@ -25269,21 +25267,21 @@ var require_package = __commonJS({
|
|
|
25269
25267
|
"@smithy/invalid-dependency": "^4.0.4",
|
|
25270
25268
|
"@smithy/md5-js": "^4.0.4",
|
|
25271
25269
|
"@smithy/middleware-content-length": "^4.0.4",
|
|
25272
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
25273
|
-
"@smithy/middleware-retry": "^4.1.
|
|
25270
|
+
"@smithy/middleware-endpoint": "^4.1.15",
|
|
25271
|
+
"@smithy/middleware-retry": "^4.1.16",
|
|
25274
25272
|
"@smithy/middleware-serde": "^4.0.8",
|
|
25275
25273
|
"@smithy/middleware-stack": "^4.0.4",
|
|
25276
25274
|
"@smithy/node-config-provider": "^4.1.3",
|
|
25277
25275
|
"@smithy/node-http-handler": "^4.1.0",
|
|
25278
25276
|
"@smithy/protocol-http": "^5.1.2",
|
|
25279
|
-
"@smithy/smithy-client": "^4.4.
|
|
25277
|
+
"@smithy/smithy-client": "^4.4.7",
|
|
25280
25278
|
"@smithy/types": "^4.3.1",
|
|
25281
25279
|
"@smithy/url-parser": "^4.0.4",
|
|
25282
25280
|
"@smithy/util-base64": "^4.0.0",
|
|
25283
25281
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
25284
25282
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
25285
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
25286
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
25283
|
+
"@smithy/util-defaults-mode-browser": "^4.0.23",
|
|
25284
|
+
"@smithy/util-defaults-mode-node": "^4.0.23",
|
|
25287
25285
|
"@smithy/util-endpoints": "^3.0.6",
|
|
25288
25286
|
"@smithy/util-middleware": "^4.0.4",
|
|
25289
25287
|
"@smithy/util-retry": "^4.0.6",
|
|
@@ -25295,7 +25293,7 @@ var require_package = __commonJS({
|
|
|
25295
25293
|
uuid: "^9.0.1"
|
|
25296
25294
|
},
|
|
25297
25295
|
devDependencies: {
|
|
25298
|
-
"@aws-sdk/signature-v4-crt": "3.
|
|
25296
|
+
"@aws-sdk/signature-v4-crt": "3.846.0",
|
|
25299
25297
|
"@tsconfig/node18": "18.2.4",
|
|
25300
25298
|
"@types/node": "^18.19.69",
|
|
25301
25299
|
concurrently: "7.0.0",
|
|
@@ -29016,9 +29014,8 @@ var init_XmlShapeDeserializer4 = __esm({
|
|
|
29016
29014
|
readSchema(_schema, value) {
|
|
29017
29015
|
const ns = NormalizedSchema.of(_schema);
|
|
29018
29016
|
const traits = ns.getMergedTraits();
|
|
29019
|
-
const schema = ns.getSchema();
|
|
29020
29017
|
if (ns.isListSchema() && !Array.isArray(value)) {
|
|
29021
|
-
return this.readSchema(
|
|
29018
|
+
return this.readSchema(ns, [value]);
|
|
29022
29019
|
}
|
|
29023
29020
|
if (value == null) {
|
|
29024
29021
|
return value;
|
|
@@ -29074,14 +29071,14 @@ var init_XmlShapeDeserializer4 = __esm({
|
|
|
29074
29071
|
return value;
|
|
29075
29072
|
}
|
|
29076
29073
|
throw new Error(`@aws-sdk/core/protocols - xml deserializer unhandled schema type for ${ns.getName(true)}`);
|
|
29077
|
-
} else {
|
|
29078
|
-
if (ns.isListSchema()) {
|
|
29079
|
-
return [];
|
|
29080
|
-
} else if (ns.isMapSchema() || ns.isStructSchema()) {
|
|
29081
|
-
return {};
|
|
29082
|
-
}
|
|
29083
|
-
return this.stringDeserializer.read(ns, value);
|
|
29084
29074
|
}
|
|
29075
|
+
if (ns.isListSchema()) {
|
|
29076
|
+
return [];
|
|
29077
|
+
}
|
|
29078
|
+
if (ns.isMapSchema() || ns.isStructSchema()) {
|
|
29079
|
+
return {};
|
|
29080
|
+
}
|
|
29081
|
+
return this.stringDeserializer.read(ns, value);
|
|
29085
29082
|
}
|
|
29086
29083
|
parseXml(xml) {
|
|
29087
29084
|
if (xml.length) {
|
|
@@ -30278,7 +30275,7 @@ var require_package2 = __commonJS({
|
|
|
30278
30275
|
module2.exports = {
|
|
30279
30276
|
name: "@aws-sdk/client-sso",
|
|
30280
30277
|
description: "AWS SDK for JavaScript Sso Client for Node.js, Browser and React Native",
|
|
30281
|
-
version: "3.
|
|
30278
|
+
version: "3.846.0",
|
|
30282
30279
|
scripts: {
|
|
30283
30280
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
30284
30281
|
"build:cjs": "node ../../scripts/compilation/inline client-sso",
|
|
@@ -30297,37 +30294,37 @@ var require_package2 = __commonJS({
|
|
|
30297
30294
|
dependencies: {
|
|
30298
30295
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
30299
30296
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
30300
|
-
"@aws-sdk/core": "3.
|
|
30297
|
+
"@aws-sdk/core": "3.846.0",
|
|
30301
30298
|
"@aws-sdk/middleware-host-header": "3.840.0",
|
|
30302
30299
|
"@aws-sdk/middleware-logger": "3.840.0",
|
|
30303
30300
|
"@aws-sdk/middleware-recursion-detection": "3.840.0",
|
|
30304
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30301
|
+
"@aws-sdk/middleware-user-agent": "3.846.0",
|
|
30305
30302
|
"@aws-sdk/region-config-resolver": "3.840.0",
|
|
30306
30303
|
"@aws-sdk/types": "3.840.0",
|
|
30307
|
-
"@aws-sdk/util-endpoints": "3.
|
|
30304
|
+
"@aws-sdk/util-endpoints": "3.845.0",
|
|
30308
30305
|
"@aws-sdk/util-user-agent-browser": "3.840.0",
|
|
30309
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
30306
|
+
"@aws-sdk/util-user-agent-node": "3.846.0",
|
|
30310
30307
|
"@smithy/config-resolver": "^4.1.4",
|
|
30311
30308
|
"@smithy/core": "^3.7.0",
|
|
30312
30309
|
"@smithy/fetch-http-handler": "^5.1.0",
|
|
30313
30310
|
"@smithy/hash-node": "^4.0.4",
|
|
30314
30311
|
"@smithy/invalid-dependency": "^4.0.4",
|
|
30315
30312
|
"@smithy/middleware-content-length": "^4.0.4",
|
|
30316
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
30317
|
-
"@smithy/middleware-retry": "^4.1.
|
|
30313
|
+
"@smithy/middleware-endpoint": "^4.1.15",
|
|
30314
|
+
"@smithy/middleware-retry": "^4.1.16",
|
|
30318
30315
|
"@smithy/middleware-serde": "^4.0.8",
|
|
30319
30316
|
"@smithy/middleware-stack": "^4.0.4",
|
|
30320
30317
|
"@smithy/node-config-provider": "^4.1.3",
|
|
30321
30318
|
"@smithy/node-http-handler": "^4.1.0",
|
|
30322
30319
|
"@smithy/protocol-http": "^5.1.2",
|
|
30323
|
-
"@smithy/smithy-client": "^4.4.
|
|
30320
|
+
"@smithy/smithy-client": "^4.4.7",
|
|
30324
30321
|
"@smithy/types": "^4.3.1",
|
|
30325
30322
|
"@smithy/url-parser": "^4.0.4",
|
|
30326
30323
|
"@smithy/util-base64": "^4.0.0",
|
|
30327
30324
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
30328
30325
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
30329
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
30330
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
30326
|
+
"@smithy/util-defaults-mode-browser": "^4.0.23",
|
|
30327
|
+
"@smithy/util-defaults-mode-node": "^4.0.23",
|
|
30331
30328
|
"@smithy/util-endpoints": "^3.0.6",
|
|
30332
30329
|
"@smithy/util-middleware": "^4.0.4",
|
|
30333
30330
|
"@smithy/util-retry": "^4.0.6",
|
|
@@ -34887,9 +34884,8 @@ var init_XmlShapeDeserializer5 = __esm({
|
|
|
34887
34884
|
readSchema(_schema, value) {
|
|
34888
34885
|
const ns = NormalizedSchema.of(_schema);
|
|
34889
34886
|
const traits = ns.getMergedTraits();
|
|
34890
|
-
const schema = ns.getSchema();
|
|
34891
34887
|
if (ns.isListSchema() && !Array.isArray(value)) {
|
|
34892
|
-
return this.readSchema(
|
|
34888
|
+
return this.readSchema(ns, [value]);
|
|
34893
34889
|
}
|
|
34894
34890
|
if (value == null) {
|
|
34895
34891
|
return value;
|
|
@@ -34945,14 +34941,14 @@ var init_XmlShapeDeserializer5 = __esm({
|
|
|
34945
34941
|
return value;
|
|
34946
34942
|
}
|
|
34947
34943
|
throw new Error(`@aws-sdk/core/protocols - xml deserializer unhandled schema type for ${ns.getName(true)}`);
|
|
34948
|
-
} else {
|
|
34949
|
-
if (ns.isListSchema()) {
|
|
34950
|
-
return [];
|
|
34951
|
-
} else if (ns.isMapSchema() || ns.isStructSchema()) {
|
|
34952
|
-
return {};
|
|
34953
|
-
}
|
|
34954
|
-
return this.stringDeserializer.read(ns, value);
|
|
34955
34944
|
}
|
|
34945
|
+
if (ns.isListSchema()) {
|
|
34946
|
+
return [];
|
|
34947
|
+
}
|
|
34948
|
+
if (ns.isMapSchema() || ns.isStructSchema()) {
|
|
34949
|
+
return {};
|
|
34950
|
+
}
|
|
34951
|
+
return this.stringDeserializer.read(ns, value);
|
|
34956
34952
|
}
|
|
34957
34953
|
parseXml(xml) {
|
|
34958
34954
|
if (xml.length) {
|
|
@@ -36152,7 +36148,7 @@ var init_package = __esm({
|
|
|
36152
36148
|
"../node_modules/@aws-sdk/nested-clients/package.json"() {
|
|
36153
36149
|
package_default = {
|
|
36154
36150
|
name: "@aws-sdk/nested-clients",
|
|
36155
|
-
version: "3.
|
|
36151
|
+
version: "3.846.0",
|
|
36156
36152
|
description: "Nested clients for AWS SDK packages.",
|
|
36157
36153
|
main: "./dist-cjs/index.js",
|
|
36158
36154
|
module: "./dist-es/index.js",
|
|
@@ -36180,37 +36176,37 @@ var init_package = __esm({
|
|
|
36180
36176
|
dependencies: {
|
|
36181
36177
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
36182
36178
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
36183
|
-
"@aws-sdk/core": "3.
|
|
36179
|
+
"@aws-sdk/core": "3.846.0",
|
|
36184
36180
|
"@aws-sdk/middleware-host-header": "3.840.0",
|
|
36185
36181
|
"@aws-sdk/middleware-logger": "3.840.0",
|
|
36186
36182
|
"@aws-sdk/middleware-recursion-detection": "3.840.0",
|
|
36187
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
36183
|
+
"@aws-sdk/middleware-user-agent": "3.846.0",
|
|
36188
36184
|
"@aws-sdk/region-config-resolver": "3.840.0",
|
|
36189
36185
|
"@aws-sdk/types": "3.840.0",
|
|
36190
|
-
"@aws-sdk/util-endpoints": "3.
|
|
36186
|
+
"@aws-sdk/util-endpoints": "3.845.0",
|
|
36191
36187
|
"@aws-sdk/util-user-agent-browser": "3.840.0",
|
|
36192
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36188
|
+
"@aws-sdk/util-user-agent-node": "3.846.0",
|
|
36193
36189
|
"@smithy/config-resolver": "^4.1.4",
|
|
36194
36190
|
"@smithy/core": "^3.7.0",
|
|
36195
36191
|
"@smithy/fetch-http-handler": "^5.1.0",
|
|
36196
36192
|
"@smithy/hash-node": "^4.0.4",
|
|
36197
36193
|
"@smithy/invalid-dependency": "^4.0.4",
|
|
36198
36194
|
"@smithy/middleware-content-length": "^4.0.4",
|
|
36199
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
36200
|
-
"@smithy/middleware-retry": "^4.1.
|
|
36195
|
+
"@smithy/middleware-endpoint": "^4.1.15",
|
|
36196
|
+
"@smithy/middleware-retry": "^4.1.16",
|
|
36201
36197
|
"@smithy/middleware-serde": "^4.0.8",
|
|
36202
36198
|
"@smithy/middleware-stack": "^4.0.4",
|
|
36203
36199
|
"@smithy/node-config-provider": "^4.1.3",
|
|
36204
36200
|
"@smithy/node-http-handler": "^4.1.0",
|
|
36205
36201
|
"@smithy/protocol-http": "^5.1.2",
|
|
36206
|
-
"@smithy/smithy-client": "^4.4.
|
|
36202
|
+
"@smithy/smithy-client": "^4.4.7",
|
|
36207
36203
|
"@smithy/types": "^4.3.1",
|
|
36208
36204
|
"@smithy/url-parser": "^4.0.4",
|
|
36209
36205
|
"@smithy/util-base64": "^4.0.0",
|
|
36210
36206
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
36211
36207
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
36212
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
36213
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
36208
|
+
"@smithy/util-defaults-mode-browser": "^4.0.23",
|
|
36209
|
+
"@smithy/util-defaults-mode-node": "^4.0.23",
|
|
36214
36210
|
"@smithy/util-endpoints": "^3.0.6",
|
|
36215
36211
|
"@smithy/util-middleware": "^4.0.4",
|
|
36216
36212
|
"@smithy/util-retry": "^4.0.6",
|
|
@@ -41740,6 +41736,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
41740
41736
|
CopyObjectOutputFilterSensitiveLog: () => CopyObjectOutputFilterSensitiveLog,
|
|
41741
41737
|
CopyObjectRequestFilterSensitiveLog: () => CopyObjectRequestFilterSensitiveLog,
|
|
41742
41738
|
CreateBucketCommand: () => CreateBucketCommand,
|
|
41739
|
+
CreateBucketMetadataConfigurationCommand: () => CreateBucketMetadataConfigurationCommand,
|
|
41743
41740
|
CreateBucketMetadataTableConfigurationCommand: () => CreateBucketMetadataTableConfigurationCommand,
|
|
41744
41741
|
CreateMultipartUploadCommand: () => CreateMultipartUploadCommand,
|
|
41745
41742
|
CreateMultipartUploadOutputFilterSensitiveLog: () => CreateMultipartUploadOutputFilterSensitiveLog,
|
|
@@ -41755,6 +41752,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
41755
41752
|
DeleteBucketIntelligentTieringConfigurationCommand: () => DeleteBucketIntelligentTieringConfigurationCommand,
|
|
41756
41753
|
DeleteBucketInventoryConfigurationCommand: () => DeleteBucketInventoryConfigurationCommand,
|
|
41757
41754
|
DeleteBucketLifecycleCommand: () => DeleteBucketLifecycleCommand,
|
|
41755
|
+
DeleteBucketMetadataConfigurationCommand: () => DeleteBucketMetadataConfigurationCommand,
|
|
41758
41756
|
DeleteBucketMetadataTableConfigurationCommand: () => DeleteBucketMetadataTableConfigurationCommand,
|
|
41759
41757
|
DeleteBucketMetricsConfigurationCommand: () => DeleteBucketMetricsConfigurationCommand,
|
|
41760
41758
|
DeleteBucketOwnershipControlsCommand: () => DeleteBucketOwnershipControlsCommand,
|
|
@@ -41772,6 +41770,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
41772
41770
|
EncryptionTypeMismatch: () => EncryptionTypeMismatch,
|
|
41773
41771
|
Event: () => Event,
|
|
41774
41772
|
ExistingObjectReplicationStatus: () => ExistingObjectReplicationStatus,
|
|
41773
|
+
ExpirationState: () => ExpirationState,
|
|
41775
41774
|
ExpirationStatus: () => ExpirationStatus,
|
|
41776
41775
|
ExpressionType: () => ExpressionType,
|
|
41777
41776
|
FileHeaderInfo: () => FileHeaderInfo,
|
|
@@ -41788,6 +41787,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
41788
41787
|
GetBucketLifecycleConfigurationCommand: () => GetBucketLifecycleConfigurationCommand,
|
|
41789
41788
|
GetBucketLocationCommand: () => GetBucketLocationCommand,
|
|
41790
41789
|
GetBucketLoggingCommand: () => GetBucketLoggingCommand,
|
|
41790
|
+
GetBucketMetadataConfigurationCommand: () => GetBucketMetadataConfigurationCommand,
|
|
41791
41791
|
GetBucketMetadataTableConfigurationCommand: () => GetBucketMetadataTableConfigurationCommand,
|
|
41792
41792
|
GetBucketMetricsConfigurationCommand: () => GetBucketMetricsConfigurationCommand,
|
|
41793
41793
|
GetBucketNotificationConfigurationCommand: () => GetBucketNotificationConfigurationCommand,
|
|
@@ -41823,6 +41823,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
41823
41823
|
InvalidRequest: () => InvalidRequest,
|
|
41824
41824
|
InvalidWriteOffset: () => InvalidWriteOffset,
|
|
41825
41825
|
InventoryConfigurationFilterSensitiveLog: () => InventoryConfigurationFilterSensitiveLog,
|
|
41826
|
+
InventoryConfigurationState: () => InventoryConfigurationState,
|
|
41826
41827
|
InventoryDestinationFilterSensitiveLog: () => InventoryDestinationFilterSensitiveLog,
|
|
41827
41828
|
InventoryEncryptionFilterSensitiveLog: () => InventoryEncryptionFilterSensitiveLog,
|
|
41828
41829
|
InventoryFormat: () => InventoryFormat,
|
|
@@ -41917,6 +41918,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
41917
41918
|
S3Client: () => S3Client2,
|
|
41918
41919
|
S3LocationFilterSensitiveLog: () => S3LocationFilterSensitiveLog,
|
|
41919
41920
|
S3ServiceException: () => S3ServiceException,
|
|
41921
|
+
S3TablesBucketType: () => S3TablesBucketType,
|
|
41920
41922
|
SSEKMSFilterSensitiveLog: () => SSEKMSFilterSensitiveLog,
|
|
41921
41923
|
SelectObjectContentCommand: () => SelectObjectContentCommand,
|
|
41922
41924
|
SelectObjectContentEventStream: () => SelectObjectContentEventStream,
|
|
@@ -41932,12 +41934,15 @@ var require_dist_cjs82 = __commonJS({
|
|
|
41932
41934
|
SseKmsEncryptedObjectsStatus: () => SseKmsEncryptedObjectsStatus,
|
|
41933
41935
|
StorageClass: () => StorageClass,
|
|
41934
41936
|
StorageClassAnalysisSchemaVersion: () => StorageClassAnalysisSchemaVersion,
|
|
41937
|
+
TableSseAlgorithm: () => TableSseAlgorithm,
|
|
41935
41938
|
TaggingDirective: () => TaggingDirective,
|
|
41936
41939
|
Tier: () => Tier,
|
|
41937
41940
|
TooManyParts: () => TooManyParts,
|
|
41938
41941
|
TransitionDefaultMinimumObjectSize: () => TransitionDefaultMinimumObjectSize,
|
|
41939
41942
|
TransitionStorageClass: () => TransitionStorageClass,
|
|
41940
41943
|
Type: () => Type,
|
|
41944
|
+
UpdateBucketMetadataInventoryTableConfigurationCommand: () => UpdateBucketMetadataInventoryTableConfigurationCommand,
|
|
41945
|
+
UpdateBucketMetadataJournalTableConfigurationCommand: () => UpdateBucketMetadataJournalTableConfigurationCommand,
|
|
41941
41946
|
UploadPartCommand: () => UploadPartCommand,
|
|
41942
41947
|
UploadPartCopyCommand: () => UploadPartCopyCommand,
|
|
41943
41948
|
UploadPartCopyOutputFilterSensitiveLog: () => UploadPartCopyOutputFilterSensitiveLog,
|
|
@@ -42223,6 +42228,18 @@ var require_dist_cjs82 = __commonJS({
|
|
|
42223
42228
|
BucketOwnerPreferred: "BucketOwnerPreferred",
|
|
42224
42229
|
ObjectWriter: "ObjectWriter"
|
|
42225
42230
|
};
|
|
42231
|
+
var InventoryConfigurationState = {
|
|
42232
|
+
DISABLED: "DISABLED",
|
|
42233
|
+
ENABLED: "ENABLED"
|
|
42234
|
+
};
|
|
42235
|
+
var TableSseAlgorithm = {
|
|
42236
|
+
AES256: "AES256",
|
|
42237
|
+
aws_kms: "aws:kms"
|
|
42238
|
+
};
|
|
42239
|
+
var ExpirationState = {
|
|
42240
|
+
DISABLED: "DISABLED",
|
|
42241
|
+
ENABLED: "ENABLED"
|
|
42242
|
+
};
|
|
42226
42243
|
var SessionMode = {
|
|
42227
42244
|
ReadOnly: "ReadOnly",
|
|
42228
42245
|
ReadWrite: "ReadWrite"
|
|
@@ -42323,6 +42340,10 @@ var require_dist_cjs82 = __commonJS({
|
|
|
42323
42340
|
DeliveryTime: "DeliveryTime",
|
|
42324
42341
|
EventTime: "EventTime"
|
|
42325
42342
|
};
|
|
42343
|
+
var S3TablesBucketType = {
|
|
42344
|
+
aws: "aws",
|
|
42345
|
+
customer: "customer"
|
|
42346
|
+
};
|
|
42326
42347
|
var MetricsFilter;
|
|
42327
42348
|
((MetricsFilter2) => {
|
|
42328
42349
|
MetricsFilter2.visit = /* @__PURE__ */ __name((value, visitor) => {
|
|
@@ -42499,26 +42520,6 @@ var require_dist_cjs82 = __commonJS({
|
|
|
42499
42520
|
var EncodingType = {
|
|
42500
42521
|
url: "url"
|
|
42501
42522
|
};
|
|
42502
|
-
var ObjectStorageClass = {
|
|
42503
|
-
DEEP_ARCHIVE: "DEEP_ARCHIVE",
|
|
42504
|
-
EXPRESS_ONEZONE: "EXPRESS_ONEZONE",
|
|
42505
|
-
FSX_OPENZFS: "FSX_OPENZFS",
|
|
42506
|
-
GLACIER: "GLACIER",
|
|
42507
|
-
GLACIER_IR: "GLACIER_IR",
|
|
42508
|
-
INTELLIGENT_TIERING: "INTELLIGENT_TIERING",
|
|
42509
|
-
ONEZONE_IA: "ONEZONE_IA",
|
|
42510
|
-
OUTPOSTS: "OUTPOSTS",
|
|
42511
|
-
REDUCED_REDUNDANCY: "REDUCED_REDUNDANCY",
|
|
42512
|
-
SNOW: "SNOW",
|
|
42513
|
-
STANDARD: "STANDARD",
|
|
42514
|
-
STANDARD_IA: "STANDARD_IA"
|
|
42515
|
-
};
|
|
42516
|
-
var OptionalObjectAttributes = {
|
|
42517
|
-
RESTORE_STATUS: "RestoreStatus"
|
|
42518
|
-
};
|
|
42519
|
-
var ObjectVersionStorageClass = {
|
|
42520
|
-
STANDARD: "STANDARD"
|
|
42521
|
-
};
|
|
42522
42523
|
var CompleteMultipartUploadOutputFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
42523
42524
|
...obj,
|
|
42524
42525
|
...obj.SSEKMSKeyId && { SSEKMSKeyId: import_smithy_client61.SENSITIVE_STRING }
|
|
@@ -42649,15 +42650,31 @@ var require_dist_cjs82 = __commonJS({
|
|
|
42649
42650
|
)
|
|
42650
42651
|
}
|
|
42651
42652
|
}), "ListBucketInventoryConfigurationsOutputFilterSensitiveLog");
|
|
42652
|
-
var ListPartsRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
42653
|
-
...obj,
|
|
42654
|
-
...obj.SSECustomerKey && { SSECustomerKey: import_smithy_client61.SENSITIVE_STRING }
|
|
42655
|
-
}), "ListPartsRequestFilterSensitiveLog");
|
|
42656
42653
|
var import_core31 = (init_dist_es4(), __toCommonJS(dist_es_exports4));
|
|
42657
42654
|
var import_xml_builder7 = require_dist_cjs21();
|
|
42658
42655
|
var import_core210 = (init_dist_es(), __toCommonJS(dist_es_exports));
|
|
42659
42656
|
var import_protocol_http36 = require_dist_cjs2();
|
|
42660
42657
|
var import_uuid = (init_esm_node2(), __toCommonJS(esm_node_exports2));
|
|
42658
|
+
var ObjectStorageClass = {
|
|
42659
|
+
DEEP_ARCHIVE: "DEEP_ARCHIVE",
|
|
42660
|
+
EXPRESS_ONEZONE: "EXPRESS_ONEZONE",
|
|
42661
|
+
FSX_OPENZFS: "FSX_OPENZFS",
|
|
42662
|
+
GLACIER: "GLACIER",
|
|
42663
|
+
GLACIER_IR: "GLACIER_IR",
|
|
42664
|
+
INTELLIGENT_TIERING: "INTELLIGENT_TIERING",
|
|
42665
|
+
ONEZONE_IA: "ONEZONE_IA",
|
|
42666
|
+
OUTPOSTS: "OUTPOSTS",
|
|
42667
|
+
REDUCED_REDUNDANCY: "REDUCED_REDUNDANCY",
|
|
42668
|
+
SNOW: "SNOW",
|
|
42669
|
+
STANDARD: "STANDARD",
|
|
42670
|
+
STANDARD_IA: "STANDARD_IA"
|
|
42671
|
+
};
|
|
42672
|
+
var OptionalObjectAttributes = {
|
|
42673
|
+
RESTORE_STATUS: "RestoreStatus"
|
|
42674
|
+
};
|
|
42675
|
+
var ObjectVersionStorageClass = {
|
|
42676
|
+
STANDARD: "STANDARD"
|
|
42677
|
+
};
|
|
42661
42678
|
var MFADelete = {
|
|
42662
42679
|
Disabled: "Disabled",
|
|
42663
42680
|
Enabled: "Enabled"
|
|
@@ -42810,6 +42827,10 @@ var require_dist_cjs82 = __commonJS({
|
|
|
42810
42827
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
42811
42828
|
}, "visit");
|
|
42812
42829
|
})(SelectObjectContentEventStream || (SelectObjectContentEventStream = {}));
|
|
42830
|
+
var ListPartsRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
42831
|
+
...obj,
|
|
42832
|
+
...obj.SSECustomerKey && { SSECustomerKey: import_smithy_client61.SENSITIVE_STRING }
|
|
42833
|
+
}), "ListPartsRequestFilterSensitiveLog");
|
|
42813
42834
|
var PutBucketEncryptionRequestFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
|
|
42814
42835
|
...obj,
|
|
42815
42836
|
...obj.ServerSideEncryptionConfiguration && {
|
|
@@ -43029,6 +43050,30 @@ var require_dist_cjs82 = __commonJS({
|
|
|
43029
43050
|
b3.m("PUT").h(headers).b(body);
|
|
43030
43051
|
return b3.build();
|
|
43031
43052
|
}, "se_CreateBucketCommand");
|
|
43053
|
+
var se_CreateBucketMetadataConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
43054
|
+
const b3 = (0, import_core210.requestBuilder)(input, context);
|
|
43055
|
+
const headers = (0, import_smithy_client61.map)({}, import_smithy_client61.isSerializableHeaderValue, {
|
|
43056
|
+
"content-type": "application/xml",
|
|
43057
|
+
[_cm]: input[_CMD],
|
|
43058
|
+
[_xasca]: input[_CA2],
|
|
43059
|
+
[_xaebo]: input[_EBO]
|
|
43060
|
+
});
|
|
43061
|
+
b3.bp("/");
|
|
43062
|
+
b3.p("Bucket", () => input.Bucket, "{Bucket}", false);
|
|
43063
|
+
const query = (0, import_smithy_client61.map)({
|
|
43064
|
+
[_mC]: [, ""]
|
|
43065
|
+
});
|
|
43066
|
+
let body;
|
|
43067
|
+
let contents;
|
|
43068
|
+
if (input.MetadataConfiguration !== void 0) {
|
|
43069
|
+
contents = se_MetadataConfiguration(input.MetadataConfiguration, context);
|
|
43070
|
+
body = _ve;
|
|
43071
|
+
contents.a("xmlns", "http://s3.amazonaws.com/doc/2006-03-01/");
|
|
43072
|
+
body += contents.toString();
|
|
43073
|
+
}
|
|
43074
|
+
b3.m("POST").h(headers).q(query).b(body);
|
|
43075
|
+
return b3.build();
|
|
43076
|
+
}, "se_CreateBucketMetadataConfigurationCommand");
|
|
43032
43077
|
var se_CreateBucketMetadataTableConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
43033
43078
|
const b3 = (0, import_core210.requestBuilder)(input, context);
|
|
43034
43079
|
const headers = (0, import_smithy_client61.map)({}, import_smithy_client61.isSerializableHeaderValue, {
|
|
@@ -43215,6 +43260,20 @@ var require_dist_cjs82 = __commonJS({
|
|
|
43215
43260
|
b3.m("DELETE").h(headers).q(query).b(body);
|
|
43216
43261
|
return b3.build();
|
|
43217
43262
|
}, "se_DeleteBucketLifecycleCommand");
|
|
43263
|
+
var se_DeleteBucketMetadataConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
43264
|
+
const b3 = (0, import_core210.requestBuilder)(input, context);
|
|
43265
|
+
const headers = (0, import_smithy_client61.map)({}, import_smithy_client61.isSerializableHeaderValue, {
|
|
43266
|
+
[_xaebo]: input[_EBO]
|
|
43267
|
+
});
|
|
43268
|
+
b3.bp("/");
|
|
43269
|
+
b3.p("Bucket", () => input.Bucket, "{Bucket}", false);
|
|
43270
|
+
const query = (0, import_smithy_client61.map)({
|
|
43271
|
+
[_mC]: [, ""]
|
|
43272
|
+
});
|
|
43273
|
+
let body;
|
|
43274
|
+
b3.m("DELETE").h(headers).q(query).b(body);
|
|
43275
|
+
return b3.build();
|
|
43276
|
+
}, "se_DeleteBucketMetadataConfigurationCommand");
|
|
43218
43277
|
var se_DeleteBucketMetadataTableConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
43219
43278
|
const b3 = (0, import_core210.requestBuilder)(input, context);
|
|
43220
43279
|
const headers = (0, import_smithy_client61.map)({}, import_smithy_client61.isSerializableHeaderValue, {
|
|
@@ -43539,6 +43598,20 @@ var require_dist_cjs82 = __commonJS({
|
|
|
43539
43598
|
b3.m("GET").h(headers).q(query).b(body);
|
|
43540
43599
|
return b3.build();
|
|
43541
43600
|
}, "se_GetBucketLoggingCommand");
|
|
43601
|
+
var se_GetBucketMetadataConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
43602
|
+
const b3 = (0, import_core210.requestBuilder)(input, context);
|
|
43603
|
+
const headers = (0, import_smithy_client61.map)({}, import_smithy_client61.isSerializableHeaderValue, {
|
|
43604
|
+
[_xaebo]: input[_EBO]
|
|
43605
|
+
});
|
|
43606
|
+
b3.bp("/");
|
|
43607
|
+
b3.p("Bucket", () => input.Bucket, "{Bucket}", false);
|
|
43608
|
+
const query = (0, import_smithy_client61.map)({
|
|
43609
|
+
[_mC]: [, ""]
|
|
43610
|
+
});
|
|
43611
|
+
let body;
|
|
43612
|
+
b3.m("GET").h(headers).q(query).b(body);
|
|
43613
|
+
return b3.build();
|
|
43614
|
+
}, "se_GetBucketMetadataConfigurationCommand");
|
|
43542
43615
|
var se_GetBucketMetadataTableConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
43543
43616
|
const b3 = (0, import_core210.requestBuilder)(input, context);
|
|
43544
43617
|
const headers = (0, import_smithy_client61.map)({}, import_smithy_client61.isSerializableHeaderValue, {
|
|
@@ -44855,6 +44928,56 @@ var require_dist_cjs82 = __commonJS({
|
|
|
44855
44928
|
b3.m("POST").h(headers).q(query).b(body);
|
|
44856
44929
|
return b3.build();
|
|
44857
44930
|
}, "se_SelectObjectContentCommand");
|
|
44931
|
+
var se_UpdateBucketMetadataInventoryTableConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
44932
|
+
const b3 = (0, import_core210.requestBuilder)(input, context);
|
|
44933
|
+
const headers = (0, import_smithy_client61.map)({}, import_smithy_client61.isSerializableHeaderValue, {
|
|
44934
|
+
"content-type": "application/xml",
|
|
44935
|
+
[_cm]: input[_CMD],
|
|
44936
|
+
[_xasca]: input[_CA2],
|
|
44937
|
+
[_xaebo]: input[_EBO]
|
|
44938
|
+
});
|
|
44939
|
+
b3.bp("/");
|
|
44940
|
+
b3.p("Bucket", () => input.Bucket, "{Bucket}", false);
|
|
44941
|
+
const query = (0, import_smithy_client61.map)({
|
|
44942
|
+
[_mIT]: [, ""]
|
|
44943
|
+
});
|
|
44944
|
+
let body;
|
|
44945
|
+
let contents;
|
|
44946
|
+
if (input.InventoryTableConfiguration !== void 0) {
|
|
44947
|
+
contents = se_InventoryTableConfigurationUpdates(input.InventoryTableConfiguration, context);
|
|
44948
|
+
contents = contents.n("InventoryTableConfiguration");
|
|
44949
|
+
body = _ve;
|
|
44950
|
+
contents.a("xmlns", "http://s3.amazonaws.com/doc/2006-03-01/");
|
|
44951
|
+
body += contents.toString();
|
|
44952
|
+
}
|
|
44953
|
+
b3.m("PUT").h(headers).q(query).b(body);
|
|
44954
|
+
return b3.build();
|
|
44955
|
+
}, "se_UpdateBucketMetadataInventoryTableConfigurationCommand");
|
|
44956
|
+
var se_UpdateBucketMetadataJournalTableConfigurationCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
44957
|
+
const b3 = (0, import_core210.requestBuilder)(input, context);
|
|
44958
|
+
const headers = (0, import_smithy_client61.map)({}, import_smithy_client61.isSerializableHeaderValue, {
|
|
44959
|
+
"content-type": "application/xml",
|
|
44960
|
+
[_cm]: input[_CMD],
|
|
44961
|
+
[_xasca]: input[_CA2],
|
|
44962
|
+
[_xaebo]: input[_EBO]
|
|
44963
|
+
});
|
|
44964
|
+
b3.bp("/");
|
|
44965
|
+
b3.p("Bucket", () => input.Bucket, "{Bucket}", false);
|
|
44966
|
+
const query = (0, import_smithy_client61.map)({
|
|
44967
|
+
[_mJT]: [, ""]
|
|
44968
|
+
});
|
|
44969
|
+
let body;
|
|
44970
|
+
let contents;
|
|
44971
|
+
if (input.JournalTableConfiguration !== void 0) {
|
|
44972
|
+
contents = se_JournalTableConfigurationUpdates(input.JournalTableConfiguration, context);
|
|
44973
|
+
contents = contents.n("JournalTableConfiguration");
|
|
44974
|
+
body = _ve;
|
|
44975
|
+
contents.a("xmlns", "http://s3.amazonaws.com/doc/2006-03-01/");
|
|
44976
|
+
body += contents.toString();
|
|
44977
|
+
}
|
|
44978
|
+
b3.m("PUT").h(headers).q(query).b(body);
|
|
44979
|
+
return b3.build();
|
|
44980
|
+
}, "se_UpdateBucketMetadataJournalTableConfigurationCommand");
|
|
44858
44981
|
var se_UploadPartCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
44859
44982
|
const b3 = (0, import_core210.requestBuilder)(input, context);
|
|
44860
44983
|
const headers = (0, import_smithy_client61.map)({}, import_smithy_client61.isSerializableHeaderValue, {
|
|
@@ -45085,6 +45208,16 @@ var require_dist_cjs82 = __commonJS({
|
|
|
45085
45208
|
await (0, import_smithy_client61.collectBody)(output.body, context);
|
|
45086
45209
|
return contents;
|
|
45087
45210
|
}, "de_CreateBucketCommand");
|
|
45211
|
+
var de_CreateBucketMetadataConfigurationCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
45212
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
45213
|
+
return de_CommandError3(output, context);
|
|
45214
|
+
}
|
|
45215
|
+
const contents = (0, import_smithy_client61.map)({
|
|
45216
|
+
$metadata: deserializeMetadata3(output)
|
|
45217
|
+
});
|
|
45218
|
+
await (0, import_smithy_client61.collectBody)(output.body, context);
|
|
45219
|
+
return contents;
|
|
45220
|
+
}, "de_CreateBucketMetadataConfigurationCommand");
|
|
45088
45221
|
var de_CreateBucketMetadataTableConfigurationCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
45089
45222
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
45090
45223
|
return de_CommandError3(output, context);
|
|
@@ -45215,6 +45348,16 @@ var require_dist_cjs82 = __commonJS({
|
|
|
45215
45348
|
await (0, import_smithy_client61.collectBody)(output.body, context);
|
|
45216
45349
|
return contents;
|
|
45217
45350
|
}, "de_DeleteBucketLifecycleCommand");
|
|
45351
|
+
var de_DeleteBucketMetadataConfigurationCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
45352
|
+
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
45353
|
+
return de_CommandError3(output, context);
|
|
45354
|
+
}
|
|
45355
|
+
const contents = (0, import_smithy_client61.map)({
|
|
45356
|
+
$metadata: deserializeMetadata3(output)
|
|
45357
|
+
});
|
|
45358
|
+
await (0, import_smithy_client61.collectBody)(output.body, context);
|
|
45359
|
+
return contents;
|
|
45360
|
+
}, "de_DeleteBucketMetadataConfigurationCommand");
|
|
45218
45361
|
var de_DeleteBucketMetadataTableConfigurationCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
45219
45362
|
if (output.statusCode !== 204 && output.statusCode >= 300) {
|
|
45220
45363
|
return de_CommandError3(output, context);
|
|
@@ -45473,6 +45616,17 @@ var require_dist_cjs82 = __commonJS({
|
|
|
45473
45616
|
}
|
|
45474
45617
|
return contents;
|
|
45475
45618
|
}, "de_GetBucketLoggingCommand");
|
|
45619
|
+
var de_GetBucketMetadataConfigurationCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
45620
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
45621
|
+
return de_CommandError3(output, context);
|
|
45622
|
+
}
|
|
45623
|
+
const contents = (0, import_smithy_client61.map)({
|
|
45624
|
+
$metadata: deserializeMetadata3(output)
|
|
45625
|
+
});
|
|
45626
|
+
const data = (0, import_smithy_client61.expectObject)(await (0, import_core31.parseXmlBody)(output.body, context));
|
|
45627
|
+
contents.GetBucketMetadataConfigurationResult = de_GetBucketMetadataConfigurationResult(data, context);
|
|
45628
|
+
return contents;
|
|
45629
|
+
}, "de_GetBucketMetadataConfigurationCommand");
|
|
45476
45630
|
var de_GetBucketMetadataTableConfigurationCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
45477
45631
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
45478
45632
|
return de_CommandError3(output, context);
|
|
@@ -46592,6 +46746,26 @@ var require_dist_cjs82 = __commonJS({
|
|
|
46592
46746
|
contents.Payload = de_SelectObjectContentEventStream(data, context);
|
|
46593
46747
|
return contents;
|
|
46594
46748
|
}, "de_SelectObjectContentCommand");
|
|
46749
|
+
var de_UpdateBucketMetadataInventoryTableConfigurationCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
46750
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
46751
|
+
return de_CommandError3(output, context);
|
|
46752
|
+
}
|
|
46753
|
+
const contents = (0, import_smithy_client61.map)({
|
|
46754
|
+
$metadata: deserializeMetadata3(output)
|
|
46755
|
+
});
|
|
46756
|
+
await (0, import_smithy_client61.collectBody)(output.body, context);
|
|
46757
|
+
return contents;
|
|
46758
|
+
}, "de_UpdateBucketMetadataInventoryTableConfigurationCommand");
|
|
46759
|
+
var de_UpdateBucketMetadataJournalTableConfigurationCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
46760
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
46761
|
+
return de_CommandError3(output, context);
|
|
46762
|
+
}
|
|
46763
|
+
const contents = (0, import_smithy_client61.map)({
|
|
46764
|
+
$metadata: deserializeMetadata3(output)
|
|
46765
|
+
});
|
|
46766
|
+
await (0, import_smithy_client61.collectBody)(output.body, context);
|
|
46767
|
+
return contents;
|
|
46768
|
+
}, "de_UpdateBucketMetadataJournalTableConfigurationCommand");
|
|
46595
46769
|
var de_UploadPartCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
46596
46770
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
46597
46771
|
return de_CommandError3(output, context);
|
|
@@ -47381,6 +47555,43 @@ var require_dist_cjs82 = __commonJS({
|
|
|
47381
47555
|
}
|
|
47382
47556
|
return bn;
|
|
47383
47557
|
}, "se_InventorySchedule");
|
|
47558
|
+
var se_InventoryTableConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
47559
|
+
const bn = new import_xml_builder7.XmlNode(_ITCn);
|
|
47560
|
+
if (input[_CSo] != null) {
|
|
47561
|
+
bn.c(import_xml_builder7.XmlNode.of(_ICS, input[_CSo]).n(_CSo));
|
|
47562
|
+
}
|
|
47563
|
+
if (input[_ECn] != null) {
|
|
47564
|
+
bn.c(se_MetadataTableEncryptionConfiguration(input[_ECn], context).n(_ECn));
|
|
47565
|
+
}
|
|
47566
|
+
return bn;
|
|
47567
|
+
}, "se_InventoryTableConfiguration");
|
|
47568
|
+
var se_InventoryTableConfigurationUpdates = /* @__PURE__ */ __name((input, context) => {
|
|
47569
|
+
const bn = new import_xml_builder7.XmlNode(_ITCU);
|
|
47570
|
+
if (input[_CSo] != null) {
|
|
47571
|
+
bn.c(import_xml_builder7.XmlNode.of(_ICS, input[_CSo]).n(_CSo));
|
|
47572
|
+
}
|
|
47573
|
+
if (input[_ECn] != null) {
|
|
47574
|
+
bn.c(se_MetadataTableEncryptionConfiguration(input[_ECn], context).n(_ECn));
|
|
47575
|
+
}
|
|
47576
|
+
return bn;
|
|
47577
|
+
}, "se_InventoryTableConfigurationUpdates");
|
|
47578
|
+
var se_JournalTableConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
47579
|
+
const bn = new import_xml_builder7.XmlNode(_JTC);
|
|
47580
|
+
if (input[_REe] != null) {
|
|
47581
|
+
bn.c(se_RecordExpiration(input[_REe], context).n(_REe));
|
|
47582
|
+
}
|
|
47583
|
+
if (input[_ECn] != null) {
|
|
47584
|
+
bn.c(se_MetadataTableEncryptionConfiguration(input[_ECn], context).n(_ECn));
|
|
47585
|
+
}
|
|
47586
|
+
return bn;
|
|
47587
|
+
}, "se_JournalTableConfiguration");
|
|
47588
|
+
var se_JournalTableConfigurationUpdates = /* @__PURE__ */ __name((input, context) => {
|
|
47589
|
+
const bn = new import_xml_builder7.XmlNode(_JTCU);
|
|
47590
|
+
if (input[_REe] != null) {
|
|
47591
|
+
bn.c(se_RecordExpiration(input[_REe], context).n(_REe));
|
|
47592
|
+
}
|
|
47593
|
+
return bn;
|
|
47594
|
+
}, "se_JournalTableConfigurationUpdates");
|
|
47384
47595
|
var se_JSONInput = /* @__PURE__ */ __name((input, context) => {
|
|
47385
47596
|
const bn = new import_xml_builder7.XmlNode(_JSONI);
|
|
47386
47597
|
if (input[_Ty] != null) {
|
|
@@ -47509,6 +47720,16 @@ var require_dist_cjs82 = __commonJS({
|
|
|
47509
47720
|
}
|
|
47510
47721
|
return bn;
|
|
47511
47722
|
}, "se_LoggingEnabled");
|
|
47723
|
+
var se_MetadataConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
47724
|
+
const bn = new import_xml_builder7.XmlNode(_MCe);
|
|
47725
|
+
if (input[_JTC] != null) {
|
|
47726
|
+
bn.c(se_JournalTableConfiguration(input[_JTC], context).n(_JTC));
|
|
47727
|
+
}
|
|
47728
|
+
if (input[_ITCn] != null) {
|
|
47729
|
+
bn.c(se_InventoryTableConfiguration(input[_ITCn], context).n(_ITCn));
|
|
47730
|
+
}
|
|
47731
|
+
return bn;
|
|
47732
|
+
}, "se_MetadataConfiguration");
|
|
47512
47733
|
var se_MetadataEntry = /* @__PURE__ */ __name((input, context) => {
|
|
47513
47734
|
const bn = new import_xml_builder7.XmlNode(_ME);
|
|
47514
47735
|
if (input[_N] != null) {
|
|
@@ -47526,6 +47747,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
47526
47747
|
}
|
|
47527
47748
|
return bn;
|
|
47528
47749
|
}, "se_MetadataTableConfiguration");
|
|
47750
|
+
var se_MetadataTableEncryptionConfiguration = /* @__PURE__ */ __name((input, context) => {
|
|
47751
|
+
const bn = new import_xml_builder7.XmlNode(_MTEC);
|
|
47752
|
+
if (input[_SAs] != null) {
|
|
47753
|
+
bn.c(import_xml_builder7.XmlNode.of(_TSA, input[_SAs]).n(_SAs));
|
|
47754
|
+
}
|
|
47755
|
+
bn.cc(input, _KKA);
|
|
47756
|
+
return bn;
|
|
47757
|
+
}, "se_MetadataTableEncryptionConfiguration");
|
|
47529
47758
|
var se_Metrics = /* @__PURE__ */ __name((input, context) => {
|
|
47530
47759
|
const bn = new import_xml_builder7.XmlNode(_Me);
|
|
47531
47760
|
if (input[_S] != null) {
|
|
@@ -47775,6 +48004,16 @@ var require_dist_cjs82 = __commonJS({
|
|
|
47775
48004
|
return n3.n(_me);
|
|
47776
48005
|
});
|
|
47777
48006
|
}, "se_QueueConfigurationList");
|
|
48007
|
+
var se_RecordExpiration = /* @__PURE__ */ __name((input, context) => {
|
|
48008
|
+
const bn = new import_xml_builder7.XmlNode(_REe);
|
|
48009
|
+
if (input[_Exp] != null) {
|
|
48010
|
+
bn.c(import_xml_builder7.XmlNode.of(_ESxp, input[_Exp]).n(_Exp));
|
|
48011
|
+
}
|
|
48012
|
+
if (input[_Da] != null) {
|
|
48013
|
+
bn.c(import_xml_builder7.XmlNode.of(_RED, String(input[_Da])).n(_Da));
|
|
48014
|
+
}
|
|
48015
|
+
return bn;
|
|
48016
|
+
}, "se_RecordExpiration");
|
|
47778
48017
|
var se_Redirect = /* @__PURE__ */ __name((input, context) => {
|
|
47779
48018
|
const bn = new import_xml_builder7.XmlNode(_Red);
|
|
47780
48019
|
bn.cc(input, _HN);
|
|
@@ -48541,6 +48780,19 @@ var require_dist_cjs82 = __commonJS({
|
|
|
48541
48780
|
}
|
|
48542
48781
|
return contents;
|
|
48543
48782
|
}, "de_Destination");
|
|
48783
|
+
var de_DestinationResult = /* @__PURE__ */ __name((output, context) => {
|
|
48784
|
+
const contents = {};
|
|
48785
|
+
if (output[_TBT] != null) {
|
|
48786
|
+
contents[_TBT] = (0, import_smithy_client61.expectString)(output[_TBT]);
|
|
48787
|
+
}
|
|
48788
|
+
if (output[_TBA] != null) {
|
|
48789
|
+
contents[_TBA] = (0, import_smithy_client61.expectString)(output[_TBA]);
|
|
48790
|
+
}
|
|
48791
|
+
if (output[_TNa] != null) {
|
|
48792
|
+
contents[_TNa] = (0, import_smithy_client61.expectString)(output[_TNa]);
|
|
48793
|
+
}
|
|
48794
|
+
return contents;
|
|
48795
|
+
}, "de_DestinationResult");
|
|
48544
48796
|
var de_EncryptionConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
48545
48797
|
const contents = {};
|
|
48546
48798
|
if (output[_RKKID] != null) {
|
|
@@ -48626,6 +48878,13 @@ var require_dist_cjs82 = __commonJS({
|
|
|
48626
48878
|
return de_FilterRule(entry, context);
|
|
48627
48879
|
});
|
|
48628
48880
|
}, "de_FilterRuleList");
|
|
48881
|
+
var de_GetBucketMetadataConfigurationResult = /* @__PURE__ */ __name((output, context) => {
|
|
48882
|
+
const contents = {};
|
|
48883
|
+
if (output[_MCR] != null) {
|
|
48884
|
+
contents[_MCR] = de_MetadataConfigurationResult(output[_MCR], context);
|
|
48885
|
+
}
|
|
48886
|
+
return contents;
|
|
48887
|
+
}, "de_GetBucketMetadataConfigurationResult");
|
|
48629
48888
|
var de_GetBucketMetadataTableConfigurationResult = /* @__PURE__ */ __name((output, context) => {
|
|
48630
48889
|
const contents = {};
|
|
48631
48890
|
if (output[_MTCR] != null) {
|
|
@@ -48849,6 +49108,44 @@ var require_dist_cjs82 = __commonJS({
|
|
|
48849
49108
|
}
|
|
48850
49109
|
return contents;
|
|
48851
49110
|
}, "de_InventorySchedule");
|
|
49111
|
+
var de_InventoryTableConfigurationResult = /* @__PURE__ */ __name((output, context) => {
|
|
49112
|
+
const contents = {};
|
|
49113
|
+
if (output[_CSo] != null) {
|
|
49114
|
+
contents[_CSo] = (0, import_smithy_client61.expectString)(output[_CSo]);
|
|
49115
|
+
}
|
|
49116
|
+
if (output[_TSa] != null) {
|
|
49117
|
+
contents[_TSa] = (0, import_smithy_client61.expectString)(output[_TSa]);
|
|
49118
|
+
}
|
|
49119
|
+
if (output[_Er] != null) {
|
|
49120
|
+
contents[_Er] = de_ErrorDetails(output[_Er], context);
|
|
49121
|
+
}
|
|
49122
|
+
if (output[_TN] != null) {
|
|
49123
|
+
contents[_TN] = (0, import_smithy_client61.expectString)(output[_TN]);
|
|
49124
|
+
}
|
|
49125
|
+
if (output[_TAa] != null) {
|
|
49126
|
+
contents[_TAa] = (0, import_smithy_client61.expectString)(output[_TAa]);
|
|
49127
|
+
}
|
|
49128
|
+
return contents;
|
|
49129
|
+
}, "de_InventoryTableConfigurationResult");
|
|
49130
|
+
var de_JournalTableConfigurationResult = /* @__PURE__ */ __name((output, context) => {
|
|
49131
|
+
const contents = {};
|
|
49132
|
+
if (output[_TSa] != null) {
|
|
49133
|
+
contents[_TSa] = (0, import_smithy_client61.expectString)(output[_TSa]);
|
|
49134
|
+
}
|
|
49135
|
+
if (output[_Er] != null) {
|
|
49136
|
+
contents[_Er] = de_ErrorDetails(output[_Er], context);
|
|
49137
|
+
}
|
|
49138
|
+
if (output[_TN] != null) {
|
|
49139
|
+
contents[_TN] = (0, import_smithy_client61.expectString)(output[_TN]);
|
|
49140
|
+
}
|
|
49141
|
+
if (output[_TAa] != null) {
|
|
49142
|
+
contents[_TAa] = (0, import_smithy_client61.expectString)(output[_TAa]);
|
|
49143
|
+
}
|
|
49144
|
+
if (output[_REe] != null) {
|
|
49145
|
+
contents[_REe] = de_RecordExpiration(output[_REe], context);
|
|
49146
|
+
}
|
|
49147
|
+
return contents;
|
|
49148
|
+
}, "de_JournalTableConfigurationResult");
|
|
48852
49149
|
var de_LambdaFunctionConfiguration = /* @__PURE__ */ __name((output, context) => {
|
|
48853
49150
|
const contents = {};
|
|
48854
49151
|
if (output[_I] != null) {
|
|
@@ -48980,6 +49277,19 @@ var require_dist_cjs82 = __commonJS({
|
|
|
48980
49277
|
}
|
|
48981
49278
|
return contents;
|
|
48982
49279
|
}, "de_LoggingEnabled");
|
|
49280
|
+
var de_MetadataConfigurationResult = /* @__PURE__ */ __name((output, context) => {
|
|
49281
|
+
const contents = {};
|
|
49282
|
+
if (output[_DRes] != null) {
|
|
49283
|
+
contents[_DRes] = de_DestinationResult(output[_DRes], context);
|
|
49284
|
+
}
|
|
49285
|
+
if (output[_JTCR] != null) {
|
|
49286
|
+
contents[_JTCR] = de_JournalTableConfigurationResult(output[_JTCR], context);
|
|
49287
|
+
}
|
|
49288
|
+
if (output[_ITCR] != null) {
|
|
49289
|
+
contents[_ITCR] = de_InventoryTableConfigurationResult(output[_ITCR], context);
|
|
49290
|
+
}
|
|
49291
|
+
return contents;
|
|
49292
|
+
}, "de_MetadataConfigurationResult");
|
|
48983
49293
|
var de_MetadataTableConfigurationResult = /* @__PURE__ */ __name((output, context) => {
|
|
48984
49294
|
const contents = {};
|
|
48985
49295
|
if (output[_STDR] != null) {
|
|
@@ -49398,6 +49708,16 @@ var require_dist_cjs82 = __commonJS({
|
|
|
49398
49708
|
return de_QueueConfiguration(entry, context);
|
|
49399
49709
|
});
|
|
49400
49710
|
}, "de_QueueConfigurationList");
|
|
49711
|
+
var de_RecordExpiration = /* @__PURE__ */ __name((output, context) => {
|
|
49712
|
+
const contents = {};
|
|
49713
|
+
if (output[_Exp] != null) {
|
|
49714
|
+
contents[_Exp] = (0, import_smithy_client61.expectString)(output[_Exp]);
|
|
49715
|
+
}
|
|
49716
|
+
if (output[_Da] != null) {
|
|
49717
|
+
contents[_Da] = (0, import_smithy_client61.strictParseInt32)(output[_Da]);
|
|
49718
|
+
}
|
|
49719
|
+
return contents;
|
|
49720
|
+
}, "de_RecordExpiration");
|
|
49401
49721
|
var de_Redirect = /* @__PURE__ */ __name((output, context) => {
|
|
49402
49722
|
const contents = {};
|
|
49403
49723
|
if (output[_HN] != null) {
|
|
@@ -49529,8 +49849,8 @@ var require_dist_cjs82 = __commonJS({
|
|
|
49529
49849
|
if (output[_IRIP] != null) {
|
|
49530
49850
|
contents[_IRIP] = (0, import_smithy_client61.parseBoolean)(output[_IRIP]);
|
|
49531
49851
|
}
|
|
49532
|
-
if (output[
|
|
49533
|
-
contents[
|
|
49852
|
+
if (output[_REDe] != null) {
|
|
49853
|
+
contents[_REDe] = (0, import_smithy_client61.expectNonNull)((0, import_smithy_client61.parseRfc3339DateTimeWithOffset)(output[_REDe]));
|
|
49534
49854
|
}
|
|
49535
49855
|
return contents;
|
|
49536
49856
|
}, "de_RestoreStatus");
|
|
@@ -49885,6 +50205,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
49885
50205
|
var _CSVI = "CopySourceVersionId";
|
|
49886
50206
|
var _CSVIn = "CSVInput";
|
|
49887
50207
|
var _CSVO = "CSVOutput";
|
|
50208
|
+
var _CSo = "ConfigurationState";
|
|
49888
50209
|
var _CT = "ChecksumType";
|
|
49889
50210
|
var _CTl = "ClientToken";
|
|
49890
50211
|
var _CTo = "ContentType";
|
|
@@ -49910,6 +50231,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
49910
50231
|
var _DN = "DisplayName";
|
|
49911
50232
|
var _DR = "DataRedundancy";
|
|
49912
50233
|
var _DRe = "DefaultRetention";
|
|
50234
|
+
var _DRes = "DestinationResult";
|
|
49913
50235
|
var _Da = "Days";
|
|
49914
50236
|
var _Dat = "Date";
|
|
49915
50237
|
var _De = "Deleted";
|
|
@@ -49933,6 +50255,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
49933
50255
|
var _ES = "ExpiresString";
|
|
49934
50256
|
var _ESBO = "ExpectedSourceBucketOwner";
|
|
49935
50257
|
var _ESx = "ExpirationStatus";
|
|
50258
|
+
var _ESxp = "ExpirationState";
|
|
49936
50259
|
var _ET = "EncodingType";
|
|
49937
50260
|
var _ETa = "ETag";
|
|
49938
50261
|
var _ETn = "EncryptionType";
|
|
@@ -49973,6 +50296,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
49973
50296
|
var _I = "Id";
|
|
49974
50297
|
var _IC = "InventoryConfiguration";
|
|
49975
50298
|
var _ICL = "InventoryConfigurationList";
|
|
50299
|
+
var _ICS = "InventoryConfigurationState";
|
|
49976
50300
|
var _ID = "IndexDocument";
|
|
49977
50301
|
var _ID_ = "ID";
|
|
49978
50302
|
var _IDn = "InventoryDestination";
|
|
@@ -50003,6 +50327,9 @@ var require_dist_cjs82 = __commonJS({
|
|
|
50003
50327
|
var _ITAT = "IntelligentTieringAccessTier";
|
|
50004
50328
|
var _ITC = "IntelligentTieringConfiguration";
|
|
50005
50329
|
var _ITCL = "IntelligentTieringConfigurationList";
|
|
50330
|
+
var _ITCR = "InventoryTableConfigurationResult";
|
|
50331
|
+
var _ITCU = "InventoryTableConfigurationUpdates";
|
|
50332
|
+
var _ITCn = "InventoryTableConfiguration";
|
|
50006
50333
|
var _ITD = "IntelligentTieringDays";
|
|
50007
50334
|
var _ITF = "IntelligentTieringFilter";
|
|
50008
50335
|
var _ITI = "IntelligentTieringId";
|
|
@@ -50014,9 +50341,13 @@ var require_dist_cjs82 = __commonJS({
|
|
|
50014
50341
|
var _JSONI = "JSONInput";
|
|
50015
50342
|
var _JSONO = "JSONOutput";
|
|
50016
50343
|
var _JSONT = "JSONType";
|
|
50344
|
+
var _JTC = "JournalTableConfiguration";
|
|
50345
|
+
var _JTCR = "JournalTableConfigurationResult";
|
|
50346
|
+
var _JTCU = "JournalTableConfigurationUpdates";
|
|
50017
50347
|
var _K2 = "Key";
|
|
50018
50348
|
var _KC = "KeyCount";
|
|
50019
50349
|
var _KI = "KeyId";
|
|
50350
|
+
var _KKA = "KmsKeyArn";
|
|
50020
50351
|
var _KM = "KeyMarker";
|
|
50021
50352
|
var _KMSC = "KMSContext";
|
|
50022
50353
|
var _KMSKI = "KMSKeyId";
|
|
@@ -50044,6 +50375,8 @@ var require_dist_cjs82 = __commonJS({
|
|
|
50044
50375
|
var _MB = "MaxBuckets";
|
|
50045
50376
|
var _MC = "MetricsConfiguration";
|
|
50046
50377
|
var _MCL = "MetricsConfigurationList";
|
|
50378
|
+
var _MCR = "MetadataConfigurationResult";
|
|
50379
|
+
var _MCe = "MetadataConfiguration";
|
|
50047
50380
|
var _MD = "MetadataDirective";
|
|
50048
50381
|
var _MDB = "MaxDirectoryBuckets";
|
|
50049
50382
|
var _MDf = "MfaDelete";
|
|
@@ -50060,6 +50393,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
50060
50393
|
var _MS = "MetricsStatus";
|
|
50061
50394
|
var _MTC = "MetadataTableConfiguration";
|
|
50062
50395
|
var _MTCR = "MetadataTableConfigurationResult";
|
|
50396
|
+
var _MTEC = "MetadataTableEncryptionConfiguration";
|
|
50063
50397
|
var _MU = "MaxUploads";
|
|
50064
50398
|
var _MV = "MetadataValue";
|
|
50065
50399
|
var _Me = "Metrics";
|
|
@@ -50147,7 +50481,9 @@ var require_dist_cjs82 = __commonJS({
|
|
|
50147
50481
|
var _RCe = "ReplicationConfiguration";
|
|
50148
50482
|
var _RD = "RecordDelimiter";
|
|
50149
50483
|
var _RE = "ResponseExpires";
|
|
50150
|
-
var _RED = "
|
|
50484
|
+
var _RED = "RecordExpirationDays";
|
|
50485
|
+
var _REDe = "RestoreExpiryDate";
|
|
50486
|
+
var _REe = "RecordExpiration";
|
|
50151
50487
|
var _RKKID = "ReplicaKmsKeyID";
|
|
50152
50488
|
var _RKPW = "ReplaceKeyPrefixWith";
|
|
50153
50489
|
var _RKW = "ReplaceKeyWith";
|
|
@@ -50183,6 +50519,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
50183
50519
|
var _S = "Status";
|
|
50184
50520
|
var _SA = "StartAfter";
|
|
50185
50521
|
var _SAK2 = "SecretAccessKey";
|
|
50522
|
+
var _SAs = "SseAlgorithm";
|
|
50186
50523
|
var _SBD = "S3BucketDestination";
|
|
50187
50524
|
var _SC = "StorageClass";
|
|
50188
50525
|
var _SCA = "StorageClassAnalysis";
|
|
@@ -50235,6 +50572,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
50235
50572
|
var _TAa = "TableArn";
|
|
50236
50573
|
var _TB = "TargetBucket";
|
|
50237
50574
|
var _TBA = "TableBucketArn";
|
|
50575
|
+
var _TBT = "TableBucketType";
|
|
50238
50576
|
var _TC2 = "TagCount";
|
|
50239
50577
|
var _TCo = "TopicConfiguration";
|
|
50240
50578
|
var _TCop = "TopicConfigurations";
|
|
@@ -50248,7 +50586,9 @@ var require_dist_cjs82 = __commonJS({
|
|
|
50248
50586
|
var _TP = "TargetPrefix";
|
|
50249
50587
|
var _TPC = "TotalPartsCount";
|
|
50250
50588
|
var _TS = "TagSet";
|
|
50589
|
+
var _TSA = "TableSseAlgorithm";
|
|
50251
50590
|
var _TSC = "TransitionStorageClass";
|
|
50591
|
+
var _TSa = "TableStatus";
|
|
50252
50592
|
var _Ta = "Tag";
|
|
50253
50593
|
var _Tag = "Tags";
|
|
50254
50594
|
var _Ti = "Tier";
|
|
@@ -50316,6 +50656,9 @@ var require_dist_cjs82 = __commonJS({
|
|
|
50316
50656
|
var _log = "logging";
|
|
50317
50657
|
var _lt = "list-type";
|
|
50318
50658
|
var _m2 = "metrics";
|
|
50659
|
+
var _mC = "metadataConfiguration";
|
|
50660
|
+
var _mIT = "metadataInventoryTable";
|
|
50661
|
+
var _mJT = "metadataJournalTable";
|
|
50319
50662
|
var _mT = "metadataTable";
|
|
50320
50663
|
var _ma = "marker";
|
|
50321
50664
|
var _mb = "max-buckets";
|
|
@@ -50683,6 +51026,24 @@ var require_dist_cjs82 = __commonJS({
|
|
|
50683
51026
|
__name(this, "CreateBucketCommand");
|
|
50684
51027
|
}
|
|
50685
51028
|
};
|
|
51029
|
+
var CreateBucketMetadataConfigurationCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51030
|
+
...commonParams3,
|
|
51031
|
+
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
51032
|
+
Bucket: { type: "contextParams", name: "Bucket" }
|
|
51033
|
+
}).m(function(Command, cs, config, o3) {
|
|
51034
|
+
return [
|
|
51035
|
+
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51036
|
+
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51037
|
+
(0, import_middleware_flexible_checksums.getFlexibleChecksumsPlugin)(config, {
|
|
51038
|
+
requestAlgorithmMember: { httpHeader: "x-amz-sdk-checksum-algorithm", name: "ChecksumAlgorithm" },
|
|
51039
|
+
requestChecksumRequired: true
|
|
51040
|
+
})
|
|
51041
|
+
];
|
|
51042
|
+
}).s("AmazonS3", "CreateBucketMetadataConfiguration", {}).n("S3Client", "CreateBucketMetadataConfigurationCommand").f(void 0, void 0).ser(se_CreateBucketMetadataConfigurationCommand).de(de_CreateBucketMetadataConfigurationCommand).build() {
|
|
51043
|
+
static {
|
|
51044
|
+
__name(this, "CreateBucketMetadataConfigurationCommand");
|
|
51045
|
+
}
|
|
51046
|
+
};
|
|
50686
51047
|
var CreateBucketMetadataTableConfigurationCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
50687
51048
|
...commonParams3,
|
|
50688
51049
|
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
@@ -50816,6 +51177,20 @@ var require_dist_cjs82 = __commonJS({
|
|
|
50816
51177
|
__name(this, "DeleteBucketLifecycleCommand");
|
|
50817
51178
|
}
|
|
50818
51179
|
};
|
|
51180
|
+
var DeleteBucketMetadataConfigurationCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51181
|
+
...commonParams3,
|
|
51182
|
+
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
51183
|
+
Bucket: { type: "contextParams", name: "Bucket" }
|
|
51184
|
+
}).m(function(Command, cs, config, o3) {
|
|
51185
|
+
return [
|
|
51186
|
+
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51187
|
+
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
51188
|
+
];
|
|
51189
|
+
}).s("AmazonS3", "DeleteBucketMetadataConfiguration", {}).n("S3Client", "DeleteBucketMetadataConfigurationCommand").f(void 0, void 0).ser(se_DeleteBucketMetadataConfigurationCommand).de(de_DeleteBucketMetadataConfigurationCommand).build() {
|
|
51190
|
+
static {
|
|
51191
|
+
__name(this, "DeleteBucketMetadataConfigurationCommand");
|
|
51192
|
+
}
|
|
51193
|
+
};
|
|
50819
51194
|
var DeleteBucketMetadataTableConfigurationCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
50820
51195
|
...commonParams3,
|
|
50821
51196
|
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
@@ -51139,7 +51514,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51139
51514
|
}
|
|
51140
51515
|
};
|
|
51141
51516
|
var import_middleware_sdk_s321 = require_dist_cjs31();
|
|
51142
|
-
var
|
|
51517
|
+
var GetBucketMetadataConfigurationCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51143
51518
|
...commonParams3,
|
|
51144
51519
|
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
51145
51520
|
Bucket: { type: "contextParams", name: "Bucket" }
|
|
@@ -51149,12 +51524,28 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51149
51524
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51150
51525
|
(0, import_middleware_sdk_s321.getThrow200ExceptionsPlugin)(config)
|
|
51151
51526
|
];
|
|
51527
|
+
}).s("AmazonS3", "GetBucketMetadataConfiguration", {}).n("S3Client", "GetBucketMetadataConfigurationCommand").f(void 0, void 0).ser(se_GetBucketMetadataConfigurationCommand).de(de_GetBucketMetadataConfigurationCommand).build() {
|
|
51528
|
+
static {
|
|
51529
|
+
__name(this, "GetBucketMetadataConfigurationCommand");
|
|
51530
|
+
}
|
|
51531
|
+
};
|
|
51532
|
+
var import_middleware_sdk_s322 = require_dist_cjs31();
|
|
51533
|
+
var GetBucketMetadataTableConfigurationCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51534
|
+
...commonParams3,
|
|
51535
|
+
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
51536
|
+
Bucket: { type: "contextParams", name: "Bucket" }
|
|
51537
|
+
}).m(function(Command, cs, config, o3) {
|
|
51538
|
+
return [
|
|
51539
|
+
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51540
|
+
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51541
|
+
(0, import_middleware_sdk_s322.getThrow200ExceptionsPlugin)(config)
|
|
51542
|
+
];
|
|
51152
51543
|
}).s("AmazonS3", "GetBucketMetadataTableConfiguration", {}).n("S3Client", "GetBucketMetadataTableConfigurationCommand").f(void 0, void 0).ser(se_GetBucketMetadataTableConfigurationCommand).de(de_GetBucketMetadataTableConfigurationCommand).build() {
|
|
51153
51544
|
static {
|
|
51154
51545
|
__name(this, "GetBucketMetadataTableConfigurationCommand");
|
|
51155
51546
|
}
|
|
51156
51547
|
};
|
|
51157
|
-
var
|
|
51548
|
+
var import_middleware_sdk_s323 = require_dist_cjs31();
|
|
51158
51549
|
var GetBucketMetricsConfigurationCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51159
51550
|
...commonParams3,
|
|
51160
51551
|
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
@@ -51163,14 +51554,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51163
51554
|
return [
|
|
51164
51555
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51165
51556
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51166
|
-
(0,
|
|
51557
|
+
(0, import_middleware_sdk_s323.getThrow200ExceptionsPlugin)(config)
|
|
51167
51558
|
];
|
|
51168
51559
|
}).s("AmazonS3", "GetBucketMetricsConfiguration", {}).n("S3Client", "GetBucketMetricsConfigurationCommand").f(void 0, void 0).ser(se_GetBucketMetricsConfigurationCommand).de(de_GetBucketMetricsConfigurationCommand).build() {
|
|
51169
51560
|
static {
|
|
51170
51561
|
__name(this, "GetBucketMetricsConfigurationCommand");
|
|
51171
51562
|
}
|
|
51172
51563
|
};
|
|
51173
|
-
var
|
|
51564
|
+
var import_middleware_sdk_s324 = require_dist_cjs31();
|
|
51174
51565
|
var GetBucketNotificationConfigurationCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51175
51566
|
...commonParams3,
|
|
51176
51567
|
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
@@ -51179,14 +51570,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51179
51570
|
return [
|
|
51180
51571
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51181
51572
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51182
|
-
(0,
|
|
51573
|
+
(0, import_middleware_sdk_s324.getThrow200ExceptionsPlugin)(config)
|
|
51183
51574
|
];
|
|
51184
51575
|
}).s("AmazonS3", "GetBucketNotificationConfiguration", {}).n("S3Client", "GetBucketNotificationConfigurationCommand").f(void 0, void 0).ser(se_GetBucketNotificationConfigurationCommand).de(de_GetBucketNotificationConfigurationCommand).build() {
|
|
51185
51576
|
static {
|
|
51186
51577
|
__name(this, "GetBucketNotificationConfigurationCommand");
|
|
51187
51578
|
}
|
|
51188
51579
|
};
|
|
51189
|
-
var
|
|
51580
|
+
var import_middleware_sdk_s325 = require_dist_cjs31();
|
|
51190
51581
|
var GetBucketOwnershipControlsCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51191
51582
|
...commonParams3,
|
|
51192
51583
|
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
@@ -51195,14 +51586,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51195
51586
|
return [
|
|
51196
51587
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51197
51588
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51198
|
-
(0,
|
|
51589
|
+
(0, import_middleware_sdk_s325.getThrow200ExceptionsPlugin)(config)
|
|
51199
51590
|
];
|
|
51200
51591
|
}).s("AmazonS3", "GetBucketOwnershipControls", {}).n("S3Client", "GetBucketOwnershipControlsCommand").f(void 0, void 0).ser(se_GetBucketOwnershipControlsCommand).de(de_GetBucketOwnershipControlsCommand).build() {
|
|
51201
51592
|
static {
|
|
51202
51593
|
__name(this, "GetBucketOwnershipControlsCommand");
|
|
51203
51594
|
}
|
|
51204
51595
|
};
|
|
51205
|
-
var
|
|
51596
|
+
var import_middleware_sdk_s326 = require_dist_cjs31();
|
|
51206
51597
|
var GetBucketPolicyCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51207
51598
|
...commonParams3,
|
|
51208
51599
|
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
@@ -51211,14 +51602,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51211
51602
|
return [
|
|
51212
51603
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51213
51604
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51214
|
-
(0,
|
|
51605
|
+
(0, import_middleware_sdk_s326.getThrow200ExceptionsPlugin)(config)
|
|
51215
51606
|
];
|
|
51216
51607
|
}).s("AmazonS3", "GetBucketPolicy", {}).n("S3Client", "GetBucketPolicyCommand").f(void 0, void 0).ser(se_GetBucketPolicyCommand).de(de_GetBucketPolicyCommand).build() {
|
|
51217
51608
|
static {
|
|
51218
51609
|
__name(this, "GetBucketPolicyCommand");
|
|
51219
51610
|
}
|
|
51220
51611
|
};
|
|
51221
|
-
var
|
|
51612
|
+
var import_middleware_sdk_s327 = require_dist_cjs31();
|
|
51222
51613
|
var GetBucketPolicyStatusCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51223
51614
|
...commonParams3,
|
|
51224
51615
|
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
@@ -51227,14 +51618,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51227
51618
|
return [
|
|
51228
51619
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51229
51620
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51230
|
-
(0,
|
|
51621
|
+
(0, import_middleware_sdk_s327.getThrow200ExceptionsPlugin)(config)
|
|
51231
51622
|
];
|
|
51232
51623
|
}).s("AmazonS3", "GetBucketPolicyStatus", {}).n("S3Client", "GetBucketPolicyStatusCommand").f(void 0, void 0).ser(se_GetBucketPolicyStatusCommand).de(de_GetBucketPolicyStatusCommand).build() {
|
|
51233
51624
|
static {
|
|
51234
51625
|
__name(this, "GetBucketPolicyStatusCommand");
|
|
51235
51626
|
}
|
|
51236
51627
|
};
|
|
51237
|
-
var
|
|
51628
|
+
var import_middleware_sdk_s328 = require_dist_cjs31();
|
|
51238
51629
|
var GetBucketReplicationCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51239
51630
|
...commonParams3,
|
|
51240
51631
|
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
@@ -51243,14 +51634,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51243
51634
|
return [
|
|
51244
51635
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51245
51636
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51246
|
-
(0,
|
|
51637
|
+
(0, import_middleware_sdk_s328.getThrow200ExceptionsPlugin)(config)
|
|
51247
51638
|
];
|
|
51248
51639
|
}).s("AmazonS3", "GetBucketReplication", {}).n("S3Client", "GetBucketReplicationCommand").f(void 0, void 0).ser(se_GetBucketReplicationCommand).de(de_GetBucketReplicationCommand).build() {
|
|
51249
51640
|
static {
|
|
51250
51641
|
__name(this, "GetBucketReplicationCommand");
|
|
51251
51642
|
}
|
|
51252
51643
|
};
|
|
51253
|
-
var
|
|
51644
|
+
var import_middleware_sdk_s329 = require_dist_cjs31();
|
|
51254
51645
|
var GetBucketRequestPaymentCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51255
51646
|
...commonParams3,
|
|
51256
51647
|
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
@@ -51259,14 +51650,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51259
51650
|
return [
|
|
51260
51651
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51261
51652
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51262
|
-
(0,
|
|
51653
|
+
(0, import_middleware_sdk_s329.getThrow200ExceptionsPlugin)(config)
|
|
51263
51654
|
];
|
|
51264
51655
|
}).s("AmazonS3", "GetBucketRequestPayment", {}).n("S3Client", "GetBucketRequestPaymentCommand").f(void 0, void 0).ser(se_GetBucketRequestPaymentCommand).de(de_GetBucketRequestPaymentCommand).build() {
|
|
51265
51656
|
static {
|
|
51266
51657
|
__name(this, "GetBucketRequestPaymentCommand");
|
|
51267
51658
|
}
|
|
51268
51659
|
};
|
|
51269
|
-
var
|
|
51660
|
+
var import_middleware_sdk_s330 = require_dist_cjs31();
|
|
51270
51661
|
var GetBucketTaggingCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51271
51662
|
...commonParams3,
|
|
51272
51663
|
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
@@ -51275,14 +51666,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51275
51666
|
return [
|
|
51276
51667
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51277
51668
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51278
|
-
(0,
|
|
51669
|
+
(0, import_middleware_sdk_s330.getThrow200ExceptionsPlugin)(config)
|
|
51279
51670
|
];
|
|
51280
51671
|
}).s("AmazonS3", "GetBucketTagging", {}).n("S3Client", "GetBucketTaggingCommand").f(void 0, void 0).ser(se_GetBucketTaggingCommand).de(de_GetBucketTaggingCommand).build() {
|
|
51281
51672
|
static {
|
|
51282
51673
|
__name(this, "GetBucketTaggingCommand");
|
|
51283
51674
|
}
|
|
51284
51675
|
};
|
|
51285
|
-
var
|
|
51676
|
+
var import_middleware_sdk_s331 = require_dist_cjs31();
|
|
51286
51677
|
var GetBucketVersioningCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51287
51678
|
...commonParams3,
|
|
51288
51679
|
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
@@ -51291,14 +51682,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51291
51682
|
return [
|
|
51292
51683
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51293
51684
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51294
|
-
(0,
|
|
51685
|
+
(0, import_middleware_sdk_s331.getThrow200ExceptionsPlugin)(config)
|
|
51295
51686
|
];
|
|
51296
51687
|
}).s("AmazonS3", "GetBucketVersioning", {}).n("S3Client", "GetBucketVersioningCommand").f(void 0, void 0).ser(se_GetBucketVersioningCommand).de(de_GetBucketVersioningCommand).build() {
|
|
51297
51688
|
static {
|
|
51298
51689
|
__name(this, "GetBucketVersioningCommand");
|
|
51299
51690
|
}
|
|
51300
51691
|
};
|
|
51301
|
-
var
|
|
51692
|
+
var import_middleware_sdk_s332 = require_dist_cjs31();
|
|
51302
51693
|
var GetBucketWebsiteCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51303
51694
|
...commonParams3,
|
|
51304
51695
|
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
@@ -51307,14 +51698,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51307
51698
|
return [
|
|
51308
51699
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51309
51700
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51310
|
-
(0,
|
|
51701
|
+
(0, import_middleware_sdk_s332.getThrow200ExceptionsPlugin)(config)
|
|
51311
51702
|
];
|
|
51312
51703
|
}).s("AmazonS3", "GetBucketWebsite", {}).n("S3Client", "GetBucketWebsiteCommand").f(void 0, void 0).ser(se_GetBucketWebsiteCommand).de(de_GetBucketWebsiteCommand).build() {
|
|
51313
51704
|
static {
|
|
51314
51705
|
__name(this, "GetBucketWebsiteCommand");
|
|
51315
51706
|
}
|
|
51316
51707
|
};
|
|
51317
|
-
var
|
|
51708
|
+
var import_middleware_sdk_s333 = require_dist_cjs31();
|
|
51318
51709
|
var GetObjectAclCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51319
51710
|
...commonParams3,
|
|
51320
51711
|
Bucket: { type: "contextParams", name: "Bucket" },
|
|
@@ -51323,14 +51714,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51323
51714
|
return [
|
|
51324
51715
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51325
51716
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51326
|
-
(0,
|
|
51717
|
+
(0, import_middleware_sdk_s333.getThrow200ExceptionsPlugin)(config)
|
|
51327
51718
|
];
|
|
51328
51719
|
}).s("AmazonS3", "GetObjectAcl", {}).n("S3Client", "GetObjectAclCommand").f(void 0, void 0).ser(se_GetObjectAclCommand).de(de_GetObjectAclCommand).build() {
|
|
51329
51720
|
static {
|
|
51330
51721
|
__name(this, "GetObjectAclCommand");
|
|
51331
51722
|
}
|
|
51332
51723
|
};
|
|
51333
|
-
var
|
|
51724
|
+
var import_middleware_sdk_s334 = require_dist_cjs31();
|
|
51334
51725
|
var GetObjectAttributesCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51335
51726
|
...commonParams3,
|
|
51336
51727
|
Bucket: { type: "contextParams", name: "Bucket" }
|
|
@@ -51338,7 +51729,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51338
51729
|
return [
|
|
51339
51730
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51340
51731
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51341
|
-
(0,
|
|
51732
|
+
(0, import_middleware_sdk_s334.getThrow200ExceptionsPlugin)(config),
|
|
51342
51733
|
(0, import_middleware_ssec.getSsecPlugin)(config)
|
|
51343
51734
|
];
|
|
51344
51735
|
}).s("AmazonS3", "GetObjectAttributes", {}).n("S3Client", "GetObjectAttributesCommand").f(GetObjectAttributesRequestFilterSensitiveLog, void 0).ser(se_GetObjectAttributesCommand).de(de_GetObjectAttributesCommand).build() {
|
|
@@ -51346,7 +51737,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51346
51737
|
__name(this, "GetObjectAttributesCommand");
|
|
51347
51738
|
}
|
|
51348
51739
|
};
|
|
51349
|
-
var
|
|
51740
|
+
var import_middleware_sdk_s335 = require_dist_cjs31();
|
|
51350
51741
|
var GetObjectCommand2 = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51351
51742
|
...commonParams3,
|
|
51352
51743
|
Bucket: { type: "contextParams", name: "Bucket" },
|
|
@@ -51361,14 +51752,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51361
51752
|
responseAlgorithms: ["CRC64NVME", "CRC32", "CRC32C", "SHA256", "SHA1"]
|
|
51362
51753
|
}),
|
|
51363
51754
|
(0, import_middleware_ssec.getSsecPlugin)(config),
|
|
51364
|
-
(0,
|
|
51755
|
+
(0, import_middleware_sdk_s335.getS3ExpiresMiddlewarePlugin)(config)
|
|
51365
51756
|
];
|
|
51366
51757
|
}).s("AmazonS3", "GetObject", {}).n("S3Client", "GetObjectCommand").f(GetObjectRequestFilterSensitiveLog, GetObjectOutputFilterSensitiveLog).ser(se_GetObjectCommand).de(de_GetObjectCommand).build() {
|
|
51367
51758
|
static {
|
|
51368
51759
|
__name(this, "GetObjectCommand");
|
|
51369
51760
|
}
|
|
51370
51761
|
};
|
|
51371
|
-
var
|
|
51762
|
+
var import_middleware_sdk_s336 = require_dist_cjs31();
|
|
51372
51763
|
var GetObjectLegalHoldCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51373
51764
|
...commonParams3,
|
|
51374
51765
|
Bucket: { type: "contextParams", name: "Bucket" }
|
|
@@ -51376,14 +51767,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51376
51767
|
return [
|
|
51377
51768
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51378
51769
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51379
|
-
(0,
|
|
51770
|
+
(0, import_middleware_sdk_s336.getThrow200ExceptionsPlugin)(config)
|
|
51380
51771
|
];
|
|
51381
51772
|
}).s("AmazonS3", "GetObjectLegalHold", {}).n("S3Client", "GetObjectLegalHoldCommand").f(void 0, void 0).ser(se_GetObjectLegalHoldCommand).de(de_GetObjectLegalHoldCommand).build() {
|
|
51382
51773
|
static {
|
|
51383
51774
|
__name(this, "GetObjectLegalHoldCommand");
|
|
51384
51775
|
}
|
|
51385
51776
|
};
|
|
51386
|
-
var
|
|
51777
|
+
var import_middleware_sdk_s337 = require_dist_cjs31();
|
|
51387
51778
|
var GetObjectLockConfigurationCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51388
51779
|
...commonParams3,
|
|
51389
51780
|
Bucket: { type: "contextParams", name: "Bucket" }
|
|
@@ -51391,14 +51782,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51391
51782
|
return [
|
|
51392
51783
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51393
51784
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51394
|
-
(0,
|
|
51785
|
+
(0, import_middleware_sdk_s337.getThrow200ExceptionsPlugin)(config)
|
|
51395
51786
|
];
|
|
51396
51787
|
}).s("AmazonS3", "GetObjectLockConfiguration", {}).n("S3Client", "GetObjectLockConfigurationCommand").f(void 0, void 0).ser(se_GetObjectLockConfigurationCommand).de(de_GetObjectLockConfigurationCommand).build() {
|
|
51397
51788
|
static {
|
|
51398
51789
|
__name(this, "GetObjectLockConfigurationCommand");
|
|
51399
51790
|
}
|
|
51400
51791
|
};
|
|
51401
|
-
var
|
|
51792
|
+
var import_middleware_sdk_s338 = require_dist_cjs31();
|
|
51402
51793
|
var GetObjectRetentionCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51403
51794
|
...commonParams3,
|
|
51404
51795
|
Bucket: { type: "contextParams", name: "Bucket" }
|
|
@@ -51406,14 +51797,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51406
51797
|
return [
|
|
51407
51798
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51408
51799
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51409
|
-
(0,
|
|
51800
|
+
(0, import_middleware_sdk_s338.getThrow200ExceptionsPlugin)(config)
|
|
51410
51801
|
];
|
|
51411
51802
|
}).s("AmazonS3", "GetObjectRetention", {}).n("S3Client", "GetObjectRetentionCommand").f(void 0, void 0).ser(se_GetObjectRetentionCommand).de(de_GetObjectRetentionCommand).build() {
|
|
51412
51803
|
static {
|
|
51413
51804
|
__name(this, "GetObjectRetentionCommand");
|
|
51414
51805
|
}
|
|
51415
51806
|
};
|
|
51416
|
-
var
|
|
51807
|
+
var import_middleware_sdk_s339 = require_dist_cjs31();
|
|
51417
51808
|
var GetObjectTaggingCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51418
51809
|
...commonParams3,
|
|
51419
51810
|
Bucket: { type: "contextParams", name: "Bucket" }
|
|
@@ -51421,7 +51812,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51421
51812
|
return [
|
|
51422
51813
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51423
51814
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51424
|
-
(0,
|
|
51815
|
+
(0, import_middleware_sdk_s339.getThrow200ExceptionsPlugin)(config)
|
|
51425
51816
|
];
|
|
51426
51817
|
}).s("AmazonS3", "GetObjectTagging", {}).n("S3Client", "GetObjectTaggingCommand").f(void 0, void 0).ser(se_GetObjectTaggingCommand).de(de_GetObjectTaggingCommand).build() {
|
|
51427
51818
|
static {
|
|
@@ -51441,7 +51832,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51441
51832
|
__name(this, "GetObjectTorrentCommand");
|
|
51442
51833
|
}
|
|
51443
51834
|
};
|
|
51444
|
-
var
|
|
51835
|
+
var import_middleware_sdk_s340 = require_dist_cjs31();
|
|
51445
51836
|
var GetPublicAccessBlockCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51446
51837
|
...commonParams3,
|
|
51447
51838
|
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
@@ -51450,14 +51841,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51450
51841
|
return [
|
|
51451
51842
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51452
51843
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51453
|
-
(0,
|
|
51844
|
+
(0, import_middleware_sdk_s340.getThrow200ExceptionsPlugin)(config)
|
|
51454
51845
|
];
|
|
51455
51846
|
}).s("AmazonS3", "GetPublicAccessBlock", {}).n("S3Client", "GetPublicAccessBlockCommand").f(void 0, void 0).ser(se_GetPublicAccessBlockCommand).de(de_GetPublicAccessBlockCommand).build() {
|
|
51456
51847
|
static {
|
|
51457
51848
|
__name(this, "GetPublicAccessBlockCommand");
|
|
51458
51849
|
}
|
|
51459
51850
|
};
|
|
51460
|
-
var
|
|
51851
|
+
var import_middleware_sdk_s341 = require_dist_cjs31();
|
|
51461
51852
|
var HeadBucketCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51462
51853
|
...commonParams3,
|
|
51463
51854
|
Bucket: { type: "contextParams", name: "Bucket" }
|
|
@@ -51465,14 +51856,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51465
51856
|
return [
|
|
51466
51857
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51467
51858
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51468
|
-
(0,
|
|
51859
|
+
(0, import_middleware_sdk_s341.getThrow200ExceptionsPlugin)(config)
|
|
51469
51860
|
];
|
|
51470
51861
|
}).s("AmazonS3", "HeadBucket", {}).n("S3Client", "HeadBucketCommand").f(void 0, void 0).ser(se_HeadBucketCommand).de(de_HeadBucketCommand).build() {
|
|
51471
51862
|
static {
|
|
51472
51863
|
__name(this, "HeadBucketCommand");
|
|
51473
51864
|
}
|
|
51474
51865
|
};
|
|
51475
|
-
var
|
|
51866
|
+
var import_middleware_sdk_s342 = require_dist_cjs31();
|
|
51476
51867
|
var HeadObjectCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51477
51868
|
...commonParams3,
|
|
51478
51869
|
Bucket: { type: "contextParams", name: "Bucket" },
|
|
@@ -51481,16 +51872,16 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51481
51872
|
return [
|
|
51482
51873
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51483
51874
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51484
|
-
(0,
|
|
51875
|
+
(0, import_middleware_sdk_s342.getThrow200ExceptionsPlugin)(config),
|
|
51485
51876
|
(0, import_middleware_ssec.getSsecPlugin)(config),
|
|
51486
|
-
(0,
|
|
51877
|
+
(0, import_middleware_sdk_s342.getS3ExpiresMiddlewarePlugin)(config)
|
|
51487
51878
|
];
|
|
51488
51879
|
}).s("AmazonS3", "HeadObject", {}).n("S3Client", "HeadObjectCommand").f(HeadObjectRequestFilterSensitiveLog, HeadObjectOutputFilterSensitiveLog).ser(se_HeadObjectCommand).de(de_HeadObjectCommand).build() {
|
|
51489
51880
|
static {
|
|
51490
51881
|
__name(this, "HeadObjectCommand");
|
|
51491
51882
|
}
|
|
51492
51883
|
};
|
|
51493
|
-
var
|
|
51884
|
+
var import_middleware_sdk_s343 = require_dist_cjs31();
|
|
51494
51885
|
var ListBucketAnalyticsConfigurationsCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51495
51886
|
...commonParams3,
|
|
51496
51887
|
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
@@ -51499,14 +51890,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51499
51890
|
return [
|
|
51500
51891
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51501
51892
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51502
|
-
(0,
|
|
51893
|
+
(0, import_middleware_sdk_s343.getThrow200ExceptionsPlugin)(config)
|
|
51503
51894
|
];
|
|
51504
51895
|
}).s("AmazonS3", "ListBucketAnalyticsConfigurations", {}).n("S3Client", "ListBucketAnalyticsConfigurationsCommand").f(void 0, void 0).ser(se_ListBucketAnalyticsConfigurationsCommand).de(de_ListBucketAnalyticsConfigurationsCommand).build() {
|
|
51505
51896
|
static {
|
|
51506
51897
|
__name(this, "ListBucketAnalyticsConfigurationsCommand");
|
|
51507
51898
|
}
|
|
51508
51899
|
};
|
|
51509
|
-
var
|
|
51900
|
+
var import_middleware_sdk_s344 = require_dist_cjs31();
|
|
51510
51901
|
var ListBucketIntelligentTieringConfigurationsCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51511
51902
|
...commonParams3,
|
|
51512
51903
|
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
@@ -51515,14 +51906,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51515
51906
|
return [
|
|
51516
51907
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51517
51908
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51518
|
-
(0,
|
|
51909
|
+
(0, import_middleware_sdk_s344.getThrow200ExceptionsPlugin)(config)
|
|
51519
51910
|
];
|
|
51520
51911
|
}).s("AmazonS3", "ListBucketIntelligentTieringConfigurations", {}).n("S3Client", "ListBucketIntelligentTieringConfigurationsCommand").f(void 0, void 0).ser(se_ListBucketIntelligentTieringConfigurationsCommand).de(de_ListBucketIntelligentTieringConfigurationsCommand).build() {
|
|
51521
51912
|
static {
|
|
51522
51913
|
__name(this, "ListBucketIntelligentTieringConfigurationsCommand");
|
|
51523
51914
|
}
|
|
51524
51915
|
};
|
|
51525
|
-
var
|
|
51916
|
+
var import_middleware_sdk_s345 = require_dist_cjs31();
|
|
51526
51917
|
var ListBucketInventoryConfigurationsCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51527
51918
|
...commonParams3,
|
|
51528
51919
|
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
@@ -51531,14 +51922,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51531
51922
|
return [
|
|
51532
51923
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51533
51924
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51534
|
-
(0,
|
|
51925
|
+
(0, import_middleware_sdk_s345.getThrow200ExceptionsPlugin)(config)
|
|
51535
51926
|
];
|
|
51536
51927
|
}).s("AmazonS3", "ListBucketInventoryConfigurations", {}).n("S3Client", "ListBucketInventoryConfigurationsCommand").f(void 0, ListBucketInventoryConfigurationsOutputFilterSensitiveLog).ser(se_ListBucketInventoryConfigurationsCommand).de(de_ListBucketInventoryConfigurationsCommand).build() {
|
|
51537
51928
|
static {
|
|
51538
51929
|
__name(this, "ListBucketInventoryConfigurationsCommand");
|
|
51539
51930
|
}
|
|
51540
51931
|
};
|
|
51541
|
-
var
|
|
51932
|
+
var import_middleware_sdk_s346 = require_dist_cjs31();
|
|
51542
51933
|
var ListBucketMetricsConfigurationsCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51543
51934
|
...commonParams3,
|
|
51544
51935
|
Bucket: { type: "contextParams", name: "Bucket" }
|
|
@@ -51546,26 +51937,26 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51546
51937
|
return [
|
|
51547
51938
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51548
51939
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51549
|
-
(0,
|
|
51940
|
+
(0, import_middleware_sdk_s346.getThrow200ExceptionsPlugin)(config)
|
|
51550
51941
|
];
|
|
51551
51942
|
}).s("AmazonS3", "ListBucketMetricsConfigurations", {}).n("S3Client", "ListBucketMetricsConfigurationsCommand").f(void 0, void 0).ser(se_ListBucketMetricsConfigurationsCommand).de(de_ListBucketMetricsConfigurationsCommand).build() {
|
|
51552
51943
|
static {
|
|
51553
51944
|
__name(this, "ListBucketMetricsConfigurationsCommand");
|
|
51554
51945
|
}
|
|
51555
51946
|
};
|
|
51556
|
-
var
|
|
51947
|
+
var import_middleware_sdk_s347 = require_dist_cjs31();
|
|
51557
51948
|
var ListBucketsCommand = class extends import_smithy_client61.Command.classBuilder().ep(commonParams3).m(function(Command, cs, config, o3) {
|
|
51558
51949
|
return [
|
|
51559
51950
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51560
51951
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51561
|
-
(0,
|
|
51952
|
+
(0, import_middleware_sdk_s347.getThrow200ExceptionsPlugin)(config)
|
|
51562
51953
|
];
|
|
51563
51954
|
}).s("AmazonS3", "ListBuckets", {}).n("S3Client", "ListBucketsCommand").f(void 0, void 0).ser(se_ListBucketsCommand).de(de_ListBucketsCommand).build() {
|
|
51564
51955
|
static {
|
|
51565
51956
|
__name(this, "ListBucketsCommand");
|
|
51566
51957
|
}
|
|
51567
51958
|
};
|
|
51568
|
-
var
|
|
51959
|
+
var import_middleware_sdk_s348 = require_dist_cjs31();
|
|
51569
51960
|
var ListDirectoryBucketsCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51570
51961
|
...commonParams3,
|
|
51571
51962
|
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true }
|
|
@@ -51573,14 +51964,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51573
51964
|
return [
|
|
51574
51965
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51575
51966
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51576
|
-
(0,
|
|
51967
|
+
(0, import_middleware_sdk_s348.getThrow200ExceptionsPlugin)(config)
|
|
51577
51968
|
];
|
|
51578
51969
|
}).s("AmazonS3", "ListDirectoryBuckets", {}).n("S3Client", "ListDirectoryBucketsCommand").f(void 0, void 0).ser(se_ListDirectoryBucketsCommand).de(de_ListDirectoryBucketsCommand).build() {
|
|
51579
51970
|
static {
|
|
51580
51971
|
__name(this, "ListDirectoryBucketsCommand");
|
|
51581
51972
|
}
|
|
51582
51973
|
};
|
|
51583
|
-
var
|
|
51974
|
+
var import_middleware_sdk_s349 = require_dist_cjs31();
|
|
51584
51975
|
var ListMultipartUploadsCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51585
51976
|
...commonParams3,
|
|
51586
51977
|
Bucket: { type: "contextParams", name: "Bucket" },
|
|
@@ -51589,14 +51980,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51589
51980
|
return [
|
|
51590
51981
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51591
51982
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51592
|
-
(0,
|
|
51983
|
+
(0, import_middleware_sdk_s349.getThrow200ExceptionsPlugin)(config)
|
|
51593
51984
|
];
|
|
51594
51985
|
}).s("AmazonS3", "ListMultipartUploads", {}).n("S3Client", "ListMultipartUploadsCommand").f(void 0, void 0).ser(se_ListMultipartUploadsCommand).de(de_ListMultipartUploadsCommand).build() {
|
|
51595
51986
|
static {
|
|
51596
51987
|
__name(this, "ListMultipartUploadsCommand");
|
|
51597
51988
|
}
|
|
51598
51989
|
};
|
|
51599
|
-
var
|
|
51990
|
+
var import_middleware_sdk_s350 = require_dist_cjs31();
|
|
51600
51991
|
var ListObjectsCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51601
51992
|
...commonParams3,
|
|
51602
51993
|
Bucket: { type: "contextParams", name: "Bucket" },
|
|
@@ -51605,14 +51996,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51605
51996
|
return [
|
|
51606
51997
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51607
51998
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51608
|
-
(0,
|
|
51999
|
+
(0, import_middleware_sdk_s350.getThrow200ExceptionsPlugin)(config)
|
|
51609
52000
|
];
|
|
51610
52001
|
}).s("AmazonS3", "ListObjects", {}).n("S3Client", "ListObjectsCommand").f(void 0, void 0).ser(se_ListObjectsCommand).de(de_ListObjectsCommand).build() {
|
|
51611
52002
|
static {
|
|
51612
52003
|
__name(this, "ListObjectsCommand");
|
|
51613
52004
|
}
|
|
51614
52005
|
};
|
|
51615
|
-
var
|
|
52006
|
+
var import_middleware_sdk_s351 = require_dist_cjs31();
|
|
51616
52007
|
var ListObjectsV2Command = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51617
52008
|
...commonParams3,
|
|
51618
52009
|
Bucket: { type: "contextParams", name: "Bucket" },
|
|
@@ -51621,14 +52012,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51621
52012
|
return [
|
|
51622
52013
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51623
52014
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51624
|
-
(0,
|
|
52015
|
+
(0, import_middleware_sdk_s351.getThrow200ExceptionsPlugin)(config)
|
|
51625
52016
|
];
|
|
51626
52017
|
}).s("AmazonS3", "ListObjectsV2", {}).n("S3Client", "ListObjectsV2Command").f(void 0, void 0).ser(se_ListObjectsV2Command).de(de_ListObjectsV2Command).build() {
|
|
51627
52018
|
static {
|
|
51628
52019
|
__name(this, "ListObjectsV2Command");
|
|
51629
52020
|
}
|
|
51630
52021
|
};
|
|
51631
|
-
var
|
|
52022
|
+
var import_middleware_sdk_s352 = require_dist_cjs31();
|
|
51632
52023
|
var ListObjectVersionsCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51633
52024
|
...commonParams3,
|
|
51634
52025
|
Bucket: { type: "contextParams", name: "Bucket" },
|
|
@@ -51637,14 +52028,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51637
52028
|
return [
|
|
51638
52029
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51639
52030
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51640
|
-
(0,
|
|
52031
|
+
(0, import_middleware_sdk_s352.getThrow200ExceptionsPlugin)(config)
|
|
51641
52032
|
];
|
|
51642
52033
|
}).s("AmazonS3", "ListObjectVersions", {}).n("S3Client", "ListObjectVersionsCommand").f(void 0, void 0).ser(se_ListObjectVersionsCommand).de(de_ListObjectVersionsCommand).build() {
|
|
51643
52034
|
static {
|
|
51644
52035
|
__name(this, "ListObjectVersionsCommand");
|
|
51645
52036
|
}
|
|
51646
52037
|
};
|
|
51647
|
-
var
|
|
52038
|
+
var import_middleware_sdk_s353 = require_dist_cjs31();
|
|
51648
52039
|
var ListPartsCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51649
52040
|
...commonParams3,
|
|
51650
52041
|
Bucket: { type: "contextParams", name: "Bucket" },
|
|
@@ -51653,7 +52044,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51653
52044
|
return [
|
|
51654
52045
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
51655
52046
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
51656
|
-
(0,
|
|
52047
|
+
(0, import_middleware_sdk_s353.getThrow200ExceptionsPlugin)(config),
|
|
51657
52048
|
(0, import_middleware_ssec.getSsecPlugin)(config)
|
|
51658
52049
|
];
|
|
51659
52050
|
}).s("AmazonS3", "ListParts", {}).n("S3Client", "ListPartsCommand").f(ListPartsRequestFilterSensitiveLog, void 0).ser(se_ListPartsCommand).de(de_ListPartsCommand).build() {
|
|
@@ -51775,7 +52166,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51775
52166
|
__name(this, "PutBucketInventoryConfigurationCommand");
|
|
51776
52167
|
}
|
|
51777
52168
|
};
|
|
51778
|
-
var
|
|
52169
|
+
var import_middleware_sdk_s354 = require_dist_cjs31();
|
|
51779
52170
|
var PutBucketLifecycleConfigurationCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51780
52171
|
...commonParams3,
|
|
51781
52172
|
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
@@ -51788,7 +52179,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51788
52179
|
requestAlgorithmMember: { httpHeader: "x-amz-sdk-checksum-algorithm", name: "ChecksumAlgorithm" },
|
|
51789
52180
|
requestChecksumRequired: true
|
|
51790
52181
|
}),
|
|
51791
|
-
(0,
|
|
52182
|
+
(0, import_middleware_sdk_s354.getThrow200ExceptionsPlugin)(config)
|
|
51792
52183
|
];
|
|
51793
52184
|
}).s("AmazonS3", "PutBucketLifecycleConfiguration", {}).n("S3Client", "PutBucketLifecycleConfigurationCommand").f(void 0, void 0).ser(se_PutBucketLifecycleConfigurationCommand).de(de_PutBucketLifecycleConfigurationCommand).build() {
|
|
51794
52185
|
static {
|
|
@@ -51967,7 +52358,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51967
52358
|
__name(this, "PutBucketWebsiteCommand");
|
|
51968
52359
|
}
|
|
51969
52360
|
};
|
|
51970
|
-
var
|
|
52361
|
+
var import_middleware_sdk_s355 = require_dist_cjs31();
|
|
51971
52362
|
var PutObjectAclCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51972
52363
|
...commonParams3,
|
|
51973
52364
|
Bucket: { type: "contextParams", name: "Bucket" },
|
|
@@ -51980,14 +52371,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
51980
52371
|
requestAlgorithmMember: { httpHeader: "x-amz-sdk-checksum-algorithm", name: "ChecksumAlgorithm" },
|
|
51981
52372
|
requestChecksumRequired: true
|
|
51982
52373
|
}),
|
|
51983
|
-
(0,
|
|
52374
|
+
(0, import_middleware_sdk_s355.getThrow200ExceptionsPlugin)(config)
|
|
51984
52375
|
];
|
|
51985
52376
|
}).s("AmazonS3", "PutObjectAcl", {}).n("S3Client", "PutObjectAclCommand").f(void 0, void 0).ser(se_PutObjectAclCommand).de(de_PutObjectAclCommand).build() {
|
|
51986
52377
|
static {
|
|
51987
52378
|
__name(this, "PutObjectAclCommand");
|
|
51988
52379
|
}
|
|
51989
52380
|
};
|
|
51990
|
-
var
|
|
52381
|
+
var import_middleware_sdk_s356 = require_dist_cjs31();
|
|
51991
52382
|
var PutObjectCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
51992
52383
|
...commonParams3,
|
|
51993
52384
|
Bucket: { type: "contextParams", name: "Bucket" },
|
|
@@ -52000,8 +52391,8 @@ var require_dist_cjs82 = __commonJS({
|
|
|
52000
52391
|
requestAlgorithmMember: { httpHeader: "x-amz-sdk-checksum-algorithm", name: "ChecksumAlgorithm" },
|
|
52001
52392
|
requestChecksumRequired: false
|
|
52002
52393
|
}),
|
|
52003
|
-
(0,
|
|
52004
|
-
(0,
|
|
52394
|
+
(0, import_middleware_sdk_s356.getCheckContentLengthHeaderPlugin)(config),
|
|
52395
|
+
(0, import_middleware_sdk_s356.getThrow200ExceptionsPlugin)(config),
|
|
52005
52396
|
(0, import_middleware_ssec.getSsecPlugin)(config)
|
|
52006
52397
|
];
|
|
52007
52398
|
}).s("AmazonS3", "PutObject", {}).n("S3Client", "PutObjectCommand").f(PutObjectRequestFilterSensitiveLog, PutObjectOutputFilterSensitiveLog).ser(se_PutObjectCommand).de(de_PutObjectCommand).build() {
|
|
@@ -52009,7 +52400,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
52009
52400
|
__name(this, "PutObjectCommand");
|
|
52010
52401
|
}
|
|
52011
52402
|
};
|
|
52012
|
-
var
|
|
52403
|
+
var import_middleware_sdk_s357 = require_dist_cjs31();
|
|
52013
52404
|
var PutObjectLegalHoldCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
52014
52405
|
...commonParams3,
|
|
52015
52406
|
Bucket: { type: "contextParams", name: "Bucket" }
|
|
@@ -52021,14 +52412,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
52021
52412
|
requestAlgorithmMember: { httpHeader: "x-amz-sdk-checksum-algorithm", name: "ChecksumAlgorithm" },
|
|
52022
52413
|
requestChecksumRequired: true
|
|
52023
52414
|
}),
|
|
52024
|
-
(0,
|
|
52415
|
+
(0, import_middleware_sdk_s357.getThrow200ExceptionsPlugin)(config)
|
|
52025
52416
|
];
|
|
52026
52417
|
}).s("AmazonS3", "PutObjectLegalHold", {}).n("S3Client", "PutObjectLegalHoldCommand").f(void 0, void 0).ser(se_PutObjectLegalHoldCommand).de(de_PutObjectLegalHoldCommand).build() {
|
|
52027
52418
|
static {
|
|
52028
52419
|
__name(this, "PutObjectLegalHoldCommand");
|
|
52029
52420
|
}
|
|
52030
52421
|
};
|
|
52031
|
-
var
|
|
52422
|
+
var import_middleware_sdk_s358 = require_dist_cjs31();
|
|
52032
52423
|
var PutObjectLockConfigurationCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
52033
52424
|
...commonParams3,
|
|
52034
52425
|
Bucket: { type: "contextParams", name: "Bucket" }
|
|
@@ -52040,14 +52431,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
52040
52431
|
requestAlgorithmMember: { httpHeader: "x-amz-sdk-checksum-algorithm", name: "ChecksumAlgorithm" },
|
|
52041
52432
|
requestChecksumRequired: true
|
|
52042
52433
|
}),
|
|
52043
|
-
(0,
|
|
52434
|
+
(0, import_middleware_sdk_s358.getThrow200ExceptionsPlugin)(config)
|
|
52044
52435
|
];
|
|
52045
52436
|
}).s("AmazonS3", "PutObjectLockConfiguration", {}).n("S3Client", "PutObjectLockConfigurationCommand").f(void 0, void 0).ser(se_PutObjectLockConfigurationCommand).de(de_PutObjectLockConfigurationCommand).build() {
|
|
52046
52437
|
static {
|
|
52047
52438
|
__name(this, "PutObjectLockConfigurationCommand");
|
|
52048
52439
|
}
|
|
52049
52440
|
};
|
|
52050
|
-
var
|
|
52441
|
+
var import_middleware_sdk_s359 = require_dist_cjs31();
|
|
52051
52442
|
var PutObjectRetentionCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
52052
52443
|
...commonParams3,
|
|
52053
52444
|
Bucket: { type: "contextParams", name: "Bucket" }
|
|
@@ -52059,14 +52450,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
52059
52450
|
requestAlgorithmMember: { httpHeader: "x-amz-sdk-checksum-algorithm", name: "ChecksumAlgorithm" },
|
|
52060
52451
|
requestChecksumRequired: true
|
|
52061
52452
|
}),
|
|
52062
|
-
(0,
|
|
52453
|
+
(0, import_middleware_sdk_s359.getThrow200ExceptionsPlugin)(config)
|
|
52063
52454
|
];
|
|
52064
52455
|
}).s("AmazonS3", "PutObjectRetention", {}).n("S3Client", "PutObjectRetentionCommand").f(void 0, void 0).ser(se_PutObjectRetentionCommand).de(de_PutObjectRetentionCommand).build() {
|
|
52065
52456
|
static {
|
|
52066
52457
|
__name(this, "PutObjectRetentionCommand");
|
|
52067
52458
|
}
|
|
52068
52459
|
};
|
|
52069
|
-
var
|
|
52460
|
+
var import_middleware_sdk_s360 = require_dist_cjs31();
|
|
52070
52461
|
var PutObjectTaggingCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
52071
52462
|
...commonParams3,
|
|
52072
52463
|
Bucket: { type: "contextParams", name: "Bucket" }
|
|
@@ -52078,7 +52469,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
52078
52469
|
requestAlgorithmMember: { httpHeader: "x-amz-sdk-checksum-algorithm", name: "ChecksumAlgorithm" },
|
|
52079
52470
|
requestChecksumRequired: true
|
|
52080
52471
|
}),
|
|
52081
|
-
(0,
|
|
52472
|
+
(0, import_middleware_sdk_s360.getThrow200ExceptionsPlugin)(config)
|
|
52082
52473
|
];
|
|
52083
52474
|
}).s("AmazonS3", "PutObjectTagging", {}).n("S3Client", "PutObjectTaggingCommand").f(void 0, void 0).ser(se_PutObjectTaggingCommand).de(de_PutObjectTaggingCommand).build() {
|
|
52084
52475
|
static {
|
|
@@ -52103,7 +52494,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
52103
52494
|
__name(this, "PutPublicAccessBlockCommand");
|
|
52104
52495
|
}
|
|
52105
52496
|
};
|
|
52106
|
-
var
|
|
52497
|
+
var import_middleware_sdk_s361 = require_dist_cjs31();
|
|
52107
52498
|
var RenameObjectCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
52108
52499
|
...commonParams3,
|
|
52109
52500
|
Bucket: { type: "contextParams", name: "Bucket" },
|
|
@@ -52112,14 +52503,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
52112
52503
|
return [
|
|
52113
52504
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
52114
52505
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
52115
|
-
(0,
|
|
52506
|
+
(0, import_middleware_sdk_s361.getThrow200ExceptionsPlugin)(config)
|
|
52116
52507
|
];
|
|
52117
52508
|
}).s("AmazonS3", "RenameObject", {}).n("S3Client", "RenameObjectCommand").f(void 0, void 0).ser(se_RenameObjectCommand).de(de_RenameObjectCommand).build() {
|
|
52118
52509
|
static {
|
|
52119
52510
|
__name(this, "RenameObjectCommand");
|
|
52120
52511
|
}
|
|
52121
52512
|
};
|
|
52122
|
-
var
|
|
52513
|
+
var import_middleware_sdk_s362 = require_dist_cjs31();
|
|
52123
52514
|
var RestoreObjectCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
52124
52515
|
...commonParams3,
|
|
52125
52516
|
Bucket: { type: "contextParams", name: "Bucket" }
|
|
@@ -52131,14 +52522,14 @@ var require_dist_cjs82 = __commonJS({
|
|
|
52131
52522
|
requestAlgorithmMember: { httpHeader: "x-amz-sdk-checksum-algorithm", name: "ChecksumAlgorithm" },
|
|
52132
52523
|
requestChecksumRequired: false
|
|
52133
52524
|
}),
|
|
52134
|
-
(0,
|
|
52525
|
+
(0, import_middleware_sdk_s362.getThrow200ExceptionsPlugin)(config)
|
|
52135
52526
|
];
|
|
52136
52527
|
}).s("AmazonS3", "RestoreObject", {}).n("S3Client", "RestoreObjectCommand").f(RestoreObjectRequestFilterSensitiveLog, void 0).ser(se_RestoreObjectCommand).de(de_RestoreObjectCommand).build() {
|
|
52137
52528
|
static {
|
|
52138
52529
|
__name(this, "RestoreObjectCommand");
|
|
52139
52530
|
}
|
|
52140
52531
|
};
|
|
52141
|
-
var
|
|
52532
|
+
var import_middleware_sdk_s363 = require_dist_cjs31();
|
|
52142
52533
|
var SelectObjectContentCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
52143
52534
|
...commonParams3,
|
|
52144
52535
|
Bucket: { type: "contextParams", name: "Bucket" }
|
|
@@ -52146,7 +52537,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
52146
52537
|
return [
|
|
52147
52538
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
52148
52539
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
52149
|
-
(0,
|
|
52540
|
+
(0, import_middleware_sdk_s363.getThrow200ExceptionsPlugin)(config),
|
|
52150
52541
|
(0, import_middleware_ssec.getSsecPlugin)(config)
|
|
52151
52542
|
];
|
|
52152
52543
|
}).s("AmazonS3", "SelectObjectContent", {
|
|
@@ -52161,7 +52552,43 @@ var require_dist_cjs82 = __commonJS({
|
|
|
52161
52552
|
__name(this, "SelectObjectContentCommand");
|
|
52162
52553
|
}
|
|
52163
52554
|
};
|
|
52164
|
-
var
|
|
52555
|
+
var UpdateBucketMetadataInventoryTableConfigurationCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
52556
|
+
...commonParams3,
|
|
52557
|
+
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
52558
|
+
Bucket: { type: "contextParams", name: "Bucket" }
|
|
52559
|
+
}).m(function(Command, cs, config, o3) {
|
|
52560
|
+
return [
|
|
52561
|
+
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
52562
|
+
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
52563
|
+
(0, import_middleware_flexible_checksums.getFlexibleChecksumsPlugin)(config, {
|
|
52564
|
+
requestAlgorithmMember: { httpHeader: "x-amz-sdk-checksum-algorithm", name: "ChecksumAlgorithm" },
|
|
52565
|
+
requestChecksumRequired: true
|
|
52566
|
+
})
|
|
52567
|
+
];
|
|
52568
|
+
}).s("AmazonS3", "UpdateBucketMetadataInventoryTableConfiguration", {}).n("S3Client", "UpdateBucketMetadataInventoryTableConfigurationCommand").f(void 0, void 0).ser(se_UpdateBucketMetadataInventoryTableConfigurationCommand).de(de_UpdateBucketMetadataInventoryTableConfigurationCommand).build() {
|
|
52569
|
+
static {
|
|
52570
|
+
__name(this, "UpdateBucketMetadataInventoryTableConfigurationCommand");
|
|
52571
|
+
}
|
|
52572
|
+
};
|
|
52573
|
+
var UpdateBucketMetadataJournalTableConfigurationCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
52574
|
+
...commonParams3,
|
|
52575
|
+
UseS3ExpressControlEndpoint: { type: "staticContextParams", value: true },
|
|
52576
|
+
Bucket: { type: "contextParams", name: "Bucket" }
|
|
52577
|
+
}).m(function(Command, cs, config, o3) {
|
|
52578
|
+
return [
|
|
52579
|
+
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
52580
|
+
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
52581
|
+
(0, import_middleware_flexible_checksums.getFlexibleChecksumsPlugin)(config, {
|
|
52582
|
+
requestAlgorithmMember: { httpHeader: "x-amz-sdk-checksum-algorithm", name: "ChecksumAlgorithm" },
|
|
52583
|
+
requestChecksumRequired: true
|
|
52584
|
+
})
|
|
52585
|
+
];
|
|
52586
|
+
}).s("AmazonS3", "UpdateBucketMetadataJournalTableConfiguration", {}).n("S3Client", "UpdateBucketMetadataJournalTableConfigurationCommand").f(void 0, void 0).ser(se_UpdateBucketMetadataJournalTableConfigurationCommand).de(de_UpdateBucketMetadataJournalTableConfigurationCommand).build() {
|
|
52587
|
+
static {
|
|
52588
|
+
__name(this, "UpdateBucketMetadataJournalTableConfigurationCommand");
|
|
52589
|
+
}
|
|
52590
|
+
};
|
|
52591
|
+
var import_middleware_sdk_s364 = require_dist_cjs31();
|
|
52165
52592
|
var UploadPartCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
52166
52593
|
...commonParams3,
|
|
52167
52594
|
Bucket: { type: "contextParams", name: "Bucket" },
|
|
@@ -52174,7 +52601,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
52174
52601
|
requestAlgorithmMember: { httpHeader: "x-amz-sdk-checksum-algorithm", name: "ChecksumAlgorithm" },
|
|
52175
52602
|
requestChecksumRequired: false
|
|
52176
52603
|
}),
|
|
52177
|
-
(0,
|
|
52604
|
+
(0, import_middleware_sdk_s364.getThrow200ExceptionsPlugin)(config),
|
|
52178
52605
|
(0, import_middleware_ssec.getSsecPlugin)(config)
|
|
52179
52606
|
];
|
|
52180
52607
|
}).s("AmazonS3", "UploadPart", {}).n("S3Client", "UploadPartCommand").f(UploadPartRequestFilterSensitiveLog, UploadPartOutputFilterSensitiveLog).ser(se_UploadPartCommand).de(de_UploadPartCommand).build() {
|
|
@@ -52182,7 +52609,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
52182
52609
|
__name(this, "UploadPartCommand");
|
|
52183
52610
|
}
|
|
52184
52611
|
};
|
|
52185
|
-
var
|
|
52612
|
+
var import_middleware_sdk_s365 = require_dist_cjs31();
|
|
52186
52613
|
var UploadPartCopyCommand = class extends import_smithy_client61.Command.classBuilder().ep({
|
|
52187
52614
|
...commonParams3,
|
|
52188
52615
|
DisableS3ExpressSessionAuth: { type: "staticContextParams", value: true },
|
|
@@ -52191,7 +52618,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
52191
52618
|
return [
|
|
52192
52619
|
(0, import_middleware_serde5.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
52193
52620
|
(0, import_middleware_endpoint6.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
52194
|
-
(0,
|
|
52621
|
+
(0, import_middleware_sdk_s365.getThrow200ExceptionsPlugin)(config),
|
|
52195
52622
|
(0, import_middleware_ssec.getSsecPlugin)(config)
|
|
52196
52623
|
];
|
|
52197
52624
|
}).s("AmazonS3", "UploadPartCopy", {}).n("S3Client", "UploadPartCopyCommand").f(UploadPartCopyRequestFilterSensitiveLog, UploadPartCopyOutputFilterSensitiveLog).ser(se_UploadPartCopyCommand).de(de_UploadPartCopyCommand).build() {
|
|
@@ -52217,6 +52644,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
52217
52644
|
CompleteMultipartUploadCommand,
|
|
52218
52645
|
CopyObjectCommand,
|
|
52219
52646
|
CreateBucketCommand,
|
|
52647
|
+
CreateBucketMetadataConfigurationCommand,
|
|
52220
52648
|
CreateBucketMetadataTableConfigurationCommand,
|
|
52221
52649
|
CreateMultipartUploadCommand,
|
|
52222
52650
|
CreateSessionCommand,
|
|
@@ -52227,6 +52655,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
52227
52655
|
DeleteBucketIntelligentTieringConfigurationCommand,
|
|
52228
52656
|
DeleteBucketInventoryConfigurationCommand,
|
|
52229
52657
|
DeleteBucketLifecycleCommand,
|
|
52658
|
+
DeleteBucketMetadataConfigurationCommand,
|
|
52230
52659
|
DeleteBucketMetadataTableConfigurationCommand,
|
|
52231
52660
|
DeleteBucketMetricsConfigurationCommand,
|
|
52232
52661
|
DeleteBucketOwnershipControlsCommand,
|
|
@@ -52248,6 +52677,7 @@ var require_dist_cjs82 = __commonJS({
|
|
|
52248
52677
|
GetBucketLifecycleConfigurationCommand,
|
|
52249
52678
|
GetBucketLocationCommand,
|
|
52250
52679
|
GetBucketLoggingCommand,
|
|
52680
|
+
GetBucketMetadataConfigurationCommand,
|
|
52251
52681
|
GetBucketMetadataTableConfigurationCommand,
|
|
52252
52682
|
GetBucketMetricsConfigurationCommand,
|
|
52253
52683
|
GetBucketNotificationConfigurationCommand,
|
|
@@ -52309,6 +52739,8 @@ var require_dist_cjs82 = __commonJS({
|
|
|
52309
52739
|
RenameObjectCommand,
|
|
52310
52740
|
RestoreObjectCommand,
|
|
52311
52741
|
SelectObjectContentCommand,
|
|
52742
|
+
UpdateBucketMetadataInventoryTableConfigurationCommand,
|
|
52743
|
+
UpdateBucketMetadataJournalTableConfigurationCommand,
|
|
52312
52744
|
UploadPartCommand,
|
|
52313
52745
|
UploadPartCopyCommand,
|
|
52314
52746
|
WriteGetObjectResponseCommand
|
|
@@ -61726,9 +62158,8 @@ var init_XmlShapeDeserializer6 = __esm({
|
|
|
61726
62158
|
readSchema(_schema, value) {
|
|
61727
62159
|
const ns = NormalizedSchema.of(_schema);
|
|
61728
62160
|
const traits = ns.getMergedTraits();
|
|
61729
|
-
const schema = ns.getSchema();
|
|
61730
62161
|
if (ns.isListSchema() && !Array.isArray(value)) {
|
|
61731
|
-
return this.readSchema(
|
|
62162
|
+
return this.readSchema(ns, [value]);
|
|
61732
62163
|
}
|
|
61733
62164
|
if (value == null) {
|
|
61734
62165
|
return value;
|
|
@@ -61784,14 +62215,14 @@ var init_XmlShapeDeserializer6 = __esm({
|
|
|
61784
62215
|
return value;
|
|
61785
62216
|
}
|
|
61786
62217
|
throw new Error(`@aws-sdk/core/protocols - xml deserializer unhandled schema type for ${ns.getName(true)}`);
|
|
61787
|
-
} else {
|
|
61788
|
-
if (ns.isListSchema()) {
|
|
61789
|
-
return [];
|
|
61790
|
-
} else if (ns.isMapSchema() || ns.isStructSchema()) {
|
|
61791
|
-
return {};
|
|
61792
|
-
}
|
|
61793
|
-
return this.stringDeserializer.read(ns, value);
|
|
61794
62218
|
}
|
|
62219
|
+
if (ns.isListSchema()) {
|
|
62220
|
+
return [];
|
|
62221
|
+
}
|
|
62222
|
+
if (ns.isMapSchema() || ns.isStructSchema()) {
|
|
62223
|
+
return {};
|
|
62224
|
+
}
|
|
62225
|
+
return this.stringDeserializer.read(ns, value);
|
|
61795
62226
|
}
|
|
61796
62227
|
parseXml(xml) {
|
|
61797
62228
|
if (xml.length) {
|
|
@@ -62967,7 +63398,7 @@ var require_package4 = __commonJS({
|
|
|
62967
63398
|
module2.exports = {
|
|
62968
63399
|
name: "@aws-sdk/client-secrets-manager",
|
|
62969
63400
|
description: "AWS SDK for JavaScript Secrets Manager Client for Node.js, Browser and React Native",
|
|
62970
|
-
version: "3.
|
|
63401
|
+
version: "3.846.0",
|
|
62971
63402
|
scripts: {
|
|
62972
63403
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
62973
63404
|
"build:cjs": "node ../../scripts/compilation/inline client-secrets-manager",
|
|
@@ -62986,38 +63417,38 @@ var require_package4 = __commonJS({
|
|
|
62986
63417
|
dependencies: {
|
|
62987
63418
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
62988
63419
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
62989
|
-
"@aws-sdk/core": "3.
|
|
62990
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
63420
|
+
"@aws-sdk/core": "3.846.0",
|
|
63421
|
+
"@aws-sdk/credential-provider-node": "3.846.0",
|
|
62991
63422
|
"@aws-sdk/middleware-host-header": "3.840.0",
|
|
62992
63423
|
"@aws-sdk/middleware-logger": "3.840.0",
|
|
62993
63424
|
"@aws-sdk/middleware-recursion-detection": "3.840.0",
|
|
62994
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
63425
|
+
"@aws-sdk/middleware-user-agent": "3.846.0",
|
|
62995
63426
|
"@aws-sdk/region-config-resolver": "3.840.0",
|
|
62996
63427
|
"@aws-sdk/types": "3.840.0",
|
|
62997
|
-
"@aws-sdk/util-endpoints": "3.
|
|
63428
|
+
"@aws-sdk/util-endpoints": "3.845.0",
|
|
62998
63429
|
"@aws-sdk/util-user-agent-browser": "3.840.0",
|
|
62999
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
63430
|
+
"@aws-sdk/util-user-agent-node": "3.846.0",
|
|
63000
63431
|
"@smithy/config-resolver": "^4.1.4",
|
|
63001
63432
|
"@smithy/core": "^3.7.0",
|
|
63002
63433
|
"@smithy/fetch-http-handler": "^5.1.0",
|
|
63003
63434
|
"@smithy/hash-node": "^4.0.4",
|
|
63004
63435
|
"@smithy/invalid-dependency": "^4.0.4",
|
|
63005
63436
|
"@smithy/middleware-content-length": "^4.0.4",
|
|
63006
|
-
"@smithy/middleware-endpoint": "^4.1.
|
|
63007
|
-
"@smithy/middleware-retry": "^4.1.
|
|
63437
|
+
"@smithy/middleware-endpoint": "^4.1.15",
|
|
63438
|
+
"@smithy/middleware-retry": "^4.1.16",
|
|
63008
63439
|
"@smithy/middleware-serde": "^4.0.8",
|
|
63009
63440
|
"@smithy/middleware-stack": "^4.0.4",
|
|
63010
63441
|
"@smithy/node-config-provider": "^4.1.3",
|
|
63011
63442
|
"@smithy/node-http-handler": "^4.1.0",
|
|
63012
63443
|
"@smithy/protocol-http": "^5.1.2",
|
|
63013
|
-
"@smithy/smithy-client": "^4.4.
|
|
63444
|
+
"@smithy/smithy-client": "^4.4.7",
|
|
63014
63445
|
"@smithy/types": "^4.3.1",
|
|
63015
63446
|
"@smithy/url-parser": "^4.0.4",
|
|
63016
63447
|
"@smithy/util-base64": "^4.0.0",
|
|
63017
63448
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
63018
63449
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
63019
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
63020
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
63450
|
+
"@smithy/util-defaults-mode-browser": "^4.0.23",
|
|
63451
|
+
"@smithy/util-defaults-mode-node": "^4.0.23",
|
|
63021
63452
|
"@smithy/util-endpoints": "^3.0.6",
|
|
63022
63453
|
"@smithy/util-middleware": "^4.0.4",
|
|
63023
63454
|
"@smithy/util-retry": "^4.0.6",
|