@aws-sdk/client-mediaconnect 3.169.0 → 3.170.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 (55) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/MediaConnect.d.ts +544 -155
  3. package/dist-types/ts3.4/MediaConnectClient.d.ts +310 -103
  4. package/dist-types/ts3.4/commands/AddFlowMediaStreamsCommand.d.ts +38 -17
  5. package/dist-types/ts3.4/commands/AddFlowOutputsCommand.d.ts +37 -17
  6. package/dist-types/ts3.4/commands/AddFlowSourcesCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/AddFlowVpcInterfacesCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/CreateFlowCommand.d.ts +34 -17
  9. package/dist-types/ts3.4/commands/DeleteFlowCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/DescribeFlowCommand.d.ts +34 -17
  11. package/dist-types/ts3.4/commands/DescribeOfferingCommand.d.ts +37 -17
  12. package/dist-types/ts3.4/commands/DescribeReservationCommand.d.ts +38 -17
  13. package/dist-types/ts3.4/commands/GrantFlowEntitlementsCommand.d.ts +41 -17
  14. package/dist-types/ts3.4/commands/ListEntitlementsCommand.d.ts +37 -17
  15. package/dist-types/ts3.4/commands/ListFlowsCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/ListOfferingsCommand.d.ts +37 -17
  17. package/dist-types/ts3.4/commands/ListReservationsCommand.d.ts +37 -17
  18. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  19. package/dist-types/ts3.4/commands/PurchaseOfferingCommand.d.ts +37 -17
  20. package/dist-types/ts3.4/commands/RemoveFlowMediaStreamCommand.d.ts +41 -17
  21. package/dist-types/ts3.4/commands/RemoveFlowOutputCommand.d.ts +37 -17
  22. package/dist-types/ts3.4/commands/RemoveFlowSourceCommand.d.ts +37 -17
  23. package/dist-types/ts3.4/commands/RemoveFlowVpcInterfaceCommand.d.ts +41 -17
  24. package/dist-types/ts3.4/commands/RevokeFlowEntitlementCommand.d.ts +41 -17
  25. package/dist-types/ts3.4/commands/StartFlowCommand.d.ts +34 -17
  26. package/dist-types/ts3.4/commands/StopFlowCommand.d.ts +34 -17
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
  29. package/dist-types/ts3.4/commands/UpdateFlowCommand.d.ts +34 -17
  30. package/dist-types/ts3.4/commands/UpdateFlowEntitlementCommand.d.ts +41 -17
  31. package/dist-types/ts3.4/commands/UpdateFlowMediaStreamCommand.d.ts +41 -17
  32. package/dist-types/ts3.4/commands/UpdateFlowOutputCommand.d.ts +37 -17
  33. package/dist-types/ts3.4/commands/UpdateFlowSourceCommand.d.ts +37 -17
  34. package/dist-types/ts3.4/commands/index.d.ts +30 -30
  35. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  36. package/dist-types/ts3.4/index.d.ts +7 -7
  37. package/dist-types/ts3.4/models/MediaConnectServiceException.d.ts +8 -6
  38. package/dist-types/ts3.4/models/index.d.ts +1 -1
  39. package/dist-types/ts3.4/models/models_0.d.ts +1536 -1450
  40. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  41. package/dist-types/ts3.4/pagination/ListEntitlementsPaginator.d.ts +11 -4
  42. package/dist-types/ts3.4/pagination/ListFlowsPaginator.d.ts +11 -4
  43. package/dist-types/ts3.4/pagination/ListOfferingsPaginator.d.ts +11 -4
  44. package/dist-types/ts3.4/pagination/ListReservationsPaginator.d.ts +11 -4
  45. package/dist-types/ts3.4/pagination/index.d.ts +5 -5
  46. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +365 -92
  47. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  48. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  49. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  50. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  51. package/dist-types/ts3.4/waiters/index.d.ts +3 -3
  52. package/dist-types/ts3.4/waiters/waitForFlowActive.d.ts +13 -7
  53. package/dist-types/ts3.4/waiters/waitForFlowDeleted.d.ts +13 -7
  54. package/dist-types/ts3.4/waiters/waitForFlowStandby.d.ts +13 -7
  55. package/package.json +35 -35
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
- import { CreateFlowRequest, CreateFlowResponse } from "../models/models_0";
5
- export interface CreateFlowCommandInput extends CreateFlowRequest {
6
- }
7
- export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class CreateFlowCommand extends $Command<CreateFlowCommandInput, CreateFlowCommandOutput, MediaConnectClientResolvedConfig> {
11
- readonly input: CreateFlowCommandInput;
12
- constructor(input: CreateFlowCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateFlowCommandInput, CreateFlowCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaConnectClient";
13
+ import { CreateFlowRequest, CreateFlowResponse } from "../models/models_0";
14
+ export interface CreateFlowCommandInput extends CreateFlowRequest {}
15
+ export interface CreateFlowCommandOutput
16
+ extends CreateFlowResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class CreateFlowCommand extends $Command<
20
+ CreateFlowCommandInput,
21
+ CreateFlowCommandOutput,
22
+ MediaConnectClientResolvedConfig
23
+ > {
24
+ readonly input: CreateFlowCommandInput;
25
+ constructor(input: CreateFlowCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConnectClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<CreateFlowCommandInput, CreateFlowCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
- import { DeleteFlowRequest, DeleteFlowResponse } from "../models/models_0";
5
- export interface DeleteFlowCommandInput extends DeleteFlowRequest {
6
- }
7
- export interface DeleteFlowCommandOutput extends DeleteFlowResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DeleteFlowCommand extends $Command<DeleteFlowCommandInput, DeleteFlowCommandOutput, MediaConnectClientResolvedConfig> {
11
- readonly input: DeleteFlowCommandInput;
12
- constructor(input: DeleteFlowCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteFlowCommandInput, DeleteFlowCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaConnectClient";
13
+ import { DeleteFlowRequest, DeleteFlowResponse } from "../models/models_0";
14
+ export interface DeleteFlowCommandInput extends DeleteFlowRequest {}
15
+ export interface DeleteFlowCommandOutput
16
+ extends DeleteFlowResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class DeleteFlowCommand extends $Command<
20
+ DeleteFlowCommandInput,
21
+ DeleteFlowCommandOutput,
22
+ MediaConnectClientResolvedConfig
23
+ > {
24
+ readonly input: DeleteFlowCommandInput;
25
+ constructor(input: DeleteFlowCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConnectClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DeleteFlowCommandInput, DeleteFlowCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
- import { DescribeFlowRequest, DescribeFlowResponse } from "../models/models_0";
5
- export interface DescribeFlowCommandInput extends DescribeFlowRequest {
6
- }
7
- export interface DescribeFlowCommandOutput extends DescribeFlowResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeFlowCommand extends $Command<DescribeFlowCommandInput, DescribeFlowCommandOutput, MediaConnectClientResolvedConfig> {
11
- readonly input: DescribeFlowCommandInput;
12
- constructor(input: DescribeFlowCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeFlowCommandInput, DescribeFlowCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaConnectClient";
13
+ import { DescribeFlowRequest, DescribeFlowResponse } from "../models/models_0";
14
+ export interface DescribeFlowCommandInput extends DescribeFlowRequest {}
15
+ export interface DescribeFlowCommandOutput
16
+ extends DescribeFlowResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class DescribeFlowCommand extends $Command<
20
+ DescribeFlowCommandInput,
21
+ DescribeFlowCommandOutput,
22
+ MediaConnectClientResolvedConfig
23
+ > {
24
+ readonly input: DescribeFlowCommandInput;
25
+ constructor(input: DescribeFlowCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConnectClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<DescribeFlowCommandInput, DescribeFlowCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
- import { DescribeOfferingRequest, DescribeOfferingResponse } from "../models/models_0";
5
- export interface DescribeOfferingCommandInput extends DescribeOfferingRequest {
6
- }
7
- export interface DescribeOfferingCommandOutput extends DescribeOfferingResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeOfferingCommand extends $Command<DescribeOfferingCommandInput, DescribeOfferingCommandOutput, MediaConnectClientResolvedConfig> {
11
- readonly input: DescribeOfferingCommandInput;
12
- constructor(input: DescribeOfferingCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeOfferingCommandInput, DescribeOfferingCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaConnectClient";
13
+ import {
14
+ DescribeOfferingRequest,
15
+ DescribeOfferingResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeOfferingCommandInput extends DescribeOfferingRequest {}
18
+ export interface DescribeOfferingCommandOutput
19
+ extends DescribeOfferingResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class DescribeOfferingCommand extends $Command<
23
+ DescribeOfferingCommandInput,
24
+ DescribeOfferingCommandOutput,
25
+ MediaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeOfferingCommandInput;
28
+ constructor(input: DescribeOfferingCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: MediaConnectClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<DescribeOfferingCommandInput, DescribeOfferingCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
- import { DescribeReservationRequest, DescribeReservationResponse } from "../models/models_0";
5
- export interface DescribeReservationCommandInput extends DescribeReservationRequest {
6
- }
7
- export interface DescribeReservationCommandOutput extends DescribeReservationResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class DescribeReservationCommand extends $Command<DescribeReservationCommandInput, DescribeReservationCommandOutput, MediaConnectClientResolvedConfig> {
11
- readonly input: DescribeReservationCommandInput;
12
- constructor(input: DescribeReservationCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeReservationCommandInput, DescribeReservationCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaConnectClient";
13
+ import {
14
+ DescribeReservationRequest,
15
+ DescribeReservationResponse,
16
+ } from "../models/models_0";
17
+ export interface DescribeReservationCommandInput
18
+ extends DescribeReservationRequest {}
19
+ export interface DescribeReservationCommandOutput
20
+ extends DescribeReservationResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class DescribeReservationCommand extends $Command<
24
+ DescribeReservationCommandInput,
25
+ DescribeReservationCommandOutput,
26
+ MediaConnectClientResolvedConfig
27
+ > {
28
+ readonly input: DescribeReservationCommandInput;
29
+ constructor(input: DescribeReservationCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaConnectClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<DescribeReservationCommandInput, DescribeReservationCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }
@@ -1,17 +1,41 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
- import { GrantFlowEntitlementsRequest, GrantFlowEntitlementsResponse } from "../models/models_0";
5
- export interface GrantFlowEntitlementsCommandInput extends GrantFlowEntitlementsRequest {
6
- }
7
- export interface GrantFlowEntitlementsCommandOutput extends GrantFlowEntitlementsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class GrantFlowEntitlementsCommand extends $Command<GrantFlowEntitlementsCommandInput, GrantFlowEntitlementsCommandOutput, MediaConnectClientResolvedConfig> {
11
- readonly input: GrantFlowEntitlementsCommandInput;
12
- constructor(input: GrantFlowEntitlementsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GrantFlowEntitlementsCommandInput, GrantFlowEntitlementsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaConnectClient";
13
+ import {
14
+ GrantFlowEntitlementsRequest,
15
+ GrantFlowEntitlementsResponse,
16
+ } from "../models/models_0";
17
+ export interface GrantFlowEntitlementsCommandInput
18
+ extends GrantFlowEntitlementsRequest {}
19
+ export interface GrantFlowEntitlementsCommandOutput
20
+ extends GrantFlowEntitlementsResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class GrantFlowEntitlementsCommand extends $Command<
24
+ GrantFlowEntitlementsCommandInput,
25
+ GrantFlowEntitlementsCommandOutput,
26
+ MediaConnectClientResolvedConfig
27
+ > {
28
+ readonly input: GrantFlowEntitlementsCommandInput;
29
+ constructor(input: GrantFlowEntitlementsCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaConnectClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<
36
+ GrantFlowEntitlementsCommandInput,
37
+ GrantFlowEntitlementsCommandOutput
38
+ >;
39
+ private serialize;
40
+ private deserialize;
41
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
- import { ListEntitlementsRequest, ListEntitlementsResponse } from "../models/models_0";
5
- export interface ListEntitlementsCommandInput extends ListEntitlementsRequest {
6
- }
7
- export interface ListEntitlementsCommandOutput extends ListEntitlementsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListEntitlementsCommand extends $Command<ListEntitlementsCommandInput, ListEntitlementsCommandOutput, MediaConnectClientResolvedConfig> {
11
- readonly input: ListEntitlementsCommandInput;
12
- constructor(input: ListEntitlementsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListEntitlementsCommandInput, ListEntitlementsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaConnectClient";
13
+ import {
14
+ ListEntitlementsRequest,
15
+ ListEntitlementsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListEntitlementsCommandInput extends ListEntitlementsRequest {}
18
+ export interface ListEntitlementsCommandOutput
19
+ extends ListEntitlementsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListEntitlementsCommand extends $Command<
23
+ ListEntitlementsCommandInput,
24
+ ListEntitlementsCommandOutput,
25
+ MediaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: ListEntitlementsCommandInput;
28
+ constructor(input: ListEntitlementsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: MediaConnectClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListEntitlementsCommandInput, ListEntitlementsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,34 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
- import { ListFlowsRequest, ListFlowsResponse } from "../models/models_0";
5
- export interface ListFlowsCommandInput extends ListFlowsRequest {
6
- }
7
- export interface ListFlowsCommandOutput extends ListFlowsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListFlowsCommand extends $Command<ListFlowsCommandInput, ListFlowsCommandOutput, MediaConnectClientResolvedConfig> {
11
- readonly input: ListFlowsCommandInput;
12
- constructor(input: ListFlowsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFlowsCommandInput, ListFlowsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaConnectClient";
13
+ import { ListFlowsRequest, ListFlowsResponse } from "../models/models_0";
14
+ export interface ListFlowsCommandInput extends ListFlowsRequest {}
15
+ export interface ListFlowsCommandOutput
16
+ extends ListFlowsResponse,
17
+ __MetadataBearer {}
18
+
19
+ export declare class ListFlowsCommand extends $Command<
20
+ ListFlowsCommandInput,
21
+ ListFlowsCommandOutput,
22
+ MediaConnectClientResolvedConfig
23
+ > {
24
+ readonly input: ListFlowsCommandInput;
25
+ constructor(input: ListFlowsCommandInput);
26
+
27
+ resolveMiddleware(
28
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
29
+ configuration: MediaConnectClientResolvedConfig,
30
+ options?: __HttpHandlerOptions
31
+ ): Handler<ListFlowsCommandInput, ListFlowsCommandOutput>;
32
+ private serialize;
33
+ private deserialize;
34
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
- import { ListOfferingsRequest, ListOfferingsResponse } from "../models/models_0";
5
- export interface ListOfferingsCommandInput extends ListOfferingsRequest {
6
- }
7
- export interface ListOfferingsCommandOutput extends ListOfferingsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListOfferingsCommand extends $Command<ListOfferingsCommandInput, ListOfferingsCommandOutput, MediaConnectClientResolvedConfig> {
11
- readonly input: ListOfferingsCommandInput;
12
- constructor(input: ListOfferingsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListOfferingsCommandInput, ListOfferingsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaConnectClient";
13
+ import {
14
+ ListOfferingsRequest,
15
+ ListOfferingsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListOfferingsCommandInput extends ListOfferingsRequest {}
18
+ export interface ListOfferingsCommandOutput
19
+ extends ListOfferingsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListOfferingsCommand extends $Command<
23
+ ListOfferingsCommandInput,
24
+ ListOfferingsCommandOutput,
25
+ MediaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: ListOfferingsCommandInput;
28
+ constructor(input: ListOfferingsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: MediaConnectClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListOfferingsCommandInput, ListOfferingsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,37 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
- import { ListReservationsRequest, ListReservationsResponse } from "../models/models_0";
5
- export interface ListReservationsCommandInput extends ListReservationsRequest {
6
- }
7
- export interface ListReservationsCommandOutput extends ListReservationsResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListReservationsCommand extends $Command<ListReservationsCommandInput, ListReservationsCommandOutput, MediaConnectClientResolvedConfig> {
11
- readonly input: ListReservationsCommandInput;
12
- constructor(input: ListReservationsCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListReservationsCommandInput, ListReservationsCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaConnectClient";
13
+ import {
14
+ ListReservationsRequest,
15
+ ListReservationsResponse,
16
+ } from "../models/models_0";
17
+ export interface ListReservationsCommandInput extends ListReservationsRequest {}
18
+ export interface ListReservationsCommandOutput
19
+ extends ListReservationsResponse,
20
+ __MetadataBearer {}
21
+
22
+ export declare class ListReservationsCommand extends $Command<
23
+ ListReservationsCommandInput,
24
+ ListReservationsCommandOutput,
25
+ MediaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: ListReservationsCommandInput;
28
+ constructor(input: ListReservationsCommandInput);
29
+
30
+ resolveMiddleware(
31
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
32
+ configuration: MediaConnectClientResolvedConfig,
33
+ options?: __HttpHandlerOptions
34
+ ): Handler<ListReservationsCommandInput, ListReservationsCommandOutput>;
35
+ private serialize;
36
+ private deserialize;
37
+ }
@@ -1,17 +1,38 @@
1
- import { Command as $Command } from "@aws-sdk/smithy-client";
2
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
- import { MediaConnectClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../MediaConnectClient";
4
- import { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
- export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
- }
7
- export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, MediaConnectClientResolvedConfig> {
11
- readonly input: ListTagsForResourceCommandInput;
12
- constructor(input: ListTagsForResourceCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
- private serialize;
16
- private deserialize;
17
- }
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import {
3
+ Handler,
4
+ HttpHandlerOptions as __HttpHandlerOptions,
5
+ MetadataBearer as __MetadataBearer,
6
+ MiddlewareStack,
7
+ } from "@aws-sdk/types";
8
+ import {
9
+ MediaConnectClientResolvedConfig,
10
+ ServiceInputTypes,
11
+ ServiceOutputTypes,
12
+ } from "../MediaConnectClient";
13
+ import {
14
+ ListTagsForResourceRequest,
15
+ ListTagsForResourceResponse,
16
+ } from "../models/models_0";
17
+ export interface ListTagsForResourceCommandInput
18
+ extends ListTagsForResourceRequest {}
19
+ export interface ListTagsForResourceCommandOutput
20
+ extends ListTagsForResourceResponse,
21
+ __MetadataBearer {}
22
+
23
+ export declare class ListTagsForResourceCommand extends $Command<
24
+ ListTagsForResourceCommandInput,
25
+ ListTagsForResourceCommandOutput,
26
+ MediaConnectClientResolvedConfig
27
+ > {
28
+ readonly input: ListTagsForResourceCommandInput;
29
+ constructor(input: ListTagsForResourceCommandInput);
30
+
31
+ resolveMiddleware(
32
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
33
+ configuration: MediaConnectClientResolvedConfig,
34
+ options?: __HttpHandlerOptions
35
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
36
+ private serialize;
37
+ private deserialize;
38
+ }