@aws-sdk/client-mediaconnect 3.1018.0 → 3.1020.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 +2 -2
- package/dist-cjs/runtimeConfig.js +4 -3
- package/dist-cjs/runtimeConfig.shared.js +2 -2
- package/dist-es/MediaConnect.js +5 -5
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-es/runtimeConfig.js +2 -1
- package/dist-es/runtimeConfig.shared.js +1 -1
- package/dist-es/waiters/waitForFlowActive.js +1 -1
- package/dist-es/waiters/waitForFlowDeleted.js +1 -1
- package/dist-es/waiters/waitForFlowStandby.js +1 -1
- package/dist-es/waiters/waitForInputActive.js +1 -1
- package/dist-es/waiters/waitForInputDeleted.js +1 -1
- package/dist-es/waiters/waitForInputStandby.js +1 -1
- package/dist-es/waiters/waitForOutputActive.js +1 -1
- package/dist-es/waiters/waitForOutputDeleted.js +1 -1
- package/dist-es/waiters/waitForOutputRouted.js +1 -1
- package/dist-es/waiters/waitForOutputStandby.js +1 -1
- package/dist-es/waiters/waitForOutputUnrouted.js +1 -1
- package/dist-types/MediaConnect.d.ts +82 -82
- package/dist-types/MediaConnectClient.d.ts +85 -85
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +1 -1
- package/dist-types/models/models_1.d.ts +1 -1
- package/dist-types/pagination/ListBridgesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListEntitlementsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListFlowsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListGatewayInstancesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListGatewaysPaginator.d.ts +1 -1
- package/dist-types/pagination/ListOfferingsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListReservationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListRouterInputsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListRouterNetworkInterfacesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListRouterOutputsPaginator.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/MediaConnectClient.d.ts +2 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/dist-types/waiters/waitForFlowActive.d.ts +3 -3
- package/dist-types/waiters/waitForFlowDeleted.d.ts +3 -3
- package/dist-types/waiters/waitForFlowStandby.d.ts +3 -3
- package/dist-types/waiters/waitForInputActive.d.ts +3 -3
- package/dist-types/waiters/waitForInputDeleted.d.ts +3 -3
- package/dist-types/waiters/waitForInputStandby.d.ts +3 -3
- package/dist-types/waiters/waitForOutputActive.d.ts +3 -3
- package/dist-types/waiters/waitForOutputDeleted.d.ts +3 -3
- package/dist-types/waiters/waitForOutputRouted.d.ts +3 -3
- package/dist-types/waiters/waitForOutputStandby.d.ts +3 -3
- package/dist-types/waiters/waitForOutputUnrouted.d.ts +3 -3
- package/package.json +14 -14
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.resolveHttpAuthSchemeConfig = exports.defaultMediaConnectHttpAuthSchemeProvider = exports.defaultMediaConnectHttpAuthSchemeParametersProvider = void 0;
|
|
4
|
-
const
|
|
4
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const util_middleware_1 = require("@smithy/util-middleware");
|
|
6
6
|
const defaultMediaConnectHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
7
7
|
return {
|
|
@@ -38,7 +38,7 @@ const defaultMediaConnectHttpAuthSchemeProvider = (authParameters) => {
|
|
|
38
38
|
};
|
|
39
39
|
exports.defaultMediaConnectHttpAuthSchemeProvider = defaultMediaConnectHttpAuthSchemeProvider;
|
|
40
40
|
const resolveHttpAuthSchemeConfig = (config) => {
|
|
41
|
-
const config_0 = (0,
|
|
41
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
42
42
|
return Object.assign(config_0, {
|
|
43
43
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? []),
|
|
44
44
|
});
|
|
@@ -3,7 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const package_json_1 = tslib_1.__importDefault(require("../package.json"));
|
|
6
|
-
const
|
|
6
|
+
const client_1 = require("@aws-sdk/core/client");
|
|
7
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
7
8
|
const credential_provider_node_1 = require("@aws-sdk/credential-provider-node");
|
|
8
9
|
const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
|
|
9
10
|
const config_resolver_1 = require("@smithy/config-resolver");
|
|
@@ -21,7 +22,7 @@ const getRuntimeConfig = (config) => {
|
|
|
21
22
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
22
23
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
23
24
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
24
|
-
(0,
|
|
25
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
25
26
|
const loaderConfig = {
|
|
26
27
|
profile: config?.profile,
|
|
27
28
|
logger: clientSharedValues.logger,
|
|
@@ -31,7 +32,7 @@ const getRuntimeConfig = (config) => {
|
|
|
31
32
|
...config,
|
|
32
33
|
runtime: "node",
|
|
33
34
|
defaultsMode,
|
|
34
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
35
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
35
36
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
36
37
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
37
38
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
|
-
const
|
|
4
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const protocols_1 = require("@aws-sdk/core/protocols");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
const url_parser_1 = require("@smithy/url-parser");
|
|
@@ -23,7 +23,7 @@ const getRuntimeConfig = (config) => {
|
|
|
23
23
|
{
|
|
24
24
|
schemeId: "aws.auth#sigv4",
|
|
25
25
|
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
26
|
-
signer: new
|
|
26
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer(),
|
|
27
27
|
},
|
|
28
28
|
],
|
|
29
29
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
package/dist-es/MediaConnect.js
CHANGED
|
@@ -9,13 +9,13 @@ import { BatchGetRouterInputCommand, } from "./commands/BatchGetRouterInputComma
|
|
|
9
9
|
import { BatchGetRouterNetworkInterfaceCommand, } from "./commands/BatchGetRouterNetworkInterfaceCommand";
|
|
10
10
|
import { BatchGetRouterOutputCommand, } from "./commands/BatchGetRouterOutputCommand";
|
|
11
11
|
import { CreateBridgeCommand, } from "./commands/CreateBridgeCommand";
|
|
12
|
-
import { CreateFlowCommand } from "./commands/CreateFlowCommand";
|
|
12
|
+
import { CreateFlowCommand, } from "./commands/CreateFlowCommand";
|
|
13
13
|
import { CreateGatewayCommand, } from "./commands/CreateGatewayCommand";
|
|
14
14
|
import { CreateRouterInputCommand, } from "./commands/CreateRouterInputCommand";
|
|
15
15
|
import { CreateRouterNetworkInterfaceCommand, } from "./commands/CreateRouterNetworkInterfaceCommand";
|
|
16
16
|
import { CreateRouterOutputCommand, } from "./commands/CreateRouterOutputCommand";
|
|
17
17
|
import { DeleteBridgeCommand, } from "./commands/DeleteBridgeCommand";
|
|
18
|
-
import { DeleteFlowCommand } from "./commands/DeleteFlowCommand";
|
|
18
|
+
import { DeleteFlowCommand, } from "./commands/DeleteFlowCommand";
|
|
19
19
|
import { DeleteGatewayCommand, } from "./commands/DeleteGatewayCommand";
|
|
20
20
|
import { DeleteRouterInputCommand, } from "./commands/DeleteRouterInputCommand";
|
|
21
21
|
import { DeleteRouterNetworkInterfaceCommand, } from "./commands/DeleteRouterNetworkInterfaceCommand";
|
|
@@ -35,7 +35,7 @@ import { GetRouterInputThumbnailCommand, } from "./commands/GetRouterInputThumbn
|
|
|
35
35
|
import { GetRouterNetworkInterfaceCommand, } from "./commands/GetRouterNetworkInterfaceCommand";
|
|
36
36
|
import { GetRouterOutputCommand, } from "./commands/GetRouterOutputCommand";
|
|
37
37
|
import { GrantFlowEntitlementsCommand, } from "./commands/GrantFlowEntitlementsCommand";
|
|
38
|
-
import { ListBridgesCommand } from "./commands/ListBridgesCommand";
|
|
38
|
+
import { ListBridgesCommand, } from "./commands/ListBridgesCommand";
|
|
39
39
|
import { ListEntitlementsCommand, } from "./commands/ListEntitlementsCommand";
|
|
40
40
|
import { ListFlowsCommand } from "./commands/ListFlowsCommand";
|
|
41
41
|
import { ListGatewayInstancesCommand, } from "./commands/ListGatewayInstancesCommand";
|
|
@@ -64,7 +64,7 @@ import { StopFlowCommand } from "./commands/StopFlowCommand";
|
|
|
64
64
|
import { StopRouterInputCommand, } from "./commands/StopRouterInputCommand";
|
|
65
65
|
import { StopRouterOutputCommand, } from "./commands/StopRouterOutputCommand";
|
|
66
66
|
import { TagGlobalResourceCommand, } from "./commands/TagGlobalResourceCommand";
|
|
67
|
-
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
67
|
+
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
68
68
|
import { TakeRouterInputCommand, } from "./commands/TakeRouterInputCommand";
|
|
69
69
|
import { UntagGlobalResourceCommand, } from "./commands/UntagGlobalResourceCommand";
|
|
70
70
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
@@ -72,7 +72,7 @@ import { UpdateBridgeCommand, } from "./commands/UpdateBridgeCommand";
|
|
|
72
72
|
import { UpdateBridgeOutputCommand, } from "./commands/UpdateBridgeOutputCommand";
|
|
73
73
|
import { UpdateBridgeSourceCommand, } from "./commands/UpdateBridgeSourceCommand";
|
|
74
74
|
import { UpdateBridgeStateCommand, } from "./commands/UpdateBridgeStateCommand";
|
|
75
|
-
import { UpdateFlowCommand } from "./commands/UpdateFlowCommand";
|
|
75
|
+
import { UpdateFlowCommand, } from "./commands/UpdateFlowCommand";
|
|
76
76
|
import { UpdateFlowEntitlementCommand, } from "./commands/UpdateFlowEntitlementCommand";
|
|
77
77
|
import { UpdateFlowMediaStreamCommand, } from "./commands/UpdateFlowMediaStreamCommand";
|
|
78
78
|
import { UpdateFlowOutputCommand, } from "./commands/UpdateFlowOutputCommand";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
|
|
1
|
+
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
|
|
3
3
|
export const defaultMediaConnectHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
4
4
|
return {
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import { emitWarningIfUnsupportedVersion as awsCheckVersion
|
|
2
|
+
import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core/client";
|
|
3
|
+
import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core/httpAuthSchemes";
|
|
3
4
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
4
5
|
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
5
6
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
|
|
3
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
4
4
|
import { parseUrl } from "@smithy/url-parser";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { DescribeFlowCommand } from "../commands/DescribeFlowCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { DescribeFlowCommand } from "../commands/DescribeFlowCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { DescribeFlowCommand } from "../commands/DescribeFlowCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { GetRouterInputCommand } from "../commands/GetRouterInputCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { GetRouterInputCommand } from "../commands/GetRouterInputCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { GetRouterInputCommand } from "../commands/GetRouterInputCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { GetRouterOutputCommand } from "../commands/GetRouterOutputCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { GetRouterOutputCommand } from "../commands/GetRouterOutputCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { GetRouterOutputCommand } from "../commands/GetRouterOutputCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { GetRouterOutputCommand } from "../commands/GetRouterOutputCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { GetRouterOutputCommand } from "../commands/GetRouterOutputCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,87 +1,87 @@
|
|
|
1
1
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
2
2
|
import type { WaiterResult } from "@smithy/util-waiter";
|
|
3
|
-
import { AddBridgeOutputsCommandInput, AddBridgeOutputsCommandOutput } from "./commands/AddBridgeOutputsCommand";
|
|
4
|
-
import { AddBridgeSourcesCommandInput, AddBridgeSourcesCommandOutput } from "./commands/AddBridgeSourcesCommand";
|
|
5
|
-
import { AddFlowMediaStreamsCommandInput, AddFlowMediaStreamsCommandOutput } from "./commands/AddFlowMediaStreamsCommand";
|
|
6
|
-
import { AddFlowOutputsCommandInput, AddFlowOutputsCommandOutput } from "./commands/AddFlowOutputsCommand";
|
|
7
|
-
import { AddFlowSourcesCommandInput, AddFlowSourcesCommandOutput } from "./commands/AddFlowSourcesCommand";
|
|
8
|
-
import { AddFlowVpcInterfacesCommandInput, AddFlowVpcInterfacesCommandOutput } from "./commands/AddFlowVpcInterfacesCommand";
|
|
9
|
-
import { BatchGetRouterInputCommandInput, BatchGetRouterInputCommandOutput } from "./commands/BatchGetRouterInputCommand";
|
|
10
|
-
import { BatchGetRouterNetworkInterfaceCommandInput, BatchGetRouterNetworkInterfaceCommandOutput } from "./commands/BatchGetRouterNetworkInterfaceCommand";
|
|
11
|
-
import { BatchGetRouterOutputCommandInput, BatchGetRouterOutputCommandOutput } from "./commands/BatchGetRouterOutputCommand";
|
|
12
|
-
import { CreateBridgeCommandInput, CreateBridgeCommandOutput } from "./commands/CreateBridgeCommand";
|
|
13
|
-
import { CreateFlowCommandInput, CreateFlowCommandOutput } from "./commands/CreateFlowCommand";
|
|
14
|
-
import { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "./commands/CreateGatewayCommand";
|
|
15
|
-
import { CreateRouterInputCommandInput, CreateRouterInputCommandOutput } from "./commands/CreateRouterInputCommand";
|
|
16
|
-
import { CreateRouterNetworkInterfaceCommandInput, CreateRouterNetworkInterfaceCommandOutput } from "./commands/CreateRouterNetworkInterfaceCommand";
|
|
17
|
-
import { CreateRouterOutputCommandInput, CreateRouterOutputCommandOutput } from "./commands/CreateRouterOutputCommand";
|
|
18
|
-
import { DeleteBridgeCommandInput, DeleteBridgeCommandOutput } from "./commands/DeleteBridgeCommand";
|
|
19
|
-
import { DeleteFlowCommandInput, DeleteFlowCommandOutput } from "./commands/DeleteFlowCommand";
|
|
20
|
-
import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
|
|
21
|
-
import { DeleteRouterInputCommandInput, DeleteRouterInputCommandOutput } from "./commands/DeleteRouterInputCommand";
|
|
22
|
-
import { DeleteRouterNetworkInterfaceCommandInput, DeleteRouterNetworkInterfaceCommandOutput } from "./commands/DeleteRouterNetworkInterfaceCommand";
|
|
23
|
-
import { DeleteRouterOutputCommandInput, DeleteRouterOutputCommandOutput } from "./commands/DeleteRouterOutputCommand";
|
|
24
|
-
import { DeregisterGatewayInstanceCommandInput, DeregisterGatewayInstanceCommandOutput } from "./commands/DeregisterGatewayInstanceCommand";
|
|
25
|
-
import { DescribeBridgeCommandInput, DescribeBridgeCommandOutput } from "./commands/DescribeBridgeCommand";
|
|
26
|
-
import { DescribeFlowCommandInput, DescribeFlowCommandOutput } from "./commands/DescribeFlowCommand";
|
|
27
|
-
import { DescribeFlowSourceMetadataCommandInput, DescribeFlowSourceMetadataCommandOutput } from "./commands/DescribeFlowSourceMetadataCommand";
|
|
28
|
-
import { DescribeFlowSourceThumbnailCommandInput, DescribeFlowSourceThumbnailCommandOutput } from "./commands/DescribeFlowSourceThumbnailCommand";
|
|
29
|
-
import { DescribeGatewayCommandInput, DescribeGatewayCommandOutput } from "./commands/DescribeGatewayCommand";
|
|
30
|
-
import { DescribeGatewayInstanceCommandInput, DescribeGatewayInstanceCommandOutput } from "./commands/DescribeGatewayInstanceCommand";
|
|
31
|
-
import { DescribeOfferingCommandInput, DescribeOfferingCommandOutput } from "./commands/DescribeOfferingCommand";
|
|
32
|
-
import { DescribeReservationCommandInput, DescribeReservationCommandOutput } from "./commands/DescribeReservationCommand";
|
|
33
|
-
import { GetRouterInputCommandInput, GetRouterInputCommandOutput } from "./commands/GetRouterInputCommand";
|
|
34
|
-
import { GetRouterInputSourceMetadataCommandInput, GetRouterInputSourceMetadataCommandOutput } from "./commands/GetRouterInputSourceMetadataCommand";
|
|
35
|
-
import { GetRouterInputThumbnailCommandInput, GetRouterInputThumbnailCommandOutput } from "./commands/GetRouterInputThumbnailCommand";
|
|
36
|
-
import { GetRouterNetworkInterfaceCommandInput, GetRouterNetworkInterfaceCommandOutput } from "./commands/GetRouterNetworkInterfaceCommand";
|
|
37
|
-
import { GetRouterOutputCommandInput, GetRouterOutputCommandOutput } from "./commands/GetRouterOutputCommand";
|
|
38
|
-
import { GrantFlowEntitlementsCommandInput, GrantFlowEntitlementsCommandOutput } from "./commands/GrantFlowEntitlementsCommand";
|
|
39
|
-
import { ListBridgesCommandInput, ListBridgesCommandOutput } from "./commands/ListBridgesCommand";
|
|
40
|
-
import { ListEntitlementsCommandInput, ListEntitlementsCommandOutput } from "./commands/ListEntitlementsCommand";
|
|
41
|
-
import { ListFlowsCommandInput, ListFlowsCommandOutput } from "./commands/ListFlowsCommand";
|
|
42
|
-
import { ListGatewayInstancesCommandInput, ListGatewayInstancesCommandOutput } from "./commands/ListGatewayInstancesCommand";
|
|
43
|
-
import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
|
|
44
|
-
import { ListOfferingsCommandInput, ListOfferingsCommandOutput } from "./commands/ListOfferingsCommand";
|
|
45
|
-
import { ListReservationsCommandInput, ListReservationsCommandOutput } from "./commands/ListReservationsCommand";
|
|
46
|
-
import { ListRouterInputsCommandInput, ListRouterInputsCommandOutput } from "./commands/ListRouterInputsCommand";
|
|
47
|
-
import { ListRouterNetworkInterfacesCommandInput, ListRouterNetworkInterfacesCommandOutput } from "./commands/ListRouterNetworkInterfacesCommand";
|
|
48
|
-
import { ListRouterOutputsCommandInput, ListRouterOutputsCommandOutput } from "./commands/ListRouterOutputsCommand";
|
|
49
|
-
import { ListTagsForGlobalResourceCommandInput, ListTagsForGlobalResourceCommandOutput } from "./commands/ListTagsForGlobalResourceCommand";
|
|
50
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
51
|
-
import { PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput } from "./commands/PurchaseOfferingCommand";
|
|
52
|
-
import { RemoveBridgeOutputCommandInput, RemoveBridgeOutputCommandOutput } from "./commands/RemoveBridgeOutputCommand";
|
|
53
|
-
import { RemoveBridgeSourceCommandInput, RemoveBridgeSourceCommandOutput } from "./commands/RemoveBridgeSourceCommand";
|
|
54
|
-
import { RemoveFlowMediaStreamCommandInput, RemoveFlowMediaStreamCommandOutput } from "./commands/RemoveFlowMediaStreamCommand";
|
|
55
|
-
import { RemoveFlowOutputCommandInput, RemoveFlowOutputCommandOutput } from "./commands/RemoveFlowOutputCommand";
|
|
56
|
-
import { RemoveFlowSourceCommandInput, RemoveFlowSourceCommandOutput } from "./commands/RemoveFlowSourceCommand";
|
|
57
|
-
import { RemoveFlowVpcInterfaceCommandInput, RemoveFlowVpcInterfaceCommandOutput } from "./commands/RemoveFlowVpcInterfaceCommand";
|
|
58
|
-
import { RestartRouterInputCommandInput, RestartRouterInputCommandOutput } from "./commands/RestartRouterInputCommand";
|
|
59
|
-
import { RestartRouterOutputCommandInput, RestartRouterOutputCommandOutput } from "./commands/RestartRouterOutputCommand";
|
|
60
|
-
import { RevokeFlowEntitlementCommandInput, RevokeFlowEntitlementCommandOutput } from "./commands/RevokeFlowEntitlementCommand";
|
|
61
|
-
import { StartFlowCommandInput, StartFlowCommandOutput } from "./commands/StartFlowCommand";
|
|
62
|
-
import { StartRouterInputCommandInput, StartRouterInputCommandOutput } from "./commands/StartRouterInputCommand";
|
|
63
|
-
import { StartRouterOutputCommandInput, StartRouterOutputCommandOutput } from "./commands/StartRouterOutputCommand";
|
|
64
|
-
import { StopFlowCommandInput, StopFlowCommandOutput } from "./commands/StopFlowCommand";
|
|
65
|
-
import { StopRouterInputCommandInput, StopRouterInputCommandOutput } from "./commands/StopRouterInputCommand";
|
|
66
|
-
import { StopRouterOutputCommandInput, StopRouterOutputCommandOutput } from "./commands/StopRouterOutputCommand";
|
|
67
|
-
import { TagGlobalResourceCommandInput, TagGlobalResourceCommandOutput } from "./commands/TagGlobalResourceCommand";
|
|
68
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
69
|
-
import { TakeRouterInputCommandInput, TakeRouterInputCommandOutput } from "./commands/TakeRouterInputCommand";
|
|
70
|
-
import { UntagGlobalResourceCommandInput, UntagGlobalResourceCommandOutput } from "./commands/UntagGlobalResourceCommand";
|
|
71
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
72
|
-
import { UpdateBridgeCommandInput, UpdateBridgeCommandOutput } from "./commands/UpdateBridgeCommand";
|
|
73
|
-
import { UpdateBridgeOutputCommandInput, UpdateBridgeOutputCommandOutput } from "./commands/UpdateBridgeOutputCommand";
|
|
74
|
-
import { UpdateBridgeSourceCommandInput, UpdateBridgeSourceCommandOutput } from "./commands/UpdateBridgeSourceCommand";
|
|
75
|
-
import { UpdateBridgeStateCommandInput, UpdateBridgeStateCommandOutput } from "./commands/UpdateBridgeStateCommand";
|
|
76
|
-
import { UpdateFlowCommandInput, UpdateFlowCommandOutput } from "./commands/UpdateFlowCommand";
|
|
77
|
-
import { UpdateFlowEntitlementCommandInput, UpdateFlowEntitlementCommandOutput } from "./commands/UpdateFlowEntitlementCommand";
|
|
78
|
-
import { UpdateFlowMediaStreamCommandInput, UpdateFlowMediaStreamCommandOutput } from "./commands/UpdateFlowMediaStreamCommand";
|
|
79
|
-
import { UpdateFlowOutputCommandInput, UpdateFlowOutputCommandOutput } from "./commands/UpdateFlowOutputCommand";
|
|
80
|
-
import { UpdateFlowSourceCommandInput, UpdateFlowSourceCommandOutput } from "./commands/UpdateFlowSourceCommand";
|
|
81
|
-
import { UpdateGatewayInstanceCommandInput, UpdateGatewayInstanceCommandOutput } from "./commands/UpdateGatewayInstanceCommand";
|
|
82
|
-
import { UpdateRouterInputCommandInput, UpdateRouterInputCommandOutput } from "./commands/UpdateRouterInputCommand";
|
|
83
|
-
import { UpdateRouterNetworkInterfaceCommandInput, UpdateRouterNetworkInterfaceCommandOutput } from "./commands/UpdateRouterNetworkInterfaceCommand";
|
|
84
|
-
import { UpdateRouterOutputCommandInput, UpdateRouterOutputCommandOutput } from "./commands/UpdateRouterOutputCommand";
|
|
3
|
+
import { type AddBridgeOutputsCommandInput, type AddBridgeOutputsCommandOutput } from "./commands/AddBridgeOutputsCommand";
|
|
4
|
+
import { type AddBridgeSourcesCommandInput, type AddBridgeSourcesCommandOutput } from "./commands/AddBridgeSourcesCommand";
|
|
5
|
+
import { type AddFlowMediaStreamsCommandInput, type AddFlowMediaStreamsCommandOutput } from "./commands/AddFlowMediaStreamsCommand";
|
|
6
|
+
import { type AddFlowOutputsCommandInput, type AddFlowOutputsCommandOutput } from "./commands/AddFlowOutputsCommand";
|
|
7
|
+
import { type AddFlowSourcesCommandInput, type AddFlowSourcesCommandOutput } from "./commands/AddFlowSourcesCommand";
|
|
8
|
+
import { type AddFlowVpcInterfacesCommandInput, type AddFlowVpcInterfacesCommandOutput } from "./commands/AddFlowVpcInterfacesCommand";
|
|
9
|
+
import { type BatchGetRouterInputCommandInput, type BatchGetRouterInputCommandOutput } from "./commands/BatchGetRouterInputCommand";
|
|
10
|
+
import { type BatchGetRouterNetworkInterfaceCommandInput, type BatchGetRouterNetworkInterfaceCommandOutput } from "./commands/BatchGetRouterNetworkInterfaceCommand";
|
|
11
|
+
import { type BatchGetRouterOutputCommandInput, type BatchGetRouterOutputCommandOutput } from "./commands/BatchGetRouterOutputCommand";
|
|
12
|
+
import { type CreateBridgeCommandInput, type CreateBridgeCommandOutput } from "./commands/CreateBridgeCommand";
|
|
13
|
+
import { type CreateFlowCommandInput, type CreateFlowCommandOutput } from "./commands/CreateFlowCommand";
|
|
14
|
+
import { type CreateGatewayCommandInput, type CreateGatewayCommandOutput } from "./commands/CreateGatewayCommand";
|
|
15
|
+
import { type CreateRouterInputCommandInput, type CreateRouterInputCommandOutput } from "./commands/CreateRouterInputCommand";
|
|
16
|
+
import { type CreateRouterNetworkInterfaceCommandInput, type CreateRouterNetworkInterfaceCommandOutput } from "./commands/CreateRouterNetworkInterfaceCommand";
|
|
17
|
+
import { type CreateRouterOutputCommandInput, type CreateRouterOutputCommandOutput } from "./commands/CreateRouterOutputCommand";
|
|
18
|
+
import { type DeleteBridgeCommandInput, type DeleteBridgeCommandOutput } from "./commands/DeleteBridgeCommand";
|
|
19
|
+
import { type DeleteFlowCommandInput, type DeleteFlowCommandOutput } from "./commands/DeleteFlowCommand";
|
|
20
|
+
import { type DeleteGatewayCommandInput, type DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
|
|
21
|
+
import { type DeleteRouterInputCommandInput, type DeleteRouterInputCommandOutput } from "./commands/DeleteRouterInputCommand";
|
|
22
|
+
import { type DeleteRouterNetworkInterfaceCommandInput, type DeleteRouterNetworkInterfaceCommandOutput } from "./commands/DeleteRouterNetworkInterfaceCommand";
|
|
23
|
+
import { type DeleteRouterOutputCommandInput, type DeleteRouterOutputCommandOutput } from "./commands/DeleteRouterOutputCommand";
|
|
24
|
+
import { type DeregisterGatewayInstanceCommandInput, type DeregisterGatewayInstanceCommandOutput } from "./commands/DeregisterGatewayInstanceCommand";
|
|
25
|
+
import { type DescribeBridgeCommandInput, type DescribeBridgeCommandOutput } from "./commands/DescribeBridgeCommand";
|
|
26
|
+
import { type DescribeFlowCommandInput, type DescribeFlowCommandOutput } from "./commands/DescribeFlowCommand";
|
|
27
|
+
import { type DescribeFlowSourceMetadataCommandInput, type DescribeFlowSourceMetadataCommandOutput } from "./commands/DescribeFlowSourceMetadataCommand";
|
|
28
|
+
import { type DescribeFlowSourceThumbnailCommandInput, type DescribeFlowSourceThumbnailCommandOutput } from "./commands/DescribeFlowSourceThumbnailCommand";
|
|
29
|
+
import { type DescribeGatewayCommandInput, type DescribeGatewayCommandOutput } from "./commands/DescribeGatewayCommand";
|
|
30
|
+
import { type DescribeGatewayInstanceCommandInput, type DescribeGatewayInstanceCommandOutput } from "./commands/DescribeGatewayInstanceCommand";
|
|
31
|
+
import { type DescribeOfferingCommandInput, type DescribeOfferingCommandOutput } from "./commands/DescribeOfferingCommand";
|
|
32
|
+
import { type DescribeReservationCommandInput, type DescribeReservationCommandOutput } from "./commands/DescribeReservationCommand";
|
|
33
|
+
import { type GetRouterInputCommandInput, type GetRouterInputCommandOutput } from "./commands/GetRouterInputCommand";
|
|
34
|
+
import { type GetRouterInputSourceMetadataCommandInput, type GetRouterInputSourceMetadataCommandOutput } from "./commands/GetRouterInputSourceMetadataCommand";
|
|
35
|
+
import { type GetRouterInputThumbnailCommandInput, type GetRouterInputThumbnailCommandOutput } from "./commands/GetRouterInputThumbnailCommand";
|
|
36
|
+
import { type GetRouterNetworkInterfaceCommandInput, type GetRouterNetworkInterfaceCommandOutput } from "./commands/GetRouterNetworkInterfaceCommand";
|
|
37
|
+
import { type GetRouterOutputCommandInput, type GetRouterOutputCommandOutput } from "./commands/GetRouterOutputCommand";
|
|
38
|
+
import { type GrantFlowEntitlementsCommandInput, type GrantFlowEntitlementsCommandOutput } from "./commands/GrantFlowEntitlementsCommand";
|
|
39
|
+
import { type ListBridgesCommandInput, type ListBridgesCommandOutput } from "./commands/ListBridgesCommand";
|
|
40
|
+
import { type ListEntitlementsCommandInput, type ListEntitlementsCommandOutput } from "./commands/ListEntitlementsCommand";
|
|
41
|
+
import { type ListFlowsCommandInput, type ListFlowsCommandOutput } from "./commands/ListFlowsCommand";
|
|
42
|
+
import { type ListGatewayInstancesCommandInput, type ListGatewayInstancesCommandOutput } from "./commands/ListGatewayInstancesCommand";
|
|
43
|
+
import { type ListGatewaysCommandInput, type ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
|
|
44
|
+
import { type ListOfferingsCommandInput, type ListOfferingsCommandOutput } from "./commands/ListOfferingsCommand";
|
|
45
|
+
import { type ListReservationsCommandInput, type ListReservationsCommandOutput } from "./commands/ListReservationsCommand";
|
|
46
|
+
import { type ListRouterInputsCommandInput, type ListRouterInputsCommandOutput } from "./commands/ListRouterInputsCommand";
|
|
47
|
+
import { type ListRouterNetworkInterfacesCommandInput, type ListRouterNetworkInterfacesCommandOutput } from "./commands/ListRouterNetworkInterfacesCommand";
|
|
48
|
+
import { type ListRouterOutputsCommandInput, type ListRouterOutputsCommandOutput } from "./commands/ListRouterOutputsCommand";
|
|
49
|
+
import { type ListTagsForGlobalResourceCommandInput, type ListTagsForGlobalResourceCommandOutput } from "./commands/ListTagsForGlobalResourceCommand";
|
|
50
|
+
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
51
|
+
import { type PurchaseOfferingCommandInput, type PurchaseOfferingCommandOutput } from "./commands/PurchaseOfferingCommand";
|
|
52
|
+
import { type RemoveBridgeOutputCommandInput, type RemoveBridgeOutputCommandOutput } from "./commands/RemoveBridgeOutputCommand";
|
|
53
|
+
import { type RemoveBridgeSourceCommandInput, type RemoveBridgeSourceCommandOutput } from "./commands/RemoveBridgeSourceCommand";
|
|
54
|
+
import { type RemoveFlowMediaStreamCommandInput, type RemoveFlowMediaStreamCommandOutput } from "./commands/RemoveFlowMediaStreamCommand";
|
|
55
|
+
import { type RemoveFlowOutputCommandInput, type RemoveFlowOutputCommandOutput } from "./commands/RemoveFlowOutputCommand";
|
|
56
|
+
import { type RemoveFlowSourceCommandInput, type RemoveFlowSourceCommandOutput } from "./commands/RemoveFlowSourceCommand";
|
|
57
|
+
import { type RemoveFlowVpcInterfaceCommandInput, type RemoveFlowVpcInterfaceCommandOutput } from "./commands/RemoveFlowVpcInterfaceCommand";
|
|
58
|
+
import { type RestartRouterInputCommandInput, type RestartRouterInputCommandOutput } from "./commands/RestartRouterInputCommand";
|
|
59
|
+
import { type RestartRouterOutputCommandInput, type RestartRouterOutputCommandOutput } from "./commands/RestartRouterOutputCommand";
|
|
60
|
+
import { type RevokeFlowEntitlementCommandInput, type RevokeFlowEntitlementCommandOutput } from "./commands/RevokeFlowEntitlementCommand";
|
|
61
|
+
import { type StartFlowCommandInput, type StartFlowCommandOutput } from "./commands/StartFlowCommand";
|
|
62
|
+
import { type StartRouterInputCommandInput, type StartRouterInputCommandOutput } from "./commands/StartRouterInputCommand";
|
|
63
|
+
import { type StartRouterOutputCommandInput, type StartRouterOutputCommandOutput } from "./commands/StartRouterOutputCommand";
|
|
64
|
+
import { type StopFlowCommandInput, type StopFlowCommandOutput } from "./commands/StopFlowCommand";
|
|
65
|
+
import { type StopRouterInputCommandInput, type StopRouterInputCommandOutput } from "./commands/StopRouterInputCommand";
|
|
66
|
+
import { type StopRouterOutputCommandInput, type StopRouterOutputCommandOutput } from "./commands/StopRouterOutputCommand";
|
|
67
|
+
import { type TagGlobalResourceCommandInput, type TagGlobalResourceCommandOutput } from "./commands/TagGlobalResourceCommand";
|
|
68
|
+
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
69
|
+
import { type TakeRouterInputCommandInput, type TakeRouterInputCommandOutput } from "./commands/TakeRouterInputCommand";
|
|
70
|
+
import { type UntagGlobalResourceCommandInput, type UntagGlobalResourceCommandOutput } from "./commands/UntagGlobalResourceCommand";
|
|
71
|
+
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
72
|
+
import { type UpdateBridgeCommandInput, type UpdateBridgeCommandOutput } from "./commands/UpdateBridgeCommand";
|
|
73
|
+
import { type UpdateBridgeOutputCommandInput, type UpdateBridgeOutputCommandOutput } from "./commands/UpdateBridgeOutputCommand";
|
|
74
|
+
import { type UpdateBridgeSourceCommandInput, type UpdateBridgeSourceCommandOutput } from "./commands/UpdateBridgeSourceCommand";
|
|
75
|
+
import { type UpdateBridgeStateCommandInput, type UpdateBridgeStateCommandOutput } from "./commands/UpdateBridgeStateCommand";
|
|
76
|
+
import { type UpdateFlowCommandInput, type UpdateFlowCommandOutput } from "./commands/UpdateFlowCommand";
|
|
77
|
+
import { type UpdateFlowEntitlementCommandInput, type UpdateFlowEntitlementCommandOutput } from "./commands/UpdateFlowEntitlementCommand";
|
|
78
|
+
import { type UpdateFlowMediaStreamCommandInput, type UpdateFlowMediaStreamCommandOutput } from "./commands/UpdateFlowMediaStreamCommand";
|
|
79
|
+
import { type UpdateFlowOutputCommandInput, type UpdateFlowOutputCommandOutput } from "./commands/UpdateFlowOutputCommand";
|
|
80
|
+
import { type UpdateFlowSourceCommandInput, type UpdateFlowSourceCommandOutput } from "./commands/UpdateFlowSourceCommand";
|
|
81
|
+
import { type UpdateGatewayInstanceCommandInput, type UpdateGatewayInstanceCommandOutput } from "./commands/UpdateGatewayInstanceCommand";
|
|
82
|
+
import { type UpdateRouterInputCommandInput, type UpdateRouterInputCommandOutput } from "./commands/UpdateRouterInputCommand";
|
|
83
|
+
import { type UpdateRouterNetworkInterfaceCommandInput, type UpdateRouterNetworkInterfaceCommandOutput } from "./commands/UpdateRouterNetworkInterfaceCommand";
|
|
84
|
+
import { type UpdateRouterOutputCommandInput, type UpdateRouterOutputCommandOutput } from "./commands/UpdateRouterOutputCommand";
|
|
85
85
|
import { MediaConnectClient } from "./MediaConnectClient";
|
|
86
86
|
export interface MediaConnect {
|
|
87
87
|
/**
|
|
@@ -5,91 +5,91 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
5
5
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
8
|
-
import {
|
|
8
|
+
import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
|
-
import { AddBridgeOutputsCommandInput, AddBridgeOutputsCommandOutput } from "./commands/AddBridgeOutputsCommand";
|
|
11
|
-
import { AddBridgeSourcesCommandInput, AddBridgeSourcesCommandOutput } from "./commands/AddBridgeSourcesCommand";
|
|
12
|
-
import { AddFlowMediaStreamsCommandInput, AddFlowMediaStreamsCommandOutput } from "./commands/AddFlowMediaStreamsCommand";
|
|
13
|
-
import { AddFlowOutputsCommandInput, AddFlowOutputsCommandOutput } from "./commands/AddFlowOutputsCommand";
|
|
14
|
-
import { AddFlowSourcesCommandInput, AddFlowSourcesCommandOutput } from "./commands/AddFlowSourcesCommand";
|
|
15
|
-
import { AddFlowVpcInterfacesCommandInput, AddFlowVpcInterfacesCommandOutput } from "./commands/AddFlowVpcInterfacesCommand";
|
|
16
|
-
import { BatchGetRouterInputCommandInput, BatchGetRouterInputCommandOutput } from "./commands/BatchGetRouterInputCommand";
|
|
17
|
-
import { BatchGetRouterNetworkInterfaceCommandInput, BatchGetRouterNetworkInterfaceCommandOutput } from "./commands/BatchGetRouterNetworkInterfaceCommand";
|
|
18
|
-
import { BatchGetRouterOutputCommandInput, BatchGetRouterOutputCommandOutput } from "./commands/BatchGetRouterOutputCommand";
|
|
19
|
-
import { CreateBridgeCommandInput, CreateBridgeCommandOutput } from "./commands/CreateBridgeCommand";
|
|
20
|
-
import { CreateFlowCommandInput, CreateFlowCommandOutput } from "./commands/CreateFlowCommand";
|
|
21
|
-
import { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "./commands/CreateGatewayCommand";
|
|
22
|
-
import { CreateRouterInputCommandInput, CreateRouterInputCommandOutput } from "./commands/CreateRouterInputCommand";
|
|
23
|
-
import { CreateRouterNetworkInterfaceCommandInput, CreateRouterNetworkInterfaceCommandOutput } from "./commands/CreateRouterNetworkInterfaceCommand";
|
|
24
|
-
import { CreateRouterOutputCommandInput, CreateRouterOutputCommandOutput } from "./commands/CreateRouterOutputCommand";
|
|
25
|
-
import { DeleteBridgeCommandInput, DeleteBridgeCommandOutput } from "./commands/DeleteBridgeCommand";
|
|
26
|
-
import { DeleteFlowCommandInput, DeleteFlowCommandOutput } from "./commands/DeleteFlowCommand";
|
|
27
|
-
import { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
|
|
28
|
-
import { DeleteRouterInputCommandInput, DeleteRouterInputCommandOutput } from "./commands/DeleteRouterInputCommand";
|
|
29
|
-
import { DeleteRouterNetworkInterfaceCommandInput, DeleteRouterNetworkInterfaceCommandOutput } from "./commands/DeleteRouterNetworkInterfaceCommand";
|
|
30
|
-
import { DeleteRouterOutputCommandInput, DeleteRouterOutputCommandOutput } from "./commands/DeleteRouterOutputCommand";
|
|
31
|
-
import { DeregisterGatewayInstanceCommandInput, DeregisterGatewayInstanceCommandOutput } from "./commands/DeregisterGatewayInstanceCommand";
|
|
32
|
-
import { DescribeBridgeCommandInput, DescribeBridgeCommandOutput } from "./commands/DescribeBridgeCommand";
|
|
33
|
-
import { DescribeFlowCommandInput, DescribeFlowCommandOutput } from "./commands/DescribeFlowCommand";
|
|
34
|
-
import { DescribeFlowSourceMetadataCommandInput, DescribeFlowSourceMetadataCommandOutput } from "./commands/DescribeFlowSourceMetadataCommand";
|
|
35
|
-
import { DescribeFlowSourceThumbnailCommandInput, DescribeFlowSourceThumbnailCommandOutput } from "./commands/DescribeFlowSourceThumbnailCommand";
|
|
36
|
-
import { DescribeGatewayCommandInput, DescribeGatewayCommandOutput } from "./commands/DescribeGatewayCommand";
|
|
37
|
-
import { DescribeGatewayInstanceCommandInput, DescribeGatewayInstanceCommandOutput } from "./commands/DescribeGatewayInstanceCommand";
|
|
38
|
-
import { DescribeOfferingCommandInput, DescribeOfferingCommandOutput } from "./commands/DescribeOfferingCommand";
|
|
39
|
-
import { DescribeReservationCommandInput, DescribeReservationCommandOutput } from "./commands/DescribeReservationCommand";
|
|
40
|
-
import { GetRouterInputCommandInput, GetRouterInputCommandOutput } from "./commands/GetRouterInputCommand";
|
|
41
|
-
import { GetRouterInputSourceMetadataCommandInput, GetRouterInputSourceMetadataCommandOutput } from "./commands/GetRouterInputSourceMetadataCommand";
|
|
42
|
-
import { GetRouterInputThumbnailCommandInput, GetRouterInputThumbnailCommandOutput } from "./commands/GetRouterInputThumbnailCommand";
|
|
43
|
-
import { GetRouterNetworkInterfaceCommandInput, GetRouterNetworkInterfaceCommandOutput } from "./commands/GetRouterNetworkInterfaceCommand";
|
|
44
|
-
import { GetRouterOutputCommandInput, GetRouterOutputCommandOutput } from "./commands/GetRouterOutputCommand";
|
|
45
|
-
import { GrantFlowEntitlementsCommandInput, GrantFlowEntitlementsCommandOutput } from "./commands/GrantFlowEntitlementsCommand";
|
|
46
|
-
import { ListBridgesCommandInput, ListBridgesCommandOutput } from "./commands/ListBridgesCommand";
|
|
47
|
-
import { ListEntitlementsCommandInput, ListEntitlementsCommandOutput } from "./commands/ListEntitlementsCommand";
|
|
48
|
-
import { ListFlowsCommandInput, ListFlowsCommandOutput } from "./commands/ListFlowsCommand";
|
|
49
|
-
import { ListGatewayInstancesCommandInput, ListGatewayInstancesCommandOutput } from "./commands/ListGatewayInstancesCommand";
|
|
50
|
-
import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
|
|
51
|
-
import { ListOfferingsCommandInput, ListOfferingsCommandOutput } from "./commands/ListOfferingsCommand";
|
|
52
|
-
import { ListReservationsCommandInput, ListReservationsCommandOutput } from "./commands/ListReservationsCommand";
|
|
53
|
-
import { ListRouterInputsCommandInput, ListRouterInputsCommandOutput } from "./commands/ListRouterInputsCommand";
|
|
54
|
-
import { ListRouterNetworkInterfacesCommandInput, ListRouterNetworkInterfacesCommandOutput } from "./commands/ListRouterNetworkInterfacesCommand";
|
|
55
|
-
import { ListRouterOutputsCommandInput, ListRouterOutputsCommandOutput } from "./commands/ListRouterOutputsCommand";
|
|
56
|
-
import { ListTagsForGlobalResourceCommandInput, ListTagsForGlobalResourceCommandOutput } from "./commands/ListTagsForGlobalResourceCommand";
|
|
57
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
58
|
-
import { PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput } from "./commands/PurchaseOfferingCommand";
|
|
59
|
-
import { RemoveBridgeOutputCommandInput, RemoveBridgeOutputCommandOutput } from "./commands/RemoveBridgeOutputCommand";
|
|
60
|
-
import { RemoveBridgeSourceCommandInput, RemoveBridgeSourceCommandOutput } from "./commands/RemoveBridgeSourceCommand";
|
|
61
|
-
import { RemoveFlowMediaStreamCommandInput, RemoveFlowMediaStreamCommandOutput } from "./commands/RemoveFlowMediaStreamCommand";
|
|
62
|
-
import { RemoveFlowOutputCommandInput, RemoveFlowOutputCommandOutput } from "./commands/RemoveFlowOutputCommand";
|
|
63
|
-
import { RemoveFlowSourceCommandInput, RemoveFlowSourceCommandOutput } from "./commands/RemoveFlowSourceCommand";
|
|
64
|
-
import { RemoveFlowVpcInterfaceCommandInput, RemoveFlowVpcInterfaceCommandOutput } from "./commands/RemoveFlowVpcInterfaceCommand";
|
|
65
|
-
import { RestartRouterInputCommandInput, RestartRouterInputCommandOutput } from "./commands/RestartRouterInputCommand";
|
|
66
|
-
import { RestartRouterOutputCommandInput, RestartRouterOutputCommandOutput } from "./commands/RestartRouterOutputCommand";
|
|
67
|
-
import { RevokeFlowEntitlementCommandInput, RevokeFlowEntitlementCommandOutput } from "./commands/RevokeFlowEntitlementCommand";
|
|
68
|
-
import { StartFlowCommandInput, StartFlowCommandOutput } from "./commands/StartFlowCommand";
|
|
69
|
-
import { StartRouterInputCommandInput, StartRouterInputCommandOutput } from "./commands/StartRouterInputCommand";
|
|
70
|
-
import { StartRouterOutputCommandInput, StartRouterOutputCommandOutput } from "./commands/StartRouterOutputCommand";
|
|
71
|
-
import { StopFlowCommandInput, StopFlowCommandOutput } from "./commands/StopFlowCommand";
|
|
72
|
-
import { StopRouterInputCommandInput, StopRouterInputCommandOutput } from "./commands/StopRouterInputCommand";
|
|
73
|
-
import { StopRouterOutputCommandInput, StopRouterOutputCommandOutput } from "./commands/StopRouterOutputCommand";
|
|
74
|
-
import { TagGlobalResourceCommandInput, TagGlobalResourceCommandOutput } from "./commands/TagGlobalResourceCommand";
|
|
75
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
76
|
-
import { TakeRouterInputCommandInput, TakeRouterInputCommandOutput } from "./commands/TakeRouterInputCommand";
|
|
77
|
-
import { UntagGlobalResourceCommandInput, UntagGlobalResourceCommandOutput } from "./commands/UntagGlobalResourceCommand";
|
|
78
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
79
|
-
import { UpdateBridgeCommandInput, UpdateBridgeCommandOutput } from "./commands/UpdateBridgeCommand";
|
|
80
|
-
import { UpdateBridgeOutputCommandInput, UpdateBridgeOutputCommandOutput } from "./commands/UpdateBridgeOutputCommand";
|
|
81
|
-
import { UpdateBridgeSourceCommandInput, UpdateBridgeSourceCommandOutput } from "./commands/UpdateBridgeSourceCommand";
|
|
82
|
-
import { UpdateBridgeStateCommandInput, UpdateBridgeStateCommandOutput } from "./commands/UpdateBridgeStateCommand";
|
|
83
|
-
import { UpdateFlowCommandInput, UpdateFlowCommandOutput } from "./commands/UpdateFlowCommand";
|
|
84
|
-
import { UpdateFlowEntitlementCommandInput, UpdateFlowEntitlementCommandOutput } from "./commands/UpdateFlowEntitlementCommand";
|
|
85
|
-
import { UpdateFlowMediaStreamCommandInput, UpdateFlowMediaStreamCommandOutput } from "./commands/UpdateFlowMediaStreamCommand";
|
|
86
|
-
import { UpdateFlowOutputCommandInput, UpdateFlowOutputCommandOutput } from "./commands/UpdateFlowOutputCommand";
|
|
87
|
-
import { UpdateFlowSourceCommandInput, UpdateFlowSourceCommandOutput } from "./commands/UpdateFlowSourceCommand";
|
|
88
|
-
import { UpdateGatewayInstanceCommandInput, UpdateGatewayInstanceCommandOutput } from "./commands/UpdateGatewayInstanceCommand";
|
|
89
|
-
import { UpdateRouterInputCommandInput, UpdateRouterInputCommandOutput } from "./commands/UpdateRouterInputCommand";
|
|
90
|
-
import { UpdateRouterNetworkInterfaceCommandInput, UpdateRouterNetworkInterfaceCommandOutput } from "./commands/UpdateRouterNetworkInterfaceCommand";
|
|
91
|
-
import { UpdateRouterOutputCommandInput, UpdateRouterOutputCommandOutput } from "./commands/UpdateRouterOutputCommand";
|
|
92
|
-
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
10
|
+
import type { AddBridgeOutputsCommandInput, AddBridgeOutputsCommandOutput } from "./commands/AddBridgeOutputsCommand";
|
|
11
|
+
import type { AddBridgeSourcesCommandInput, AddBridgeSourcesCommandOutput } from "./commands/AddBridgeSourcesCommand";
|
|
12
|
+
import type { AddFlowMediaStreamsCommandInput, AddFlowMediaStreamsCommandOutput } from "./commands/AddFlowMediaStreamsCommand";
|
|
13
|
+
import type { AddFlowOutputsCommandInput, AddFlowOutputsCommandOutput } from "./commands/AddFlowOutputsCommand";
|
|
14
|
+
import type { AddFlowSourcesCommandInput, AddFlowSourcesCommandOutput } from "./commands/AddFlowSourcesCommand";
|
|
15
|
+
import type { AddFlowVpcInterfacesCommandInput, AddFlowVpcInterfacesCommandOutput } from "./commands/AddFlowVpcInterfacesCommand";
|
|
16
|
+
import type { BatchGetRouterInputCommandInput, BatchGetRouterInputCommandOutput } from "./commands/BatchGetRouterInputCommand";
|
|
17
|
+
import type { BatchGetRouterNetworkInterfaceCommandInput, BatchGetRouterNetworkInterfaceCommandOutput } from "./commands/BatchGetRouterNetworkInterfaceCommand";
|
|
18
|
+
import type { BatchGetRouterOutputCommandInput, BatchGetRouterOutputCommandOutput } from "./commands/BatchGetRouterOutputCommand";
|
|
19
|
+
import type { CreateBridgeCommandInput, CreateBridgeCommandOutput } from "./commands/CreateBridgeCommand";
|
|
20
|
+
import type { CreateFlowCommandInput, CreateFlowCommandOutput } from "./commands/CreateFlowCommand";
|
|
21
|
+
import type { CreateGatewayCommandInput, CreateGatewayCommandOutput } from "./commands/CreateGatewayCommand";
|
|
22
|
+
import type { CreateRouterInputCommandInput, CreateRouterInputCommandOutput } from "./commands/CreateRouterInputCommand";
|
|
23
|
+
import type { CreateRouterNetworkInterfaceCommandInput, CreateRouterNetworkInterfaceCommandOutput } from "./commands/CreateRouterNetworkInterfaceCommand";
|
|
24
|
+
import type { CreateRouterOutputCommandInput, CreateRouterOutputCommandOutput } from "./commands/CreateRouterOutputCommand";
|
|
25
|
+
import type { DeleteBridgeCommandInput, DeleteBridgeCommandOutput } from "./commands/DeleteBridgeCommand";
|
|
26
|
+
import type { DeleteFlowCommandInput, DeleteFlowCommandOutput } from "./commands/DeleteFlowCommand";
|
|
27
|
+
import type { DeleteGatewayCommandInput, DeleteGatewayCommandOutput } from "./commands/DeleteGatewayCommand";
|
|
28
|
+
import type { DeleteRouterInputCommandInput, DeleteRouterInputCommandOutput } from "./commands/DeleteRouterInputCommand";
|
|
29
|
+
import type { DeleteRouterNetworkInterfaceCommandInput, DeleteRouterNetworkInterfaceCommandOutput } from "./commands/DeleteRouterNetworkInterfaceCommand";
|
|
30
|
+
import type { DeleteRouterOutputCommandInput, DeleteRouterOutputCommandOutput } from "./commands/DeleteRouterOutputCommand";
|
|
31
|
+
import type { DeregisterGatewayInstanceCommandInput, DeregisterGatewayInstanceCommandOutput } from "./commands/DeregisterGatewayInstanceCommand";
|
|
32
|
+
import type { DescribeBridgeCommandInput, DescribeBridgeCommandOutput } from "./commands/DescribeBridgeCommand";
|
|
33
|
+
import type { DescribeFlowCommandInput, DescribeFlowCommandOutput } from "./commands/DescribeFlowCommand";
|
|
34
|
+
import type { DescribeFlowSourceMetadataCommandInput, DescribeFlowSourceMetadataCommandOutput } from "./commands/DescribeFlowSourceMetadataCommand";
|
|
35
|
+
import type { DescribeFlowSourceThumbnailCommandInput, DescribeFlowSourceThumbnailCommandOutput } from "./commands/DescribeFlowSourceThumbnailCommand";
|
|
36
|
+
import type { DescribeGatewayCommandInput, DescribeGatewayCommandOutput } from "./commands/DescribeGatewayCommand";
|
|
37
|
+
import type { DescribeGatewayInstanceCommandInput, DescribeGatewayInstanceCommandOutput } from "./commands/DescribeGatewayInstanceCommand";
|
|
38
|
+
import type { DescribeOfferingCommandInput, DescribeOfferingCommandOutput } from "./commands/DescribeOfferingCommand";
|
|
39
|
+
import type { DescribeReservationCommandInput, DescribeReservationCommandOutput } from "./commands/DescribeReservationCommand";
|
|
40
|
+
import type { GetRouterInputCommandInput, GetRouterInputCommandOutput } from "./commands/GetRouterInputCommand";
|
|
41
|
+
import type { GetRouterInputSourceMetadataCommandInput, GetRouterInputSourceMetadataCommandOutput } from "./commands/GetRouterInputSourceMetadataCommand";
|
|
42
|
+
import type { GetRouterInputThumbnailCommandInput, GetRouterInputThumbnailCommandOutput } from "./commands/GetRouterInputThumbnailCommand";
|
|
43
|
+
import type { GetRouterNetworkInterfaceCommandInput, GetRouterNetworkInterfaceCommandOutput } from "./commands/GetRouterNetworkInterfaceCommand";
|
|
44
|
+
import type { GetRouterOutputCommandInput, GetRouterOutputCommandOutput } from "./commands/GetRouterOutputCommand";
|
|
45
|
+
import type { GrantFlowEntitlementsCommandInput, GrantFlowEntitlementsCommandOutput } from "./commands/GrantFlowEntitlementsCommand";
|
|
46
|
+
import type { ListBridgesCommandInput, ListBridgesCommandOutput } from "./commands/ListBridgesCommand";
|
|
47
|
+
import type { ListEntitlementsCommandInput, ListEntitlementsCommandOutput } from "./commands/ListEntitlementsCommand";
|
|
48
|
+
import type { ListFlowsCommandInput, ListFlowsCommandOutput } from "./commands/ListFlowsCommand";
|
|
49
|
+
import type { ListGatewayInstancesCommandInput, ListGatewayInstancesCommandOutput } from "./commands/ListGatewayInstancesCommand";
|
|
50
|
+
import type { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "./commands/ListGatewaysCommand";
|
|
51
|
+
import type { ListOfferingsCommandInput, ListOfferingsCommandOutput } from "./commands/ListOfferingsCommand";
|
|
52
|
+
import type { ListReservationsCommandInput, ListReservationsCommandOutput } from "./commands/ListReservationsCommand";
|
|
53
|
+
import type { ListRouterInputsCommandInput, ListRouterInputsCommandOutput } from "./commands/ListRouterInputsCommand";
|
|
54
|
+
import type { ListRouterNetworkInterfacesCommandInput, ListRouterNetworkInterfacesCommandOutput } from "./commands/ListRouterNetworkInterfacesCommand";
|
|
55
|
+
import type { ListRouterOutputsCommandInput, ListRouterOutputsCommandOutput } from "./commands/ListRouterOutputsCommand";
|
|
56
|
+
import type { ListTagsForGlobalResourceCommandInput, ListTagsForGlobalResourceCommandOutput } from "./commands/ListTagsForGlobalResourceCommand";
|
|
57
|
+
import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
58
|
+
import type { PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput } from "./commands/PurchaseOfferingCommand";
|
|
59
|
+
import type { RemoveBridgeOutputCommandInput, RemoveBridgeOutputCommandOutput } from "./commands/RemoveBridgeOutputCommand";
|
|
60
|
+
import type { RemoveBridgeSourceCommandInput, RemoveBridgeSourceCommandOutput } from "./commands/RemoveBridgeSourceCommand";
|
|
61
|
+
import type { RemoveFlowMediaStreamCommandInput, RemoveFlowMediaStreamCommandOutput } from "./commands/RemoveFlowMediaStreamCommand";
|
|
62
|
+
import type { RemoveFlowOutputCommandInput, RemoveFlowOutputCommandOutput } from "./commands/RemoveFlowOutputCommand";
|
|
63
|
+
import type { RemoveFlowSourceCommandInput, RemoveFlowSourceCommandOutput } from "./commands/RemoveFlowSourceCommand";
|
|
64
|
+
import type { RemoveFlowVpcInterfaceCommandInput, RemoveFlowVpcInterfaceCommandOutput } from "./commands/RemoveFlowVpcInterfaceCommand";
|
|
65
|
+
import type { RestartRouterInputCommandInput, RestartRouterInputCommandOutput } from "./commands/RestartRouterInputCommand";
|
|
66
|
+
import type { RestartRouterOutputCommandInput, RestartRouterOutputCommandOutput } from "./commands/RestartRouterOutputCommand";
|
|
67
|
+
import type { RevokeFlowEntitlementCommandInput, RevokeFlowEntitlementCommandOutput } from "./commands/RevokeFlowEntitlementCommand";
|
|
68
|
+
import type { StartFlowCommandInput, StartFlowCommandOutput } from "./commands/StartFlowCommand";
|
|
69
|
+
import type { StartRouterInputCommandInput, StartRouterInputCommandOutput } from "./commands/StartRouterInputCommand";
|
|
70
|
+
import type { StartRouterOutputCommandInput, StartRouterOutputCommandOutput } from "./commands/StartRouterOutputCommand";
|
|
71
|
+
import type { StopFlowCommandInput, StopFlowCommandOutput } from "./commands/StopFlowCommand";
|
|
72
|
+
import type { StopRouterInputCommandInput, StopRouterInputCommandOutput } from "./commands/StopRouterInputCommand";
|
|
73
|
+
import type { StopRouterOutputCommandInput, StopRouterOutputCommandOutput } from "./commands/StopRouterOutputCommand";
|
|
74
|
+
import type { TagGlobalResourceCommandInput, TagGlobalResourceCommandOutput } from "./commands/TagGlobalResourceCommand";
|
|
75
|
+
import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
76
|
+
import type { TakeRouterInputCommandInput, TakeRouterInputCommandOutput } from "./commands/TakeRouterInputCommand";
|
|
77
|
+
import type { UntagGlobalResourceCommandInput, UntagGlobalResourceCommandOutput } from "./commands/UntagGlobalResourceCommand";
|
|
78
|
+
import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
79
|
+
import type { UpdateBridgeCommandInput, UpdateBridgeCommandOutput } from "./commands/UpdateBridgeCommand";
|
|
80
|
+
import type { UpdateBridgeOutputCommandInput, UpdateBridgeOutputCommandOutput } from "./commands/UpdateBridgeOutputCommand";
|
|
81
|
+
import type { UpdateBridgeSourceCommandInput, UpdateBridgeSourceCommandOutput } from "./commands/UpdateBridgeSourceCommand";
|
|
82
|
+
import type { UpdateBridgeStateCommandInput, UpdateBridgeStateCommandOutput } from "./commands/UpdateBridgeStateCommand";
|
|
83
|
+
import type { UpdateFlowCommandInput, UpdateFlowCommandOutput } from "./commands/UpdateFlowCommand";
|
|
84
|
+
import type { UpdateFlowEntitlementCommandInput, UpdateFlowEntitlementCommandOutput } from "./commands/UpdateFlowEntitlementCommand";
|
|
85
|
+
import type { UpdateFlowMediaStreamCommandInput, UpdateFlowMediaStreamCommandOutput } from "./commands/UpdateFlowMediaStreamCommand";
|
|
86
|
+
import type { UpdateFlowOutputCommandInput, UpdateFlowOutputCommandOutput } from "./commands/UpdateFlowOutputCommand";
|
|
87
|
+
import type { UpdateFlowSourceCommandInput, UpdateFlowSourceCommandOutput } from "./commands/UpdateFlowSourceCommand";
|
|
88
|
+
import type { UpdateGatewayInstanceCommandInput, UpdateGatewayInstanceCommandOutput } from "./commands/UpdateGatewayInstanceCommand";
|
|
89
|
+
import type { UpdateRouterInputCommandInput, UpdateRouterInputCommandOutput } from "./commands/UpdateRouterInputCommand";
|
|
90
|
+
import type { UpdateRouterNetworkInterfaceCommandInput, UpdateRouterNetworkInterfaceCommandOutput } from "./commands/UpdateRouterNetworkInterfaceCommand";
|
|
91
|
+
import type { UpdateRouterOutputCommandInput, UpdateRouterOutputCommandOutput } from "./commands/UpdateRouterOutputCommand";
|
|
92
|
+
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
93
93
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
94
94
|
export { __Client };
|
|
95
95
|
/**
|
|
@@ -198,7 +198,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
198
198
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
199
199
|
* @internal
|
|
200
200
|
*/
|
|
201
|
-
defaultUserAgentProvider?:
|
|
201
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
202
202
|
/**
|
|
203
203
|
* Default credentials provider; Not available in browser runtime.
|
|
204
204
|
* @deprecated
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
|
|
2
2
|
import type { MediaConnectHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import type { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider } from "@smithy/types";
|
|
3
3
|
import { type MediaConnectClientResolvedConfig } from "../MediaConnectClient";
|
|
4
4
|
/**
|
package/dist-types/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export * from "./MediaConnectClient";
|
|
7
7
|
export * from "./MediaConnect";
|
|
8
|
-
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
8
|
+
export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
9
9
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
10
|
export type { MediaConnectExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Algorithm, BridgePlacement, BridgeState, Colorimetry, ConnectionStatus, ContentQualityAnalysisState, Day, DesiredState, DurationUnits, EncoderProfile, EncodingName, EncodingProfile, EntitlementStatus, FailoverInputSourcePriorityMode, FailoverMode, FlowSize, FlowTransitEncryptionKeyType, ForwardErrorCorrectionState, GatewayState, InstanceState, KeyType, MaintenanceDay, MaintenanceScheduleType, MaintenanceType, MediaLiveInputPipelineId, MediaLiveTransitEncryptionKeyType, MediaStreamType, NdiState, NetworkInterfaceType, OutputStatus, PriceUnits, Protocol, Range, ReservationState, ResourceType, RouterInputProtocol, RouterInputState, RouterInputTier, RouterInputTransitEncryptionKeyType, RouterInputType, RouterNetworkInterfaceState, RouterNetworkInterfaceType, RouterOutputProtocol, RouterOutputRoutedState, RouterOutputState, RouterOutputTier, RouterOutputType, RoutingScope, ScanMode, SourceType, State, Status, Tcs, ThumbnailState } from "./enums";
|
|
1
|
+
import type { Algorithm, BridgePlacement, BridgeState, Colorimetry, ConnectionStatus, ContentQualityAnalysisState, Day, DesiredState, DurationUnits, EncoderProfile, EncodingName, EncodingProfile, EntitlementStatus, FailoverInputSourcePriorityMode, FailoverMode, FlowSize, FlowTransitEncryptionKeyType, ForwardErrorCorrectionState, GatewayState, InstanceState, KeyType, MaintenanceDay, MaintenanceScheduleType, MaintenanceType, MediaLiveInputPipelineId, MediaLiveTransitEncryptionKeyType, MediaStreamType, NdiState, NetworkInterfaceType, OutputStatus, PriceUnits, Protocol, Range, ReservationState, ResourceType, RouterInputProtocol, RouterInputState, RouterInputTier, RouterInputTransitEncryptionKeyType, RouterInputType, RouterNetworkInterfaceState, RouterNetworkInterfaceType, RouterOutputProtocol, RouterOutputRoutedState, RouterOutputState, RouterOutputTier, RouterOutputType, RoutingScope, ScanMode, SourceType, State, Status, Tcs, ThumbnailState } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* <p>Add a network output to an existing bridge. </p>
|
|
4
4
|
* @public
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { MaintenanceScheduleType, RouterInputState, RouterInputTier, RouterOutputRoutedState, RouterOutputState, RouterOutputTier, RoutingScope } from "./enums";
|
|
1
|
+
import type { MaintenanceScheduleType, RouterInputState, RouterInputTier, RouterOutputRoutedState, RouterOutputState, RouterOutputTier, RoutingScope } from "./enums";
|
|
2
2
|
import type { MaintenanceConfiguration, MaintenanceSchedule, RouterInput, RouterInputConfiguration, RouterInputTransitEncryption, RouterNetworkInterface, RouterNetworkInterfaceConfiguration, RouterOutput, RouterOutputConfiguration } from "./models_0";
|
|
3
3
|
/**
|
|
4
4
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListBridgesCommandInput, ListBridgesCommandOutput } from "../commands/ListBridgesCommand";
|
|
3
|
-
import { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListEntitlementsCommandInput, ListEntitlementsCommandOutput } from "../commands/ListEntitlementsCommand";
|
|
3
|
-
import { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListFlowsCommandInput, ListFlowsCommandOutput } from "../commands/ListFlowsCommand";
|
|
3
|
-
import { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListGatewayInstancesCommandInput, ListGatewayInstancesCommandOutput } from "../commands/ListGatewayInstancesCommand";
|
|
3
|
-
import { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListGatewaysCommandInput, ListGatewaysCommandOutput } from "../commands/ListGatewaysCommand";
|
|
3
|
-
import { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListOfferingsCommandInput, ListOfferingsCommandOutput } from "../commands/ListOfferingsCommand";
|
|
3
|
-
import { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListReservationsCommandInput, ListReservationsCommandOutput } from "../commands/ListReservationsCommand";
|
|
3
|
-
import { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListRouterInputsCommandInput, ListRouterInputsCommandOutput } from "../commands/ListRouterInputsCommand";
|
|
3
|
-
import { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListRouterNetworkInterfacesCommandInput, ListRouterNetworkInterfacesCommandOutput } from "../commands/ListRouterNetworkInterfacesCommand";
|
|
3
|
-
import { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListRouterOutputsCommandInput, ListRouterOutputsCommandOutput } from "../commands/ListRouterOutputsCommand";
|
|
3
|
-
import { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { MediaConnectPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -18,7 +18,7 @@ export declare const getRuntimeConfig: (config: MediaConnectClientConfig) => {
|
|
|
18
18
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
19
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
20
|
cacheMiddleware?: boolean | undefined;
|
|
21
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
21
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
22
22
|
protocolSettings: {
|
|
23
23
|
defaultNamespace?: string;
|
|
24
24
|
[setting: string]: unknown;
|
|
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: MediaConnectClientConfig) => {
|
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
22
22
|
cacheMiddleware?: boolean | undefined;
|
|
23
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
23
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
24
24
|
protocolSettings: {
|
|
25
25
|
defaultNamespace?: string;
|
|
26
26
|
[setting: string]: unknown;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: MediaConnectClientConfig) => {
|
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
cacheMiddleware?: boolean;
|
|
10
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
11
11
|
protocolSettings: {
|
|
12
12
|
defaultNamespace?: string;
|
|
13
13
|
[setting: string]: unknown;
|
|
@@ -26,6 +26,7 @@ import {
|
|
|
26
26
|
Client as __Client,
|
|
27
27
|
} from "@smithy/smithy-client";
|
|
28
28
|
import {
|
|
29
|
+
AwsCredentialIdentityProvider,
|
|
29
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
30
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
31
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
@@ -37,8 +38,6 @@ import {
|
|
|
37
38
|
Provider as __Provider,
|
|
38
39
|
StreamCollector as __StreamCollector,
|
|
39
40
|
UrlParser as __UrlParser,
|
|
40
|
-
AwsCredentialIdentityProvider,
|
|
41
|
-
Provider,
|
|
42
41
|
UserAgent as __UserAgent,
|
|
43
42
|
} from "@smithy/types";
|
|
44
43
|
import {
|
|
@@ -564,7 +563,7 @@ export interface ClientDefaults
|
|
|
564
563
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
565
564
|
region?: string | __Provider<string>;
|
|
566
565
|
profile?: string;
|
|
567
|
-
defaultUserAgentProvider?:
|
|
566
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
568
567
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
569
568
|
maxAttempts?: number | __Provider<number>;
|
|
570
569
|
retryMode?: string | __Provider<string>;
|
|
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: MediaConnectClientConfig) => {
|
|
|
30
30
|
protocol:
|
|
31
31
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
32
32
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
33
|
-
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
33
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
34
34
|
protocolSettings: {
|
|
35
35
|
defaultNamespace?: string;
|
|
36
36
|
[setting: string]: unknown;
|
|
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: MediaConnectClientConfig) => {
|
|
|
30
30
|
protocol:
|
|
31
31
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
32
32
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
33
|
-
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
33
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
34
34
|
protocolSettings: {
|
|
35
35
|
defaultNamespace?: string;
|
|
36
36
|
[setting: string]: unknown;
|
|
@@ -12,7 +12,7 @@ export declare const getRuntimeConfig: (config: MediaConnectClientConfig) => {
|
|
|
12
12
|
protocol:
|
|
13
13
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
14
14
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
15
|
-
| typeof import("@aws-sdk/core").AwsRestJsonProtocol;
|
|
15
|
+
| typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
|
|
16
16
|
protocolSettings: {
|
|
17
17
|
defaultNamespace?: string;
|
|
18
18
|
[setting: string]: unknown;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { DescribeFlowCommandInput } from "../commands/DescribeFlowCommand";
|
|
3
|
-
import { MediaConnectClient } from "../MediaConnectClient";
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type DescribeFlowCommandInput } from "../commands/DescribeFlowCommand";
|
|
3
|
+
import type { MediaConnectClient } from "../MediaConnectClient";
|
|
4
4
|
/**
|
|
5
5
|
* Wait until a flow is active
|
|
6
6
|
* @deprecated Use waitUntilFlowActive instead. waitForFlowActive does not throw error in non-success cases.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { DescribeFlowCommandInput } from "../commands/DescribeFlowCommand";
|
|
3
|
-
import { MediaConnectClient } from "../MediaConnectClient";
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type DescribeFlowCommandInput } from "../commands/DescribeFlowCommand";
|
|
3
|
+
import type { MediaConnectClient } from "../MediaConnectClient";
|
|
4
4
|
/**
|
|
5
5
|
* Wait until a flow is deleted
|
|
6
6
|
* @deprecated Use waitUntilFlowDeleted instead. waitForFlowDeleted does not throw error in non-success cases.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { DescribeFlowCommandInput } from "../commands/DescribeFlowCommand";
|
|
3
|
-
import { MediaConnectClient } from "../MediaConnectClient";
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type DescribeFlowCommandInput } from "../commands/DescribeFlowCommand";
|
|
3
|
+
import type { MediaConnectClient } from "../MediaConnectClient";
|
|
4
4
|
/**
|
|
5
5
|
* Wait until a flow is in standby mode
|
|
6
6
|
* @deprecated Use waitUntilFlowStandby instead. waitForFlowStandby does not throw error in non-success cases.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { GetRouterInputCommandInput } from "../commands/GetRouterInputCommand";
|
|
3
|
-
import { MediaConnectClient } from "../MediaConnectClient";
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type GetRouterInputCommandInput } from "../commands/GetRouterInputCommand";
|
|
3
|
+
import type { MediaConnectClient } from "../MediaConnectClient";
|
|
4
4
|
/**
|
|
5
5
|
* Wait until the Input is ACTIVE
|
|
6
6
|
* @deprecated Use waitUntilInputActive instead. waitForInputActive does not throw error in non-success cases.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { GetRouterInputCommandInput } from "../commands/GetRouterInputCommand";
|
|
3
|
-
import { MediaConnectClient } from "../MediaConnectClient";
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type GetRouterInputCommandInput } from "../commands/GetRouterInputCommand";
|
|
3
|
+
import type { MediaConnectClient } from "../MediaConnectClient";
|
|
4
4
|
/**
|
|
5
5
|
* Wait until the Input is deleted
|
|
6
6
|
* @deprecated Use waitUntilInputDeleted instead. waitForInputDeleted does not throw error in non-success cases.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { GetRouterInputCommandInput } from "../commands/GetRouterInputCommand";
|
|
3
|
-
import { MediaConnectClient } from "../MediaConnectClient";
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type GetRouterInputCommandInput } from "../commands/GetRouterInputCommand";
|
|
3
|
+
import type { MediaConnectClient } from "../MediaConnectClient";
|
|
4
4
|
/**
|
|
5
5
|
* Wait until the Input is STANDBY
|
|
6
6
|
* @deprecated Use waitUntilInputStandby instead. waitForInputStandby does not throw error in non-success cases.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { GetRouterOutputCommandInput } from "../commands/GetRouterOutputCommand";
|
|
3
|
-
import { MediaConnectClient } from "../MediaConnectClient";
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type GetRouterOutputCommandInput } from "../commands/GetRouterOutputCommand";
|
|
3
|
+
import type { MediaConnectClient } from "../MediaConnectClient";
|
|
4
4
|
/**
|
|
5
5
|
* Wait until the Output is ACTIVE
|
|
6
6
|
* @deprecated Use waitUntilOutputActive instead. waitForOutputActive does not throw error in non-success cases.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { GetRouterOutputCommandInput } from "../commands/GetRouterOutputCommand";
|
|
3
|
-
import { MediaConnectClient } from "../MediaConnectClient";
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type GetRouterOutputCommandInput } from "../commands/GetRouterOutputCommand";
|
|
3
|
+
import type { MediaConnectClient } from "../MediaConnectClient";
|
|
4
4
|
/**
|
|
5
5
|
* Wait until the Output is deleted
|
|
6
6
|
* @deprecated Use waitUntilOutputDeleted instead. waitForOutputDeleted does not throw error in non-success cases.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { GetRouterOutputCommandInput } from "../commands/GetRouterOutputCommand";
|
|
3
|
-
import { MediaConnectClient } from "../MediaConnectClient";
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type GetRouterOutputCommandInput } from "../commands/GetRouterOutputCommand";
|
|
3
|
+
import type { MediaConnectClient } from "../MediaConnectClient";
|
|
4
4
|
/**
|
|
5
5
|
* Wait until the Output is ROUTED
|
|
6
6
|
* @deprecated Use waitUntilOutputRouted instead. waitForOutputRouted does not throw error in non-success cases.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { GetRouterOutputCommandInput } from "../commands/GetRouterOutputCommand";
|
|
3
|
-
import { MediaConnectClient } from "../MediaConnectClient";
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type GetRouterOutputCommandInput } from "../commands/GetRouterOutputCommand";
|
|
3
|
+
import type { MediaConnectClient } from "../MediaConnectClient";
|
|
4
4
|
/**
|
|
5
5
|
* Wait until the Output is STANDBY
|
|
6
6
|
* @deprecated Use waitUntilOutputStandby instead. waitForOutputStandby does not throw error in non-success cases.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { GetRouterOutputCommandInput } from "../commands/GetRouterOutputCommand";
|
|
3
|
-
import { MediaConnectClient } from "../MediaConnectClient";
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type GetRouterOutputCommandInput } from "../commands/GetRouterOutputCommand";
|
|
3
|
+
import type { MediaConnectClient } from "../MediaConnectClient";
|
|
4
4
|
/**
|
|
5
5
|
* Wait until the Output is UNROUTED
|
|
6
6
|
* @deprecated Use waitUntilOutputUnrouted instead. waitForOutputUnrouted does not throw error in non-success cases.
|
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.1020.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-mediaconnect",
|
|
@@ -21,43 +21,43 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.26",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.28",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.27",
|
|
30
30
|
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
31
31
|
"@aws-sdk/types": "^3.973.6",
|
|
32
32
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
33
33
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.973.13",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.13",
|
|
36
|
-
"@smithy/core": "^3.23.
|
|
36
|
+
"@smithy/core": "^3.23.13",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
38
38
|
"@smithy/hash-node": "^4.2.12",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.12",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
43
|
-
"@smithy/middleware-serde": "^4.2.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.28",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.45",
|
|
43
|
+
"@smithy/middleware-serde": "^4.2.16",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.12",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.12",
|
|
46
|
-
"@smithy/node-http-handler": "^4.5.
|
|
46
|
+
"@smithy/node-http-handler": "^4.5.1",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.12",
|
|
48
|
-
"@smithy/smithy-client": "^4.12.
|
|
48
|
+
"@smithy/smithy-client": "^4.12.8",
|
|
49
49
|
"@smithy/types": "^4.13.1",
|
|
50
50
|
"@smithy/url-parser": "^4.2.12",
|
|
51
51
|
"@smithy/util-base64": "^4.3.2",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.44",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.48",
|
|
56
56
|
"@smithy/util-endpoints": "^3.3.3",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.12",
|
|
58
58
|
"@smithy/util-retry": "^4.2.12",
|
|
59
59
|
"@smithy/util-utf8": "^4.2.2",
|
|
60
|
-
"@smithy/util-waiter": "^4.2.
|
|
60
|
+
"@smithy/util-waiter": "^4.2.14",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|