@aws-sdk/client-mediaconnect 3.774.0 → 3.777.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/auth/httpAuthSchemeProvider.js +1 -3
- package/dist-cjs/index.js +17 -18
- package/dist-es/MediaConnectClient.js +2 -1
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -3
- package/dist-es/endpoint/EndpointParameters.js +2 -3
- package/dist-es/runtimeExtensions.js +2 -14
- package/dist-types/commands/AddBridgeOutputsCommand.d.ts +1 -0
- package/dist-types/commands/AddBridgeSourcesCommand.d.ts +1 -0
- package/dist-types/commands/AddFlowMediaStreamsCommand.d.ts +1 -0
- package/dist-types/commands/AddFlowOutputsCommand.d.ts +1 -0
- package/dist-types/commands/AddFlowSourcesCommand.d.ts +1 -0
- package/dist-types/commands/AddFlowVpcInterfacesCommand.d.ts +1 -0
- package/dist-types/commands/CreateBridgeCommand.d.ts +1 -0
- package/dist-types/commands/CreateFlowCommand.d.ts +1 -0
- package/dist-types/commands/CreateGatewayCommand.d.ts +1 -0
- package/dist-types/commands/DeleteBridgeCommand.d.ts +1 -0
- package/dist-types/commands/DeleteFlowCommand.d.ts +1 -0
- package/dist-types/commands/DeleteGatewayCommand.d.ts +1 -0
- package/dist-types/commands/DeregisterGatewayInstanceCommand.d.ts +1 -0
- package/dist-types/commands/DescribeBridgeCommand.d.ts +1 -0
- package/dist-types/commands/DescribeFlowCommand.d.ts +1 -0
- package/dist-types/commands/DescribeFlowSourceMetadataCommand.d.ts +1 -0
- package/dist-types/commands/DescribeFlowSourceThumbnailCommand.d.ts +1 -0
- package/dist-types/commands/DescribeGatewayCommand.d.ts +1 -0
- package/dist-types/commands/DescribeGatewayInstanceCommand.d.ts +1 -0
- package/dist-types/commands/DescribeOfferingCommand.d.ts +1 -0
- package/dist-types/commands/DescribeReservationCommand.d.ts +1 -0
- package/dist-types/commands/GrantFlowEntitlementsCommand.d.ts +1 -0
- package/dist-types/commands/ListBridgesCommand.d.ts +1 -0
- package/dist-types/commands/ListEntitlementsCommand.d.ts +1 -0
- package/dist-types/commands/ListFlowsCommand.d.ts +1 -0
- package/dist-types/commands/ListGatewayInstancesCommand.d.ts +1 -0
- package/dist-types/commands/ListGatewaysCommand.d.ts +1 -0
- package/dist-types/commands/ListOfferingsCommand.d.ts +1 -0
- package/dist-types/commands/ListReservationsCommand.d.ts +1 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -0
- package/dist-types/commands/PurchaseOfferingCommand.d.ts +1 -0
- package/dist-types/commands/RemoveBridgeOutputCommand.d.ts +1 -0
- package/dist-types/commands/RemoveBridgeSourceCommand.d.ts +1 -0
- package/dist-types/commands/RemoveFlowMediaStreamCommand.d.ts +1 -0
- package/dist-types/commands/RemoveFlowOutputCommand.d.ts +1 -0
- package/dist-types/commands/RemoveFlowSourceCommand.d.ts +1 -0
- package/dist-types/commands/RemoveFlowVpcInterfaceCommand.d.ts +1 -0
- package/dist-types/commands/RevokeFlowEntitlementCommand.d.ts +1 -0
- package/dist-types/commands/StartFlowCommand.d.ts +1 -0
- package/dist-types/commands/StopFlowCommand.d.ts +1 -0
- package/dist-types/commands/TagResourceCommand.d.ts +1 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +1 -0
- package/dist-types/commands/UpdateBridgeCommand.d.ts +1 -0
- package/dist-types/commands/UpdateBridgeOutputCommand.d.ts +1 -0
- package/dist-types/commands/UpdateBridgeSourceCommand.d.ts +1 -0
- package/dist-types/commands/UpdateBridgeStateCommand.d.ts +1 -0
- package/dist-types/commands/UpdateFlowCommand.d.ts +1 -0
- package/dist-types/commands/UpdateFlowEntitlementCommand.d.ts +1 -0
- package/dist-types/commands/UpdateFlowMediaStreamCommand.d.ts +1 -0
- package/dist-types/commands/UpdateFlowOutputCommand.d.ts +1 -0
- package/dist-types/commands/UpdateFlowSourceCommand.d.ts +1 -0
- package/dist-types/commands/UpdateGatewayInstanceCommand.d.ts +1 -0
- package/package.json +34 -34
|
@@ -40,8 +40,6 @@ const defaultMediaConnectHttpAuthSchemeProvider = (authParameters) => {
|
|
|
40
40
|
exports.defaultMediaConnectHttpAuthSchemeProvider = defaultMediaConnectHttpAuthSchemeProvider;
|
|
41
41
|
const resolveHttpAuthSchemeConfig = (config) => {
|
|
42
42
|
const config_0 = (0, core_1.resolveAwsSdkSigV4Config)(config);
|
|
43
|
-
return {
|
|
44
|
-
...config_0,
|
|
45
|
-
};
|
|
43
|
+
return Object.assign(config_0, {});
|
|
46
44
|
};
|
|
47
45
|
exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
|
package/dist-cjs/index.js
CHANGED
|
@@ -152,12 +152,11 @@ var import_httpAuthSchemeProvider = require("./auth/httpAuthSchemeProvider");
|
|
|
152
152
|
|
|
153
153
|
// src/endpoint/EndpointParameters.ts
|
|
154
154
|
var resolveClientEndpointParameters = /* @__PURE__ */ __name((options) => {
|
|
155
|
-
return {
|
|
156
|
-
...options,
|
|
155
|
+
return Object.assign(options, {
|
|
157
156
|
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
158
157
|
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
159
158
|
defaultSigningName: "mediaconnect"
|
|
160
|
-
};
|
|
159
|
+
});
|
|
161
160
|
}, "resolveClientEndpointParameters");
|
|
162
161
|
var commonParams = {
|
|
163
162
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -214,22 +213,21 @@ var resolveHttpAuthRuntimeConfig = /* @__PURE__ */ __name((config) => {
|
|
|
214
213
|
}, "resolveHttpAuthRuntimeConfig");
|
|
215
214
|
|
|
216
215
|
// src/runtimeExtensions.ts
|
|
217
|
-
var asPartial = /* @__PURE__ */ __name((t) => t, "asPartial");
|
|
218
216
|
var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions) => {
|
|
219
|
-
const extensionConfiguration =
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
217
|
+
const extensionConfiguration = Object.assign(
|
|
218
|
+
(0, import_region_config_resolver.getAwsRegionExtensionConfiguration)(runtimeConfig),
|
|
219
|
+
(0, import_smithy_client.getDefaultExtensionConfiguration)(runtimeConfig),
|
|
220
|
+
(0, import_protocol_http.getHttpHandlerExtensionConfiguration)(runtimeConfig),
|
|
221
|
+
getHttpAuthExtensionConfiguration(runtimeConfig)
|
|
222
|
+
);
|
|
225
223
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
226
|
-
return
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
224
|
+
return Object.assign(
|
|
225
|
+
runtimeConfig,
|
|
226
|
+
(0, import_region_config_resolver.resolveAwsRegionExtensionConfiguration)(extensionConfiguration),
|
|
227
|
+
(0, import_smithy_client.resolveDefaultRuntimeConfig)(extensionConfiguration),
|
|
228
|
+
(0, import_protocol_http.resolveHttpHandlerRuntimeConfig)(extensionConfiguration),
|
|
229
|
+
resolveHttpAuthRuntimeConfig(extensionConfiguration)
|
|
230
|
+
);
|
|
233
231
|
}, "resolveRuntimeExtensions");
|
|
234
232
|
|
|
235
233
|
// src/MediaConnectClient.ts
|
|
@@ -243,6 +241,8 @@ var MediaConnectClient = class extends import_smithy_client.Client {
|
|
|
243
241
|
config;
|
|
244
242
|
constructor(...[configuration]) {
|
|
245
243
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
244
|
+
super(_config_0);
|
|
245
|
+
this.initConfig = _config_0;
|
|
246
246
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
247
247
|
const _config_2 = (0, import_middleware_user_agent.resolveUserAgentConfig)(_config_1);
|
|
248
248
|
const _config_3 = (0, import_middleware_retry.resolveRetryConfig)(_config_2);
|
|
@@ -251,7 +251,6 @@ var MediaConnectClient = class extends import_smithy_client.Client {
|
|
|
251
251
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
252
252
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
253
253
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
254
|
-
super(_config_8);
|
|
255
254
|
this.config = _config_8;
|
|
256
255
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
257
256
|
this.middlewareStack.use((0, import_middleware_retry.getRetryPlugin)(this.config));
|
|
@@ -17,6 +17,8 @@ export class MediaConnectClient extends __Client {
|
|
|
17
17
|
config;
|
|
18
18
|
constructor(...[configuration]) {
|
|
19
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
20
|
+
super(_config_0);
|
|
21
|
+
this.initConfig = _config_0;
|
|
20
22
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
21
23
|
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
22
24
|
const _config_3 = resolveRetryConfig(_config_2);
|
|
@@ -25,7 +27,6 @@ export class MediaConnectClient extends __Client {
|
|
|
25
27
|
const _config_6 = resolveEndpointConfig(_config_5);
|
|
26
28
|
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
27
29
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
28
|
-
super(_config_8);
|
|
29
30
|
this.config = _config_8;
|
|
30
31
|
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
31
32
|
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
@@ -35,7 +35,5 @@ export const defaultMediaConnectHttpAuthSchemeProvider = (authParameters) => {
|
|
|
35
35
|
};
|
|
36
36
|
export const resolveHttpAuthSchemeConfig = (config) => {
|
|
37
37
|
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
38
|
-
return {
|
|
39
|
-
...config_0,
|
|
40
|
-
};
|
|
38
|
+
return Object.assign(config_0, {});
|
|
41
39
|
};
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
export const resolveClientEndpointParameters = (options) => {
|
|
2
|
-
return {
|
|
3
|
-
...options,
|
|
2
|
+
return Object.assign(options, {
|
|
4
3
|
useDualstackEndpoint: options.useDualstackEndpoint ?? false,
|
|
5
4
|
useFipsEndpoint: options.useFipsEndpoint ?? false,
|
|
6
5
|
defaultSigningName: "mediaconnect",
|
|
7
|
-
};
|
|
6
|
+
});
|
|
8
7
|
};
|
|
9
8
|
export const commonParams = {
|
|
10
9
|
UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
|
|
@@ -2,20 +2,8 @@ import { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfigurat
|
|
|
2
2
|
import { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig } from "@smithy/protocol-http";
|
|
3
3
|
import { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig } from "@smithy/smithy-client";
|
|
4
4
|
import { getHttpAuthExtensionConfiguration, resolveHttpAuthRuntimeConfig } from "./auth/httpAuthExtensionConfiguration";
|
|
5
|
-
const asPartial = (t) => t;
|
|
6
5
|
export const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
7
|
-
const extensionConfiguration =
|
|
8
|
-
...asPartial(getAwsRegionExtensionConfiguration(runtimeConfig)),
|
|
9
|
-
...asPartial(getDefaultExtensionConfiguration(runtimeConfig)),
|
|
10
|
-
...asPartial(getHttpHandlerExtensionConfiguration(runtimeConfig)),
|
|
11
|
-
...asPartial(getHttpAuthExtensionConfiguration(runtimeConfig)),
|
|
12
|
-
};
|
|
6
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
13
7
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
14
|
-
return
|
|
15
|
-
...runtimeConfig,
|
|
16
|
-
...resolveAwsRegionExtensionConfiguration(extensionConfiguration),
|
|
17
|
-
...resolveDefaultRuntimeConfig(extensionConfiguration),
|
|
18
|
-
...resolveHttpHandlerRuntimeConfig(extensionConfiguration),
|
|
19
|
-
...resolveHttpAuthRuntimeConfig(extensionConfiguration),
|
|
20
|
-
};
|
|
8
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
21
9
|
};
|
|
@@ -111,6 +111,7 @@ declare const AddBridgeOutputsCommand_base: {
|
|
|
111
111
|
* @throws {@link MediaConnectServiceException}
|
|
112
112
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
113
113
|
*
|
|
114
|
+
*
|
|
114
115
|
* @public
|
|
115
116
|
*/
|
|
116
117
|
export declare class AddBridgeOutputsCommand extends AddBridgeOutputsCommand_base {
|
|
@@ -125,6 +125,7 @@ declare const AddBridgeSourcesCommand_base: {
|
|
|
125
125
|
* @throws {@link MediaConnectServiceException}
|
|
126
126
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
127
127
|
*
|
|
128
|
+
*
|
|
128
129
|
* @public
|
|
129
130
|
*/
|
|
130
131
|
export declare class AddBridgeSourcesCommand extends AddBridgeSourcesCommand_base {
|
|
@@ -123,6 +123,7 @@ declare const AddFlowMediaStreamsCommand_base: {
|
|
|
123
123
|
* @throws {@link MediaConnectServiceException}
|
|
124
124
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
125
125
|
*
|
|
126
|
+
*
|
|
126
127
|
* @public
|
|
127
128
|
*/
|
|
128
129
|
export declare class AddFlowMediaStreamsCommand extends AddFlowMediaStreamsCommand_base {
|
|
@@ -207,6 +207,7 @@ declare const AddFlowOutputsCommand_base: {
|
|
|
207
207
|
* @throws {@link MediaConnectServiceException}
|
|
208
208
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
209
209
|
*
|
|
210
|
+
*
|
|
210
211
|
* @public
|
|
211
212
|
*/
|
|
212
213
|
export declare class AddFlowOutputsCommand extends AddFlowOutputsCommand_base {
|
|
@@ -195,6 +195,7 @@ declare const AddFlowSourcesCommand_base: {
|
|
|
195
195
|
* @throws {@link MediaConnectServiceException}
|
|
196
196
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
197
197
|
*
|
|
198
|
+
*
|
|
198
199
|
* @public
|
|
199
200
|
*/
|
|
200
201
|
export declare class AddFlowSourcesCommand extends AddFlowSourcesCommand_base {
|
|
@@ -103,6 +103,7 @@ declare const AddFlowVpcInterfacesCommand_base: {
|
|
|
103
103
|
* @throws {@link MediaConnectServiceException}
|
|
104
104
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
105
105
|
*
|
|
106
|
+
*
|
|
106
107
|
* @public
|
|
107
108
|
*/
|
|
108
109
|
export declare class AddFlowVpcInterfacesCommand extends AddFlowVpcInterfacesCommand_base {
|
|
@@ -199,6 +199,7 @@ declare const CreateBridgeCommand_base: {
|
|
|
199
199
|
* @throws {@link MediaConnectServiceException}
|
|
200
200
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
201
201
|
*
|
|
202
|
+
*
|
|
202
203
|
* @public
|
|
203
204
|
*/
|
|
204
205
|
export declare class CreateBridgeCommand extends CreateBridgeCommand_base {
|
|
@@ -652,6 +652,7 @@ declare const CreateFlowCommand_base: {
|
|
|
652
652
|
* @throws {@link MediaConnectServiceException}
|
|
653
653
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
654
654
|
*
|
|
655
|
+
*
|
|
655
656
|
* @public
|
|
656
657
|
*/
|
|
657
658
|
export declare class CreateFlowCommand extends CreateFlowCommand_base {
|
|
@@ -111,6 +111,7 @@ declare const CreateGatewayCommand_base: {
|
|
|
111
111
|
* @throws {@link MediaConnectServiceException}
|
|
112
112
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
113
113
|
*
|
|
114
|
+
*
|
|
114
115
|
* @public
|
|
115
116
|
*/
|
|
116
117
|
export declare class CreateGatewayCommand extends CreateGatewayCommand_base {
|
|
@@ -82,6 +82,7 @@ declare const DeleteBridgeCommand_base: {
|
|
|
82
82
|
* @throws {@link MediaConnectServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
84
84
|
*
|
|
85
|
+
*
|
|
85
86
|
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class DeleteBridgeCommand extends DeleteBridgeCommand_base {
|
|
@@ -79,6 +79,7 @@ declare const DeleteFlowCommand_base: {
|
|
|
79
79
|
* @throws {@link MediaConnectServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
81
81
|
*
|
|
82
|
+
*
|
|
82
83
|
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class DeleteFlowCommand extends DeleteFlowCommand_base {
|
|
@@ -82,6 +82,7 @@ declare const DeleteGatewayCommand_base: {
|
|
|
82
82
|
* @throws {@link MediaConnectServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
84
84
|
*
|
|
85
|
+
*
|
|
85
86
|
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class DeleteGatewayCommand extends DeleteGatewayCommand_base {
|
|
@@ -84,6 +84,7 @@ declare const DeregisterGatewayInstanceCommand_base: {
|
|
|
84
84
|
* @throws {@link MediaConnectServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
86
86
|
*
|
|
87
|
+
*
|
|
87
88
|
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class DeregisterGatewayInstanceCommand extends DeregisterGatewayInstanceCommand_base {
|
|
@@ -150,6 +150,7 @@ declare const DescribeBridgeCommand_base: {
|
|
|
150
150
|
* @throws {@link MediaConnectServiceException}
|
|
151
151
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
152
152
|
*
|
|
153
|
+
*
|
|
153
154
|
* @public
|
|
154
155
|
*/
|
|
155
156
|
export declare class DescribeBridgeCommand extends DescribeBridgeCommand_base {
|
|
@@ -399,6 +399,7 @@ declare const DescribeFlowCommand_base: {
|
|
|
399
399
|
* @throws {@link MediaConnectServiceException}
|
|
400
400
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
401
401
|
*
|
|
402
|
+
*
|
|
402
403
|
* @public
|
|
403
404
|
*/
|
|
404
405
|
export declare class DescribeFlowCommand extends DescribeFlowCommand_base {
|
|
@@ -113,6 +113,7 @@ declare const DescribeFlowSourceMetadataCommand_base: {
|
|
|
113
113
|
* @throws {@link MediaConnectServiceException}
|
|
114
114
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
115
115
|
*
|
|
116
|
+
*
|
|
116
117
|
* @public
|
|
117
118
|
*/
|
|
118
119
|
export declare class DescribeFlowSourceMetadataCommand extends DescribeFlowSourceMetadataCommand_base {
|
|
@@ -92,6 +92,7 @@ declare const DescribeFlowSourceThumbnailCommand_base: {
|
|
|
92
92
|
* @throws {@link MediaConnectServiceException}
|
|
93
93
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
94
94
|
*
|
|
95
|
+
*
|
|
95
96
|
* @public
|
|
96
97
|
*/
|
|
97
98
|
export declare class DescribeFlowSourceThumbnailCommand extends DescribeFlowSourceThumbnailCommand_base {
|
|
@@ -103,6 +103,7 @@ declare const DescribeGatewayCommand_base: {
|
|
|
103
103
|
* @throws {@link MediaConnectServiceException}
|
|
104
104
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
105
105
|
*
|
|
106
|
+
*
|
|
106
107
|
* @public
|
|
107
108
|
*/
|
|
108
109
|
export declare class DescribeGatewayCommand extends DescribeGatewayCommand_base {
|
|
@@ -99,6 +99,7 @@ declare const DescribeGatewayInstanceCommand_base: {
|
|
|
99
99
|
* @throws {@link MediaConnectServiceException}
|
|
100
100
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
101
101
|
*
|
|
102
|
+
*
|
|
102
103
|
* @public
|
|
103
104
|
*/
|
|
104
105
|
export declare class DescribeGatewayInstanceCommand extends DescribeGatewayInstanceCommand_base {
|
|
@@ -86,6 +86,7 @@ declare const DescribeOfferingCommand_base: {
|
|
|
86
86
|
* @throws {@link MediaConnectServiceException}
|
|
87
87
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
88
88
|
*
|
|
89
|
+
*
|
|
89
90
|
* @public
|
|
90
91
|
*/
|
|
91
92
|
export declare class DescribeOfferingCommand extends DescribeOfferingCommand_base {
|
|
@@ -91,6 +91,7 @@ declare const DescribeReservationCommand_base: {
|
|
|
91
91
|
* @throws {@link MediaConnectServiceException}
|
|
92
92
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
93
93
|
*
|
|
94
|
+
*
|
|
94
95
|
* @public
|
|
95
96
|
*/
|
|
96
97
|
export declare class DescribeReservationCommand extends DescribeReservationCommand_base {
|
|
@@ -127,6 +127,7 @@ declare const GrantFlowEntitlementsCommand_base: {
|
|
|
127
127
|
* @throws {@link MediaConnectServiceException}
|
|
128
128
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
129
129
|
*
|
|
130
|
+
*
|
|
130
131
|
* @public
|
|
131
132
|
*/
|
|
132
133
|
export declare class GrantFlowEntitlementsCommand extends GrantFlowEntitlementsCommand_base {
|
|
@@ -86,6 +86,7 @@ declare const ListBridgesCommand_base: {
|
|
|
86
86
|
* @throws {@link MediaConnectServiceException}
|
|
87
87
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
88
88
|
*
|
|
89
|
+
*
|
|
89
90
|
* @public
|
|
90
91
|
*/
|
|
91
92
|
export declare class ListBridgesCommand extends ListBridgesCommand_base {
|
|
@@ -78,6 +78,7 @@ declare const ListEntitlementsCommand_base: {
|
|
|
78
78
|
* @throws {@link MediaConnectServiceException}
|
|
79
79
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
80
80
|
*
|
|
81
|
+
*
|
|
81
82
|
* @public
|
|
82
83
|
*/
|
|
83
84
|
export declare class ListEntitlementsCommand extends ListEntitlementsCommand_base {
|
|
@@ -87,6 +87,7 @@ declare const ListFlowsCommand_base: {
|
|
|
87
87
|
* @throws {@link MediaConnectServiceException}
|
|
88
88
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
89
89
|
*
|
|
90
|
+
*
|
|
90
91
|
* @public
|
|
91
92
|
*/
|
|
92
93
|
export declare class ListFlowsCommand extends ListFlowsCommand_base {
|
|
@@ -84,6 +84,7 @@ declare const ListGatewayInstancesCommand_base: {
|
|
|
84
84
|
* @throws {@link MediaConnectServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
86
86
|
*
|
|
87
|
+
*
|
|
87
88
|
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class ListGatewayInstancesCommand extends ListGatewayInstancesCommand_base {
|
|
@@ -82,6 +82,7 @@ declare const ListGatewaysCommand_base: {
|
|
|
82
82
|
* @throws {@link MediaConnectServiceException}
|
|
83
83
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
84
84
|
*
|
|
85
|
+
*
|
|
85
86
|
* @public
|
|
86
87
|
*/
|
|
87
88
|
export declare class ListGatewaysCommand extends ListGatewaysCommand_base {
|
|
@@ -86,6 +86,7 @@ declare const ListOfferingsCommand_base: {
|
|
|
86
86
|
* @throws {@link MediaConnectServiceException}
|
|
87
87
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
88
88
|
*
|
|
89
|
+
*
|
|
89
90
|
* @public
|
|
90
91
|
*/
|
|
91
92
|
export declare class ListOfferingsCommand extends ListOfferingsCommand_base {
|
|
@@ -91,6 +91,7 @@ declare const ListReservationsCommand_base: {
|
|
|
91
91
|
* @throws {@link MediaConnectServiceException}
|
|
92
92
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
93
93
|
*
|
|
94
|
+
*
|
|
94
95
|
* @public
|
|
95
96
|
*/
|
|
96
97
|
export declare class ListReservationsCommand extends ListReservationsCommand_base {
|
|
@@ -68,6 +68,7 @@ declare const ListTagsForResourceCommand_base: {
|
|
|
68
68
|
* @throws {@link MediaConnectServiceException}
|
|
69
69
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
70
70
|
*
|
|
71
|
+
*
|
|
71
72
|
* @public
|
|
72
73
|
*/
|
|
73
74
|
export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
|
|
@@ -97,6 +97,7 @@ declare const PurchaseOfferingCommand_base: {
|
|
|
97
97
|
* @throws {@link MediaConnectServiceException}
|
|
98
98
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
99
99
|
*
|
|
100
|
+
*
|
|
100
101
|
* @public
|
|
101
102
|
*/
|
|
102
103
|
export declare class PurchaseOfferingCommand extends PurchaseOfferingCommand_base {
|
|
@@ -84,6 +84,7 @@ declare const RemoveBridgeOutputCommand_base: {
|
|
|
84
84
|
* @throws {@link MediaConnectServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
86
86
|
*
|
|
87
|
+
*
|
|
87
88
|
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class RemoveBridgeOutputCommand extends RemoveBridgeOutputCommand_base {
|
|
@@ -84,6 +84,7 @@ declare const RemoveBridgeSourceCommand_base: {
|
|
|
84
84
|
* @throws {@link MediaConnectServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
86
86
|
*
|
|
87
|
+
*
|
|
87
88
|
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class RemoveBridgeSourceCommand extends RemoveBridgeSourceCommand_base {
|
|
@@ -80,6 +80,7 @@ declare const RemoveFlowMediaStreamCommand_base: {
|
|
|
80
80
|
* @throws {@link MediaConnectServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
82
82
|
*
|
|
83
|
+
*
|
|
83
84
|
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class RemoveFlowMediaStreamCommand extends RemoveFlowMediaStreamCommand_base {
|
|
@@ -80,6 +80,7 @@ declare const RemoveFlowOutputCommand_base: {
|
|
|
80
80
|
* @throws {@link MediaConnectServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
82
82
|
*
|
|
83
|
+
*
|
|
83
84
|
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class RemoveFlowOutputCommand extends RemoveFlowOutputCommand_base {
|
|
@@ -81,6 +81,7 @@ declare const RemoveFlowSourceCommand_base: {
|
|
|
81
81
|
* @throws {@link MediaConnectServiceException}
|
|
82
82
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
83
83
|
*
|
|
84
|
+
*
|
|
84
85
|
* @public
|
|
85
86
|
*/
|
|
86
87
|
export declare class RemoveFlowSourceCommand extends RemoveFlowSourceCommand_base {
|
|
@@ -83,6 +83,7 @@ declare const RemoveFlowVpcInterfaceCommand_base: {
|
|
|
83
83
|
* @throws {@link MediaConnectServiceException}
|
|
84
84
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
85
85
|
*
|
|
86
|
+
*
|
|
86
87
|
* @public
|
|
87
88
|
*/
|
|
88
89
|
export declare class RemoveFlowVpcInterfaceCommand extends RemoveFlowVpcInterfaceCommand_base {
|
|
@@ -80,6 +80,7 @@ declare const RevokeFlowEntitlementCommand_base: {
|
|
|
80
80
|
* @throws {@link MediaConnectServiceException}
|
|
81
81
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
82
82
|
*
|
|
83
|
+
*
|
|
83
84
|
* @public
|
|
84
85
|
*/
|
|
85
86
|
export declare class RevokeFlowEntitlementCommand extends RevokeFlowEntitlementCommand_base {
|
|
@@ -79,6 +79,7 @@ declare const StartFlowCommand_base: {
|
|
|
79
79
|
* @throws {@link MediaConnectServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
81
81
|
*
|
|
82
|
+
*
|
|
82
83
|
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class StartFlowCommand extends StartFlowCommand_base {
|
|
@@ -79,6 +79,7 @@ declare const StopFlowCommand_base: {
|
|
|
79
79
|
* @throws {@link MediaConnectServiceException}
|
|
80
80
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
81
81
|
*
|
|
82
|
+
*
|
|
82
83
|
* @public
|
|
83
84
|
*/
|
|
84
85
|
export declare class StopFlowCommand extends StopFlowCommand_base {
|
|
@@ -70,6 +70,7 @@ declare const TagResourceCommand_base: {
|
|
|
70
70
|
* @throws {@link MediaConnectServiceException}
|
|
71
71
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
72
72
|
*
|
|
73
|
+
*
|
|
73
74
|
* @public
|
|
74
75
|
*/
|
|
75
76
|
export declare class TagResourceCommand extends TagResourceCommand_base {
|
|
@@ -67,6 +67,7 @@ declare const UntagResourceCommand_base: {
|
|
|
67
67
|
* @throws {@link MediaConnectServiceException}
|
|
68
68
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
69
69
|
*
|
|
70
|
+
*
|
|
70
71
|
* @public
|
|
71
72
|
*/
|
|
72
73
|
export declare class UntagResourceCommand extends UntagResourceCommand_base {
|
|
@@ -165,6 +165,7 @@ declare const UpdateBridgeCommand_base: {
|
|
|
165
165
|
* @throws {@link MediaConnectServiceException}
|
|
166
166
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
167
167
|
*
|
|
168
|
+
*
|
|
168
169
|
* @public
|
|
169
170
|
*/
|
|
170
171
|
export declare class UpdateBridgeCommand extends UpdateBridgeCommand_base {
|
|
@@ -105,6 +105,7 @@ declare const UpdateBridgeOutputCommand_base: {
|
|
|
105
105
|
* @throws {@link MediaConnectServiceException}
|
|
106
106
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
107
107
|
*
|
|
108
|
+
*
|
|
108
109
|
* @public
|
|
109
110
|
*/
|
|
110
111
|
export declare class UpdateBridgeOutputCommand extends UpdateBridgeOutputCommand_base {
|
|
@@ -118,6 +118,7 @@ declare const UpdateBridgeSourceCommand_base: {
|
|
|
118
118
|
* @throws {@link MediaConnectServiceException}
|
|
119
119
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
120
120
|
*
|
|
121
|
+
*
|
|
121
122
|
* @public
|
|
122
123
|
*/
|
|
123
124
|
export declare class UpdateBridgeSourceCommand extends UpdateBridgeSourceCommand_base {
|
|
@@ -84,6 +84,7 @@ declare const UpdateBridgeStateCommand_base: {
|
|
|
84
84
|
* @throws {@link MediaConnectServiceException}
|
|
85
85
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
86
86
|
*
|
|
87
|
+
*
|
|
87
88
|
* @public
|
|
88
89
|
*/
|
|
89
90
|
export declare class UpdateBridgeStateCommand extends UpdateBridgeStateCommand_base {
|
|
@@ -442,6 +442,7 @@ declare const UpdateFlowCommand_base: {
|
|
|
442
442
|
* @throws {@link MediaConnectServiceException}
|
|
443
443
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
444
444
|
*
|
|
445
|
+
*
|
|
445
446
|
* @public
|
|
446
447
|
*/
|
|
447
448
|
export declare class UpdateFlowCommand extends UpdateFlowCommand_base {
|
|
@@ -116,6 +116,7 @@ declare const UpdateFlowEntitlementCommand_base: {
|
|
|
116
116
|
* @throws {@link MediaConnectServiceException}
|
|
117
117
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
118
118
|
*
|
|
119
|
+
*
|
|
119
120
|
* @public
|
|
120
121
|
*/
|
|
121
122
|
export declare class UpdateFlowEntitlementCommand extends UpdateFlowEntitlementCommand_base {
|
|
@@ -116,6 +116,7 @@ declare const UpdateFlowMediaStreamCommand_base: {
|
|
|
116
116
|
* @throws {@link MediaConnectServiceException}
|
|
117
117
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
118
118
|
*
|
|
119
|
+
*
|
|
119
120
|
* @public
|
|
120
121
|
*/
|
|
121
122
|
export declare class UpdateFlowMediaStreamCommand extends UpdateFlowMediaStreamCommand_base {
|
|
@@ -198,6 +198,7 @@ declare const UpdateFlowOutputCommand_base: {
|
|
|
198
198
|
* @throws {@link MediaConnectServiceException}
|
|
199
199
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
200
200
|
*
|
|
201
|
+
*
|
|
201
202
|
* @public
|
|
202
203
|
*/
|
|
203
204
|
export declare class UpdateFlowOutputCommand extends UpdateFlowOutputCommand_base {
|
|
@@ -189,6 +189,7 @@ declare const UpdateFlowSourceCommand_base: {
|
|
|
189
189
|
* @throws {@link MediaConnectServiceException}
|
|
190
190
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
191
191
|
*
|
|
192
|
+
*
|
|
192
193
|
* @public
|
|
193
194
|
*/
|
|
194
195
|
export declare class UpdateFlowSourceCommand extends UpdateFlowSourceCommand_base {
|
|
@@ -85,6 +85,7 @@ declare const UpdateGatewayInstanceCommand_base: {
|
|
|
85
85
|
* @throws {@link MediaConnectServiceException}
|
|
86
86
|
* <p>Base exception class for all service exceptions from MediaConnect service.</p>
|
|
87
87
|
*
|
|
88
|
+
*
|
|
88
89
|
* @public
|
|
89
90
|
*/
|
|
90
91
|
export declare class UpdateGatewayInstanceCommand extends UpdateGatewayInstanceCommand_base {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-mediaconnect",
|
|
3
3
|
"description": "AWS SDK for JavaScript Mediaconnect Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.777.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-mediaconnect",
|
|
@@ -20,43 +20,43 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
34
|
-
"@smithy/config-resolver": "^4.0
|
|
35
|
-
"@smithy/core": "^3.
|
|
36
|
-
"@smithy/fetch-http-handler": "^5.0.
|
|
37
|
-
"@smithy/hash-node": "^4.0.
|
|
38
|
-
"@smithy/invalid-dependency": "^4.0.
|
|
39
|
-
"@smithy/middleware-content-length": "^4.0.
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.0
|
|
41
|
-
"@smithy/middleware-retry": "^4.0
|
|
42
|
-
"@smithy/middleware-serde": "^4.0.
|
|
43
|
-
"@smithy/middleware-stack": "^4.0.
|
|
44
|
-
"@smithy/node-config-provider": "^4.0.
|
|
45
|
-
"@smithy/node-http-handler": "^4.0.
|
|
46
|
-
"@smithy/protocol-http": "^5.0
|
|
47
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
-
"@smithy/types": "^4.
|
|
49
|
-
"@smithy/url-parser": "^4.0.
|
|
23
|
+
"@aws-sdk/core": "3.775.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.777.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.775.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.775.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.775.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.775.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.775.0",
|
|
30
|
+
"@aws-sdk/types": "3.775.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.775.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.775.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.775.0",
|
|
34
|
+
"@smithy/config-resolver": "^4.1.0",
|
|
35
|
+
"@smithy/core": "^3.2.0",
|
|
36
|
+
"@smithy/fetch-http-handler": "^5.0.2",
|
|
37
|
+
"@smithy/hash-node": "^4.0.2",
|
|
38
|
+
"@smithy/invalid-dependency": "^4.0.2",
|
|
39
|
+
"@smithy/middleware-content-length": "^4.0.2",
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.1.0",
|
|
41
|
+
"@smithy/middleware-retry": "^4.1.0",
|
|
42
|
+
"@smithy/middleware-serde": "^4.0.3",
|
|
43
|
+
"@smithy/middleware-stack": "^4.0.2",
|
|
44
|
+
"@smithy/node-config-provider": "^4.0.2",
|
|
45
|
+
"@smithy/node-http-handler": "^4.0.4",
|
|
46
|
+
"@smithy/protocol-http": "^5.1.0",
|
|
47
|
+
"@smithy/smithy-client": "^4.2.0",
|
|
48
|
+
"@smithy/types": "^4.2.0",
|
|
49
|
+
"@smithy/url-parser": "^4.0.2",
|
|
50
50
|
"@smithy/util-base64": "^4.0.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.0.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.0.0",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.0.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.0.
|
|
55
|
-
"@smithy/util-endpoints": "^3.0.
|
|
56
|
-
"@smithy/util-middleware": "^4.0.
|
|
57
|
-
"@smithy/util-retry": "^4.0.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.0.8",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.0.8",
|
|
55
|
+
"@smithy/util-endpoints": "^3.0.2",
|
|
56
|
+
"@smithy/util-middleware": "^4.0.2",
|
|
57
|
+
"@smithy/util-retry": "^4.0.2",
|
|
58
58
|
"@smithy/util-utf8": "^4.0.0",
|
|
59
|
-
"@smithy/util-waiter": "^4.0.
|
|
59
|
+
"@smithy/util-waiter": "^4.0.3",
|
|
60
60
|
"tslib": "^2.6.2"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|