@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,155 +1,544 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { AddFlowMediaStreamsCommandInput, AddFlowMediaStreamsCommandOutput } from "./commands/AddFlowMediaStreamsCommand";
3
- import { AddFlowOutputsCommandInput, AddFlowOutputsCommandOutput } from "./commands/AddFlowOutputsCommand";
4
- import { AddFlowSourcesCommandInput, AddFlowSourcesCommandOutput } from "./commands/AddFlowSourcesCommand";
5
- import { AddFlowVpcInterfacesCommandInput, AddFlowVpcInterfacesCommandOutput } from "./commands/AddFlowVpcInterfacesCommand";
6
- import { CreateFlowCommandInput, CreateFlowCommandOutput } from "./commands/CreateFlowCommand";
7
- import { DeleteFlowCommandInput, DeleteFlowCommandOutput } from "./commands/DeleteFlowCommand";
8
- import { DescribeFlowCommandInput, DescribeFlowCommandOutput } from "./commands/DescribeFlowCommand";
9
- import { DescribeOfferingCommandInput, DescribeOfferingCommandOutput } from "./commands/DescribeOfferingCommand";
10
- import { DescribeReservationCommandInput, DescribeReservationCommandOutput } from "./commands/DescribeReservationCommand";
11
- import { GrantFlowEntitlementsCommandInput, GrantFlowEntitlementsCommandOutput } from "./commands/GrantFlowEntitlementsCommand";
12
- import { ListEntitlementsCommandInput, ListEntitlementsCommandOutput } from "./commands/ListEntitlementsCommand";
13
- import { ListFlowsCommandInput, ListFlowsCommandOutput } from "./commands/ListFlowsCommand";
14
- import { ListOfferingsCommandInput, ListOfferingsCommandOutput } from "./commands/ListOfferingsCommand";
15
- import { ListReservationsCommandInput, ListReservationsCommandOutput } from "./commands/ListReservationsCommand";
16
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
17
- import { PurchaseOfferingCommandInput, PurchaseOfferingCommandOutput } from "./commands/PurchaseOfferingCommand";
18
- import { RemoveFlowMediaStreamCommandInput, RemoveFlowMediaStreamCommandOutput } from "./commands/RemoveFlowMediaStreamCommand";
19
- import { RemoveFlowOutputCommandInput, RemoveFlowOutputCommandOutput } from "./commands/RemoveFlowOutputCommand";
20
- import { RemoveFlowSourceCommandInput, RemoveFlowSourceCommandOutput } from "./commands/RemoveFlowSourceCommand";
21
- import { RemoveFlowVpcInterfaceCommandInput, RemoveFlowVpcInterfaceCommandOutput } from "./commands/RemoveFlowVpcInterfaceCommand";
22
- import { RevokeFlowEntitlementCommandInput, RevokeFlowEntitlementCommandOutput } from "./commands/RevokeFlowEntitlementCommand";
23
- import { StartFlowCommandInput, StartFlowCommandOutput } from "./commands/StartFlowCommand";
24
- import { StopFlowCommandInput, StopFlowCommandOutput } from "./commands/StopFlowCommand";
25
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
26
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
27
- import { UpdateFlowCommandInput, UpdateFlowCommandOutput } from "./commands/UpdateFlowCommand";
28
- import { UpdateFlowEntitlementCommandInput, UpdateFlowEntitlementCommandOutput } from "./commands/UpdateFlowEntitlementCommand";
29
- import { UpdateFlowMediaStreamCommandInput, UpdateFlowMediaStreamCommandOutput } from "./commands/UpdateFlowMediaStreamCommand";
30
- import { UpdateFlowOutputCommandInput, UpdateFlowOutputCommandOutput } from "./commands/UpdateFlowOutputCommand";
31
- import { UpdateFlowSourceCommandInput, UpdateFlowSourceCommandOutput } from "./commands/UpdateFlowSourceCommand";
32
- import { MediaConnectClient } from "./MediaConnectClient";
33
-
34
- export declare class MediaConnect extends MediaConnectClient {
35
-
36
- addFlowMediaStreams(args: AddFlowMediaStreamsCommandInput, options?: __HttpHandlerOptions): Promise<AddFlowMediaStreamsCommandOutput>;
37
- addFlowMediaStreams(args: AddFlowMediaStreamsCommandInput, cb: (err: any, data?: AddFlowMediaStreamsCommandOutput) => void): void;
38
- addFlowMediaStreams(args: AddFlowMediaStreamsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddFlowMediaStreamsCommandOutput) => void): void;
39
-
40
- addFlowOutputs(args: AddFlowOutputsCommandInput, options?: __HttpHandlerOptions): Promise<AddFlowOutputsCommandOutput>;
41
- addFlowOutputs(args: AddFlowOutputsCommandInput, cb: (err: any, data?: AddFlowOutputsCommandOutput) => void): void;
42
- addFlowOutputs(args: AddFlowOutputsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddFlowOutputsCommandOutput) => void): void;
43
-
44
- addFlowSources(args: AddFlowSourcesCommandInput, options?: __HttpHandlerOptions): Promise<AddFlowSourcesCommandOutput>;
45
- addFlowSources(args: AddFlowSourcesCommandInput, cb: (err: any, data?: AddFlowSourcesCommandOutput) => void): void;
46
- addFlowSources(args: AddFlowSourcesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddFlowSourcesCommandOutput) => void): void;
47
-
48
- addFlowVpcInterfaces(args: AddFlowVpcInterfacesCommandInput, options?: __HttpHandlerOptions): Promise<AddFlowVpcInterfacesCommandOutput>;
49
- addFlowVpcInterfaces(args: AddFlowVpcInterfacesCommandInput, cb: (err: any, data?: AddFlowVpcInterfacesCommandOutput) => void): void;
50
- addFlowVpcInterfaces(args: AddFlowVpcInterfacesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AddFlowVpcInterfacesCommandOutput) => void): void;
51
-
52
- createFlow(args: CreateFlowCommandInput, options?: __HttpHandlerOptions): Promise<CreateFlowCommandOutput>;
53
- createFlow(args: CreateFlowCommandInput, cb: (err: any, data?: CreateFlowCommandOutput) => void): void;
54
- createFlow(args: CreateFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFlowCommandOutput) => void): void;
55
-
56
- deleteFlow(args: DeleteFlowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFlowCommandOutput>;
57
- deleteFlow(args: DeleteFlowCommandInput, cb: (err: any, data?: DeleteFlowCommandOutput) => void): void;
58
- deleteFlow(args: DeleteFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFlowCommandOutput) => void): void;
59
-
60
- describeFlow(args: DescribeFlowCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFlowCommandOutput>;
61
- describeFlow(args: DescribeFlowCommandInput, cb: (err: any, data?: DescribeFlowCommandOutput) => void): void;
62
- describeFlow(args: DescribeFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFlowCommandOutput) => void): void;
63
-
64
- describeOffering(args: DescribeOfferingCommandInput, options?: __HttpHandlerOptions): Promise<DescribeOfferingCommandOutput>;
65
- describeOffering(args: DescribeOfferingCommandInput, cb: (err: any, data?: DescribeOfferingCommandOutput) => void): void;
66
- describeOffering(args: DescribeOfferingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeOfferingCommandOutput) => void): void;
67
-
68
- describeReservation(args: DescribeReservationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeReservationCommandOutput>;
69
- describeReservation(args: DescribeReservationCommandInput, cb: (err: any, data?: DescribeReservationCommandOutput) => void): void;
70
- describeReservation(args: DescribeReservationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeReservationCommandOutput) => void): void;
71
-
72
- grantFlowEntitlements(args: GrantFlowEntitlementsCommandInput, options?: __HttpHandlerOptions): Promise<GrantFlowEntitlementsCommandOutput>;
73
- grantFlowEntitlements(args: GrantFlowEntitlementsCommandInput, cb: (err: any, data?: GrantFlowEntitlementsCommandOutput) => void): void;
74
- grantFlowEntitlements(args: GrantFlowEntitlementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GrantFlowEntitlementsCommandOutput) => void): void;
75
-
76
- listEntitlements(args: ListEntitlementsCommandInput, options?: __HttpHandlerOptions): Promise<ListEntitlementsCommandOutput>;
77
- listEntitlements(args: ListEntitlementsCommandInput, cb: (err: any, data?: ListEntitlementsCommandOutput) => void): void;
78
- listEntitlements(args: ListEntitlementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEntitlementsCommandOutput) => void): void;
79
-
80
- listFlows(args: ListFlowsCommandInput, options?: __HttpHandlerOptions): Promise<ListFlowsCommandOutput>;
81
- listFlows(args: ListFlowsCommandInput, cb: (err: any, data?: ListFlowsCommandOutput) => void): void;
82
- listFlows(args: ListFlowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFlowsCommandOutput) => void): void;
83
-
84
- listOfferings(args: ListOfferingsCommandInput, options?: __HttpHandlerOptions): Promise<ListOfferingsCommandOutput>;
85
- listOfferings(args: ListOfferingsCommandInput, cb: (err: any, data?: ListOfferingsCommandOutput) => void): void;
86
- listOfferings(args: ListOfferingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOfferingsCommandOutput) => void): void;
87
-
88
- listReservations(args: ListReservationsCommandInput, options?: __HttpHandlerOptions): Promise<ListReservationsCommandOutput>;
89
- listReservations(args: ListReservationsCommandInput, cb: (err: any, data?: ListReservationsCommandOutput) => void): void;
90
- listReservations(args: ListReservationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListReservationsCommandOutput) => void): void;
91
-
92
- listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
93
- listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
94
- listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
95
-
96
- purchaseOffering(args: PurchaseOfferingCommandInput, options?: __HttpHandlerOptions): Promise<PurchaseOfferingCommandOutput>;
97
- purchaseOffering(args: PurchaseOfferingCommandInput, cb: (err: any, data?: PurchaseOfferingCommandOutput) => void): void;
98
- purchaseOffering(args: PurchaseOfferingCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PurchaseOfferingCommandOutput) => void): void;
99
-
100
- removeFlowMediaStream(args: RemoveFlowMediaStreamCommandInput, options?: __HttpHandlerOptions): Promise<RemoveFlowMediaStreamCommandOutput>;
101
- removeFlowMediaStream(args: RemoveFlowMediaStreamCommandInput, cb: (err: any, data?: RemoveFlowMediaStreamCommandOutput) => void): void;
102
- removeFlowMediaStream(args: RemoveFlowMediaStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveFlowMediaStreamCommandOutput) => void): void;
103
-
104
- removeFlowOutput(args: RemoveFlowOutputCommandInput, options?: __HttpHandlerOptions): Promise<RemoveFlowOutputCommandOutput>;
105
- removeFlowOutput(args: RemoveFlowOutputCommandInput, cb: (err: any, data?: RemoveFlowOutputCommandOutput) => void): void;
106
- removeFlowOutput(args: RemoveFlowOutputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveFlowOutputCommandOutput) => void): void;
107
-
108
- removeFlowSource(args: RemoveFlowSourceCommandInput, options?: __HttpHandlerOptions): Promise<RemoveFlowSourceCommandOutput>;
109
- removeFlowSource(args: RemoveFlowSourceCommandInput, cb: (err: any, data?: RemoveFlowSourceCommandOutput) => void): void;
110
- removeFlowSource(args: RemoveFlowSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveFlowSourceCommandOutput) => void): void;
111
-
112
- removeFlowVpcInterface(args: RemoveFlowVpcInterfaceCommandInput, options?: __HttpHandlerOptions): Promise<RemoveFlowVpcInterfaceCommandOutput>;
113
- removeFlowVpcInterface(args: RemoveFlowVpcInterfaceCommandInput, cb: (err: any, data?: RemoveFlowVpcInterfaceCommandOutput) => void): void;
114
- removeFlowVpcInterface(args: RemoveFlowVpcInterfaceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RemoveFlowVpcInterfaceCommandOutput) => void): void;
115
-
116
- revokeFlowEntitlement(args: RevokeFlowEntitlementCommandInput, options?: __HttpHandlerOptions): Promise<RevokeFlowEntitlementCommandOutput>;
117
- revokeFlowEntitlement(args: RevokeFlowEntitlementCommandInput, cb: (err: any, data?: RevokeFlowEntitlementCommandOutput) => void): void;
118
- revokeFlowEntitlement(args: RevokeFlowEntitlementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RevokeFlowEntitlementCommandOutput) => void): void;
119
-
120
- startFlow(args: StartFlowCommandInput, options?: __HttpHandlerOptions): Promise<StartFlowCommandOutput>;
121
- startFlow(args: StartFlowCommandInput, cb: (err: any, data?: StartFlowCommandOutput) => void): void;
122
- startFlow(args: StartFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartFlowCommandOutput) => void): void;
123
-
124
- stopFlow(args: StopFlowCommandInput, options?: __HttpHandlerOptions): Promise<StopFlowCommandOutput>;
125
- stopFlow(args: StopFlowCommandInput, cb: (err: any, data?: StopFlowCommandOutput) => void): void;
126
- stopFlow(args: StopFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopFlowCommandOutput) => void): void;
127
-
128
- tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
129
- tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
130
- tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
131
-
132
- untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
133
- untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
134
- untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
135
-
136
- updateFlow(args: UpdateFlowCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowCommandOutput>;
137
- updateFlow(args: UpdateFlowCommandInput, cb: (err: any, data?: UpdateFlowCommandOutput) => void): void;
138
- updateFlow(args: UpdateFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowCommandOutput) => void): void;
139
-
140
- updateFlowEntitlement(args: UpdateFlowEntitlementCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowEntitlementCommandOutput>;
141
- updateFlowEntitlement(args: UpdateFlowEntitlementCommandInput, cb: (err: any, data?: UpdateFlowEntitlementCommandOutput) => void): void;
142
- updateFlowEntitlement(args: UpdateFlowEntitlementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowEntitlementCommandOutput) => void): void;
143
-
144
- updateFlowMediaStream(args: UpdateFlowMediaStreamCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowMediaStreamCommandOutput>;
145
- updateFlowMediaStream(args: UpdateFlowMediaStreamCommandInput, cb: (err: any, data?: UpdateFlowMediaStreamCommandOutput) => void): void;
146
- updateFlowMediaStream(args: UpdateFlowMediaStreamCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowMediaStreamCommandOutput) => void): void;
147
-
148
- updateFlowOutput(args: UpdateFlowOutputCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowOutputCommandOutput>;
149
- updateFlowOutput(args: UpdateFlowOutputCommandInput, cb: (err: any, data?: UpdateFlowOutputCommandOutput) => void): void;
150
- updateFlowOutput(args: UpdateFlowOutputCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowOutputCommandOutput) => void): void;
151
-
152
- updateFlowSource(args: UpdateFlowSourceCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowSourceCommandOutput>;
153
- updateFlowSource(args: UpdateFlowSourceCommandInput, cb: (err: any, data?: UpdateFlowSourceCommandOutput) => void): void;
154
- updateFlowSource(args: UpdateFlowSourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowSourceCommandOutput) => void): void;
155
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ AddFlowMediaStreamsCommandInput,
4
+ AddFlowMediaStreamsCommandOutput,
5
+ } from "./commands/AddFlowMediaStreamsCommand";
6
+ import {
7
+ AddFlowOutputsCommandInput,
8
+ AddFlowOutputsCommandOutput,
9
+ } from "./commands/AddFlowOutputsCommand";
10
+ import {
11
+ AddFlowSourcesCommandInput,
12
+ AddFlowSourcesCommandOutput,
13
+ } from "./commands/AddFlowSourcesCommand";
14
+ import {
15
+ AddFlowVpcInterfacesCommandInput,
16
+ AddFlowVpcInterfacesCommandOutput,
17
+ } from "./commands/AddFlowVpcInterfacesCommand";
18
+ import {
19
+ CreateFlowCommandInput,
20
+ CreateFlowCommandOutput,
21
+ } from "./commands/CreateFlowCommand";
22
+ import {
23
+ DeleteFlowCommandInput,
24
+ DeleteFlowCommandOutput,
25
+ } from "./commands/DeleteFlowCommand";
26
+ import {
27
+ DescribeFlowCommandInput,
28
+ DescribeFlowCommandOutput,
29
+ } from "./commands/DescribeFlowCommand";
30
+ import {
31
+ DescribeOfferingCommandInput,
32
+ DescribeOfferingCommandOutput,
33
+ } from "./commands/DescribeOfferingCommand";
34
+ import {
35
+ DescribeReservationCommandInput,
36
+ DescribeReservationCommandOutput,
37
+ } from "./commands/DescribeReservationCommand";
38
+ import {
39
+ GrantFlowEntitlementsCommandInput,
40
+ GrantFlowEntitlementsCommandOutput,
41
+ } from "./commands/GrantFlowEntitlementsCommand";
42
+ import {
43
+ ListEntitlementsCommandInput,
44
+ ListEntitlementsCommandOutput,
45
+ } from "./commands/ListEntitlementsCommand";
46
+ import {
47
+ ListFlowsCommandInput,
48
+ ListFlowsCommandOutput,
49
+ } from "./commands/ListFlowsCommand";
50
+ import {
51
+ ListOfferingsCommandInput,
52
+ ListOfferingsCommandOutput,
53
+ } from "./commands/ListOfferingsCommand";
54
+ import {
55
+ ListReservationsCommandInput,
56
+ ListReservationsCommandOutput,
57
+ } from "./commands/ListReservationsCommand";
58
+ import {
59
+ ListTagsForResourceCommandInput,
60
+ ListTagsForResourceCommandOutput,
61
+ } from "./commands/ListTagsForResourceCommand";
62
+ import {
63
+ PurchaseOfferingCommandInput,
64
+ PurchaseOfferingCommandOutput,
65
+ } from "./commands/PurchaseOfferingCommand";
66
+ import {
67
+ RemoveFlowMediaStreamCommandInput,
68
+ RemoveFlowMediaStreamCommandOutput,
69
+ } from "./commands/RemoveFlowMediaStreamCommand";
70
+ import {
71
+ RemoveFlowOutputCommandInput,
72
+ RemoveFlowOutputCommandOutput,
73
+ } from "./commands/RemoveFlowOutputCommand";
74
+ import {
75
+ RemoveFlowSourceCommandInput,
76
+ RemoveFlowSourceCommandOutput,
77
+ } from "./commands/RemoveFlowSourceCommand";
78
+ import {
79
+ RemoveFlowVpcInterfaceCommandInput,
80
+ RemoveFlowVpcInterfaceCommandOutput,
81
+ } from "./commands/RemoveFlowVpcInterfaceCommand";
82
+ import {
83
+ RevokeFlowEntitlementCommandInput,
84
+ RevokeFlowEntitlementCommandOutput,
85
+ } from "./commands/RevokeFlowEntitlementCommand";
86
+ import {
87
+ StartFlowCommandInput,
88
+ StartFlowCommandOutput,
89
+ } from "./commands/StartFlowCommand";
90
+ import {
91
+ StopFlowCommandInput,
92
+ StopFlowCommandOutput,
93
+ } from "./commands/StopFlowCommand";
94
+ import {
95
+ TagResourceCommandInput,
96
+ TagResourceCommandOutput,
97
+ } from "./commands/TagResourceCommand";
98
+ import {
99
+ UntagResourceCommandInput,
100
+ UntagResourceCommandOutput,
101
+ } from "./commands/UntagResourceCommand";
102
+ import {
103
+ UpdateFlowCommandInput,
104
+ UpdateFlowCommandOutput,
105
+ } from "./commands/UpdateFlowCommand";
106
+ import {
107
+ UpdateFlowEntitlementCommandInput,
108
+ UpdateFlowEntitlementCommandOutput,
109
+ } from "./commands/UpdateFlowEntitlementCommand";
110
+ import {
111
+ UpdateFlowMediaStreamCommandInput,
112
+ UpdateFlowMediaStreamCommandOutput,
113
+ } from "./commands/UpdateFlowMediaStreamCommand";
114
+ import {
115
+ UpdateFlowOutputCommandInput,
116
+ UpdateFlowOutputCommandOutput,
117
+ } from "./commands/UpdateFlowOutputCommand";
118
+ import {
119
+ UpdateFlowSourceCommandInput,
120
+ UpdateFlowSourceCommandOutput,
121
+ } from "./commands/UpdateFlowSourceCommand";
122
+ import { MediaConnectClient } from "./MediaConnectClient";
123
+
124
+ export declare class MediaConnect extends MediaConnectClient {
125
+ addFlowMediaStreams(
126
+ args: AddFlowMediaStreamsCommandInput,
127
+ options?: __HttpHandlerOptions
128
+ ): Promise<AddFlowMediaStreamsCommandOutput>;
129
+ addFlowMediaStreams(
130
+ args: AddFlowMediaStreamsCommandInput,
131
+ cb: (err: any, data?: AddFlowMediaStreamsCommandOutput) => void
132
+ ): void;
133
+ addFlowMediaStreams(
134
+ args: AddFlowMediaStreamsCommandInput,
135
+ options: __HttpHandlerOptions,
136
+ cb: (err: any, data?: AddFlowMediaStreamsCommandOutput) => void
137
+ ): void;
138
+
139
+ addFlowOutputs(
140
+ args: AddFlowOutputsCommandInput,
141
+ options?: __HttpHandlerOptions
142
+ ): Promise<AddFlowOutputsCommandOutput>;
143
+ addFlowOutputs(
144
+ args: AddFlowOutputsCommandInput,
145
+ cb: (err: any, data?: AddFlowOutputsCommandOutput) => void
146
+ ): void;
147
+ addFlowOutputs(
148
+ args: AddFlowOutputsCommandInput,
149
+ options: __HttpHandlerOptions,
150
+ cb: (err: any, data?: AddFlowOutputsCommandOutput) => void
151
+ ): void;
152
+
153
+ addFlowSources(
154
+ args: AddFlowSourcesCommandInput,
155
+ options?: __HttpHandlerOptions
156
+ ): Promise<AddFlowSourcesCommandOutput>;
157
+ addFlowSources(
158
+ args: AddFlowSourcesCommandInput,
159
+ cb: (err: any, data?: AddFlowSourcesCommandOutput) => void
160
+ ): void;
161
+ addFlowSources(
162
+ args: AddFlowSourcesCommandInput,
163
+ options: __HttpHandlerOptions,
164
+ cb: (err: any, data?: AddFlowSourcesCommandOutput) => void
165
+ ): void;
166
+
167
+ addFlowVpcInterfaces(
168
+ args: AddFlowVpcInterfacesCommandInput,
169
+ options?: __HttpHandlerOptions
170
+ ): Promise<AddFlowVpcInterfacesCommandOutput>;
171
+ addFlowVpcInterfaces(
172
+ args: AddFlowVpcInterfacesCommandInput,
173
+ cb: (err: any, data?: AddFlowVpcInterfacesCommandOutput) => void
174
+ ): void;
175
+ addFlowVpcInterfaces(
176
+ args: AddFlowVpcInterfacesCommandInput,
177
+ options: __HttpHandlerOptions,
178
+ cb: (err: any, data?: AddFlowVpcInterfacesCommandOutput) => void
179
+ ): void;
180
+
181
+ createFlow(
182
+ args: CreateFlowCommandInput,
183
+ options?: __HttpHandlerOptions
184
+ ): Promise<CreateFlowCommandOutput>;
185
+ createFlow(
186
+ args: CreateFlowCommandInput,
187
+ cb: (err: any, data?: CreateFlowCommandOutput) => void
188
+ ): void;
189
+ createFlow(
190
+ args: CreateFlowCommandInput,
191
+ options: __HttpHandlerOptions,
192
+ cb: (err: any, data?: CreateFlowCommandOutput) => void
193
+ ): void;
194
+
195
+ deleteFlow(
196
+ args: DeleteFlowCommandInput,
197
+ options?: __HttpHandlerOptions
198
+ ): Promise<DeleteFlowCommandOutput>;
199
+ deleteFlow(
200
+ args: DeleteFlowCommandInput,
201
+ cb: (err: any, data?: DeleteFlowCommandOutput) => void
202
+ ): void;
203
+ deleteFlow(
204
+ args: DeleteFlowCommandInput,
205
+ options: __HttpHandlerOptions,
206
+ cb: (err: any, data?: DeleteFlowCommandOutput) => void
207
+ ): void;
208
+
209
+ describeFlow(
210
+ args: DescribeFlowCommandInput,
211
+ options?: __HttpHandlerOptions
212
+ ): Promise<DescribeFlowCommandOutput>;
213
+ describeFlow(
214
+ args: DescribeFlowCommandInput,
215
+ cb: (err: any, data?: DescribeFlowCommandOutput) => void
216
+ ): void;
217
+ describeFlow(
218
+ args: DescribeFlowCommandInput,
219
+ options: __HttpHandlerOptions,
220
+ cb: (err: any, data?: DescribeFlowCommandOutput) => void
221
+ ): void;
222
+
223
+ describeOffering(
224
+ args: DescribeOfferingCommandInput,
225
+ options?: __HttpHandlerOptions
226
+ ): Promise<DescribeOfferingCommandOutput>;
227
+ describeOffering(
228
+ args: DescribeOfferingCommandInput,
229
+ cb: (err: any, data?: DescribeOfferingCommandOutput) => void
230
+ ): void;
231
+ describeOffering(
232
+ args: DescribeOfferingCommandInput,
233
+ options: __HttpHandlerOptions,
234
+ cb: (err: any, data?: DescribeOfferingCommandOutput) => void
235
+ ): void;
236
+
237
+ describeReservation(
238
+ args: DescribeReservationCommandInput,
239
+ options?: __HttpHandlerOptions
240
+ ): Promise<DescribeReservationCommandOutput>;
241
+ describeReservation(
242
+ args: DescribeReservationCommandInput,
243
+ cb: (err: any, data?: DescribeReservationCommandOutput) => void
244
+ ): void;
245
+ describeReservation(
246
+ args: DescribeReservationCommandInput,
247
+ options: __HttpHandlerOptions,
248
+ cb: (err: any, data?: DescribeReservationCommandOutput) => void
249
+ ): void;
250
+
251
+ grantFlowEntitlements(
252
+ args: GrantFlowEntitlementsCommandInput,
253
+ options?: __HttpHandlerOptions
254
+ ): Promise<GrantFlowEntitlementsCommandOutput>;
255
+ grantFlowEntitlements(
256
+ args: GrantFlowEntitlementsCommandInput,
257
+ cb: (err: any, data?: GrantFlowEntitlementsCommandOutput) => void
258
+ ): void;
259
+ grantFlowEntitlements(
260
+ args: GrantFlowEntitlementsCommandInput,
261
+ options: __HttpHandlerOptions,
262
+ cb: (err: any, data?: GrantFlowEntitlementsCommandOutput) => void
263
+ ): void;
264
+
265
+ listEntitlements(
266
+ args: ListEntitlementsCommandInput,
267
+ options?: __HttpHandlerOptions
268
+ ): Promise<ListEntitlementsCommandOutput>;
269
+ listEntitlements(
270
+ args: ListEntitlementsCommandInput,
271
+ cb: (err: any, data?: ListEntitlementsCommandOutput) => void
272
+ ): void;
273
+ listEntitlements(
274
+ args: ListEntitlementsCommandInput,
275
+ options: __HttpHandlerOptions,
276
+ cb: (err: any, data?: ListEntitlementsCommandOutput) => void
277
+ ): void;
278
+
279
+ listFlows(
280
+ args: ListFlowsCommandInput,
281
+ options?: __HttpHandlerOptions
282
+ ): Promise<ListFlowsCommandOutput>;
283
+ listFlows(
284
+ args: ListFlowsCommandInput,
285
+ cb: (err: any, data?: ListFlowsCommandOutput) => void
286
+ ): void;
287
+ listFlows(
288
+ args: ListFlowsCommandInput,
289
+ options: __HttpHandlerOptions,
290
+ cb: (err: any, data?: ListFlowsCommandOutput) => void
291
+ ): void;
292
+
293
+ listOfferings(
294
+ args: ListOfferingsCommandInput,
295
+ options?: __HttpHandlerOptions
296
+ ): Promise<ListOfferingsCommandOutput>;
297
+ listOfferings(
298
+ args: ListOfferingsCommandInput,
299
+ cb: (err: any, data?: ListOfferingsCommandOutput) => void
300
+ ): void;
301
+ listOfferings(
302
+ args: ListOfferingsCommandInput,
303
+ options: __HttpHandlerOptions,
304
+ cb: (err: any, data?: ListOfferingsCommandOutput) => void
305
+ ): void;
306
+
307
+ listReservations(
308
+ args: ListReservationsCommandInput,
309
+ options?: __HttpHandlerOptions
310
+ ): Promise<ListReservationsCommandOutput>;
311
+ listReservations(
312
+ args: ListReservationsCommandInput,
313
+ cb: (err: any, data?: ListReservationsCommandOutput) => void
314
+ ): void;
315
+ listReservations(
316
+ args: ListReservationsCommandInput,
317
+ options: __HttpHandlerOptions,
318
+ cb: (err: any, data?: ListReservationsCommandOutput) => void
319
+ ): void;
320
+
321
+ listTagsForResource(
322
+ args: ListTagsForResourceCommandInput,
323
+ options?: __HttpHandlerOptions
324
+ ): Promise<ListTagsForResourceCommandOutput>;
325
+ listTagsForResource(
326
+ args: ListTagsForResourceCommandInput,
327
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
328
+ ): void;
329
+ listTagsForResource(
330
+ args: ListTagsForResourceCommandInput,
331
+ options: __HttpHandlerOptions,
332
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
333
+ ): void;
334
+
335
+ purchaseOffering(
336
+ args: PurchaseOfferingCommandInput,
337
+ options?: __HttpHandlerOptions
338
+ ): Promise<PurchaseOfferingCommandOutput>;
339
+ purchaseOffering(
340
+ args: PurchaseOfferingCommandInput,
341
+ cb: (err: any, data?: PurchaseOfferingCommandOutput) => void
342
+ ): void;
343
+ purchaseOffering(
344
+ args: PurchaseOfferingCommandInput,
345
+ options: __HttpHandlerOptions,
346
+ cb: (err: any, data?: PurchaseOfferingCommandOutput) => void
347
+ ): void;
348
+
349
+ removeFlowMediaStream(
350
+ args: RemoveFlowMediaStreamCommandInput,
351
+ options?: __HttpHandlerOptions
352
+ ): Promise<RemoveFlowMediaStreamCommandOutput>;
353
+ removeFlowMediaStream(
354
+ args: RemoveFlowMediaStreamCommandInput,
355
+ cb: (err: any, data?: RemoveFlowMediaStreamCommandOutput) => void
356
+ ): void;
357
+ removeFlowMediaStream(
358
+ args: RemoveFlowMediaStreamCommandInput,
359
+ options: __HttpHandlerOptions,
360
+ cb: (err: any, data?: RemoveFlowMediaStreamCommandOutput) => void
361
+ ): void;
362
+
363
+ removeFlowOutput(
364
+ args: RemoveFlowOutputCommandInput,
365
+ options?: __HttpHandlerOptions
366
+ ): Promise<RemoveFlowOutputCommandOutput>;
367
+ removeFlowOutput(
368
+ args: RemoveFlowOutputCommandInput,
369
+ cb: (err: any, data?: RemoveFlowOutputCommandOutput) => void
370
+ ): void;
371
+ removeFlowOutput(
372
+ args: RemoveFlowOutputCommandInput,
373
+ options: __HttpHandlerOptions,
374
+ cb: (err: any, data?: RemoveFlowOutputCommandOutput) => void
375
+ ): void;
376
+
377
+ removeFlowSource(
378
+ args: RemoveFlowSourceCommandInput,
379
+ options?: __HttpHandlerOptions
380
+ ): Promise<RemoveFlowSourceCommandOutput>;
381
+ removeFlowSource(
382
+ args: RemoveFlowSourceCommandInput,
383
+ cb: (err: any, data?: RemoveFlowSourceCommandOutput) => void
384
+ ): void;
385
+ removeFlowSource(
386
+ args: RemoveFlowSourceCommandInput,
387
+ options: __HttpHandlerOptions,
388
+ cb: (err: any, data?: RemoveFlowSourceCommandOutput) => void
389
+ ): void;
390
+
391
+ removeFlowVpcInterface(
392
+ args: RemoveFlowVpcInterfaceCommandInput,
393
+ options?: __HttpHandlerOptions
394
+ ): Promise<RemoveFlowVpcInterfaceCommandOutput>;
395
+ removeFlowVpcInterface(
396
+ args: RemoveFlowVpcInterfaceCommandInput,
397
+ cb: (err: any, data?: RemoveFlowVpcInterfaceCommandOutput) => void
398
+ ): void;
399
+ removeFlowVpcInterface(
400
+ args: RemoveFlowVpcInterfaceCommandInput,
401
+ options: __HttpHandlerOptions,
402
+ cb: (err: any, data?: RemoveFlowVpcInterfaceCommandOutput) => void
403
+ ): void;
404
+
405
+ revokeFlowEntitlement(
406
+ args: RevokeFlowEntitlementCommandInput,
407
+ options?: __HttpHandlerOptions
408
+ ): Promise<RevokeFlowEntitlementCommandOutput>;
409
+ revokeFlowEntitlement(
410
+ args: RevokeFlowEntitlementCommandInput,
411
+ cb: (err: any, data?: RevokeFlowEntitlementCommandOutput) => void
412
+ ): void;
413
+ revokeFlowEntitlement(
414
+ args: RevokeFlowEntitlementCommandInput,
415
+ options: __HttpHandlerOptions,
416
+ cb: (err: any, data?: RevokeFlowEntitlementCommandOutput) => void
417
+ ): void;
418
+
419
+ startFlow(
420
+ args: StartFlowCommandInput,
421
+ options?: __HttpHandlerOptions
422
+ ): Promise<StartFlowCommandOutput>;
423
+ startFlow(
424
+ args: StartFlowCommandInput,
425
+ cb: (err: any, data?: StartFlowCommandOutput) => void
426
+ ): void;
427
+ startFlow(
428
+ args: StartFlowCommandInput,
429
+ options: __HttpHandlerOptions,
430
+ cb: (err: any, data?: StartFlowCommandOutput) => void
431
+ ): void;
432
+
433
+ stopFlow(
434
+ args: StopFlowCommandInput,
435
+ options?: __HttpHandlerOptions
436
+ ): Promise<StopFlowCommandOutput>;
437
+ stopFlow(
438
+ args: StopFlowCommandInput,
439
+ cb: (err: any, data?: StopFlowCommandOutput) => void
440
+ ): void;
441
+ stopFlow(
442
+ args: StopFlowCommandInput,
443
+ options: __HttpHandlerOptions,
444
+ cb: (err: any, data?: StopFlowCommandOutput) => void
445
+ ): void;
446
+
447
+ tagResource(
448
+ args: TagResourceCommandInput,
449
+ options?: __HttpHandlerOptions
450
+ ): Promise<TagResourceCommandOutput>;
451
+ tagResource(
452
+ args: TagResourceCommandInput,
453
+ cb: (err: any, data?: TagResourceCommandOutput) => void
454
+ ): void;
455
+ tagResource(
456
+ args: TagResourceCommandInput,
457
+ options: __HttpHandlerOptions,
458
+ cb: (err: any, data?: TagResourceCommandOutput) => void
459
+ ): void;
460
+
461
+ untagResource(
462
+ args: UntagResourceCommandInput,
463
+ options?: __HttpHandlerOptions
464
+ ): Promise<UntagResourceCommandOutput>;
465
+ untagResource(
466
+ args: UntagResourceCommandInput,
467
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
468
+ ): void;
469
+ untagResource(
470
+ args: UntagResourceCommandInput,
471
+ options: __HttpHandlerOptions,
472
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
473
+ ): void;
474
+
475
+ updateFlow(
476
+ args: UpdateFlowCommandInput,
477
+ options?: __HttpHandlerOptions
478
+ ): Promise<UpdateFlowCommandOutput>;
479
+ updateFlow(
480
+ args: UpdateFlowCommandInput,
481
+ cb: (err: any, data?: UpdateFlowCommandOutput) => void
482
+ ): void;
483
+ updateFlow(
484
+ args: UpdateFlowCommandInput,
485
+ options: __HttpHandlerOptions,
486
+ cb: (err: any, data?: UpdateFlowCommandOutput) => void
487
+ ): void;
488
+
489
+ updateFlowEntitlement(
490
+ args: UpdateFlowEntitlementCommandInput,
491
+ options?: __HttpHandlerOptions
492
+ ): Promise<UpdateFlowEntitlementCommandOutput>;
493
+ updateFlowEntitlement(
494
+ args: UpdateFlowEntitlementCommandInput,
495
+ cb: (err: any, data?: UpdateFlowEntitlementCommandOutput) => void
496
+ ): void;
497
+ updateFlowEntitlement(
498
+ args: UpdateFlowEntitlementCommandInput,
499
+ options: __HttpHandlerOptions,
500
+ cb: (err: any, data?: UpdateFlowEntitlementCommandOutput) => void
501
+ ): void;
502
+
503
+ updateFlowMediaStream(
504
+ args: UpdateFlowMediaStreamCommandInput,
505
+ options?: __HttpHandlerOptions
506
+ ): Promise<UpdateFlowMediaStreamCommandOutput>;
507
+ updateFlowMediaStream(
508
+ args: UpdateFlowMediaStreamCommandInput,
509
+ cb: (err: any, data?: UpdateFlowMediaStreamCommandOutput) => void
510
+ ): void;
511
+ updateFlowMediaStream(
512
+ args: UpdateFlowMediaStreamCommandInput,
513
+ options: __HttpHandlerOptions,
514
+ cb: (err: any, data?: UpdateFlowMediaStreamCommandOutput) => void
515
+ ): void;
516
+
517
+ updateFlowOutput(
518
+ args: UpdateFlowOutputCommandInput,
519
+ options?: __HttpHandlerOptions
520
+ ): Promise<UpdateFlowOutputCommandOutput>;
521
+ updateFlowOutput(
522
+ args: UpdateFlowOutputCommandInput,
523
+ cb: (err: any, data?: UpdateFlowOutputCommandOutput) => void
524
+ ): void;
525
+ updateFlowOutput(
526
+ args: UpdateFlowOutputCommandInput,
527
+ options: __HttpHandlerOptions,
528
+ cb: (err: any, data?: UpdateFlowOutputCommandOutput) => void
529
+ ): void;
530
+
531
+ updateFlowSource(
532
+ args: UpdateFlowSourceCommandInput,
533
+ options?: __HttpHandlerOptions
534
+ ): Promise<UpdateFlowSourceCommandOutput>;
535
+ updateFlowSource(
536
+ args: UpdateFlowSourceCommandInput,
537
+ cb: (err: any, data?: UpdateFlowSourceCommandOutput) => void
538
+ ): void;
539
+ updateFlowSource(
540
+ args: UpdateFlowSourceCommandInput,
541
+ options: __HttpHandlerOptions,
542
+ cb: (err: any, data?: UpdateFlowSourceCommandOutput) => void
543
+ ): void;
544
+ }