@aws-sdk/client-kinesis-video 3.948.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 +488 -342
- package/dist-cjs/runtimeConfig.shared.js +7 -1
- package/dist-es/commands/CreateSignalingChannelCommand.js +2 -2
- package/dist-es/commands/CreateStreamCommand.js +2 -2
- package/dist-es/commands/DeleteEdgeConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteSignalingChannelCommand.js +2 -2
- package/dist-es/commands/DeleteStreamCommand.js +2 -2
- package/dist-es/commands/DescribeEdgeConfigurationCommand.js +2 -2
- package/dist-es/commands/DescribeImageGenerationConfigurationCommand.js +2 -2
- package/dist-es/commands/DescribeMappedResourceConfigurationCommand.js +2 -2
- package/dist-es/commands/DescribeMediaStorageConfigurationCommand.js +2 -2
- package/dist-es/commands/DescribeNotificationConfigurationCommand.js +2 -2
- package/dist-es/commands/DescribeSignalingChannelCommand.js +2 -2
- package/dist-es/commands/DescribeStreamCommand.js +2 -2
- package/dist-es/commands/DescribeStreamStorageConfigurationCommand.js +2 -2
- package/dist-es/commands/GetDataEndpointCommand.js +2 -2
- package/dist-es/commands/GetSignalingChannelEndpointCommand.js +2 -2
- package/dist-es/commands/ListEdgeAgentConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListSignalingChannelsCommand.js +2 -2
- package/dist-es/commands/ListStreamsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListTagsForStreamCommand.js +2 -2
- package/dist-es/commands/StartEdgeConfigurationUpdateCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/TagStreamCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UntagStreamCommand.js +2 -2
- package/dist-es/commands/UpdateDataRetentionCommand.js +2 -2
- package/dist-es/commands/UpdateImageGenerationConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdateMediaStorageConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdateNotificationConfigurationCommand.js +2 -2
- package/dist-es/commands/UpdateSignalingChannelCommand.js +2 -2
- package/dist-es/commands/UpdateStreamCommand.js +2 -2
- package/dist-es/commands/UpdateStreamStorageConfigurationCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +7 -1
- package/dist-es/schemas/schemas_0.js +272 -264
- package/dist-types/KinesisVideoClient.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 +139 -151
- package/dist-types/ts3.4/KinesisVideoClient.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 +138 -152
- package/package.json +34 -34
|
@@ -26,7 +26,13 @@ const getRuntimeConfig = (config) => {
|
|
|
26
26
|
},
|
|
27
27
|
],
|
|
28
28
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
29
|
-
protocol: config?.protocol ??
|
|
29
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
30
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
31
|
+
defaultNamespace: "com.amazonaws.kinesisvideo",
|
|
32
|
+
xmlNamespace: "https://kinesisvideo.amazonaws.com/doc/2017-09-30/",
|
|
33
|
+
version: "2017-09-30",
|
|
34
|
+
serviceTarget: "KinesisVideo_20170930",
|
|
35
|
+
},
|
|
30
36
|
serviceId: config?.serviceId ?? "Kinesis Video",
|
|
31
37
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
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 { CreateSignalingChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateSignalingChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateSignalingChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateSignalingChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "CreateSignalingChannel", {})
|
|
13
13
|
.n("KinesisVideoClient", "CreateSignalingChannelCommand")
|
|
14
|
-
.sc(CreateSignalingChannel)
|
|
14
|
+
.sc(CreateSignalingChannel$)
|
|
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 { CreateStream } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateStream$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateStreamCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateStreamCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "CreateStream", {})
|
|
13
13
|
.n("KinesisVideoClient", "CreateStreamCommand")
|
|
14
|
-
.sc(CreateStream)
|
|
14
|
+
.sc(CreateStream$)
|
|
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 { DeleteEdgeConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteEdgeConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteEdgeConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteEdgeConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "DeleteEdgeConfiguration", {})
|
|
13
13
|
.n("KinesisVideoClient", "DeleteEdgeConfigurationCommand")
|
|
14
|
-
.sc(DeleteEdgeConfiguration)
|
|
14
|
+
.sc(DeleteEdgeConfiguration$)
|
|
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 { DeleteSignalingChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteSignalingChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteSignalingChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteSignalingChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "DeleteSignalingChannel", {})
|
|
13
13
|
.n("KinesisVideoClient", "DeleteSignalingChannelCommand")
|
|
14
|
-
.sc(DeleteSignalingChannel)
|
|
14
|
+
.sc(DeleteSignalingChannel$)
|
|
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 { DeleteStream } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteStream$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteStreamCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteStreamCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "DeleteStream", {})
|
|
13
13
|
.n("KinesisVideoClient", "DeleteStreamCommand")
|
|
14
|
-
.sc(DeleteStream)
|
|
14
|
+
.sc(DeleteStream$)
|
|
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 { DescribeEdgeConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeEdgeConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeEdgeConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeEdgeConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "DescribeEdgeConfiguration", {})
|
|
13
13
|
.n("KinesisVideoClient", "DescribeEdgeConfigurationCommand")
|
|
14
|
-
.sc(DescribeEdgeConfiguration)
|
|
14
|
+
.sc(DescribeEdgeConfiguration$)
|
|
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 { DescribeImageGenerationConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeImageGenerationConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeImageGenerationConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeImageGenerationConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "DescribeImageGenerationConfiguration", {})
|
|
13
13
|
.n("KinesisVideoClient", "DescribeImageGenerationConfigurationCommand")
|
|
14
|
-
.sc(DescribeImageGenerationConfiguration)
|
|
14
|
+
.sc(DescribeImageGenerationConfiguration$)
|
|
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 { DescribeMappedResourceConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeMappedResourceConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeMappedResourceConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeMappedResourceConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "DescribeMappedResourceConfiguration", {})
|
|
13
13
|
.n("KinesisVideoClient", "DescribeMappedResourceConfigurationCommand")
|
|
14
|
-
.sc(DescribeMappedResourceConfiguration)
|
|
14
|
+
.sc(DescribeMappedResourceConfiguration$)
|
|
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 { DescribeMediaStorageConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeMediaStorageConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeMediaStorageConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeMediaStorageConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "DescribeMediaStorageConfiguration", {})
|
|
13
13
|
.n("KinesisVideoClient", "DescribeMediaStorageConfigurationCommand")
|
|
14
|
-
.sc(DescribeMediaStorageConfiguration)
|
|
14
|
+
.sc(DescribeMediaStorageConfiguration$)
|
|
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 { DescribeNotificationConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeNotificationConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeNotificationConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeNotificationConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "DescribeNotificationConfiguration", {})
|
|
13
13
|
.n("KinesisVideoClient", "DescribeNotificationConfigurationCommand")
|
|
14
|
-
.sc(DescribeNotificationConfiguration)
|
|
14
|
+
.sc(DescribeNotificationConfiguration$)
|
|
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 { DescribeSignalingChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeSignalingChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeSignalingChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeSignalingChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "DescribeSignalingChannel", {})
|
|
13
13
|
.n("KinesisVideoClient", "DescribeSignalingChannelCommand")
|
|
14
|
-
.sc(DescribeSignalingChannel)
|
|
14
|
+
.sc(DescribeSignalingChannel$)
|
|
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 { DescribeStream } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeStream$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeStreamCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeStreamCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "DescribeStream", {})
|
|
13
13
|
.n("KinesisVideoClient", "DescribeStreamCommand")
|
|
14
|
-
.sc(DescribeStream)
|
|
14
|
+
.sc(DescribeStream$)
|
|
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 { DescribeStreamStorageConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeStreamStorageConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeStreamStorageConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeStreamStorageConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "DescribeStreamStorageConfiguration", {})
|
|
13
13
|
.n("KinesisVideoClient", "DescribeStreamStorageConfigurationCommand")
|
|
14
|
-
.sc(DescribeStreamStorageConfiguration)
|
|
14
|
+
.sc(DescribeStreamStorageConfiguration$)
|
|
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 { GetDataEndpoint } from "../schemas/schemas_0";
|
|
4
|
+
import { GetDataEndpoint$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetDataEndpointCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetDataEndpointCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "GetDataEndpoint", {})
|
|
13
13
|
.n("KinesisVideoClient", "GetDataEndpointCommand")
|
|
14
|
-
.sc(GetDataEndpoint)
|
|
14
|
+
.sc(GetDataEndpoint$)
|
|
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 { GetSignalingChannelEndpoint } from "../schemas/schemas_0";
|
|
4
|
+
import { GetSignalingChannelEndpoint$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetSignalingChannelEndpointCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetSignalingChannelEndpointCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "GetSignalingChannelEndpoint", {})
|
|
13
13
|
.n("KinesisVideoClient", "GetSignalingChannelEndpointCommand")
|
|
14
|
-
.sc(GetSignalingChannelEndpoint)
|
|
14
|
+
.sc(GetSignalingChannelEndpoint$)
|
|
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 { ListEdgeAgentConfigurations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListEdgeAgentConfigurations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListEdgeAgentConfigurationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListEdgeAgentConfigurationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "ListEdgeAgentConfigurations", {})
|
|
13
13
|
.n("KinesisVideoClient", "ListEdgeAgentConfigurationsCommand")
|
|
14
|
-
.sc(ListEdgeAgentConfigurations)
|
|
14
|
+
.sc(ListEdgeAgentConfigurations$)
|
|
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 { ListSignalingChannels } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSignalingChannels$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSignalingChannelsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSignalingChannelsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "ListSignalingChannels", {})
|
|
13
13
|
.n("KinesisVideoClient", "ListSignalingChannelsCommand")
|
|
14
|
-
.sc(ListSignalingChannels)
|
|
14
|
+
.sc(ListSignalingChannels$)
|
|
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 { ListStreams } from "../schemas/schemas_0";
|
|
4
|
+
import { ListStreams$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListStreamsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListStreamsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "ListStreams", {})
|
|
13
13
|
.n("KinesisVideoClient", "ListStreamsCommand")
|
|
14
|
-
.sc(ListStreams)
|
|
14
|
+
.sc(ListStreams$)
|
|
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("KinesisVideo_20170930", "ListTagsForResource", {})
|
|
13
13
|
.n("KinesisVideoClient", "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 { ListTagsForStream } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForStream$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForStreamCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForStreamCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "ListTagsForStream", {})
|
|
13
13
|
.n("KinesisVideoClient", "ListTagsForStreamCommand")
|
|
14
|
-
.sc(ListTagsForStream)
|
|
14
|
+
.sc(ListTagsForStream$)
|
|
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 { StartEdgeConfigurationUpdate } from "../schemas/schemas_0";
|
|
4
|
+
import { StartEdgeConfigurationUpdate$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartEdgeConfigurationUpdateCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartEdgeConfigurationUpdateCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "StartEdgeConfigurationUpdate", {})
|
|
13
13
|
.n("KinesisVideoClient", "StartEdgeConfigurationUpdateCommand")
|
|
14
|
-
.sc(StartEdgeConfigurationUpdate)
|
|
14
|
+
.sc(StartEdgeConfigurationUpdate$)
|
|
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("KinesisVideo_20170930", "TagResource", {})
|
|
13
13
|
.n("KinesisVideoClient", "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 { TagStream } from "../schemas/schemas_0";
|
|
4
|
+
import { TagStream$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagStreamCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagStreamCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "TagStream", {})
|
|
13
13
|
.n("KinesisVideoClient", "TagStreamCommand")
|
|
14
|
-
.sc(TagStream)
|
|
14
|
+
.sc(TagStream$)
|
|
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("KinesisVideo_20170930", "UntagResource", {})
|
|
13
13
|
.n("KinesisVideoClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
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 { UntagStream } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagStream$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagStreamCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagStreamCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "UntagStream", {})
|
|
13
13
|
.n("KinesisVideoClient", "UntagStreamCommand")
|
|
14
|
-
.sc(UntagStream)
|
|
14
|
+
.sc(UntagStream$)
|
|
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 { UpdateDataRetention } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateDataRetention$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateDataRetentionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateDataRetentionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "UpdateDataRetention", {})
|
|
13
13
|
.n("KinesisVideoClient", "UpdateDataRetentionCommand")
|
|
14
|
-
.sc(UpdateDataRetention)
|
|
14
|
+
.sc(UpdateDataRetention$)
|
|
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 { UpdateImageGenerationConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateImageGenerationConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateImageGenerationConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateImageGenerationConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "UpdateImageGenerationConfiguration", {})
|
|
13
13
|
.n("KinesisVideoClient", "UpdateImageGenerationConfigurationCommand")
|
|
14
|
-
.sc(UpdateImageGenerationConfiguration)
|
|
14
|
+
.sc(UpdateImageGenerationConfiguration$)
|
|
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 { UpdateMediaStorageConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateMediaStorageConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateMediaStorageConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateMediaStorageConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "UpdateMediaStorageConfiguration", {})
|
|
13
13
|
.n("KinesisVideoClient", "UpdateMediaStorageConfigurationCommand")
|
|
14
|
-
.sc(UpdateMediaStorageConfiguration)
|
|
14
|
+
.sc(UpdateMediaStorageConfiguration$)
|
|
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 { UpdateNotificationConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateNotificationConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateNotificationConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateNotificationConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "UpdateNotificationConfiguration", {})
|
|
13
13
|
.n("KinesisVideoClient", "UpdateNotificationConfigurationCommand")
|
|
14
|
-
.sc(UpdateNotificationConfiguration)
|
|
14
|
+
.sc(UpdateNotificationConfiguration$)
|
|
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 { UpdateSignalingChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateSignalingChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateSignalingChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateSignalingChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "UpdateSignalingChannel", {})
|
|
13
13
|
.n("KinesisVideoClient", "UpdateSignalingChannelCommand")
|
|
14
|
-
.sc(UpdateSignalingChannel)
|
|
14
|
+
.sc(UpdateSignalingChannel$)
|
|
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 { UpdateStream } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateStream$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateStreamCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateStreamCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "UpdateStream", {})
|
|
13
13
|
.n("KinesisVideoClient", "UpdateStreamCommand")
|
|
14
|
-
.sc(UpdateStream)
|
|
14
|
+
.sc(UpdateStream$)
|
|
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 { UpdateStreamStorageConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateStreamStorageConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateStreamStorageConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateStreamStorageConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("KinesisVideo_20170930", "UpdateStreamStorageConfiguration", {})
|
|
13
13
|
.n("KinesisVideoClient", "UpdateStreamStorageConfigurationCommand")
|
|
14
|
-
.sc(UpdateStreamStorageConfiguration)
|
|
14
|
+
.sc(UpdateStreamStorageConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -23,7 +23,13 @@ export const getRuntimeConfig = (config) => {
|
|
|
23
23
|
},
|
|
24
24
|
],
|
|
25
25
|
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
-
protocol: config?.protocol ??
|
|
26
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
27
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
28
|
+
defaultNamespace: "com.amazonaws.kinesisvideo",
|
|
29
|
+
xmlNamespace: "https://kinesisvideo.amazonaws.com/doc/2017-09-30/",
|
|
30
|
+
version: "2017-09-30",
|
|
31
|
+
serviceTarget: "KinesisVideo_20170930",
|
|
32
|
+
},
|
|
27
33
|
serviceId: config?.serviceId ?? "Kinesis Video",
|
|
28
34
|
urlParser: config?.urlParser ?? parseUrl,
|
|
29
35
|
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|