@aws-sdk/client-mediastore 3.716.0 → 3.723.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/index.js +143 -103
- package/dist-es/MediaStoreClient.js +1 -0
- package/dist-es/models/models_0.js +18 -12
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -155,7 +155,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
155
155
|
}, "resolveRuntimeExtensions");
|
|
156
156
|
|
|
157
157
|
// src/MediaStoreClient.ts
|
|
158
|
-
var
|
|
158
|
+
var MediaStoreClient = class extends import_smithy_client.Client {
|
|
159
|
+
static {
|
|
160
|
+
__name(this, "MediaStoreClient");
|
|
161
|
+
}
|
|
162
|
+
/**
|
|
163
|
+
* The resolved configuration of MediaStoreClient class. This is resolved and normalized from the {@link MediaStoreClientConfig | constructor configuration interface}.
|
|
164
|
+
*/
|
|
165
|
+
config;
|
|
159
166
|
constructor(...[configuration]) {
|
|
160
167
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
161
168
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -165,7 +172,7 @@ var _MediaStoreClient = class _MediaStoreClient extends import_smithy_client.Cli
|
|
|
165
172
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
166
173
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
167
174
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
168
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
175
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
169
176
|
super(_config_8);
|
|
170
177
|
this.config = _config_8;
|
|
171
178
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -193,8 +200,6 @@ var _MediaStoreClient = class _MediaStoreClient extends import_smithy_client.Cli
|
|
|
193
200
|
super.destroy();
|
|
194
201
|
}
|
|
195
202
|
};
|
|
196
|
-
__name(_MediaStoreClient, "MediaStoreClient");
|
|
197
|
-
var MediaStoreClient = _MediaStoreClient;
|
|
198
203
|
|
|
199
204
|
// src/MediaStore.ts
|
|
200
205
|
|
|
@@ -211,7 +216,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
211
216
|
|
|
212
217
|
// src/models/MediaStoreServiceException.ts
|
|
213
218
|
|
|
214
|
-
var
|
|
219
|
+
var MediaStoreServiceException = class _MediaStoreServiceException extends import_smithy_client.ServiceException {
|
|
220
|
+
static {
|
|
221
|
+
__name(this, "MediaStoreServiceException");
|
|
222
|
+
}
|
|
215
223
|
/**
|
|
216
224
|
* @internal
|
|
217
225
|
*/
|
|
@@ -220,8 +228,6 @@ var _MediaStoreServiceException = class _MediaStoreServiceException extends impo
|
|
|
220
228
|
Object.setPrototypeOf(this, _MediaStoreServiceException.prototype);
|
|
221
229
|
}
|
|
222
230
|
};
|
|
223
|
-
__name(_MediaStoreServiceException, "MediaStoreServiceException");
|
|
224
|
-
var MediaStoreServiceException = _MediaStoreServiceException;
|
|
225
231
|
|
|
226
232
|
// src/models/models_0.ts
|
|
227
233
|
var MethodName = {
|
|
@@ -235,7 +241,13 @@ var ContainerStatus = {
|
|
|
235
241
|
CREATING: "CREATING",
|
|
236
242
|
DELETING: "DELETING"
|
|
237
243
|
};
|
|
238
|
-
var
|
|
244
|
+
var ContainerInUseException = class _ContainerInUseException extends MediaStoreServiceException {
|
|
245
|
+
static {
|
|
246
|
+
__name(this, "ContainerInUseException");
|
|
247
|
+
}
|
|
248
|
+
name = "ContainerInUseException";
|
|
249
|
+
$fault = "client";
|
|
250
|
+
Message;
|
|
239
251
|
/**
|
|
240
252
|
* @internal
|
|
241
253
|
*/
|
|
@@ -245,19 +257,21 @@ var _ContainerInUseException = class _ContainerInUseException extends MediaStore
|
|
|
245
257
|
$fault: "client",
|
|
246
258
|
...opts
|
|
247
259
|
});
|
|
248
|
-
this.name = "ContainerInUseException";
|
|
249
|
-
this.$fault = "client";
|
|
250
260
|
Object.setPrototypeOf(this, _ContainerInUseException.prototype);
|
|
251
261
|
this.Message = opts.Message;
|
|
252
262
|
}
|
|
253
263
|
};
|
|
254
|
-
__name(_ContainerInUseException, "ContainerInUseException");
|
|
255
|
-
var ContainerInUseException = _ContainerInUseException;
|
|
256
264
|
var ContainerLevelMetrics = {
|
|
257
265
|
DISABLED: "DISABLED",
|
|
258
266
|
ENABLED: "ENABLED"
|
|
259
267
|
};
|
|
260
|
-
var
|
|
268
|
+
var ContainerNotFoundException = class _ContainerNotFoundException extends MediaStoreServiceException {
|
|
269
|
+
static {
|
|
270
|
+
__name(this, "ContainerNotFoundException");
|
|
271
|
+
}
|
|
272
|
+
name = "ContainerNotFoundException";
|
|
273
|
+
$fault = "client";
|
|
274
|
+
Message;
|
|
261
275
|
/**
|
|
262
276
|
* @internal
|
|
263
277
|
*/
|
|
@@ -267,15 +281,17 @@ var _ContainerNotFoundException = class _ContainerNotFoundException extends Medi
|
|
|
267
281
|
$fault: "client",
|
|
268
282
|
...opts
|
|
269
283
|
});
|
|
270
|
-
this.name = "ContainerNotFoundException";
|
|
271
|
-
this.$fault = "client";
|
|
272
284
|
Object.setPrototypeOf(this, _ContainerNotFoundException.prototype);
|
|
273
285
|
this.Message = opts.Message;
|
|
274
286
|
}
|
|
275
287
|
};
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
288
|
+
var CorsPolicyNotFoundException = class _CorsPolicyNotFoundException extends MediaStoreServiceException {
|
|
289
|
+
static {
|
|
290
|
+
__name(this, "CorsPolicyNotFoundException");
|
|
291
|
+
}
|
|
292
|
+
name = "CorsPolicyNotFoundException";
|
|
293
|
+
$fault = "client";
|
|
294
|
+
Message;
|
|
279
295
|
/**
|
|
280
296
|
* @internal
|
|
281
297
|
*/
|
|
@@ -285,15 +301,17 @@ var _CorsPolicyNotFoundException = class _CorsPolicyNotFoundException extends Me
|
|
|
285
301
|
$fault: "client",
|
|
286
302
|
...opts
|
|
287
303
|
});
|
|
288
|
-
this.name = "CorsPolicyNotFoundException";
|
|
289
|
-
this.$fault = "client";
|
|
290
304
|
Object.setPrototypeOf(this, _CorsPolicyNotFoundException.prototype);
|
|
291
305
|
this.Message = opts.Message;
|
|
292
306
|
}
|
|
293
307
|
};
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
308
|
+
var InternalServerError = class _InternalServerError extends MediaStoreServiceException {
|
|
309
|
+
static {
|
|
310
|
+
__name(this, "InternalServerError");
|
|
311
|
+
}
|
|
312
|
+
name = "InternalServerError";
|
|
313
|
+
$fault = "server";
|
|
314
|
+
Message;
|
|
297
315
|
/**
|
|
298
316
|
* @internal
|
|
299
317
|
*/
|
|
@@ -303,15 +321,17 @@ var _InternalServerError = class _InternalServerError extends MediaStoreServiceE
|
|
|
303
321
|
$fault: "server",
|
|
304
322
|
...opts
|
|
305
323
|
});
|
|
306
|
-
this.name = "InternalServerError";
|
|
307
|
-
this.$fault = "server";
|
|
308
324
|
Object.setPrototypeOf(this, _InternalServerError.prototype);
|
|
309
325
|
this.Message = opts.Message;
|
|
310
326
|
}
|
|
311
327
|
};
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
328
|
+
var LimitExceededException = class _LimitExceededException extends MediaStoreServiceException {
|
|
329
|
+
static {
|
|
330
|
+
__name(this, "LimitExceededException");
|
|
331
|
+
}
|
|
332
|
+
name = "LimitExceededException";
|
|
333
|
+
$fault = "client";
|
|
334
|
+
Message;
|
|
315
335
|
/**
|
|
316
336
|
* @internal
|
|
317
337
|
*/
|
|
@@ -321,15 +341,17 @@ var _LimitExceededException = class _LimitExceededException extends MediaStoreSe
|
|
|
321
341
|
$fault: "client",
|
|
322
342
|
...opts
|
|
323
343
|
});
|
|
324
|
-
this.name = "LimitExceededException";
|
|
325
|
-
this.$fault = "client";
|
|
326
344
|
Object.setPrototypeOf(this, _LimitExceededException.prototype);
|
|
327
345
|
this.Message = opts.Message;
|
|
328
346
|
}
|
|
329
347
|
};
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
348
|
+
var PolicyNotFoundException = class _PolicyNotFoundException extends MediaStoreServiceException {
|
|
349
|
+
static {
|
|
350
|
+
__name(this, "PolicyNotFoundException");
|
|
351
|
+
}
|
|
352
|
+
name = "PolicyNotFoundException";
|
|
353
|
+
$fault = "client";
|
|
354
|
+
Message;
|
|
333
355
|
/**
|
|
334
356
|
* @internal
|
|
335
357
|
*/
|
|
@@ -339,14 +361,10 @@ var _PolicyNotFoundException = class _PolicyNotFoundException extends MediaStore
|
|
|
339
361
|
$fault: "client",
|
|
340
362
|
...opts
|
|
341
363
|
});
|
|
342
|
-
this.name = "PolicyNotFoundException";
|
|
343
|
-
this.$fault = "client";
|
|
344
364
|
Object.setPrototypeOf(this, _PolicyNotFoundException.prototype);
|
|
345
365
|
this.Message = opts.Message;
|
|
346
366
|
}
|
|
347
367
|
};
|
|
348
|
-
__name(_PolicyNotFoundException, "PolicyNotFoundException");
|
|
349
|
-
var PolicyNotFoundException = _PolicyNotFoundException;
|
|
350
368
|
|
|
351
369
|
// src/protocols/Aws_json1_1.ts
|
|
352
370
|
var se_CreateContainerCommand = /* @__PURE__ */ __name(async (input, context) => {
|
|
@@ -902,295 +920,316 @@ function sharedHeaders(operation) {
|
|
|
902
920
|
__name(sharedHeaders, "sharedHeaders");
|
|
903
921
|
|
|
904
922
|
// src/commands/CreateContainerCommand.ts
|
|
905
|
-
var
|
|
923
|
+
var CreateContainerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
906
924
|
return [
|
|
907
925
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
908
926
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
909
927
|
];
|
|
910
928
|
}).s("MediaStore_20170901", "CreateContainer", {}).n("MediaStoreClient", "CreateContainerCommand").f(void 0, void 0).ser(se_CreateContainerCommand).de(de_CreateContainerCommand).build() {
|
|
929
|
+
static {
|
|
930
|
+
__name(this, "CreateContainerCommand");
|
|
931
|
+
}
|
|
911
932
|
};
|
|
912
|
-
__name(_CreateContainerCommand, "CreateContainerCommand");
|
|
913
|
-
var CreateContainerCommand = _CreateContainerCommand;
|
|
914
933
|
|
|
915
934
|
// src/commands/DeleteContainerCommand.ts
|
|
916
935
|
|
|
917
936
|
|
|
918
937
|
|
|
919
|
-
var
|
|
938
|
+
var DeleteContainerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
920
939
|
return [
|
|
921
940
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
922
941
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
923
942
|
];
|
|
924
943
|
}).s("MediaStore_20170901", "DeleteContainer", {}).n("MediaStoreClient", "DeleteContainerCommand").f(void 0, void 0).ser(se_DeleteContainerCommand).de(de_DeleteContainerCommand).build() {
|
|
944
|
+
static {
|
|
945
|
+
__name(this, "DeleteContainerCommand");
|
|
946
|
+
}
|
|
925
947
|
};
|
|
926
|
-
__name(_DeleteContainerCommand, "DeleteContainerCommand");
|
|
927
|
-
var DeleteContainerCommand = _DeleteContainerCommand;
|
|
928
948
|
|
|
929
949
|
// src/commands/DeleteContainerPolicyCommand.ts
|
|
930
950
|
|
|
931
951
|
|
|
932
952
|
|
|
933
|
-
var
|
|
953
|
+
var DeleteContainerPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
934
954
|
return [
|
|
935
955
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
936
956
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
937
957
|
];
|
|
938
958
|
}).s("MediaStore_20170901", "DeleteContainerPolicy", {}).n("MediaStoreClient", "DeleteContainerPolicyCommand").f(void 0, void 0).ser(se_DeleteContainerPolicyCommand).de(de_DeleteContainerPolicyCommand).build() {
|
|
959
|
+
static {
|
|
960
|
+
__name(this, "DeleteContainerPolicyCommand");
|
|
961
|
+
}
|
|
939
962
|
};
|
|
940
|
-
__name(_DeleteContainerPolicyCommand, "DeleteContainerPolicyCommand");
|
|
941
|
-
var DeleteContainerPolicyCommand = _DeleteContainerPolicyCommand;
|
|
942
963
|
|
|
943
964
|
// src/commands/DeleteCorsPolicyCommand.ts
|
|
944
965
|
|
|
945
966
|
|
|
946
967
|
|
|
947
|
-
var
|
|
968
|
+
var DeleteCorsPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
948
969
|
return [
|
|
949
970
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
950
971
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
951
972
|
];
|
|
952
973
|
}).s("MediaStore_20170901", "DeleteCorsPolicy", {}).n("MediaStoreClient", "DeleteCorsPolicyCommand").f(void 0, void 0).ser(se_DeleteCorsPolicyCommand).de(de_DeleteCorsPolicyCommand).build() {
|
|
974
|
+
static {
|
|
975
|
+
__name(this, "DeleteCorsPolicyCommand");
|
|
976
|
+
}
|
|
953
977
|
};
|
|
954
|
-
__name(_DeleteCorsPolicyCommand, "DeleteCorsPolicyCommand");
|
|
955
|
-
var DeleteCorsPolicyCommand = _DeleteCorsPolicyCommand;
|
|
956
978
|
|
|
957
979
|
// src/commands/DeleteLifecyclePolicyCommand.ts
|
|
958
980
|
|
|
959
981
|
|
|
960
982
|
|
|
961
|
-
var
|
|
983
|
+
var DeleteLifecyclePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
962
984
|
return [
|
|
963
985
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
964
986
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
965
987
|
];
|
|
966
988
|
}).s("MediaStore_20170901", "DeleteLifecyclePolicy", {}).n("MediaStoreClient", "DeleteLifecyclePolicyCommand").f(void 0, void 0).ser(se_DeleteLifecyclePolicyCommand).de(de_DeleteLifecyclePolicyCommand).build() {
|
|
989
|
+
static {
|
|
990
|
+
__name(this, "DeleteLifecyclePolicyCommand");
|
|
991
|
+
}
|
|
967
992
|
};
|
|
968
|
-
__name(_DeleteLifecyclePolicyCommand, "DeleteLifecyclePolicyCommand");
|
|
969
|
-
var DeleteLifecyclePolicyCommand = _DeleteLifecyclePolicyCommand;
|
|
970
993
|
|
|
971
994
|
// src/commands/DeleteMetricPolicyCommand.ts
|
|
972
995
|
|
|
973
996
|
|
|
974
997
|
|
|
975
|
-
var
|
|
998
|
+
var DeleteMetricPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
976
999
|
return [
|
|
977
1000
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
978
1001
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
979
1002
|
];
|
|
980
1003
|
}).s("MediaStore_20170901", "DeleteMetricPolicy", {}).n("MediaStoreClient", "DeleteMetricPolicyCommand").f(void 0, void 0).ser(se_DeleteMetricPolicyCommand).de(de_DeleteMetricPolicyCommand).build() {
|
|
1004
|
+
static {
|
|
1005
|
+
__name(this, "DeleteMetricPolicyCommand");
|
|
1006
|
+
}
|
|
981
1007
|
};
|
|
982
|
-
__name(_DeleteMetricPolicyCommand, "DeleteMetricPolicyCommand");
|
|
983
|
-
var DeleteMetricPolicyCommand = _DeleteMetricPolicyCommand;
|
|
984
1008
|
|
|
985
1009
|
// src/commands/DescribeContainerCommand.ts
|
|
986
1010
|
|
|
987
1011
|
|
|
988
1012
|
|
|
989
|
-
var
|
|
1013
|
+
var DescribeContainerCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
990
1014
|
return [
|
|
991
1015
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
992
1016
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
993
1017
|
];
|
|
994
1018
|
}).s("MediaStore_20170901", "DescribeContainer", {}).n("MediaStoreClient", "DescribeContainerCommand").f(void 0, void 0).ser(se_DescribeContainerCommand).de(de_DescribeContainerCommand).build() {
|
|
1019
|
+
static {
|
|
1020
|
+
__name(this, "DescribeContainerCommand");
|
|
1021
|
+
}
|
|
995
1022
|
};
|
|
996
|
-
__name(_DescribeContainerCommand, "DescribeContainerCommand");
|
|
997
|
-
var DescribeContainerCommand = _DescribeContainerCommand;
|
|
998
1023
|
|
|
999
1024
|
// src/commands/GetContainerPolicyCommand.ts
|
|
1000
1025
|
|
|
1001
1026
|
|
|
1002
1027
|
|
|
1003
|
-
var
|
|
1028
|
+
var GetContainerPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1004
1029
|
return [
|
|
1005
1030
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1006
1031
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1007
1032
|
];
|
|
1008
1033
|
}).s("MediaStore_20170901", "GetContainerPolicy", {}).n("MediaStoreClient", "GetContainerPolicyCommand").f(void 0, void 0).ser(se_GetContainerPolicyCommand).de(de_GetContainerPolicyCommand).build() {
|
|
1034
|
+
static {
|
|
1035
|
+
__name(this, "GetContainerPolicyCommand");
|
|
1036
|
+
}
|
|
1009
1037
|
};
|
|
1010
|
-
__name(_GetContainerPolicyCommand, "GetContainerPolicyCommand");
|
|
1011
|
-
var GetContainerPolicyCommand = _GetContainerPolicyCommand;
|
|
1012
1038
|
|
|
1013
1039
|
// src/commands/GetCorsPolicyCommand.ts
|
|
1014
1040
|
|
|
1015
1041
|
|
|
1016
1042
|
|
|
1017
|
-
var
|
|
1043
|
+
var GetCorsPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1018
1044
|
return [
|
|
1019
1045
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1020
1046
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1021
1047
|
];
|
|
1022
1048
|
}).s("MediaStore_20170901", "GetCorsPolicy", {}).n("MediaStoreClient", "GetCorsPolicyCommand").f(void 0, void 0).ser(se_GetCorsPolicyCommand).de(de_GetCorsPolicyCommand).build() {
|
|
1049
|
+
static {
|
|
1050
|
+
__name(this, "GetCorsPolicyCommand");
|
|
1051
|
+
}
|
|
1023
1052
|
};
|
|
1024
|
-
__name(_GetCorsPolicyCommand, "GetCorsPolicyCommand");
|
|
1025
|
-
var GetCorsPolicyCommand = _GetCorsPolicyCommand;
|
|
1026
1053
|
|
|
1027
1054
|
// src/commands/GetLifecyclePolicyCommand.ts
|
|
1028
1055
|
|
|
1029
1056
|
|
|
1030
1057
|
|
|
1031
|
-
var
|
|
1058
|
+
var GetLifecyclePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1032
1059
|
return [
|
|
1033
1060
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1034
1061
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1035
1062
|
];
|
|
1036
1063
|
}).s("MediaStore_20170901", "GetLifecyclePolicy", {}).n("MediaStoreClient", "GetLifecyclePolicyCommand").f(void 0, void 0).ser(se_GetLifecyclePolicyCommand).de(de_GetLifecyclePolicyCommand).build() {
|
|
1064
|
+
static {
|
|
1065
|
+
__name(this, "GetLifecyclePolicyCommand");
|
|
1066
|
+
}
|
|
1037
1067
|
};
|
|
1038
|
-
__name(_GetLifecyclePolicyCommand, "GetLifecyclePolicyCommand");
|
|
1039
|
-
var GetLifecyclePolicyCommand = _GetLifecyclePolicyCommand;
|
|
1040
1068
|
|
|
1041
1069
|
// src/commands/GetMetricPolicyCommand.ts
|
|
1042
1070
|
|
|
1043
1071
|
|
|
1044
1072
|
|
|
1045
|
-
var
|
|
1073
|
+
var GetMetricPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1046
1074
|
return [
|
|
1047
1075
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1048
1076
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1049
1077
|
];
|
|
1050
1078
|
}).s("MediaStore_20170901", "GetMetricPolicy", {}).n("MediaStoreClient", "GetMetricPolicyCommand").f(void 0, void 0).ser(se_GetMetricPolicyCommand).de(de_GetMetricPolicyCommand).build() {
|
|
1079
|
+
static {
|
|
1080
|
+
__name(this, "GetMetricPolicyCommand");
|
|
1081
|
+
}
|
|
1051
1082
|
};
|
|
1052
|
-
__name(_GetMetricPolicyCommand, "GetMetricPolicyCommand");
|
|
1053
|
-
var GetMetricPolicyCommand = _GetMetricPolicyCommand;
|
|
1054
1083
|
|
|
1055
1084
|
// src/commands/ListContainersCommand.ts
|
|
1056
1085
|
|
|
1057
1086
|
|
|
1058
1087
|
|
|
1059
|
-
var
|
|
1088
|
+
var ListContainersCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1060
1089
|
return [
|
|
1061
1090
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1062
1091
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1063
1092
|
];
|
|
1064
1093
|
}).s("MediaStore_20170901", "ListContainers", {}).n("MediaStoreClient", "ListContainersCommand").f(void 0, void 0).ser(se_ListContainersCommand).de(de_ListContainersCommand).build() {
|
|
1094
|
+
static {
|
|
1095
|
+
__name(this, "ListContainersCommand");
|
|
1096
|
+
}
|
|
1065
1097
|
};
|
|
1066
|
-
__name(_ListContainersCommand, "ListContainersCommand");
|
|
1067
|
-
var ListContainersCommand = _ListContainersCommand;
|
|
1068
1098
|
|
|
1069
1099
|
// src/commands/ListTagsForResourceCommand.ts
|
|
1070
1100
|
|
|
1071
1101
|
|
|
1072
1102
|
|
|
1073
|
-
var
|
|
1103
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1074
1104
|
return [
|
|
1075
1105
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1076
1106
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1077
1107
|
];
|
|
1078
1108
|
}).s("MediaStore_20170901", "ListTagsForResource", {}).n("MediaStoreClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
1109
|
+
static {
|
|
1110
|
+
__name(this, "ListTagsForResourceCommand");
|
|
1111
|
+
}
|
|
1079
1112
|
};
|
|
1080
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
1081
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
1082
1113
|
|
|
1083
1114
|
// src/commands/PutContainerPolicyCommand.ts
|
|
1084
1115
|
|
|
1085
1116
|
|
|
1086
1117
|
|
|
1087
|
-
var
|
|
1118
|
+
var PutContainerPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1088
1119
|
return [
|
|
1089
1120
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1090
1121
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1091
1122
|
];
|
|
1092
1123
|
}).s("MediaStore_20170901", "PutContainerPolicy", {}).n("MediaStoreClient", "PutContainerPolicyCommand").f(void 0, void 0).ser(se_PutContainerPolicyCommand).de(de_PutContainerPolicyCommand).build() {
|
|
1124
|
+
static {
|
|
1125
|
+
__name(this, "PutContainerPolicyCommand");
|
|
1126
|
+
}
|
|
1093
1127
|
};
|
|
1094
|
-
__name(_PutContainerPolicyCommand, "PutContainerPolicyCommand");
|
|
1095
|
-
var PutContainerPolicyCommand = _PutContainerPolicyCommand;
|
|
1096
1128
|
|
|
1097
1129
|
// src/commands/PutCorsPolicyCommand.ts
|
|
1098
1130
|
|
|
1099
1131
|
|
|
1100
1132
|
|
|
1101
|
-
var
|
|
1133
|
+
var PutCorsPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1102
1134
|
return [
|
|
1103
1135
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1104
1136
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1105
1137
|
];
|
|
1106
1138
|
}).s("MediaStore_20170901", "PutCorsPolicy", {}).n("MediaStoreClient", "PutCorsPolicyCommand").f(void 0, void 0).ser(se_PutCorsPolicyCommand).de(de_PutCorsPolicyCommand).build() {
|
|
1139
|
+
static {
|
|
1140
|
+
__name(this, "PutCorsPolicyCommand");
|
|
1141
|
+
}
|
|
1107
1142
|
};
|
|
1108
|
-
__name(_PutCorsPolicyCommand, "PutCorsPolicyCommand");
|
|
1109
|
-
var PutCorsPolicyCommand = _PutCorsPolicyCommand;
|
|
1110
1143
|
|
|
1111
1144
|
// src/commands/PutLifecyclePolicyCommand.ts
|
|
1112
1145
|
|
|
1113
1146
|
|
|
1114
1147
|
|
|
1115
|
-
var
|
|
1148
|
+
var PutLifecyclePolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1116
1149
|
return [
|
|
1117
1150
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1118
1151
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1119
1152
|
];
|
|
1120
1153
|
}).s("MediaStore_20170901", "PutLifecyclePolicy", {}).n("MediaStoreClient", "PutLifecyclePolicyCommand").f(void 0, void 0).ser(se_PutLifecyclePolicyCommand).de(de_PutLifecyclePolicyCommand).build() {
|
|
1154
|
+
static {
|
|
1155
|
+
__name(this, "PutLifecyclePolicyCommand");
|
|
1156
|
+
}
|
|
1121
1157
|
};
|
|
1122
|
-
__name(_PutLifecyclePolicyCommand, "PutLifecyclePolicyCommand");
|
|
1123
|
-
var PutLifecyclePolicyCommand = _PutLifecyclePolicyCommand;
|
|
1124
1158
|
|
|
1125
1159
|
// src/commands/PutMetricPolicyCommand.ts
|
|
1126
1160
|
|
|
1127
1161
|
|
|
1128
1162
|
|
|
1129
|
-
var
|
|
1163
|
+
var PutMetricPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1130
1164
|
return [
|
|
1131
1165
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1132
1166
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1133
1167
|
];
|
|
1134
1168
|
}).s("MediaStore_20170901", "PutMetricPolicy", {}).n("MediaStoreClient", "PutMetricPolicyCommand").f(void 0, void 0).ser(se_PutMetricPolicyCommand).de(de_PutMetricPolicyCommand).build() {
|
|
1169
|
+
static {
|
|
1170
|
+
__name(this, "PutMetricPolicyCommand");
|
|
1171
|
+
}
|
|
1135
1172
|
};
|
|
1136
|
-
__name(_PutMetricPolicyCommand, "PutMetricPolicyCommand");
|
|
1137
|
-
var PutMetricPolicyCommand = _PutMetricPolicyCommand;
|
|
1138
1173
|
|
|
1139
1174
|
// src/commands/StartAccessLoggingCommand.ts
|
|
1140
1175
|
|
|
1141
1176
|
|
|
1142
1177
|
|
|
1143
|
-
var
|
|
1178
|
+
var StartAccessLoggingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1144
1179
|
return [
|
|
1145
1180
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1146
1181
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1147
1182
|
];
|
|
1148
1183
|
}).s("MediaStore_20170901", "StartAccessLogging", {}).n("MediaStoreClient", "StartAccessLoggingCommand").f(void 0, void 0).ser(se_StartAccessLoggingCommand).de(de_StartAccessLoggingCommand).build() {
|
|
1184
|
+
static {
|
|
1185
|
+
__name(this, "StartAccessLoggingCommand");
|
|
1186
|
+
}
|
|
1149
1187
|
};
|
|
1150
|
-
__name(_StartAccessLoggingCommand, "StartAccessLoggingCommand");
|
|
1151
|
-
var StartAccessLoggingCommand = _StartAccessLoggingCommand;
|
|
1152
1188
|
|
|
1153
1189
|
// src/commands/StopAccessLoggingCommand.ts
|
|
1154
1190
|
|
|
1155
1191
|
|
|
1156
1192
|
|
|
1157
|
-
var
|
|
1193
|
+
var StopAccessLoggingCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1158
1194
|
return [
|
|
1159
1195
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1160
1196
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1161
1197
|
];
|
|
1162
1198
|
}).s("MediaStore_20170901", "StopAccessLogging", {}).n("MediaStoreClient", "StopAccessLoggingCommand").f(void 0, void 0).ser(se_StopAccessLoggingCommand).de(de_StopAccessLoggingCommand).build() {
|
|
1199
|
+
static {
|
|
1200
|
+
__name(this, "StopAccessLoggingCommand");
|
|
1201
|
+
}
|
|
1163
1202
|
};
|
|
1164
|
-
__name(_StopAccessLoggingCommand, "StopAccessLoggingCommand");
|
|
1165
|
-
var StopAccessLoggingCommand = _StopAccessLoggingCommand;
|
|
1166
1203
|
|
|
1167
1204
|
// src/commands/TagResourceCommand.ts
|
|
1168
1205
|
|
|
1169
1206
|
|
|
1170
1207
|
|
|
1171
|
-
var
|
|
1208
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1172
1209
|
return [
|
|
1173
1210
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1174
1211
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1175
1212
|
];
|
|
1176
1213
|
}).s("MediaStore_20170901", "TagResource", {}).n("MediaStoreClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
1214
|
+
static {
|
|
1215
|
+
__name(this, "TagResourceCommand");
|
|
1216
|
+
}
|
|
1177
1217
|
};
|
|
1178
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
1179
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
1180
1218
|
|
|
1181
1219
|
// src/commands/UntagResourceCommand.ts
|
|
1182
1220
|
|
|
1183
1221
|
|
|
1184
1222
|
|
|
1185
|
-
var
|
|
1223
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1186
1224
|
return [
|
|
1187
1225
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1188
1226
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1189
1227
|
];
|
|
1190
1228
|
}).s("MediaStore_20170901", "UntagResource", {}).n("MediaStoreClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
1229
|
+
static {
|
|
1230
|
+
__name(this, "UntagResourceCommand");
|
|
1231
|
+
}
|
|
1191
1232
|
};
|
|
1192
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
1193
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
1194
1233
|
|
|
1195
1234
|
// src/MediaStore.ts
|
|
1196
1235
|
var commands = {
|
|
@@ -1216,10 +1255,11 @@ var commands = {
|
|
|
1216
1255
|
TagResourceCommand,
|
|
1217
1256
|
UntagResourceCommand
|
|
1218
1257
|
};
|
|
1219
|
-
var
|
|
1258
|
+
var MediaStore = class extends MediaStoreClient {
|
|
1259
|
+
static {
|
|
1260
|
+
__name(this, "MediaStore");
|
|
1261
|
+
}
|
|
1220
1262
|
};
|
|
1221
|
-
__name(_MediaStore, "MediaStore");
|
|
1222
|
-
var MediaStore = _MediaStore;
|
|
1223
1263
|
(0, import_smithy_client.createAggregatedClient)(commands, MediaStore);
|
|
1224
1264
|
|
|
1225
1265
|
// src/pagination/ListContainersPaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class MediaStoreClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -11,14 +11,15 @@ export const ContainerStatus = {
|
|
|
11
11
|
DELETING: "DELETING",
|
|
12
12
|
};
|
|
13
13
|
export class ContainerInUseException extends __BaseException {
|
|
14
|
+
name = "ContainerInUseException";
|
|
15
|
+
$fault = "client";
|
|
16
|
+
Message;
|
|
14
17
|
constructor(opts) {
|
|
15
18
|
super({
|
|
16
19
|
name: "ContainerInUseException",
|
|
17
20
|
$fault: "client",
|
|
18
21
|
...opts,
|
|
19
22
|
});
|
|
20
|
-
this.name = "ContainerInUseException";
|
|
21
|
-
this.$fault = "client";
|
|
22
23
|
Object.setPrototypeOf(this, ContainerInUseException.prototype);
|
|
23
24
|
this.Message = opts.Message;
|
|
24
25
|
}
|
|
@@ -28,66 +29,71 @@ export const ContainerLevelMetrics = {
|
|
|
28
29
|
ENABLED: "ENABLED",
|
|
29
30
|
};
|
|
30
31
|
export class ContainerNotFoundException extends __BaseException {
|
|
32
|
+
name = "ContainerNotFoundException";
|
|
33
|
+
$fault = "client";
|
|
34
|
+
Message;
|
|
31
35
|
constructor(opts) {
|
|
32
36
|
super({
|
|
33
37
|
name: "ContainerNotFoundException",
|
|
34
38
|
$fault: "client",
|
|
35
39
|
...opts,
|
|
36
40
|
});
|
|
37
|
-
this.name = "ContainerNotFoundException";
|
|
38
|
-
this.$fault = "client";
|
|
39
41
|
Object.setPrototypeOf(this, ContainerNotFoundException.prototype);
|
|
40
42
|
this.Message = opts.Message;
|
|
41
43
|
}
|
|
42
44
|
}
|
|
43
45
|
export class CorsPolicyNotFoundException extends __BaseException {
|
|
46
|
+
name = "CorsPolicyNotFoundException";
|
|
47
|
+
$fault = "client";
|
|
48
|
+
Message;
|
|
44
49
|
constructor(opts) {
|
|
45
50
|
super({
|
|
46
51
|
name: "CorsPolicyNotFoundException",
|
|
47
52
|
$fault: "client",
|
|
48
53
|
...opts,
|
|
49
54
|
});
|
|
50
|
-
this.name = "CorsPolicyNotFoundException";
|
|
51
|
-
this.$fault = "client";
|
|
52
55
|
Object.setPrototypeOf(this, CorsPolicyNotFoundException.prototype);
|
|
53
56
|
this.Message = opts.Message;
|
|
54
57
|
}
|
|
55
58
|
}
|
|
56
59
|
export class InternalServerError extends __BaseException {
|
|
60
|
+
name = "InternalServerError";
|
|
61
|
+
$fault = "server";
|
|
62
|
+
Message;
|
|
57
63
|
constructor(opts) {
|
|
58
64
|
super({
|
|
59
65
|
name: "InternalServerError",
|
|
60
66
|
$fault: "server",
|
|
61
67
|
...opts,
|
|
62
68
|
});
|
|
63
|
-
this.name = "InternalServerError";
|
|
64
|
-
this.$fault = "server";
|
|
65
69
|
Object.setPrototypeOf(this, InternalServerError.prototype);
|
|
66
70
|
this.Message = opts.Message;
|
|
67
71
|
}
|
|
68
72
|
}
|
|
69
73
|
export class LimitExceededException extends __BaseException {
|
|
74
|
+
name = "LimitExceededException";
|
|
75
|
+
$fault = "client";
|
|
76
|
+
Message;
|
|
70
77
|
constructor(opts) {
|
|
71
78
|
super({
|
|
72
79
|
name: "LimitExceededException",
|
|
73
80
|
$fault: "client",
|
|
74
81
|
...opts,
|
|
75
82
|
});
|
|
76
|
-
this.name = "LimitExceededException";
|
|
77
|
-
this.$fault = "client";
|
|
78
83
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
79
84
|
this.Message = opts.Message;
|
|
80
85
|
}
|
|
81
86
|
}
|
|
82
87
|
export class PolicyNotFoundException extends __BaseException {
|
|
88
|
+
name = "PolicyNotFoundException";
|
|
89
|
+
$fault = "client";
|
|
90
|
+
Message;
|
|
83
91
|
constructor(opts) {
|
|
84
92
|
super({
|
|
85
93
|
name: "PolicyNotFoundException",
|
|
86
94
|
$fault: "client",
|
|
87
95
|
...opts,
|
|
88
96
|
});
|
|
89
|
-
this.name = "PolicyNotFoundException";
|
|
90
|
-
this.$fault = "client";
|
|
91
97
|
Object.setPrototypeOf(this, PolicyNotFoundException.prototype);
|
|
92
98
|
this.Message = opts.Message;
|
|
93
99
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: MediaStoreClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: MediaStoreClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: MediaStoreClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: MediaStoreClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: MediaStoreClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: MediaStoreClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: MediaStoreClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: MediaStoreClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediastore",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediastore Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-mediastore",
|
|
@@ -20,56 +20,56 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|