@aws-sdk/client-s3-control 3.1068.0 → 3.1069.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +481 -501
- package/dist-cjs/models/S3ControlServiceException.js +4 -8
- package/dist-cjs/models/errors.js +25 -40
- package/dist-cjs/runtimeConfig.browser.js +25 -29
- package/dist-cjs/runtimeConfig.js +35 -39
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +870 -563
- package/package.json +15 -15
package/dist-cjs/index.js
CHANGED
|
@@ -1,20 +1,23 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
var __exportStar = (m, e) => { Object.assign(e, m); };
|
|
2
|
+
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
|
+
const { resolveS3ControlConfig, getHostPrefixDeduplicationPlugin, getProcessArnablesPlugin, getRedirectFromPostIdPlugin } = require("@aws-sdk/middleware-sdk-s3/s3-control");
|
|
4
|
+
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
5
|
+
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
6
|
+
exports.$Command = Command;
|
|
7
|
+
exports.__Client = Client;
|
|
8
|
+
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
9
|
+
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
10
|
+
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
11
|
+
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
12
|
+
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
13
|
+
const { resolveHttpAuthSchemeConfig, defaultS3ControlHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
14
|
+
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
15
|
+
const { getApplyMd5BodyChecksumPlugin } = require("@smithy/middleware-apply-body-checksum");
|
|
16
|
+
const { AssociateAccessGrantsIdentityCenter$, CreateAccessGrant$, CreateAccessGrantsInstance$, CreateAccessGrantsLocation$, CreateAccessPoint$, CreateAccessPointForObjectLambda$, CreateBucket$, CreateJob$, CreateMultiRegionAccessPoint$, CreateStorageLensGroup$, DeleteAccessGrant$, DeleteAccessGrantsInstance$, DeleteAccessGrantsInstanceResourcePolicy$, DeleteAccessGrantsLocation$, DeleteAccessPoint$, DeleteAccessPointForObjectLambda$, DeleteAccessPointPolicy$, DeleteAccessPointPolicyForObjectLambda$, DeleteAccessPointScope$, DeleteBucket$, DeleteBucketLifecycleConfiguration$, DeleteBucketPolicy$, DeleteBucketReplication$, DeleteBucketTagging$, DeleteJobTagging$, DeleteMultiRegionAccessPoint$, DeletePublicAccessBlock$, DeleteStorageLensConfiguration$, DeleteStorageLensConfigurationTagging$, DeleteStorageLensGroup$, DescribeJob$, DescribeMultiRegionAccessPointOperation$, DissociateAccessGrantsIdentityCenter$, GetAccessGrant$, GetAccessGrantsInstance$, GetAccessGrantsInstanceForPrefix$, GetAccessGrantsInstanceResourcePolicy$, GetAccessGrantsLocation$, GetAccessPoint$, GetAccessPointConfigurationForObjectLambda$, GetAccessPointForObjectLambda$, GetAccessPointPolicy$, GetAccessPointPolicyForObjectLambda$, GetAccessPointPolicyStatus$, GetAccessPointPolicyStatusForObjectLambda$, GetAccessPointScope$, GetBucket$, GetBucketLifecycleConfiguration$, GetBucketPolicy$, GetBucketReplication$, GetBucketTagging$, GetBucketVersioning$, GetDataAccess$, GetJobTagging$, GetMultiRegionAccessPoint$, GetMultiRegionAccessPointPolicy$, GetMultiRegionAccessPointPolicyStatus$, GetMultiRegionAccessPointRoutes$, GetPublicAccessBlock$, GetStorageLensConfiguration$, GetStorageLensConfigurationTagging$, GetStorageLensGroup$, ListAccessGrants$, ListAccessGrantsInstances$, ListAccessGrantsLocations$, ListAccessPoints$, ListAccessPointsForDirectoryBuckets$, ListAccessPointsForObjectLambda$, ListCallerAccessGrants$, ListJobs$, ListMultiRegionAccessPoints$, ListRegionalBuckets$, ListStorageLensConfigurations$, ListStorageLensGroups$, ListTagsForResource$, PutAccessGrantsInstanceResourcePolicy$, PutAccessPointConfigurationForObjectLambda$, PutAccessPointPolicy$, PutAccessPointPolicyForObjectLambda$, PutAccessPointScope$, PutBucketLifecycleConfiguration$, PutBucketPolicy$, PutBucketReplication$, PutBucketTagging$, PutBucketVersioning$, PutJobTagging$, PutMultiRegionAccessPointPolicy$, PutPublicAccessBlock$, PutStorageLensConfiguration$, PutStorageLensConfigurationTagging$, SubmitMultiRegionAccessPointRoutes$, TagResource$, UntagResource$, UpdateAccessGrantsLocation$, UpdateJobPriority$, UpdateJobStatus$, UpdateStorageLensGroup$ } = require("./schemas/schemas_0");
|
|
17
|
+
__exportStar(require("./schemas/schemas_0"), exports);
|
|
18
|
+
__exportStar(require("./models/errors"), exports);
|
|
19
|
+
const { S3ControlServiceException } = require("./models/S3ControlServiceException");
|
|
20
|
+
exports.S3ControlServiceException = S3ControlServiceException;
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -71,49 +74,49 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
71
74
|
};
|
|
72
75
|
|
|
73
76
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
74
|
-
const extensionConfiguration = Object.assign(
|
|
77
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
75
78
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
76
|
-
return Object.assign(runtimeConfig,
|
|
79
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
77
80
|
};
|
|
78
81
|
|
|
79
|
-
class S3ControlClient extends
|
|
82
|
+
class S3ControlClient extends Client {
|
|
80
83
|
config;
|
|
81
84
|
constructor(...[configuration]) {
|
|
82
|
-
const _config_0 =
|
|
85
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
83
86
|
super(_config_0);
|
|
84
87
|
this.initConfig = _config_0;
|
|
85
88
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
86
|
-
const _config_2 =
|
|
87
|
-
const _config_3 =
|
|
88
|
-
const _config_4 =
|
|
89
|
-
const _config_5 =
|
|
90
|
-
const _config_6 =
|
|
91
|
-
const _config_7 =
|
|
92
|
-
const _config_8 =
|
|
89
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
90
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
91
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
92
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
93
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
94
|
+
const _config_7 = resolveS3ControlConfig(_config_6);
|
|
95
|
+
const _config_8 = resolveHttpAuthSchemeConfig(_config_7);
|
|
93
96
|
const _config_9 = resolveRuntimeExtensions(_config_8, configuration?.extensions || []);
|
|
94
97
|
this.config = _config_9;
|
|
95
|
-
this.middlewareStack.use(
|
|
96
|
-
this.middlewareStack.use(
|
|
97
|
-
this.middlewareStack.use(
|
|
98
|
-
this.middlewareStack.use(
|
|
99
|
-
this.middlewareStack.use(
|
|
100
|
-
this.middlewareStack.use(
|
|
101
|
-
this.middlewareStack.use(
|
|
102
|
-
this.middlewareStack.use(
|
|
103
|
-
this.middlewareStack.use(
|
|
104
|
-
httpAuthSchemeParametersProvider:
|
|
105
|
-
identityProviderConfigProvider: async (config) => new
|
|
98
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
100
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
101
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
102
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
103
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
104
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
105
|
+
this.middlewareStack.use(getHostPrefixDeduplicationPlugin(this.config));
|
|
106
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
107
|
+
httpAuthSchemeParametersProvider: defaultS3ControlHttpAuthSchemeParametersProvider,
|
|
108
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
106
109
|
"aws.auth#sigv4": config.credentials,
|
|
107
110
|
}),
|
|
108
111
|
}));
|
|
109
|
-
this.middlewareStack.use(
|
|
112
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
110
113
|
}
|
|
111
114
|
destroy() {
|
|
112
115
|
super.destroy();
|
|
113
116
|
}
|
|
114
117
|
}
|
|
115
118
|
|
|
116
|
-
class AssociateAccessGrantsIdentityCenterCommand extends
|
|
119
|
+
class AssociateAccessGrantsIdentityCenterCommand extends Command
|
|
117
120
|
.classBuilder()
|
|
118
121
|
.ep({
|
|
119
122
|
...commonParams,
|
|
@@ -122,18 +125,18 @@ class AssociateAccessGrantsIdentityCenterCommand extends client.Command
|
|
|
122
125
|
})
|
|
123
126
|
.m(function (Command, cs, config, o) {
|
|
124
127
|
return [
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
129
|
+
getProcessArnablesPlugin(config),
|
|
130
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
128
131
|
];
|
|
129
132
|
})
|
|
130
133
|
.s("AWSS3ControlServiceV20180820", "AssociateAccessGrantsIdentityCenter", {})
|
|
131
134
|
.n("S3ControlClient", "AssociateAccessGrantsIdentityCenterCommand")
|
|
132
|
-
.sc(
|
|
135
|
+
.sc(AssociateAccessGrantsIdentityCenter$)
|
|
133
136
|
.build() {
|
|
134
137
|
}
|
|
135
138
|
|
|
136
|
-
class CreateAccessGrantCommand extends
|
|
139
|
+
class CreateAccessGrantCommand extends Command
|
|
137
140
|
.classBuilder()
|
|
138
141
|
.ep({
|
|
139
142
|
...commonParams,
|
|
@@ -142,18 +145,18 @@ class CreateAccessGrantCommand extends client.Command
|
|
|
142
145
|
})
|
|
143
146
|
.m(function (Command, cs, config, o) {
|
|
144
147
|
return [
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
149
|
+
getProcessArnablesPlugin(config),
|
|
150
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
148
151
|
];
|
|
149
152
|
})
|
|
150
153
|
.s("AWSS3ControlServiceV20180820", "CreateAccessGrant", {})
|
|
151
154
|
.n("S3ControlClient", "CreateAccessGrantCommand")
|
|
152
|
-
.sc(
|
|
155
|
+
.sc(CreateAccessGrant$)
|
|
153
156
|
.build() {
|
|
154
157
|
}
|
|
155
158
|
|
|
156
|
-
class CreateAccessGrantsInstanceCommand extends
|
|
159
|
+
class CreateAccessGrantsInstanceCommand extends Command
|
|
157
160
|
.classBuilder()
|
|
158
161
|
.ep({
|
|
159
162
|
...commonParams,
|
|
@@ -162,18 +165,18 @@ class CreateAccessGrantsInstanceCommand extends client.Command
|
|
|
162
165
|
})
|
|
163
166
|
.m(function (Command, cs, config, o) {
|
|
164
167
|
return [
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
169
|
+
getProcessArnablesPlugin(config),
|
|
170
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
168
171
|
];
|
|
169
172
|
})
|
|
170
173
|
.s("AWSS3ControlServiceV20180820", "CreateAccessGrantsInstance", {})
|
|
171
174
|
.n("S3ControlClient", "CreateAccessGrantsInstanceCommand")
|
|
172
|
-
.sc(
|
|
175
|
+
.sc(CreateAccessGrantsInstance$)
|
|
173
176
|
.build() {
|
|
174
177
|
}
|
|
175
178
|
|
|
176
|
-
class CreateAccessGrantsLocationCommand extends
|
|
179
|
+
class CreateAccessGrantsLocationCommand extends Command
|
|
177
180
|
.classBuilder()
|
|
178
181
|
.ep({
|
|
179
182
|
...commonParams,
|
|
@@ -182,18 +185,18 @@ class CreateAccessGrantsLocationCommand extends client.Command
|
|
|
182
185
|
})
|
|
183
186
|
.m(function (Command, cs, config, o) {
|
|
184
187
|
return [
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
189
|
+
getProcessArnablesPlugin(config),
|
|
190
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
188
191
|
];
|
|
189
192
|
})
|
|
190
193
|
.s("AWSS3ControlServiceV20180820", "CreateAccessGrantsLocation", {})
|
|
191
194
|
.n("S3ControlClient", "CreateAccessGrantsLocationCommand")
|
|
192
|
-
.sc(
|
|
195
|
+
.sc(CreateAccessGrantsLocation$)
|
|
193
196
|
.build() {
|
|
194
197
|
}
|
|
195
198
|
|
|
196
|
-
class CreateAccessPointCommand extends
|
|
199
|
+
class CreateAccessPointCommand extends Command
|
|
197
200
|
.classBuilder()
|
|
198
201
|
.ep({
|
|
199
202
|
...commonParams,
|
|
@@ -204,17 +207,17 @@ class CreateAccessPointCommand extends client.Command
|
|
|
204
207
|
})
|
|
205
208
|
.m(function (Command, cs, config, o) {
|
|
206
209
|
return [
|
|
207
|
-
|
|
208
|
-
|
|
210
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
211
|
+
getProcessArnablesPlugin(config),
|
|
209
212
|
];
|
|
210
213
|
})
|
|
211
214
|
.s("AWSS3ControlServiceV20180820", "CreateAccessPoint", {})
|
|
212
215
|
.n("S3ControlClient", "CreateAccessPointCommand")
|
|
213
|
-
.sc(
|
|
216
|
+
.sc(CreateAccessPoint$)
|
|
214
217
|
.build() {
|
|
215
218
|
}
|
|
216
219
|
|
|
217
|
-
class CreateAccessPointForObjectLambdaCommand extends
|
|
220
|
+
class CreateAccessPointForObjectLambdaCommand extends Command
|
|
218
221
|
.classBuilder()
|
|
219
222
|
.ep({
|
|
220
223
|
...commonParams,
|
|
@@ -223,17 +226,17 @@ class CreateAccessPointForObjectLambdaCommand extends client.Command
|
|
|
223
226
|
})
|
|
224
227
|
.m(function (Command, cs, config, o) {
|
|
225
228
|
return [
|
|
226
|
-
|
|
227
|
-
|
|
229
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
230
|
+
getProcessArnablesPlugin(config),
|
|
228
231
|
];
|
|
229
232
|
})
|
|
230
233
|
.s("AWSS3ControlServiceV20180820", "CreateAccessPointForObjectLambda", {})
|
|
231
234
|
.n("S3ControlClient", "CreateAccessPointForObjectLambdaCommand")
|
|
232
|
-
.sc(
|
|
235
|
+
.sc(CreateAccessPointForObjectLambda$)
|
|
233
236
|
.build() {
|
|
234
237
|
}
|
|
235
238
|
|
|
236
|
-
class CreateBucketCommand extends
|
|
239
|
+
class CreateBucketCommand extends Command
|
|
237
240
|
.classBuilder()
|
|
238
241
|
.ep({
|
|
239
242
|
...commonParams,
|
|
@@ -242,18 +245,18 @@ class CreateBucketCommand extends client.Command
|
|
|
242
245
|
})
|
|
243
246
|
.m(function (Command, cs, config, o) {
|
|
244
247
|
return [
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
249
|
+
getRedirectFromPostIdPlugin(config),
|
|
250
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
248
251
|
];
|
|
249
252
|
})
|
|
250
253
|
.s("AWSS3ControlServiceV20180820", "CreateBucket", {})
|
|
251
254
|
.n("S3ControlClient", "CreateBucketCommand")
|
|
252
|
-
.sc(
|
|
255
|
+
.sc(CreateBucket$)
|
|
253
256
|
.build() {
|
|
254
257
|
}
|
|
255
258
|
|
|
256
|
-
class CreateJobCommand extends
|
|
259
|
+
class CreateJobCommand extends Command
|
|
257
260
|
.classBuilder()
|
|
258
261
|
.ep({
|
|
259
262
|
...commonParams,
|
|
@@ -262,17 +265,17 @@ class CreateJobCommand extends client.Command
|
|
|
262
265
|
})
|
|
263
266
|
.m(function (Command, cs, config, o) {
|
|
264
267
|
return [
|
|
265
|
-
|
|
266
|
-
|
|
268
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
269
|
+
getProcessArnablesPlugin(config),
|
|
267
270
|
];
|
|
268
271
|
})
|
|
269
272
|
.s("AWSS3ControlServiceV20180820", "CreateJob", {})
|
|
270
273
|
.n("S3ControlClient", "CreateJobCommand")
|
|
271
|
-
.sc(
|
|
274
|
+
.sc(CreateJob$)
|
|
272
275
|
.build() {
|
|
273
276
|
}
|
|
274
277
|
|
|
275
|
-
class CreateMultiRegionAccessPointCommand extends
|
|
278
|
+
class CreateMultiRegionAccessPointCommand extends Command
|
|
276
279
|
.classBuilder()
|
|
277
280
|
.ep({
|
|
278
281
|
...commonParams,
|
|
@@ -281,18 +284,18 @@ class CreateMultiRegionAccessPointCommand extends client.Command
|
|
|
281
284
|
})
|
|
282
285
|
.m(function (Command, cs, config, o) {
|
|
283
286
|
return [
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
288
|
+
getProcessArnablesPlugin(config),
|
|
289
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
287
290
|
];
|
|
288
291
|
})
|
|
289
292
|
.s("AWSS3ControlServiceV20180820", "CreateMultiRegionAccessPoint", {})
|
|
290
293
|
.n("S3ControlClient", "CreateMultiRegionAccessPointCommand")
|
|
291
|
-
.sc(
|
|
294
|
+
.sc(CreateMultiRegionAccessPoint$)
|
|
292
295
|
.build() {
|
|
293
296
|
}
|
|
294
297
|
|
|
295
|
-
class CreateStorageLensGroupCommand extends
|
|
298
|
+
class CreateStorageLensGroupCommand extends Command
|
|
296
299
|
.classBuilder()
|
|
297
300
|
.ep({
|
|
298
301
|
...commonParams,
|
|
@@ -301,17 +304,17 @@ class CreateStorageLensGroupCommand extends client.Command
|
|
|
301
304
|
})
|
|
302
305
|
.m(function (Command, cs, config, o) {
|
|
303
306
|
return [
|
|
304
|
-
|
|
305
|
-
|
|
307
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
308
|
+
getProcessArnablesPlugin(config),
|
|
306
309
|
];
|
|
307
310
|
})
|
|
308
311
|
.s("AWSS3ControlServiceV20180820", "CreateStorageLensGroup", {})
|
|
309
312
|
.n("S3ControlClient", "CreateStorageLensGroupCommand")
|
|
310
|
-
.sc(
|
|
313
|
+
.sc(CreateStorageLensGroup$)
|
|
311
314
|
.build() {
|
|
312
315
|
}
|
|
313
316
|
|
|
314
|
-
class DeleteAccessGrantCommand extends
|
|
317
|
+
class DeleteAccessGrantCommand extends Command
|
|
315
318
|
.classBuilder()
|
|
316
319
|
.ep({
|
|
317
320
|
...commonParams,
|
|
@@ -320,18 +323,18 @@ class DeleteAccessGrantCommand extends client.Command
|
|
|
320
323
|
})
|
|
321
324
|
.m(function (Command, cs, config, o) {
|
|
322
325
|
return [
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
327
|
+
getProcessArnablesPlugin(config),
|
|
328
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
326
329
|
];
|
|
327
330
|
})
|
|
328
331
|
.s("AWSS3ControlServiceV20180820", "DeleteAccessGrant", {})
|
|
329
332
|
.n("S3ControlClient", "DeleteAccessGrantCommand")
|
|
330
|
-
.sc(
|
|
333
|
+
.sc(DeleteAccessGrant$)
|
|
331
334
|
.build() {
|
|
332
335
|
}
|
|
333
336
|
|
|
334
|
-
class DeleteAccessGrantsInstanceCommand extends
|
|
337
|
+
class DeleteAccessGrantsInstanceCommand extends Command
|
|
335
338
|
.classBuilder()
|
|
336
339
|
.ep({
|
|
337
340
|
...commonParams,
|
|
@@ -340,18 +343,18 @@ class DeleteAccessGrantsInstanceCommand extends client.Command
|
|
|
340
343
|
})
|
|
341
344
|
.m(function (Command, cs, config, o) {
|
|
342
345
|
return [
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
347
|
+
getProcessArnablesPlugin(config),
|
|
348
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
346
349
|
];
|
|
347
350
|
})
|
|
348
351
|
.s("AWSS3ControlServiceV20180820", "DeleteAccessGrantsInstance", {})
|
|
349
352
|
.n("S3ControlClient", "DeleteAccessGrantsInstanceCommand")
|
|
350
|
-
.sc(
|
|
353
|
+
.sc(DeleteAccessGrantsInstance$)
|
|
351
354
|
.build() {
|
|
352
355
|
}
|
|
353
356
|
|
|
354
|
-
class DeleteAccessGrantsInstanceResourcePolicyCommand extends
|
|
357
|
+
class DeleteAccessGrantsInstanceResourcePolicyCommand extends Command
|
|
355
358
|
.classBuilder()
|
|
356
359
|
.ep({
|
|
357
360
|
...commonParams,
|
|
@@ -360,18 +363,18 @@ class DeleteAccessGrantsInstanceResourcePolicyCommand extends client.Command
|
|
|
360
363
|
})
|
|
361
364
|
.m(function (Command, cs, config, o) {
|
|
362
365
|
return [
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
367
|
+
getProcessArnablesPlugin(config),
|
|
368
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
366
369
|
];
|
|
367
370
|
})
|
|
368
371
|
.s("AWSS3ControlServiceV20180820", "DeleteAccessGrantsInstanceResourcePolicy", {})
|
|
369
372
|
.n("S3ControlClient", "DeleteAccessGrantsInstanceResourcePolicyCommand")
|
|
370
|
-
.sc(
|
|
373
|
+
.sc(DeleteAccessGrantsInstanceResourcePolicy$)
|
|
371
374
|
.build() {
|
|
372
375
|
}
|
|
373
376
|
|
|
374
|
-
class DeleteAccessGrantsLocationCommand extends
|
|
377
|
+
class DeleteAccessGrantsLocationCommand extends Command
|
|
375
378
|
.classBuilder()
|
|
376
379
|
.ep({
|
|
377
380
|
...commonParams,
|
|
@@ -380,18 +383,18 @@ class DeleteAccessGrantsLocationCommand extends client.Command
|
|
|
380
383
|
})
|
|
381
384
|
.m(function (Command, cs, config, o) {
|
|
382
385
|
return [
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
387
|
+
getProcessArnablesPlugin(config),
|
|
388
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
386
389
|
];
|
|
387
390
|
})
|
|
388
391
|
.s("AWSS3ControlServiceV20180820", "DeleteAccessGrantsLocation", {})
|
|
389
392
|
.n("S3ControlClient", "DeleteAccessGrantsLocationCommand")
|
|
390
|
-
.sc(
|
|
393
|
+
.sc(DeleteAccessGrantsLocation$)
|
|
391
394
|
.build() {
|
|
392
395
|
}
|
|
393
396
|
|
|
394
|
-
class DeleteAccessPointCommand extends
|
|
397
|
+
class DeleteAccessPointCommand extends Command
|
|
395
398
|
.classBuilder()
|
|
396
399
|
.ep({
|
|
397
400
|
...commonParams,
|
|
@@ -401,17 +404,17 @@ class DeleteAccessPointCommand extends client.Command
|
|
|
401
404
|
})
|
|
402
405
|
.m(function (Command, cs, config, o) {
|
|
403
406
|
return [
|
|
404
|
-
|
|
405
|
-
|
|
407
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
408
|
+
getProcessArnablesPlugin(config),
|
|
406
409
|
];
|
|
407
410
|
})
|
|
408
411
|
.s("AWSS3ControlServiceV20180820", "DeleteAccessPoint", {})
|
|
409
412
|
.n("S3ControlClient", "DeleteAccessPointCommand")
|
|
410
|
-
.sc(
|
|
413
|
+
.sc(DeleteAccessPoint$)
|
|
411
414
|
.build() {
|
|
412
415
|
}
|
|
413
416
|
|
|
414
|
-
class DeleteAccessPointForObjectLambdaCommand extends
|
|
417
|
+
class DeleteAccessPointForObjectLambdaCommand extends Command
|
|
415
418
|
.classBuilder()
|
|
416
419
|
.ep({
|
|
417
420
|
...commonParams,
|
|
@@ -420,17 +423,17 @@ class DeleteAccessPointForObjectLambdaCommand extends client.Command
|
|
|
420
423
|
})
|
|
421
424
|
.m(function (Command, cs, config, o) {
|
|
422
425
|
return [
|
|
423
|
-
|
|
424
|
-
|
|
426
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
427
|
+
getProcessArnablesPlugin(config),
|
|
425
428
|
];
|
|
426
429
|
})
|
|
427
430
|
.s("AWSS3ControlServiceV20180820", "DeleteAccessPointForObjectLambda", {})
|
|
428
431
|
.n("S3ControlClient", "DeleteAccessPointForObjectLambdaCommand")
|
|
429
|
-
.sc(
|
|
432
|
+
.sc(DeleteAccessPointForObjectLambda$)
|
|
430
433
|
.build() {
|
|
431
434
|
}
|
|
432
435
|
|
|
433
|
-
class DeleteAccessPointPolicyCommand extends
|
|
436
|
+
class DeleteAccessPointPolicyCommand extends Command
|
|
434
437
|
.classBuilder()
|
|
435
438
|
.ep({
|
|
436
439
|
...commonParams,
|
|
@@ -440,17 +443,17 @@ class DeleteAccessPointPolicyCommand extends client.Command
|
|
|
440
443
|
})
|
|
441
444
|
.m(function (Command, cs, config, o) {
|
|
442
445
|
return [
|
|
443
|
-
|
|
444
|
-
|
|
446
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
447
|
+
getProcessArnablesPlugin(config),
|
|
445
448
|
];
|
|
446
449
|
})
|
|
447
450
|
.s("AWSS3ControlServiceV20180820", "DeleteAccessPointPolicy", {})
|
|
448
451
|
.n("S3ControlClient", "DeleteAccessPointPolicyCommand")
|
|
449
|
-
.sc(
|
|
452
|
+
.sc(DeleteAccessPointPolicy$)
|
|
450
453
|
.build() {
|
|
451
454
|
}
|
|
452
455
|
|
|
453
|
-
class DeleteAccessPointPolicyForObjectLambdaCommand extends
|
|
456
|
+
class DeleteAccessPointPolicyForObjectLambdaCommand extends Command
|
|
454
457
|
.classBuilder()
|
|
455
458
|
.ep({
|
|
456
459
|
...commonParams,
|
|
@@ -459,17 +462,17 @@ class DeleteAccessPointPolicyForObjectLambdaCommand extends client.Command
|
|
|
459
462
|
})
|
|
460
463
|
.m(function (Command, cs, config, o) {
|
|
461
464
|
return [
|
|
462
|
-
|
|
463
|
-
|
|
465
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
466
|
+
getProcessArnablesPlugin(config),
|
|
464
467
|
];
|
|
465
468
|
})
|
|
466
469
|
.s("AWSS3ControlServiceV20180820", "DeleteAccessPointPolicyForObjectLambda", {})
|
|
467
470
|
.n("S3ControlClient", "DeleteAccessPointPolicyForObjectLambdaCommand")
|
|
468
|
-
.sc(
|
|
471
|
+
.sc(DeleteAccessPointPolicyForObjectLambda$)
|
|
469
472
|
.build() {
|
|
470
473
|
}
|
|
471
474
|
|
|
472
|
-
class DeleteAccessPointScopeCommand extends
|
|
475
|
+
class DeleteAccessPointScopeCommand extends Command
|
|
473
476
|
.classBuilder()
|
|
474
477
|
.ep({
|
|
475
478
|
...commonParams,
|
|
@@ -480,17 +483,17 @@ class DeleteAccessPointScopeCommand extends client.Command
|
|
|
480
483
|
})
|
|
481
484
|
.m(function (Command, cs, config, o) {
|
|
482
485
|
return [
|
|
483
|
-
|
|
484
|
-
|
|
486
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
487
|
+
getProcessArnablesPlugin(config),
|
|
485
488
|
];
|
|
486
489
|
})
|
|
487
490
|
.s("AWSS3ControlServiceV20180820", "DeleteAccessPointScope", {})
|
|
488
491
|
.n("S3ControlClient", "DeleteAccessPointScopeCommand")
|
|
489
|
-
.sc(
|
|
492
|
+
.sc(DeleteAccessPointScope$)
|
|
490
493
|
.build() {
|
|
491
494
|
}
|
|
492
495
|
|
|
493
|
-
class DeleteBucketCommand extends
|
|
496
|
+
class DeleteBucketCommand extends Command
|
|
494
497
|
.classBuilder()
|
|
495
498
|
.ep({
|
|
496
499
|
...commonParams,
|
|
@@ -500,17 +503,17 @@ class DeleteBucketCommand extends client.Command
|
|
|
500
503
|
})
|
|
501
504
|
.m(function (Command, cs, config, o) {
|
|
502
505
|
return [
|
|
503
|
-
|
|
504
|
-
|
|
506
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
507
|
+
getProcessArnablesPlugin(config),
|
|
505
508
|
];
|
|
506
509
|
})
|
|
507
510
|
.s("AWSS3ControlServiceV20180820", "DeleteBucket", {})
|
|
508
511
|
.n("S3ControlClient", "DeleteBucketCommand")
|
|
509
|
-
.sc(
|
|
512
|
+
.sc(DeleteBucket$)
|
|
510
513
|
.build() {
|
|
511
514
|
}
|
|
512
515
|
|
|
513
|
-
class DeleteBucketLifecycleConfigurationCommand extends
|
|
516
|
+
class DeleteBucketLifecycleConfigurationCommand extends Command
|
|
514
517
|
.classBuilder()
|
|
515
518
|
.ep({
|
|
516
519
|
...commonParams,
|
|
@@ -520,17 +523,17 @@ class DeleteBucketLifecycleConfigurationCommand extends client.Command
|
|
|
520
523
|
})
|
|
521
524
|
.m(function (Command, cs, config, o) {
|
|
522
525
|
return [
|
|
523
|
-
|
|
524
|
-
|
|
526
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
527
|
+
getProcessArnablesPlugin(config),
|
|
525
528
|
];
|
|
526
529
|
})
|
|
527
530
|
.s("AWSS3ControlServiceV20180820", "DeleteBucketLifecycleConfiguration", {})
|
|
528
531
|
.n("S3ControlClient", "DeleteBucketLifecycleConfigurationCommand")
|
|
529
|
-
.sc(
|
|
532
|
+
.sc(DeleteBucketLifecycleConfiguration$)
|
|
530
533
|
.build() {
|
|
531
534
|
}
|
|
532
535
|
|
|
533
|
-
class DeleteBucketPolicyCommand extends
|
|
536
|
+
class DeleteBucketPolicyCommand extends Command
|
|
534
537
|
.classBuilder()
|
|
535
538
|
.ep({
|
|
536
539
|
...commonParams,
|
|
@@ -540,17 +543,17 @@ class DeleteBucketPolicyCommand extends client.Command
|
|
|
540
543
|
})
|
|
541
544
|
.m(function (Command, cs, config, o) {
|
|
542
545
|
return [
|
|
543
|
-
|
|
544
|
-
|
|
546
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
547
|
+
getProcessArnablesPlugin(config),
|
|
545
548
|
];
|
|
546
549
|
})
|
|
547
550
|
.s("AWSS3ControlServiceV20180820", "DeleteBucketPolicy", {})
|
|
548
551
|
.n("S3ControlClient", "DeleteBucketPolicyCommand")
|
|
549
|
-
.sc(
|
|
552
|
+
.sc(DeleteBucketPolicy$)
|
|
550
553
|
.build() {
|
|
551
554
|
}
|
|
552
555
|
|
|
553
|
-
class DeleteBucketReplicationCommand extends
|
|
556
|
+
class DeleteBucketReplicationCommand extends Command
|
|
554
557
|
.classBuilder()
|
|
555
558
|
.ep({
|
|
556
559
|
...commonParams,
|
|
@@ -560,17 +563,17 @@ class DeleteBucketReplicationCommand extends client.Command
|
|
|
560
563
|
})
|
|
561
564
|
.m(function (Command, cs, config, o) {
|
|
562
565
|
return [
|
|
563
|
-
|
|
564
|
-
|
|
566
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
567
|
+
getProcessArnablesPlugin(config),
|
|
565
568
|
];
|
|
566
569
|
})
|
|
567
570
|
.s("AWSS3ControlServiceV20180820", "DeleteBucketReplication", {})
|
|
568
571
|
.n("S3ControlClient", "DeleteBucketReplicationCommand")
|
|
569
|
-
.sc(
|
|
572
|
+
.sc(DeleteBucketReplication$)
|
|
570
573
|
.build() {
|
|
571
574
|
}
|
|
572
575
|
|
|
573
|
-
class DeleteBucketTaggingCommand extends
|
|
576
|
+
class DeleteBucketTaggingCommand extends Command
|
|
574
577
|
.classBuilder()
|
|
575
578
|
.ep({
|
|
576
579
|
...commonParams,
|
|
@@ -580,17 +583,17 @@ class DeleteBucketTaggingCommand extends client.Command
|
|
|
580
583
|
})
|
|
581
584
|
.m(function (Command, cs, config, o) {
|
|
582
585
|
return [
|
|
583
|
-
|
|
584
|
-
|
|
586
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
587
|
+
getProcessArnablesPlugin(config),
|
|
585
588
|
];
|
|
586
589
|
})
|
|
587
590
|
.s("AWSS3ControlServiceV20180820", "DeleteBucketTagging", {})
|
|
588
591
|
.n("S3ControlClient", "DeleteBucketTaggingCommand")
|
|
589
|
-
.sc(
|
|
592
|
+
.sc(DeleteBucketTagging$)
|
|
590
593
|
.build() {
|
|
591
594
|
}
|
|
592
595
|
|
|
593
|
-
class DeleteJobTaggingCommand extends
|
|
596
|
+
class DeleteJobTaggingCommand extends Command
|
|
594
597
|
.classBuilder()
|
|
595
598
|
.ep({
|
|
596
599
|
...commonParams,
|
|
@@ -599,17 +602,17 @@ class DeleteJobTaggingCommand extends client.Command
|
|
|
599
602
|
})
|
|
600
603
|
.m(function (Command, cs, config, o) {
|
|
601
604
|
return [
|
|
602
|
-
|
|
603
|
-
|
|
605
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
606
|
+
getProcessArnablesPlugin(config),
|
|
604
607
|
];
|
|
605
608
|
})
|
|
606
609
|
.s("AWSS3ControlServiceV20180820", "DeleteJobTagging", {})
|
|
607
610
|
.n("S3ControlClient", "DeleteJobTaggingCommand")
|
|
608
|
-
.sc(
|
|
611
|
+
.sc(DeleteJobTagging$)
|
|
609
612
|
.build() {
|
|
610
613
|
}
|
|
611
614
|
|
|
612
|
-
class DeleteMultiRegionAccessPointCommand extends
|
|
615
|
+
class DeleteMultiRegionAccessPointCommand extends Command
|
|
613
616
|
.classBuilder()
|
|
614
617
|
.ep({
|
|
615
618
|
...commonParams,
|
|
@@ -618,18 +621,18 @@ class DeleteMultiRegionAccessPointCommand extends client.Command
|
|
|
618
621
|
})
|
|
619
622
|
.m(function (Command, cs, config, o) {
|
|
620
623
|
return [
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
625
|
+
getProcessArnablesPlugin(config),
|
|
626
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
624
627
|
];
|
|
625
628
|
})
|
|
626
629
|
.s("AWSS3ControlServiceV20180820", "DeleteMultiRegionAccessPoint", {})
|
|
627
630
|
.n("S3ControlClient", "DeleteMultiRegionAccessPointCommand")
|
|
628
|
-
.sc(
|
|
631
|
+
.sc(DeleteMultiRegionAccessPoint$)
|
|
629
632
|
.build() {
|
|
630
633
|
}
|
|
631
634
|
|
|
632
|
-
class DeletePublicAccessBlockCommand extends
|
|
635
|
+
class DeletePublicAccessBlockCommand extends Command
|
|
633
636
|
.classBuilder()
|
|
634
637
|
.ep({
|
|
635
638
|
...commonParams,
|
|
@@ -638,17 +641,17 @@ class DeletePublicAccessBlockCommand extends client.Command
|
|
|
638
641
|
})
|
|
639
642
|
.m(function (Command, cs, config, o) {
|
|
640
643
|
return [
|
|
641
|
-
|
|
642
|
-
|
|
644
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
645
|
+
getProcessArnablesPlugin(config),
|
|
643
646
|
];
|
|
644
647
|
})
|
|
645
648
|
.s("AWSS3ControlServiceV20180820", "DeletePublicAccessBlock", {})
|
|
646
649
|
.n("S3ControlClient", "DeletePublicAccessBlockCommand")
|
|
647
|
-
.sc(
|
|
650
|
+
.sc(DeletePublicAccessBlock$)
|
|
648
651
|
.build() {
|
|
649
652
|
}
|
|
650
653
|
|
|
651
|
-
class DeleteStorageLensConfigurationCommand extends
|
|
654
|
+
class DeleteStorageLensConfigurationCommand extends Command
|
|
652
655
|
.classBuilder()
|
|
653
656
|
.ep({
|
|
654
657
|
...commonParams,
|
|
@@ -657,17 +660,17 @@ class DeleteStorageLensConfigurationCommand extends client.Command
|
|
|
657
660
|
})
|
|
658
661
|
.m(function (Command, cs, config, o) {
|
|
659
662
|
return [
|
|
660
|
-
|
|
661
|
-
|
|
663
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
664
|
+
getProcessArnablesPlugin(config),
|
|
662
665
|
];
|
|
663
666
|
})
|
|
664
667
|
.s("AWSS3ControlServiceV20180820", "DeleteStorageLensConfiguration", {})
|
|
665
668
|
.n("S3ControlClient", "DeleteStorageLensConfigurationCommand")
|
|
666
|
-
.sc(
|
|
669
|
+
.sc(DeleteStorageLensConfiguration$)
|
|
667
670
|
.build() {
|
|
668
671
|
}
|
|
669
672
|
|
|
670
|
-
class DeleteStorageLensConfigurationTaggingCommand extends
|
|
673
|
+
class DeleteStorageLensConfigurationTaggingCommand extends Command
|
|
671
674
|
.classBuilder()
|
|
672
675
|
.ep({
|
|
673
676
|
...commonParams,
|
|
@@ -676,17 +679,17 @@ class DeleteStorageLensConfigurationTaggingCommand extends client.Command
|
|
|
676
679
|
})
|
|
677
680
|
.m(function (Command, cs, config, o) {
|
|
678
681
|
return [
|
|
679
|
-
|
|
680
|
-
|
|
682
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
683
|
+
getProcessArnablesPlugin(config),
|
|
681
684
|
];
|
|
682
685
|
})
|
|
683
686
|
.s("AWSS3ControlServiceV20180820", "DeleteStorageLensConfigurationTagging", {})
|
|
684
687
|
.n("S3ControlClient", "DeleteStorageLensConfigurationTaggingCommand")
|
|
685
|
-
.sc(
|
|
688
|
+
.sc(DeleteStorageLensConfigurationTagging$)
|
|
686
689
|
.build() {
|
|
687
690
|
}
|
|
688
691
|
|
|
689
|
-
class DeleteStorageLensGroupCommand extends
|
|
692
|
+
class DeleteStorageLensGroupCommand extends Command
|
|
690
693
|
.classBuilder()
|
|
691
694
|
.ep({
|
|
692
695
|
...commonParams,
|
|
@@ -695,17 +698,17 @@ class DeleteStorageLensGroupCommand extends client.Command
|
|
|
695
698
|
})
|
|
696
699
|
.m(function (Command, cs, config, o) {
|
|
697
700
|
return [
|
|
698
|
-
|
|
699
|
-
|
|
701
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
702
|
+
getProcessArnablesPlugin(config),
|
|
700
703
|
];
|
|
701
704
|
})
|
|
702
705
|
.s("AWSS3ControlServiceV20180820", "DeleteStorageLensGroup", {})
|
|
703
706
|
.n("S3ControlClient", "DeleteStorageLensGroupCommand")
|
|
704
|
-
.sc(
|
|
707
|
+
.sc(DeleteStorageLensGroup$)
|
|
705
708
|
.build() {
|
|
706
709
|
}
|
|
707
710
|
|
|
708
|
-
class DescribeJobCommand extends
|
|
711
|
+
class DescribeJobCommand extends Command
|
|
709
712
|
.classBuilder()
|
|
710
713
|
.ep({
|
|
711
714
|
...commonParams,
|
|
@@ -714,17 +717,17 @@ class DescribeJobCommand extends client.Command
|
|
|
714
717
|
})
|
|
715
718
|
.m(function (Command, cs, config, o) {
|
|
716
719
|
return [
|
|
717
|
-
|
|
718
|
-
|
|
720
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
721
|
+
getProcessArnablesPlugin(config),
|
|
719
722
|
];
|
|
720
723
|
})
|
|
721
724
|
.s("AWSS3ControlServiceV20180820", "DescribeJob", {})
|
|
722
725
|
.n("S3ControlClient", "DescribeJobCommand")
|
|
723
|
-
.sc(
|
|
726
|
+
.sc(DescribeJob$)
|
|
724
727
|
.build() {
|
|
725
728
|
}
|
|
726
729
|
|
|
727
|
-
class DescribeMultiRegionAccessPointOperationCommand extends
|
|
730
|
+
class DescribeMultiRegionAccessPointOperationCommand extends Command
|
|
728
731
|
.classBuilder()
|
|
729
732
|
.ep({
|
|
730
733
|
...commonParams,
|
|
@@ -733,18 +736,18 @@ class DescribeMultiRegionAccessPointOperationCommand extends client.Command
|
|
|
733
736
|
})
|
|
734
737
|
.m(function (Command, cs, config, o) {
|
|
735
738
|
return [
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
740
|
+
getProcessArnablesPlugin(config),
|
|
741
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
739
742
|
];
|
|
740
743
|
})
|
|
741
744
|
.s("AWSS3ControlServiceV20180820", "DescribeMultiRegionAccessPointOperation", {})
|
|
742
745
|
.n("S3ControlClient", "DescribeMultiRegionAccessPointOperationCommand")
|
|
743
|
-
.sc(
|
|
746
|
+
.sc(DescribeMultiRegionAccessPointOperation$)
|
|
744
747
|
.build() {
|
|
745
748
|
}
|
|
746
749
|
|
|
747
|
-
class DissociateAccessGrantsIdentityCenterCommand extends
|
|
750
|
+
class DissociateAccessGrantsIdentityCenterCommand extends Command
|
|
748
751
|
.classBuilder()
|
|
749
752
|
.ep({
|
|
750
753
|
...commonParams,
|
|
@@ -753,18 +756,18 @@ class DissociateAccessGrantsIdentityCenterCommand extends client.Command
|
|
|
753
756
|
})
|
|
754
757
|
.m(function (Command, cs, config, o) {
|
|
755
758
|
return [
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
760
|
+
getProcessArnablesPlugin(config),
|
|
761
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
759
762
|
];
|
|
760
763
|
})
|
|
761
764
|
.s("AWSS3ControlServiceV20180820", "DissociateAccessGrantsIdentityCenter", {})
|
|
762
765
|
.n("S3ControlClient", "DissociateAccessGrantsIdentityCenterCommand")
|
|
763
|
-
.sc(
|
|
766
|
+
.sc(DissociateAccessGrantsIdentityCenter$)
|
|
764
767
|
.build() {
|
|
765
768
|
}
|
|
766
769
|
|
|
767
|
-
class GetAccessGrantCommand extends
|
|
770
|
+
class GetAccessGrantCommand extends Command
|
|
768
771
|
.classBuilder()
|
|
769
772
|
.ep({
|
|
770
773
|
...commonParams,
|
|
@@ -773,18 +776,18 @@ class GetAccessGrantCommand extends client.Command
|
|
|
773
776
|
})
|
|
774
777
|
.m(function (Command, cs, config, o) {
|
|
775
778
|
return [
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
780
|
+
getProcessArnablesPlugin(config),
|
|
781
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
779
782
|
];
|
|
780
783
|
})
|
|
781
784
|
.s("AWSS3ControlServiceV20180820", "GetAccessGrant", {})
|
|
782
785
|
.n("S3ControlClient", "GetAccessGrantCommand")
|
|
783
|
-
.sc(
|
|
786
|
+
.sc(GetAccessGrant$)
|
|
784
787
|
.build() {
|
|
785
788
|
}
|
|
786
789
|
|
|
787
|
-
class GetAccessGrantsInstanceCommand extends
|
|
790
|
+
class GetAccessGrantsInstanceCommand extends Command
|
|
788
791
|
.classBuilder()
|
|
789
792
|
.ep({
|
|
790
793
|
...commonParams,
|
|
@@ -793,18 +796,18 @@ class GetAccessGrantsInstanceCommand extends client.Command
|
|
|
793
796
|
})
|
|
794
797
|
.m(function (Command, cs, config, o) {
|
|
795
798
|
return [
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
800
|
+
getProcessArnablesPlugin(config),
|
|
801
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
799
802
|
];
|
|
800
803
|
})
|
|
801
804
|
.s("AWSS3ControlServiceV20180820", "GetAccessGrantsInstance", {})
|
|
802
805
|
.n("S3ControlClient", "GetAccessGrantsInstanceCommand")
|
|
803
|
-
.sc(
|
|
806
|
+
.sc(GetAccessGrantsInstance$)
|
|
804
807
|
.build() {
|
|
805
808
|
}
|
|
806
809
|
|
|
807
|
-
class GetAccessGrantsInstanceForPrefixCommand extends
|
|
810
|
+
class GetAccessGrantsInstanceForPrefixCommand extends Command
|
|
808
811
|
.classBuilder()
|
|
809
812
|
.ep({
|
|
810
813
|
...commonParams,
|
|
@@ -813,18 +816,18 @@ class GetAccessGrantsInstanceForPrefixCommand extends client.Command
|
|
|
813
816
|
})
|
|
814
817
|
.m(function (Command, cs, config, o) {
|
|
815
818
|
return [
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
820
|
+
getProcessArnablesPlugin(config),
|
|
821
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
819
822
|
];
|
|
820
823
|
})
|
|
821
824
|
.s("AWSS3ControlServiceV20180820", "GetAccessGrantsInstanceForPrefix", {})
|
|
822
825
|
.n("S3ControlClient", "GetAccessGrantsInstanceForPrefixCommand")
|
|
823
|
-
.sc(
|
|
826
|
+
.sc(GetAccessGrantsInstanceForPrefix$)
|
|
824
827
|
.build() {
|
|
825
828
|
}
|
|
826
829
|
|
|
827
|
-
class GetAccessGrantsInstanceResourcePolicyCommand extends
|
|
830
|
+
class GetAccessGrantsInstanceResourcePolicyCommand extends Command
|
|
828
831
|
.classBuilder()
|
|
829
832
|
.ep({
|
|
830
833
|
...commonParams,
|
|
@@ -833,18 +836,18 @@ class GetAccessGrantsInstanceResourcePolicyCommand extends client.Command
|
|
|
833
836
|
})
|
|
834
837
|
.m(function (Command, cs, config, o) {
|
|
835
838
|
return [
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
840
|
+
getProcessArnablesPlugin(config),
|
|
841
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
839
842
|
];
|
|
840
843
|
})
|
|
841
844
|
.s("AWSS3ControlServiceV20180820", "GetAccessGrantsInstanceResourcePolicy", {})
|
|
842
845
|
.n("S3ControlClient", "GetAccessGrantsInstanceResourcePolicyCommand")
|
|
843
|
-
.sc(
|
|
846
|
+
.sc(GetAccessGrantsInstanceResourcePolicy$)
|
|
844
847
|
.build() {
|
|
845
848
|
}
|
|
846
849
|
|
|
847
|
-
class GetAccessGrantsLocationCommand extends
|
|
850
|
+
class GetAccessGrantsLocationCommand extends Command
|
|
848
851
|
.classBuilder()
|
|
849
852
|
.ep({
|
|
850
853
|
...commonParams,
|
|
@@ -853,18 +856,18 @@ class GetAccessGrantsLocationCommand extends client.Command
|
|
|
853
856
|
})
|
|
854
857
|
.m(function (Command, cs, config, o) {
|
|
855
858
|
return [
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
860
|
+
getProcessArnablesPlugin(config),
|
|
861
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
859
862
|
];
|
|
860
863
|
})
|
|
861
864
|
.s("AWSS3ControlServiceV20180820", "GetAccessGrantsLocation", {})
|
|
862
865
|
.n("S3ControlClient", "GetAccessGrantsLocationCommand")
|
|
863
|
-
.sc(
|
|
866
|
+
.sc(GetAccessGrantsLocation$)
|
|
864
867
|
.build() {
|
|
865
868
|
}
|
|
866
869
|
|
|
867
|
-
class GetAccessPointCommand extends
|
|
870
|
+
class GetAccessPointCommand extends Command
|
|
868
871
|
.classBuilder()
|
|
869
872
|
.ep({
|
|
870
873
|
...commonParams,
|
|
@@ -874,17 +877,17 @@ class GetAccessPointCommand extends client.Command
|
|
|
874
877
|
})
|
|
875
878
|
.m(function (Command, cs, config, o) {
|
|
876
879
|
return [
|
|
877
|
-
|
|
878
|
-
|
|
880
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
881
|
+
getProcessArnablesPlugin(config),
|
|
879
882
|
];
|
|
880
883
|
})
|
|
881
884
|
.s("AWSS3ControlServiceV20180820", "GetAccessPoint", {})
|
|
882
885
|
.n("S3ControlClient", "GetAccessPointCommand")
|
|
883
|
-
.sc(
|
|
886
|
+
.sc(GetAccessPoint$)
|
|
884
887
|
.build() {
|
|
885
888
|
}
|
|
886
889
|
|
|
887
|
-
class GetAccessPointConfigurationForObjectLambdaCommand extends
|
|
890
|
+
class GetAccessPointConfigurationForObjectLambdaCommand extends Command
|
|
888
891
|
.classBuilder()
|
|
889
892
|
.ep({
|
|
890
893
|
...commonParams,
|
|
@@ -893,17 +896,17 @@ class GetAccessPointConfigurationForObjectLambdaCommand extends client.Command
|
|
|
893
896
|
})
|
|
894
897
|
.m(function (Command, cs, config, o) {
|
|
895
898
|
return [
|
|
896
|
-
|
|
897
|
-
|
|
899
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
900
|
+
getProcessArnablesPlugin(config),
|
|
898
901
|
];
|
|
899
902
|
})
|
|
900
903
|
.s("AWSS3ControlServiceV20180820", "GetAccessPointConfigurationForObjectLambda", {})
|
|
901
904
|
.n("S3ControlClient", "GetAccessPointConfigurationForObjectLambdaCommand")
|
|
902
|
-
.sc(
|
|
905
|
+
.sc(GetAccessPointConfigurationForObjectLambda$)
|
|
903
906
|
.build() {
|
|
904
907
|
}
|
|
905
908
|
|
|
906
|
-
class GetAccessPointForObjectLambdaCommand extends
|
|
909
|
+
class GetAccessPointForObjectLambdaCommand extends Command
|
|
907
910
|
.classBuilder()
|
|
908
911
|
.ep({
|
|
909
912
|
...commonParams,
|
|
@@ -912,17 +915,17 @@ class GetAccessPointForObjectLambdaCommand extends client.Command
|
|
|
912
915
|
})
|
|
913
916
|
.m(function (Command, cs, config, o) {
|
|
914
917
|
return [
|
|
915
|
-
|
|
916
|
-
|
|
918
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
919
|
+
getProcessArnablesPlugin(config),
|
|
917
920
|
];
|
|
918
921
|
})
|
|
919
922
|
.s("AWSS3ControlServiceV20180820", "GetAccessPointForObjectLambda", {})
|
|
920
923
|
.n("S3ControlClient", "GetAccessPointForObjectLambdaCommand")
|
|
921
|
-
.sc(
|
|
924
|
+
.sc(GetAccessPointForObjectLambda$)
|
|
922
925
|
.build() {
|
|
923
926
|
}
|
|
924
927
|
|
|
925
|
-
class GetAccessPointPolicyCommand extends
|
|
928
|
+
class GetAccessPointPolicyCommand extends Command
|
|
926
929
|
.classBuilder()
|
|
927
930
|
.ep({
|
|
928
931
|
...commonParams,
|
|
@@ -932,17 +935,17 @@ class GetAccessPointPolicyCommand extends client.Command
|
|
|
932
935
|
})
|
|
933
936
|
.m(function (Command, cs, config, o) {
|
|
934
937
|
return [
|
|
935
|
-
|
|
936
|
-
|
|
938
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
939
|
+
getProcessArnablesPlugin(config),
|
|
937
940
|
];
|
|
938
941
|
})
|
|
939
942
|
.s("AWSS3ControlServiceV20180820", "GetAccessPointPolicy", {})
|
|
940
943
|
.n("S3ControlClient", "GetAccessPointPolicyCommand")
|
|
941
|
-
.sc(
|
|
944
|
+
.sc(GetAccessPointPolicy$)
|
|
942
945
|
.build() {
|
|
943
946
|
}
|
|
944
947
|
|
|
945
|
-
class GetAccessPointPolicyForObjectLambdaCommand extends
|
|
948
|
+
class GetAccessPointPolicyForObjectLambdaCommand extends Command
|
|
946
949
|
.classBuilder()
|
|
947
950
|
.ep({
|
|
948
951
|
...commonParams,
|
|
@@ -951,17 +954,17 @@ class GetAccessPointPolicyForObjectLambdaCommand extends client.Command
|
|
|
951
954
|
})
|
|
952
955
|
.m(function (Command, cs, config, o) {
|
|
953
956
|
return [
|
|
954
|
-
|
|
955
|
-
|
|
957
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
958
|
+
getProcessArnablesPlugin(config),
|
|
956
959
|
];
|
|
957
960
|
})
|
|
958
961
|
.s("AWSS3ControlServiceV20180820", "GetAccessPointPolicyForObjectLambda", {})
|
|
959
962
|
.n("S3ControlClient", "GetAccessPointPolicyForObjectLambdaCommand")
|
|
960
|
-
.sc(
|
|
963
|
+
.sc(GetAccessPointPolicyForObjectLambda$)
|
|
961
964
|
.build() {
|
|
962
965
|
}
|
|
963
966
|
|
|
964
|
-
class GetAccessPointPolicyStatusCommand extends
|
|
967
|
+
class GetAccessPointPolicyStatusCommand extends Command
|
|
965
968
|
.classBuilder()
|
|
966
969
|
.ep({
|
|
967
970
|
...commonParams,
|
|
@@ -971,17 +974,17 @@ class GetAccessPointPolicyStatusCommand extends client.Command
|
|
|
971
974
|
})
|
|
972
975
|
.m(function (Command, cs, config, o) {
|
|
973
976
|
return [
|
|
974
|
-
|
|
975
|
-
|
|
977
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
978
|
+
getProcessArnablesPlugin(config),
|
|
976
979
|
];
|
|
977
980
|
})
|
|
978
981
|
.s("AWSS3ControlServiceV20180820", "GetAccessPointPolicyStatus", {})
|
|
979
982
|
.n("S3ControlClient", "GetAccessPointPolicyStatusCommand")
|
|
980
|
-
.sc(
|
|
983
|
+
.sc(GetAccessPointPolicyStatus$)
|
|
981
984
|
.build() {
|
|
982
985
|
}
|
|
983
986
|
|
|
984
|
-
class GetAccessPointPolicyStatusForObjectLambdaCommand extends
|
|
987
|
+
class GetAccessPointPolicyStatusForObjectLambdaCommand extends Command
|
|
985
988
|
.classBuilder()
|
|
986
989
|
.ep({
|
|
987
990
|
...commonParams,
|
|
@@ -990,17 +993,17 @@ class GetAccessPointPolicyStatusForObjectLambdaCommand extends client.Command
|
|
|
990
993
|
})
|
|
991
994
|
.m(function (Command, cs, config, o) {
|
|
992
995
|
return [
|
|
993
|
-
|
|
994
|
-
|
|
996
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
997
|
+
getProcessArnablesPlugin(config),
|
|
995
998
|
];
|
|
996
999
|
})
|
|
997
1000
|
.s("AWSS3ControlServiceV20180820", "GetAccessPointPolicyStatusForObjectLambda", {})
|
|
998
1001
|
.n("S3ControlClient", "GetAccessPointPolicyStatusForObjectLambdaCommand")
|
|
999
|
-
.sc(
|
|
1002
|
+
.sc(GetAccessPointPolicyStatusForObjectLambda$)
|
|
1000
1003
|
.build() {
|
|
1001
1004
|
}
|
|
1002
1005
|
|
|
1003
|
-
class GetAccessPointScopeCommand extends
|
|
1006
|
+
class GetAccessPointScopeCommand extends Command
|
|
1004
1007
|
.classBuilder()
|
|
1005
1008
|
.ep({
|
|
1006
1009
|
...commonParams,
|
|
@@ -1011,17 +1014,17 @@ class GetAccessPointScopeCommand extends client.Command
|
|
|
1011
1014
|
})
|
|
1012
1015
|
.m(function (Command, cs, config, o) {
|
|
1013
1016
|
return [
|
|
1014
|
-
|
|
1015
|
-
|
|
1017
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1018
|
+
getProcessArnablesPlugin(config),
|
|
1016
1019
|
];
|
|
1017
1020
|
})
|
|
1018
1021
|
.s("AWSS3ControlServiceV20180820", "GetAccessPointScope", {})
|
|
1019
1022
|
.n("S3ControlClient", "GetAccessPointScopeCommand")
|
|
1020
|
-
.sc(
|
|
1023
|
+
.sc(GetAccessPointScope$)
|
|
1021
1024
|
.build() {
|
|
1022
1025
|
}
|
|
1023
1026
|
|
|
1024
|
-
class GetBucketCommand extends
|
|
1027
|
+
class GetBucketCommand extends Command
|
|
1025
1028
|
.classBuilder()
|
|
1026
1029
|
.ep({
|
|
1027
1030
|
...commonParams,
|
|
@@ -1031,17 +1034,17 @@ class GetBucketCommand extends client.Command
|
|
|
1031
1034
|
})
|
|
1032
1035
|
.m(function (Command, cs, config, o) {
|
|
1033
1036
|
return [
|
|
1034
|
-
|
|
1035
|
-
|
|
1037
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1038
|
+
getProcessArnablesPlugin(config),
|
|
1036
1039
|
];
|
|
1037
1040
|
})
|
|
1038
1041
|
.s("AWSS3ControlServiceV20180820", "GetBucket", {})
|
|
1039
1042
|
.n("S3ControlClient", "GetBucketCommand")
|
|
1040
|
-
.sc(
|
|
1043
|
+
.sc(GetBucket$)
|
|
1041
1044
|
.build() {
|
|
1042
1045
|
}
|
|
1043
1046
|
|
|
1044
|
-
class GetBucketLifecycleConfigurationCommand extends
|
|
1047
|
+
class GetBucketLifecycleConfigurationCommand extends Command
|
|
1045
1048
|
.classBuilder()
|
|
1046
1049
|
.ep({
|
|
1047
1050
|
...commonParams,
|
|
@@ -1051,17 +1054,17 @@ class GetBucketLifecycleConfigurationCommand extends client.Command
|
|
|
1051
1054
|
})
|
|
1052
1055
|
.m(function (Command, cs, config, o) {
|
|
1053
1056
|
return [
|
|
1054
|
-
|
|
1055
|
-
|
|
1057
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1058
|
+
getProcessArnablesPlugin(config),
|
|
1056
1059
|
];
|
|
1057
1060
|
})
|
|
1058
1061
|
.s("AWSS3ControlServiceV20180820", "GetBucketLifecycleConfiguration", {})
|
|
1059
1062
|
.n("S3ControlClient", "GetBucketLifecycleConfigurationCommand")
|
|
1060
|
-
.sc(
|
|
1063
|
+
.sc(GetBucketLifecycleConfiguration$)
|
|
1061
1064
|
.build() {
|
|
1062
1065
|
}
|
|
1063
1066
|
|
|
1064
|
-
class GetBucketPolicyCommand extends
|
|
1067
|
+
class GetBucketPolicyCommand extends Command
|
|
1065
1068
|
.classBuilder()
|
|
1066
1069
|
.ep({
|
|
1067
1070
|
...commonParams,
|
|
@@ -1071,17 +1074,17 @@ class GetBucketPolicyCommand extends client.Command
|
|
|
1071
1074
|
})
|
|
1072
1075
|
.m(function (Command, cs, config, o) {
|
|
1073
1076
|
return [
|
|
1074
|
-
|
|
1075
|
-
|
|
1077
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1078
|
+
getProcessArnablesPlugin(config),
|
|
1076
1079
|
];
|
|
1077
1080
|
})
|
|
1078
1081
|
.s("AWSS3ControlServiceV20180820", "GetBucketPolicy", {})
|
|
1079
1082
|
.n("S3ControlClient", "GetBucketPolicyCommand")
|
|
1080
|
-
.sc(
|
|
1083
|
+
.sc(GetBucketPolicy$)
|
|
1081
1084
|
.build() {
|
|
1082
1085
|
}
|
|
1083
1086
|
|
|
1084
|
-
class GetBucketReplicationCommand extends
|
|
1087
|
+
class GetBucketReplicationCommand extends Command
|
|
1085
1088
|
.classBuilder()
|
|
1086
1089
|
.ep({
|
|
1087
1090
|
...commonParams,
|
|
@@ -1091,17 +1094,17 @@ class GetBucketReplicationCommand extends client.Command
|
|
|
1091
1094
|
})
|
|
1092
1095
|
.m(function (Command, cs, config, o) {
|
|
1093
1096
|
return [
|
|
1094
|
-
|
|
1095
|
-
|
|
1097
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1098
|
+
getProcessArnablesPlugin(config),
|
|
1096
1099
|
];
|
|
1097
1100
|
})
|
|
1098
1101
|
.s("AWSS3ControlServiceV20180820", "GetBucketReplication", {})
|
|
1099
1102
|
.n("S3ControlClient", "GetBucketReplicationCommand")
|
|
1100
|
-
.sc(
|
|
1103
|
+
.sc(GetBucketReplication$)
|
|
1101
1104
|
.build() {
|
|
1102
1105
|
}
|
|
1103
1106
|
|
|
1104
|
-
class GetBucketTaggingCommand extends
|
|
1107
|
+
class GetBucketTaggingCommand extends Command
|
|
1105
1108
|
.classBuilder()
|
|
1106
1109
|
.ep({
|
|
1107
1110
|
...commonParams,
|
|
@@ -1111,17 +1114,17 @@ class GetBucketTaggingCommand extends client.Command
|
|
|
1111
1114
|
})
|
|
1112
1115
|
.m(function (Command, cs, config, o) {
|
|
1113
1116
|
return [
|
|
1114
|
-
|
|
1115
|
-
|
|
1117
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1118
|
+
getProcessArnablesPlugin(config),
|
|
1116
1119
|
];
|
|
1117
1120
|
})
|
|
1118
1121
|
.s("AWSS3ControlServiceV20180820", "GetBucketTagging", {})
|
|
1119
1122
|
.n("S3ControlClient", "GetBucketTaggingCommand")
|
|
1120
|
-
.sc(
|
|
1123
|
+
.sc(GetBucketTagging$)
|
|
1121
1124
|
.build() {
|
|
1122
1125
|
}
|
|
1123
1126
|
|
|
1124
|
-
class GetBucketVersioningCommand extends
|
|
1127
|
+
class GetBucketVersioningCommand extends Command
|
|
1125
1128
|
.classBuilder()
|
|
1126
1129
|
.ep({
|
|
1127
1130
|
...commonParams,
|
|
@@ -1131,17 +1134,17 @@ class GetBucketVersioningCommand extends client.Command
|
|
|
1131
1134
|
})
|
|
1132
1135
|
.m(function (Command, cs, config, o) {
|
|
1133
1136
|
return [
|
|
1134
|
-
|
|
1135
|
-
|
|
1137
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1138
|
+
getProcessArnablesPlugin(config),
|
|
1136
1139
|
];
|
|
1137
1140
|
})
|
|
1138
1141
|
.s("AWSS3ControlServiceV20180820", "GetBucketVersioning", {})
|
|
1139
1142
|
.n("S3ControlClient", "GetBucketVersioningCommand")
|
|
1140
|
-
.sc(
|
|
1143
|
+
.sc(GetBucketVersioning$)
|
|
1141
1144
|
.build() {
|
|
1142
1145
|
}
|
|
1143
1146
|
|
|
1144
|
-
class GetDataAccessCommand extends
|
|
1147
|
+
class GetDataAccessCommand extends Command
|
|
1145
1148
|
.classBuilder()
|
|
1146
1149
|
.ep({
|
|
1147
1150
|
...commonParams,
|
|
@@ -1150,18 +1153,18 @@ class GetDataAccessCommand extends client.Command
|
|
|
1150
1153
|
})
|
|
1151
1154
|
.m(function (Command, cs, config, o) {
|
|
1152
1155
|
return [
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1157
|
+
getProcessArnablesPlugin(config),
|
|
1158
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
1156
1159
|
];
|
|
1157
1160
|
})
|
|
1158
1161
|
.s("AWSS3ControlServiceV20180820", "GetDataAccess", {})
|
|
1159
1162
|
.n("S3ControlClient", "GetDataAccessCommand")
|
|
1160
|
-
.sc(
|
|
1163
|
+
.sc(GetDataAccess$)
|
|
1161
1164
|
.build() {
|
|
1162
1165
|
}
|
|
1163
1166
|
|
|
1164
|
-
class GetJobTaggingCommand extends
|
|
1167
|
+
class GetJobTaggingCommand extends Command
|
|
1165
1168
|
.classBuilder()
|
|
1166
1169
|
.ep({
|
|
1167
1170
|
...commonParams,
|
|
@@ -1170,17 +1173,17 @@ class GetJobTaggingCommand extends client.Command
|
|
|
1170
1173
|
})
|
|
1171
1174
|
.m(function (Command, cs, config, o) {
|
|
1172
1175
|
return [
|
|
1173
|
-
|
|
1174
|
-
|
|
1176
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1177
|
+
getProcessArnablesPlugin(config),
|
|
1175
1178
|
];
|
|
1176
1179
|
})
|
|
1177
1180
|
.s("AWSS3ControlServiceV20180820", "GetJobTagging", {})
|
|
1178
1181
|
.n("S3ControlClient", "GetJobTaggingCommand")
|
|
1179
|
-
.sc(
|
|
1182
|
+
.sc(GetJobTagging$)
|
|
1180
1183
|
.build() {
|
|
1181
1184
|
}
|
|
1182
1185
|
|
|
1183
|
-
class GetMultiRegionAccessPointCommand extends
|
|
1186
|
+
class GetMultiRegionAccessPointCommand extends Command
|
|
1184
1187
|
.classBuilder()
|
|
1185
1188
|
.ep({
|
|
1186
1189
|
...commonParams,
|
|
@@ -1189,18 +1192,18 @@ class GetMultiRegionAccessPointCommand extends client.Command
|
|
|
1189
1192
|
})
|
|
1190
1193
|
.m(function (Command, cs, config, o) {
|
|
1191
1194
|
return [
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1196
|
+
getProcessArnablesPlugin(config),
|
|
1197
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
1195
1198
|
];
|
|
1196
1199
|
})
|
|
1197
1200
|
.s("AWSS3ControlServiceV20180820", "GetMultiRegionAccessPoint", {})
|
|
1198
1201
|
.n("S3ControlClient", "GetMultiRegionAccessPointCommand")
|
|
1199
|
-
.sc(
|
|
1202
|
+
.sc(GetMultiRegionAccessPoint$)
|
|
1200
1203
|
.build() {
|
|
1201
1204
|
}
|
|
1202
1205
|
|
|
1203
|
-
class GetMultiRegionAccessPointPolicyCommand extends
|
|
1206
|
+
class GetMultiRegionAccessPointPolicyCommand extends Command
|
|
1204
1207
|
.classBuilder()
|
|
1205
1208
|
.ep({
|
|
1206
1209
|
...commonParams,
|
|
@@ -1209,18 +1212,18 @@ class GetMultiRegionAccessPointPolicyCommand extends client.Command
|
|
|
1209
1212
|
})
|
|
1210
1213
|
.m(function (Command, cs, config, o) {
|
|
1211
1214
|
return [
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1216
|
+
getProcessArnablesPlugin(config),
|
|
1217
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
1215
1218
|
];
|
|
1216
1219
|
})
|
|
1217
1220
|
.s("AWSS3ControlServiceV20180820", "GetMultiRegionAccessPointPolicy", {})
|
|
1218
1221
|
.n("S3ControlClient", "GetMultiRegionAccessPointPolicyCommand")
|
|
1219
|
-
.sc(
|
|
1222
|
+
.sc(GetMultiRegionAccessPointPolicy$)
|
|
1220
1223
|
.build() {
|
|
1221
1224
|
}
|
|
1222
1225
|
|
|
1223
|
-
class GetMultiRegionAccessPointPolicyStatusCommand extends
|
|
1226
|
+
class GetMultiRegionAccessPointPolicyStatusCommand extends Command
|
|
1224
1227
|
.classBuilder()
|
|
1225
1228
|
.ep({
|
|
1226
1229
|
...commonParams,
|
|
@@ -1229,18 +1232,18 @@ class GetMultiRegionAccessPointPolicyStatusCommand extends client.Command
|
|
|
1229
1232
|
})
|
|
1230
1233
|
.m(function (Command, cs, config, o) {
|
|
1231
1234
|
return [
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1236
|
+
getProcessArnablesPlugin(config),
|
|
1237
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
1235
1238
|
];
|
|
1236
1239
|
})
|
|
1237
1240
|
.s("AWSS3ControlServiceV20180820", "GetMultiRegionAccessPointPolicyStatus", {})
|
|
1238
1241
|
.n("S3ControlClient", "GetMultiRegionAccessPointPolicyStatusCommand")
|
|
1239
|
-
.sc(
|
|
1242
|
+
.sc(GetMultiRegionAccessPointPolicyStatus$)
|
|
1240
1243
|
.build() {
|
|
1241
1244
|
}
|
|
1242
1245
|
|
|
1243
|
-
class GetMultiRegionAccessPointRoutesCommand extends
|
|
1246
|
+
class GetMultiRegionAccessPointRoutesCommand extends Command
|
|
1244
1247
|
.classBuilder()
|
|
1245
1248
|
.ep({
|
|
1246
1249
|
...commonParams,
|
|
@@ -1249,18 +1252,18 @@ class GetMultiRegionAccessPointRoutesCommand extends client.Command
|
|
|
1249
1252
|
})
|
|
1250
1253
|
.m(function (Command, cs, config, o) {
|
|
1251
1254
|
return [
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1256
|
+
getProcessArnablesPlugin(config),
|
|
1257
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
1255
1258
|
];
|
|
1256
1259
|
})
|
|
1257
1260
|
.s("AWSS3ControlServiceV20180820", "GetMultiRegionAccessPointRoutes", {})
|
|
1258
1261
|
.n("S3ControlClient", "GetMultiRegionAccessPointRoutesCommand")
|
|
1259
|
-
.sc(
|
|
1262
|
+
.sc(GetMultiRegionAccessPointRoutes$)
|
|
1260
1263
|
.build() {
|
|
1261
1264
|
}
|
|
1262
1265
|
|
|
1263
|
-
class GetPublicAccessBlockCommand extends
|
|
1266
|
+
class GetPublicAccessBlockCommand extends Command
|
|
1264
1267
|
.classBuilder()
|
|
1265
1268
|
.ep({
|
|
1266
1269
|
...commonParams,
|
|
@@ -1269,17 +1272,17 @@ class GetPublicAccessBlockCommand extends client.Command
|
|
|
1269
1272
|
})
|
|
1270
1273
|
.m(function (Command, cs, config, o) {
|
|
1271
1274
|
return [
|
|
1272
|
-
|
|
1273
|
-
|
|
1275
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1276
|
+
getProcessArnablesPlugin(config),
|
|
1274
1277
|
];
|
|
1275
1278
|
})
|
|
1276
1279
|
.s("AWSS3ControlServiceV20180820", "GetPublicAccessBlock", {})
|
|
1277
1280
|
.n("S3ControlClient", "GetPublicAccessBlockCommand")
|
|
1278
|
-
.sc(
|
|
1281
|
+
.sc(GetPublicAccessBlock$)
|
|
1279
1282
|
.build() {
|
|
1280
1283
|
}
|
|
1281
1284
|
|
|
1282
|
-
class GetStorageLensConfigurationCommand extends
|
|
1285
|
+
class GetStorageLensConfigurationCommand extends Command
|
|
1283
1286
|
.classBuilder()
|
|
1284
1287
|
.ep({
|
|
1285
1288
|
...commonParams,
|
|
@@ -1288,17 +1291,17 @@ class GetStorageLensConfigurationCommand extends client.Command
|
|
|
1288
1291
|
})
|
|
1289
1292
|
.m(function (Command, cs, config, o) {
|
|
1290
1293
|
return [
|
|
1291
|
-
|
|
1292
|
-
|
|
1294
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1295
|
+
getProcessArnablesPlugin(config),
|
|
1293
1296
|
];
|
|
1294
1297
|
})
|
|
1295
1298
|
.s("AWSS3ControlServiceV20180820", "GetStorageLensConfiguration", {})
|
|
1296
1299
|
.n("S3ControlClient", "GetStorageLensConfigurationCommand")
|
|
1297
|
-
.sc(
|
|
1300
|
+
.sc(GetStorageLensConfiguration$)
|
|
1298
1301
|
.build() {
|
|
1299
1302
|
}
|
|
1300
1303
|
|
|
1301
|
-
class GetStorageLensConfigurationTaggingCommand extends
|
|
1304
|
+
class GetStorageLensConfigurationTaggingCommand extends Command
|
|
1302
1305
|
.classBuilder()
|
|
1303
1306
|
.ep({
|
|
1304
1307
|
...commonParams,
|
|
@@ -1307,17 +1310,17 @@ class GetStorageLensConfigurationTaggingCommand extends client.Command
|
|
|
1307
1310
|
})
|
|
1308
1311
|
.m(function (Command, cs, config, o) {
|
|
1309
1312
|
return [
|
|
1310
|
-
|
|
1311
|
-
|
|
1313
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1314
|
+
getProcessArnablesPlugin(config),
|
|
1312
1315
|
];
|
|
1313
1316
|
})
|
|
1314
1317
|
.s("AWSS3ControlServiceV20180820", "GetStorageLensConfigurationTagging", {})
|
|
1315
1318
|
.n("S3ControlClient", "GetStorageLensConfigurationTaggingCommand")
|
|
1316
|
-
.sc(
|
|
1319
|
+
.sc(GetStorageLensConfigurationTagging$)
|
|
1317
1320
|
.build() {
|
|
1318
1321
|
}
|
|
1319
1322
|
|
|
1320
|
-
class GetStorageLensGroupCommand extends
|
|
1323
|
+
class GetStorageLensGroupCommand extends Command
|
|
1321
1324
|
.classBuilder()
|
|
1322
1325
|
.ep({
|
|
1323
1326
|
...commonParams,
|
|
@@ -1326,17 +1329,17 @@ class GetStorageLensGroupCommand extends client.Command
|
|
|
1326
1329
|
})
|
|
1327
1330
|
.m(function (Command, cs, config, o) {
|
|
1328
1331
|
return [
|
|
1329
|
-
|
|
1330
|
-
|
|
1332
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1333
|
+
getProcessArnablesPlugin(config),
|
|
1331
1334
|
];
|
|
1332
1335
|
})
|
|
1333
1336
|
.s("AWSS3ControlServiceV20180820", "GetStorageLensGroup", {})
|
|
1334
1337
|
.n("S3ControlClient", "GetStorageLensGroupCommand")
|
|
1335
|
-
.sc(
|
|
1338
|
+
.sc(GetStorageLensGroup$)
|
|
1336
1339
|
.build() {
|
|
1337
1340
|
}
|
|
1338
1341
|
|
|
1339
|
-
class ListAccessGrantsCommand extends
|
|
1342
|
+
class ListAccessGrantsCommand extends Command
|
|
1340
1343
|
.classBuilder()
|
|
1341
1344
|
.ep({
|
|
1342
1345
|
...commonParams,
|
|
@@ -1345,18 +1348,18 @@ class ListAccessGrantsCommand extends client.Command
|
|
|
1345
1348
|
})
|
|
1346
1349
|
.m(function (Command, cs, config, o) {
|
|
1347
1350
|
return [
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1352
|
+
getProcessArnablesPlugin(config),
|
|
1353
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
1351
1354
|
];
|
|
1352
1355
|
})
|
|
1353
1356
|
.s("AWSS3ControlServiceV20180820", "ListAccessGrants", {})
|
|
1354
1357
|
.n("S3ControlClient", "ListAccessGrantsCommand")
|
|
1355
|
-
.sc(
|
|
1358
|
+
.sc(ListAccessGrants$)
|
|
1356
1359
|
.build() {
|
|
1357
1360
|
}
|
|
1358
1361
|
|
|
1359
|
-
class ListAccessGrantsInstancesCommand extends
|
|
1362
|
+
class ListAccessGrantsInstancesCommand extends Command
|
|
1360
1363
|
.classBuilder()
|
|
1361
1364
|
.ep({
|
|
1362
1365
|
...commonParams,
|
|
@@ -1365,18 +1368,18 @@ class ListAccessGrantsInstancesCommand extends client.Command
|
|
|
1365
1368
|
})
|
|
1366
1369
|
.m(function (Command, cs, config, o) {
|
|
1367
1370
|
return [
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1372
|
+
getProcessArnablesPlugin(config),
|
|
1373
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
1371
1374
|
];
|
|
1372
1375
|
})
|
|
1373
1376
|
.s("AWSS3ControlServiceV20180820", "ListAccessGrantsInstances", {})
|
|
1374
1377
|
.n("S3ControlClient", "ListAccessGrantsInstancesCommand")
|
|
1375
|
-
.sc(
|
|
1378
|
+
.sc(ListAccessGrantsInstances$)
|
|
1376
1379
|
.build() {
|
|
1377
1380
|
}
|
|
1378
1381
|
|
|
1379
|
-
class ListAccessGrantsLocationsCommand extends
|
|
1382
|
+
class ListAccessGrantsLocationsCommand extends Command
|
|
1380
1383
|
.classBuilder()
|
|
1381
1384
|
.ep({
|
|
1382
1385
|
...commonParams,
|
|
@@ -1385,18 +1388,18 @@ class ListAccessGrantsLocationsCommand extends client.Command
|
|
|
1385
1388
|
})
|
|
1386
1389
|
.m(function (Command, cs, config, o) {
|
|
1387
1390
|
return [
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1392
|
+
getProcessArnablesPlugin(config),
|
|
1393
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
1391
1394
|
];
|
|
1392
1395
|
})
|
|
1393
1396
|
.s("AWSS3ControlServiceV20180820", "ListAccessGrantsLocations", {})
|
|
1394
1397
|
.n("S3ControlClient", "ListAccessGrantsLocationsCommand")
|
|
1395
|
-
.sc(
|
|
1398
|
+
.sc(ListAccessGrantsLocations$)
|
|
1396
1399
|
.build() {
|
|
1397
1400
|
}
|
|
1398
1401
|
|
|
1399
|
-
class ListAccessPointsCommand extends
|
|
1402
|
+
class ListAccessPointsCommand extends Command
|
|
1400
1403
|
.classBuilder()
|
|
1401
1404
|
.ep({
|
|
1402
1405
|
...commonParams,
|
|
@@ -1406,17 +1409,17 @@ class ListAccessPointsCommand extends client.Command
|
|
|
1406
1409
|
})
|
|
1407
1410
|
.m(function (Command, cs, config, o) {
|
|
1408
1411
|
return [
|
|
1409
|
-
|
|
1410
|
-
|
|
1412
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1413
|
+
getProcessArnablesPlugin(config),
|
|
1411
1414
|
];
|
|
1412
1415
|
})
|
|
1413
1416
|
.s("AWSS3ControlServiceV20180820", "ListAccessPoints", {})
|
|
1414
1417
|
.n("S3ControlClient", "ListAccessPointsCommand")
|
|
1415
|
-
.sc(
|
|
1418
|
+
.sc(ListAccessPoints$)
|
|
1416
1419
|
.build() {
|
|
1417
1420
|
}
|
|
1418
1421
|
|
|
1419
|
-
class ListAccessPointsForDirectoryBucketsCommand extends
|
|
1422
|
+
class ListAccessPointsForDirectoryBucketsCommand extends Command
|
|
1420
1423
|
.classBuilder()
|
|
1421
1424
|
.ep({
|
|
1422
1425
|
...commonParams,
|
|
@@ -1426,17 +1429,17 @@ class ListAccessPointsForDirectoryBucketsCommand extends client.Command
|
|
|
1426
1429
|
})
|
|
1427
1430
|
.m(function (Command, cs, config, o) {
|
|
1428
1431
|
return [
|
|
1429
|
-
|
|
1430
|
-
|
|
1432
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1433
|
+
getProcessArnablesPlugin(config),
|
|
1431
1434
|
];
|
|
1432
1435
|
})
|
|
1433
1436
|
.s("AWSS3ControlServiceV20180820", "ListAccessPointsForDirectoryBuckets", {})
|
|
1434
1437
|
.n("S3ControlClient", "ListAccessPointsForDirectoryBucketsCommand")
|
|
1435
|
-
.sc(
|
|
1438
|
+
.sc(ListAccessPointsForDirectoryBuckets$)
|
|
1436
1439
|
.build() {
|
|
1437
1440
|
}
|
|
1438
1441
|
|
|
1439
|
-
class ListAccessPointsForObjectLambdaCommand extends
|
|
1442
|
+
class ListAccessPointsForObjectLambdaCommand extends Command
|
|
1440
1443
|
.classBuilder()
|
|
1441
1444
|
.ep({
|
|
1442
1445
|
...commonParams,
|
|
@@ -1445,17 +1448,17 @@ class ListAccessPointsForObjectLambdaCommand extends client.Command
|
|
|
1445
1448
|
})
|
|
1446
1449
|
.m(function (Command, cs, config, o) {
|
|
1447
1450
|
return [
|
|
1448
|
-
|
|
1449
|
-
|
|
1451
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1452
|
+
getProcessArnablesPlugin(config),
|
|
1450
1453
|
];
|
|
1451
1454
|
})
|
|
1452
1455
|
.s("AWSS3ControlServiceV20180820", "ListAccessPointsForObjectLambda", {})
|
|
1453
1456
|
.n("S3ControlClient", "ListAccessPointsForObjectLambdaCommand")
|
|
1454
|
-
.sc(
|
|
1457
|
+
.sc(ListAccessPointsForObjectLambda$)
|
|
1455
1458
|
.build() {
|
|
1456
1459
|
}
|
|
1457
1460
|
|
|
1458
|
-
class ListCallerAccessGrantsCommand extends
|
|
1461
|
+
class ListCallerAccessGrantsCommand extends Command
|
|
1459
1462
|
.classBuilder()
|
|
1460
1463
|
.ep({
|
|
1461
1464
|
...commonParams,
|
|
@@ -1464,18 +1467,18 @@ class ListCallerAccessGrantsCommand extends client.Command
|
|
|
1464
1467
|
})
|
|
1465
1468
|
.m(function (Command, cs, config, o) {
|
|
1466
1469
|
return [
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1471
|
+
getProcessArnablesPlugin(config),
|
|
1472
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
1470
1473
|
];
|
|
1471
1474
|
})
|
|
1472
1475
|
.s("AWSS3ControlServiceV20180820", "ListCallerAccessGrants", {})
|
|
1473
1476
|
.n("S3ControlClient", "ListCallerAccessGrantsCommand")
|
|
1474
|
-
.sc(
|
|
1477
|
+
.sc(ListCallerAccessGrants$)
|
|
1475
1478
|
.build() {
|
|
1476
1479
|
}
|
|
1477
1480
|
|
|
1478
|
-
class ListJobsCommand extends
|
|
1481
|
+
class ListJobsCommand extends Command
|
|
1479
1482
|
.classBuilder()
|
|
1480
1483
|
.ep({
|
|
1481
1484
|
...commonParams,
|
|
@@ -1484,17 +1487,17 @@ class ListJobsCommand extends client.Command
|
|
|
1484
1487
|
})
|
|
1485
1488
|
.m(function (Command, cs, config, o) {
|
|
1486
1489
|
return [
|
|
1487
|
-
|
|
1488
|
-
|
|
1490
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1491
|
+
getProcessArnablesPlugin(config),
|
|
1489
1492
|
];
|
|
1490
1493
|
})
|
|
1491
1494
|
.s("AWSS3ControlServiceV20180820", "ListJobs", {})
|
|
1492
1495
|
.n("S3ControlClient", "ListJobsCommand")
|
|
1493
|
-
.sc(
|
|
1496
|
+
.sc(ListJobs$)
|
|
1494
1497
|
.build() {
|
|
1495
1498
|
}
|
|
1496
1499
|
|
|
1497
|
-
class ListMultiRegionAccessPointsCommand extends
|
|
1500
|
+
class ListMultiRegionAccessPointsCommand extends Command
|
|
1498
1501
|
.classBuilder()
|
|
1499
1502
|
.ep({
|
|
1500
1503
|
...commonParams,
|
|
@@ -1503,18 +1506,18 @@ class ListMultiRegionAccessPointsCommand extends client.Command
|
|
|
1503
1506
|
})
|
|
1504
1507
|
.m(function (Command, cs, config, o) {
|
|
1505
1508
|
return [
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1510
|
+
getProcessArnablesPlugin(config),
|
|
1511
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
1509
1512
|
];
|
|
1510
1513
|
})
|
|
1511
1514
|
.s("AWSS3ControlServiceV20180820", "ListMultiRegionAccessPoints", {})
|
|
1512
1515
|
.n("S3ControlClient", "ListMultiRegionAccessPointsCommand")
|
|
1513
|
-
.sc(
|
|
1516
|
+
.sc(ListMultiRegionAccessPoints$)
|
|
1514
1517
|
.build() {
|
|
1515
1518
|
}
|
|
1516
1519
|
|
|
1517
|
-
class ListRegionalBucketsCommand extends
|
|
1520
|
+
class ListRegionalBucketsCommand extends Command
|
|
1518
1521
|
.classBuilder()
|
|
1519
1522
|
.ep({
|
|
1520
1523
|
...commonParams,
|
|
@@ -1524,17 +1527,17 @@ class ListRegionalBucketsCommand extends client.Command
|
|
|
1524
1527
|
})
|
|
1525
1528
|
.m(function (Command, cs, config, o) {
|
|
1526
1529
|
return [
|
|
1527
|
-
|
|
1528
|
-
|
|
1530
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1531
|
+
getRedirectFromPostIdPlugin(config),
|
|
1529
1532
|
];
|
|
1530
1533
|
})
|
|
1531
1534
|
.s("AWSS3ControlServiceV20180820", "ListRegionalBuckets", {})
|
|
1532
1535
|
.n("S3ControlClient", "ListRegionalBucketsCommand")
|
|
1533
|
-
.sc(
|
|
1536
|
+
.sc(ListRegionalBuckets$)
|
|
1534
1537
|
.build() {
|
|
1535
1538
|
}
|
|
1536
1539
|
|
|
1537
|
-
class ListStorageLensConfigurationsCommand extends
|
|
1540
|
+
class ListStorageLensConfigurationsCommand extends Command
|
|
1538
1541
|
.classBuilder()
|
|
1539
1542
|
.ep({
|
|
1540
1543
|
...commonParams,
|
|
@@ -1543,17 +1546,17 @@ class ListStorageLensConfigurationsCommand extends client.Command
|
|
|
1543
1546
|
})
|
|
1544
1547
|
.m(function (Command, cs, config, o) {
|
|
1545
1548
|
return [
|
|
1546
|
-
|
|
1547
|
-
|
|
1549
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1550
|
+
getProcessArnablesPlugin(config),
|
|
1548
1551
|
];
|
|
1549
1552
|
})
|
|
1550
1553
|
.s("AWSS3ControlServiceV20180820", "ListStorageLensConfigurations", {})
|
|
1551
1554
|
.n("S3ControlClient", "ListStorageLensConfigurationsCommand")
|
|
1552
|
-
.sc(
|
|
1555
|
+
.sc(ListStorageLensConfigurations$)
|
|
1553
1556
|
.build() {
|
|
1554
1557
|
}
|
|
1555
1558
|
|
|
1556
|
-
class ListStorageLensGroupsCommand extends
|
|
1559
|
+
class ListStorageLensGroupsCommand extends Command
|
|
1557
1560
|
.classBuilder()
|
|
1558
1561
|
.ep({
|
|
1559
1562
|
...commonParams,
|
|
@@ -1562,17 +1565,17 @@ class ListStorageLensGroupsCommand extends client.Command
|
|
|
1562
1565
|
})
|
|
1563
1566
|
.m(function (Command, cs, config, o) {
|
|
1564
1567
|
return [
|
|
1565
|
-
|
|
1566
|
-
|
|
1568
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1569
|
+
getProcessArnablesPlugin(config),
|
|
1567
1570
|
];
|
|
1568
1571
|
})
|
|
1569
1572
|
.s("AWSS3ControlServiceV20180820", "ListStorageLensGroups", {})
|
|
1570
1573
|
.n("S3ControlClient", "ListStorageLensGroupsCommand")
|
|
1571
|
-
.sc(
|
|
1574
|
+
.sc(ListStorageLensGroups$)
|
|
1572
1575
|
.build() {
|
|
1573
1576
|
}
|
|
1574
1577
|
|
|
1575
|
-
class ListTagsForResourceCommand extends
|
|
1578
|
+
class ListTagsForResourceCommand extends Command
|
|
1576
1579
|
.classBuilder()
|
|
1577
1580
|
.ep({
|
|
1578
1581
|
...commonParams,
|
|
@@ -1582,17 +1585,17 @@ class ListTagsForResourceCommand extends client.Command
|
|
|
1582
1585
|
})
|
|
1583
1586
|
.m(function (Command, cs, config, o) {
|
|
1584
1587
|
return [
|
|
1585
|
-
|
|
1586
|
-
|
|
1588
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1589
|
+
getProcessArnablesPlugin(config),
|
|
1587
1590
|
];
|
|
1588
1591
|
})
|
|
1589
1592
|
.s("AWSS3ControlServiceV20180820", "ListTagsForResource", {})
|
|
1590
1593
|
.n("S3ControlClient", "ListTagsForResourceCommand")
|
|
1591
|
-
.sc(
|
|
1594
|
+
.sc(ListTagsForResource$)
|
|
1592
1595
|
.build() {
|
|
1593
1596
|
}
|
|
1594
1597
|
|
|
1595
|
-
class PutAccessGrantsInstanceResourcePolicyCommand extends
|
|
1598
|
+
class PutAccessGrantsInstanceResourcePolicyCommand extends Command
|
|
1596
1599
|
.classBuilder()
|
|
1597
1600
|
.ep({
|
|
1598
1601
|
...commonParams,
|
|
@@ -1601,18 +1604,18 @@ class PutAccessGrantsInstanceResourcePolicyCommand extends client.Command
|
|
|
1601
1604
|
})
|
|
1602
1605
|
.m(function (Command, cs, config, o) {
|
|
1603
1606
|
return [
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1608
|
+
getProcessArnablesPlugin(config),
|
|
1609
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
1607
1610
|
];
|
|
1608
1611
|
})
|
|
1609
1612
|
.s("AWSS3ControlServiceV20180820", "PutAccessGrantsInstanceResourcePolicy", {})
|
|
1610
1613
|
.n("S3ControlClient", "PutAccessGrantsInstanceResourcePolicyCommand")
|
|
1611
|
-
.sc(
|
|
1614
|
+
.sc(PutAccessGrantsInstanceResourcePolicy$)
|
|
1612
1615
|
.build() {
|
|
1613
1616
|
}
|
|
1614
1617
|
|
|
1615
|
-
class PutAccessPointConfigurationForObjectLambdaCommand extends
|
|
1618
|
+
class PutAccessPointConfigurationForObjectLambdaCommand extends Command
|
|
1616
1619
|
.classBuilder()
|
|
1617
1620
|
.ep({
|
|
1618
1621
|
...commonParams,
|
|
@@ -1621,17 +1624,17 @@ class PutAccessPointConfigurationForObjectLambdaCommand extends client.Command
|
|
|
1621
1624
|
})
|
|
1622
1625
|
.m(function (Command, cs, config, o) {
|
|
1623
1626
|
return [
|
|
1624
|
-
|
|
1625
|
-
|
|
1627
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1628
|
+
getProcessArnablesPlugin(config),
|
|
1626
1629
|
];
|
|
1627
1630
|
})
|
|
1628
1631
|
.s("AWSS3ControlServiceV20180820", "PutAccessPointConfigurationForObjectLambda", {})
|
|
1629
1632
|
.n("S3ControlClient", "PutAccessPointConfigurationForObjectLambdaCommand")
|
|
1630
|
-
.sc(
|
|
1633
|
+
.sc(PutAccessPointConfigurationForObjectLambda$)
|
|
1631
1634
|
.build() {
|
|
1632
1635
|
}
|
|
1633
1636
|
|
|
1634
|
-
class PutAccessPointPolicyCommand extends
|
|
1637
|
+
class PutAccessPointPolicyCommand extends Command
|
|
1635
1638
|
.classBuilder()
|
|
1636
1639
|
.ep({
|
|
1637
1640
|
...commonParams,
|
|
@@ -1641,17 +1644,17 @@ class PutAccessPointPolicyCommand extends client.Command
|
|
|
1641
1644
|
})
|
|
1642
1645
|
.m(function (Command, cs, config, o) {
|
|
1643
1646
|
return [
|
|
1644
|
-
|
|
1645
|
-
|
|
1647
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1648
|
+
getProcessArnablesPlugin(config),
|
|
1646
1649
|
];
|
|
1647
1650
|
})
|
|
1648
1651
|
.s("AWSS3ControlServiceV20180820", "PutAccessPointPolicy", {})
|
|
1649
1652
|
.n("S3ControlClient", "PutAccessPointPolicyCommand")
|
|
1650
|
-
.sc(
|
|
1653
|
+
.sc(PutAccessPointPolicy$)
|
|
1651
1654
|
.build() {
|
|
1652
1655
|
}
|
|
1653
1656
|
|
|
1654
|
-
class PutAccessPointPolicyForObjectLambdaCommand extends
|
|
1657
|
+
class PutAccessPointPolicyForObjectLambdaCommand extends Command
|
|
1655
1658
|
.classBuilder()
|
|
1656
1659
|
.ep({
|
|
1657
1660
|
...commonParams,
|
|
@@ -1660,17 +1663,17 @@ class PutAccessPointPolicyForObjectLambdaCommand extends client.Command
|
|
|
1660
1663
|
})
|
|
1661
1664
|
.m(function (Command, cs, config, o) {
|
|
1662
1665
|
return [
|
|
1663
|
-
|
|
1664
|
-
|
|
1666
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1667
|
+
getProcessArnablesPlugin(config),
|
|
1665
1668
|
];
|
|
1666
1669
|
})
|
|
1667
1670
|
.s("AWSS3ControlServiceV20180820", "PutAccessPointPolicyForObjectLambda", {})
|
|
1668
1671
|
.n("S3ControlClient", "PutAccessPointPolicyForObjectLambdaCommand")
|
|
1669
|
-
.sc(
|
|
1672
|
+
.sc(PutAccessPointPolicyForObjectLambda$)
|
|
1670
1673
|
.build() {
|
|
1671
1674
|
}
|
|
1672
1675
|
|
|
1673
|
-
class PutAccessPointScopeCommand extends
|
|
1676
|
+
class PutAccessPointScopeCommand extends Command
|
|
1674
1677
|
.classBuilder()
|
|
1675
1678
|
.ep({
|
|
1676
1679
|
...commonParams,
|
|
@@ -1681,17 +1684,17 @@ class PutAccessPointScopeCommand extends client.Command
|
|
|
1681
1684
|
})
|
|
1682
1685
|
.m(function (Command, cs, config, o) {
|
|
1683
1686
|
return [
|
|
1684
|
-
|
|
1685
|
-
|
|
1687
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1688
|
+
getProcessArnablesPlugin(config),
|
|
1686
1689
|
];
|
|
1687
1690
|
})
|
|
1688
1691
|
.s("AWSS3ControlServiceV20180820", "PutAccessPointScope", {})
|
|
1689
1692
|
.n("S3ControlClient", "PutAccessPointScopeCommand")
|
|
1690
|
-
.sc(
|
|
1693
|
+
.sc(PutAccessPointScope$)
|
|
1691
1694
|
.build() {
|
|
1692
1695
|
}
|
|
1693
1696
|
|
|
1694
|
-
class PutBucketLifecycleConfigurationCommand extends
|
|
1697
|
+
class PutBucketLifecycleConfigurationCommand extends Command
|
|
1695
1698
|
.classBuilder()
|
|
1696
1699
|
.ep({
|
|
1697
1700
|
...commonParams,
|
|
@@ -1701,18 +1704,18 @@ class PutBucketLifecycleConfigurationCommand extends client.Command
|
|
|
1701
1704
|
})
|
|
1702
1705
|
.m(function (Command, cs, config, o) {
|
|
1703
1706
|
return [
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1708
|
+
getProcessArnablesPlugin(config),
|
|
1709
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
1707
1710
|
];
|
|
1708
1711
|
})
|
|
1709
1712
|
.s("AWSS3ControlServiceV20180820", "PutBucketLifecycleConfiguration", {})
|
|
1710
1713
|
.n("S3ControlClient", "PutBucketLifecycleConfigurationCommand")
|
|
1711
|
-
.sc(
|
|
1714
|
+
.sc(PutBucketLifecycleConfiguration$)
|
|
1712
1715
|
.build() {
|
|
1713
1716
|
}
|
|
1714
1717
|
|
|
1715
|
-
class PutBucketPolicyCommand extends
|
|
1718
|
+
class PutBucketPolicyCommand extends Command
|
|
1716
1719
|
.classBuilder()
|
|
1717
1720
|
.ep({
|
|
1718
1721
|
...commonParams,
|
|
@@ -1722,18 +1725,18 @@ class PutBucketPolicyCommand extends client.Command
|
|
|
1722
1725
|
})
|
|
1723
1726
|
.m(function (Command, cs, config, o) {
|
|
1724
1727
|
return [
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1729
|
+
getProcessArnablesPlugin(config),
|
|
1730
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
1728
1731
|
];
|
|
1729
1732
|
})
|
|
1730
1733
|
.s("AWSS3ControlServiceV20180820", "PutBucketPolicy", {})
|
|
1731
1734
|
.n("S3ControlClient", "PutBucketPolicyCommand")
|
|
1732
|
-
.sc(
|
|
1735
|
+
.sc(PutBucketPolicy$)
|
|
1733
1736
|
.build() {
|
|
1734
1737
|
}
|
|
1735
1738
|
|
|
1736
|
-
class PutBucketReplicationCommand extends
|
|
1739
|
+
class PutBucketReplicationCommand extends Command
|
|
1737
1740
|
.classBuilder()
|
|
1738
1741
|
.ep({
|
|
1739
1742
|
...commonParams,
|
|
@@ -1743,18 +1746,18 @@ class PutBucketReplicationCommand extends client.Command
|
|
|
1743
1746
|
})
|
|
1744
1747
|
.m(function (Command, cs, config, o) {
|
|
1745
1748
|
return [
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1750
|
+
getProcessArnablesPlugin(config),
|
|
1751
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
1749
1752
|
];
|
|
1750
1753
|
})
|
|
1751
1754
|
.s("AWSS3ControlServiceV20180820", "PutBucketReplication", {})
|
|
1752
1755
|
.n("S3ControlClient", "PutBucketReplicationCommand")
|
|
1753
|
-
.sc(
|
|
1756
|
+
.sc(PutBucketReplication$)
|
|
1754
1757
|
.build() {
|
|
1755
1758
|
}
|
|
1756
1759
|
|
|
1757
|
-
class PutBucketTaggingCommand extends
|
|
1760
|
+
class PutBucketTaggingCommand extends Command
|
|
1758
1761
|
.classBuilder()
|
|
1759
1762
|
.ep({
|
|
1760
1763
|
...commonParams,
|
|
@@ -1764,18 +1767,18 @@ class PutBucketTaggingCommand extends client.Command
|
|
|
1764
1767
|
})
|
|
1765
1768
|
.m(function (Command, cs, config, o) {
|
|
1766
1769
|
return [
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1771
|
+
getProcessArnablesPlugin(config),
|
|
1772
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
1770
1773
|
];
|
|
1771
1774
|
})
|
|
1772
1775
|
.s("AWSS3ControlServiceV20180820", "PutBucketTagging", {})
|
|
1773
1776
|
.n("S3ControlClient", "PutBucketTaggingCommand")
|
|
1774
|
-
.sc(
|
|
1777
|
+
.sc(PutBucketTagging$)
|
|
1775
1778
|
.build() {
|
|
1776
1779
|
}
|
|
1777
1780
|
|
|
1778
|
-
class PutBucketVersioningCommand extends
|
|
1781
|
+
class PutBucketVersioningCommand extends Command
|
|
1779
1782
|
.classBuilder()
|
|
1780
1783
|
.ep({
|
|
1781
1784
|
...commonParams,
|
|
@@ -1785,18 +1788,18 @@ class PutBucketVersioningCommand extends client.Command
|
|
|
1785
1788
|
})
|
|
1786
1789
|
.m(function (Command, cs, config, o) {
|
|
1787
1790
|
return [
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1792
|
+
getProcessArnablesPlugin(config),
|
|
1793
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
1791
1794
|
];
|
|
1792
1795
|
})
|
|
1793
1796
|
.s("AWSS3ControlServiceV20180820", "PutBucketVersioning", {})
|
|
1794
1797
|
.n("S3ControlClient", "PutBucketVersioningCommand")
|
|
1795
|
-
.sc(
|
|
1798
|
+
.sc(PutBucketVersioning$)
|
|
1796
1799
|
.build() {
|
|
1797
1800
|
}
|
|
1798
1801
|
|
|
1799
|
-
class PutJobTaggingCommand extends
|
|
1802
|
+
class PutJobTaggingCommand extends Command
|
|
1800
1803
|
.classBuilder()
|
|
1801
1804
|
.ep({
|
|
1802
1805
|
...commonParams,
|
|
@@ -1805,17 +1808,17 @@ class PutJobTaggingCommand extends client.Command
|
|
|
1805
1808
|
})
|
|
1806
1809
|
.m(function (Command, cs, config, o) {
|
|
1807
1810
|
return [
|
|
1808
|
-
|
|
1809
|
-
|
|
1811
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1812
|
+
getProcessArnablesPlugin(config),
|
|
1810
1813
|
];
|
|
1811
1814
|
})
|
|
1812
1815
|
.s("AWSS3ControlServiceV20180820", "PutJobTagging", {})
|
|
1813
1816
|
.n("S3ControlClient", "PutJobTaggingCommand")
|
|
1814
|
-
.sc(
|
|
1817
|
+
.sc(PutJobTagging$)
|
|
1815
1818
|
.build() {
|
|
1816
1819
|
}
|
|
1817
1820
|
|
|
1818
|
-
class PutMultiRegionAccessPointPolicyCommand extends
|
|
1821
|
+
class PutMultiRegionAccessPointPolicyCommand extends Command
|
|
1819
1822
|
.classBuilder()
|
|
1820
1823
|
.ep({
|
|
1821
1824
|
...commonParams,
|
|
@@ -1824,18 +1827,18 @@ class PutMultiRegionAccessPointPolicyCommand extends client.Command
|
|
|
1824
1827
|
})
|
|
1825
1828
|
.m(function (Command, cs, config, o) {
|
|
1826
1829
|
return [
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1831
|
+
getProcessArnablesPlugin(config),
|
|
1832
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
1830
1833
|
];
|
|
1831
1834
|
})
|
|
1832
1835
|
.s("AWSS3ControlServiceV20180820", "PutMultiRegionAccessPointPolicy", {})
|
|
1833
1836
|
.n("S3ControlClient", "PutMultiRegionAccessPointPolicyCommand")
|
|
1834
|
-
.sc(
|
|
1837
|
+
.sc(PutMultiRegionAccessPointPolicy$)
|
|
1835
1838
|
.build() {
|
|
1836
1839
|
}
|
|
1837
1840
|
|
|
1838
|
-
class PutPublicAccessBlockCommand extends
|
|
1841
|
+
class PutPublicAccessBlockCommand extends Command
|
|
1839
1842
|
.classBuilder()
|
|
1840
1843
|
.ep({
|
|
1841
1844
|
...commonParams,
|
|
@@ -1844,17 +1847,17 @@ class PutPublicAccessBlockCommand extends client.Command
|
|
|
1844
1847
|
})
|
|
1845
1848
|
.m(function (Command, cs, config, o) {
|
|
1846
1849
|
return [
|
|
1847
|
-
|
|
1848
|
-
|
|
1850
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1851
|
+
getProcessArnablesPlugin(config),
|
|
1849
1852
|
];
|
|
1850
1853
|
})
|
|
1851
1854
|
.s("AWSS3ControlServiceV20180820", "PutPublicAccessBlock", {})
|
|
1852
1855
|
.n("S3ControlClient", "PutPublicAccessBlockCommand")
|
|
1853
|
-
.sc(
|
|
1856
|
+
.sc(PutPublicAccessBlock$)
|
|
1854
1857
|
.build() {
|
|
1855
1858
|
}
|
|
1856
1859
|
|
|
1857
|
-
class PutStorageLensConfigurationCommand extends
|
|
1860
|
+
class PutStorageLensConfigurationCommand extends Command
|
|
1858
1861
|
.classBuilder()
|
|
1859
1862
|
.ep({
|
|
1860
1863
|
...commonParams,
|
|
@@ -1863,17 +1866,17 @@ class PutStorageLensConfigurationCommand extends client.Command
|
|
|
1863
1866
|
})
|
|
1864
1867
|
.m(function (Command, cs, config, o) {
|
|
1865
1868
|
return [
|
|
1866
|
-
|
|
1867
|
-
|
|
1869
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1870
|
+
getProcessArnablesPlugin(config),
|
|
1868
1871
|
];
|
|
1869
1872
|
})
|
|
1870
1873
|
.s("AWSS3ControlServiceV20180820", "PutStorageLensConfiguration", {})
|
|
1871
1874
|
.n("S3ControlClient", "PutStorageLensConfigurationCommand")
|
|
1872
|
-
.sc(
|
|
1875
|
+
.sc(PutStorageLensConfiguration$)
|
|
1873
1876
|
.build() {
|
|
1874
1877
|
}
|
|
1875
1878
|
|
|
1876
|
-
class PutStorageLensConfigurationTaggingCommand extends
|
|
1879
|
+
class PutStorageLensConfigurationTaggingCommand extends Command
|
|
1877
1880
|
.classBuilder()
|
|
1878
1881
|
.ep({
|
|
1879
1882
|
...commonParams,
|
|
@@ -1882,17 +1885,17 @@ class PutStorageLensConfigurationTaggingCommand extends client.Command
|
|
|
1882
1885
|
})
|
|
1883
1886
|
.m(function (Command, cs, config, o) {
|
|
1884
1887
|
return [
|
|
1885
|
-
|
|
1886
|
-
|
|
1888
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1889
|
+
getProcessArnablesPlugin(config),
|
|
1887
1890
|
];
|
|
1888
1891
|
})
|
|
1889
1892
|
.s("AWSS3ControlServiceV20180820", "PutStorageLensConfigurationTagging", {})
|
|
1890
1893
|
.n("S3ControlClient", "PutStorageLensConfigurationTaggingCommand")
|
|
1891
|
-
.sc(
|
|
1894
|
+
.sc(PutStorageLensConfigurationTagging$)
|
|
1892
1895
|
.build() {
|
|
1893
1896
|
}
|
|
1894
1897
|
|
|
1895
|
-
class SubmitMultiRegionAccessPointRoutesCommand extends
|
|
1898
|
+
class SubmitMultiRegionAccessPointRoutesCommand extends Command
|
|
1896
1899
|
.classBuilder()
|
|
1897
1900
|
.ep({
|
|
1898
1901
|
...commonParams,
|
|
@@ -1901,18 +1904,18 @@ class SubmitMultiRegionAccessPointRoutesCommand extends client.Command
|
|
|
1901
1904
|
})
|
|
1902
1905
|
.m(function (Command, cs, config, o) {
|
|
1903
1906
|
return [
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1908
|
+
getProcessArnablesPlugin(config),
|
|
1909
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
1907
1910
|
];
|
|
1908
1911
|
})
|
|
1909
1912
|
.s("AWSS3ControlServiceV20180820", "SubmitMultiRegionAccessPointRoutes", {})
|
|
1910
1913
|
.n("S3ControlClient", "SubmitMultiRegionAccessPointRoutesCommand")
|
|
1911
|
-
.sc(
|
|
1914
|
+
.sc(SubmitMultiRegionAccessPointRoutes$)
|
|
1912
1915
|
.build() {
|
|
1913
1916
|
}
|
|
1914
1917
|
|
|
1915
|
-
class TagResourceCommand extends
|
|
1918
|
+
class TagResourceCommand extends Command
|
|
1916
1919
|
.classBuilder()
|
|
1917
1920
|
.ep({
|
|
1918
1921
|
...commonParams,
|
|
@@ -1922,17 +1925,17 @@ class TagResourceCommand extends client.Command
|
|
|
1922
1925
|
})
|
|
1923
1926
|
.m(function (Command, cs, config, o) {
|
|
1924
1927
|
return [
|
|
1925
|
-
|
|
1926
|
-
|
|
1928
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1929
|
+
getProcessArnablesPlugin(config),
|
|
1927
1930
|
];
|
|
1928
1931
|
})
|
|
1929
1932
|
.s("AWSS3ControlServiceV20180820", "TagResource", {})
|
|
1930
1933
|
.n("S3ControlClient", "TagResourceCommand")
|
|
1931
|
-
.sc(
|
|
1934
|
+
.sc(TagResource$)
|
|
1932
1935
|
.build() {
|
|
1933
1936
|
}
|
|
1934
1937
|
|
|
1935
|
-
class UntagResourceCommand extends
|
|
1938
|
+
class UntagResourceCommand extends Command
|
|
1936
1939
|
.classBuilder()
|
|
1937
1940
|
.ep({
|
|
1938
1941
|
...commonParams,
|
|
@@ -1942,17 +1945,17 @@ class UntagResourceCommand extends client.Command
|
|
|
1942
1945
|
})
|
|
1943
1946
|
.m(function (Command, cs, config, o) {
|
|
1944
1947
|
return [
|
|
1945
|
-
|
|
1946
|
-
|
|
1948
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1949
|
+
getProcessArnablesPlugin(config),
|
|
1947
1950
|
];
|
|
1948
1951
|
})
|
|
1949
1952
|
.s("AWSS3ControlServiceV20180820", "UntagResource", {})
|
|
1950
1953
|
.n("S3ControlClient", "UntagResourceCommand")
|
|
1951
|
-
.sc(
|
|
1954
|
+
.sc(UntagResource$)
|
|
1952
1955
|
.build() {
|
|
1953
1956
|
}
|
|
1954
1957
|
|
|
1955
|
-
class UpdateAccessGrantsLocationCommand extends
|
|
1958
|
+
class UpdateAccessGrantsLocationCommand extends Command
|
|
1956
1959
|
.classBuilder()
|
|
1957
1960
|
.ep({
|
|
1958
1961
|
...commonParams,
|
|
@@ -1961,18 +1964,18 @@ class UpdateAccessGrantsLocationCommand extends client.Command
|
|
|
1961
1964
|
})
|
|
1962
1965
|
.m(function (Command, cs, config, o) {
|
|
1963
1966
|
return [
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1968
|
+
getProcessArnablesPlugin(config),
|
|
1969
|
+
getApplyMd5BodyChecksumPlugin(config),
|
|
1967
1970
|
];
|
|
1968
1971
|
})
|
|
1969
1972
|
.s("AWSS3ControlServiceV20180820", "UpdateAccessGrantsLocation", {})
|
|
1970
1973
|
.n("S3ControlClient", "UpdateAccessGrantsLocationCommand")
|
|
1971
|
-
.sc(
|
|
1974
|
+
.sc(UpdateAccessGrantsLocation$)
|
|
1972
1975
|
.build() {
|
|
1973
1976
|
}
|
|
1974
1977
|
|
|
1975
|
-
class UpdateJobPriorityCommand extends
|
|
1978
|
+
class UpdateJobPriorityCommand extends Command
|
|
1976
1979
|
.classBuilder()
|
|
1977
1980
|
.ep({
|
|
1978
1981
|
...commonParams,
|
|
@@ -1981,17 +1984,17 @@ class UpdateJobPriorityCommand extends client.Command
|
|
|
1981
1984
|
})
|
|
1982
1985
|
.m(function (Command, cs, config, o) {
|
|
1983
1986
|
return [
|
|
1984
|
-
|
|
1985
|
-
|
|
1987
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
1988
|
+
getProcessArnablesPlugin(config),
|
|
1986
1989
|
];
|
|
1987
1990
|
})
|
|
1988
1991
|
.s("AWSS3ControlServiceV20180820", "UpdateJobPriority", {})
|
|
1989
1992
|
.n("S3ControlClient", "UpdateJobPriorityCommand")
|
|
1990
|
-
.sc(
|
|
1993
|
+
.sc(UpdateJobPriority$)
|
|
1991
1994
|
.build() {
|
|
1992
1995
|
}
|
|
1993
1996
|
|
|
1994
|
-
class UpdateJobStatusCommand extends
|
|
1997
|
+
class UpdateJobStatusCommand extends Command
|
|
1995
1998
|
.classBuilder()
|
|
1996
1999
|
.ep({
|
|
1997
2000
|
...commonParams,
|
|
@@ -2000,17 +2003,17 @@ class UpdateJobStatusCommand extends client.Command
|
|
|
2000
2003
|
})
|
|
2001
2004
|
.m(function (Command, cs, config, o) {
|
|
2002
2005
|
return [
|
|
2003
|
-
|
|
2004
|
-
|
|
2006
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2007
|
+
getProcessArnablesPlugin(config),
|
|
2005
2008
|
];
|
|
2006
2009
|
})
|
|
2007
2010
|
.s("AWSS3ControlServiceV20180820", "UpdateJobStatus", {})
|
|
2008
2011
|
.n("S3ControlClient", "UpdateJobStatusCommand")
|
|
2009
|
-
.sc(
|
|
2012
|
+
.sc(UpdateJobStatus$)
|
|
2010
2013
|
.build() {
|
|
2011
2014
|
}
|
|
2012
2015
|
|
|
2013
|
-
class UpdateStorageLensGroupCommand extends
|
|
2016
|
+
class UpdateStorageLensGroupCommand extends Command
|
|
2014
2017
|
.classBuilder()
|
|
2015
2018
|
.ep({
|
|
2016
2019
|
...commonParams,
|
|
@@ -2019,39 +2022,39 @@ class UpdateStorageLensGroupCommand extends client.Command
|
|
|
2019
2022
|
})
|
|
2020
2023
|
.m(function (Command, cs, config, o) {
|
|
2021
2024
|
return [
|
|
2022
|
-
|
|
2023
|
-
|
|
2025
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
2026
|
+
getProcessArnablesPlugin(config),
|
|
2024
2027
|
];
|
|
2025
2028
|
})
|
|
2026
2029
|
.s("AWSS3ControlServiceV20180820", "UpdateStorageLensGroup", {})
|
|
2027
2030
|
.n("S3ControlClient", "UpdateStorageLensGroupCommand")
|
|
2028
|
-
.sc(
|
|
2031
|
+
.sc(UpdateStorageLensGroup$)
|
|
2029
2032
|
.build() {
|
|
2030
2033
|
}
|
|
2031
2034
|
|
|
2032
|
-
const paginateListAccessGrantsInstances =
|
|
2035
|
+
const paginateListAccessGrantsInstances = createPaginator(S3ControlClient, ListAccessGrantsInstancesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2033
2036
|
|
|
2034
|
-
const paginateListAccessGrantsLocations =
|
|
2037
|
+
const paginateListAccessGrantsLocations = createPaginator(S3ControlClient, ListAccessGrantsLocationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2035
2038
|
|
|
2036
|
-
const paginateListAccessGrants =
|
|
2039
|
+
const paginateListAccessGrants = createPaginator(S3ControlClient, ListAccessGrantsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2037
2040
|
|
|
2038
|
-
const paginateListAccessPointsForDirectoryBuckets =
|
|
2041
|
+
const paginateListAccessPointsForDirectoryBuckets = createPaginator(S3ControlClient, ListAccessPointsForDirectoryBucketsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2039
2042
|
|
|
2040
|
-
const paginateListAccessPointsForObjectLambda =
|
|
2043
|
+
const paginateListAccessPointsForObjectLambda = createPaginator(S3ControlClient, ListAccessPointsForObjectLambdaCommand, "NextToken", "NextToken", "MaxResults");
|
|
2041
2044
|
|
|
2042
|
-
const paginateListAccessPoints =
|
|
2045
|
+
const paginateListAccessPoints = createPaginator(S3ControlClient, ListAccessPointsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2043
2046
|
|
|
2044
|
-
const paginateListCallerAccessGrants =
|
|
2047
|
+
const paginateListCallerAccessGrants = createPaginator(S3ControlClient, ListCallerAccessGrantsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2045
2048
|
|
|
2046
|
-
const paginateListJobs =
|
|
2049
|
+
const paginateListJobs = createPaginator(S3ControlClient, ListJobsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2047
2050
|
|
|
2048
|
-
const paginateListMultiRegionAccessPoints =
|
|
2051
|
+
const paginateListMultiRegionAccessPoints = createPaginator(S3ControlClient, ListMultiRegionAccessPointsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2049
2052
|
|
|
2050
|
-
const paginateListRegionalBuckets =
|
|
2053
|
+
const paginateListRegionalBuckets = createPaginator(S3ControlClient, ListRegionalBucketsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2051
2054
|
|
|
2052
|
-
const paginateListStorageLensConfigurations =
|
|
2055
|
+
const paginateListStorageLensConfigurations = createPaginator(S3ControlClient, ListStorageLensConfigurationsCommand, "NextToken", "NextToken", "");
|
|
2053
2056
|
|
|
2054
|
-
const paginateListStorageLensGroups =
|
|
2057
|
+
const paginateListStorageLensGroups = createPaginator(S3ControlClient, ListStorageLensGroupsCommand, "NextToken", "NextToken", "");
|
|
2055
2058
|
|
|
2056
2059
|
const commands = {
|
|
2057
2060
|
AssociateAccessGrantsIdentityCenterCommand,
|
|
@@ -2168,7 +2171,7 @@ const paginators = {
|
|
|
2168
2171
|
};
|
|
2169
2172
|
class S3Control extends S3ControlClient {
|
|
2170
2173
|
}
|
|
2171
|
-
|
|
2174
|
+
createAggregatedClient(commands, S3Control, { paginators });
|
|
2172
2175
|
|
|
2173
2176
|
const OwnerOverride = {
|
|
2174
2177
|
Destination: "Destination",
|
|
@@ -2462,9 +2465,6 @@ const RequestedJobStatus = {
|
|
|
2462
2465
|
Ready: "Ready",
|
|
2463
2466
|
};
|
|
2464
2467
|
|
|
2465
|
-
exports.$Command = client.Command;
|
|
2466
|
-
exports.__Client = client.Client;
|
|
2467
|
-
exports.S3ControlServiceException = S3ControlServiceException.S3ControlServiceException;
|
|
2468
2468
|
exports.AssociateAccessGrantsIdentityCenterCommand = AssociateAccessGrantsIdentityCenterCommand;
|
|
2469
2469
|
exports.AsyncOperationName = AsyncOperationName;
|
|
2470
2470
|
exports.BucketCannedACL = BucketCannedACL;
|
|
@@ -2627,23 +2627,3 @@ exports.paginateListMultiRegionAccessPoints = paginateListMultiRegionAccessPoint
|
|
|
2627
2627
|
exports.paginateListRegionalBuckets = paginateListRegionalBuckets;
|
|
2628
2628
|
exports.paginateListStorageLensConfigurations = paginateListStorageLensConfigurations;
|
|
2629
2629
|
exports.paginateListStorageLensGroups = paginateListStorageLensGroups;
|
|
2630
|
-
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
2631
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
2632
|
-
Object.defineProperty(exports, '__proto__', {
|
|
2633
|
-
enumerable: true,
|
|
2634
|
-
value: schemas_0['__proto__']
|
|
2635
|
-
});
|
|
2636
|
-
|
|
2637
|
-
Object.keys(schemas_0).forEach(function (k) {
|
|
2638
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
2639
|
-
});
|
|
2640
|
-
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
2641
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
2642
|
-
Object.defineProperty(exports, '__proto__', {
|
|
2643
|
-
enumerable: true,
|
|
2644
|
-
value: errors['__proto__']
|
|
2645
|
-
});
|
|
2646
|
-
|
|
2647
|
-
Object.keys(errors).forEach(function (k) {
|
|
2648
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
2649
|
-
});
|