@aws-sdk/client-ivs 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 +475 -321
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/BatchGetChannelCommand.js +2 -2
- package/dist-es/commands/BatchGetStreamKeyCommand.js +2 -2
- package/dist-es/commands/BatchStartViewerSessionRevocationCommand.js +2 -2
- package/dist-es/commands/CreateChannelCommand.js +2 -2
- package/dist-es/commands/CreatePlaybackRestrictionPolicyCommand.js +2 -2
- package/dist-es/commands/CreateRecordingConfigurationCommand.js +2 -2
- package/dist-es/commands/CreateStreamKeyCommand.js +2 -2
- package/dist-es/commands/DeleteChannelCommand.js +2 -2
- package/dist-es/commands/DeletePlaybackKeyPairCommand.js +2 -2
- package/dist-es/commands/DeletePlaybackRestrictionPolicyCommand.js +2 -2
- package/dist-es/commands/DeleteRecordingConfigurationCommand.js +2 -2
- package/dist-es/commands/DeleteStreamKeyCommand.js +2 -2
- package/dist-es/commands/GetChannelCommand.js +2 -2
- package/dist-es/commands/GetPlaybackKeyPairCommand.js +2 -2
- package/dist-es/commands/GetPlaybackRestrictionPolicyCommand.js +2 -2
- package/dist-es/commands/GetRecordingConfigurationCommand.js +2 -2
- package/dist-es/commands/GetStreamCommand.js +2 -2
- package/dist-es/commands/GetStreamKeyCommand.js +2 -2
- package/dist-es/commands/GetStreamSessionCommand.js +2 -2
- package/dist-es/commands/ImportPlaybackKeyPairCommand.js +2 -2
- package/dist-es/commands/ListChannelsCommand.js +2 -2
- package/dist-es/commands/ListPlaybackKeyPairsCommand.js +2 -2
- package/dist-es/commands/ListPlaybackRestrictionPoliciesCommand.js +2 -2
- package/dist-es/commands/ListRecordingConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListStreamKeysCommand.js +2 -2
- package/dist-es/commands/ListStreamSessionsCommand.js +2 -2
- package/dist-es/commands/ListStreamsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/PutMetadataCommand.js +2 -2
- package/dist-es/commands/StartViewerSessionRevocationCommand.js +2 -2
- package/dist-es/commands/StopStreamCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/commands/UpdateChannelCommand.js +2 -2
- package/dist-es/commands/UpdatePlaybackRestrictionPolicyCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +281 -267
- package/dist-types/IvsClient.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 +141 -168
- package/dist-types/ts3.4/IvsClient.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 +140 -169
- package/package.json +34 -34
|
@@ -26,7 +26,12 @@ 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.ivs",
|
|
32
|
+
version: "2020-07-14",
|
|
33
|
+
serviceTarget: "AmazonInteractiveVideoService",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "ivs",
|
|
31
36
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
32
37
|
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 { BatchGetChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchGetChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchGetChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchGetChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "BatchGetChannel", {})
|
|
13
13
|
.n("IvsClient", "BatchGetChannelCommand")
|
|
14
|
-
.sc(BatchGetChannel)
|
|
14
|
+
.sc(BatchGetChannel$)
|
|
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 { BatchGetStreamKey } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchGetStreamKey$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchGetStreamKeyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchGetStreamKeyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "BatchGetStreamKey", {})
|
|
13
13
|
.n("IvsClient", "BatchGetStreamKeyCommand")
|
|
14
|
-
.sc(BatchGetStreamKey)
|
|
14
|
+
.sc(BatchGetStreamKey$)
|
|
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 { BatchStartViewerSessionRevocation } from "../schemas/schemas_0";
|
|
4
|
+
import { BatchStartViewerSessionRevocation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class BatchStartViewerSessionRevocationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class BatchStartViewerSessionRevocationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "BatchStartViewerSessionRevocation", {})
|
|
13
13
|
.n("IvsClient", "BatchStartViewerSessionRevocationCommand")
|
|
14
|
-
.sc(BatchStartViewerSessionRevocation)
|
|
14
|
+
.sc(BatchStartViewerSessionRevocation$)
|
|
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 { CreateChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "CreateChannel", {})
|
|
13
13
|
.n("IvsClient", "CreateChannelCommand")
|
|
14
|
-
.sc(CreateChannel)
|
|
14
|
+
.sc(CreateChannel$)
|
|
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 { CreatePlaybackRestrictionPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { CreatePlaybackRestrictionPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreatePlaybackRestrictionPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreatePlaybackRestrictionPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "CreatePlaybackRestrictionPolicy", {})
|
|
13
13
|
.n("IvsClient", "CreatePlaybackRestrictionPolicyCommand")
|
|
14
|
-
.sc(CreatePlaybackRestrictionPolicy)
|
|
14
|
+
.sc(CreatePlaybackRestrictionPolicy$)
|
|
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 { CreateRecordingConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateRecordingConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateRecordingConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateRecordingConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "CreateRecordingConfiguration", {})
|
|
13
13
|
.n("IvsClient", "CreateRecordingConfigurationCommand")
|
|
14
|
-
.sc(CreateRecordingConfiguration)
|
|
14
|
+
.sc(CreateRecordingConfiguration$)
|
|
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 { CreateStreamKey } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateStreamKey$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateStreamKeyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateStreamKeyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "CreateStreamKey", {})
|
|
13
13
|
.n("IvsClient", "CreateStreamKeyCommand")
|
|
14
|
-
.sc(CreateStreamKey)
|
|
14
|
+
.sc(CreateStreamKey$)
|
|
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 { DeleteChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "DeleteChannel", {})
|
|
13
13
|
.n("IvsClient", "DeleteChannelCommand")
|
|
14
|
-
.sc(DeleteChannel)
|
|
14
|
+
.sc(DeleteChannel$)
|
|
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 { DeletePlaybackKeyPair } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePlaybackKeyPair$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePlaybackKeyPairCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeletePlaybackKeyPairCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "DeletePlaybackKeyPair", {})
|
|
13
13
|
.n("IvsClient", "DeletePlaybackKeyPairCommand")
|
|
14
|
-
.sc(DeletePlaybackKeyPair)
|
|
14
|
+
.sc(DeletePlaybackKeyPair$)
|
|
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 { DeletePlaybackRestrictionPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePlaybackRestrictionPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePlaybackRestrictionPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeletePlaybackRestrictionPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "DeletePlaybackRestrictionPolicy", {})
|
|
13
13
|
.n("IvsClient", "DeletePlaybackRestrictionPolicyCommand")
|
|
14
|
-
.sc(DeletePlaybackRestrictionPolicy)
|
|
14
|
+
.sc(DeletePlaybackRestrictionPolicy$)
|
|
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 { DeleteRecordingConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteRecordingConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteRecordingConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteRecordingConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "DeleteRecordingConfiguration", {})
|
|
13
13
|
.n("IvsClient", "DeleteRecordingConfigurationCommand")
|
|
14
|
-
.sc(DeleteRecordingConfiguration)
|
|
14
|
+
.sc(DeleteRecordingConfiguration$)
|
|
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 { DeleteStreamKey } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteStreamKey$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteStreamKeyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteStreamKeyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "DeleteStreamKey", {})
|
|
13
13
|
.n("IvsClient", "DeleteStreamKeyCommand")
|
|
14
|
-
.sc(DeleteStreamKey)
|
|
14
|
+
.sc(DeleteStreamKey$)
|
|
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 { GetChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { GetChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "GetChannel", {})
|
|
13
13
|
.n("IvsClient", "GetChannelCommand")
|
|
14
|
-
.sc(GetChannel)
|
|
14
|
+
.sc(GetChannel$)
|
|
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 { GetPlaybackKeyPair } from "../schemas/schemas_0";
|
|
4
|
+
import { GetPlaybackKeyPair$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetPlaybackKeyPairCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetPlaybackKeyPairCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "GetPlaybackKeyPair", {})
|
|
13
13
|
.n("IvsClient", "GetPlaybackKeyPairCommand")
|
|
14
|
-
.sc(GetPlaybackKeyPair)
|
|
14
|
+
.sc(GetPlaybackKeyPair$)
|
|
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 { GetPlaybackRestrictionPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetPlaybackRestrictionPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetPlaybackRestrictionPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetPlaybackRestrictionPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "GetPlaybackRestrictionPolicy", {})
|
|
13
13
|
.n("IvsClient", "GetPlaybackRestrictionPolicyCommand")
|
|
14
|
-
.sc(GetPlaybackRestrictionPolicy)
|
|
14
|
+
.sc(GetPlaybackRestrictionPolicy$)
|
|
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 { GetRecordingConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRecordingConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRecordingConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRecordingConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "GetRecordingConfiguration", {})
|
|
13
13
|
.n("IvsClient", "GetRecordingConfigurationCommand")
|
|
14
|
-
.sc(GetRecordingConfiguration)
|
|
14
|
+
.sc(GetRecordingConfiguration$)
|
|
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 { GetStream } from "../schemas/schemas_0";
|
|
4
|
+
import { GetStream$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetStreamCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetStreamCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "GetStream", {})
|
|
13
13
|
.n("IvsClient", "GetStreamCommand")
|
|
14
|
-
.sc(GetStream)
|
|
14
|
+
.sc(GetStream$)
|
|
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 { GetStreamKey } from "../schemas/schemas_0";
|
|
4
|
+
import { GetStreamKey$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetStreamKeyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetStreamKeyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "GetStreamKey", {})
|
|
13
13
|
.n("IvsClient", "GetStreamKeyCommand")
|
|
14
|
-
.sc(GetStreamKey)
|
|
14
|
+
.sc(GetStreamKey$)
|
|
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 { GetStreamSession } from "../schemas/schemas_0";
|
|
4
|
+
import { GetStreamSession$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetStreamSessionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetStreamSessionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "GetStreamSession", {})
|
|
13
13
|
.n("IvsClient", "GetStreamSessionCommand")
|
|
14
|
-
.sc(GetStreamSession)
|
|
14
|
+
.sc(GetStreamSession$)
|
|
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 { ImportPlaybackKeyPair } from "../schemas/schemas_0";
|
|
4
|
+
import { ImportPlaybackKeyPair$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ImportPlaybackKeyPairCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ImportPlaybackKeyPairCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "ImportPlaybackKeyPair", {})
|
|
13
13
|
.n("IvsClient", "ImportPlaybackKeyPairCommand")
|
|
14
|
-
.sc(ImportPlaybackKeyPair)
|
|
14
|
+
.sc(ImportPlaybackKeyPair$)
|
|
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 { ListChannels } from "../schemas/schemas_0";
|
|
4
|
+
import { ListChannels$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListChannelsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListChannelsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "ListChannels", {})
|
|
13
13
|
.n("IvsClient", "ListChannelsCommand")
|
|
14
|
-
.sc(ListChannels)
|
|
14
|
+
.sc(ListChannels$)
|
|
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 { ListPlaybackKeyPairs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPlaybackKeyPairs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPlaybackKeyPairsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPlaybackKeyPairsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "ListPlaybackKeyPairs", {})
|
|
13
13
|
.n("IvsClient", "ListPlaybackKeyPairsCommand")
|
|
14
|
-
.sc(ListPlaybackKeyPairs)
|
|
14
|
+
.sc(ListPlaybackKeyPairs$)
|
|
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 { ListPlaybackRestrictionPolicies } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPlaybackRestrictionPolicies$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPlaybackRestrictionPoliciesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPlaybackRestrictionPoliciesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "ListPlaybackRestrictionPolicies", {})
|
|
13
13
|
.n("IvsClient", "ListPlaybackRestrictionPoliciesCommand")
|
|
14
|
-
.sc(ListPlaybackRestrictionPolicies)
|
|
14
|
+
.sc(ListPlaybackRestrictionPolicies$)
|
|
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 { ListRecordingConfigurations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRecordingConfigurations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRecordingConfigurationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRecordingConfigurationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "ListRecordingConfigurations", {})
|
|
13
13
|
.n("IvsClient", "ListRecordingConfigurationsCommand")
|
|
14
|
-
.sc(ListRecordingConfigurations)
|
|
14
|
+
.sc(ListRecordingConfigurations$)
|
|
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 { ListStreamKeys } from "../schemas/schemas_0";
|
|
4
|
+
import { ListStreamKeys$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListStreamKeysCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListStreamKeysCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "ListStreamKeys", {})
|
|
13
13
|
.n("IvsClient", "ListStreamKeysCommand")
|
|
14
|
-
.sc(ListStreamKeys)
|
|
14
|
+
.sc(ListStreamKeys$)
|
|
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 { ListStreamSessions } from "../schemas/schemas_0";
|
|
4
|
+
import { ListStreamSessions$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListStreamSessionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListStreamSessionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "ListStreamSessions", {})
|
|
13
13
|
.n("IvsClient", "ListStreamSessionsCommand")
|
|
14
|
-
.sc(ListStreamSessions)
|
|
14
|
+
.sc(ListStreamSessions$)
|
|
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("AmazonInteractiveVideoService", "ListStreams", {})
|
|
13
13
|
.n("IvsClient", "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("AmazonInteractiveVideoService", "ListTagsForResource", {})
|
|
13
13
|
.n("IvsClient", "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 { PutMetadata } from "../schemas/schemas_0";
|
|
4
|
+
import { PutMetadata$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutMetadataCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutMetadataCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "PutMetadata", {})
|
|
13
13
|
.n("IvsClient", "PutMetadataCommand")
|
|
14
|
-
.sc(PutMetadata)
|
|
14
|
+
.sc(PutMetadata$)
|
|
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 { StartViewerSessionRevocation } from "../schemas/schemas_0";
|
|
4
|
+
import { StartViewerSessionRevocation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartViewerSessionRevocationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartViewerSessionRevocationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "StartViewerSessionRevocation", {})
|
|
13
13
|
.n("IvsClient", "StartViewerSessionRevocationCommand")
|
|
14
|
-
.sc(StartViewerSessionRevocation)
|
|
14
|
+
.sc(StartViewerSessionRevocation$)
|
|
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 { StopStream } from "../schemas/schemas_0";
|
|
4
|
+
import { StopStream$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopStreamCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopStreamCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "StopStream", {})
|
|
13
13
|
.n("IvsClient", "StopStreamCommand")
|
|
14
|
-
.sc(StopStream)
|
|
14
|
+
.sc(StopStream$)
|
|
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("AmazonInteractiveVideoService", "TagResource", {})
|
|
13
13
|
.n("IvsClient", "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("AmazonInteractiveVideoService", "UntagResource", {})
|
|
13
13
|
.n("IvsClient", "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 { UpdateChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdateChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdateChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdateChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "UpdateChannel", {})
|
|
13
13
|
.n("IvsClient", "UpdateChannelCommand")
|
|
14
|
-
.sc(UpdateChannel)
|
|
14
|
+
.sc(UpdateChannel$)
|
|
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 { UpdatePlaybackRestrictionPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { UpdatePlaybackRestrictionPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UpdatePlaybackRestrictionPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UpdatePlaybackRestrictionPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("AmazonInteractiveVideoService", "UpdatePlaybackRestrictionPolicy", {})
|
|
13
13
|
.n("IvsClient", "UpdatePlaybackRestrictionPolicyCommand")
|
|
14
|
-
.sc(UpdatePlaybackRestrictionPolicy)
|
|
14
|
+
.sc(UpdatePlaybackRestrictionPolicy$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|