@aws-sdk/client-mediaconnect 3.169.0 → 3.171.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 +16 -0
  2. package/dist-types/ts3.4/MediaConnect.d.ts +514 -155
  3. package/dist-types/ts3.4/MediaConnectClient.d.ts +285 -103
  4. package/dist-types/ts3.4/commands/AddFlowMediaStreamsCommand.d.ts +36 -17
  5. package/dist-types/ts3.4/commands/AddFlowOutputsCommand.d.ts +35 -17
  6. package/dist-types/ts3.4/commands/AddFlowSourcesCommand.d.ts +35 -17
  7. package/dist-types/ts3.4/commands/AddFlowVpcInterfacesCommand.d.ts +39 -17
  8. package/dist-types/ts3.4/commands/CreateFlowCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/DeleteFlowCommand.d.ts +32 -17
  10. package/dist-types/ts3.4/commands/DescribeFlowCommand.d.ts +32 -17
  11. package/dist-types/ts3.4/commands/DescribeOfferingCommand.d.ts +35 -17
  12. package/dist-types/ts3.4/commands/DescribeReservationCommand.d.ts +36 -17
  13. package/dist-types/ts3.4/commands/GrantFlowEntitlementsCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/ListEntitlementsCommand.d.ts +35 -17
  15. package/dist-types/ts3.4/commands/ListFlowsCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/ListOfferingsCommand.d.ts +35 -17
  17. package/dist-types/ts3.4/commands/ListReservationsCommand.d.ts +35 -17
  18. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  19. package/dist-types/ts3.4/commands/PurchaseOfferingCommand.d.ts +35 -17
  20. package/dist-types/ts3.4/commands/RemoveFlowMediaStreamCommand.d.ts +39 -17
  21. package/dist-types/ts3.4/commands/RemoveFlowOutputCommand.d.ts +35 -17
  22. package/dist-types/ts3.4/commands/RemoveFlowSourceCommand.d.ts +35 -17
  23. package/dist-types/ts3.4/commands/RemoveFlowVpcInterfaceCommand.d.ts +39 -17
  24. package/dist-types/ts3.4/commands/RevokeFlowEntitlementCommand.d.ts +39 -17
  25. package/dist-types/ts3.4/commands/StartFlowCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/StopFlowCommand.d.ts +32 -17
  27. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +30 -17
  28. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +30 -17
  29. package/dist-types/ts3.4/commands/UpdateFlowCommand.d.ts +32 -17
  30. package/dist-types/ts3.4/commands/UpdateFlowEntitlementCommand.d.ts +39 -17
  31. package/dist-types/ts3.4/commands/UpdateFlowMediaStreamCommand.d.ts +39 -17
  32. package/dist-types/ts3.4/commands/UpdateFlowOutputCommand.d.ts +35 -17
  33. package/dist-types/ts3.4/commands/UpdateFlowSourceCommand.d.ts +35 -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 +7 -6
  38. package/dist-types/ts3.4/models/index.d.ts +1 -1
  39. package/dist-types/ts3.4/models/models_0.d.ts +1061 -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 +65 -38
  48. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  49. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  50. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  51. package/dist-types/ts3.4/waiters/index.d.ts +3 -3
  52. package/dist-types/ts3.4/waiters/waitForFlowActive.d.ts +11 -7
  53. package/dist-types/ts3.4/waiters/waitForFlowDeleted.d.ts +11 -7
  54. package/dist-types/ts3.4/waiters/waitForFlowStandby.d.ts +11 -7
  55. package/package.json +35 -35
@@ -1,17 +1,32 @@
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
+ export declare class CreateFlowCommand extends $Command<
19
+ CreateFlowCommandInput,
20
+ CreateFlowCommandOutput,
21
+ MediaConnectClientResolvedConfig
22
+ > {
23
+ readonly input: CreateFlowCommandInput;
24
+ constructor(input: CreateFlowCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: MediaConnectClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<CreateFlowCommandInput, CreateFlowCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
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
+ export declare class DeleteFlowCommand extends $Command<
19
+ DeleteFlowCommandInput,
20
+ DeleteFlowCommandOutput,
21
+ MediaConnectClientResolvedConfig
22
+ > {
23
+ readonly input: DeleteFlowCommandInput;
24
+ constructor(input: DeleteFlowCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: MediaConnectClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DeleteFlowCommandInput, DeleteFlowCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,32 @@
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
+ export declare class DescribeFlowCommand extends $Command<
19
+ DescribeFlowCommandInput,
20
+ DescribeFlowCommandOutput,
21
+ MediaConnectClientResolvedConfig
22
+ > {
23
+ readonly input: DescribeFlowCommandInput;
24
+ constructor(input: DescribeFlowCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: MediaConnectClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<DescribeFlowCommandInput, DescribeFlowCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
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
+ export declare class DescribeOfferingCommand extends $Command<
22
+ DescribeOfferingCommandInput,
23
+ DescribeOfferingCommandOutput,
24
+ MediaConnectClientResolvedConfig
25
+ > {
26
+ readonly input: DescribeOfferingCommandInput;
27
+ constructor(input: DescribeOfferingCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: MediaConnectClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DescribeOfferingCommandInput, DescribeOfferingCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,36 @@
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
+ export declare class DescribeReservationCommand extends $Command<
23
+ DescribeReservationCommandInput,
24
+ DescribeReservationCommandOutput,
25
+ MediaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: DescribeReservationCommandInput;
28
+ constructor(input: DescribeReservationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: MediaConnectClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<DescribeReservationCommandInput, DescribeReservationCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,39 @@
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
+ export declare class GrantFlowEntitlementsCommand extends $Command<
23
+ GrantFlowEntitlementsCommandInput,
24
+ GrantFlowEntitlementsCommandOutput,
25
+ MediaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: GrantFlowEntitlementsCommandInput;
28
+ constructor(input: GrantFlowEntitlementsCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: MediaConnectClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<
34
+ GrantFlowEntitlementsCommandInput,
35
+ GrantFlowEntitlementsCommandOutput
36
+ >;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -1,17 +1,35 @@
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
+ export declare class ListEntitlementsCommand extends $Command<
22
+ ListEntitlementsCommandInput,
23
+ ListEntitlementsCommandOutput,
24
+ MediaConnectClientResolvedConfig
25
+ > {
26
+ readonly input: ListEntitlementsCommandInput;
27
+ constructor(input: ListEntitlementsCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: MediaConnectClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListEntitlementsCommandInput, ListEntitlementsCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,32 @@
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
+ export declare class ListFlowsCommand extends $Command<
19
+ ListFlowsCommandInput,
20
+ ListFlowsCommandOutput,
21
+ MediaConnectClientResolvedConfig
22
+ > {
23
+ readonly input: ListFlowsCommandInput;
24
+ constructor(input: ListFlowsCommandInput);
25
+ resolveMiddleware(
26
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
27
+ configuration: MediaConnectClientResolvedConfig,
28
+ options?: __HttpHandlerOptions
29
+ ): Handler<ListFlowsCommandInput, ListFlowsCommandOutput>;
30
+ private serialize;
31
+ private deserialize;
32
+ }
@@ -1,17 +1,35 @@
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
+ export declare class ListOfferingsCommand extends $Command<
22
+ ListOfferingsCommandInput,
23
+ ListOfferingsCommandOutput,
24
+ MediaConnectClientResolvedConfig
25
+ > {
26
+ readonly input: ListOfferingsCommandInput;
27
+ constructor(input: ListOfferingsCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: MediaConnectClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListOfferingsCommandInput, ListOfferingsCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,35 @@
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
+ export declare class ListReservationsCommand extends $Command<
22
+ ListReservationsCommandInput,
23
+ ListReservationsCommandOutput,
24
+ MediaConnectClientResolvedConfig
25
+ > {
26
+ readonly input: ListReservationsCommandInput;
27
+ constructor(input: ListReservationsCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: MediaConnectClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListReservationsCommandInput, ListReservationsCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -1,17 +1,36 @@
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
+ export declare class ListTagsForResourceCommand extends $Command<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ MediaConnectClientResolvedConfig
26
+ > {
27
+ readonly input: ListTagsForResourceCommandInput;
28
+ constructor(input: ListTagsForResourceCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: MediaConnectClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -1,17 +1,35 @@
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 { PurchaseOfferingRequest, PurchaseOfferingResponse } from "../models/models_0";
5
- export interface PurchaseOfferingCommandInput extends PurchaseOfferingRequest {
6
- }
7
- export interface PurchaseOfferingCommandOutput extends PurchaseOfferingResponse, __MetadataBearer {
8
- }
9
-
10
- export declare class PurchaseOfferingCommand extends $Command<PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput, MediaConnectClientResolvedConfig> {
11
- readonly input: PurchaseOfferingCommandInput;
12
- constructor(input: PurchaseOfferingCommandInput);
13
-
14
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: MediaConnectClientResolvedConfig, options?: __HttpHandlerOptions): Handler<PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput>;
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
+ PurchaseOfferingRequest,
15
+ PurchaseOfferingResponse,
16
+ } from "../models/models_0";
17
+ export interface PurchaseOfferingCommandInput extends PurchaseOfferingRequest {}
18
+ export interface PurchaseOfferingCommandOutput
19
+ extends PurchaseOfferingResponse,
20
+ __MetadataBearer {}
21
+ export declare class PurchaseOfferingCommand extends $Command<
22
+ PurchaseOfferingCommandInput,
23
+ PurchaseOfferingCommandOutput,
24
+ MediaConnectClientResolvedConfig
25
+ > {
26
+ readonly input: PurchaseOfferingCommandInput;
27
+ constructor(input: PurchaseOfferingCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: MediaConnectClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }