@aws-sdk/client-mediaconnect 3.310.0 → 3.313.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.
Files changed (123) hide show
  1. package/README.md +167 -7
  2. package/dist-cjs/MediaConnect.js +300 -0
  3. package/dist-cjs/commands/AddBridgeOutputsCommand.js +45 -0
  4. package/dist-cjs/commands/AddBridgeSourcesCommand.js +45 -0
  5. package/dist-cjs/commands/CreateBridgeCommand.js +45 -0
  6. package/dist-cjs/commands/CreateGatewayCommand.js +45 -0
  7. package/dist-cjs/commands/DeleteBridgeCommand.js +45 -0
  8. package/dist-cjs/commands/DeleteGatewayCommand.js +45 -0
  9. package/dist-cjs/commands/DeregisterGatewayInstanceCommand.js +45 -0
  10. package/dist-cjs/commands/DescribeBridgeCommand.js +45 -0
  11. package/dist-cjs/commands/DescribeGatewayCommand.js +45 -0
  12. package/dist-cjs/commands/DescribeGatewayInstanceCommand.js +45 -0
  13. package/dist-cjs/commands/ListBridgesCommand.js +45 -0
  14. package/dist-cjs/commands/ListGatewayInstancesCommand.js +45 -0
  15. package/dist-cjs/commands/ListGatewaysCommand.js +45 -0
  16. package/dist-cjs/commands/RemoveBridgeOutputCommand.js +45 -0
  17. package/dist-cjs/commands/RemoveBridgeSourceCommand.js +45 -0
  18. package/dist-cjs/commands/UpdateBridgeCommand.js +45 -0
  19. package/dist-cjs/commands/UpdateBridgeOutputCommand.js +45 -0
  20. package/dist-cjs/commands/UpdateBridgeSourceCommand.js +45 -0
  21. package/dist-cjs/commands/UpdateBridgeStateCommand.js +45 -0
  22. package/dist-cjs/commands/UpdateGatewayInstanceCommand.js +45 -0
  23. package/dist-cjs/commands/index.js +20 -0
  24. package/dist-cjs/endpoint/ruleset.js +3 -3
  25. package/dist-cjs/models/models_0.js +106 -20
  26. package/dist-cjs/pagination/ListBridgesPaginator.js +29 -0
  27. package/dist-cjs/pagination/ListGatewayInstancesPaginator.js +29 -0
  28. package/dist-cjs/pagination/ListGatewaysPaginator.js +29 -0
  29. package/dist-cjs/pagination/index.js +3 -0
  30. package/dist-cjs/protocols/Aws_restJson1.js +2045 -140
  31. package/dist-es/MediaConnect.js +300 -0
  32. package/dist-es/commands/AddBridgeOutputsCommand.js +41 -0
  33. package/dist-es/commands/AddBridgeSourcesCommand.js +41 -0
  34. package/dist-es/commands/CreateBridgeCommand.js +41 -0
  35. package/dist-es/commands/CreateGatewayCommand.js +41 -0
  36. package/dist-es/commands/DeleteBridgeCommand.js +41 -0
  37. package/dist-es/commands/DeleteGatewayCommand.js +41 -0
  38. package/dist-es/commands/DeregisterGatewayInstanceCommand.js +41 -0
  39. package/dist-es/commands/DescribeBridgeCommand.js +41 -0
  40. package/dist-es/commands/DescribeGatewayCommand.js +41 -0
  41. package/dist-es/commands/DescribeGatewayInstanceCommand.js +41 -0
  42. package/dist-es/commands/ListBridgesCommand.js +41 -0
  43. package/dist-es/commands/ListGatewayInstancesCommand.js +41 -0
  44. package/dist-es/commands/ListGatewaysCommand.js +41 -0
  45. package/dist-es/commands/RemoveBridgeOutputCommand.js +41 -0
  46. package/dist-es/commands/RemoveBridgeSourceCommand.js +41 -0
  47. package/dist-es/commands/UpdateBridgeCommand.js +41 -0
  48. package/dist-es/commands/UpdateBridgeOutputCommand.js +41 -0
  49. package/dist-es/commands/UpdateBridgeSourceCommand.js +41 -0
  50. package/dist-es/commands/UpdateBridgeStateCommand.js +41 -0
  51. package/dist-es/commands/UpdateGatewayInstanceCommand.js +41 -0
  52. package/dist-es/commands/index.js +20 -0
  53. package/dist-es/endpoint/ruleset.js +3 -3
  54. package/dist-es/models/models_0.js +102 -19
  55. package/dist-es/pagination/ListBridgesPaginator.js +25 -0
  56. package/dist-es/pagination/ListGatewayInstancesPaginator.js +25 -0
  57. package/dist-es/pagination/ListGatewaysPaginator.js +25 -0
  58. package/dist-es/pagination/index.js +3 -0
  59. package/dist-es/protocols/Aws_restJson1.js +2002 -137
  60. package/dist-types/MediaConnect.d.ts +160 -0
  61. package/dist-types/MediaConnectClient.d.ts +22 -2
  62. package/dist-types/commands/AddBridgeOutputsCommand.d.ts +96 -0
  63. package/dist-types/commands/AddBridgeSourcesCommand.d.ts +102 -0
  64. package/dist-types/commands/AddFlowOutputsCommand.d.ts +1 -1
  65. package/dist-types/commands/AddFlowSourcesCommand.d.ts +7 -1
  66. package/dist-types/commands/CreateBridgeCommand.d.ts +130 -0
  67. package/dist-types/commands/CreateFlowCommand.d.ts +15 -3
  68. package/dist-types/commands/CreateGatewayCommand.d.ts +93 -0
  69. package/dist-types/commands/DeleteBridgeCommand.d.ts +84 -0
  70. package/dist-types/commands/DeleteGatewayCommand.d.ts +84 -0
  71. package/dist-types/commands/DeregisterGatewayInstanceCommand.d.ts +85 -0
  72. package/dist-types/commands/DescribeBridgeCommand.d.ts +84 -0
  73. package/dist-types/commands/DescribeGatewayCommand.d.ts +84 -0
  74. package/dist-types/commands/DescribeGatewayInstanceCommand.d.ts +84 -0
  75. package/dist-types/commands/ListBridgesCommand.d.ts +80 -0
  76. package/dist-types/commands/ListGatewayInstancesCommand.d.ts +80 -0
  77. package/dist-types/commands/ListGatewaysCommand.d.ts +79 -0
  78. package/dist-types/commands/RemoveBridgeOutputCommand.d.ts +85 -0
  79. package/dist-types/commands/RemoveBridgeSourceCommand.d.ts +85 -0
  80. package/dist-types/commands/UpdateBridgeCommand.d.ts +99 -0
  81. package/dist-types/commands/UpdateBridgeOutputCommand.d.ts +92 -0
  82. package/dist-types/commands/UpdateBridgeSourceCommand.d.ts +97 -0
  83. package/dist-types/commands/UpdateBridgeStateCommand.d.ts +85 -0
  84. package/dist-types/commands/UpdateFlowOutputCommand.d.ts +1 -1
  85. package/dist-types/commands/UpdateFlowSourceCommand.d.ts +7 -1
  86. package/dist-types/commands/UpdateGatewayInstanceCommand.d.ts +85 -0
  87. package/dist-types/commands/index.d.ts +20 -0
  88. package/dist-types/models/models_0.d.ts +1340 -85
  89. package/dist-types/pagination/ListBridgesPaginator.d.ts +7 -0
  90. package/dist-types/pagination/ListGatewayInstancesPaginator.d.ts +7 -0
  91. package/dist-types/pagination/ListGatewaysPaginator.d.ts +7 -0
  92. package/dist-types/pagination/index.d.ts +3 -0
  93. package/dist-types/protocols/Aws_restJson1.d.ts +180 -0
  94. package/dist-types/ts3.4/MediaConnect.d.ts +340 -0
  95. package/dist-types/ts3.4/MediaConnectClient.d.ts +122 -2
  96. package/dist-types/ts3.4/commands/AddBridgeOutputsCommand.d.ts +37 -0
  97. package/dist-types/ts3.4/commands/AddBridgeSourcesCommand.d.ts +37 -0
  98. package/dist-types/ts3.4/commands/CreateBridgeCommand.d.ts +34 -0
  99. package/dist-types/ts3.4/commands/CreateGatewayCommand.d.ts +37 -0
  100. package/dist-types/ts3.4/commands/DeleteBridgeCommand.d.ts +34 -0
  101. package/dist-types/ts3.4/commands/DeleteGatewayCommand.d.ts +37 -0
  102. package/dist-types/ts3.4/commands/DeregisterGatewayInstanceCommand.d.ts +41 -0
  103. package/dist-types/ts3.4/commands/DescribeBridgeCommand.d.ts +37 -0
  104. package/dist-types/ts3.4/commands/DescribeGatewayCommand.d.ts +37 -0
  105. package/dist-types/ts3.4/commands/DescribeGatewayInstanceCommand.d.ts +41 -0
  106. package/dist-types/ts3.4/commands/ListBridgesCommand.d.ts +34 -0
  107. package/dist-types/ts3.4/commands/ListGatewayInstancesCommand.d.ts +41 -0
  108. package/dist-types/ts3.4/commands/ListGatewaysCommand.d.ts +34 -0
  109. package/dist-types/ts3.4/commands/RemoveBridgeOutputCommand.d.ts +38 -0
  110. package/dist-types/ts3.4/commands/RemoveBridgeSourceCommand.d.ts +38 -0
  111. package/dist-types/ts3.4/commands/UpdateBridgeCommand.d.ts +34 -0
  112. package/dist-types/ts3.4/commands/UpdateBridgeOutputCommand.d.ts +38 -0
  113. package/dist-types/ts3.4/commands/UpdateBridgeSourceCommand.d.ts +38 -0
  114. package/dist-types/ts3.4/commands/UpdateBridgeStateCommand.d.ts +38 -0
  115. package/dist-types/ts3.4/commands/UpdateGatewayInstanceCommand.d.ts +41 -0
  116. package/dist-types/ts3.4/commands/index.d.ts +20 -0
  117. package/dist-types/ts3.4/models/models_0.d.ts +442 -33
  118. package/dist-types/ts3.4/pagination/ListBridgesPaginator.d.ts +11 -0
  119. package/dist-types/ts3.4/pagination/ListGatewayInstancesPaginator.d.ts +11 -0
  120. package/dist-types/ts3.4/pagination/ListGatewaysPaginator.d.ts +11 -0
  121. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  122. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +240 -0
  123. package/package.json +2 -2
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ MediaConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MediaConnectClient";
14
+ import {
15
+ AddBridgeOutputsRequest,
16
+ AddBridgeOutputsResponse,
17
+ } from "../models/models_0";
18
+ export interface AddBridgeOutputsCommandInput extends AddBridgeOutputsRequest {}
19
+ export interface AddBridgeOutputsCommandOutput
20
+ extends AddBridgeOutputsResponse,
21
+ __MetadataBearer {}
22
+ export declare class AddBridgeOutputsCommand extends $Command<
23
+ AddBridgeOutputsCommandInput,
24
+ AddBridgeOutputsCommandOutput,
25
+ MediaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: AddBridgeOutputsCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: AddBridgeOutputsCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: MediaConnectClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<AddBridgeOutputsCommandInput, AddBridgeOutputsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ MediaConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MediaConnectClient";
14
+ import {
15
+ AddBridgeSourcesRequest,
16
+ AddBridgeSourcesResponse,
17
+ } from "../models/models_0";
18
+ export interface AddBridgeSourcesCommandInput extends AddBridgeSourcesRequest {}
19
+ export interface AddBridgeSourcesCommandOutput
20
+ extends AddBridgeSourcesResponse,
21
+ __MetadataBearer {}
22
+ export declare class AddBridgeSourcesCommand extends $Command<
23
+ AddBridgeSourcesCommandInput,
24
+ AddBridgeSourcesCommandOutput,
25
+ MediaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: AddBridgeSourcesCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: AddBridgeSourcesCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: MediaConnectClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<AddBridgeSourcesCommandInput, AddBridgeSourcesCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,34 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ MediaConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MediaConnectClient";
14
+ import { CreateBridgeRequest, CreateBridgeResponse } from "../models/models_0";
15
+ export interface CreateBridgeCommandInput extends CreateBridgeRequest {}
16
+ export interface CreateBridgeCommandOutput
17
+ extends CreateBridgeResponse,
18
+ __MetadataBearer {}
19
+ export declare class CreateBridgeCommand extends $Command<
20
+ CreateBridgeCommandInput,
21
+ CreateBridgeCommandOutput,
22
+ MediaConnectClientResolvedConfig
23
+ > {
24
+ readonly input: CreateBridgeCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: CreateBridgeCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConnectClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CreateBridgeCommandInput, CreateBridgeCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ MediaConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MediaConnectClient";
14
+ import {
15
+ CreateGatewayRequest,
16
+ CreateGatewayResponse,
17
+ } from "../models/models_0";
18
+ export interface CreateGatewayCommandInput extends CreateGatewayRequest {}
19
+ export interface CreateGatewayCommandOutput
20
+ extends CreateGatewayResponse,
21
+ __MetadataBearer {}
22
+ export declare class CreateGatewayCommand extends $Command<
23
+ CreateGatewayCommandInput,
24
+ CreateGatewayCommandOutput,
25
+ MediaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: CreateGatewayCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: CreateGatewayCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: MediaConnectClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<CreateGatewayCommandInput, CreateGatewayCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,34 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ MediaConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MediaConnectClient";
14
+ import { DeleteBridgeRequest, DeleteBridgeResponse } from "../models/models_0";
15
+ export interface DeleteBridgeCommandInput extends DeleteBridgeRequest {}
16
+ export interface DeleteBridgeCommandOutput
17
+ extends DeleteBridgeResponse,
18
+ __MetadataBearer {}
19
+ export declare class DeleteBridgeCommand extends $Command<
20
+ DeleteBridgeCommandInput,
21
+ DeleteBridgeCommandOutput,
22
+ MediaConnectClientResolvedConfig
23
+ > {
24
+ readonly input: DeleteBridgeCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: DeleteBridgeCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConnectClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DeleteBridgeCommandInput, DeleteBridgeCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ MediaConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MediaConnectClient";
14
+ import {
15
+ DeleteGatewayRequest,
16
+ DeleteGatewayResponse,
17
+ } from "../models/models_0";
18
+ export interface DeleteGatewayCommandInput extends DeleteGatewayRequest {}
19
+ export interface DeleteGatewayCommandOutput
20
+ extends DeleteGatewayResponse,
21
+ __MetadataBearer {}
22
+ export declare class DeleteGatewayCommand extends $Command<
23
+ DeleteGatewayCommandInput,
24
+ DeleteGatewayCommandOutput,
25
+ MediaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: DeleteGatewayCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: DeleteGatewayCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: MediaConnectClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DeleteGatewayCommandInput, DeleteGatewayCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ MediaConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MediaConnectClient";
14
+ import {
15
+ DeregisterGatewayInstanceRequest,
16
+ DeregisterGatewayInstanceResponse,
17
+ } from "../models/models_0";
18
+ export interface DeregisterGatewayInstanceCommandInput
19
+ extends DeregisterGatewayInstanceRequest {}
20
+ export interface DeregisterGatewayInstanceCommandOutput
21
+ extends DeregisterGatewayInstanceResponse,
22
+ __MetadataBearer {}
23
+ export declare class DeregisterGatewayInstanceCommand extends $Command<
24
+ DeregisterGatewayInstanceCommandInput,
25
+ DeregisterGatewayInstanceCommandOutput,
26
+ MediaConnectClientResolvedConfig
27
+ > {
28
+ readonly input: DeregisterGatewayInstanceCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: DeregisterGatewayInstanceCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaConnectClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DeregisterGatewayInstanceCommandInput,
37
+ DeregisterGatewayInstanceCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ MediaConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MediaConnectClient";
14
+ import {
15
+ DescribeBridgeRequest,
16
+ DescribeBridgeResponse,
17
+ } from "../models/models_0";
18
+ export interface DescribeBridgeCommandInput extends DescribeBridgeRequest {}
19
+ export interface DescribeBridgeCommandOutput
20
+ extends DescribeBridgeResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeBridgeCommand extends $Command<
23
+ DescribeBridgeCommandInput,
24
+ DescribeBridgeCommandOutput,
25
+ MediaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeBridgeCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: DescribeBridgeCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: MediaConnectClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DescribeBridgeCommandInput, DescribeBridgeCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,37 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ MediaConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MediaConnectClient";
14
+ import {
15
+ DescribeGatewayRequest,
16
+ DescribeGatewayResponse,
17
+ } from "../models/models_0";
18
+ export interface DescribeGatewayCommandInput extends DescribeGatewayRequest {}
19
+ export interface DescribeGatewayCommandOutput
20
+ extends DescribeGatewayResponse,
21
+ __MetadataBearer {}
22
+ export declare class DescribeGatewayCommand extends $Command<
23
+ DescribeGatewayCommandInput,
24
+ DescribeGatewayCommandOutput,
25
+ MediaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeGatewayCommandInput;
28
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
29
+ constructor(input: DescribeGatewayCommandInput);
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: MediaConnectClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DescribeGatewayCommandInput, DescribeGatewayCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ MediaConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MediaConnectClient";
14
+ import {
15
+ DescribeGatewayInstanceRequest,
16
+ DescribeGatewayInstanceResponse,
17
+ } from "../models/models_0";
18
+ export interface DescribeGatewayInstanceCommandInput
19
+ extends DescribeGatewayInstanceRequest {}
20
+ export interface DescribeGatewayInstanceCommandOutput
21
+ extends DescribeGatewayInstanceResponse,
22
+ __MetadataBearer {}
23
+ export declare class DescribeGatewayInstanceCommand extends $Command<
24
+ DescribeGatewayInstanceCommandInput,
25
+ DescribeGatewayInstanceCommandOutput,
26
+ MediaConnectClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeGatewayInstanceCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: DescribeGatewayInstanceCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaConnectClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ DescribeGatewayInstanceCommandInput,
37
+ DescribeGatewayInstanceCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -0,0 +1,34 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ MediaConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MediaConnectClient";
14
+ import { ListBridgesRequest, ListBridgesResponse } from "../models/models_0";
15
+ export interface ListBridgesCommandInput extends ListBridgesRequest {}
16
+ export interface ListBridgesCommandOutput
17
+ extends ListBridgesResponse,
18
+ __MetadataBearer {}
19
+ export declare class ListBridgesCommand extends $Command<
20
+ ListBridgesCommandInput,
21
+ ListBridgesCommandOutput,
22
+ MediaConnectClientResolvedConfig
23
+ > {
24
+ readonly input: ListBridgesCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: ListBridgesCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConnectClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListBridgesCommandInput, ListBridgesCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -0,0 +1,41 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ MediaConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MediaConnectClient";
14
+ import {
15
+ ListGatewayInstancesRequest,
16
+ ListGatewayInstancesResponse,
17
+ } from "../models/models_0";
18
+ export interface ListGatewayInstancesCommandInput
19
+ extends ListGatewayInstancesRequest {}
20
+ export interface ListGatewayInstancesCommandOutput
21
+ extends ListGatewayInstancesResponse,
22
+ __MetadataBearer {}
23
+ export declare class ListGatewayInstancesCommand extends $Command<
24
+ ListGatewayInstancesCommandInput,
25
+ ListGatewayInstancesCommandOutput,
26
+ MediaConnectClientResolvedConfig
27
+ > {
28
+ readonly input: ListGatewayInstancesCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: ListGatewayInstancesCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaConnectClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ ListGatewayInstancesCommandInput,
37
+ ListGatewayInstancesCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -0,0 +1,34 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ MediaConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MediaConnectClient";
14
+ import { ListGatewaysRequest, ListGatewaysResponse } from "../models/models_0";
15
+ export interface ListGatewaysCommandInput extends ListGatewaysRequest {}
16
+ export interface ListGatewaysCommandOutput
17
+ extends ListGatewaysResponse,
18
+ __MetadataBearer {}
19
+ export declare class ListGatewaysCommand extends $Command<
20
+ ListGatewaysCommandInput,
21
+ ListGatewaysCommandOutput,
22
+ MediaConnectClientResolvedConfig
23
+ > {
24
+ readonly input: ListGatewaysCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: ListGatewaysCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConnectClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListGatewaysCommandInput, ListGatewaysCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ MediaConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MediaConnectClient";
14
+ import {
15
+ RemoveBridgeOutputRequest,
16
+ RemoveBridgeOutputResponse,
17
+ } from "../models/models_0";
18
+ export interface RemoveBridgeOutputCommandInput
19
+ extends RemoveBridgeOutputRequest {}
20
+ export interface RemoveBridgeOutputCommandOutput
21
+ extends RemoveBridgeOutputResponse,
22
+ __MetadataBearer {}
23
+ export declare class RemoveBridgeOutputCommand extends $Command<
24
+ RemoveBridgeOutputCommandInput,
25
+ RemoveBridgeOutputCommandOutput,
26
+ MediaConnectClientResolvedConfig
27
+ > {
28
+ readonly input: RemoveBridgeOutputCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: RemoveBridgeOutputCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaConnectClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<RemoveBridgeOutputCommandInput, RemoveBridgeOutputCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ MediaConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MediaConnectClient";
14
+ import {
15
+ RemoveBridgeSourceRequest,
16
+ RemoveBridgeSourceResponse,
17
+ } from "../models/models_0";
18
+ export interface RemoveBridgeSourceCommandInput
19
+ extends RemoveBridgeSourceRequest {}
20
+ export interface RemoveBridgeSourceCommandOutput
21
+ extends RemoveBridgeSourceResponse,
22
+ __MetadataBearer {}
23
+ export declare class RemoveBridgeSourceCommand extends $Command<
24
+ RemoveBridgeSourceCommandInput,
25
+ RemoveBridgeSourceCommandOutput,
26
+ MediaConnectClientResolvedConfig
27
+ > {
28
+ readonly input: RemoveBridgeSourceCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: RemoveBridgeSourceCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaConnectClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<RemoveBridgeSourceCommandInput, RemoveBridgeSourceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -0,0 +1,34 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ MediaConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MediaConnectClient";
14
+ import { UpdateBridgeRequest, UpdateBridgeResponse } from "../models/models_0";
15
+ export interface UpdateBridgeCommandInput extends UpdateBridgeRequest {}
16
+ export interface UpdateBridgeCommandOutput
17
+ extends UpdateBridgeResponse,
18
+ __MetadataBearer {}
19
+ export declare class UpdateBridgeCommand extends $Command<
20
+ UpdateBridgeCommandInput,
21
+ UpdateBridgeCommandOutput,
22
+ MediaConnectClientResolvedConfig
23
+ > {
24
+ readonly input: UpdateBridgeCommandInput;
25
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
26
+ constructor(input: UpdateBridgeCommandInput);
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConnectClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<UpdateBridgeCommandInput, UpdateBridgeCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -0,0 +1,38 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ MediaConnectClientResolvedConfig,
11
+ ServiceInputTypes,
12
+ ServiceOutputTypes,
13
+ } from "../MediaConnectClient";
14
+ import {
15
+ UpdateBridgeOutputRequest,
16
+ UpdateBridgeOutputResponse,
17
+ } from "../models/models_0";
18
+ export interface UpdateBridgeOutputCommandInput
19
+ extends UpdateBridgeOutputRequest {}
20
+ export interface UpdateBridgeOutputCommandOutput
21
+ extends UpdateBridgeOutputResponse,
22
+ __MetadataBearer {}
23
+ export declare class UpdateBridgeOutputCommand extends $Command<
24
+ UpdateBridgeOutputCommandInput,
25
+ UpdateBridgeOutputCommandOutput,
26
+ MediaConnectClientResolvedConfig
27
+ > {
28
+ readonly input: UpdateBridgeOutputCommandInput;
29
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
30
+ constructor(input: UpdateBridgeOutputCommandInput);
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaConnectClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<UpdateBridgeOutputCommandInput, UpdateBridgeOutputCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }