@aws-sdk/client-mediastore 3.952.0 → 3.953.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 +248 -166
- package/dist-cjs/runtimeConfig.shared.js +7 -6
- package/dist-es/commands/CreateContainerCommand.js +2 -2
- package/dist-es/commands/DeleteContainerCommand.js +2 -2
- package/dist-es/commands/DeleteContainerPolicyCommand.js +2 -2
- package/dist-es/commands/DeleteCorsPolicyCommand.js +2 -2
- package/dist-es/commands/DeleteLifecyclePolicyCommand.js +2 -2
- package/dist-es/commands/DeleteMetricPolicyCommand.js +2 -2
- package/dist-es/commands/DescribeContainerCommand.js +2 -2
- package/dist-es/commands/GetContainerPolicyCommand.js +2 -2
- package/dist-es/commands/GetCorsPolicyCommand.js +2 -2
- package/dist-es/commands/GetLifecyclePolicyCommand.js +2 -2
- package/dist-es/commands/GetMetricPolicyCommand.js +2 -2
- package/dist-es/commands/ListContainersCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutContainerPolicyCommand.js +2 -2
- package/dist-es/commands/PutCorsPolicyCommand.js +2 -2
- package/dist-es/commands/PutLifecyclePolicyCommand.js +2 -2
- package/dist-es/commands/PutMetricPolicyCommand.js +2 -2
- package/dist-es/commands/StartAccessLoggingCommand.js +2 -2
- package/dist-es/commands/StopAccessLoggingCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -6
- package/dist-es/schemas/schemas_0.js +138 -131
- package/dist-types/MediaStoreClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +76 -85
- package/dist-types/ts3.4/MediaStoreClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +75 -85
- package/package.json +34 -34
|
@@ -26,12 +26,13 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsJson1_1Protocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.mediastore",
|
|
32
|
+
xmlNamespace: "https://mediastore.amazonaws.com/doc/2017-09-01",
|
|
33
|
+
version: "2017-09-01",
|
|
34
|
+
serviceTarget: "MediaStore_20170901",
|
|
35
|
+
},
|
|
35
36
|
serviceId: config?.serviceId ?? "MediaStore",
|
|
36
37
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
37
38
|
utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { CreateContainer } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateContainer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateContainerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateContainerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "CreateContainer", {})
|
|
13
13
|
.n("MediaStoreClient", "CreateContainerCommand")
|
|
14
|
-
.sc(CreateContainer)
|
|
14
|
+
.sc(CreateContainer$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteContainer } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteContainer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteContainerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteContainerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "DeleteContainer", {})
|
|
13
13
|
.n("MediaStoreClient", "DeleteContainerCommand")
|
|
14
|
-
.sc(DeleteContainer)
|
|
14
|
+
.sc(DeleteContainer$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteContainerPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteContainerPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteContainerPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteContainerPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "DeleteContainerPolicy", {})
|
|
13
13
|
.n("MediaStoreClient", "DeleteContainerPolicyCommand")
|
|
14
|
-
.sc(DeleteContainerPolicy)
|
|
14
|
+
.sc(DeleteContainerPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteCorsPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteCorsPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteCorsPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteCorsPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "DeleteCorsPolicy", {})
|
|
13
13
|
.n("MediaStoreClient", "DeleteCorsPolicyCommand")
|
|
14
|
-
.sc(DeleteCorsPolicy)
|
|
14
|
+
.sc(DeleteCorsPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteLifecyclePolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteLifecyclePolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteLifecyclePolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteLifecyclePolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "DeleteLifecyclePolicy", {})
|
|
13
13
|
.n("MediaStoreClient", "DeleteLifecyclePolicyCommand")
|
|
14
|
-
.sc(DeleteLifecyclePolicy)
|
|
14
|
+
.sc(DeleteLifecyclePolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteMetricPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteMetricPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteMetricPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteMetricPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "DeleteMetricPolicy", {})
|
|
13
13
|
.n("MediaStoreClient", "DeleteMetricPolicyCommand")
|
|
14
|
-
.sc(DeleteMetricPolicy)
|
|
14
|
+
.sc(DeleteMetricPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DescribeContainer } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeContainer$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeContainerCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeContainerCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "DescribeContainer", {})
|
|
13
13
|
.n("MediaStoreClient", "DescribeContainerCommand")
|
|
14
|
-
.sc(DescribeContainer)
|
|
14
|
+
.sc(DescribeContainer$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetContainerPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetContainerPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetContainerPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetContainerPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "GetContainerPolicy", {})
|
|
13
13
|
.n("MediaStoreClient", "GetContainerPolicyCommand")
|
|
14
|
-
.sc(GetContainerPolicy)
|
|
14
|
+
.sc(GetContainerPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetCorsPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetCorsPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetCorsPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetCorsPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "GetCorsPolicy", {})
|
|
13
13
|
.n("MediaStoreClient", "GetCorsPolicyCommand")
|
|
14
|
-
.sc(GetCorsPolicy)
|
|
14
|
+
.sc(GetCorsPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetLifecyclePolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetLifecyclePolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetLifecyclePolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetLifecyclePolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "GetLifecyclePolicy", {})
|
|
13
13
|
.n("MediaStoreClient", "GetLifecyclePolicyCommand")
|
|
14
|
-
.sc(GetLifecyclePolicy)
|
|
14
|
+
.sc(GetLifecyclePolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetMetricPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetMetricPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetMetricPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetMetricPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "GetMetricPolicy", {})
|
|
13
13
|
.n("MediaStoreClient", "GetMetricPolicyCommand")
|
|
14
|
-
.sc(GetMetricPolicy)
|
|
14
|
+
.sc(GetMetricPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListContainers } from "../schemas/schemas_0";
|
|
4
|
+
import { ListContainers$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListContainersCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListContainersCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "ListContainers", {})
|
|
13
13
|
.n("MediaStoreClient", "ListContainersCommand")
|
|
14
|
-
.sc(ListContainers)
|
|
14
|
+
.sc(ListContainers$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "ListTagsForResource", {})
|
|
13
13
|
.n("MediaStoreClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutContainerPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { PutContainerPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutContainerPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutContainerPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "PutContainerPolicy", {})
|
|
13
13
|
.n("MediaStoreClient", "PutContainerPolicyCommand")
|
|
14
|
-
.sc(PutContainerPolicy)
|
|
14
|
+
.sc(PutContainerPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutCorsPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { PutCorsPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutCorsPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutCorsPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "PutCorsPolicy", {})
|
|
13
13
|
.n("MediaStoreClient", "PutCorsPolicyCommand")
|
|
14
|
-
.sc(PutCorsPolicy)
|
|
14
|
+
.sc(PutCorsPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutLifecyclePolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { PutLifecyclePolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutLifecyclePolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutLifecyclePolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "PutLifecyclePolicy", {})
|
|
13
13
|
.n("MediaStoreClient", "PutLifecyclePolicyCommand")
|
|
14
|
-
.sc(PutLifecyclePolicy)
|
|
14
|
+
.sc(PutLifecyclePolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { PutMetricPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { PutMetricPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutMetricPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutMetricPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "PutMetricPolicy", {})
|
|
13
13
|
.n("MediaStoreClient", "PutMetricPolicyCommand")
|
|
14
|
-
.sc(PutMetricPolicy)
|
|
14
|
+
.sc(PutMetricPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartAccessLogging } from "../schemas/schemas_0";
|
|
4
|
+
import { StartAccessLogging$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartAccessLoggingCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartAccessLoggingCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "StartAccessLogging", {})
|
|
13
13
|
.n("MediaStoreClient", "StartAccessLoggingCommand")
|
|
14
|
-
.sc(StartAccessLogging)
|
|
14
|
+
.sc(StartAccessLogging$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StopAccessLogging } from "../schemas/schemas_0";
|
|
4
|
+
import { StopAccessLogging$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopAccessLoggingCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopAccessLoggingCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "StopAccessLogging", {})
|
|
13
13
|
.n("MediaStoreClient", "StopAccessLoggingCommand")
|
|
14
|
-
.sc(StopAccessLogging)
|
|
14
|
+
.sc(StopAccessLogging$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "TagResource", {})
|
|
13
13
|
.n("MediaStoreClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaStore_20170901", "UntagResource", {})
|
|
13
13
|
.n("MediaStoreClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,12 +23,13 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.mediastore",
|
|
29
|
+
xmlNamespace: "https://mediastore.amazonaws.com/doc/2017-09-01",
|
|
30
|
+
version: "2017-09-01",
|
|
31
|
+
serviceTarget: "MediaStore_20170901",
|
|
32
|
+
},
|
|
32
33
|
serviceId: config?.serviceId ?? "MediaStore",
|
|
33
34
|
urlParser: config?.urlParser ?? parseUrl,
|
|
34
35
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|