@aws-sdk/client-mediatailor 3.721.0 → 3.726.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 +200 -147
- package/dist-es/MediaTailorClient.js +1 -0
- package/dist-es/models/models_0.js +3 -2
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +43 -43
package/dist-cjs/index.js
CHANGED
|
@@ -193,7 +193,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
193
193
|
}, "resolveRuntimeExtensions");
|
|
194
194
|
|
|
195
195
|
// src/MediaTailorClient.ts
|
|
196
|
-
var
|
|
196
|
+
var MediaTailorClient = class extends import_smithy_client.Client {
|
|
197
|
+
static {
|
|
198
|
+
__name(this, "MediaTailorClient");
|
|
199
|
+
}
|
|
200
|
+
/**
|
|
201
|
+
* The resolved configuration of MediaTailorClient class. This is resolved and normalized from the {@link MediaTailorClientConfig | constructor configuration interface}.
|
|
202
|
+
*/
|
|
203
|
+
config;
|
|
197
204
|
constructor(...[configuration]) {
|
|
198
205
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
199
206
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -203,7 +210,7 @@ var _MediaTailorClient = class _MediaTailorClient extends import_smithy_client.C
|
|
|
203
210
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
204
211
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
205
212
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
206
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
213
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
207
214
|
super(_config_8);
|
|
208
215
|
this.config = _config_8;
|
|
209
216
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -231,8 +238,6 @@ var _MediaTailorClient = class _MediaTailorClient extends import_smithy_client.C
|
|
|
231
238
|
super.destroy();
|
|
232
239
|
}
|
|
233
240
|
};
|
|
234
|
-
__name(_MediaTailorClient, "MediaTailorClient");
|
|
235
|
-
var MediaTailorClient = _MediaTailorClient;
|
|
236
241
|
|
|
237
242
|
// src/MediaTailor.ts
|
|
238
243
|
|
|
@@ -249,7 +254,10 @@ var import_core2 = require("@aws-sdk/core");
|
|
|
249
254
|
|
|
250
255
|
// src/models/MediaTailorServiceException.ts
|
|
251
256
|
|
|
252
|
-
var
|
|
257
|
+
var MediaTailorServiceException = class _MediaTailorServiceException extends import_smithy_client.ServiceException {
|
|
258
|
+
static {
|
|
259
|
+
__name(this, "MediaTailorServiceException");
|
|
260
|
+
}
|
|
253
261
|
/**
|
|
254
262
|
* @internal
|
|
255
263
|
*/
|
|
@@ -258,8 +266,6 @@ var _MediaTailorServiceException = class _MediaTailorServiceException extends im
|
|
|
258
266
|
Object.setPrototypeOf(this, _MediaTailorServiceException.prototype);
|
|
259
267
|
}
|
|
260
268
|
};
|
|
261
|
-
__name(_MediaTailorServiceException, "MediaTailorServiceException");
|
|
262
|
-
var MediaTailorServiceException = _MediaTailorServiceException;
|
|
263
269
|
|
|
264
270
|
// src/models/models_0.ts
|
|
265
271
|
var MessageType = {
|
|
@@ -312,7 +318,13 @@ var AccessType = {
|
|
|
312
318
|
S3_SIGV4: "S3_SIGV4",
|
|
313
319
|
SECRETS_MANAGER_ACCESS_TOKEN: "SECRETS_MANAGER_ACCESS_TOKEN"
|
|
314
320
|
};
|
|
315
|
-
var
|
|
321
|
+
var BadRequestException = class _BadRequestException extends MediaTailorServiceException {
|
|
322
|
+
static {
|
|
323
|
+
__name(this, "BadRequestException");
|
|
324
|
+
}
|
|
325
|
+
name = "BadRequestException";
|
|
326
|
+
$fault = "client";
|
|
327
|
+
Message;
|
|
316
328
|
/**
|
|
317
329
|
* @internal
|
|
318
330
|
*/
|
|
@@ -322,14 +334,10 @@ var _BadRequestException = class _BadRequestException extends MediaTailorService
|
|
|
322
334
|
$fault: "client",
|
|
323
335
|
...opts
|
|
324
336
|
});
|
|
325
|
-
this.name = "BadRequestException";
|
|
326
|
-
this.$fault = "client";
|
|
327
337
|
Object.setPrototypeOf(this, _BadRequestException.prototype);
|
|
328
338
|
this.Message = opts.Message;
|
|
329
339
|
}
|
|
330
340
|
};
|
|
331
|
-
__name(_BadRequestException, "BadRequestException");
|
|
332
|
-
var BadRequestException = _BadRequestException;
|
|
333
341
|
var PlaybackMode = {
|
|
334
342
|
LINEAR: "LINEAR",
|
|
335
343
|
LOOP: "LOOP"
|
|
@@ -1953,617 +1961,661 @@ var _rA = "resourceArn";
|
|
|
1953
1961
|
var _tK = "tagKeys";
|
|
1954
1962
|
|
|
1955
1963
|
// src/commands/ConfigureLogsForChannelCommand.ts
|
|
1956
|
-
var
|
|
1964
|
+
var ConfigureLogsForChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1957
1965
|
return [
|
|
1958
1966
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1959
1967
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1960
1968
|
];
|
|
1961
1969
|
}).s("MediaTailor", "ConfigureLogsForChannel", {}).n("MediaTailorClient", "ConfigureLogsForChannelCommand").f(void 0, void 0).ser(se_ConfigureLogsForChannelCommand).de(de_ConfigureLogsForChannelCommand).build() {
|
|
1970
|
+
static {
|
|
1971
|
+
__name(this, "ConfigureLogsForChannelCommand");
|
|
1972
|
+
}
|
|
1962
1973
|
};
|
|
1963
|
-
__name(_ConfigureLogsForChannelCommand, "ConfigureLogsForChannelCommand");
|
|
1964
|
-
var ConfigureLogsForChannelCommand = _ConfigureLogsForChannelCommand;
|
|
1965
1974
|
|
|
1966
1975
|
// src/commands/ConfigureLogsForPlaybackConfigurationCommand.ts
|
|
1967
1976
|
|
|
1968
1977
|
|
|
1969
1978
|
|
|
1970
|
-
var
|
|
1979
|
+
var ConfigureLogsForPlaybackConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1971
1980
|
return [
|
|
1972
1981
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1973
1982
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1974
1983
|
];
|
|
1975
1984
|
}).s("MediaTailor", "ConfigureLogsForPlaybackConfiguration", {}).n("MediaTailorClient", "ConfigureLogsForPlaybackConfigurationCommand").f(void 0, void 0).ser(se_ConfigureLogsForPlaybackConfigurationCommand).de(de_ConfigureLogsForPlaybackConfigurationCommand).build() {
|
|
1985
|
+
static {
|
|
1986
|
+
__name(this, "ConfigureLogsForPlaybackConfigurationCommand");
|
|
1987
|
+
}
|
|
1976
1988
|
};
|
|
1977
|
-
__name(_ConfigureLogsForPlaybackConfigurationCommand, "ConfigureLogsForPlaybackConfigurationCommand");
|
|
1978
|
-
var ConfigureLogsForPlaybackConfigurationCommand = _ConfigureLogsForPlaybackConfigurationCommand;
|
|
1979
1989
|
|
|
1980
1990
|
// src/commands/CreateChannelCommand.ts
|
|
1981
1991
|
|
|
1982
1992
|
|
|
1983
1993
|
|
|
1984
|
-
var
|
|
1994
|
+
var CreateChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1985
1995
|
return [
|
|
1986
1996
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
1987
1997
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
1988
1998
|
];
|
|
1989
1999
|
}).s("MediaTailor", "CreateChannel", {}).n("MediaTailorClient", "CreateChannelCommand").f(void 0, void 0).ser(se_CreateChannelCommand).de(de_CreateChannelCommand).build() {
|
|
2000
|
+
static {
|
|
2001
|
+
__name(this, "CreateChannelCommand");
|
|
2002
|
+
}
|
|
1990
2003
|
};
|
|
1991
|
-
__name(_CreateChannelCommand, "CreateChannelCommand");
|
|
1992
|
-
var CreateChannelCommand = _CreateChannelCommand;
|
|
1993
2004
|
|
|
1994
2005
|
// src/commands/CreateLiveSourceCommand.ts
|
|
1995
2006
|
|
|
1996
2007
|
|
|
1997
2008
|
|
|
1998
|
-
var
|
|
2009
|
+
var CreateLiveSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
1999
2010
|
return [
|
|
2000
2011
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2001
2012
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2002
2013
|
];
|
|
2003
2014
|
}).s("MediaTailor", "CreateLiveSource", {}).n("MediaTailorClient", "CreateLiveSourceCommand").f(void 0, void 0).ser(se_CreateLiveSourceCommand).de(de_CreateLiveSourceCommand).build() {
|
|
2015
|
+
static {
|
|
2016
|
+
__name(this, "CreateLiveSourceCommand");
|
|
2017
|
+
}
|
|
2004
2018
|
};
|
|
2005
|
-
__name(_CreateLiveSourceCommand, "CreateLiveSourceCommand");
|
|
2006
|
-
var CreateLiveSourceCommand = _CreateLiveSourceCommand;
|
|
2007
2019
|
|
|
2008
2020
|
// src/commands/CreatePrefetchScheduleCommand.ts
|
|
2009
2021
|
|
|
2010
2022
|
|
|
2011
2023
|
|
|
2012
|
-
var
|
|
2024
|
+
var CreatePrefetchScheduleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2013
2025
|
return [
|
|
2014
2026
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2015
2027
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2016
2028
|
];
|
|
2017
2029
|
}).s("MediaTailor", "CreatePrefetchSchedule", {}).n("MediaTailorClient", "CreatePrefetchScheduleCommand").f(void 0, void 0).ser(se_CreatePrefetchScheduleCommand).de(de_CreatePrefetchScheduleCommand).build() {
|
|
2030
|
+
static {
|
|
2031
|
+
__name(this, "CreatePrefetchScheduleCommand");
|
|
2032
|
+
}
|
|
2018
2033
|
};
|
|
2019
|
-
__name(_CreatePrefetchScheduleCommand, "CreatePrefetchScheduleCommand");
|
|
2020
|
-
var CreatePrefetchScheduleCommand = _CreatePrefetchScheduleCommand;
|
|
2021
2034
|
|
|
2022
2035
|
// src/commands/CreateProgramCommand.ts
|
|
2023
2036
|
|
|
2024
2037
|
|
|
2025
2038
|
|
|
2026
|
-
var
|
|
2039
|
+
var CreateProgramCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2027
2040
|
return [
|
|
2028
2041
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2029
2042
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2030
2043
|
];
|
|
2031
2044
|
}).s("MediaTailor", "CreateProgram", {}).n("MediaTailorClient", "CreateProgramCommand").f(void 0, void 0).ser(se_CreateProgramCommand).de(de_CreateProgramCommand).build() {
|
|
2045
|
+
static {
|
|
2046
|
+
__name(this, "CreateProgramCommand");
|
|
2047
|
+
}
|
|
2032
2048
|
};
|
|
2033
|
-
__name(_CreateProgramCommand, "CreateProgramCommand");
|
|
2034
|
-
var CreateProgramCommand = _CreateProgramCommand;
|
|
2035
2049
|
|
|
2036
2050
|
// src/commands/CreateSourceLocationCommand.ts
|
|
2037
2051
|
|
|
2038
2052
|
|
|
2039
2053
|
|
|
2040
|
-
var
|
|
2054
|
+
var CreateSourceLocationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2041
2055
|
return [
|
|
2042
2056
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2043
2057
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2044
2058
|
];
|
|
2045
2059
|
}).s("MediaTailor", "CreateSourceLocation", {}).n("MediaTailorClient", "CreateSourceLocationCommand").f(void 0, void 0).ser(se_CreateSourceLocationCommand).de(de_CreateSourceLocationCommand).build() {
|
|
2060
|
+
static {
|
|
2061
|
+
__name(this, "CreateSourceLocationCommand");
|
|
2062
|
+
}
|
|
2046
2063
|
};
|
|
2047
|
-
__name(_CreateSourceLocationCommand, "CreateSourceLocationCommand");
|
|
2048
|
-
var CreateSourceLocationCommand = _CreateSourceLocationCommand;
|
|
2049
2064
|
|
|
2050
2065
|
// src/commands/CreateVodSourceCommand.ts
|
|
2051
2066
|
|
|
2052
2067
|
|
|
2053
2068
|
|
|
2054
|
-
var
|
|
2069
|
+
var CreateVodSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2055
2070
|
return [
|
|
2056
2071
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2057
2072
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2058
2073
|
];
|
|
2059
2074
|
}).s("MediaTailor", "CreateVodSource", {}).n("MediaTailorClient", "CreateVodSourceCommand").f(void 0, void 0).ser(se_CreateVodSourceCommand).de(de_CreateVodSourceCommand).build() {
|
|
2075
|
+
static {
|
|
2076
|
+
__name(this, "CreateVodSourceCommand");
|
|
2077
|
+
}
|
|
2060
2078
|
};
|
|
2061
|
-
__name(_CreateVodSourceCommand, "CreateVodSourceCommand");
|
|
2062
|
-
var CreateVodSourceCommand = _CreateVodSourceCommand;
|
|
2063
2079
|
|
|
2064
2080
|
// src/commands/DeleteChannelCommand.ts
|
|
2065
2081
|
|
|
2066
2082
|
|
|
2067
2083
|
|
|
2068
|
-
var
|
|
2084
|
+
var DeleteChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2069
2085
|
return [
|
|
2070
2086
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2071
2087
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2072
2088
|
];
|
|
2073
2089
|
}).s("MediaTailor", "DeleteChannel", {}).n("MediaTailorClient", "DeleteChannelCommand").f(void 0, void 0).ser(se_DeleteChannelCommand).de(de_DeleteChannelCommand).build() {
|
|
2090
|
+
static {
|
|
2091
|
+
__name(this, "DeleteChannelCommand");
|
|
2092
|
+
}
|
|
2074
2093
|
};
|
|
2075
|
-
__name(_DeleteChannelCommand, "DeleteChannelCommand");
|
|
2076
|
-
var DeleteChannelCommand = _DeleteChannelCommand;
|
|
2077
2094
|
|
|
2078
2095
|
// src/commands/DeleteChannelPolicyCommand.ts
|
|
2079
2096
|
|
|
2080
2097
|
|
|
2081
2098
|
|
|
2082
|
-
var
|
|
2099
|
+
var DeleteChannelPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2083
2100
|
return [
|
|
2084
2101
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2085
2102
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2086
2103
|
];
|
|
2087
2104
|
}).s("MediaTailor", "DeleteChannelPolicy", {}).n("MediaTailorClient", "DeleteChannelPolicyCommand").f(void 0, void 0).ser(se_DeleteChannelPolicyCommand).de(de_DeleteChannelPolicyCommand).build() {
|
|
2105
|
+
static {
|
|
2106
|
+
__name(this, "DeleteChannelPolicyCommand");
|
|
2107
|
+
}
|
|
2088
2108
|
};
|
|
2089
|
-
__name(_DeleteChannelPolicyCommand, "DeleteChannelPolicyCommand");
|
|
2090
|
-
var DeleteChannelPolicyCommand = _DeleteChannelPolicyCommand;
|
|
2091
2109
|
|
|
2092
2110
|
// src/commands/DeleteLiveSourceCommand.ts
|
|
2093
2111
|
|
|
2094
2112
|
|
|
2095
2113
|
|
|
2096
|
-
var
|
|
2114
|
+
var DeleteLiveSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2097
2115
|
return [
|
|
2098
2116
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2099
2117
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2100
2118
|
];
|
|
2101
2119
|
}).s("MediaTailor", "DeleteLiveSource", {}).n("MediaTailorClient", "DeleteLiveSourceCommand").f(void 0, void 0).ser(se_DeleteLiveSourceCommand).de(de_DeleteLiveSourceCommand).build() {
|
|
2120
|
+
static {
|
|
2121
|
+
__name(this, "DeleteLiveSourceCommand");
|
|
2122
|
+
}
|
|
2102
2123
|
};
|
|
2103
|
-
__name(_DeleteLiveSourceCommand, "DeleteLiveSourceCommand");
|
|
2104
|
-
var DeleteLiveSourceCommand = _DeleteLiveSourceCommand;
|
|
2105
2124
|
|
|
2106
2125
|
// src/commands/DeletePlaybackConfigurationCommand.ts
|
|
2107
2126
|
|
|
2108
2127
|
|
|
2109
2128
|
|
|
2110
|
-
var
|
|
2129
|
+
var DeletePlaybackConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2111
2130
|
return [
|
|
2112
2131
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2113
2132
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2114
2133
|
];
|
|
2115
2134
|
}).s("MediaTailor", "DeletePlaybackConfiguration", {}).n("MediaTailorClient", "DeletePlaybackConfigurationCommand").f(void 0, void 0).ser(se_DeletePlaybackConfigurationCommand).de(de_DeletePlaybackConfigurationCommand).build() {
|
|
2135
|
+
static {
|
|
2136
|
+
__name(this, "DeletePlaybackConfigurationCommand");
|
|
2137
|
+
}
|
|
2116
2138
|
};
|
|
2117
|
-
__name(_DeletePlaybackConfigurationCommand, "DeletePlaybackConfigurationCommand");
|
|
2118
|
-
var DeletePlaybackConfigurationCommand = _DeletePlaybackConfigurationCommand;
|
|
2119
2139
|
|
|
2120
2140
|
// src/commands/DeletePrefetchScheduleCommand.ts
|
|
2121
2141
|
|
|
2122
2142
|
|
|
2123
2143
|
|
|
2124
|
-
var
|
|
2144
|
+
var DeletePrefetchScheduleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2125
2145
|
return [
|
|
2126
2146
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2127
2147
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2128
2148
|
];
|
|
2129
2149
|
}).s("MediaTailor", "DeletePrefetchSchedule", {}).n("MediaTailorClient", "DeletePrefetchScheduleCommand").f(void 0, void 0).ser(se_DeletePrefetchScheduleCommand).de(de_DeletePrefetchScheduleCommand).build() {
|
|
2150
|
+
static {
|
|
2151
|
+
__name(this, "DeletePrefetchScheduleCommand");
|
|
2152
|
+
}
|
|
2130
2153
|
};
|
|
2131
|
-
__name(_DeletePrefetchScheduleCommand, "DeletePrefetchScheduleCommand");
|
|
2132
|
-
var DeletePrefetchScheduleCommand = _DeletePrefetchScheduleCommand;
|
|
2133
2154
|
|
|
2134
2155
|
// src/commands/DeleteProgramCommand.ts
|
|
2135
2156
|
|
|
2136
2157
|
|
|
2137
2158
|
|
|
2138
|
-
var
|
|
2159
|
+
var DeleteProgramCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2139
2160
|
return [
|
|
2140
2161
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2141
2162
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2142
2163
|
];
|
|
2143
2164
|
}).s("MediaTailor", "DeleteProgram", {}).n("MediaTailorClient", "DeleteProgramCommand").f(void 0, void 0).ser(se_DeleteProgramCommand).de(de_DeleteProgramCommand).build() {
|
|
2165
|
+
static {
|
|
2166
|
+
__name(this, "DeleteProgramCommand");
|
|
2167
|
+
}
|
|
2144
2168
|
};
|
|
2145
|
-
__name(_DeleteProgramCommand, "DeleteProgramCommand");
|
|
2146
|
-
var DeleteProgramCommand = _DeleteProgramCommand;
|
|
2147
2169
|
|
|
2148
2170
|
// src/commands/DeleteSourceLocationCommand.ts
|
|
2149
2171
|
|
|
2150
2172
|
|
|
2151
2173
|
|
|
2152
|
-
var
|
|
2174
|
+
var DeleteSourceLocationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2153
2175
|
return [
|
|
2154
2176
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2155
2177
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2156
2178
|
];
|
|
2157
2179
|
}).s("MediaTailor", "DeleteSourceLocation", {}).n("MediaTailorClient", "DeleteSourceLocationCommand").f(void 0, void 0).ser(se_DeleteSourceLocationCommand).de(de_DeleteSourceLocationCommand).build() {
|
|
2180
|
+
static {
|
|
2181
|
+
__name(this, "DeleteSourceLocationCommand");
|
|
2182
|
+
}
|
|
2158
2183
|
};
|
|
2159
|
-
__name(_DeleteSourceLocationCommand, "DeleteSourceLocationCommand");
|
|
2160
|
-
var DeleteSourceLocationCommand = _DeleteSourceLocationCommand;
|
|
2161
2184
|
|
|
2162
2185
|
// src/commands/DeleteVodSourceCommand.ts
|
|
2163
2186
|
|
|
2164
2187
|
|
|
2165
2188
|
|
|
2166
|
-
var
|
|
2189
|
+
var DeleteVodSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2167
2190
|
return [
|
|
2168
2191
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2169
2192
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2170
2193
|
];
|
|
2171
2194
|
}).s("MediaTailor", "DeleteVodSource", {}).n("MediaTailorClient", "DeleteVodSourceCommand").f(void 0, void 0).ser(se_DeleteVodSourceCommand).de(de_DeleteVodSourceCommand).build() {
|
|
2195
|
+
static {
|
|
2196
|
+
__name(this, "DeleteVodSourceCommand");
|
|
2197
|
+
}
|
|
2172
2198
|
};
|
|
2173
|
-
__name(_DeleteVodSourceCommand, "DeleteVodSourceCommand");
|
|
2174
|
-
var DeleteVodSourceCommand = _DeleteVodSourceCommand;
|
|
2175
2199
|
|
|
2176
2200
|
// src/commands/DescribeChannelCommand.ts
|
|
2177
2201
|
|
|
2178
2202
|
|
|
2179
2203
|
|
|
2180
|
-
var
|
|
2204
|
+
var DescribeChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2181
2205
|
return [
|
|
2182
2206
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2183
2207
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2184
2208
|
];
|
|
2185
2209
|
}).s("MediaTailor", "DescribeChannel", {}).n("MediaTailorClient", "DescribeChannelCommand").f(void 0, void 0).ser(se_DescribeChannelCommand).de(de_DescribeChannelCommand).build() {
|
|
2210
|
+
static {
|
|
2211
|
+
__name(this, "DescribeChannelCommand");
|
|
2212
|
+
}
|
|
2186
2213
|
};
|
|
2187
|
-
__name(_DescribeChannelCommand, "DescribeChannelCommand");
|
|
2188
|
-
var DescribeChannelCommand = _DescribeChannelCommand;
|
|
2189
2214
|
|
|
2190
2215
|
// src/commands/DescribeLiveSourceCommand.ts
|
|
2191
2216
|
|
|
2192
2217
|
|
|
2193
2218
|
|
|
2194
|
-
var
|
|
2219
|
+
var DescribeLiveSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2195
2220
|
return [
|
|
2196
2221
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2197
2222
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2198
2223
|
];
|
|
2199
2224
|
}).s("MediaTailor", "DescribeLiveSource", {}).n("MediaTailorClient", "DescribeLiveSourceCommand").f(void 0, void 0).ser(se_DescribeLiveSourceCommand).de(de_DescribeLiveSourceCommand).build() {
|
|
2225
|
+
static {
|
|
2226
|
+
__name(this, "DescribeLiveSourceCommand");
|
|
2227
|
+
}
|
|
2200
2228
|
};
|
|
2201
|
-
__name(_DescribeLiveSourceCommand, "DescribeLiveSourceCommand");
|
|
2202
|
-
var DescribeLiveSourceCommand = _DescribeLiveSourceCommand;
|
|
2203
2229
|
|
|
2204
2230
|
// src/commands/DescribeProgramCommand.ts
|
|
2205
2231
|
|
|
2206
2232
|
|
|
2207
2233
|
|
|
2208
|
-
var
|
|
2234
|
+
var DescribeProgramCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2209
2235
|
return [
|
|
2210
2236
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2211
2237
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2212
2238
|
];
|
|
2213
2239
|
}).s("MediaTailor", "DescribeProgram", {}).n("MediaTailorClient", "DescribeProgramCommand").f(void 0, void 0).ser(se_DescribeProgramCommand).de(de_DescribeProgramCommand).build() {
|
|
2240
|
+
static {
|
|
2241
|
+
__name(this, "DescribeProgramCommand");
|
|
2242
|
+
}
|
|
2214
2243
|
};
|
|
2215
|
-
__name(_DescribeProgramCommand, "DescribeProgramCommand");
|
|
2216
|
-
var DescribeProgramCommand = _DescribeProgramCommand;
|
|
2217
2244
|
|
|
2218
2245
|
// src/commands/DescribeSourceLocationCommand.ts
|
|
2219
2246
|
|
|
2220
2247
|
|
|
2221
2248
|
|
|
2222
|
-
var
|
|
2249
|
+
var DescribeSourceLocationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2223
2250
|
return [
|
|
2224
2251
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2225
2252
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2226
2253
|
];
|
|
2227
2254
|
}).s("MediaTailor", "DescribeSourceLocation", {}).n("MediaTailorClient", "DescribeSourceLocationCommand").f(void 0, void 0).ser(se_DescribeSourceLocationCommand).de(de_DescribeSourceLocationCommand).build() {
|
|
2255
|
+
static {
|
|
2256
|
+
__name(this, "DescribeSourceLocationCommand");
|
|
2257
|
+
}
|
|
2228
2258
|
};
|
|
2229
|
-
__name(_DescribeSourceLocationCommand, "DescribeSourceLocationCommand");
|
|
2230
|
-
var DescribeSourceLocationCommand = _DescribeSourceLocationCommand;
|
|
2231
2259
|
|
|
2232
2260
|
// src/commands/DescribeVodSourceCommand.ts
|
|
2233
2261
|
|
|
2234
2262
|
|
|
2235
2263
|
|
|
2236
|
-
var
|
|
2264
|
+
var DescribeVodSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2237
2265
|
return [
|
|
2238
2266
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2239
2267
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2240
2268
|
];
|
|
2241
2269
|
}).s("MediaTailor", "DescribeVodSource", {}).n("MediaTailorClient", "DescribeVodSourceCommand").f(void 0, void 0).ser(se_DescribeVodSourceCommand).de(de_DescribeVodSourceCommand).build() {
|
|
2270
|
+
static {
|
|
2271
|
+
__name(this, "DescribeVodSourceCommand");
|
|
2272
|
+
}
|
|
2242
2273
|
};
|
|
2243
|
-
__name(_DescribeVodSourceCommand, "DescribeVodSourceCommand");
|
|
2244
|
-
var DescribeVodSourceCommand = _DescribeVodSourceCommand;
|
|
2245
2274
|
|
|
2246
2275
|
// src/commands/GetChannelPolicyCommand.ts
|
|
2247
2276
|
|
|
2248
2277
|
|
|
2249
2278
|
|
|
2250
|
-
var
|
|
2279
|
+
var GetChannelPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2251
2280
|
return [
|
|
2252
2281
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2253
2282
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2254
2283
|
];
|
|
2255
2284
|
}).s("MediaTailor", "GetChannelPolicy", {}).n("MediaTailorClient", "GetChannelPolicyCommand").f(void 0, void 0).ser(se_GetChannelPolicyCommand).de(de_GetChannelPolicyCommand).build() {
|
|
2285
|
+
static {
|
|
2286
|
+
__name(this, "GetChannelPolicyCommand");
|
|
2287
|
+
}
|
|
2256
2288
|
};
|
|
2257
|
-
__name(_GetChannelPolicyCommand, "GetChannelPolicyCommand");
|
|
2258
|
-
var GetChannelPolicyCommand = _GetChannelPolicyCommand;
|
|
2259
2289
|
|
|
2260
2290
|
// src/commands/GetChannelScheduleCommand.ts
|
|
2261
2291
|
|
|
2262
2292
|
|
|
2263
2293
|
|
|
2264
|
-
var
|
|
2294
|
+
var GetChannelScheduleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2265
2295
|
return [
|
|
2266
2296
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2267
2297
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2268
2298
|
];
|
|
2269
2299
|
}).s("MediaTailor", "GetChannelSchedule", {}).n("MediaTailorClient", "GetChannelScheduleCommand").f(void 0, void 0).ser(se_GetChannelScheduleCommand).de(de_GetChannelScheduleCommand).build() {
|
|
2300
|
+
static {
|
|
2301
|
+
__name(this, "GetChannelScheduleCommand");
|
|
2302
|
+
}
|
|
2270
2303
|
};
|
|
2271
|
-
__name(_GetChannelScheduleCommand, "GetChannelScheduleCommand");
|
|
2272
|
-
var GetChannelScheduleCommand = _GetChannelScheduleCommand;
|
|
2273
2304
|
|
|
2274
2305
|
// src/commands/GetPlaybackConfigurationCommand.ts
|
|
2275
2306
|
|
|
2276
2307
|
|
|
2277
2308
|
|
|
2278
|
-
var
|
|
2309
|
+
var GetPlaybackConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2279
2310
|
return [
|
|
2280
2311
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2281
2312
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2282
2313
|
];
|
|
2283
2314
|
}).s("MediaTailor", "GetPlaybackConfiguration", {}).n("MediaTailorClient", "GetPlaybackConfigurationCommand").f(void 0, void 0).ser(se_GetPlaybackConfigurationCommand).de(de_GetPlaybackConfigurationCommand).build() {
|
|
2315
|
+
static {
|
|
2316
|
+
__name(this, "GetPlaybackConfigurationCommand");
|
|
2317
|
+
}
|
|
2284
2318
|
};
|
|
2285
|
-
__name(_GetPlaybackConfigurationCommand, "GetPlaybackConfigurationCommand");
|
|
2286
|
-
var GetPlaybackConfigurationCommand = _GetPlaybackConfigurationCommand;
|
|
2287
2319
|
|
|
2288
2320
|
// src/commands/GetPrefetchScheduleCommand.ts
|
|
2289
2321
|
|
|
2290
2322
|
|
|
2291
2323
|
|
|
2292
|
-
var
|
|
2324
|
+
var GetPrefetchScheduleCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2293
2325
|
return [
|
|
2294
2326
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2295
2327
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2296
2328
|
];
|
|
2297
2329
|
}).s("MediaTailor", "GetPrefetchSchedule", {}).n("MediaTailorClient", "GetPrefetchScheduleCommand").f(void 0, void 0).ser(se_GetPrefetchScheduleCommand).de(de_GetPrefetchScheduleCommand).build() {
|
|
2330
|
+
static {
|
|
2331
|
+
__name(this, "GetPrefetchScheduleCommand");
|
|
2332
|
+
}
|
|
2298
2333
|
};
|
|
2299
|
-
__name(_GetPrefetchScheduleCommand, "GetPrefetchScheduleCommand");
|
|
2300
|
-
var GetPrefetchScheduleCommand = _GetPrefetchScheduleCommand;
|
|
2301
2334
|
|
|
2302
2335
|
// src/commands/ListAlertsCommand.ts
|
|
2303
2336
|
|
|
2304
2337
|
|
|
2305
2338
|
|
|
2306
|
-
var
|
|
2339
|
+
var ListAlertsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2307
2340
|
return [
|
|
2308
2341
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2309
2342
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2310
2343
|
];
|
|
2311
2344
|
}).s("MediaTailor", "ListAlerts", {}).n("MediaTailorClient", "ListAlertsCommand").f(void 0, void 0).ser(se_ListAlertsCommand).de(de_ListAlertsCommand).build() {
|
|
2345
|
+
static {
|
|
2346
|
+
__name(this, "ListAlertsCommand");
|
|
2347
|
+
}
|
|
2312
2348
|
};
|
|
2313
|
-
__name(_ListAlertsCommand, "ListAlertsCommand");
|
|
2314
|
-
var ListAlertsCommand = _ListAlertsCommand;
|
|
2315
2349
|
|
|
2316
2350
|
// src/commands/ListChannelsCommand.ts
|
|
2317
2351
|
|
|
2318
2352
|
|
|
2319
2353
|
|
|
2320
|
-
var
|
|
2354
|
+
var ListChannelsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2321
2355
|
return [
|
|
2322
2356
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2323
2357
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2324
2358
|
];
|
|
2325
2359
|
}).s("MediaTailor", "ListChannels", {}).n("MediaTailorClient", "ListChannelsCommand").f(void 0, void 0).ser(se_ListChannelsCommand).de(de_ListChannelsCommand).build() {
|
|
2360
|
+
static {
|
|
2361
|
+
__name(this, "ListChannelsCommand");
|
|
2362
|
+
}
|
|
2326
2363
|
};
|
|
2327
|
-
__name(_ListChannelsCommand, "ListChannelsCommand");
|
|
2328
|
-
var ListChannelsCommand = _ListChannelsCommand;
|
|
2329
2364
|
|
|
2330
2365
|
// src/commands/ListLiveSourcesCommand.ts
|
|
2331
2366
|
|
|
2332
2367
|
|
|
2333
2368
|
|
|
2334
|
-
var
|
|
2369
|
+
var ListLiveSourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2335
2370
|
return [
|
|
2336
2371
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2337
2372
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2338
2373
|
];
|
|
2339
2374
|
}).s("MediaTailor", "ListLiveSources", {}).n("MediaTailorClient", "ListLiveSourcesCommand").f(void 0, void 0).ser(se_ListLiveSourcesCommand).de(de_ListLiveSourcesCommand).build() {
|
|
2375
|
+
static {
|
|
2376
|
+
__name(this, "ListLiveSourcesCommand");
|
|
2377
|
+
}
|
|
2340
2378
|
};
|
|
2341
|
-
__name(_ListLiveSourcesCommand, "ListLiveSourcesCommand");
|
|
2342
|
-
var ListLiveSourcesCommand = _ListLiveSourcesCommand;
|
|
2343
2379
|
|
|
2344
2380
|
// src/commands/ListPlaybackConfigurationsCommand.ts
|
|
2345
2381
|
|
|
2346
2382
|
|
|
2347
2383
|
|
|
2348
|
-
var
|
|
2384
|
+
var ListPlaybackConfigurationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2349
2385
|
return [
|
|
2350
2386
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2351
2387
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2352
2388
|
];
|
|
2353
2389
|
}).s("MediaTailor", "ListPlaybackConfigurations", {}).n("MediaTailorClient", "ListPlaybackConfigurationsCommand").f(void 0, void 0).ser(se_ListPlaybackConfigurationsCommand).de(de_ListPlaybackConfigurationsCommand).build() {
|
|
2390
|
+
static {
|
|
2391
|
+
__name(this, "ListPlaybackConfigurationsCommand");
|
|
2392
|
+
}
|
|
2354
2393
|
};
|
|
2355
|
-
__name(_ListPlaybackConfigurationsCommand, "ListPlaybackConfigurationsCommand");
|
|
2356
|
-
var ListPlaybackConfigurationsCommand = _ListPlaybackConfigurationsCommand;
|
|
2357
2394
|
|
|
2358
2395
|
// src/commands/ListPrefetchSchedulesCommand.ts
|
|
2359
2396
|
|
|
2360
2397
|
|
|
2361
2398
|
|
|
2362
|
-
var
|
|
2399
|
+
var ListPrefetchSchedulesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2363
2400
|
return [
|
|
2364
2401
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2365
2402
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2366
2403
|
];
|
|
2367
2404
|
}).s("MediaTailor", "ListPrefetchSchedules", {}).n("MediaTailorClient", "ListPrefetchSchedulesCommand").f(void 0, void 0).ser(se_ListPrefetchSchedulesCommand).de(de_ListPrefetchSchedulesCommand).build() {
|
|
2405
|
+
static {
|
|
2406
|
+
__name(this, "ListPrefetchSchedulesCommand");
|
|
2407
|
+
}
|
|
2368
2408
|
};
|
|
2369
|
-
__name(_ListPrefetchSchedulesCommand, "ListPrefetchSchedulesCommand");
|
|
2370
|
-
var ListPrefetchSchedulesCommand = _ListPrefetchSchedulesCommand;
|
|
2371
2409
|
|
|
2372
2410
|
// src/commands/ListSourceLocationsCommand.ts
|
|
2373
2411
|
|
|
2374
2412
|
|
|
2375
2413
|
|
|
2376
|
-
var
|
|
2414
|
+
var ListSourceLocationsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2377
2415
|
return [
|
|
2378
2416
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2379
2417
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2380
2418
|
];
|
|
2381
2419
|
}).s("MediaTailor", "ListSourceLocations", {}).n("MediaTailorClient", "ListSourceLocationsCommand").f(void 0, void 0).ser(se_ListSourceLocationsCommand).de(de_ListSourceLocationsCommand).build() {
|
|
2420
|
+
static {
|
|
2421
|
+
__name(this, "ListSourceLocationsCommand");
|
|
2422
|
+
}
|
|
2382
2423
|
};
|
|
2383
|
-
__name(_ListSourceLocationsCommand, "ListSourceLocationsCommand");
|
|
2384
|
-
var ListSourceLocationsCommand = _ListSourceLocationsCommand;
|
|
2385
2424
|
|
|
2386
2425
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2387
2426
|
|
|
2388
2427
|
|
|
2389
2428
|
|
|
2390
|
-
var
|
|
2429
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2391
2430
|
return [
|
|
2392
2431
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2393
2432
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2394
2433
|
];
|
|
2395
2434
|
}).s("MediaTailor", "ListTagsForResource", {}).n("MediaTailorClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2435
|
+
static {
|
|
2436
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2437
|
+
}
|
|
2396
2438
|
};
|
|
2397
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2398
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2399
2439
|
|
|
2400
2440
|
// src/commands/ListVodSourcesCommand.ts
|
|
2401
2441
|
|
|
2402
2442
|
|
|
2403
2443
|
|
|
2404
|
-
var
|
|
2444
|
+
var ListVodSourcesCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2405
2445
|
return [
|
|
2406
2446
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2407
2447
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2408
2448
|
];
|
|
2409
2449
|
}).s("MediaTailor", "ListVodSources", {}).n("MediaTailorClient", "ListVodSourcesCommand").f(void 0, void 0).ser(se_ListVodSourcesCommand).de(de_ListVodSourcesCommand).build() {
|
|
2450
|
+
static {
|
|
2451
|
+
__name(this, "ListVodSourcesCommand");
|
|
2452
|
+
}
|
|
2410
2453
|
};
|
|
2411
|
-
__name(_ListVodSourcesCommand, "ListVodSourcesCommand");
|
|
2412
|
-
var ListVodSourcesCommand = _ListVodSourcesCommand;
|
|
2413
2454
|
|
|
2414
2455
|
// src/commands/PutChannelPolicyCommand.ts
|
|
2415
2456
|
|
|
2416
2457
|
|
|
2417
2458
|
|
|
2418
|
-
var
|
|
2459
|
+
var PutChannelPolicyCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2419
2460
|
return [
|
|
2420
2461
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2421
2462
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2422
2463
|
];
|
|
2423
2464
|
}).s("MediaTailor", "PutChannelPolicy", {}).n("MediaTailorClient", "PutChannelPolicyCommand").f(void 0, void 0).ser(se_PutChannelPolicyCommand).de(de_PutChannelPolicyCommand).build() {
|
|
2465
|
+
static {
|
|
2466
|
+
__name(this, "PutChannelPolicyCommand");
|
|
2467
|
+
}
|
|
2424
2468
|
};
|
|
2425
|
-
__name(_PutChannelPolicyCommand, "PutChannelPolicyCommand");
|
|
2426
|
-
var PutChannelPolicyCommand = _PutChannelPolicyCommand;
|
|
2427
2469
|
|
|
2428
2470
|
// src/commands/PutPlaybackConfigurationCommand.ts
|
|
2429
2471
|
|
|
2430
2472
|
|
|
2431
2473
|
|
|
2432
|
-
var
|
|
2474
|
+
var PutPlaybackConfigurationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2433
2475
|
return [
|
|
2434
2476
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2435
2477
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2436
2478
|
];
|
|
2437
2479
|
}).s("MediaTailor", "PutPlaybackConfiguration", {}).n("MediaTailorClient", "PutPlaybackConfigurationCommand").f(void 0, void 0).ser(se_PutPlaybackConfigurationCommand).de(de_PutPlaybackConfigurationCommand).build() {
|
|
2480
|
+
static {
|
|
2481
|
+
__name(this, "PutPlaybackConfigurationCommand");
|
|
2482
|
+
}
|
|
2438
2483
|
};
|
|
2439
|
-
__name(_PutPlaybackConfigurationCommand, "PutPlaybackConfigurationCommand");
|
|
2440
|
-
var PutPlaybackConfigurationCommand = _PutPlaybackConfigurationCommand;
|
|
2441
2484
|
|
|
2442
2485
|
// src/commands/StartChannelCommand.ts
|
|
2443
2486
|
|
|
2444
2487
|
|
|
2445
2488
|
|
|
2446
|
-
var
|
|
2489
|
+
var StartChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2447
2490
|
return [
|
|
2448
2491
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2449
2492
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2450
2493
|
];
|
|
2451
2494
|
}).s("MediaTailor", "StartChannel", {}).n("MediaTailorClient", "StartChannelCommand").f(void 0, void 0).ser(se_StartChannelCommand).de(de_StartChannelCommand).build() {
|
|
2495
|
+
static {
|
|
2496
|
+
__name(this, "StartChannelCommand");
|
|
2497
|
+
}
|
|
2452
2498
|
};
|
|
2453
|
-
__name(_StartChannelCommand, "StartChannelCommand");
|
|
2454
|
-
var StartChannelCommand = _StartChannelCommand;
|
|
2455
2499
|
|
|
2456
2500
|
// src/commands/StopChannelCommand.ts
|
|
2457
2501
|
|
|
2458
2502
|
|
|
2459
2503
|
|
|
2460
|
-
var
|
|
2504
|
+
var StopChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2461
2505
|
return [
|
|
2462
2506
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2463
2507
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2464
2508
|
];
|
|
2465
2509
|
}).s("MediaTailor", "StopChannel", {}).n("MediaTailorClient", "StopChannelCommand").f(void 0, void 0).ser(se_StopChannelCommand).de(de_StopChannelCommand).build() {
|
|
2510
|
+
static {
|
|
2511
|
+
__name(this, "StopChannelCommand");
|
|
2512
|
+
}
|
|
2466
2513
|
};
|
|
2467
|
-
__name(_StopChannelCommand, "StopChannelCommand");
|
|
2468
|
-
var StopChannelCommand = _StopChannelCommand;
|
|
2469
2514
|
|
|
2470
2515
|
// src/commands/TagResourceCommand.ts
|
|
2471
2516
|
|
|
2472
2517
|
|
|
2473
2518
|
|
|
2474
|
-
var
|
|
2519
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2475
2520
|
return [
|
|
2476
2521
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2477
2522
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2478
2523
|
];
|
|
2479
2524
|
}).s("MediaTailor", "TagResource", {}).n("MediaTailorClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2525
|
+
static {
|
|
2526
|
+
__name(this, "TagResourceCommand");
|
|
2527
|
+
}
|
|
2480
2528
|
};
|
|
2481
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2482
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2483
2529
|
|
|
2484
2530
|
// src/commands/UntagResourceCommand.ts
|
|
2485
2531
|
|
|
2486
2532
|
|
|
2487
2533
|
|
|
2488
|
-
var
|
|
2534
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2489
2535
|
return [
|
|
2490
2536
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2491
2537
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2492
2538
|
];
|
|
2493
2539
|
}).s("MediaTailor", "UntagResource", {}).n("MediaTailorClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2540
|
+
static {
|
|
2541
|
+
__name(this, "UntagResourceCommand");
|
|
2542
|
+
}
|
|
2494
2543
|
};
|
|
2495
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2496
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2497
2544
|
|
|
2498
2545
|
// src/commands/UpdateChannelCommand.ts
|
|
2499
2546
|
|
|
2500
2547
|
|
|
2501
2548
|
|
|
2502
|
-
var
|
|
2549
|
+
var UpdateChannelCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2503
2550
|
return [
|
|
2504
2551
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2505
2552
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2506
2553
|
];
|
|
2507
2554
|
}).s("MediaTailor", "UpdateChannel", {}).n("MediaTailorClient", "UpdateChannelCommand").f(void 0, void 0).ser(se_UpdateChannelCommand).de(de_UpdateChannelCommand).build() {
|
|
2555
|
+
static {
|
|
2556
|
+
__name(this, "UpdateChannelCommand");
|
|
2557
|
+
}
|
|
2508
2558
|
};
|
|
2509
|
-
__name(_UpdateChannelCommand, "UpdateChannelCommand");
|
|
2510
|
-
var UpdateChannelCommand = _UpdateChannelCommand;
|
|
2511
2559
|
|
|
2512
2560
|
// src/commands/UpdateLiveSourceCommand.ts
|
|
2513
2561
|
|
|
2514
2562
|
|
|
2515
2563
|
|
|
2516
|
-
var
|
|
2564
|
+
var UpdateLiveSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2517
2565
|
return [
|
|
2518
2566
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2519
2567
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2520
2568
|
];
|
|
2521
2569
|
}).s("MediaTailor", "UpdateLiveSource", {}).n("MediaTailorClient", "UpdateLiveSourceCommand").f(void 0, void 0).ser(se_UpdateLiveSourceCommand).de(de_UpdateLiveSourceCommand).build() {
|
|
2570
|
+
static {
|
|
2571
|
+
__name(this, "UpdateLiveSourceCommand");
|
|
2572
|
+
}
|
|
2522
2573
|
};
|
|
2523
|
-
__name(_UpdateLiveSourceCommand, "UpdateLiveSourceCommand");
|
|
2524
|
-
var UpdateLiveSourceCommand = _UpdateLiveSourceCommand;
|
|
2525
2574
|
|
|
2526
2575
|
// src/commands/UpdateProgramCommand.ts
|
|
2527
2576
|
|
|
2528
2577
|
|
|
2529
2578
|
|
|
2530
|
-
var
|
|
2579
|
+
var UpdateProgramCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2531
2580
|
return [
|
|
2532
2581
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2533
2582
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2534
2583
|
];
|
|
2535
2584
|
}).s("MediaTailor", "UpdateProgram", {}).n("MediaTailorClient", "UpdateProgramCommand").f(void 0, void 0).ser(se_UpdateProgramCommand).de(de_UpdateProgramCommand).build() {
|
|
2585
|
+
static {
|
|
2586
|
+
__name(this, "UpdateProgramCommand");
|
|
2587
|
+
}
|
|
2536
2588
|
};
|
|
2537
|
-
__name(_UpdateProgramCommand, "UpdateProgramCommand");
|
|
2538
|
-
var UpdateProgramCommand = _UpdateProgramCommand;
|
|
2539
2589
|
|
|
2540
2590
|
// src/commands/UpdateSourceLocationCommand.ts
|
|
2541
2591
|
|
|
2542
2592
|
|
|
2543
2593
|
|
|
2544
|
-
var
|
|
2594
|
+
var UpdateSourceLocationCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2545
2595
|
return [
|
|
2546
2596
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2547
2597
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2548
2598
|
];
|
|
2549
2599
|
}).s("MediaTailor", "UpdateSourceLocation", {}).n("MediaTailorClient", "UpdateSourceLocationCommand").f(void 0, void 0).ser(se_UpdateSourceLocationCommand).de(de_UpdateSourceLocationCommand).build() {
|
|
2600
|
+
static {
|
|
2601
|
+
__name(this, "UpdateSourceLocationCommand");
|
|
2602
|
+
}
|
|
2550
2603
|
};
|
|
2551
|
-
__name(_UpdateSourceLocationCommand, "UpdateSourceLocationCommand");
|
|
2552
|
-
var UpdateSourceLocationCommand = _UpdateSourceLocationCommand;
|
|
2553
2604
|
|
|
2554
2605
|
// src/commands/UpdateVodSourceCommand.ts
|
|
2555
2606
|
|
|
2556
2607
|
|
|
2557
2608
|
|
|
2558
|
-
var
|
|
2609
|
+
var UpdateVodSourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2559
2610
|
return [
|
|
2560
2611
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2561
2612
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2562
2613
|
];
|
|
2563
2614
|
}).s("MediaTailor", "UpdateVodSource", {}).n("MediaTailorClient", "UpdateVodSourceCommand").f(void 0, void 0).ser(se_UpdateVodSourceCommand).de(de_UpdateVodSourceCommand).build() {
|
|
2615
|
+
static {
|
|
2616
|
+
__name(this, "UpdateVodSourceCommand");
|
|
2617
|
+
}
|
|
2564
2618
|
};
|
|
2565
|
-
__name(_UpdateVodSourceCommand, "UpdateVodSourceCommand");
|
|
2566
|
-
var UpdateVodSourceCommand = _UpdateVodSourceCommand;
|
|
2567
2619
|
|
|
2568
2620
|
// src/MediaTailor.ts
|
|
2569
2621
|
var commands = {
|
|
@@ -2612,10 +2664,11 @@ var commands = {
|
|
|
2612
2664
|
UpdateSourceLocationCommand,
|
|
2613
2665
|
UpdateVodSourceCommand
|
|
2614
2666
|
};
|
|
2615
|
-
var
|
|
2667
|
+
var MediaTailor = class extends MediaTailorClient {
|
|
2668
|
+
static {
|
|
2669
|
+
__name(this, "MediaTailor");
|
|
2670
|
+
}
|
|
2616
2671
|
};
|
|
2617
|
-
__name(_MediaTailor, "MediaTailor");
|
|
2618
|
-
var MediaTailor = _MediaTailor;
|
|
2619
2672
|
(0, import_smithy_client.createAggregatedClient)(commands, MediaTailor);
|
|
2620
2673
|
|
|
2621
2674
|
// src/pagination/GetChannelSchedulePaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class MediaTailorClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -50,14 +50,15 @@ export const AccessType = {
|
|
|
50
50
|
SECRETS_MANAGER_ACCESS_TOKEN: "SECRETS_MANAGER_ACCESS_TOKEN",
|
|
51
51
|
};
|
|
52
52
|
export class BadRequestException extends __BaseException {
|
|
53
|
+
name = "BadRequestException";
|
|
54
|
+
$fault = "client";
|
|
55
|
+
Message;
|
|
53
56
|
constructor(opts) {
|
|
54
57
|
super({
|
|
55
58
|
name: "BadRequestException",
|
|
56
59
|
$fault: "client",
|
|
57
60
|
...opts,
|
|
58
61
|
});
|
|
59
|
-
this.name = "BadRequestException";
|
|
60
|
-
this.$fault = "client";
|
|
61
62
|
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
62
63
|
this.Message = opts.Message;
|
|
63
64
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: MediaTailorClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: MediaTailorClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: MediaTailorClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -31,7 +31,7 @@ export declare const getRuntimeConfig: (config: MediaTailorClientConfig) => {
|
|
|
31
31
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
32
32
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
33
33
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
34
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
34
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
35
35
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
36
36
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
37
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: MediaTailorClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: MediaTailorClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: MediaTailorClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -50,11 +52,21 @@ export declare const getRuntimeConfig: (config: MediaTailorClientConfig) => {
|
|
|
50
52
|
| import("@smithy/types").RetryStrategyV2
|
|
51
53
|
| undefined;
|
|
52
54
|
endpoint?:
|
|
53
|
-
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
58
70
|
| undefined;
|
|
59
71
|
endpointProvider: (
|
|
60
72
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediatailor",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediatailor Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.726.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-mediatailor",
|
|
@@ -20,56 +20,56 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.726.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.726.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.726.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.726.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.726.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.726.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@tsconfig/
|
|
65
|
-
"@types/node": "^
|
|
64
|
+
"@tsconfig/node18": "18.2.4",
|
|
65
|
+
"@types/node": "^18.19.69",
|
|
66
66
|
"concurrently": "7.0.0",
|
|
67
67
|
"downlevel-dts": "0.10.1",
|
|
68
68
|
"rimraf": "3.0.2",
|
|
69
|
-
"typescript": "~
|
|
69
|
+
"typescript": "~5.2.2"
|
|
70
70
|
},
|
|
71
71
|
"engines": {
|
|
72
|
-
"node": ">=
|
|
72
|
+
"node": ">=18.0.0"
|
|
73
73
|
},
|
|
74
74
|
"typesVersions": {
|
|
75
75
|
"<4.0": {
|