@aws-sdk/client-mediaconnect 3.312.0 → 3.315.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 +2740 -1056
  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 +2627 -983
  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 +6 -6
@@ -0,0 +1,84 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
5
+ import { DescribeGatewayRequest, DescribeGatewayResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ *
9
+ * The input for {@link DescribeGatewayCommand}.
10
+ */
11
+ export interface DescribeGatewayCommandInput extends DescribeGatewayRequest {
12
+ }
13
+ /**
14
+ * @public
15
+ *
16
+ * The output of {@link DescribeGatewayCommand}.
17
+ */
18
+ export interface DescribeGatewayCommandOutput extends DescribeGatewayResponse, __MetadataBearer {
19
+ }
20
+ /**
21
+ * @public
22
+ * Displays the details of a gateway. The response includes the gateway ARN, name, and CIDR blocks, as well as details about the networks.
23
+ * @example
24
+ * Use a bare-bones client and the command you need to make an API call.
25
+ * ```javascript
26
+ * import { MediaConnectClient, DescribeGatewayCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
27
+ * // const { MediaConnectClient, DescribeGatewayCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
28
+ * const client = new MediaConnectClient(config);
29
+ * const input = { // DescribeGatewayRequest
30
+ * GatewayArn: "STRING_VALUE", // required
31
+ * };
32
+ * const command = new DescribeGatewayCommand(input);
33
+ * const response = await client.send(command);
34
+ * ```
35
+ *
36
+ * @param DescribeGatewayCommandInput - {@link DescribeGatewayCommandInput}
37
+ * @returns {@link DescribeGatewayCommandOutput}
38
+ * @see {@link DescribeGatewayCommandInput} for command's `input` shape.
39
+ * @see {@link DescribeGatewayCommandOutput} for command's `response` shape.
40
+ * @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
41
+ *
42
+ * @throws {@link BadRequestException} (client fault)
43
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
44
+ *
45
+ * @throws {@link ConflictException} (client fault)
46
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
47
+ *
48
+ * @throws {@link ForbiddenException} (client fault)
49
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
50
+ *
51
+ * @throws {@link InternalServerErrorException} (server fault)
52
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
53
+ *
54
+ * @throws {@link NotFoundException} (client fault)
55
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
56
+ *
57
+ * @throws {@link ServiceUnavailableException} (server fault)
58
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
59
+ *
60
+ * @throws {@link TooManyRequestsException} (client fault)
61
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
62
+ *
63
+ *
64
+ */
65
+ export declare class DescribeGatewayCommand extends $Command<DescribeGatewayCommandInput, DescribeGatewayCommandOutput, MediaConnectClientResolvedConfig> {
66
+ readonly input: DescribeGatewayCommandInput;
67
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
68
+ /**
69
+ * @public
70
+ */
71
+ constructor(input: DescribeGatewayCommandInput);
72
+ /**
73
+ * @internal
74
+ */
75
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeGatewayCommandInput, DescribeGatewayCommandOutput>;
76
+ /**
77
+ * @internal
78
+ */
79
+ private serialize;
80
+ /**
81
+ * @internal
82
+ */
83
+ private deserialize;
84
+ }
@@ -0,0 +1,84 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
5
+ import { DescribeGatewayInstanceRequest, DescribeGatewayInstanceResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ *
9
+ * The input for {@link DescribeGatewayInstanceCommand}.
10
+ */
11
+ export interface DescribeGatewayInstanceCommandInput extends DescribeGatewayInstanceRequest {
12
+ }
13
+ /**
14
+ * @public
15
+ *
16
+ * The output of {@link DescribeGatewayInstanceCommand}.
17
+ */
18
+ export interface DescribeGatewayInstanceCommandOutput extends DescribeGatewayInstanceResponse, __MetadataBearer {
19
+ }
20
+ /**
21
+ * @public
22
+ * Displays the details of an instance.
23
+ * @example
24
+ * Use a bare-bones client and the command you need to make an API call.
25
+ * ```javascript
26
+ * import { MediaConnectClient, DescribeGatewayInstanceCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
27
+ * // const { MediaConnectClient, DescribeGatewayInstanceCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
28
+ * const client = new MediaConnectClient(config);
29
+ * const input = { // DescribeGatewayInstanceRequest
30
+ * GatewayInstanceArn: "STRING_VALUE", // required
31
+ * };
32
+ * const command = new DescribeGatewayInstanceCommand(input);
33
+ * const response = await client.send(command);
34
+ * ```
35
+ *
36
+ * @param DescribeGatewayInstanceCommandInput - {@link DescribeGatewayInstanceCommandInput}
37
+ * @returns {@link DescribeGatewayInstanceCommandOutput}
38
+ * @see {@link DescribeGatewayInstanceCommandInput} for command's `input` shape.
39
+ * @see {@link DescribeGatewayInstanceCommandOutput} for command's `response` shape.
40
+ * @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
41
+ *
42
+ * @throws {@link BadRequestException} (client fault)
43
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
44
+ *
45
+ * @throws {@link ConflictException} (client fault)
46
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
47
+ *
48
+ * @throws {@link ForbiddenException} (client fault)
49
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
50
+ *
51
+ * @throws {@link InternalServerErrorException} (server fault)
52
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
53
+ *
54
+ * @throws {@link NotFoundException} (client fault)
55
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
56
+ *
57
+ * @throws {@link ServiceUnavailableException} (server fault)
58
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
59
+ *
60
+ * @throws {@link TooManyRequestsException} (client fault)
61
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
62
+ *
63
+ *
64
+ */
65
+ export declare class DescribeGatewayInstanceCommand extends $Command<DescribeGatewayInstanceCommandInput, DescribeGatewayInstanceCommandOutput, MediaConnectClientResolvedConfig> {
66
+ readonly input: DescribeGatewayInstanceCommandInput;
67
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
68
+ /**
69
+ * @public
70
+ */
71
+ constructor(input: DescribeGatewayInstanceCommandInput);
72
+ /**
73
+ * @internal
74
+ */
75
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeGatewayInstanceCommandInput, DescribeGatewayInstanceCommandOutput>;
76
+ /**
77
+ * @internal
78
+ */
79
+ private serialize;
80
+ /**
81
+ * @internal
82
+ */
83
+ private deserialize;
84
+ }
@@ -0,0 +1,80 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
5
+ import { ListBridgesRequest, ListBridgesResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ *
9
+ * The input for {@link ListBridgesCommand}.
10
+ */
11
+ export interface ListBridgesCommandInput extends ListBridgesRequest {
12
+ }
13
+ /**
14
+ * @public
15
+ *
16
+ * The output of {@link ListBridgesCommand}.
17
+ */
18
+ export interface ListBridgesCommandOutput extends ListBridgesResponse, __MetadataBearer {
19
+ }
20
+ /**
21
+ * @public
22
+ * Displays a list of bridges that are associated with this account and an optionally specified Arn. This request returns a paginated result.
23
+ * @example
24
+ * Use a bare-bones client and the command you need to make an API call.
25
+ * ```javascript
26
+ * import { MediaConnectClient, ListBridgesCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
27
+ * // const { MediaConnectClient, ListBridgesCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
28
+ * const client = new MediaConnectClient(config);
29
+ * const input = { // ListBridgesRequest
30
+ * FilterArn: "STRING_VALUE",
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
34
+ * const command = new ListBridgesCommand(input);
35
+ * const response = await client.send(command);
36
+ * ```
37
+ *
38
+ * @param ListBridgesCommandInput - {@link ListBridgesCommandInput}
39
+ * @returns {@link ListBridgesCommandOutput}
40
+ * @see {@link ListBridgesCommandInput} for command's `input` shape.
41
+ * @see {@link ListBridgesCommandOutput} for command's `response` shape.
42
+ * @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
43
+ *
44
+ * @throws {@link BadRequestException} (client fault)
45
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
46
+ *
47
+ * @throws {@link ConflictException} (client fault)
48
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
49
+ *
50
+ * @throws {@link InternalServerErrorException} (server fault)
51
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
52
+ *
53
+ * @throws {@link ServiceUnavailableException} (server fault)
54
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
55
+ *
56
+ * @throws {@link TooManyRequestsException} (client fault)
57
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
58
+ *
59
+ *
60
+ */
61
+ export declare class ListBridgesCommand extends $Command<ListBridgesCommandInput, ListBridgesCommandOutput, MediaConnectClientResolvedConfig> {
62
+ readonly input: ListBridgesCommandInput;
63
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
67
+ constructor(input: ListBridgesCommandInput);
68
+ /**
69
+ * @internal
70
+ */
71
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListBridgesCommandInput, ListBridgesCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
75
+ private serialize;
76
+ /**
77
+ * @internal
78
+ */
79
+ private deserialize;
80
+ }
@@ -0,0 +1,80 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
5
+ import { ListGatewayInstancesRequest, ListGatewayInstancesResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ *
9
+ * The input for {@link ListGatewayInstancesCommand}.
10
+ */
11
+ export interface ListGatewayInstancesCommandInput extends ListGatewayInstancesRequest {
12
+ }
13
+ /**
14
+ * @public
15
+ *
16
+ * The output of {@link ListGatewayInstancesCommand}.
17
+ */
18
+ export interface ListGatewayInstancesCommandOutput extends ListGatewayInstancesResponse, __MetadataBearer {
19
+ }
20
+ /**
21
+ * @public
22
+ * Displays a list of instances associated with the AWS account. This request returns a paginated result. You can use the filterArn property to display only the instances associated with the selected Gateway Amazon Resource Name (ARN).
23
+ * @example
24
+ * Use a bare-bones client and the command you need to make an API call.
25
+ * ```javascript
26
+ * import { MediaConnectClient, ListGatewayInstancesCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
27
+ * // const { MediaConnectClient, ListGatewayInstancesCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
28
+ * const client = new MediaConnectClient(config);
29
+ * const input = { // ListGatewayInstancesRequest
30
+ * FilterArn: "STRING_VALUE",
31
+ * MaxResults: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * };
34
+ * const command = new ListGatewayInstancesCommand(input);
35
+ * const response = await client.send(command);
36
+ * ```
37
+ *
38
+ * @param ListGatewayInstancesCommandInput - {@link ListGatewayInstancesCommandInput}
39
+ * @returns {@link ListGatewayInstancesCommandOutput}
40
+ * @see {@link ListGatewayInstancesCommandInput} for command's `input` shape.
41
+ * @see {@link ListGatewayInstancesCommandOutput} for command's `response` shape.
42
+ * @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
43
+ *
44
+ * @throws {@link BadRequestException} (client fault)
45
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
46
+ *
47
+ * @throws {@link ConflictException} (client fault)
48
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
49
+ *
50
+ * @throws {@link InternalServerErrorException} (server fault)
51
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
52
+ *
53
+ * @throws {@link ServiceUnavailableException} (server fault)
54
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
55
+ *
56
+ * @throws {@link TooManyRequestsException} (client fault)
57
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
58
+ *
59
+ *
60
+ */
61
+ export declare class ListGatewayInstancesCommand extends $Command<ListGatewayInstancesCommandInput, ListGatewayInstancesCommandOutput, MediaConnectClientResolvedConfig> {
62
+ readonly input: ListGatewayInstancesCommandInput;
63
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
64
+ /**
65
+ * @public
66
+ */
67
+ constructor(input: ListGatewayInstancesCommandInput);
68
+ /**
69
+ * @internal
70
+ */
71
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListGatewayInstancesCommandInput, ListGatewayInstancesCommandOutput>;
72
+ /**
73
+ * @internal
74
+ */
75
+ private serialize;
76
+ /**
77
+ * @internal
78
+ */
79
+ private deserialize;
80
+ }
@@ -0,0 +1,79 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
5
+ import { ListGatewaysRequest, ListGatewaysResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ *
9
+ * The input for {@link ListGatewaysCommand}.
10
+ */
11
+ export interface ListGatewaysCommandInput extends ListGatewaysRequest {
12
+ }
13
+ /**
14
+ * @public
15
+ *
16
+ * The output of {@link ListGatewaysCommand}.
17
+ */
18
+ export interface ListGatewaysCommandOutput extends ListGatewaysResponse, __MetadataBearer {
19
+ }
20
+ /**
21
+ * @public
22
+ * Displays a list of gateways that are associated with this account. This request returns a paginated result.
23
+ * @example
24
+ * Use a bare-bones client and the command you need to make an API call.
25
+ * ```javascript
26
+ * import { MediaConnectClient, ListGatewaysCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
27
+ * // const { MediaConnectClient, ListGatewaysCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
28
+ * const client = new MediaConnectClient(config);
29
+ * const input = { // ListGatewaysRequest
30
+ * MaxResults: Number("int"),
31
+ * NextToken: "STRING_VALUE",
32
+ * };
33
+ * const command = new ListGatewaysCommand(input);
34
+ * const response = await client.send(command);
35
+ * ```
36
+ *
37
+ * @param ListGatewaysCommandInput - {@link ListGatewaysCommandInput}
38
+ * @returns {@link ListGatewaysCommandOutput}
39
+ * @see {@link ListGatewaysCommandInput} for command's `input` shape.
40
+ * @see {@link ListGatewaysCommandOutput} for command's `response` shape.
41
+ * @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
42
+ *
43
+ * @throws {@link BadRequestException} (client fault)
44
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
45
+ *
46
+ * @throws {@link ConflictException} (client fault)
47
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
48
+ *
49
+ * @throws {@link InternalServerErrorException} (server fault)
50
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
51
+ *
52
+ * @throws {@link ServiceUnavailableException} (server fault)
53
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
54
+ *
55
+ * @throws {@link TooManyRequestsException} (client fault)
56
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
57
+ *
58
+ *
59
+ */
60
+ export declare class ListGatewaysCommand extends $Command<ListGatewaysCommandInput, ListGatewaysCommandOutput, MediaConnectClientResolvedConfig> {
61
+ readonly input: ListGatewaysCommandInput;
62
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
63
+ /**
64
+ * @public
65
+ */
66
+ constructor(input: ListGatewaysCommandInput);
67
+ /**
68
+ * @internal
69
+ */
70
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListGatewaysCommandInput, ListGatewaysCommandOutput>;
71
+ /**
72
+ * @internal
73
+ */
74
+ private serialize;
75
+ /**
76
+ * @internal
77
+ */
78
+ private deserialize;
79
+ }
@@ -0,0 +1,85 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
5
+ import { RemoveBridgeOutputRequest, RemoveBridgeOutputResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ *
9
+ * The input for {@link RemoveBridgeOutputCommand}.
10
+ */
11
+ export interface RemoveBridgeOutputCommandInput extends RemoveBridgeOutputRequest {
12
+ }
13
+ /**
14
+ * @public
15
+ *
16
+ * The output of {@link RemoveBridgeOutputCommand}.
17
+ */
18
+ export interface RemoveBridgeOutputCommandOutput extends RemoveBridgeOutputResponse, __MetadataBearer {
19
+ }
20
+ /**
21
+ * @public
22
+ * Removes an output from a bridge.
23
+ * @example
24
+ * Use a bare-bones client and the command you need to make an API call.
25
+ * ```javascript
26
+ * import { MediaConnectClient, RemoveBridgeOutputCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
27
+ * // const { MediaConnectClient, RemoveBridgeOutputCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
28
+ * const client = new MediaConnectClient(config);
29
+ * const input = { // RemoveBridgeOutputRequest
30
+ * BridgeArn: "STRING_VALUE", // required
31
+ * OutputName: "STRING_VALUE", // required
32
+ * };
33
+ * const command = new RemoveBridgeOutputCommand(input);
34
+ * const response = await client.send(command);
35
+ * ```
36
+ *
37
+ * @param RemoveBridgeOutputCommandInput - {@link RemoveBridgeOutputCommandInput}
38
+ * @returns {@link RemoveBridgeOutputCommandOutput}
39
+ * @see {@link RemoveBridgeOutputCommandInput} for command's `input` shape.
40
+ * @see {@link RemoveBridgeOutputCommandOutput} for command's `response` shape.
41
+ * @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
42
+ *
43
+ * @throws {@link BadRequestException} (client fault)
44
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
45
+ *
46
+ * @throws {@link ConflictException} (client fault)
47
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
48
+ *
49
+ * @throws {@link ForbiddenException} (client fault)
50
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
51
+ *
52
+ * @throws {@link InternalServerErrorException} (server fault)
53
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
54
+ *
55
+ * @throws {@link NotFoundException} (client fault)
56
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
57
+ *
58
+ * @throws {@link ServiceUnavailableException} (server fault)
59
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
60
+ *
61
+ * @throws {@link TooManyRequestsException} (client fault)
62
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
63
+ *
64
+ *
65
+ */
66
+ export declare class RemoveBridgeOutputCommand extends $Command<RemoveBridgeOutputCommandInput, RemoveBridgeOutputCommandOutput, MediaConnectClientResolvedConfig> {
67
+ readonly input: RemoveBridgeOutputCommandInput;
68
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
69
+ /**
70
+ * @public
71
+ */
72
+ constructor(input: RemoveBridgeOutputCommandInput);
73
+ /**
74
+ * @internal
75
+ */
76
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveBridgeOutputCommandInput, RemoveBridgeOutputCommandOutput>;
77
+ /**
78
+ * @internal
79
+ */
80
+ private serialize;
81
+ /**
82
+ * @internal
83
+ */
84
+ private deserialize;
85
+ }
@@ -0,0 +1,85 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
4
+ import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
5
+ import { RemoveBridgeSourceRequest, RemoveBridgeSourceResponse } from "../models/models_0";
6
+ /**
7
+ * @public
8
+ *
9
+ * The input for {@link RemoveBridgeSourceCommand}.
10
+ */
11
+ export interface RemoveBridgeSourceCommandInput extends RemoveBridgeSourceRequest {
12
+ }
13
+ /**
14
+ * @public
15
+ *
16
+ * The output of {@link RemoveBridgeSourceCommand}.
17
+ */
18
+ export interface RemoveBridgeSourceCommandOutput extends RemoveBridgeSourceResponse, __MetadataBearer {
19
+ }
20
+ /**
21
+ * @public
22
+ * Removes a source from a bridge.
23
+ * @example
24
+ * Use a bare-bones client and the command you need to make an API call.
25
+ * ```javascript
26
+ * import { MediaConnectClient, RemoveBridgeSourceCommand } from "@aws-sdk/client-mediaconnect"; // ES Modules import
27
+ * // const { MediaConnectClient, RemoveBridgeSourceCommand } = require("@aws-sdk/client-mediaconnect"); // CommonJS import
28
+ * const client = new MediaConnectClient(config);
29
+ * const input = { // RemoveBridgeSourceRequest
30
+ * BridgeArn: "STRING_VALUE", // required
31
+ * SourceName: "STRING_VALUE", // required
32
+ * };
33
+ * const command = new RemoveBridgeSourceCommand(input);
34
+ * const response = await client.send(command);
35
+ * ```
36
+ *
37
+ * @param RemoveBridgeSourceCommandInput - {@link RemoveBridgeSourceCommandInput}
38
+ * @returns {@link RemoveBridgeSourceCommandOutput}
39
+ * @see {@link RemoveBridgeSourceCommandInput} for command's `input` shape.
40
+ * @see {@link RemoveBridgeSourceCommandOutput} for command's `response` shape.
41
+ * @see {@link MediaConnectClientResolvedConfig | config} for MediaConnectClient's `config` shape.
42
+ *
43
+ * @throws {@link BadRequestException} (client fault)
44
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
45
+ *
46
+ * @throws {@link ConflictException} (client fault)
47
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
48
+ *
49
+ * @throws {@link ForbiddenException} (client fault)
50
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
51
+ *
52
+ * @throws {@link InternalServerErrorException} (server fault)
53
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
54
+ *
55
+ * @throws {@link NotFoundException} (client fault)
56
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
57
+ *
58
+ * @throws {@link ServiceUnavailableException} (server fault)
59
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
60
+ *
61
+ * @throws {@link TooManyRequestsException} (client fault)
62
+ * Exception raised by AWS Elemental MediaConnect. See the error message and documentation for the operation for more information on the cause of this exception.
63
+ *
64
+ *
65
+ */
66
+ export declare class RemoveBridgeSourceCommand extends $Command<RemoveBridgeSourceCommandInput, RemoveBridgeSourceCommandOutput, MediaConnectClientResolvedConfig> {
67
+ readonly input: RemoveBridgeSourceCommandInput;
68
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
69
+ /**
70
+ * @public
71
+ */
72
+ constructor(input: RemoveBridgeSourceCommandInput);
73
+ /**
74
+ * @internal
75
+ */
76
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RemoveBridgeSourceCommandInput, RemoveBridgeSourceCommandOutput>;
77
+ /**
78
+ * @internal
79
+ */
80
+ private serialize;
81
+ /**
82
+ * @internal
83
+ */
84
+ private deserialize;
85
+ }