@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,155 +1,514 @@
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
+ export declare class MediaConnect extends MediaConnectClient {
124
+ addFlowMediaStreams(
125
+ args: AddFlowMediaStreamsCommandInput,
126
+ options?: __HttpHandlerOptions
127
+ ): Promise<AddFlowMediaStreamsCommandOutput>;
128
+ addFlowMediaStreams(
129
+ args: AddFlowMediaStreamsCommandInput,
130
+ cb: (err: any, data?: AddFlowMediaStreamsCommandOutput) => void
131
+ ): void;
132
+ addFlowMediaStreams(
133
+ args: AddFlowMediaStreamsCommandInput,
134
+ options: __HttpHandlerOptions,
135
+ cb: (err: any, data?: AddFlowMediaStreamsCommandOutput) => void
136
+ ): void;
137
+ addFlowOutputs(
138
+ args: AddFlowOutputsCommandInput,
139
+ options?: __HttpHandlerOptions
140
+ ): Promise<AddFlowOutputsCommandOutput>;
141
+ addFlowOutputs(
142
+ args: AddFlowOutputsCommandInput,
143
+ cb: (err: any, data?: AddFlowOutputsCommandOutput) => void
144
+ ): void;
145
+ addFlowOutputs(
146
+ args: AddFlowOutputsCommandInput,
147
+ options: __HttpHandlerOptions,
148
+ cb: (err: any, data?: AddFlowOutputsCommandOutput) => void
149
+ ): void;
150
+ addFlowSources(
151
+ args: AddFlowSourcesCommandInput,
152
+ options?: __HttpHandlerOptions
153
+ ): Promise<AddFlowSourcesCommandOutput>;
154
+ addFlowSources(
155
+ args: AddFlowSourcesCommandInput,
156
+ cb: (err: any, data?: AddFlowSourcesCommandOutput) => void
157
+ ): void;
158
+ addFlowSources(
159
+ args: AddFlowSourcesCommandInput,
160
+ options: __HttpHandlerOptions,
161
+ cb: (err: any, data?: AddFlowSourcesCommandOutput) => void
162
+ ): void;
163
+ addFlowVpcInterfaces(
164
+ args: AddFlowVpcInterfacesCommandInput,
165
+ options?: __HttpHandlerOptions
166
+ ): Promise<AddFlowVpcInterfacesCommandOutput>;
167
+ addFlowVpcInterfaces(
168
+ args: AddFlowVpcInterfacesCommandInput,
169
+ cb: (err: any, data?: AddFlowVpcInterfacesCommandOutput) => void
170
+ ): void;
171
+ addFlowVpcInterfaces(
172
+ args: AddFlowVpcInterfacesCommandInput,
173
+ options: __HttpHandlerOptions,
174
+ cb: (err: any, data?: AddFlowVpcInterfacesCommandOutput) => void
175
+ ): void;
176
+ createFlow(
177
+ args: CreateFlowCommandInput,
178
+ options?: __HttpHandlerOptions
179
+ ): Promise<CreateFlowCommandOutput>;
180
+ createFlow(
181
+ args: CreateFlowCommandInput,
182
+ cb: (err: any, data?: CreateFlowCommandOutput) => void
183
+ ): void;
184
+ createFlow(
185
+ args: CreateFlowCommandInput,
186
+ options: __HttpHandlerOptions,
187
+ cb: (err: any, data?: CreateFlowCommandOutput) => void
188
+ ): void;
189
+ deleteFlow(
190
+ args: DeleteFlowCommandInput,
191
+ options?: __HttpHandlerOptions
192
+ ): Promise<DeleteFlowCommandOutput>;
193
+ deleteFlow(
194
+ args: DeleteFlowCommandInput,
195
+ cb: (err: any, data?: DeleteFlowCommandOutput) => void
196
+ ): void;
197
+ deleteFlow(
198
+ args: DeleteFlowCommandInput,
199
+ options: __HttpHandlerOptions,
200
+ cb: (err: any, data?: DeleteFlowCommandOutput) => void
201
+ ): void;
202
+ describeFlow(
203
+ args: DescribeFlowCommandInput,
204
+ options?: __HttpHandlerOptions
205
+ ): Promise<DescribeFlowCommandOutput>;
206
+ describeFlow(
207
+ args: DescribeFlowCommandInput,
208
+ cb: (err: any, data?: DescribeFlowCommandOutput) => void
209
+ ): void;
210
+ describeFlow(
211
+ args: DescribeFlowCommandInput,
212
+ options: __HttpHandlerOptions,
213
+ cb: (err: any, data?: DescribeFlowCommandOutput) => void
214
+ ): void;
215
+ describeOffering(
216
+ args: DescribeOfferingCommandInput,
217
+ options?: __HttpHandlerOptions
218
+ ): Promise<DescribeOfferingCommandOutput>;
219
+ describeOffering(
220
+ args: DescribeOfferingCommandInput,
221
+ cb: (err: any, data?: DescribeOfferingCommandOutput) => void
222
+ ): void;
223
+ describeOffering(
224
+ args: DescribeOfferingCommandInput,
225
+ options: __HttpHandlerOptions,
226
+ cb: (err: any, data?: DescribeOfferingCommandOutput) => void
227
+ ): void;
228
+ describeReservation(
229
+ args: DescribeReservationCommandInput,
230
+ options?: __HttpHandlerOptions
231
+ ): Promise<DescribeReservationCommandOutput>;
232
+ describeReservation(
233
+ args: DescribeReservationCommandInput,
234
+ cb: (err: any, data?: DescribeReservationCommandOutput) => void
235
+ ): void;
236
+ describeReservation(
237
+ args: DescribeReservationCommandInput,
238
+ options: __HttpHandlerOptions,
239
+ cb: (err: any, data?: DescribeReservationCommandOutput) => void
240
+ ): void;
241
+ grantFlowEntitlements(
242
+ args: GrantFlowEntitlementsCommandInput,
243
+ options?: __HttpHandlerOptions
244
+ ): Promise<GrantFlowEntitlementsCommandOutput>;
245
+ grantFlowEntitlements(
246
+ args: GrantFlowEntitlementsCommandInput,
247
+ cb: (err: any, data?: GrantFlowEntitlementsCommandOutput) => void
248
+ ): void;
249
+ grantFlowEntitlements(
250
+ args: GrantFlowEntitlementsCommandInput,
251
+ options: __HttpHandlerOptions,
252
+ cb: (err: any, data?: GrantFlowEntitlementsCommandOutput) => void
253
+ ): void;
254
+ listEntitlements(
255
+ args: ListEntitlementsCommandInput,
256
+ options?: __HttpHandlerOptions
257
+ ): Promise<ListEntitlementsCommandOutput>;
258
+ listEntitlements(
259
+ args: ListEntitlementsCommandInput,
260
+ cb: (err: any, data?: ListEntitlementsCommandOutput) => void
261
+ ): void;
262
+ listEntitlements(
263
+ args: ListEntitlementsCommandInput,
264
+ options: __HttpHandlerOptions,
265
+ cb: (err: any, data?: ListEntitlementsCommandOutput) => void
266
+ ): void;
267
+ listFlows(
268
+ args: ListFlowsCommandInput,
269
+ options?: __HttpHandlerOptions
270
+ ): Promise<ListFlowsCommandOutput>;
271
+ listFlows(
272
+ args: ListFlowsCommandInput,
273
+ cb: (err: any, data?: ListFlowsCommandOutput) => void
274
+ ): void;
275
+ listFlows(
276
+ args: ListFlowsCommandInput,
277
+ options: __HttpHandlerOptions,
278
+ cb: (err: any, data?: ListFlowsCommandOutput) => void
279
+ ): void;
280
+ listOfferings(
281
+ args: ListOfferingsCommandInput,
282
+ options?: __HttpHandlerOptions
283
+ ): Promise<ListOfferingsCommandOutput>;
284
+ listOfferings(
285
+ args: ListOfferingsCommandInput,
286
+ cb: (err: any, data?: ListOfferingsCommandOutput) => void
287
+ ): void;
288
+ listOfferings(
289
+ args: ListOfferingsCommandInput,
290
+ options: __HttpHandlerOptions,
291
+ cb: (err: any, data?: ListOfferingsCommandOutput) => void
292
+ ): void;
293
+ listReservations(
294
+ args: ListReservationsCommandInput,
295
+ options?: __HttpHandlerOptions
296
+ ): Promise<ListReservationsCommandOutput>;
297
+ listReservations(
298
+ args: ListReservationsCommandInput,
299
+ cb: (err: any, data?: ListReservationsCommandOutput) => void
300
+ ): void;
301
+ listReservations(
302
+ args: ListReservationsCommandInput,
303
+ options: __HttpHandlerOptions,
304
+ cb: (err: any, data?: ListReservationsCommandOutput) => void
305
+ ): void;
306
+ listTagsForResource(
307
+ args: ListTagsForResourceCommandInput,
308
+ options?: __HttpHandlerOptions
309
+ ): Promise<ListTagsForResourceCommandOutput>;
310
+ listTagsForResource(
311
+ args: ListTagsForResourceCommandInput,
312
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
313
+ ): void;
314
+ listTagsForResource(
315
+ args: ListTagsForResourceCommandInput,
316
+ options: __HttpHandlerOptions,
317
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
318
+ ): void;
319
+ purchaseOffering(
320
+ args: PurchaseOfferingCommandInput,
321
+ options?: __HttpHandlerOptions
322
+ ): Promise<PurchaseOfferingCommandOutput>;
323
+ purchaseOffering(
324
+ args: PurchaseOfferingCommandInput,
325
+ cb: (err: any, data?: PurchaseOfferingCommandOutput) => void
326
+ ): void;
327
+ purchaseOffering(
328
+ args: PurchaseOfferingCommandInput,
329
+ options: __HttpHandlerOptions,
330
+ cb: (err: any, data?: PurchaseOfferingCommandOutput) => void
331
+ ): void;
332
+ removeFlowMediaStream(
333
+ args: RemoveFlowMediaStreamCommandInput,
334
+ options?: __HttpHandlerOptions
335
+ ): Promise<RemoveFlowMediaStreamCommandOutput>;
336
+ removeFlowMediaStream(
337
+ args: RemoveFlowMediaStreamCommandInput,
338
+ cb: (err: any, data?: RemoveFlowMediaStreamCommandOutput) => void
339
+ ): void;
340
+ removeFlowMediaStream(
341
+ args: RemoveFlowMediaStreamCommandInput,
342
+ options: __HttpHandlerOptions,
343
+ cb: (err: any, data?: RemoveFlowMediaStreamCommandOutput) => void
344
+ ): void;
345
+ removeFlowOutput(
346
+ args: RemoveFlowOutputCommandInput,
347
+ options?: __HttpHandlerOptions
348
+ ): Promise<RemoveFlowOutputCommandOutput>;
349
+ removeFlowOutput(
350
+ args: RemoveFlowOutputCommandInput,
351
+ cb: (err: any, data?: RemoveFlowOutputCommandOutput) => void
352
+ ): void;
353
+ removeFlowOutput(
354
+ args: RemoveFlowOutputCommandInput,
355
+ options: __HttpHandlerOptions,
356
+ cb: (err: any, data?: RemoveFlowOutputCommandOutput) => void
357
+ ): void;
358
+ removeFlowSource(
359
+ args: RemoveFlowSourceCommandInput,
360
+ options?: __HttpHandlerOptions
361
+ ): Promise<RemoveFlowSourceCommandOutput>;
362
+ removeFlowSource(
363
+ args: RemoveFlowSourceCommandInput,
364
+ cb: (err: any, data?: RemoveFlowSourceCommandOutput) => void
365
+ ): void;
366
+ removeFlowSource(
367
+ args: RemoveFlowSourceCommandInput,
368
+ options: __HttpHandlerOptions,
369
+ cb: (err: any, data?: RemoveFlowSourceCommandOutput) => void
370
+ ): void;
371
+ removeFlowVpcInterface(
372
+ args: RemoveFlowVpcInterfaceCommandInput,
373
+ options?: __HttpHandlerOptions
374
+ ): Promise<RemoveFlowVpcInterfaceCommandOutput>;
375
+ removeFlowVpcInterface(
376
+ args: RemoveFlowVpcInterfaceCommandInput,
377
+ cb: (err: any, data?: RemoveFlowVpcInterfaceCommandOutput) => void
378
+ ): void;
379
+ removeFlowVpcInterface(
380
+ args: RemoveFlowVpcInterfaceCommandInput,
381
+ options: __HttpHandlerOptions,
382
+ cb: (err: any, data?: RemoveFlowVpcInterfaceCommandOutput) => void
383
+ ): void;
384
+ revokeFlowEntitlement(
385
+ args: RevokeFlowEntitlementCommandInput,
386
+ options?: __HttpHandlerOptions
387
+ ): Promise<RevokeFlowEntitlementCommandOutput>;
388
+ revokeFlowEntitlement(
389
+ args: RevokeFlowEntitlementCommandInput,
390
+ cb: (err: any, data?: RevokeFlowEntitlementCommandOutput) => void
391
+ ): void;
392
+ revokeFlowEntitlement(
393
+ args: RevokeFlowEntitlementCommandInput,
394
+ options: __HttpHandlerOptions,
395
+ cb: (err: any, data?: RevokeFlowEntitlementCommandOutput) => void
396
+ ): void;
397
+ startFlow(
398
+ args: StartFlowCommandInput,
399
+ options?: __HttpHandlerOptions
400
+ ): Promise<StartFlowCommandOutput>;
401
+ startFlow(
402
+ args: StartFlowCommandInput,
403
+ cb: (err: any, data?: StartFlowCommandOutput) => void
404
+ ): void;
405
+ startFlow(
406
+ args: StartFlowCommandInput,
407
+ options: __HttpHandlerOptions,
408
+ cb: (err: any, data?: StartFlowCommandOutput) => void
409
+ ): void;
410
+ stopFlow(
411
+ args: StopFlowCommandInput,
412
+ options?: __HttpHandlerOptions
413
+ ): Promise<StopFlowCommandOutput>;
414
+ stopFlow(
415
+ args: StopFlowCommandInput,
416
+ cb: (err: any, data?: StopFlowCommandOutput) => void
417
+ ): void;
418
+ stopFlow(
419
+ args: StopFlowCommandInput,
420
+ options: __HttpHandlerOptions,
421
+ cb: (err: any, data?: StopFlowCommandOutput) => void
422
+ ): void;
423
+ tagResource(
424
+ args: TagResourceCommandInput,
425
+ options?: __HttpHandlerOptions
426
+ ): Promise<TagResourceCommandOutput>;
427
+ tagResource(
428
+ args: TagResourceCommandInput,
429
+ cb: (err: any, data?: TagResourceCommandOutput) => void
430
+ ): void;
431
+ tagResource(
432
+ args: TagResourceCommandInput,
433
+ options: __HttpHandlerOptions,
434
+ cb: (err: any, data?: TagResourceCommandOutput) => void
435
+ ): void;
436
+ untagResource(
437
+ args: UntagResourceCommandInput,
438
+ options?: __HttpHandlerOptions
439
+ ): Promise<UntagResourceCommandOutput>;
440
+ untagResource(
441
+ args: UntagResourceCommandInput,
442
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
443
+ ): void;
444
+ untagResource(
445
+ args: UntagResourceCommandInput,
446
+ options: __HttpHandlerOptions,
447
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
448
+ ): void;
449
+ updateFlow(
450
+ args: UpdateFlowCommandInput,
451
+ options?: __HttpHandlerOptions
452
+ ): Promise<UpdateFlowCommandOutput>;
453
+ updateFlow(
454
+ args: UpdateFlowCommandInput,
455
+ cb: (err: any, data?: UpdateFlowCommandOutput) => void
456
+ ): void;
457
+ updateFlow(
458
+ args: UpdateFlowCommandInput,
459
+ options: __HttpHandlerOptions,
460
+ cb: (err: any, data?: UpdateFlowCommandOutput) => void
461
+ ): void;
462
+ updateFlowEntitlement(
463
+ args: UpdateFlowEntitlementCommandInput,
464
+ options?: __HttpHandlerOptions
465
+ ): Promise<UpdateFlowEntitlementCommandOutput>;
466
+ updateFlowEntitlement(
467
+ args: UpdateFlowEntitlementCommandInput,
468
+ cb: (err: any, data?: UpdateFlowEntitlementCommandOutput) => void
469
+ ): void;
470
+ updateFlowEntitlement(
471
+ args: UpdateFlowEntitlementCommandInput,
472
+ options: __HttpHandlerOptions,
473
+ cb: (err: any, data?: UpdateFlowEntitlementCommandOutput) => void
474
+ ): void;
475
+ updateFlowMediaStream(
476
+ args: UpdateFlowMediaStreamCommandInput,
477
+ options?: __HttpHandlerOptions
478
+ ): Promise<UpdateFlowMediaStreamCommandOutput>;
479
+ updateFlowMediaStream(
480
+ args: UpdateFlowMediaStreamCommandInput,
481
+ cb: (err: any, data?: UpdateFlowMediaStreamCommandOutput) => void
482
+ ): void;
483
+ updateFlowMediaStream(
484
+ args: UpdateFlowMediaStreamCommandInput,
485
+ options: __HttpHandlerOptions,
486
+ cb: (err: any, data?: UpdateFlowMediaStreamCommandOutput) => void
487
+ ): void;
488
+ updateFlowOutput(
489
+ args: UpdateFlowOutputCommandInput,
490
+ options?: __HttpHandlerOptions
491
+ ): Promise<UpdateFlowOutputCommandOutput>;
492
+ updateFlowOutput(
493
+ args: UpdateFlowOutputCommandInput,
494
+ cb: (err: any, data?: UpdateFlowOutputCommandOutput) => void
495
+ ): void;
496
+ updateFlowOutput(
497
+ args: UpdateFlowOutputCommandInput,
498
+ options: __HttpHandlerOptions,
499
+ cb: (err: any, data?: UpdateFlowOutputCommandOutput) => void
500
+ ): void;
501
+ updateFlowSource(
502
+ args: UpdateFlowSourceCommandInput,
503
+ options?: __HttpHandlerOptions
504
+ ): Promise<UpdateFlowSourceCommandOutput>;
505
+ updateFlowSource(
506
+ args: UpdateFlowSourceCommandInput,
507
+ cb: (err: any, data?: UpdateFlowSourceCommandOutput) => void
508
+ ): void;
509
+ updateFlowSource(
510
+ args: UpdateFlowSourceCommandInput,
511
+ options: __HttpHandlerOptions,
512
+ cb: (err: any, data?: UpdateFlowSourceCommandOutput) => void
513
+ ): void;
514
+ }