@aws-sdk/client-mediaconnect 3.168.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 +16 -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,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { MediaConnect } from "../MediaConnect";
3
- import { MediaConnectClient } from "../MediaConnectClient";
4
- export interface MediaConnectPaginationConfiguration extends PaginationConfiguration {
5
- client: MediaConnect | MediaConnectClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { MediaConnect } from "../MediaConnect";
3
+ import { MediaConnectClient } from "../MediaConnectClient";
4
+ export interface MediaConnectPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: MediaConnect | MediaConnectClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListEntitlementsCommandInput, ListEntitlementsCommandOutput } from "../commands/ListEntitlementsCommand";
3
- import { MediaConnectPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListEntitlements(config: MediaConnectPaginationConfiguration, input: ListEntitlementsCommandInput, ...additionalArguments: any): Paginator<ListEntitlementsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListEntitlementsCommandInput,
4
+ ListEntitlementsCommandOutput,
5
+ } from "../commands/ListEntitlementsCommand";
6
+ import { MediaConnectPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListEntitlements(
8
+ config: MediaConnectPaginationConfiguration,
9
+ input: ListEntitlementsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListEntitlementsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListFlowsCommandInput, ListFlowsCommandOutput } from "../commands/ListFlowsCommand";
3
- import { MediaConnectPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListFlows(config: MediaConnectPaginationConfiguration, input: ListFlowsCommandInput, ...additionalArguments: any): Paginator<ListFlowsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListFlowsCommandInput,
4
+ ListFlowsCommandOutput,
5
+ } from "../commands/ListFlowsCommand";
6
+ import { MediaConnectPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListFlows(
8
+ config: MediaConnectPaginationConfiguration,
9
+ input: ListFlowsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListFlowsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListOfferingsCommandInput, ListOfferingsCommandOutput } from "../commands/ListOfferingsCommand";
3
- import { MediaConnectPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListOfferings(config: MediaConnectPaginationConfiguration, input: ListOfferingsCommandInput, ...additionalArguments: any): Paginator<ListOfferingsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListOfferingsCommandInput,
4
+ ListOfferingsCommandOutput,
5
+ } from "../commands/ListOfferingsCommand";
6
+ import { MediaConnectPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListOfferings(
8
+ config: MediaConnectPaginationConfiguration,
9
+ input: ListOfferingsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListOfferingsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListReservationsCommandInput, ListReservationsCommandOutput } from "../commands/ListReservationsCommand";
3
- import { MediaConnectPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListReservations(config: MediaConnectPaginationConfiguration, input: ListReservationsCommandInput, ...additionalArguments: any): Paginator<ListReservationsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListReservationsCommandInput,
4
+ ListReservationsCommandOutput,
5
+ } from "../commands/ListReservationsCommand";
6
+ import { MediaConnectPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListReservations(
8
+ config: MediaConnectPaginationConfiguration,
9
+ input: ListReservationsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListReservationsCommandOutput>;
@@ -1,5 +1,5 @@
1
- export * from "./Interfaces";
2
- export * from "./ListEntitlementsPaginator";
3
- export * from "./ListFlowsPaginator";
4
- export * from "./ListOfferingsPaginator";
5
- export * from "./ListReservationsPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListEntitlementsPaginator";
3
+ export * from "./ListFlowsPaginator";
4
+ export * from "./ListOfferingsPaginator";
5
+ export * from "./ListReservationsPaginator";
@@ -1,92 +1,365 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
- import { AddFlowMediaStreamsCommandInput, AddFlowMediaStreamsCommandOutput } from "../commands/AddFlowMediaStreamsCommand";
4
- import { AddFlowOutputsCommandInput, AddFlowOutputsCommandOutput } from "../commands/AddFlowOutputsCommand";
5
- import { AddFlowSourcesCommandInput, AddFlowSourcesCommandOutput } from "../commands/AddFlowSourcesCommand";
6
- import { AddFlowVpcInterfacesCommandInput, AddFlowVpcInterfacesCommandOutput } from "../commands/AddFlowVpcInterfacesCommand";
7
- import { CreateFlowCommandInput, CreateFlowCommandOutput } from "../commands/CreateFlowCommand";
8
- import { DeleteFlowCommandInput, DeleteFlowCommandOutput } from "../commands/DeleteFlowCommand";
9
- import { DescribeFlowCommandInput, DescribeFlowCommandOutput } from "../commands/DescribeFlowCommand";
10
- import { DescribeOfferingCommandInput, DescribeOfferingCommandOutput } from "../commands/DescribeOfferingCommand";
11
- import { DescribeReservationCommandInput, DescribeReservationCommandOutput } from "../commands/DescribeReservationCommand";
12
- import { GrantFlowEntitlementsCommandInput, GrantFlowEntitlementsCommandOutput } from "../commands/GrantFlowEntitlementsCommand";
13
- import { ListEntitlementsCommandInput, ListEntitlementsCommandOutput } from "../commands/ListEntitlementsCommand";
14
- import { ListFlowsCommandInput, ListFlowsCommandOutput } from "../commands/ListFlowsCommand";
15
- import { ListOfferingsCommandInput, ListOfferingsCommandOutput } from "../commands/ListOfferingsCommand";
16
- import { ListReservationsCommandInput, ListReservationsCommandOutput } from "../commands/ListReservationsCommand";
17
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
18
- import { PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput } from "../commands/PurchaseOfferingCommand";
19
- import { RemoveFlowMediaStreamCommandInput, RemoveFlowMediaStreamCommandOutput } from "../commands/RemoveFlowMediaStreamCommand";
20
- import { RemoveFlowOutputCommandInput, RemoveFlowOutputCommandOutput } from "../commands/RemoveFlowOutputCommand";
21
- import { RemoveFlowSourceCommandInput, RemoveFlowSourceCommandOutput } from "../commands/RemoveFlowSourceCommand";
22
- import { RemoveFlowVpcInterfaceCommandInput, RemoveFlowVpcInterfaceCommandOutput } from "../commands/RemoveFlowVpcInterfaceCommand";
23
- import { RevokeFlowEntitlementCommandInput, RevokeFlowEntitlementCommandOutput } from "../commands/RevokeFlowEntitlementCommand";
24
- import { StartFlowCommandInput, StartFlowCommandOutput } from "../commands/StartFlowCommand";
25
- import { StopFlowCommandInput, StopFlowCommandOutput } from "../commands/StopFlowCommand";
26
- import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
27
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
28
- import { UpdateFlowCommandInput, UpdateFlowCommandOutput } from "../commands/UpdateFlowCommand";
29
- import { UpdateFlowEntitlementCommandInput, UpdateFlowEntitlementCommandOutput } from "../commands/UpdateFlowEntitlementCommand";
30
- import { UpdateFlowMediaStreamCommandInput, UpdateFlowMediaStreamCommandOutput } from "../commands/UpdateFlowMediaStreamCommand";
31
- import { UpdateFlowOutputCommandInput, UpdateFlowOutputCommandOutput } from "../commands/UpdateFlowOutputCommand";
32
- import { UpdateFlowSourceCommandInput, UpdateFlowSourceCommandOutput } from "../commands/UpdateFlowSourceCommand";
33
- export declare const serializeAws_restJson1AddFlowMediaStreamsCommand: (input: AddFlowMediaStreamsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
- export declare const serializeAws_restJson1AddFlowOutputsCommand: (input: AddFlowOutputsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
- export declare const serializeAws_restJson1AddFlowSourcesCommand: (input: AddFlowSourcesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
- export declare const serializeAws_restJson1AddFlowVpcInterfacesCommand: (input: AddFlowVpcInterfacesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
- export declare const serializeAws_restJson1CreateFlowCommand: (input: CreateFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
- export declare const serializeAws_restJson1DeleteFlowCommand: (input: DeleteFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
- export declare const serializeAws_restJson1DescribeFlowCommand: (input: DescribeFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
- export declare const serializeAws_restJson1DescribeOfferingCommand: (input: DescribeOfferingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
- export declare const serializeAws_restJson1DescribeReservationCommand: (input: DescribeReservationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
42
- export declare const serializeAws_restJson1GrantFlowEntitlementsCommand: (input: GrantFlowEntitlementsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
- export declare const serializeAws_restJson1ListEntitlementsCommand: (input: ListEntitlementsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
44
- export declare const serializeAws_restJson1ListFlowsCommand: (input: ListFlowsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
- export declare const serializeAws_restJson1ListOfferingsCommand: (input: ListOfferingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
46
- export declare const serializeAws_restJson1ListReservationsCommand: (input: ListReservationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
48
- export declare const serializeAws_restJson1PurchaseOfferingCommand: (input: PurchaseOfferingCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
- export declare const serializeAws_restJson1RemoveFlowMediaStreamCommand: (input: RemoveFlowMediaStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
- export declare const serializeAws_restJson1RemoveFlowOutputCommand: (input: RemoveFlowOutputCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
- export declare const serializeAws_restJson1RemoveFlowSourceCommand: (input: RemoveFlowSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
52
- export declare const serializeAws_restJson1RemoveFlowVpcInterfaceCommand: (input: RemoveFlowVpcInterfaceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
- export declare const serializeAws_restJson1RevokeFlowEntitlementCommand: (input: RevokeFlowEntitlementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
- export declare const serializeAws_restJson1StartFlowCommand: (input: StartFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
- export declare const serializeAws_restJson1StopFlowCommand: (input: StopFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
56
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
58
- export declare const serializeAws_restJson1UpdateFlowCommand: (input: UpdateFlowCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
- export declare const serializeAws_restJson1UpdateFlowEntitlementCommand: (input: UpdateFlowEntitlementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
60
- export declare const serializeAws_restJson1UpdateFlowMediaStreamCommand: (input: UpdateFlowMediaStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
61
- export declare const serializeAws_restJson1UpdateFlowOutputCommand: (input: UpdateFlowOutputCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
62
- export declare const serializeAws_restJson1UpdateFlowSourceCommand: (input: UpdateFlowSourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
63
- export declare const deserializeAws_restJson1AddFlowMediaStreamsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddFlowMediaStreamsCommandOutput>;
64
- export declare const deserializeAws_restJson1AddFlowOutputsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddFlowOutputsCommandOutput>;
65
- export declare const deserializeAws_restJson1AddFlowSourcesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddFlowSourcesCommandOutput>;
66
- export declare const deserializeAws_restJson1AddFlowVpcInterfacesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddFlowVpcInterfacesCommandOutput>;
67
- export declare const deserializeAws_restJson1CreateFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateFlowCommandOutput>;
68
- export declare const deserializeAws_restJson1DeleteFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteFlowCommandOutput>;
69
- export declare const deserializeAws_restJson1DescribeFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeFlowCommandOutput>;
70
- export declare const deserializeAws_restJson1DescribeOfferingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeOfferingCommandOutput>;
71
- export declare const deserializeAws_restJson1DescribeReservationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeReservationCommandOutput>;
72
- export declare const deserializeAws_restJson1GrantFlowEntitlementsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GrantFlowEntitlementsCommandOutput>;
73
- export declare const deserializeAws_restJson1ListEntitlementsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEntitlementsCommandOutput>;
74
- export declare const deserializeAws_restJson1ListFlowsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListFlowsCommandOutput>;
75
- export declare const deserializeAws_restJson1ListOfferingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOfferingsCommandOutput>;
76
- export declare const deserializeAws_restJson1ListReservationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListReservationsCommandOutput>;
77
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
78
- export declare const deserializeAws_restJson1PurchaseOfferingCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PurchaseOfferingCommandOutput>;
79
- export declare const deserializeAws_restJson1RemoveFlowMediaStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemoveFlowMediaStreamCommandOutput>;
80
- export declare const deserializeAws_restJson1RemoveFlowOutputCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemoveFlowOutputCommandOutput>;
81
- export declare const deserializeAws_restJson1RemoveFlowSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemoveFlowSourceCommandOutput>;
82
- export declare const deserializeAws_restJson1RemoveFlowVpcInterfaceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemoveFlowVpcInterfaceCommandOutput>;
83
- export declare const deserializeAws_restJson1RevokeFlowEntitlementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RevokeFlowEntitlementCommandOutput>;
84
- export declare const deserializeAws_restJson1StartFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartFlowCommandOutput>;
85
- export declare const deserializeAws_restJson1StopFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopFlowCommandOutput>;
86
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
87
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
88
- export declare const deserializeAws_restJson1UpdateFlowCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFlowCommandOutput>;
89
- export declare const deserializeAws_restJson1UpdateFlowEntitlementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFlowEntitlementCommandOutput>;
90
- export declare const deserializeAws_restJson1UpdateFlowMediaStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFlowMediaStreamCommandOutput>;
91
- export declare const deserializeAws_restJson1UpdateFlowOutputCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFlowOutputCommandOutput>;
92
- export declare const deserializeAws_restJson1UpdateFlowSourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateFlowSourceCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ AddFlowMediaStreamsCommandInput,
8
+ AddFlowMediaStreamsCommandOutput,
9
+ } from "../commands/AddFlowMediaStreamsCommand";
10
+ import {
11
+ AddFlowOutputsCommandInput,
12
+ AddFlowOutputsCommandOutput,
13
+ } from "../commands/AddFlowOutputsCommand";
14
+ import {
15
+ AddFlowSourcesCommandInput,
16
+ AddFlowSourcesCommandOutput,
17
+ } from "../commands/AddFlowSourcesCommand";
18
+ import {
19
+ AddFlowVpcInterfacesCommandInput,
20
+ AddFlowVpcInterfacesCommandOutput,
21
+ } from "../commands/AddFlowVpcInterfacesCommand";
22
+ import {
23
+ CreateFlowCommandInput,
24
+ CreateFlowCommandOutput,
25
+ } from "../commands/CreateFlowCommand";
26
+ import {
27
+ DeleteFlowCommandInput,
28
+ DeleteFlowCommandOutput,
29
+ } from "../commands/DeleteFlowCommand";
30
+ import {
31
+ DescribeFlowCommandInput,
32
+ DescribeFlowCommandOutput,
33
+ } from "../commands/DescribeFlowCommand";
34
+ import {
35
+ DescribeOfferingCommandInput,
36
+ DescribeOfferingCommandOutput,
37
+ } from "../commands/DescribeOfferingCommand";
38
+ import {
39
+ DescribeReservationCommandInput,
40
+ DescribeReservationCommandOutput,
41
+ } from "../commands/DescribeReservationCommand";
42
+ import {
43
+ GrantFlowEntitlementsCommandInput,
44
+ GrantFlowEntitlementsCommandOutput,
45
+ } from "../commands/GrantFlowEntitlementsCommand";
46
+ import {
47
+ ListEntitlementsCommandInput,
48
+ ListEntitlementsCommandOutput,
49
+ } from "../commands/ListEntitlementsCommand";
50
+ import {
51
+ ListFlowsCommandInput,
52
+ ListFlowsCommandOutput,
53
+ } from "../commands/ListFlowsCommand";
54
+ import {
55
+ ListOfferingsCommandInput,
56
+ ListOfferingsCommandOutput,
57
+ } from "../commands/ListOfferingsCommand";
58
+ import {
59
+ ListReservationsCommandInput,
60
+ ListReservationsCommandOutput,
61
+ } from "../commands/ListReservationsCommand";
62
+ import {
63
+ ListTagsForResourceCommandInput,
64
+ ListTagsForResourceCommandOutput,
65
+ } from "../commands/ListTagsForResourceCommand";
66
+ import {
67
+ PurchaseOfferingCommandInput,
68
+ PurchaseOfferingCommandOutput,
69
+ } from "../commands/PurchaseOfferingCommand";
70
+ import {
71
+ RemoveFlowMediaStreamCommandInput,
72
+ RemoveFlowMediaStreamCommandOutput,
73
+ } from "../commands/RemoveFlowMediaStreamCommand";
74
+ import {
75
+ RemoveFlowOutputCommandInput,
76
+ RemoveFlowOutputCommandOutput,
77
+ } from "../commands/RemoveFlowOutputCommand";
78
+ import {
79
+ RemoveFlowSourceCommandInput,
80
+ RemoveFlowSourceCommandOutput,
81
+ } from "../commands/RemoveFlowSourceCommand";
82
+ import {
83
+ RemoveFlowVpcInterfaceCommandInput,
84
+ RemoveFlowVpcInterfaceCommandOutput,
85
+ } from "../commands/RemoveFlowVpcInterfaceCommand";
86
+ import {
87
+ RevokeFlowEntitlementCommandInput,
88
+ RevokeFlowEntitlementCommandOutput,
89
+ } from "../commands/RevokeFlowEntitlementCommand";
90
+ import {
91
+ StartFlowCommandInput,
92
+ StartFlowCommandOutput,
93
+ } from "../commands/StartFlowCommand";
94
+ import {
95
+ StopFlowCommandInput,
96
+ StopFlowCommandOutput,
97
+ } from "../commands/StopFlowCommand";
98
+ import {
99
+ TagResourceCommandInput,
100
+ TagResourceCommandOutput,
101
+ } from "../commands/TagResourceCommand";
102
+ import {
103
+ UntagResourceCommandInput,
104
+ UntagResourceCommandOutput,
105
+ } from "../commands/UntagResourceCommand";
106
+ import {
107
+ UpdateFlowCommandInput,
108
+ UpdateFlowCommandOutput,
109
+ } from "../commands/UpdateFlowCommand";
110
+ import {
111
+ UpdateFlowEntitlementCommandInput,
112
+ UpdateFlowEntitlementCommandOutput,
113
+ } from "../commands/UpdateFlowEntitlementCommand";
114
+ import {
115
+ UpdateFlowMediaStreamCommandInput,
116
+ UpdateFlowMediaStreamCommandOutput,
117
+ } from "../commands/UpdateFlowMediaStreamCommand";
118
+ import {
119
+ UpdateFlowOutputCommandInput,
120
+ UpdateFlowOutputCommandOutput,
121
+ } from "../commands/UpdateFlowOutputCommand";
122
+ import {
123
+ UpdateFlowSourceCommandInput,
124
+ UpdateFlowSourceCommandOutput,
125
+ } from "../commands/UpdateFlowSourceCommand";
126
+ export declare const serializeAws_restJson1AddFlowMediaStreamsCommand: (
127
+ input: AddFlowMediaStreamsCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const serializeAws_restJson1AddFlowOutputsCommand: (
131
+ input: AddFlowOutputsCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
134
+ export declare const serializeAws_restJson1AddFlowSourcesCommand: (
135
+ input: AddFlowSourcesCommandInput,
136
+ context: __SerdeContext
137
+ ) => Promise<__HttpRequest>;
138
+ export declare const serializeAws_restJson1AddFlowVpcInterfacesCommand: (
139
+ input: AddFlowVpcInterfacesCommandInput,
140
+ context: __SerdeContext
141
+ ) => Promise<__HttpRequest>;
142
+ export declare const serializeAws_restJson1CreateFlowCommand: (
143
+ input: CreateFlowCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
146
+ export declare const serializeAws_restJson1DeleteFlowCommand: (
147
+ input: DeleteFlowCommandInput,
148
+ context: __SerdeContext
149
+ ) => Promise<__HttpRequest>;
150
+ export declare const serializeAws_restJson1DescribeFlowCommand: (
151
+ input: DescribeFlowCommandInput,
152
+ context: __SerdeContext
153
+ ) => Promise<__HttpRequest>;
154
+ export declare const serializeAws_restJson1DescribeOfferingCommand: (
155
+ input: DescribeOfferingCommandInput,
156
+ context: __SerdeContext
157
+ ) => Promise<__HttpRequest>;
158
+ export declare const serializeAws_restJson1DescribeReservationCommand: (
159
+ input: DescribeReservationCommandInput,
160
+ context: __SerdeContext
161
+ ) => Promise<__HttpRequest>;
162
+ export declare const serializeAws_restJson1GrantFlowEntitlementsCommand: (
163
+ input: GrantFlowEntitlementsCommandInput,
164
+ context: __SerdeContext
165
+ ) => Promise<__HttpRequest>;
166
+ export declare const serializeAws_restJson1ListEntitlementsCommand: (
167
+ input: ListEntitlementsCommandInput,
168
+ context: __SerdeContext
169
+ ) => Promise<__HttpRequest>;
170
+ export declare const serializeAws_restJson1ListFlowsCommand: (
171
+ input: ListFlowsCommandInput,
172
+ context: __SerdeContext
173
+ ) => Promise<__HttpRequest>;
174
+ export declare const serializeAws_restJson1ListOfferingsCommand: (
175
+ input: ListOfferingsCommandInput,
176
+ context: __SerdeContext
177
+ ) => Promise<__HttpRequest>;
178
+ export declare const serializeAws_restJson1ListReservationsCommand: (
179
+ input: ListReservationsCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
182
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
183
+ input: ListTagsForResourceCommandInput,
184
+ context: __SerdeContext
185
+ ) => Promise<__HttpRequest>;
186
+ export declare const serializeAws_restJson1PurchaseOfferingCommand: (
187
+ input: PurchaseOfferingCommandInput,
188
+ context: __SerdeContext
189
+ ) => Promise<__HttpRequest>;
190
+ export declare const serializeAws_restJson1RemoveFlowMediaStreamCommand: (
191
+ input: RemoveFlowMediaStreamCommandInput,
192
+ context: __SerdeContext
193
+ ) => Promise<__HttpRequest>;
194
+ export declare const serializeAws_restJson1RemoveFlowOutputCommand: (
195
+ input: RemoveFlowOutputCommandInput,
196
+ context: __SerdeContext
197
+ ) => Promise<__HttpRequest>;
198
+ export declare const serializeAws_restJson1RemoveFlowSourceCommand: (
199
+ input: RemoveFlowSourceCommandInput,
200
+ context: __SerdeContext
201
+ ) => Promise<__HttpRequest>;
202
+ export declare const serializeAws_restJson1RemoveFlowVpcInterfaceCommand: (
203
+ input: RemoveFlowVpcInterfaceCommandInput,
204
+ context: __SerdeContext
205
+ ) => Promise<__HttpRequest>;
206
+ export declare const serializeAws_restJson1RevokeFlowEntitlementCommand: (
207
+ input: RevokeFlowEntitlementCommandInput,
208
+ context: __SerdeContext
209
+ ) => Promise<__HttpRequest>;
210
+ export declare const serializeAws_restJson1StartFlowCommand: (
211
+ input: StartFlowCommandInput,
212
+ context: __SerdeContext
213
+ ) => Promise<__HttpRequest>;
214
+ export declare const serializeAws_restJson1StopFlowCommand: (
215
+ input: StopFlowCommandInput,
216
+ context: __SerdeContext
217
+ ) => Promise<__HttpRequest>;
218
+ export declare const serializeAws_restJson1TagResourceCommand: (
219
+ input: TagResourceCommandInput,
220
+ context: __SerdeContext
221
+ ) => Promise<__HttpRequest>;
222
+ export declare const serializeAws_restJson1UntagResourceCommand: (
223
+ input: UntagResourceCommandInput,
224
+ context: __SerdeContext
225
+ ) => Promise<__HttpRequest>;
226
+ export declare const serializeAws_restJson1UpdateFlowCommand: (
227
+ input: UpdateFlowCommandInput,
228
+ context: __SerdeContext
229
+ ) => Promise<__HttpRequest>;
230
+ export declare const serializeAws_restJson1UpdateFlowEntitlementCommand: (
231
+ input: UpdateFlowEntitlementCommandInput,
232
+ context: __SerdeContext
233
+ ) => Promise<__HttpRequest>;
234
+ export declare const serializeAws_restJson1UpdateFlowMediaStreamCommand: (
235
+ input: UpdateFlowMediaStreamCommandInput,
236
+ context: __SerdeContext
237
+ ) => Promise<__HttpRequest>;
238
+ export declare const serializeAws_restJson1UpdateFlowOutputCommand: (
239
+ input: UpdateFlowOutputCommandInput,
240
+ context: __SerdeContext
241
+ ) => Promise<__HttpRequest>;
242
+ export declare const serializeAws_restJson1UpdateFlowSourceCommand: (
243
+ input: UpdateFlowSourceCommandInput,
244
+ context: __SerdeContext
245
+ ) => Promise<__HttpRequest>;
246
+ export declare const deserializeAws_restJson1AddFlowMediaStreamsCommand: (
247
+ output: __HttpResponse,
248
+ context: __SerdeContext
249
+ ) => Promise<AddFlowMediaStreamsCommandOutput>;
250
+ export declare const deserializeAws_restJson1AddFlowOutputsCommand: (
251
+ output: __HttpResponse,
252
+ context: __SerdeContext
253
+ ) => Promise<AddFlowOutputsCommandOutput>;
254
+ export declare const deserializeAws_restJson1AddFlowSourcesCommand: (
255
+ output: __HttpResponse,
256
+ context: __SerdeContext
257
+ ) => Promise<AddFlowSourcesCommandOutput>;
258
+ export declare const deserializeAws_restJson1AddFlowVpcInterfacesCommand: (
259
+ output: __HttpResponse,
260
+ context: __SerdeContext
261
+ ) => Promise<AddFlowVpcInterfacesCommandOutput>;
262
+ export declare const deserializeAws_restJson1CreateFlowCommand: (
263
+ output: __HttpResponse,
264
+ context: __SerdeContext
265
+ ) => Promise<CreateFlowCommandOutput>;
266
+ export declare const deserializeAws_restJson1DeleteFlowCommand: (
267
+ output: __HttpResponse,
268
+ context: __SerdeContext
269
+ ) => Promise<DeleteFlowCommandOutput>;
270
+ export declare const deserializeAws_restJson1DescribeFlowCommand: (
271
+ output: __HttpResponse,
272
+ context: __SerdeContext
273
+ ) => Promise<DescribeFlowCommandOutput>;
274
+ export declare const deserializeAws_restJson1DescribeOfferingCommand: (
275
+ output: __HttpResponse,
276
+ context: __SerdeContext
277
+ ) => Promise<DescribeOfferingCommandOutput>;
278
+ export declare const deserializeAws_restJson1DescribeReservationCommand: (
279
+ output: __HttpResponse,
280
+ context: __SerdeContext
281
+ ) => Promise<DescribeReservationCommandOutput>;
282
+ export declare const deserializeAws_restJson1GrantFlowEntitlementsCommand: (
283
+ output: __HttpResponse,
284
+ context: __SerdeContext
285
+ ) => Promise<GrantFlowEntitlementsCommandOutput>;
286
+ export declare const deserializeAws_restJson1ListEntitlementsCommand: (
287
+ output: __HttpResponse,
288
+ context: __SerdeContext
289
+ ) => Promise<ListEntitlementsCommandOutput>;
290
+ export declare const deserializeAws_restJson1ListFlowsCommand: (
291
+ output: __HttpResponse,
292
+ context: __SerdeContext
293
+ ) => Promise<ListFlowsCommandOutput>;
294
+ export declare const deserializeAws_restJson1ListOfferingsCommand: (
295
+ output: __HttpResponse,
296
+ context: __SerdeContext
297
+ ) => Promise<ListOfferingsCommandOutput>;
298
+ export declare const deserializeAws_restJson1ListReservationsCommand: (
299
+ output: __HttpResponse,
300
+ context: __SerdeContext
301
+ ) => Promise<ListReservationsCommandOutput>;
302
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
303
+ output: __HttpResponse,
304
+ context: __SerdeContext
305
+ ) => Promise<ListTagsForResourceCommandOutput>;
306
+ export declare const deserializeAws_restJson1PurchaseOfferingCommand: (
307
+ output: __HttpResponse,
308
+ context: __SerdeContext
309
+ ) => Promise<PurchaseOfferingCommandOutput>;
310
+ export declare const deserializeAws_restJson1RemoveFlowMediaStreamCommand: (
311
+ output: __HttpResponse,
312
+ context: __SerdeContext
313
+ ) => Promise<RemoveFlowMediaStreamCommandOutput>;
314
+ export declare const deserializeAws_restJson1RemoveFlowOutputCommand: (
315
+ output: __HttpResponse,
316
+ context: __SerdeContext
317
+ ) => Promise<RemoveFlowOutputCommandOutput>;
318
+ export declare const deserializeAws_restJson1RemoveFlowSourceCommand: (
319
+ output: __HttpResponse,
320
+ context: __SerdeContext
321
+ ) => Promise<RemoveFlowSourceCommandOutput>;
322
+ export declare const deserializeAws_restJson1RemoveFlowVpcInterfaceCommand: (
323
+ output: __HttpResponse,
324
+ context: __SerdeContext
325
+ ) => Promise<RemoveFlowVpcInterfaceCommandOutput>;
326
+ export declare const deserializeAws_restJson1RevokeFlowEntitlementCommand: (
327
+ output: __HttpResponse,
328
+ context: __SerdeContext
329
+ ) => Promise<RevokeFlowEntitlementCommandOutput>;
330
+ export declare const deserializeAws_restJson1StartFlowCommand: (
331
+ output: __HttpResponse,
332
+ context: __SerdeContext
333
+ ) => Promise<StartFlowCommandOutput>;
334
+ export declare const deserializeAws_restJson1StopFlowCommand: (
335
+ output: __HttpResponse,
336
+ context: __SerdeContext
337
+ ) => Promise<StopFlowCommandOutput>;
338
+ export declare const deserializeAws_restJson1TagResourceCommand: (
339
+ output: __HttpResponse,
340
+ context: __SerdeContext
341
+ ) => Promise<TagResourceCommandOutput>;
342
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
343
+ output: __HttpResponse,
344
+ context: __SerdeContext
345
+ ) => Promise<UntagResourceCommandOutput>;
346
+ export declare const deserializeAws_restJson1UpdateFlowCommand: (
347
+ output: __HttpResponse,
348
+ context: __SerdeContext
349
+ ) => Promise<UpdateFlowCommandOutput>;
350
+ export declare const deserializeAws_restJson1UpdateFlowEntitlementCommand: (
351
+ output: __HttpResponse,
352
+ context: __SerdeContext
353
+ ) => Promise<UpdateFlowEntitlementCommandOutput>;
354
+ export declare const deserializeAws_restJson1UpdateFlowMediaStreamCommand: (
355
+ output: __HttpResponse,
356
+ context: __SerdeContext
357
+ ) => Promise<UpdateFlowMediaStreamCommandOutput>;
358
+ export declare const deserializeAws_restJson1UpdateFlowOutputCommand: (
359
+ output: __HttpResponse,
360
+ context: __SerdeContext
361
+ ) => Promise<UpdateFlowOutputCommandOutput>;
362
+ export declare const deserializeAws_restJson1UpdateFlowSourceCommand: (
363
+ output: __HttpResponse,
364
+ context: __SerdeContext
365
+ ) => Promise<UpdateFlowSourceCommandOutput>;