@aws-sdk/client-mediapackage 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.
- package/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/MediaPackage.d.ts +343 -97
- package/dist-types/ts3.4/MediaPackageClient.d.ts +244 -92
- package/dist-types/ts3.4/commands/ConfigureLogsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateChannelCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateHarvestJobCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/CreateOriginEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteChannelCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteOriginEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeChannelCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeHarvestJobCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeOriginEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListChannelsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListHarvestJobsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListOriginEndpointsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +37 -16
- package/dist-types/ts3.4/commands/RotateChannelCredentialsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/RotateIngestEndpointCredentialsCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +31 -16
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +31 -16
- package/dist-types/ts3.4/commands/UpdateChannelCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/UpdateOriginEndpointCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +19 -19
- package/dist-types/ts3.4/endpoints.d.ts +2 -2
- package/dist-types/ts3.4/index.d.ts +6 -6
- package/dist-types/ts3.4/models/MediaPackageServiceException.d.ts +8 -6
- package/dist-types/ts3.4/models/index.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +1065 -1010
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListChannelsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListHarvestJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListOriginEndpointsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +4 -4
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +233 -59
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
- package/package.json +34 -34
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-mediapackage
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @aws-sdk/client-mediapackage
|
|
@@ -1,97 +1,343 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ConfigureLogsCommandInput,
|
|
4
|
+
ConfigureLogsCommandOutput,
|
|
5
|
+
} from "./commands/ConfigureLogsCommand";
|
|
6
|
+
import {
|
|
7
|
+
CreateChannelCommandInput,
|
|
8
|
+
CreateChannelCommandOutput,
|
|
9
|
+
} from "./commands/CreateChannelCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateHarvestJobCommandInput,
|
|
12
|
+
CreateHarvestJobCommandOutput,
|
|
13
|
+
} from "./commands/CreateHarvestJobCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateOriginEndpointCommandInput,
|
|
16
|
+
CreateOriginEndpointCommandOutput,
|
|
17
|
+
} from "./commands/CreateOriginEndpointCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteChannelCommandInput,
|
|
20
|
+
DeleteChannelCommandOutput,
|
|
21
|
+
} from "./commands/DeleteChannelCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteOriginEndpointCommandInput,
|
|
24
|
+
DeleteOriginEndpointCommandOutput,
|
|
25
|
+
} from "./commands/DeleteOriginEndpointCommand";
|
|
26
|
+
import {
|
|
27
|
+
DescribeChannelCommandInput,
|
|
28
|
+
DescribeChannelCommandOutput,
|
|
29
|
+
} from "./commands/DescribeChannelCommand";
|
|
30
|
+
import {
|
|
31
|
+
DescribeHarvestJobCommandInput,
|
|
32
|
+
DescribeHarvestJobCommandOutput,
|
|
33
|
+
} from "./commands/DescribeHarvestJobCommand";
|
|
34
|
+
import {
|
|
35
|
+
DescribeOriginEndpointCommandInput,
|
|
36
|
+
DescribeOriginEndpointCommandOutput,
|
|
37
|
+
} from "./commands/DescribeOriginEndpointCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListChannelsCommandInput,
|
|
40
|
+
ListChannelsCommandOutput,
|
|
41
|
+
} from "./commands/ListChannelsCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListHarvestJobsCommandInput,
|
|
44
|
+
ListHarvestJobsCommandOutput,
|
|
45
|
+
} from "./commands/ListHarvestJobsCommand";
|
|
46
|
+
import {
|
|
47
|
+
ListOriginEndpointsCommandInput,
|
|
48
|
+
ListOriginEndpointsCommandOutput,
|
|
49
|
+
} from "./commands/ListOriginEndpointsCommand";
|
|
50
|
+
import {
|
|
51
|
+
ListTagsForResourceCommandInput,
|
|
52
|
+
ListTagsForResourceCommandOutput,
|
|
53
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
54
|
+
import {
|
|
55
|
+
RotateChannelCredentialsCommandInput,
|
|
56
|
+
RotateChannelCredentialsCommandOutput,
|
|
57
|
+
} from "./commands/RotateChannelCredentialsCommand";
|
|
58
|
+
import {
|
|
59
|
+
RotateIngestEndpointCredentialsCommandInput,
|
|
60
|
+
RotateIngestEndpointCredentialsCommandOutput,
|
|
61
|
+
} from "./commands/RotateIngestEndpointCredentialsCommand";
|
|
62
|
+
import {
|
|
63
|
+
TagResourceCommandInput,
|
|
64
|
+
TagResourceCommandOutput,
|
|
65
|
+
} from "./commands/TagResourceCommand";
|
|
66
|
+
import {
|
|
67
|
+
UntagResourceCommandInput,
|
|
68
|
+
UntagResourceCommandOutput,
|
|
69
|
+
} from "./commands/UntagResourceCommand";
|
|
70
|
+
import {
|
|
71
|
+
UpdateChannelCommandInput,
|
|
72
|
+
UpdateChannelCommandOutput,
|
|
73
|
+
} from "./commands/UpdateChannelCommand";
|
|
74
|
+
import {
|
|
75
|
+
UpdateOriginEndpointCommandInput,
|
|
76
|
+
UpdateOriginEndpointCommandOutput,
|
|
77
|
+
} from "./commands/UpdateOriginEndpointCommand";
|
|
78
|
+
import { MediaPackageClient } from "./MediaPackageClient";
|
|
79
|
+
|
|
80
|
+
export declare class MediaPackage extends MediaPackageClient {
|
|
81
|
+
configureLogs(
|
|
82
|
+
args: ConfigureLogsCommandInput,
|
|
83
|
+
options?: __HttpHandlerOptions
|
|
84
|
+
): Promise<ConfigureLogsCommandOutput>;
|
|
85
|
+
configureLogs(
|
|
86
|
+
args: ConfigureLogsCommandInput,
|
|
87
|
+
cb: (err: any, data?: ConfigureLogsCommandOutput) => void
|
|
88
|
+
): void;
|
|
89
|
+
configureLogs(
|
|
90
|
+
args: ConfigureLogsCommandInput,
|
|
91
|
+
options: __HttpHandlerOptions,
|
|
92
|
+
cb: (err: any, data?: ConfigureLogsCommandOutput) => void
|
|
93
|
+
): void;
|
|
94
|
+
|
|
95
|
+
createChannel(
|
|
96
|
+
args: CreateChannelCommandInput,
|
|
97
|
+
options?: __HttpHandlerOptions
|
|
98
|
+
): Promise<CreateChannelCommandOutput>;
|
|
99
|
+
createChannel(
|
|
100
|
+
args: CreateChannelCommandInput,
|
|
101
|
+
cb: (err: any, data?: CreateChannelCommandOutput) => void
|
|
102
|
+
): void;
|
|
103
|
+
createChannel(
|
|
104
|
+
args: CreateChannelCommandInput,
|
|
105
|
+
options: __HttpHandlerOptions,
|
|
106
|
+
cb: (err: any, data?: CreateChannelCommandOutput) => void
|
|
107
|
+
): void;
|
|
108
|
+
|
|
109
|
+
createHarvestJob(
|
|
110
|
+
args: CreateHarvestJobCommandInput,
|
|
111
|
+
options?: __HttpHandlerOptions
|
|
112
|
+
): Promise<CreateHarvestJobCommandOutput>;
|
|
113
|
+
createHarvestJob(
|
|
114
|
+
args: CreateHarvestJobCommandInput,
|
|
115
|
+
cb: (err: any, data?: CreateHarvestJobCommandOutput) => void
|
|
116
|
+
): void;
|
|
117
|
+
createHarvestJob(
|
|
118
|
+
args: CreateHarvestJobCommandInput,
|
|
119
|
+
options: __HttpHandlerOptions,
|
|
120
|
+
cb: (err: any, data?: CreateHarvestJobCommandOutput) => void
|
|
121
|
+
): void;
|
|
122
|
+
|
|
123
|
+
createOriginEndpoint(
|
|
124
|
+
args: CreateOriginEndpointCommandInput,
|
|
125
|
+
options?: __HttpHandlerOptions
|
|
126
|
+
): Promise<CreateOriginEndpointCommandOutput>;
|
|
127
|
+
createOriginEndpoint(
|
|
128
|
+
args: CreateOriginEndpointCommandInput,
|
|
129
|
+
cb: (err: any, data?: CreateOriginEndpointCommandOutput) => void
|
|
130
|
+
): void;
|
|
131
|
+
createOriginEndpoint(
|
|
132
|
+
args: CreateOriginEndpointCommandInput,
|
|
133
|
+
options: __HttpHandlerOptions,
|
|
134
|
+
cb: (err: any, data?: CreateOriginEndpointCommandOutput) => void
|
|
135
|
+
): void;
|
|
136
|
+
|
|
137
|
+
deleteChannel(
|
|
138
|
+
args: DeleteChannelCommandInput,
|
|
139
|
+
options?: __HttpHandlerOptions
|
|
140
|
+
): Promise<DeleteChannelCommandOutput>;
|
|
141
|
+
deleteChannel(
|
|
142
|
+
args: DeleteChannelCommandInput,
|
|
143
|
+
cb: (err: any, data?: DeleteChannelCommandOutput) => void
|
|
144
|
+
): void;
|
|
145
|
+
deleteChannel(
|
|
146
|
+
args: DeleteChannelCommandInput,
|
|
147
|
+
options: __HttpHandlerOptions,
|
|
148
|
+
cb: (err: any, data?: DeleteChannelCommandOutput) => void
|
|
149
|
+
): void;
|
|
150
|
+
|
|
151
|
+
deleteOriginEndpoint(
|
|
152
|
+
args: DeleteOriginEndpointCommandInput,
|
|
153
|
+
options?: __HttpHandlerOptions
|
|
154
|
+
): Promise<DeleteOriginEndpointCommandOutput>;
|
|
155
|
+
deleteOriginEndpoint(
|
|
156
|
+
args: DeleteOriginEndpointCommandInput,
|
|
157
|
+
cb: (err: any, data?: DeleteOriginEndpointCommandOutput) => void
|
|
158
|
+
): void;
|
|
159
|
+
deleteOriginEndpoint(
|
|
160
|
+
args: DeleteOriginEndpointCommandInput,
|
|
161
|
+
options: __HttpHandlerOptions,
|
|
162
|
+
cb: (err: any, data?: DeleteOriginEndpointCommandOutput) => void
|
|
163
|
+
): void;
|
|
164
|
+
|
|
165
|
+
describeChannel(
|
|
166
|
+
args: DescribeChannelCommandInput,
|
|
167
|
+
options?: __HttpHandlerOptions
|
|
168
|
+
): Promise<DescribeChannelCommandOutput>;
|
|
169
|
+
describeChannel(
|
|
170
|
+
args: DescribeChannelCommandInput,
|
|
171
|
+
cb: (err: any, data?: DescribeChannelCommandOutput) => void
|
|
172
|
+
): void;
|
|
173
|
+
describeChannel(
|
|
174
|
+
args: DescribeChannelCommandInput,
|
|
175
|
+
options: __HttpHandlerOptions,
|
|
176
|
+
cb: (err: any, data?: DescribeChannelCommandOutput) => void
|
|
177
|
+
): void;
|
|
178
|
+
|
|
179
|
+
describeHarvestJob(
|
|
180
|
+
args: DescribeHarvestJobCommandInput,
|
|
181
|
+
options?: __HttpHandlerOptions
|
|
182
|
+
): Promise<DescribeHarvestJobCommandOutput>;
|
|
183
|
+
describeHarvestJob(
|
|
184
|
+
args: DescribeHarvestJobCommandInput,
|
|
185
|
+
cb: (err: any, data?: DescribeHarvestJobCommandOutput) => void
|
|
186
|
+
): void;
|
|
187
|
+
describeHarvestJob(
|
|
188
|
+
args: DescribeHarvestJobCommandInput,
|
|
189
|
+
options: __HttpHandlerOptions,
|
|
190
|
+
cb: (err: any, data?: DescribeHarvestJobCommandOutput) => void
|
|
191
|
+
): void;
|
|
192
|
+
|
|
193
|
+
describeOriginEndpoint(
|
|
194
|
+
args: DescribeOriginEndpointCommandInput,
|
|
195
|
+
options?: __HttpHandlerOptions
|
|
196
|
+
): Promise<DescribeOriginEndpointCommandOutput>;
|
|
197
|
+
describeOriginEndpoint(
|
|
198
|
+
args: DescribeOriginEndpointCommandInput,
|
|
199
|
+
cb: (err: any, data?: DescribeOriginEndpointCommandOutput) => void
|
|
200
|
+
): void;
|
|
201
|
+
describeOriginEndpoint(
|
|
202
|
+
args: DescribeOriginEndpointCommandInput,
|
|
203
|
+
options: __HttpHandlerOptions,
|
|
204
|
+
cb: (err: any, data?: DescribeOriginEndpointCommandOutput) => void
|
|
205
|
+
): void;
|
|
206
|
+
|
|
207
|
+
listChannels(
|
|
208
|
+
args: ListChannelsCommandInput,
|
|
209
|
+
options?: __HttpHandlerOptions
|
|
210
|
+
): Promise<ListChannelsCommandOutput>;
|
|
211
|
+
listChannels(
|
|
212
|
+
args: ListChannelsCommandInput,
|
|
213
|
+
cb: (err: any, data?: ListChannelsCommandOutput) => void
|
|
214
|
+
): void;
|
|
215
|
+
listChannels(
|
|
216
|
+
args: ListChannelsCommandInput,
|
|
217
|
+
options: __HttpHandlerOptions,
|
|
218
|
+
cb: (err: any, data?: ListChannelsCommandOutput) => void
|
|
219
|
+
): void;
|
|
220
|
+
|
|
221
|
+
listHarvestJobs(
|
|
222
|
+
args: ListHarvestJobsCommandInput,
|
|
223
|
+
options?: __HttpHandlerOptions
|
|
224
|
+
): Promise<ListHarvestJobsCommandOutput>;
|
|
225
|
+
listHarvestJobs(
|
|
226
|
+
args: ListHarvestJobsCommandInput,
|
|
227
|
+
cb: (err: any, data?: ListHarvestJobsCommandOutput) => void
|
|
228
|
+
): void;
|
|
229
|
+
listHarvestJobs(
|
|
230
|
+
args: ListHarvestJobsCommandInput,
|
|
231
|
+
options: __HttpHandlerOptions,
|
|
232
|
+
cb: (err: any, data?: ListHarvestJobsCommandOutput) => void
|
|
233
|
+
): void;
|
|
234
|
+
|
|
235
|
+
listOriginEndpoints(
|
|
236
|
+
args: ListOriginEndpointsCommandInput,
|
|
237
|
+
options?: __HttpHandlerOptions
|
|
238
|
+
): Promise<ListOriginEndpointsCommandOutput>;
|
|
239
|
+
listOriginEndpoints(
|
|
240
|
+
args: ListOriginEndpointsCommandInput,
|
|
241
|
+
cb: (err: any, data?: ListOriginEndpointsCommandOutput) => void
|
|
242
|
+
): void;
|
|
243
|
+
listOriginEndpoints(
|
|
244
|
+
args: ListOriginEndpointsCommandInput,
|
|
245
|
+
options: __HttpHandlerOptions,
|
|
246
|
+
cb: (err: any, data?: ListOriginEndpointsCommandOutput) => void
|
|
247
|
+
): void;
|
|
248
|
+
listTagsForResource(
|
|
249
|
+
args: ListTagsForResourceCommandInput,
|
|
250
|
+
options?: __HttpHandlerOptions
|
|
251
|
+
): Promise<ListTagsForResourceCommandOutput>;
|
|
252
|
+
listTagsForResource(
|
|
253
|
+
args: ListTagsForResourceCommandInput,
|
|
254
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
255
|
+
): void;
|
|
256
|
+
listTagsForResource(
|
|
257
|
+
args: ListTagsForResourceCommandInput,
|
|
258
|
+
options: __HttpHandlerOptions,
|
|
259
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
260
|
+
): void;
|
|
261
|
+
|
|
262
|
+
rotateChannelCredentials(
|
|
263
|
+
args: RotateChannelCredentialsCommandInput,
|
|
264
|
+
options?: __HttpHandlerOptions
|
|
265
|
+
): Promise<RotateChannelCredentialsCommandOutput>;
|
|
266
|
+
rotateChannelCredentials(
|
|
267
|
+
args: RotateChannelCredentialsCommandInput,
|
|
268
|
+
cb: (err: any, data?: RotateChannelCredentialsCommandOutput) => void
|
|
269
|
+
): void;
|
|
270
|
+
rotateChannelCredentials(
|
|
271
|
+
args: RotateChannelCredentialsCommandInput,
|
|
272
|
+
options: __HttpHandlerOptions,
|
|
273
|
+
cb: (err: any, data?: RotateChannelCredentialsCommandOutput) => void
|
|
274
|
+
): void;
|
|
275
|
+
|
|
276
|
+
rotateIngestEndpointCredentials(
|
|
277
|
+
args: RotateIngestEndpointCredentialsCommandInput,
|
|
278
|
+
options?: __HttpHandlerOptions
|
|
279
|
+
): Promise<RotateIngestEndpointCredentialsCommandOutput>;
|
|
280
|
+
rotateIngestEndpointCredentials(
|
|
281
|
+
args: RotateIngestEndpointCredentialsCommandInput,
|
|
282
|
+
cb: (err: any, data?: RotateIngestEndpointCredentialsCommandOutput) => void
|
|
283
|
+
): void;
|
|
284
|
+
rotateIngestEndpointCredentials(
|
|
285
|
+
args: RotateIngestEndpointCredentialsCommandInput,
|
|
286
|
+
options: __HttpHandlerOptions,
|
|
287
|
+
cb: (err: any, data?: RotateIngestEndpointCredentialsCommandOutput) => void
|
|
288
|
+
): void;
|
|
289
|
+
tagResource(
|
|
290
|
+
args: TagResourceCommandInput,
|
|
291
|
+
options?: __HttpHandlerOptions
|
|
292
|
+
): Promise<TagResourceCommandOutput>;
|
|
293
|
+
tagResource(
|
|
294
|
+
args: TagResourceCommandInput,
|
|
295
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
296
|
+
): void;
|
|
297
|
+
tagResource(
|
|
298
|
+
args: TagResourceCommandInput,
|
|
299
|
+
options: __HttpHandlerOptions,
|
|
300
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
301
|
+
): void;
|
|
302
|
+
untagResource(
|
|
303
|
+
args: UntagResourceCommandInput,
|
|
304
|
+
options?: __HttpHandlerOptions
|
|
305
|
+
): Promise<UntagResourceCommandOutput>;
|
|
306
|
+
untagResource(
|
|
307
|
+
args: UntagResourceCommandInput,
|
|
308
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
309
|
+
): void;
|
|
310
|
+
untagResource(
|
|
311
|
+
args: UntagResourceCommandInput,
|
|
312
|
+
options: __HttpHandlerOptions,
|
|
313
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
314
|
+
): void;
|
|
315
|
+
|
|
316
|
+
updateChannel(
|
|
317
|
+
args: UpdateChannelCommandInput,
|
|
318
|
+
options?: __HttpHandlerOptions
|
|
319
|
+
): Promise<UpdateChannelCommandOutput>;
|
|
320
|
+
updateChannel(
|
|
321
|
+
args: UpdateChannelCommandInput,
|
|
322
|
+
cb: (err: any, data?: UpdateChannelCommandOutput) => void
|
|
323
|
+
): void;
|
|
324
|
+
updateChannel(
|
|
325
|
+
args: UpdateChannelCommandInput,
|
|
326
|
+
options: __HttpHandlerOptions,
|
|
327
|
+
cb: (err: any, data?: UpdateChannelCommandOutput) => void
|
|
328
|
+
): void;
|
|
329
|
+
|
|
330
|
+
updateOriginEndpoint(
|
|
331
|
+
args: UpdateOriginEndpointCommandInput,
|
|
332
|
+
options?: __HttpHandlerOptions
|
|
333
|
+
): Promise<UpdateOriginEndpointCommandOutput>;
|
|
334
|
+
updateOriginEndpoint(
|
|
335
|
+
args: UpdateOriginEndpointCommandInput,
|
|
336
|
+
cb: (err: any, data?: UpdateOriginEndpointCommandOutput) => void
|
|
337
|
+
): void;
|
|
338
|
+
updateOriginEndpoint(
|
|
339
|
+
args: UpdateOriginEndpointCommandInput,
|
|
340
|
+
options: __HttpHandlerOptions,
|
|
341
|
+
cb: (err: any, data?: UpdateOriginEndpointCommandOutput) => void
|
|
342
|
+
): void;
|
|
343
|
+
}
|