@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.
- package/README.md +33 -1
- package/dist-cjs/index.js +388 -32
- package/dist-es/MediaPackageV2.js +8 -0
- package/dist-es/commands/CancelHarvestJobCommand.js +22 -0
- package/dist-es/commands/CreateHarvestJobCommand.js +22 -0
- package/dist-es/commands/GetHarvestJobCommand.js +22 -0
- package/dist-es/commands/ListHarvestJobsCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/index.js +1 -0
- package/dist-es/models/models_0.js +35 -19
- package/dist-es/pagination/ListHarvestJobsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +192 -3
- package/dist-es/waiters/index.js +1 -0
- package/dist-es/waiters/waitForHarvestJobFinished.js +67 -0
- package/dist-types/MediaPackageV2.d.ts +28 -0
- package/dist-types/MediaPackageV2Client.d.ts +6 -2
- package/dist-types/commands/CancelHarvestJobCommand.d.ts +91 -0
- package/dist-types/commands/CreateHarvestJobCommand.d.ts +167 -0
- package/dist-types/commands/GetHarvestJobCommand.d.ts +129 -0
- package/dist-types/commands/ListHarvestJobsCommand.d.ts +133 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +580 -52
- package/dist-types/pagination/ListHarvestJobsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/MediaPackageV2.d.ts +68 -0
- package/dist-types/ts3.4/MediaPackageV2Client.d.ts +24 -0
- package/dist-types/ts3.4/commands/CancelHarvestJobCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateHarvestJobCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetHarvestJobCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListHarvestJobsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +157 -26
- package/dist-types/ts3.4/pagination/ListHarvestJobsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/dist-types/ts3.4/waiters/index.d.ts +1 -0
- package/dist-types/ts3.4/waiters/waitForHarvestJobFinished.d.ts +11 -0
- package/dist-types/waiters/index.d.ts +1 -0
- package/dist-types/waiters/waitForHarvestJobFinished.d.ts +14 -0
- 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";
|
package/dist-types/index.d.ts
CHANGED
|
@@ -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";
|