@aws-sdk/client-mediapackagev2 3.679.0 → 3.681.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 (44) hide show
  1. package/README.md +33 -1
  2. package/dist-cjs/index.js +388 -32
  3. package/dist-es/MediaPackageV2.js +8 -0
  4. package/dist-es/commands/CancelHarvestJobCommand.js +22 -0
  5. package/dist-es/commands/CreateHarvestJobCommand.js +22 -0
  6. package/dist-es/commands/GetHarvestJobCommand.js +22 -0
  7. package/dist-es/commands/ListHarvestJobsCommand.js +22 -0
  8. package/dist-es/commands/index.js +4 -0
  9. package/dist-es/index.js +1 -0
  10. package/dist-es/models/models_0.js +35 -19
  11. package/dist-es/pagination/ListHarvestJobsPaginator.js +4 -0
  12. package/dist-es/pagination/index.js +1 -0
  13. package/dist-es/protocols/Aws_restJson1.js +192 -3
  14. package/dist-es/waiters/index.js +1 -0
  15. package/dist-es/waiters/waitForHarvestJobFinished.js +67 -0
  16. package/dist-types/MediaPackageV2.d.ts +28 -0
  17. package/dist-types/MediaPackageV2Client.d.ts +6 -2
  18. package/dist-types/commands/CancelHarvestJobCommand.d.ts +91 -0
  19. package/dist-types/commands/CreateHarvestJobCommand.d.ts +167 -0
  20. package/dist-types/commands/GetHarvestJobCommand.d.ts +129 -0
  21. package/dist-types/commands/ListHarvestJobsCommand.d.ts +133 -0
  22. package/dist-types/commands/index.d.ts +4 -0
  23. package/dist-types/index.d.ts +1 -0
  24. package/dist-types/models/models_0.d.ts +580 -52
  25. package/dist-types/pagination/ListHarvestJobsPaginator.d.ts +7 -0
  26. package/dist-types/pagination/index.d.ts +1 -0
  27. package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
  28. package/dist-types/ts3.4/MediaPackageV2.d.ts +68 -0
  29. package/dist-types/ts3.4/MediaPackageV2Client.d.ts +24 -0
  30. package/dist-types/ts3.4/commands/CancelHarvestJobCommand.d.ts +50 -0
  31. package/dist-types/ts3.4/commands/CreateHarvestJobCommand.d.ts +50 -0
  32. package/dist-types/ts3.4/commands/GetHarvestJobCommand.d.ts +50 -0
  33. package/dist-types/ts3.4/commands/ListHarvestJobsCommand.d.ts +50 -0
  34. package/dist-types/ts3.4/commands/index.d.ts +4 -0
  35. package/dist-types/ts3.4/index.d.ts +1 -0
  36. package/dist-types/ts3.4/models/models_0.d.ts +157 -26
  37. package/dist-types/ts3.4/pagination/ListHarvestJobsPaginator.d.ts +11 -0
  38. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  39. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
  40. package/dist-types/ts3.4/waiters/index.d.ts +1 -0
  41. package/dist-types/ts3.4/waiters/waitForHarvestJobFinished.d.ts +11 -0
  42. package/dist-types/waiters/index.d.ts +1 -0
  43. package/dist-types/waiters/waitForHarvestJobFinished.d.ts +14 -0
  44. package/package.json +2 -1
@@ -1,5 +1,7 @@
1
+ export * from "./CancelHarvestJobCommand";
1
2
  export * from "./CreateChannelCommand";
2
3
  export * from "./CreateChannelGroupCommand";
4
+ export * from "./CreateHarvestJobCommand";
3
5
  export * from "./CreateOriginEndpointCommand";
4
6
  export * from "./DeleteChannelCommand";
5
7
  export * from "./DeleteChannelGroupCommand";
@@ -9,10 +11,12 @@ export * from "./DeleteOriginEndpointPolicyCommand";
9
11
  export * from "./GetChannelCommand";
10
12
  export * from "./GetChannelGroupCommand";
11
13
  export * from "./GetChannelPolicyCommand";
14
+ export * from "./GetHarvestJobCommand";
12
15
  export * from "./GetOriginEndpointCommand";
13
16
  export * from "./GetOriginEndpointPolicyCommand";
14
17
  export * from "./ListChannelGroupsCommand";
15
18
  export * from "./ListChannelsCommand";
19
+ export * from "./ListHarvestJobsCommand";
16
20
  export * from "./ListOriginEndpointsCommand";
17
21
  export * from "./ListTagsForResourceCommand";
18
22
  export * from "./PutChannelPolicyCommand";
@@ -21,5 +21,6 @@ export type { RuntimeExtension } from "./runtimeExtensions";
21
21
  export type { MediaPackageV2ExtensionConfiguration } from "./extensionConfiguration";
22
22
  export * from "./commands";
23
23
  export * from "./pagination";
24
+ export * from "./waiters";
24
25
  export * from "./models";
25
26
  export { MediaPackageV2ServiceException } from "./models/MediaPackageV2ServiceException";