@aws-sdk/client-s3-control 3.635.0 → 3.645.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/dist-cjs/index.js +171 -54
- package/dist-es/S3Control.js +2 -0
- package/dist-es/commands/ListCallerAccessGrantsCommand.js +30 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/pagination/ListCallerAccessGrantsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restXml.js +89 -0
- package/dist-types/S3Control.d.ts +8 -0
- package/dist-types/S3ControlClient.d.ts +3 -2
- package/dist-types/commands/CreateAccessGrantsInstanceCommand.d.ts +2 -0
- package/dist-types/commands/GetAccessGrantsInstanceCommand.d.ts +6 -0
- package/dist-types/commands/ListAccessGrantsInstancesCommand.d.ts +2 -0
- package/dist-types/commands/ListCallerAccessGrantsCommand.d.ts +77 -0
- package/dist-types/commands/ListStorageLensConfigurationsCommand.d.ts +2 -1
- package/dist-types/commands/ListStorageLensGroupsCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +148 -93
- package/dist-types/models/models_1.d.ts +67 -2
- package/dist-types/pagination/ListCallerAccessGrantsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restXml.d.ts +9 -0
- package/dist-types/ts3.4/S3Control.d.ts +18 -0
- package/dist-types/ts3.4/S3ControlClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListCallerAccessGrantsCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListStorageLensConfigurationsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListStorageLensGroupsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +22 -14
- package/dist-types/ts3.4/models/models_1.d.ts +14 -0
- package/dist-types/ts3.4/pagination/ListCallerAccessGrantsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +12 -0
- package/package.json +7 -7
package/dist-cjs/index.js
CHANGED
|
@@ -112,6 +112,7 @@ __export(src_exports, {
|
|
|
112
112
|
ListAccessGrantsLocationsCommand: () => ListAccessGrantsLocationsCommand,
|
|
113
113
|
ListAccessPointsCommand: () => ListAccessPointsCommand,
|
|
114
114
|
ListAccessPointsForObjectLambdaCommand: () => ListAccessPointsForObjectLambdaCommand,
|
|
115
|
+
ListCallerAccessGrantsCommand: () => ListCallerAccessGrantsCommand,
|
|
115
116
|
ListJobsCommand: () => ListJobsCommand,
|
|
116
117
|
ListMultiRegionAccessPointsCommand: () => ListMultiRegionAccessPointsCommand,
|
|
117
118
|
ListRegionalBucketsCommand: () => ListRegionalBucketsCommand,
|
|
@@ -186,6 +187,7 @@ __export(src_exports, {
|
|
|
186
187
|
paginateListAccessGrantsLocations: () => paginateListAccessGrantsLocations,
|
|
187
188
|
paginateListAccessPoints: () => paginateListAccessPoints,
|
|
188
189
|
paginateListAccessPointsForObjectLambda: () => paginateListAccessPointsForObjectLambda,
|
|
190
|
+
paginateListCallerAccessGrants: () => paginateListCallerAccessGrants,
|
|
189
191
|
paginateListJobs: () => paginateListJobs,
|
|
190
192
|
paginateListMultiRegionAccessPoints: () => paginateListMultiRegionAccessPoints,
|
|
191
193
|
paginateListRegionalBuckets: () => paginateListRegionalBuckets,
|
|
@@ -2524,6 +2526,34 @@ var se_ListAccessPointsForObjectLambdaCommand = /* @__PURE__ */ __name(async (in
|
|
|
2524
2526
|
b.m("GET").h(headers).q(query).b(body);
|
|
2525
2527
|
return b.build();
|
|
2526
2528
|
}, "se_ListAccessPointsForObjectLambdaCommand");
|
|
2529
|
+
var se_ListCallerAccessGrantsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2530
|
+
const b = (0, import_core.requestBuilder)(input, context);
|
|
2531
|
+
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
2532
|
+
[_xaai]: input[_AI]
|
|
2533
|
+
});
|
|
2534
|
+
b.bp("/v20180820/accessgrantsinstance/caller/grants");
|
|
2535
|
+
const query = (0, import_smithy_client.map)({
|
|
2536
|
+
[_gra]: [, input[_GS]],
|
|
2537
|
+
[_nT]: [, input[_NT]],
|
|
2538
|
+
[_mR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
2539
|
+
[_aBA]: [() => input.AllowedByApplication !== void 0, () => input[_ABA].toString()]
|
|
2540
|
+
});
|
|
2541
|
+
let body;
|
|
2542
|
+
let { hostname: resolvedHostname } = await context.endpoint();
|
|
2543
|
+
if (context.disableHostPrefix !== true) {
|
|
2544
|
+
resolvedHostname = "{AccountId}." + resolvedHostname;
|
|
2545
|
+
if (input.AccountId === void 0) {
|
|
2546
|
+
throw new Error("Empty value provided for input host prefix: AccountId.");
|
|
2547
|
+
}
|
|
2548
|
+
resolvedHostname = resolvedHostname.replace("{AccountId}", input.AccountId);
|
|
2549
|
+
if (!(0, import_protocol_http.isValidHostname)(resolvedHostname)) {
|
|
2550
|
+
throw new Error("ValidationError: prefixed hostname must be hostname compatible.");
|
|
2551
|
+
}
|
|
2552
|
+
}
|
|
2553
|
+
b.hn(resolvedHostname);
|
|
2554
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
2555
|
+
return b.build();
|
|
2556
|
+
}, "se_ListCallerAccessGrantsCommand");
|
|
2527
2557
|
var se_ListJobsCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
2528
2558
|
const b = (0, import_core.requestBuilder)(input, context);
|
|
2529
2559
|
const headers = (0, import_smithy_client.map)({}, isSerializableHeaderValue, {
|
|
@@ -3374,9 +3404,15 @@ var de_CreateAccessGrantsInstanceCommand = /* @__PURE__ */ __name(async (output,
|
|
|
3374
3404
|
if (data[_CA] != null) {
|
|
3375
3405
|
contents[_CA] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(data[_CA]));
|
|
3376
3406
|
}
|
|
3407
|
+
if (data[_ICAA] != null) {
|
|
3408
|
+
contents[_ICAA] = (0, import_smithy_client.expectString)(data[_ICAA]);
|
|
3409
|
+
}
|
|
3377
3410
|
if (data[_ICA] != null) {
|
|
3378
3411
|
contents[_ICA] = (0, import_smithy_client.expectString)(data[_ICA]);
|
|
3379
3412
|
}
|
|
3413
|
+
if (data[_ICIA] != null) {
|
|
3414
|
+
contents[_ICIA] = (0, import_smithy_client.expectString)(data[_ICIA]);
|
|
3415
|
+
}
|
|
3380
3416
|
return contents;
|
|
3381
3417
|
}, "de_CreateAccessGrantsInstanceCommand");
|
|
3382
3418
|
var de_CreateAccessGrantsLocationCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
@@ -3769,9 +3805,15 @@ var de_GetAccessGrantsInstanceCommand = /* @__PURE__ */ __name(async (output, co
|
|
|
3769
3805
|
if (data[_CA] != null) {
|
|
3770
3806
|
contents[_CA] = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseRfc3339DateTimeWithOffset)(data[_CA]));
|
|
3771
3807
|
}
|
|
3808
|
+
if (data[_ICAA] != null) {
|
|
3809
|
+
contents[_ICAA] = (0, import_smithy_client.expectString)(data[_ICAA]);
|
|
3810
|
+
}
|
|
3772
3811
|
if (data[_ICA] != null) {
|
|
3773
3812
|
contents[_ICA] = (0, import_smithy_client.expectString)(data[_ICA]);
|
|
3774
3813
|
}
|
|
3814
|
+
if (data[_ICIA] != null) {
|
|
3815
|
+
contents[_ICIA] = (0, import_smithy_client.expectString)(data[_ICIA]);
|
|
3816
|
+
}
|
|
3775
3817
|
return contents;
|
|
3776
3818
|
}, "de_GetAccessGrantsInstanceCommand");
|
|
3777
3819
|
var de_GetAccessGrantsInstanceForPrefixCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
@@ -4280,6 +4322,24 @@ var de_ListAccessPointsForObjectLambdaCommand = /* @__PURE__ */ __name(async (ou
|
|
|
4280
4322
|
}
|
|
4281
4323
|
return contents;
|
|
4282
4324
|
}, "de_ListAccessPointsForObjectLambdaCommand");
|
|
4325
|
+
var de_ListCallerAccessGrantsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
4326
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4327
|
+
return de_CommandError(output, context);
|
|
4328
|
+
}
|
|
4329
|
+
const contents = (0, import_smithy_client.map)({
|
|
4330
|
+
$metadata: deserializeMetadata(output)
|
|
4331
|
+
});
|
|
4332
|
+
const data = (0, import_smithy_client.expectNonNull)((0, import_smithy_client.expectObject)(await (0, import_core2.parseXmlBody)(output.body, context)), "body");
|
|
4333
|
+
if (data.CallerAccessGrantsList === "") {
|
|
4334
|
+
contents[_CAGL] = [];
|
|
4335
|
+
} else if (data[_CAGL] != null && data[_CAGL][_AG] != null) {
|
|
4336
|
+
contents[_CAGL] = de_CallerAccessGrantsList((0, import_smithy_client.getArrayIfSingleItem)(data[_CAGL][_AG]), context);
|
|
4337
|
+
}
|
|
4338
|
+
if (data[_NT] != null) {
|
|
4339
|
+
contents[_NT] = (0, import_smithy_client.expectString)(data[_NT]);
|
|
4340
|
+
}
|
|
4341
|
+
return contents;
|
|
4342
|
+
}, "de_ListCallerAccessGrantsCommand");
|
|
4283
4343
|
var de_ListJobsCommand = /* @__PURE__ */ __name(async (output, context) => {
|
|
4284
4344
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
4285
4345
|
return de_CommandError(output, context);
|
|
@@ -6357,6 +6417,11 @@ var de_Buckets = /* @__PURE__ */ __name((output, context) => {
|
|
|
6357
6417
|
return (0, import_smithy_client.expectString)(entry);
|
|
6358
6418
|
});
|
|
6359
6419
|
}, "de_Buckets");
|
|
6420
|
+
var de_CallerAccessGrantsList = /* @__PURE__ */ __name((output, context) => {
|
|
6421
|
+
return (output || []).filter((e) => e != null).map((entry) => {
|
|
6422
|
+
return de_ListCallerAccessGrantsEntry(entry, context);
|
|
6423
|
+
});
|
|
6424
|
+
}, "de_CallerAccessGrantsList");
|
|
6360
6425
|
var de_CloudWatchMetrics = /* @__PURE__ */ __name((output, context) => {
|
|
6361
6426
|
const contents = {};
|
|
6362
6427
|
if (output[_IE] != null) {
|
|
@@ -6950,6 +7015,12 @@ var de_ListAccessGrantsInstanceEntry = /* @__PURE__ */ __name((output, context)
|
|
|
6950
7015
|
if (output[_ICA] != null) {
|
|
6951
7016
|
contents[_ICA] = (0, import_smithy_client.expectString)(output[_ICA]);
|
|
6952
7017
|
}
|
|
7018
|
+
if (output[_ICIA] != null) {
|
|
7019
|
+
contents[_ICIA] = (0, import_smithy_client.expectString)(output[_ICIA]);
|
|
7020
|
+
}
|
|
7021
|
+
if (output[_ICAA] != null) {
|
|
7022
|
+
contents[_ICAA] = (0, import_smithy_client.expectString)(output[_ICAA]);
|
|
7023
|
+
}
|
|
6953
7024
|
return contents;
|
|
6954
7025
|
}, "de_ListAccessGrantsInstanceEntry");
|
|
6955
7026
|
var de_ListAccessGrantsLocationsEntry = /* @__PURE__ */ __name((output, context) => {
|
|
@@ -6971,6 +7042,19 @@ var de_ListAccessGrantsLocationsEntry = /* @__PURE__ */ __name((output, context)
|
|
|
6971
7042
|
}
|
|
6972
7043
|
return contents;
|
|
6973
7044
|
}, "de_ListAccessGrantsLocationsEntry");
|
|
7045
|
+
var de_ListCallerAccessGrantsEntry = /* @__PURE__ */ __name((output, context) => {
|
|
7046
|
+
const contents = {};
|
|
7047
|
+
if (output[_P] != null) {
|
|
7048
|
+
contents[_P] = (0, import_smithy_client.expectString)(output[_P]);
|
|
7049
|
+
}
|
|
7050
|
+
if (output[_GS] != null) {
|
|
7051
|
+
contents[_GS] = (0, import_smithy_client.expectString)(output[_GS]);
|
|
7052
|
+
}
|
|
7053
|
+
if (output[_AA] != null) {
|
|
7054
|
+
contents[_AA] = (0, import_smithy_client.expectString)(output[_AA]);
|
|
7055
|
+
}
|
|
7056
|
+
return contents;
|
|
7057
|
+
}, "de_ListCallerAccessGrantsEntry");
|
|
6974
7058
|
var de_ListStorageLensConfigurationEntry = /* @__PURE__ */ __name((output, context) => {
|
|
6975
7059
|
const contents = {};
|
|
6976
7060
|
if (output[_Id_] != null) {
|
|
@@ -8111,6 +8195,7 @@ var isSerializableHeaderValue = /* @__PURE__ */ __name((value) => value !== void
|
|
|
8111
8195
|
var _A = "Alias";
|
|
8112
8196
|
var _AA = "ApplicationArn";
|
|
8113
8197
|
var _AAGICR = "AssociateAccessGrantsIdentityCenterRequest";
|
|
8198
|
+
var _ABA = "AllowedByApplication";
|
|
8114
8199
|
var _ACG = "AccessControlGrants";
|
|
8115
8200
|
var _ACL = "ACL";
|
|
8116
8201
|
var _ACLc = "AccessControlList";
|
|
@@ -8173,6 +8258,7 @@ var _C = "Configuration";
|
|
|
8173
8258
|
var _CA = "CreatedAt";
|
|
8174
8259
|
var _CACL = "CannedAccessControlList";
|
|
8175
8260
|
var _CAGIR = "CreateAccessGrantsInstanceRequest";
|
|
8261
|
+
var _CAGL = "CallerAccessGrantsList";
|
|
8176
8262
|
var _CAGLR = "CreateAccessGrantsLocationRequest";
|
|
8177
8263
|
var _CAGR = "CreateAccessGrantRequest";
|
|
8178
8264
|
var _CAPFOLR = "CreateAccessPointForObjectLambdaRequest";
|
|
@@ -8270,6 +8356,7 @@ var _I = "Include";
|
|
|
8270
8356
|
var _IAMRA = "IAMRoleArn";
|
|
8271
8357
|
var _ICA = "IdentityCenterArn";
|
|
8272
8358
|
var _ICAA = "IdentityCenterApplicationArn";
|
|
8359
|
+
var _ICIA = "IdentityCenterInstanceArn";
|
|
8273
8360
|
var _ID = "ID";
|
|
8274
8361
|
var _IE = "IsEnabled";
|
|
8275
8362
|
var _IP = "IsPublic";
|
|
@@ -8581,6 +8668,7 @@ var _V = "Value";
|
|
|
8581
8668
|
var _VC = "VpcConfiguration";
|
|
8582
8669
|
var _VCe = "VersioningConfiguration";
|
|
8583
8670
|
var _VI = "VpcId";
|
|
8671
|
+
var _aBA = "allowedByApplication";
|
|
8584
8672
|
var _aa = "application_arn";
|
|
8585
8673
|
var _b = "bucket";
|
|
8586
8674
|
var _dS = "durationSeconds";
|
|
@@ -9982,11 +10070,33 @@ var _ListAccessPointsForObjectLambdaCommand = class _ListAccessPointsForObjectLa
|
|
|
9982
10070
|
__name(_ListAccessPointsForObjectLambdaCommand, "ListAccessPointsForObjectLambdaCommand");
|
|
9983
10071
|
var ListAccessPointsForObjectLambdaCommand = _ListAccessPointsForObjectLambdaCommand;
|
|
9984
10072
|
|
|
9985
|
-
// src/commands/
|
|
10073
|
+
// src/commands/ListCallerAccessGrantsCommand.ts
|
|
9986
10074
|
var import_middleware_sdk_s3_control67 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
9987
10075
|
|
|
9988
10076
|
|
|
9989
10077
|
|
|
10078
|
+
|
|
10079
|
+
var _ListCallerAccessGrantsCommand = class _ListCallerAccessGrantsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
10080
|
+
...commonParams,
|
|
10081
|
+
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
10082
|
+
AccountId: { type: "contextParams", name: "AccountId" }
|
|
10083
|
+
}).m(function(Command, cs, config, o) {
|
|
10084
|
+
return [
|
|
10085
|
+
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10086
|
+
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10087
|
+
(0, import_middleware_sdk_s3_control67.getProcessArnablesPlugin)(config),
|
|
10088
|
+
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10089
|
+
];
|
|
10090
|
+
}).s("AWSS3ControlServiceV20180820", "ListCallerAccessGrants", {}).n("S3ControlClient", "ListCallerAccessGrantsCommand").f(void 0, void 0).ser(se_ListCallerAccessGrantsCommand).de(de_ListCallerAccessGrantsCommand).build() {
|
|
10091
|
+
};
|
|
10092
|
+
__name(_ListCallerAccessGrantsCommand, "ListCallerAccessGrantsCommand");
|
|
10093
|
+
var ListCallerAccessGrantsCommand = _ListCallerAccessGrantsCommand;
|
|
10094
|
+
|
|
10095
|
+
// src/commands/ListJobsCommand.ts
|
|
10096
|
+
var import_middleware_sdk_s3_control68 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10097
|
+
|
|
10098
|
+
|
|
10099
|
+
|
|
9990
10100
|
var _ListJobsCommand = class _ListJobsCommand extends import_smithy_client.Command.classBuilder().ep({
|
|
9991
10101
|
...commonParams,
|
|
9992
10102
|
RequiresAccountId: { type: "staticContextParams", value: true },
|
|
@@ -9995,7 +10105,7 @@ var _ListJobsCommand = class _ListJobsCommand extends import_smithy_client.Comma
|
|
|
9995
10105
|
return [
|
|
9996
10106
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
9997
10107
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
9998
|
-
(0,
|
|
10108
|
+
(0, import_middleware_sdk_s3_control68.getProcessArnablesPlugin)(config)
|
|
9999
10109
|
];
|
|
10000
10110
|
}).s("AWSS3ControlServiceV20180820", "ListJobs", {}).n("S3ControlClient", "ListJobsCommand").f(void 0, void 0).ser(se_ListJobsCommand).de(de_ListJobsCommand).build() {
|
|
10001
10111
|
};
|
|
@@ -10003,7 +10113,7 @@ __name(_ListJobsCommand, "ListJobsCommand");
|
|
|
10003
10113
|
var ListJobsCommand = _ListJobsCommand;
|
|
10004
10114
|
|
|
10005
10115
|
// src/commands/ListMultiRegionAccessPointsCommand.ts
|
|
10006
|
-
var
|
|
10116
|
+
var import_middleware_sdk_s3_control69 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10007
10117
|
|
|
10008
10118
|
|
|
10009
10119
|
|
|
@@ -10016,7 +10126,7 @@ var _ListMultiRegionAccessPointsCommand = class _ListMultiRegionAccessPointsComm
|
|
|
10016
10126
|
return [
|
|
10017
10127
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10018
10128
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10019
|
-
(0,
|
|
10129
|
+
(0, import_middleware_sdk_s3_control69.getProcessArnablesPlugin)(config),
|
|
10020
10130
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10021
10131
|
];
|
|
10022
10132
|
}).s("AWSS3ControlServiceV20180820", "ListMultiRegionAccessPoints", {}).n("S3ControlClient", "ListMultiRegionAccessPointsCommand").f(void 0, void 0).ser(se_ListMultiRegionAccessPointsCommand).de(de_ListMultiRegionAccessPointsCommand).build() {
|
|
@@ -10025,7 +10135,7 @@ __name(_ListMultiRegionAccessPointsCommand, "ListMultiRegionAccessPointsCommand"
|
|
|
10025
10135
|
var ListMultiRegionAccessPointsCommand = _ListMultiRegionAccessPointsCommand;
|
|
10026
10136
|
|
|
10027
10137
|
// src/commands/ListRegionalBucketsCommand.ts
|
|
10028
|
-
var
|
|
10138
|
+
var import_middleware_sdk_s3_control70 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10029
10139
|
|
|
10030
10140
|
|
|
10031
10141
|
|
|
@@ -10038,7 +10148,7 @@ var _ListRegionalBucketsCommand = class _ListRegionalBucketsCommand extends impo
|
|
|
10038
10148
|
return [
|
|
10039
10149
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10040
10150
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10041
|
-
(0,
|
|
10151
|
+
(0, import_middleware_sdk_s3_control70.getRedirectFromPostIdPlugin)(config)
|
|
10042
10152
|
];
|
|
10043
10153
|
}).s("AWSS3ControlServiceV20180820", "ListRegionalBuckets", {}).n("S3ControlClient", "ListRegionalBucketsCommand").f(void 0, void 0).ser(se_ListRegionalBucketsCommand).de(de_ListRegionalBucketsCommand).build() {
|
|
10044
10154
|
};
|
|
@@ -10046,7 +10156,7 @@ __name(_ListRegionalBucketsCommand, "ListRegionalBucketsCommand");
|
|
|
10046
10156
|
var ListRegionalBucketsCommand = _ListRegionalBucketsCommand;
|
|
10047
10157
|
|
|
10048
10158
|
// src/commands/ListStorageLensConfigurationsCommand.ts
|
|
10049
|
-
var
|
|
10159
|
+
var import_middleware_sdk_s3_control71 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10050
10160
|
|
|
10051
10161
|
|
|
10052
10162
|
|
|
@@ -10058,7 +10168,7 @@ var _ListStorageLensConfigurationsCommand = class _ListStorageLensConfigurations
|
|
|
10058
10168
|
return [
|
|
10059
10169
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10060
10170
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10061
|
-
(0,
|
|
10171
|
+
(0, import_middleware_sdk_s3_control71.getProcessArnablesPlugin)(config)
|
|
10062
10172
|
];
|
|
10063
10173
|
}).s("AWSS3ControlServiceV20180820", "ListStorageLensConfigurations", {}).n("S3ControlClient", "ListStorageLensConfigurationsCommand").f(void 0, void 0).ser(se_ListStorageLensConfigurationsCommand).de(de_ListStorageLensConfigurationsCommand).build() {
|
|
10064
10174
|
};
|
|
@@ -10066,7 +10176,7 @@ __name(_ListStorageLensConfigurationsCommand, "ListStorageLensConfigurationsComm
|
|
|
10066
10176
|
var ListStorageLensConfigurationsCommand = _ListStorageLensConfigurationsCommand;
|
|
10067
10177
|
|
|
10068
10178
|
// src/commands/ListStorageLensGroupsCommand.ts
|
|
10069
|
-
var
|
|
10179
|
+
var import_middleware_sdk_s3_control72 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10070
10180
|
|
|
10071
10181
|
|
|
10072
10182
|
|
|
@@ -10078,7 +10188,7 @@ var _ListStorageLensGroupsCommand = class _ListStorageLensGroupsCommand extends
|
|
|
10078
10188
|
return [
|
|
10079
10189
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10080
10190
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10081
|
-
(0,
|
|
10191
|
+
(0, import_middleware_sdk_s3_control72.getProcessArnablesPlugin)(config)
|
|
10082
10192
|
];
|
|
10083
10193
|
}).s("AWSS3ControlServiceV20180820", "ListStorageLensGroups", {}).n("S3ControlClient", "ListStorageLensGroupsCommand").f(void 0, void 0).ser(se_ListStorageLensGroupsCommand).de(de_ListStorageLensGroupsCommand).build() {
|
|
10084
10194
|
};
|
|
@@ -10086,7 +10196,7 @@ __name(_ListStorageLensGroupsCommand, "ListStorageLensGroupsCommand");
|
|
|
10086
10196
|
var ListStorageLensGroupsCommand = _ListStorageLensGroupsCommand;
|
|
10087
10197
|
|
|
10088
10198
|
// src/commands/ListTagsForResourceCommand.ts
|
|
10089
|
-
var
|
|
10199
|
+
var import_middleware_sdk_s3_control73 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10090
10200
|
|
|
10091
10201
|
|
|
10092
10202
|
|
|
@@ -10098,7 +10208,7 @@ var _ListTagsForResourceCommand = class _ListTagsForResourceCommand extends impo
|
|
|
10098
10208
|
return [
|
|
10099
10209
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10100
10210
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10101
|
-
(0,
|
|
10211
|
+
(0, import_middleware_sdk_s3_control73.getProcessArnablesPlugin)(config)
|
|
10102
10212
|
];
|
|
10103
10213
|
}).s("AWSS3ControlServiceV20180820", "ListTagsForResource", {}).n("S3ControlClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
10104
10214
|
};
|
|
@@ -10106,7 +10216,7 @@ __name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
|
10106
10216
|
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
10107
10217
|
|
|
10108
10218
|
// src/commands/PutAccessGrantsInstanceResourcePolicyCommand.ts
|
|
10109
|
-
var
|
|
10219
|
+
var import_middleware_sdk_s3_control74 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10110
10220
|
|
|
10111
10221
|
|
|
10112
10222
|
|
|
@@ -10119,7 +10229,7 @@ var _PutAccessGrantsInstanceResourcePolicyCommand = class _PutAccessGrantsInstan
|
|
|
10119
10229
|
return [
|
|
10120
10230
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10121
10231
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10122
|
-
(0,
|
|
10232
|
+
(0, import_middleware_sdk_s3_control74.getProcessArnablesPlugin)(config),
|
|
10123
10233
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10124
10234
|
];
|
|
10125
10235
|
}).s("AWSS3ControlServiceV20180820", "PutAccessGrantsInstanceResourcePolicy", {}).n("S3ControlClient", "PutAccessGrantsInstanceResourcePolicyCommand").f(void 0, void 0).ser(se_PutAccessGrantsInstanceResourcePolicyCommand).de(de_PutAccessGrantsInstanceResourcePolicyCommand).build() {
|
|
@@ -10128,7 +10238,7 @@ __name(_PutAccessGrantsInstanceResourcePolicyCommand, "PutAccessGrantsInstanceRe
|
|
|
10128
10238
|
var PutAccessGrantsInstanceResourcePolicyCommand = _PutAccessGrantsInstanceResourcePolicyCommand;
|
|
10129
10239
|
|
|
10130
10240
|
// src/commands/PutAccessPointConfigurationForObjectLambdaCommand.ts
|
|
10131
|
-
var
|
|
10241
|
+
var import_middleware_sdk_s3_control75 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10132
10242
|
|
|
10133
10243
|
|
|
10134
10244
|
|
|
@@ -10140,7 +10250,7 @@ var _PutAccessPointConfigurationForObjectLambdaCommand = class _PutAccessPointCo
|
|
|
10140
10250
|
return [
|
|
10141
10251
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10142
10252
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10143
|
-
(0,
|
|
10253
|
+
(0, import_middleware_sdk_s3_control75.getProcessArnablesPlugin)(config)
|
|
10144
10254
|
];
|
|
10145
10255
|
}).s("AWSS3ControlServiceV20180820", "PutAccessPointConfigurationForObjectLambda", {}).n("S3ControlClient", "PutAccessPointConfigurationForObjectLambdaCommand").f(void 0, void 0).ser(se_PutAccessPointConfigurationForObjectLambdaCommand).de(de_PutAccessPointConfigurationForObjectLambdaCommand).build() {
|
|
10146
10256
|
};
|
|
@@ -10148,7 +10258,7 @@ __name(_PutAccessPointConfigurationForObjectLambdaCommand, "PutAccessPointConfig
|
|
|
10148
10258
|
var PutAccessPointConfigurationForObjectLambdaCommand = _PutAccessPointConfigurationForObjectLambdaCommand;
|
|
10149
10259
|
|
|
10150
10260
|
// src/commands/PutAccessPointPolicyCommand.ts
|
|
10151
|
-
var
|
|
10261
|
+
var import_middleware_sdk_s3_control76 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10152
10262
|
|
|
10153
10263
|
|
|
10154
10264
|
|
|
@@ -10161,7 +10271,7 @@ var _PutAccessPointPolicyCommand = class _PutAccessPointPolicyCommand extends im
|
|
|
10161
10271
|
return [
|
|
10162
10272
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10163
10273
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10164
|
-
(0,
|
|
10274
|
+
(0, import_middleware_sdk_s3_control76.getProcessArnablesPlugin)(config)
|
|
10165
10275
|
];
|
|
10166
10276
|
}).s("AWSS3ControlServiceV20180820", "PutAccessPointPolicy", {}).n("S3ControlClient", "PutAccessPointPolicyCommand").f(void 0, void 0).ser(se_PutAccessPointPolicyCommand).de(de_PutAccessPointPolicyCommand).build() {
|
|
10167
10277
|
};
|
|
@@ -10169,7 +10279,7 @@ __name(_PutAccessPointPolicyCommand, "PutAccessPointPolicyCommand");
|
|
|
10169
10279
|
var PutAccessPointPolicyCommand = _PutAccessPointPolicyCommand;
|
|
10170
10280
|
|
|
10171
10281
|
// src/commands/PutAccessPointPolicyForObjectLambdaCommand.ts
|
|
10172
|
-
var
|
|
10282
|
+
var import_middleware_sdk_s3_control77 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10173
10283
|
|
|
10174
10284
|
|
|
10175
10285
|
|
|
@@ -10181,7 +10291,7 @@ var _PutAccessPointPolicyForObjectLambdaCommand = class _PutAccessPointPolicyFor
|
|
|
10181
10291
|
return [
|
|
10182
10292
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10183
10293
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10184
|
-
(0,
|
|
10294
|
+
(0, import_middleware_sdk_s3_control77.getProcessArnablesPlugin)(config)
|
|
10185
10295
|
];
|
|
10186
10296
|
}).s("AWSS3ControlServiceV20180820", "PutAccessPointPolicyForObjectLambda", {}).n("S3ControlClient", "PutAccessPointPolicyForObjectLambdaCommand").f(void 0, void 0).ser(se_PutAccessPointPolicyForObjectLambdaCommand).de(de_PutAccessPointPolicyForObjectLambdaCommand).build() {
|
|
10187
10297
|
};
|
|
@@ -10189,7 +10299,7 @@ __name(_PutAccessPointPolicyForObjectLambdaCommand, "PutAccessPointPolicyForObje
|
|
|
10189
10299
|
var PutAccessPointPolicyForObjectLambdaCommand = _PutAccessPointPolicyForObjectLambdaCommand;
|
|
10190
10300
|
|
|
10191
10301
|
// src/commands/PutBucketLifecycleConfigurationCommand.ts
|
|
10192
|
-
var
|
|
10302
|
+
var import_middleware_sdk_s3_control78 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10193
10303
|
|
|
10194
10304
|
|
|
10195
10305
|
|
|
@@ -10203,7 +10313,7 @@ var _PutBucketLifecycleConfigurationCommand = class _PutBucketLifecycleConfigura
|
|
|
10203
10313
|
return [
|
|
10204
10314
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10205
10315
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10206
|
-
(0,
|
|
10316
|
+
(0, import_middleware_sdk_s3_control78.getProcessArnablesPlugin)(config),
|
|
10207
10317
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10208
10318
|
];
|
|
10209
10319
|
}).s("AWSS3ControlServiceV20180820", "PutBucketLifecycleConfiguration", {}).n("S3ControlClient", "PutBucketLifecycleConfigurationCommand").f(void 0, void 0).ser(se_PutBucketLifecycleConfigurationCommand).de(de_PutBucketLifecycleConfigurationCommand).build() {
|
|
@@ -10212,7 +10322,7 @@ __name(_PutBucketLifecycleConfigurationCommand, "PutBucketLifecycleConfiguration
|
|
|
10212
10322
|
var PutBucketLifecycleConfigurationCommand = _PutBucketLifecycleConfigurationCommand;
|
|
10213
10323
|
|
|
10214
10324
|
// src/commands/PutBucketPolicyCommand.ts
|
|
10215
|
-
var
|
|
10325
|
+
var import_middleware_sdk_s3_control79 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10216
10326
|
|
|
10217
10327
|
|
|
10218
10328
|
|
|
@@ -10226,7 +10336,7 @@ var _PutBucketPolicyCommand = class _PutBucketPolicyCommand extends import_smith
|
|
|
10226
10336
|
return [
|
|
10227
10337
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10228
10338
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10229
|
-
(0,
|
|
10339
|
+
(0, import_middleware_sdk_s3_control79.getProcessArnablesPlugin)(config),
|
|
10230
10340
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10231
10341
|
];
|
|
10232
10342
|
}).s("AWSS3ControlServiceV20180820", "PutBucketPolicy", {}).n("S3ControlClient", "PutBucketPolicyCommand").f(void 0, void 0).ser(se_PutBucketPolicyCommand).de(de_PutBucketPolicyCommand).build() {
|
|
@@ -10235,7 +10345,7 @@ __name(_PutBucketPolicyCommand, "PutBucketPolicyCommand");
|
|
|
10235
10345
|
var PutBucketPolicyCommand = _PutBucketPolicyCommand;
|
|
10236
10346
|
|
|
10237
10347
|
// src/commands/PutBucketReplicationCommand.ts
|
|
10238
|
-
var
|
|
10348
|
+
var import_middleware_sdk_s3_control80 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10239
10349
|
|
|
10240
10350
|
|
|
10241
10351
|
|
|
@@ -10249,7 +10359,7 @@ var _PutBucketReplicationCommand = class _PutBucketReplicationCommand extends im
|
|
|
10249
10359
|
return [
|
|
10250
10360
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10251
10361
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10252
|
-
(0,
|
|
10362
|
+
(0, import_middleware_sdk_s3_control80.getProcessArnablesPlugin)(config),
|
|
10253
10363
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10254
10364
|
];
|
|
10255
10365
|
}).s("AWSS3ControlServiceV20180820", "PutBucketReplication", {}).n("S3ControlClient", "PutBucketReplicationCommand").f(void 0, void 0).ser(se_PutBucketReplicationCommand).de(de_PutBucketReplicationCommand).build() {
|
|
@@ -10258,7 +10368,7 @@ __name(_PutBucketReplicationCommand, "PutBucketReplicationCommand");
|
|
|
10258
10368
|
var PutBucketReplicationCommand = _PutBucketReplicationCommand;
|
|
10259
10369
|
|
|
10260
10370
|
// src/commands/PutBucketTaggingCommand.ts
|
|
10261
|
-
var
|
|
10371
|
+
var import_middleware_sdk_s3_control81 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10262
10372
|
|
|
10263
10373
|
|
|
10264
10374
|
|
|
@@ -10272,7 +10382,7 @@ var _PutBucketTaggingCommand = class _PutBucketTaggingCommand extends import_smi
|
|
|
10272
10382
|
return [
|
|
10273
10383
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10274
10384
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10275
|
-
(0,
|
|
10385
|
+
(0, import_middleware_sdk_s3_control81.getProcessArnablesPlugin)(config),
|
|
10276
10386
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10277
10387
|
];
|
|
10278
10388
|
}).s("AWSS3ControlServiceV20180820", "PutBucketTagging", {}).n("S3ControlClient", "PutBucketTaggingCommand").f(void 0, void 0).ser(se_PutBucketTaggingCommand).de(de_PutBucketTaggingCommand).build() {
|
|
@@ -10281,7 +10391,7 @@ __name(_PutBucketTaggingCommand, "PutBucketTaggingCommand");
|
|
|
10281
10391
|
var PutBucketTaggingCommand = _PutBucketTaggingCommand;
|
|
10282
10392
|
|
|
10283
10393
|
// src/commands/PutBucketVersioningCommand.ts
|
|
10284
|
-
var
|
|
10394
|
+
var import_middleware_sdk_s3_control82 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10285
10395
|
|
|
10286
10396
|
|
|
10287
10397
|
|
|
@@ -10295,7 +10405,7 @@ var _PutBucketVersioningCommand = class _PutBucketVersioningCommand extends impo
|
|
|
10295
10405
|
return [
|
|
10296
10406
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10297
10407
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10298
|
-
(0,
|
|
10408
|
+
(0, import_middleware_sdk_s3_control82.getProcessArnablesPlugin)(config),
|
|
10299
10409
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10300
10410
|
];
|
|
10301
10411
|
}).s("AWSS3ControlServiceV20180820", "PutBucketVersioning", {}).n("S3ControlClient", "PutBucketVersioningCommand").f(void 0, void 0).ser(se_PutBucketVersioningCommand).de(de_PutBucketVersioningCommand).build() {
|
|
@@ -10304,7 +10414,7 @@ __name(_PutBucketVersioningCommand, "PutBucketVersioningCommand");
|
|
|
10304
10414
|
var PutBucketVersioningCommand = _PutBucketVersioningCommand;
|
|
10305
10415
|
|
|
10306
10416
|
// src/commands/PutJobTaggingCommand.ts
|
|
10307
|
-
var
|
|
10417
|
+
var import_middleware_sdk_s3_control83 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10308
10418
|
|
|
10309
10419
|
|
|
10310
10420
|
|
|
@@ -10316,7 +10426,7 @@ var _PutJobTaggingCommand = class _PutJobTaggingCommand extends import_smithy_cl
|
|
|
10316
10426
|
return [
|
|
10317
10427
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10318
10428
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10319
|
-
(0,
|
|
10429
|
+
(0, import_middleware_sdk_s3_control83.getProcessArnablesPlugin)(config)
|
|
10320
10430
|
];
|
|
10321
10431
|
}).s("AWSS3ControlServiceV20180820", "PutJobTagging", {}).n("S3ControlClient", "PutJobTaggingCommand").f(void 0, void 0).ser(se_PutJobTaggingCommand).de(de_PutJobTaggingCommand).build() {
|
|
10322
10432
|
};
|
|
@@ -10324,7 +10434,7 @@ __name(_PutJobTaggingCommand, "PutJobTaggingCommand");
|
|
|
10324
10434
|
var PutJobTaggingCommand = _PutJobTaggingCommand;
|
|
10325
10435
|
|
|
10326
10436
|
// src/commands/PutMultiRegionAccessPointPolicyCommand.ts
|
|
10327
|
-
var
|
|
10437
|
+
var import_middleware_sdk_s3_control84 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10328
10438
|
|
|
10329
10439
|
|
|
10330
10440
|
|
|
@@ -10337,7 +10447,7 @@ var _PutMultiRegionAccessPointPolicyCommand = class _PutMultiRegionAccessPointPo
|
|
|
10337
10447
|
return [
|
|
10338
10448
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10339
10449
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10340
|
-
(0,
|
|
10450
|
+
(0, import_middleware_sdk_s3_control84.getProcessArnablesPlugin)(config),
|
|
10341
10451
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10342
10452
|
];
|
|
10343
10453
|
}).s("AWSS3ControlServiceV20180820", "PutMultiRegionAccessPointPolicy", {}).n("S3ControlClient", "PutMultiRegionAccessPointPolicyCommand").f(void 0, void 0).ser(se_PutMultiRegionAccessPointPolicyCommand).de(de_PutMultiRegionAccessPointPolicyCommand).build() {
|
|
@@ -10346,7 +10456,7 @@ __name(_PutMultiRegionAccessPointPolicyCommand, "PutMultiRegionAccessPointPolicy
|
|
|
10346
10456
|
var PutMultiRegionAccessPointPolicyCommand = _PutMultiRegionAccessPointPolicyCommand;
|
|
10347
10457
|
|
|
10348
10458
|
// src/commands/PutPublicAccessBlockCommand.ts
|
|
10349
|
-
var
|
|
10459
|
+
var import_middleware_sdk_s3_control85 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10350
10460
|
|
|
10351
10461
|
|
|
10352
10462
|
|
|
@@ -10358,7 +10468,7 @@ var _PutPublicAccessBlockCommand = class _PutPublicAccessBlockCommand extends im
|
|
|
10358
10468
|
return [
|
|
10359
10469
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10360
10470
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10361
|
-
(0,
|
|
10471
|
+
(0, import_middleware_sdk_s3_control85.getProcessArnablesPlugin)(config)
|
|
10362
10472
|
];
|
|
10363
10473
|
}).s("AWSS3ControlServiceV20180820", "PutPublicAccessBlock", {}).n("S3ControlClient", "PutPublicAccessBlockCommand").f(void 0, void 0).ser(se_PutPublicAccessBlockCommand).de(de_PutPublicAccessBlockCommand).build() {
|
|
10364
10474
|
};
|
|
@@ -10366,7 +10476,7 @@ __name(_PutPublicAccessBlockCommand, "PutPublicAccessBlockCommand");
|
|
|
10366
10476
|
var PutPublicAccessBlockCommand = _PutPublicAccessBlockCommand;
|
|
10367
10477
|
|
|
10368
10478
|
// src/commands/PutStorageLensConfigurationCommand.ts
|
|
10369
|
-
var
|
|
10479
|
+
var import_middleware_sdk_s3_control86 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10370
10480
|
|
|
10371
10481
|
|
|
10372
10482
|
|
|
@@ -10378,7 +10488,7 @@ var _PutStorageLensConfigurationCommand = class _PutStorageLensConfigurationComm
|
|
|
10378
10488
|
return [
|
|
10379
10489
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10380
10490
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10381
|
-
(0,
|
|
10491
|
+
(0, import_middleware_sdk_s3_control86.getProcessArnablesPlugin)(config)
|
|
10382
10492
|
];
|
|
10383
10493
|
}).s("AWSS3ControlServiceV20180820", "PutStorageLensConfiguration", {}).n("S3ControlClient", "PutStorageLensConfigurationCommand").f(void 0, void 0).ser(se_PutStorageLensConfigurationCommand).de(de_PutStorageLensConfigurationCommand).build() {
|
|
10384
10494
|
};
|
|
@@ -10386,7 +10496,7 @@ __name(_PutStorageLensConfigurationCommand, "PutStorageLensConfigurationCommand"
|
|
|
10386
10496
|
var PutStorageLensConfigurationCommand = _PutStorageLensConfigurationCommand;
|
|
10387
10497
|
|
|
10388
10498
|
// src/commands/PutStorageLensConfigurationTaggingCommand.ts
|
|
10389
|
-
var
|
|
10499
|
+
var import_middleware_sdk_s3_control87 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10390
10500
|
|
|
10391
10501
|
|
|
10392
10502
|
|
|
@@ -10398,7 +10508,7 @@ var _PutStorageLensConfigurationTaggingCommand = class _PutStorageLensConfigurat
|
|
|
10398
10508
|
return [
|
|
10399
10509
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10400
10510
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10401
|
-
(0,
|
|
10511
|
+
(0, import_middleware_sdk_s3_control87.getProcessArnablesPlugin)(config)
|
|
10402
10512
|
];
|
|
10403
10513
|
}).s("AWSS3ControlServiceV20180820", "PutStorageLensConfigurationTagging", {}).n("S3ControlClient", "PutStorageLensConfigurationTaggingCommand").f(void 0, void 0).ser(se_PutStorageLensConfigurationTaggingCommand).de(de_PutStorageLensConfigurationTaggingCommand).build() {
|
|
10404
10514
|
};
|
|
@@ -10406,7 +10516,7 @@ __name(_PutStorageLensConfigurationTaggingCommand, "PutStorageLensConfigurationT
|
|
|
10406
10516
|
var PutStorageLensConfigurationTaggingCommand = _PutStorageLensConfigurationTaggingCommand;
|
|
10407
10517
|
|
|
10408
10518
|
// src/commands/SubmitMultiRegionAccessPointRoutesCommand.ts
|
|
10409
|
-
var
|
|
10519
|
+
var import_middleware_sdk_s3_control88 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10410
10520
|
|
|
10411
10521
|
|
|
10412
10522
|
|
|
@@ -10419,7 +10529,7 @@ var _SubmitMultiRegionAccessPointRoutesCommand = class _SubmitMultiRegionAccessP
|
|
|
10419
10529
|
return [
|
|
10420
10530
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10421
10531
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10422
|
-
(0,
|
|
10532
|
+
(0, import_middleware_sdk_s3_control88.getProcessArnablesPlugin)(config),
|
|
10423
10533
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10424
10534
|
];
|
|
10425
10535
|
}).s("AWSS3ControlServiceV20180820", "SubmitMultiRegionAccessPointRoutes", {}).n("S3ControlClient", "SubmitMultiRegionAccessPointRoutesCommand").f(void 0, void 0).ser(se_SubmitMultiRegionAccessPointRoutesCommand).de(de_SubmitMultiRegionAccessPointRoutesCommand).build() {
|
|
@@ -10428,7 +10538,7 @@ __name(_SubmitMultiRegionAccessPointRoutesCommand, "SubmitMultiRegionAccessPoint
|
|
|
10428
10538
|
var SubmitMultiRegionAccessPointRoutesCommand = _SubmitMultiRegionAccessPointRoutesCommand;
|
|
10429
10539
|
|
|
10430
10540
|
// src/commands/TagResourceCommand.ts
|
|
10431
|
-
var
|
|
10541
|
+
var import_middleware_sdk_s3_control89 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10432
10542
|
|
|
10433
10543
|
|
|
10434
10544
|
|
|
@@ -10440,7 +10550,7 @@ var _TagResourceCommand = class _TagResourceCommand extends import_smithy_client
|
|
|
10440
10550
|
return [
|
|
10441
10551
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10442
10552
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10443
|
-
(0,
|
|
10553
|
+
(0, import_middleware_sdk_s3_control89.getProcessArnablesPlugin)(config)
|
|
10444
10554
|
];
|
|
10445
10555
|
}).s("AWSS3ControlServiceV20180820", "TagResource", {}).n("S3ControlClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
10446
10556
|
};
|
|
@@ -10448,7 +10558,7 @@ __name(_TagResourceCommand, "TagResourceCommand");
|
|
|
10448
10558
|
var TagResourceCommand = _TagResourceCommand;
|
|
10449
10559
|
|
|
10450
10560
|
// src/commands/UntagResourceCommand.ts
|
|
10451
|
-
var
|
|
10561
|
+
var import_middleware_sdk_s3_control90 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10452
10562
|
|
|
10453
10563
|
|
|
10454
10564
|
|
|
@@ -10460,7 +10570,7 @@ var _UntagResourceCommand = class _UntagResourceCommand extends import_smithy_cl
|
|
|
10460
10570
|
return [
|
|
10461
10571
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10462
10572
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10463
|
-
(0,
|
|
10573
|
+
(0, import_middleware_sdk_s3_control90.getProcessArnablesPlugin)(config)
|
|
10464
10574
|
];
|
|
10465
10575
|
}).s("AWSS3ControlServiceV20180820", "UntagResource", {}).n("S3ControlClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
10466
10576
|
};
|
|
@@ -10468,7 +10578,7 @@ __name(_UntagResourceCommand, "UntagResourceCommand");
|
|
|
10468
10578
|
var UntagResourceCommand = _UntagResourceCommand;
|
|
10469
10579
|
|
|
10470
10580
|
// src/commands/UpdateAccessGrantsLocationCommand.ts
|
|
10471
|
-
var
|
|
10581
|
+
var import_middleware_sdk_s3_control91 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10472
10582
|
|
|
10473
10583
|
|
|
10474
10584
|
|
|
@@ -10481,7 +10591,7 @@ var _UpdateAccessGrantsLocationCommand = class _UpdateAccessGrantsLocationComman
|
|
|
10481
10591
|
return [
|
|
10482
10592
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10483
10593
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10484
|
-
(0,
|
|
10594
|
+
(0, import_middleware_sdk_s3_control91.getProcessArnablesPlugin)(config),
|
|
10485
10595
|
(0, import_middleware_apply_body_checksum.getApplyMd5BodyChecksumPlugin)(config)
|
|
10486
10596
|
];
|
|
10487
10597
|
}).s("AWSS3ControlServiceV20180820", "UpdateAccessGrantsLocation", {}).n("S3ControlClient", "UpdateAccessGrantsLocationCommand").f(void 0, void 0).ser(se_UpdateAccessGrantsLocationCommand).de(de_UpdateAccessGrantsLocationCommand).build() {
|
|
@@ -10490,7 +10600,7 @@ __name(_UpdateAccessGrantsLocationCommand, "UpdateAccessGrantsLocationCommand");
|
|
|
10490
10600
|
var UpdateAccessGrantsLocationCommand = _UpdateAccessGrantsLocationCommand;
|
|
10491
10601
|
|
|
10492
10602
|
// src/commands/UpdateJobPriorityCommand.ts
|
|
10493
|
-
var
|
|
10603
|
+
var import_middleware_sdk_s3_control92 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10494
10604
|
|
|
10495
10605
|
|
|
10496
10606
|
|
|
@@ -10502,7 +10612,7 @@ var _UpdateJobPriorityCommand = class _UpdateJobPriorityCommand extends import_s
|
|
|
10502
10612
|
return [
|
|
10503
10613
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10504
10614
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10505
|
-
(0,
|
|
10615
|
+
(0, import_middleware_sdk_s3_control92.getProcessArnablesPlugin)(config)
|
|
10506
10616
|
];
|
|
10507
10617
|
}).s("AWSS3ControlServiceV20180820", "UpdateJobPriority", {}).n("S3ControlClient", "UpdateJobPriorityCommand").f(void 0, void 0).ser(se_UpdateJobPriorityCommand).de(de_UpdateJobPriorityCommand).build() {
|
|
10508
10618
|
};
|
|
@@ -10510,7 +10620,7 @@ __name(_UpdateJobPriorityCommand, "UpdateJobPriorityCommand");
|
|
|
10510
10620
|
var UpdateJobPriorityCommand = _UpdateJobPriorityCommand;
|
|
10511
10621
|
|
|
10512
10622
|
// src/commands/UpdateJobStatusCommand.ts
|
|
10513
|
-
var
|
|
10623
|
+
var import_middleware_sdk_s3_control93 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10514
10624
|
|
|
10515
10625
|
|
|
10516
10626
|
|
|
@@ -10522,7 +10632,7 @@ var _UpdateJobStatusCommand = class _UpdateJobStatusCommand extends import_smith
|
|
|
10522
10632
|
return [
|
|
10523
10633
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10524
10634
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10525
|
-
(0,
|
|
10635
|
+
(0, import_middleware_sdk_s3_control93.getProcessArnablesPlugin)(config)
|
|
10526
10636
|
];
|
|
10527
10637
|
}).s("AWSS3ControlServiceV20180820", "UpdateJobStatus", {}).n("S3ControlClient", "UpdateJobStatusCommand").f(void 0, void 0).ser(se_UpdateJobStatusCommand).de(de_UpdateJobStatusCommand).build() {
|
|
10528
10638
|
};
|
|
@@ -10530,7 +10640,7 @@ __name(_UpdateJobStatusCommand, "UpdateJobStatusCommand");
|
|
|
10530
10640
|
var UpdateJobStatusCommand = _UpdateJobStatusCommand;
|
|
10531
10641
|
|
|
10532
10642
|
// src/commands/UpdateStorageLensGroupCommand.ts
|
|
10533
|
-
var
|
|
10643
|
+
var import_middleware_sdk_s3_control94 = require("@aws-sdk/middleware-sdk-s3-control");
|
|
10534
10644
|
|
|
10535
10645
|
|
|
10536
10646
|
|
|
@@ -10542,7 +10652,7 @@ var _UpdateStorageLensGroupCommand = class _UpdateStorageLensGroupCommand extend
|
|
|
10542
10652
|
return [
|
|
10543
10653
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
10544
10654
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions()),
|
|
10545
|
-
(0,
|
|
10655
|
+
(0, import_middleware_sdk_s3_control94.getProcessArnablesPlugin)(config)
|
|
10546
10656
|
];
|
|
10547
10657
|
}).s("AWSS3ControlServiceV20180820", "UpdateStorageLensGroup", {}).n("S3ControlClient", "UpdateStorageLensGroupCommand").f(void 0, void 0).ser(se_UpdateStorageLensGroupCommand).de(de_UpdateStorageLensGroupCommand).build() {
|
|
10548
10658
|
};
|
|
@@ -10616,6 +10726,7 @@ var commands = {
|
|
|
10616
10726
|
ListAccessGrantsLocationsCommand,
|
|
10617
10727
|
ListAccessPointsCommand,
|
|
10618
10728
|
ListAccessPointsForObjectLambdaCommand,
|
|
10729
|
+
ListCallerAccessGrantsCommand,
|
|
10619
10730
|
ListJobsCommand,
|
|
10620
10731
|
ListMultiRegionAccessPointsCommand,
|
|
10621
10732
|
ListRegionalBucketsCommand,
|
|
@@ -10670,6 +10781,10 @@ var paginateListAccessPointsForObjectLambda = (0, import_core.createPaginator)(S
|
|
|
10670
10781
|
|
|
10671
10782
|
var paginateListAccessPoints = (0, import_core.createPaginator)(S3ControlClient, ListAccessPointsCommand, "NextToken", "NextToken", "MaxResults");
|
|
10672
10783
|
|
|
10784
|
+
// src/pagination/ListCallerAccessGrantsPaginator.ts
|
|
10785
|
+
|
|
10786
|
+
var paginateListCallerAccessGrants = (0, import_core.createPaginator)(S3ControlClient, ListCallerAccessGrantsCommand, "NextToken", "NextToken", "MaxResults");
|
|
10787
|
+
|
|
10673
10788
|
// src/pagination/ListJobsPaginator.ts
|
|
10674
10789
|
|
|
10675
10790
|
var paginateListJobs = (0, import_core.createPaginator)(S3ControlClient, ListJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -10762,6 +10877,7 @@ var paginateListStorageLensGroups = (0, import_core.createPaginator)(S3ControlCl
|
|
|
10762
10877
|
ListAccessGrantsLocationsCommand,
|
|
10763
10878
|
ListAccessPointsCommand,
|
|
10764
10879
|
ListAccessPointsForObjectLambdaCommand,
|
|
10880
|
+
ListCallerAccessGrantsCommand,
|
|
10765
10881
|
ListJobsCommand,
|
|
10766
10882
|
ListMultiRegionAccessPointsCommand,
|
|
10767
10883
|
ListRegionalBucketsCommand,
|
|
@@ -10794,6 +10910,7 @@ var paginateListStorageLensGroups = (0, import_core.createPaginator)(S3ControlCl
|
|
|
10794
10910
|
paginateListAccessGrants,
|
|
10795
10911
|
paginateListAccessPointsForObjectLambda,
|
|
10796
10912
|
paginateListAccessPoints,
|
|
10913
|
+
paginateListCallerAccessGrants,
|
|
10797
10914
|
paginateListJobs,
|
|
10798
10915
|
paginateListMultiRegionAccessPoints,
|
|
10799
10916
|
paginateListRegionalBuckets,
|