@aws-sdk/client-mediapackagev2 3.679.0 → 3.682.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 +105 -0
- package/dist-types/commands/CreateHarvestJobCommand.d.ts +253 -0
- package/dist-types/commands/GetHarvestJobCommand.d.ts +188 -0
- package/dist-types/commands/ListHarvestJobsCommand.d.ts +473 -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 +7 -6
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListHarvestJobsCommandInput, ListHarvestJobsCommandOutput } from "../commands/ListHarvestJobsCommand";
|
|
3
|
+
import { MediaPackageV2PaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListHarvestJobs: (config: MediaPackageV2PaginationConfiguration, input: ListHarvestJobsCommandInput, ...rest: any[]) => Paginator<ListHarvestJobsCommandOutput>;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { CancelHarvestJobCommandInput, CancelHarvestJobCommandOutput } from "../commands/CancelHarvestJobCommand";
|
|
3
4
|
import { CreateChannelCommandInput, CreateChannelCommandOutput } from "../commands/CreateChannelCommand";
|
|
4
5
|
import { CreateChannelGroupCommandInput, CreateChannelGroupCommandOutput } from "../commands/CreateChannelGroupCommand";
|
|
6
|
+
import { CreateHarvestJobCommandInput, CreateHarvestJobCommandOutput } from "../commands/CreateHarvestJobCommand";
|
|
5
7
|
import { CreateOriginEndpointCommandInput, CreateOriginEndpointCommandOutput } from "../commands/CreateOriginEndpointCommand";
|
|
6
8
|
import { DeleteChannelCommandInput, DeleteChannelCommandOutput } from "../commands/DeleteChannelCommand";
|
|
7
9
|
import { DeleteChannelGroupCommandInput, DeleteChannelGroupCommandOutput } from "../commands/DeleteChannelGroupCommand";
|
|
@@ -11,10 +13,12 @@ import { DeleteOriginEndpointPolicyCommandInput, DeleteOriginEndpointPolicyComma
|
|
|
11
13
|
import { GetChannelCommandInput, GetChannelCommandOutput } from "../commands/GetChannelCommand";
|
|
12
14
|
import { GetChannelGroupCommandInput, GetChannelGroupCommandOutput } from "../commands/GetChannelGroupCommand";
|
|
13
15
|
import { GetChannelPolicyCommandInput, GetChannelPolicyCommandOutput } from "../commands/GetChannelPolicyCommand";
|
|
16
|
+
import { GetHarvestJobCommandInput, GetHarvestJobCommandOutput } from "../commands/GetHarvestJobCommand";
|
|
14
17
|
import { GetOriginEndpointCommandInput, GetOriginEndpointCommandOutput } from "../commands/GetOriginEndpointCommand";
|
|
15
18
|
import { GetOriginEndpointPolicyCommandInput, GetOriginEndpointPolicyCommandOutput } from "../commands/GetOriginEndpointPolicyCommand";
|
|
16
19
|
import { ListChannelGroupsCommandInput, ListChannelGroupsCommandOutput } from "../commands/ListChannelGroupsCommand";
|
|
17
20
|
import { ListChannelsCommandInput, ListChannelsCommandOutput } from "../commands/ListChannelsCommand";
|
|
21
|
+
import { ListHarvestJobsCommandInput, ListHarvestJobsCommandOutput } from "../commands/ListHarvestJobsCommand";
|
|
18
22
|
import { ListOriginEndpointsCommandInput, ListOriginEndpointsCommandOutput } from "../commands/ListOriginEndpointsCommand";
|
|
19
23
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
20
24
|
import { PutChannelPolicyCommandInput, PutChannelPolicyCommandOutput } from "../commands/PutChannelPolicyCommand";
|
|
@@ -24,6 +28,10 @@ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../comman
|
|
|
24
28
|
import { UpdateChannelCommandInput, UpdateChannelCommandOutput } from "../commands/UpdateChannelCommand";
|
|
25
29
|
import { UpdateChannelGroupCommandInput, UpdateChannelGroupCommandOutput } from "../commands/UpdateChannelGroupCommand";
|
|
26
30
|
import { UpdateOriginEndpointCommandInput, UpdateOriginEndpointCommandOutput } from "../commands/UpdateOriginEndpointCommand";
|
|
31
|
+
/**
|
|
32
|
+
* serializeAws_restJson1CancelHarvestJobCommand
|
|
33
|
+
*/
|
|
34
|
+
export declare const se_CancelHarvestJobCommand: (input: CancelHarvestJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
27
35
|
/**
|
|
28
36
|
* serializeAws_restJson1CreateChannelCommand
|
|
29
37
|
*/
|
|
@@ -32,6 +40,10 @@ export declare const se_CreateChannelCommand: (input: CreateChannelCommandInput,
|
|
|
32
40
|
* serializeAws_restJson1CreateChannelGroupCommand
|
|
33
41
|
*/
|
|
34
42
|
export declare const se_CreateChannelGroupCommand: (input: CreateChannelGroupCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
|
+
/**
|
|
44
|
+
* serializeAws_restJson1CreateHarvestJobCommand
|
|
45
|
+
*/
|
|
46
|
+
export declare const se_CreateHarvestJobCommand: (input: CreateHarvestJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
47
|
/**
|
|
36
48
|
* serializeAws_restJson1CreateOriginEndpointCommand
|
|
37
49
|
*/
|
|
@@ -68,6 +80,10 @@ export declare const se_GetChannelGroupCommand: (input: GetChannelGroupCommandIn
|
|
|
68
80
|
* serializeAws_restJson1GetChannelPolicyCommand
|
|
69
81
|
*/
|
|
70
82
|
export declare const se_GetChannelPolicyCommand: (input: GetChannelPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
|
+
/**
|
|
84
|
+
* serializeAws_restJson1GetHarvestJobCommand
|
|
85
|
+
*/
|
|
86
|
+
export declare const se_GetHarvestJobCommand: (input: GetHarvestJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
71
87
|
/**
|
|
72
88
|
* serializeAws_restJson1GetOriginEndpointCommand
|
|
73
89
|
*/
|
|
@@ -84,6 +100,10 @@ export declare const se_ListChannelGroupsCommand: (input: ListChannelGroupsComma
|
|
|
84
100
|
* serializeAws_restJson1ListChannelsCommand
|
|
85
101
|
*/
|
|
86
102
|
export declare const se_ListChannelsCommand: (input: ListChannelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
103
|
+
/**
|
|
104
|
+
* serializeAws_restJson1ListHarvestJobsCommand
|
|
105
|
+
*/
|
|
106
|
+
export declare const se_ListHarvestJobsCommand: (input: ListHarvestJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
87
107
|
/**
|
|
88
108
|
* serializeAws_restJson1ListOriginEndpointsCommand
|
|
89
109
|
*/
|
|
@@ -120,6 +140,10 @@ export declare const se_UpdateChannelGroupCommand: (input: UpdateChannelGroupCom
|
|
|
120
140
|
* serializeAws_restJson1UpdateOriginEndpointCommand
|
|
121
141
|
*/
|
|
122
142
|
export declare const se_UpdateOriginEndpointCommand: (input: UpdateOriginEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
143
|
+
/**
|
|
144
|
+
* deserializeAws_restJson1CancelHarvestJobCommand
|
|
145
|
+
*/
|
|
146
|
+
export declare const de_CancelHarvestJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CancelHarvestJobCommandOutput>;
|
|
123
147
|
/**
|
|
124
148
|
* deserializeAws_restJson1CreateChannelCommand
|
|
125
149
|
*/
|
|
@@ -128,6 +152,10 @@ export declare const de_CreateChannelCommand: (output: __HttpResponse, context:
|
|
|
128
152
|
* deserializeAws_restJson1CreateChannelGroupCommand
|
|
129
153
|
*/
|
|
130
154
|
export declare const de_CreateChannelGroupCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateChannelGroupCommandOutput>;
|
|
155
|
+
/**
|
|
156
|
+
* deserializeAws_restJson1CreateHarvestJobCommand
|
|
157
|
+
*/
|
|
158
|
+
export declare const de_CreateHarvestJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateHarvestJobCommandOutput>;
|
|
131
159
|
/**
|
|
132
160
|
* deserializeAws_restJson1CreateOriginEndpointCommand
|
|
133
161
|
*/
|
|
@@ -164,6 +192,10 @@ export declare const de_GetChannelGroupCommand: (output: __HttpResponse, context
|
|
|
164
192
|
* deserializeAws_restJson1GetChannelPolicyCommand
|
|
165
193
|
*/
|
|
166
194
|
export declare const de_GetChannelPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChannelPolicyCommandOutput>;
|
|
195
|
+
/**
|
|
196
|
+
* deserializeAws_restJson1GetHarvestJobCommand
|
|
197
|
+
*/
|
|
198
|
+
export declare const de_GetHarvestJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetHarvestJobCommandOutput>;
|
|
167
199
|
/**
|
|
168
200
|
* deserializeAws_restJson1GetOriginEndpointCommand
|
|
169
201
|
*/
|
|
@@ -180,6 +212,10 @@ export declare const de_ListChannelGroupsCommand: (output: __HttpResponse, conte
|
|
|
180
212
|
* deserializeAws_restJson1ListChannelsCommand
|
|
181
213
|
*/
|
|
182
214
|
export declare const de_ListChannelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChannelsCommandOutput>;
|
|
215
|
+
/**
|
|
216
|
+
* deserializeAws_restJson1ListHarvestJobsCommand
|
|
217
|
+
*/
|
|
218
|
+
export declare const de_ListHarvestJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListHarvestJobsCommandOutput>;
|
|
183
219
|
/**
|
|
184
220
|
* deserializeAws_restJson1ListOriginEndpointsCommand
|
|
185
221
|
*/
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
CancelHarvestJobCommandInput,
|
|
4
|
+
CancelHarvestJobCommandOutput,
|
|
5
|
+
} from "./commands/CancelHarvestJobCommand";
|
|
2
6
|
import {
|
|
3
7
|
CreateChannelCommandInput,
|
|
4
8
|
CreateChannelCommandOutput,
|
|
@@ -7,6 +11,10 @@ import {
|
|
|
7
11
|
CreateChannelGroupCommandInput,
|
|
8
12
|
CreateChannelGroupCommandOutput,
|
|
9
13
|
} from "./commands/CreateChannelGroupCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateHarvestJobCommandInput,
|
|
16
|
+
CreateHarvestJobCommandOutput,
|
|
17
|
+
} from "./commands/CreateHarvestJobCommand";
|
|
10
18
|
import {
|
|
11
19
|
CreateOriginEndpointCommandInput,
|
|
12
20
|
CreateOriginEndpointCommandOutput,
|
|
@@ -43,6 +51,10 @@ import {
|
|
|
43
51
|
GetChannelPolicyCommandInput,
|
|
44
52
|
GetChannelPolicyCommandOutput,
|
|
45
53
|
} from "./commands/GetChannelPolicyCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetHarvestJobCommandInput,
|
|
56
|
+
GetHarvestJobCommandOutput,
|
|
57
|
+
} from "./commands/GetHarvestJobCommand";
|
|
46
58
|
import {
|
|
47
59
|
GetOriginEndpointCommandInput,
|
|
48
60
|
GetOriginEndpointCommandOutput,
|
|
@@ -59,6 +71,10 @@ import {
|
|
|
59
71
|
ListChannelsCommandInput,
|
|
60
72
|
ListChannelsCommandOutput,
|
|
61
73
|
} from "./commands/ListChannelsCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListHarvestJobsCommandInput,
|
|
76
|
+
ListHarvestJobsCommandOutput,
|
|
77
|
+
} from "./commands/ListHarvestJobsCommand";
|
|
62
78
|
import {
|
|
63
79
|
ListOriginEndpointsCommandInput,
|
|
64
80
|
ListOriginEndpointsCommandOutput,
|
|
@@ -97,6 +113,19 @@ import {
|
|
|
97
113
|
} from "./commands/UpdateOriginEndpointCommand";
|
|
98
114
|
import { MediaPackageV2Client } from "./MediaPackageV2Client";
|
|
99
115
|
export interface MediaPackageV2 {
|
|
116
|
+
cancelHarvestJob(
|
|
117
|
+
args: CancelHarvestJobCommandInput,
|
|
118
|
+
options?: __HttpHandlerOptions
|
|
119
|
+
): Promise<CancelHarvestJobCommandOutput>;
|
|
120
|
+
cancelHarvestJob(
|
|
121
|
+
args: CancelHarvestJobCommandInput,
|
|
122
|
+
cb: (err: any, data?: CancelHarvestJobCommandOutput) => void
|
|
123
|
+
): void;
|
|
124
|
+
cancelHarvestJob(
|
|
125
|
+
args: CancelHarvestJobCommandInput,
|
|
126
|
+
options: __HttpHandlerOptions,
|
|
127
|
+
cb: (err: any, data?: CancelHarvestJobCommandOutput) => void
|
|
128
|
+
): void;
|
|
100
129
|
createChannel(
|
|
101
130
|
args: CreateChannelCommandInput,
|
|
102
131
|
options?: __HttpHandlerOptions
|
|
@@ -123,6 +152,19 @@ export interface MediaPackageV2 {
|
|
|
123
152
|
options: __HttpHandlerOptions,
|
|
124
153
|
cb: (err: any, data?: CreateChannelGroupCommandOutput) => void
|
|
125
154
|
): void;
|
|
155
|
+
createHarvestJob(
|
|
156
|
+
args: CreateHarvestJobCommandInput,
|
|
157
|
+
options?: __HttpHandlerOptions
|
|
158
|
+
): Promise<CreateHarvestJobCommandOutput>;
|
|
159
|
+
createHarvestJob(
|
|
160
|
+
args: CreateHarvestJobCommandInput,
|
|
161
|
+
cb: (err: any, data?: CreateHarvestJobCommandOutput) => void
|
|
162
|
+
): void;
|
|
163
|
+
createHarvestJob(
|
|
164
|
+
args: CreateHarvestJobCommandInput,
|
|
165
|
+
options: __HttpHandlerOptions,
|
|
166
|
+
cb: (err: any, data?: CreateHarvestJobCommandOutput) => void
|
|
167
|
+
): void;
|
|
126
168
|
createOriginEndpoint(
|
|
127
169
|
args: CreateOriginEndpointCommandInput,
|
|
128
170
|
options?: __HttpHandlerOptions
|
|
@@ -240,6 +282,19 @@ export interface MediaPackageV2 {
|
|
|
240
282
|
options: __HttpHandlerOptions,
|
|
241
283
|
cb: (err: any, data?: GetChannelPolicyCommandOutput) => void
|
|
242
284
|
): void;
|
|
285
|
+
getHarvestJob(
|
|
286
|
+
args: GetHarvestJobCommandInput,
|
|
287
|
+
options?: __HttpHandlerOptions
|
|
288
|
+
): Promise<GetHarvestJobCommandOutput>;
|
|
289
|
+
getHarvestJob(
|
|
290
|
+
args: GetHarvestJobCommandInput,
|
|
291
|
+
cb: (err: any, data?: GetHarvestJobCommandOutput) => void
|
|
292
|
+
): void;
|
|
293
|
+
getHarvestJob(
|
|
294
|
+
args: GetHarvestJobCommandInput,
|
|
295
|
+
options: __HttpHandlerOptions,
|
|
296
|
+
cb: (err: any, data?: GetHarvestJobCommandOutput) => void
|
|
297
|
+
): void;
|
|
243
298
|
getOriginEndpoint(
|
|
244
299
|
args: GetOriginEndpointCommandInput,
|
|
245
300
|
options?: __HttpHandlerOptions
|
|
@@ -293,6 +348,19 @@ export interface MediaPackageV2 {
|
|
|
293
348
|
options: __HttpHandlerOptions,
|
|
294
349
|
cb: (err: any, data?: ListChannelsCommandOutput) => void
|
|
295
350
|
): void;
|
|
351
|
+
listHarvestJobs(
|
|
352
|
+
args: ListHarvestJobsCommandInput,
|
|
353
|
+
options?: __HttpHandlerOptions
|
|
354
|
+
): Promise<ListHarvestJobsCommandOutput>;
|
|
355
|
+
listHarvestJobs(
|
|
356
|
+
args: ListHarvestJobsCommandInput,
|
|
357
|
+
cb: (err: any, data?: ListHarvestJobsCommandOutput) => void
|
|
358
|
+
): void;
|
|
359
|
+
listHarvestJobs(
|
|
360
|
+
args: ListHarvestJobsCommandInput,
|
|
361
|
+
options: __HttpHandlerOptions,
|
|
362
|
+
cb: (err: any, data?: ListHarvestJobsCommandOutput) => void
|
|
363
|
+
): void;
|
|
296
364
|
listOriginEndpoints(
|
|
297
365
|
args: ListOriginEndpointsCommandInput,
|
|
298
366
|
options?: __HttpHandlerOptions
|
|
@@ -45,6 +45,10 @@ import {
|
|
|
45
45
|
HttpAuthSchemeInputConfig,
|
|
46
46
|
HttpAuthSchemeResolvedConfig,
|
|
47
47
|
} from "./auth/httpAuthSchemeProvider";
|
|
48
|
+
import {
|
|
49
|
+
CancelHarvestJobCommandInput,
|
|
50
|
+
CancelHarvestJobCommandOutput,
|
|
51
|
+
} from "./commands/CancelHarvestJobCommand";
|
|
48
52
|
import {
|
|
49
53
|
CreateChannelCommandInput,
|
|
50
54
|
CreateChannelCommandOutput,
|
|
@@ -53,6 +57,10 @@ import {
|
|
|
53
57
|
CreateChannelGroupCommandInput,
|
|
54
58
|
CreateChannelGroupCommandOutput,
|
|
55
59
|
} from "./commands/CreateChannelGroupCommand";
|
|
60
|
+
import {
|
|
61
|
+
CreateHarvestJobCommandInput,
|
|
62
|
+
CreateHarvestJobCommandOutput,
|
|
63
|
+
} from "./commands/CreateHarvestJobCommand";
|
|
56
64
|
import {
|
|
57
65
|
CreateOriginEndpointCommandInput,
|
|
58
66
|
CreateOriginEndpointCommandOutput,
|
|
@@ -89,6 +97,10 @@ import {
|
|
|
89
97
|
GetChannelPolicyCommandInput,
|
|
90
98
|
GetChannelPolicyCommandOutput,
|
|
91
99
|
} from "./commands/GetChannelPolicyCommand";
|
|
100
|
+
import {
|
|
101
|
+
GetHarvestJobCommandInput,
|
|
102
|
+
GetHarvestJobCommandOutput,
|
|
103
|
+
} from "./commands/GetHarvestJobCommand";
|
|
92
104
|
import {
|
|
93
105
|
GetOriginEndpointCommandInput,
|
|
94
106
|
GetOriginEndpointCommandOutput,
|
|
@@ -105,6 +117,10 @@ import {
|
|
|
105
117
|
ListChannelsCommandInput,
|
|
106
118
|
ListChannelsCommandOutput,
|
|
107
119
|
} from "./commands/ListChannelsCommand";
|
|
120
|
+
import {
|
|
121
|
+
ListHarvestJobsCommandInput,
|
|
122
|
+
ListHarvestJobsCommandOutput,
|
|
123
|
+
} from "./commands/ListHarvestJobsCommand";
|
|
108
124
|
import {
|
|
109
125
|
ListOriginEndpointsCommandInput,
|
|
110
126
|
ListOriginEndpointsCommandOutput,
|
|
@@ -149,8 +165,10 @@ import {
|
|
|
149
165
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
150
166
|
export { __Client };
|
|
151
167
|
export type ServiceInputTypes =
|
|
168
|
+
| CancelHarvestJobCommandInput
|
|
152
169
|
| CreateChannelCommandInput
|
|
153
170
|
| CreateChannelGroupCommandInput
|
|
171
|
+
| CreateHarvestJobCommandInput
|
|
154
172
|
| CreateOriginEndpointCommandInput
|
|
155
173
|
| DeleteChannelCommandInput
|
|
156
174
|
| DeleteChannelGroupCommandInput
|
|
@@ -160,10 +178,12 @@ export type ServiceInputTypes =
|
|
|
160
178
|
| GetChannelCommandInput
|
|
161
179
|
| GetChannelGroupCommandInput
|
|
162
180
|
| GetChannelPolicyCommandInput
|
|
181
|
+
| GetHarvestJobCommandInput
|
|
163
182
|
| GetOriginEndpointCommandInput
|
|
164
183
|
| GetOriginEndpointPolicyCommandInput
|
|
165
184
|
| ListChannelGroupsCommandInput
|
|
166
185
|
| ListChannelsCommandInput
|
|
186
|
+
| ListHarvestJobsCommandInput
|
|
167
187
|
| ListOriginEndpointsCommandInput
|
|
168
188
|
| ListTagsForResourceCommandInput
|
|
169
189
|
| PutChannelPolicyCommandInput
|
|
@@ -174,8 +194,10 @@ export type ServiceInputTypes =
|
|
|
174
194
|
| UpdateChannelGroupCommandInput
|
|
175
195
|
| UpdateOriginEndpointCommandInput;
|
|
176
196
|
export type ServiceOutputTypes =
|
|
197
|
+
| CancelHarvestJobCommandOutput
|
|
177
198
|
| CreateChannelCommandOutput
|
|
178
199
|
| CreateChannelGroupCommandOutput
|
|
200
|
+
| CreateHarvestJobCommandOutput
|
|
179
201
|
| CreateOriginEndpointCommandOutput
|
|
180
202
|
| DeleteChannelCommandOutput
|
|
181
203
|
| DeleteChannelGroupCommandOutput
|
|
@@ -185,10 +207,12 @@ export type ServiceOutputTypes =
|
|
|
185
207
|
| GetChannelCommandOutput
|
|
186
208
|
| GetChannelGroupCommandOutput
|
|
187
209
|
| GetChannelPolicyCommandOutput
|
|
210
|
+
| GetHarvestJobCommandOutput
|
|
188
211
|
| GetOriginEndpointCommandOutput
|
|
189
212
|
| GetOriginEndpointPolicyCommandOutput
|
|
190
213
|
| ListChannelGroupsCommandOutput
|
|
191
214
|
| ListChannelsCommandOutput
|
|
215
|
+
| ListHarvestJobsCommandOutput
|
|
192
216
|
| ListOriginEndpointsCommandOutput
|
|
193
217
|
| ListTagsForResourceCommandOutput
|
|
194
218
|
| PutChannelPolicyCommandOutput
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
MediaPackageV2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MediaPackageV2Client";
|
|
8
|
+
import {
|
|
9
|
+
CancelHarvestJobRequest,
|
|
10
|
+
CancelHarvestJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CancelHarvestJobCommandInput extends CancelHarvestJobRequest {}
|
|
15
|
+
export interface CancelHarvestJobCommandOutput
|
|
16
|
+
extends CancelHarvestJobResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CancelHarvestJobCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CancelHarvestJobCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CancelHarvestJobCommandInput,
|
|
23
|
+
CancelHarvestJobCommandOutput,
|
|
24
|
+
MediaPackageV2ClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CancelHarvestJobCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CancelHarvestJobCommandInput,
|
|
32
|
+
CancelHarvestJobCommandOutput,
|
|
33
|
+
MediaPackageV2ClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CancelHarvestJobCommand extends CancelHarvestJobCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: CancelHarvestJobRequest;
|
|
43
|
+
output: {};
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: CancelHarvestJobCommandInput;
|
|
47
|
+
output: CancelHarvestJobCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
MediaPackageV2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MediaPackageV2Client";
|
|
8
|
+
import {
|
|
9
|
+
CreateHarvestJobRequest,
|
|
10
|
+
CreateHarvestJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateHarvestJobCommandInput extends CreateHarvestJobRequest {}
|
|
15
|
+
export interface CreateHarvestJobCommandOutput
|
|
16
|
+
extends CreateHarvestJobResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CreateHarvestJobCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateHarvestJobCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateHarvestJobCommandInput,
|
|
23
|
+
CreateHarvestJobCommandOutput,
|
|
24
|
+
MediaPackageV2ClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateHarvestJobCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateHarvestJobCommandInput,
|
|
32
|
+
CreateHarvestJobCommandOutput,
|
|
33
|
+
MediaPackageV2ClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CreateHarvestJobCommand extends CreateHarvestJobCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: CreateHarvestJobRequest;
|
|
43
|
+
output: CreateHarvestJobResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: CreateHarvestJobCommandInput;
|
|
47
|
+
output: CreateHarvestJobCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
MediaPackageV2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MediaPackageV2Client";
|
|
8
|
+
import {
|
|
9
|
+
GetHarvestJobRequest,
|
|
10
|
+
GetHarvestJobResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetHarvestJobCommandInput extends GetHarvestJobRequest {}
|
|
15
|
+
export interface GetHarvestJobCommandOutput
|
|
16
|
+
extends GetHarvestJobResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetHarvestJobCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetHarvestJobCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetHarvestJobCommandInput,
|
|
23
|
+
GetHarvestJobCommandOutput,
|
|
24
|
+
MediaPackageV2ClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: GetHarvestJobCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetHarvestJobCommandInput,
|
|
32
|
+
GetHarvestJobCommandOutput,
|
|
33
|
+
MediaPackageV2ClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class GetHarvestJobCommand extends GetHarvestJobCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: GetHarvestJobRequest;
|
|
43
|
+
output: GetHarvestJobResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: GetHarvestJobCommandInput;
|
|
47
|
+
output: GetHarvestJobCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
MediaPackageV2ClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../MediaPackageV2Client";
|
|
8
|
+
import {
|
|
9
|
+
ListHarvestJobsRequest,
|
|
10
|
+
ListHarvestJobsResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface ListHarvestJobsCommandInput extends ListHarvestJobsRequest {}
|
|
15
|
+
export interface ListHarvestJobsCommandOutput
|
|
16
|
+
extends ListHarvestJobsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListHarvestJobsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListHarvestJobsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListHarvestJobsCommandInput,
|
|
23
|
+
ListHarvestJobsCommandOutput,
|
|
24
|
+
MediaPackageV2ClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListHarvestJobsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListHarvestJobsCommandInput,
|
|
32
|
+
ListHarvestJobsCommandOutput,
|
|
33
|
+
MediaPackageV2ClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListHarvestJobsCommand extends ListHarvestJobsCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: ListHarvestJobsRequest;
|
|
43
|
+
output: ListHarvestJobsResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: ListHarvestJobsCommandInput;
|
|
47
|
+
output: ListHarvestJobsCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -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";
|
|
@@ -5,5 +5,6 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { MediaPackageV2ExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
+
export * from "./waiters";
|
|
8
9
|
export * from "./models";
|
|
9
10
|
export { MediaPackageV2ServiceException } from "./models/MediaPackageV2ServiceException";
|