@aws-sdk/client-mediatailor 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 +628 -444
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/ConfigureLogsForChannelCommand.js +2 -2
- package/dist-es/commands/ConfigureLogsForPlaybackConfigurationCommand.js +2 -2
- package/dist-es/commands/CreateChannelCommand.js +2 -2
- package/dist-es/commands/CreateLiveSourceCommand.js +2 -2
- package/dist-es/commands/CreatePrefetchScheduleCommand.js +2 -2
- package/dist-es/commands/CreateProgramCommand.js +2 -2
- package/dist-es/commands/CreateSourceLocationCommand.js +2 -2
- package/dist-es/commands/CreateVodSourceCommand.js +2 -2
- package/dist-es/commands/DeleteChannelCommand.js +2 -2
- package/dist-es/commands/DeleteChannelPolicyCommand.js +2 -2
- package/dist-es/commands/DeleteLiveSourceCommand.js +2 -2
- package/dist-es/commands/DeletePlaybackConfigurationCommand.js +2 -2
- package/dist-es/commands/DeletePrefetchScheduleCommand.js +2 -2
- package/dist-es/commands/DeleteProgramCommand.js +2 -2
- package/dist-es/commands/DeleteSourceLocationCommand.js +2 -2
- package/dist-es/commands/DeleteVodSourceCommand.js +2 -2
- package/dist-es/commands/DescribeChannelCommand.js +2 -2
- package/dist-es/commands/DescribeLiveSourceCommand.js +2 -2
- package/dist-es/commands/DescribeProgramCommand.js +2 -2
- package/dist-es/commands/DescribeSourceLocationCommand.js +2 -2
- package/dist-es/commands/DescribeVodSourceCommand.js +2 -2
- package/dist-es/commands/GetChannelPolicyCommand.js +2 -2
- package/dist-es/commands/GetChannelScheduleCommand.js +2 -2
- package/dist-es/commands/GetPlaybackConfigurationCommand.js +2 -2
- package/dist-es/commands/GetPrefetchScheduleCommand.js +2 -2
- package/dist-es/commands/ListAlertsCommand.js +2 -2
- package/dist-es/commands/ListChannelsCommand.js +2 -2
- package/dist-es/commands/ListLiveSourcesCommand.js +2 -2
- package/dist-es/commands/ListPlaybackConfigurationsCommand.js +2 -2
- package/dist-es/commands/ListPrefetchSchedulesCommand.js +2 -2
- package/dist-es/commands/ListSourceLocationsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListVodSourcesCommand.js +2 -2
- package/dist-es/commands/PutChannelPolicyCommand.js +2 -2
- package/dist-es/commands/PutPlaybackConfigurationCommand.js +2 -2
- package/dist-es/commands/StartChannelCommand.js +2 -2
- package/dist-es/commands/StopChannelCommand.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/UpdateLiveSourceCommand.js +2 -2
- package/dist-es/commands/UpdateProgramCommand.js +2 -2
- package/dist-es/commands/UpdateSourceLocationCommand.js +2 -2
- package/dist-es/commands/UpdateVodSourceCommand.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 +403 -409
- package/dist-types/MediaTailorClient.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 +191 -224
- package/dist-types/ts3.4/MediaTailorClient.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 +190 -225
- 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.mediatailor",
|
|
32
|
+
version: "2018-04-23",
|
|
33
|
+
serviceTarget: "MediaTailor",
|
|
34
|
+
},
|
|
30
35
|
serviceId: config?.serviceId ?? "MediaTailor",
|
|
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 { ConfigureLogsForChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { ConfigureLogsForChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ConfigureLogsForChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ConfigureLogsForChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "ConfigureLogsForChannel", {})
|
|
13
13
|
.n("MediaTailorClient", "ConfigureLogsForChannelCommand")
|
|
14
|
-
.sc(ConfigureLogsForChannel)
|
|
14
|
+
.sc(ConfigureLogsForChannel$)
|
|
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 { ConfigureLogsForPlaybackConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { ConfigureLogsForPlaybackConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ConfigureLogsForPlaybackConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ConfigureLogsForPlaybackConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "ConfigureLogsForPlaybackConfiguration", {})
|
|
13
13
|
.n("MediaTailorClient", "ConfigureLogsForPlaybackConfigurationCommand")
|
|
14
|
-
.sc(ConfigureLogsForPlaybackConfiguration)
|
|
14
|
+
.sc(ConfigureLogsForPlaybackConfiguration$)
|
|
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("MediaTailor", "CreateChannel", {})
|
|
13
13
|
.n("MediaTailorClient", "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 { CreateLiveSource } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateLiveSource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateLiveSourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateLiveSourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "CreateLiveSource", {})
|
|
13
13
|
.n("MediaTailorClient", "CreateLiveSourceCommand")
|
|
14
|
-
.sc(CreateLiveSource)
|
|
14
|
+
.sc(CreateLiveSource$)
|
|
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 { CreatePrefetchSchedule } from "../schemas/schemas_0";
|
|
4
|
+
import { CreatePrefetchSchedule$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreatePrefetchScheduleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreatePrefetchScheduleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "CreatePrefetchSchedule", {})
|
|
13
13
|
.n("MediaTailorClient", "CreatePrefetchScheduleCommand")
|
|
14
|
-
.sc(CreatePrefetchSchedule)
|
|
14
|
+
.sc(CreatePrefetchSchedule$)
|
|
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 { CreateProgram } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateProgram$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateProgramCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateProgramCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "CreateProgram", {})
|
|
13
13
|
.n("MediaTailorClient", "CreateProgramCommand")
|
|
14
|
-
.sc(CreateProgram)
|
|
14
|
+
.sc(CreateProgram$)
|
|
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 { CreateSourceLocation } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateSourceLocation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateSourceLocationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateSourceLocationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "CreateSourceLocation", {})
|
|
13
13
|
.n("MediaTailorClient", "CreateSourceLocationCommand")
|
|
14
|
-
.sc(CreateSourceLocation)
|
|
14
|
+
.sc(CreateSourceLocation$)
|
|
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 { CreateVodSource } from "../schemas/schemas_0";
|
|
4
|
+
import { CreateVodSource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class CreateVodSourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class CreateVodSourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "CreateVodSource", {})
|
|
13
13
|
.n("MediaTailorClient", "CreateVodSourceCommand")
|
|
14
|
-
.sc(CreateVodSource)
|
|
14
|
+
.sc(CreateVodSource$)
|
|
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("MediaTailor", "DeleteChannel", {})
|
|
13
13
|
.n("MediaTailorClient", "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 { DeleteChannelPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteChannelPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteChannelPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteChannelPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "DeleteChannelPolicy", {})
|
|
13
13
|
.n("MediaTailorClient", "DeleteChannelPolicyCommand")
|
|
14
|
-
.sc(DeleteChannelPolicy)
|
|
14
|
+
.sc(DeleteChannelPolicy$)
|
|
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 { DeleteLiveSource } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteLiveSource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteLiveSourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteLiveSourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "DeleteLiveSource", {})
|
|
13
13
|
.n("MediaTailorClient", "DeleteLiveSourceCommand")
|
|
14
|
-
.sc(DeleteLiveSource)
|
|
14
|
+
.sc(DeleteLiveSource$)
|
|
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 { DeletePlaybackConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePlaybackConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePlaybackConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeletePlaybackConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "DeletePlaybackConfiguration", {})
|
|
13
13
|
.n("MediaTailorClient", "DeletePlaybackConfigurationCommand")
|
|
14
|
-
.sc(DeletePlaybackConfiguration)
|
|
14
|
+
.sc(DeletePlaybackConfiguration$)
|
|
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 { DeletePrefetchSchedule } from "../schemas/schemas_0";
|
|
4
|
+
import { DeletePrefetchSchedule$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeletePrefetchScheduleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeletePrefetchScheduleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "DeletePrefetchSchedule", {})
|
|
13
13
|
.n("MediaTailorClient", "DeletePrefetchScheduleCommand")
|
|
14
|
-
.sc(DeletePrefetchSchedule)
|
|
14
|
+
.sc(DeletePrefetchSchedule$)
|
|
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 { DeleteProgram } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteProgram$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteProgramCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteProgramCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "DeleteProgram", {})
|
|
13
13
|
.n("MediaTailorClient", "DeleteProgramCommand")
|
|
14
|
-
.sc(DeleteProgram)
|
|
14
|
+
.sc(DeleteProgram$)
|
|
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 { DeleteSourceLocation } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteSourceLocation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteSourceLocationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteSourceLocationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "DeleteSourceLocation", {})
|
|
13
13
|
.n("MediaTailorClient", "DeleteSourceLocationCommand")
|
|
14
|
-
.sc(DeleteSourceLocation)
|
|
14
|
+
.sc(DeleteSourceLocation$)
|
|
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 { DeleteVodSource } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteVodSource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteVodSourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteVodSourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "DeleteVodSource", {})
|
|
13
13
|
.n("MediaTailorClient", "DeleteVodSourceCommand")
|
|
14
|
-
.sc(DeleteVodSource)
|
|
14
|
+
.sc(DeleteVodSource$)
|
|
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 { DescribeChannel } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeChannel$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeChannelCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeChannelCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "DescribeChannel", {})
|
|
13
13
|
.n("MediaTailorClient", "DescribeChannelCommand")
|
|
14
|
-
.sc(DescribeChannel)
|
|
14
|
+
.sc(DescribeChannel$)
|
|
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 { DescribeLiveSource } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeLiveSource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeLiveSourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeLiveSourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "DescribeLiveSource", {})
|
|
13
13
|
.n("MediaTailorClient", "DescribeLiveSourceCommand")
|
|
14
|
-
.sc(DescribeLiveSource)
|
|
14
|
+
.sc(DescribeLiveSource$)
|
|
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 { DescribeProgram } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeProgram$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeProgramCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeProgramCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "DescribeProgram", {})
|
|
13
13
|
.n("MediaTailorClient", "DescribeProgramCommand")
|
|
14
|
-
.sc(DescribeProgram)
|
|
14
|
+
.sc(DescribeProgram$)
|
|
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 { DescribeSourceLocation } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeSourceLocation$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeSourceLocationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeSourceLocationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "DescribeSourceLocation", {})
|
|
13
13
|
.n("MediaTailorClient", "DescribeSourceLocationCommand")
|
|
14
|
-
.sc(DescribeSourceLocation)
|
|
14
|
+
.sc(DescribeSourceLocation$)
|
|
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 { DescribeVodSource } from "../schemas/schemas_0";
|
|
4
|
+
import { DescribeVodSource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DescribeVodSourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DescribeVodSourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "DescribeVodSource", {})
|
|
13
13
|
.n("MediaTailorClient", "DescribeVodSourceCommand")
|
|
14
|
-
.sc(DescribeVodSource)
|
|
14
|
+
.sc(DescribeVodSource$)
|
|
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 { GetChannelPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { GetChannelPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetChannelPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetChannelPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "GetChannelPolicy", {})
|
|
13
13
|
.n("MediaTailorClient", "GetChannelPolicyCommand")
|
|
14
|
-
.sc(GetChannelPolicy)
|
|
14
|
+
.sc(GetChannelPolicy$)
|
|
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 { GetChannelSchedule } from "../schemas/schemas_0";
|
|
4
|
+
import { GetChannelSchedule$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetChannelScheduleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetChannelScheduleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "GetChannelSchedule", {})
|
|
13
13
|
.n("MediaTailorClient", "GetChannelScheduleCommand")
|
|
14
|
-
.sc(GetChannelSchedule)
|
|
14
|
+
.sc(GetChannelSchedule$)
|
|
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 { GetPlaybackConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { GetPlaybackConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetPlaybackConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetPlaybackConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "GetPlaybackConfiguration", {})
|
|
13
13
|
.n("MediaTailorClient", "GetPlaybackConfigurationCommand")
|
|
14
|
-
.sc(GetPlaybackConfiguration)
|
|
14
|
+
.sc(GetPlaybackConfiguration$)
|
|
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 { GetPrefetchSchedule } from "../schemas/schemas_0";
|
|
4
|
+
import { GetPrefetchSchedule$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetPrefetchScheduleCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetPrefetchScheduleCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "GetPrefetchSchedule", {})
|
|
13
13
|
.n("MediaTailorClient", "GetPrefetchScheduleCommand")
|
|
14
|
-
.sc(GetPrefetchSchedule)
|
|
14
|
+
.sc(GetPrefetchSchedule$)
|
|
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 { ListAlerts } from "../schemas/schemas_0";
|
|
4
|
+
import { ListAlerts$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListAlertsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListAlertsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "ListAlerts", {})
|
|
13
13
|
.n("MediaTailorClient", "ListAlertsCommand")
|
|
14
|
-
.sc(ListAlerts)
|
|
14
|
+
.sc(ListAlerts$)
|
|
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("MediaTailor", "ListChannels", {})
|
|
13
13
|
.n("MediaTailorClient", "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 { ListLiveSources } from "../schemas/schemas_0";
|
|
4
|
+
import { ListLiveSources$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListLiveSourcesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListLiveSourcesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "ListLiveSources", {})
|
|
13
13
|
.n("MediaTailorClient", "ListLiveSourcesCommand")
|
|
14
|
-
.sc(ListLiveSources)
|
|
14
|
+
.sc(ListLiveSources$)
|
|
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 { ListPlaybackConfigurations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPlaybackConfigurations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPlaybackConfigurationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPlaybackConfigurationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "ListPlaybackConfigurations", {})
|
|
13
13
|
.n("MediaTailorClient", "ListPlaybackConfigurationsCommand")
|
|
14
|
-
.sc(ListPlaybackConfigurations)
|
|
14
|
+
.sc(ListPlaybackConfigurations$)
|
|
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 { ListPrefetchSchedules } from "../schemas/schemas_0";
|
|
4
|
+
import { ListPrefetchSchedules$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListPrefetchSchedulesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListPrefetchSchedulesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "ListPrefetchSchedules", {})
|
|
13
13
|
.n("MediaTailorClient", "ListPrefetchSchedulesCommand")
|
|
14
|
-
.sc(ListPrefetchSchedules)
|
|
14
|
+
.sc(ListPrefetchSchedules$)
|
|
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 { ListSourceLocations } from "../schemas/schemas_0";
|
|
4
|
+
import { ListSourceLocations$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListSourceLocationsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListSourceLocationsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "ListSourceLocations", {})
|
|
13
13
|
.n("MediaTailorClient", "ListSourceLocationsCommand")
|
|
14
|
-
.sc(ListSourceLocations)
|
|
14
|
+
.sc(ListSourceLocations$)
|
|
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("MediaTailor", "ListTagsForResource", {})
|
|
13
13
|
.n("MediaTailorClient", "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 { ListVodSources } from "../schemas/schemas_0";
|
|
4
|
+
import { ListVodSources$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListVodSourcesCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListVodSourcesCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "ListVodSources", {})
|
|
13
13
|
.n("MediaTailorClient", "ListVodSourcesCommand")
|
|
14
|
-
.sc(ListVodSources)
|
|
14
|
+
.sc(ListVodSources$)
|
|
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 { PutChannelPolicy } from "../schemas/schemas_0";
|
|
4
|
+
import { PutChannelPolicy$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutChannelPolicyCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutChannelPolicyCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "PutChannelPolicy", {})
|
|
13
13
|
.n("MediaTailorClient", "PutChannelPolicyCommand")
|
|
14
|
-
.sc(PutChannelPolicy)
|
|
14
|
+
.sc(PutChannelPolicy$)
|
|
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 { PutPlaybackConfiguration } from "../schemas/schemas_0";
|
|
4
|
+
import { PutPlaybackConfiguration$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class PutPlaybackConfigurationCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class PutPlaybackConfigurationCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("MediaTailor", "PutPlaybackConfiguration", {})
|
|
13
13
|
.n("MediaTailorClient", "PutPlaybackConfigurationCommand")
|
|
14
|
-
.sc(PutPlaybackConfiguration)
|
|
14
|
+
.sc(PutPlaybackConfiguration$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|