@aws-sdk/client-mediapackage 3.928.0 → 3.930.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/dist-cjs/index.js +2893 -1330
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/MediaPackageClient.js +2 -0
- package/dist-es/commands/ConfigureLogsCommand.js +3 -10
- package/dist-es/commands/CreateChannelCommand.js +3 -10
- package/dist-es/commands/CreateHarvestJobCommand.js +3 -9
- package/dist-es/commands/CreateOriginEndpointCommand.js +3 -9
- package/dist-es/commands/DeleteChannelCommand.js +3 -9
- package/dist-es/commands/DeleteOriginEndpointCommand.js +3 -9
- package/dist-es/commands/DescribeChannelCommand.js +3 -10
- package/dist-es/commands/DescribeHarvestJobCommand.js +3 -9
- package/dist-es/commands/DescribeOriginEndpointCommand.js +3 -9
- package/dist-es/commands/ListChannelsCommand.js +3 -10
- package/dist-es/commands/ListHarvestJobsCommand.js +3 -9
- package/dist-es/commands/ListOriginEndpointsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/RotateChannelCredentialsCommand.js +3 -10
- package/dist-es/commands/RotateIngestEndpointCredentialsCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateChannelCommand.js +3 -10
- package/dist-es/commands/UpdateOriginEndpointCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -43
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +2852 -0
- package/dist-types/MediaPackageClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -40
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +99 -0
- package/dist-types/ts3.4/MediaPackageClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -26
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +105 -0
- package/package.json +33 -33
- package/dist-es/protocols/Aws_restJson1.js +0 -1140
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -173
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -233
|
@@ -1,173 +0,0 @@
|
|
|
1
|
-
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
-
import { ConfigureLogsCommandInput, ConfigureLogsCommandOutput } from "../commands/ConfigureLogsCommand";
|
|
4
|
-
import { CreateChannelCommandInput, CreateChannelCommandOutput } from "../commands/CreateChannelCommand";
|
|
5
|
-
import { CreateHarvestJobCommandInput, CreateHarvestJobCommandOutput } from "../commands/CreateHarvestJobCommand";
|
|
6
|
-
import { CreateOriginEndpointCommandInput, CreateOriginEndpointCommandOutput } from "../commands/CreateOriginEndpointCommand";
|
|
7
|
-
import { DeleteChannelCommandInput, DeleteChannelCommandOutput } from "../commands/DeleteChannelCommand";
|
|
8
|
-
import { DeleteOriginEndpointCommandInput, DeleteOriginEndpointCommandOutput } from "../commands/DeleteOriginEndpointCommand";
|
|
9
|
-
import { DescribeChannelCommandInput, DescribeChannelCommandOutput } from "../commands/DescribeChannelCommand";
|
|
10
|
-
import { DescribeHarvestJobCommandInput, DescribeHarvestJobCommandOutput } from "../commands/DescribeHarvestJobCommand";
|
|
11
|
-
import { DescribeOriginEndpointCommandInput, DescribeOriginEndpointCommandOutput } from "../commands/DescribeOriginEndpointCommand";
|
|
12
|
-
import { ListChannelsCommandInput, ListChannelsCommandOutput } from "../commands/ListChannelsCommand";
|
|
13
|
-
import { ListHarvestJobsCommandInput, ListHarvestJobsCommandOutput } from "../commands/ListHarvestJobsCommand";
|
|
14
|
-
import { ListOriginEndpointsCommandInput, ListOriginEndpointsCommandOutput } from "../commands/ListOriginEndpointsCommand";
|
|
15
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
16
|
-
import { RotateChannelCredentialsCommandInput, RotateChannelCredentialsCommandOutput } from "../commands/RotateChannelCredentialsCommand";
|
|
17
|
-
import { RotateIngestEndpointCredentialsCommandInput, RotateIngestEndpointCredentialsCommandOutput } from "../commands/RotateIngestEndpointCredentialsCommand";
|
|
18
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
19
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
20
|
-
import { UpdateChannelCommandInput, UpdateChannelCommandOutput } from "../commands/UpdateChannelCommand";
|
|
21
|
-
import { UpdateOriginEndpointCommandInput, UpdateOriginEndpointCommandOutput } from "../commands/UpdateOriginEndpointCommand";
|
|
22
|
-
/**
|
|
23
|
-
* serializeAws_restJson1ConfigureLogsCommand
|
|
24
|
-
*/
|
|
25
|
-
export declare const se_ConfigureLogsCommand: (input: ConfigureLogsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
26
|
-
/**
|
|
27
|
-
* serializeAws_restJson1CreateChannelCommand
|
|
28
|
-
*/
|
|
29
|
-
export declare const se_CreateChannelCommand: (input: CreateChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
|
-
/**
|
|
31
|
-
* serializeAws_restJson1CreateHarvestJobCommand
|
|
32
|
-
*/
|
|
33
|
-
export declare const se_CreateHarvestJobCommand: (input: CreateHarvestJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
|
-
/**
|
|
35
|
-
* serializeAws_restJson1CreateOriginEndpointCommand
|
|
36
|
-
*/
|
|
37
|
-
export declare const se_CreateOriginEndpointCommand: (input: CreateOriginEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
-
/**
|
|
39
|
-
* serializeAws_restJson1DeleteChannelCommand
|
|
40
|
-
*/
|
|
41
|
-
export declare const se_DeleteChannelCommand: (input: DeleteChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
|
-
/**
|
|
43
|
-
* serializeAws_restJson1DeleteOriginEndpointCommand
|
|
44
|
-
*/
|
|
45
|
-
export declare const se_DeleteOriginEndpointCommand: (input: DeleteOriginEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
-
/**
|
|
47
|
-
* serializeAws_restJson1DescribeChannelCommand
|
|
48
|
-
*/
|
|
49
|
-
export declare const se_DescribeChannelCommand: (input: DescribeChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
50
|
-
/**
|
|
51
|
-
* serializeAws_restJson1DescribeHarvestJobCommand
|
|
52
|
-
*/
|
|
53
|
-
export declare const se_DescribeHarvestJobCommand: (input: DescribeHarvestJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
54
|
-
/**
|
|
55
|
-
* serializeAws_restJson1DescribeOriginEndpointCommand
|
|
56
|
-
*/
|
|
57
|
-
export declare const se_DescribeOriginEndpointCommand: (input: DescribeOriginEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
58
|
-
/**
|
|
59
|
-
* serializeAws_restJson1ListChannelsCommand
|
|
60
|
-
*/
|
|
61
|
-
export declare const se_ListChannelsCommand: (input: ListChannelsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
62
|
-
/**
|
|
63
|
-
* serializeAws_restJson1ListHarvestJobsCommand
|
|
64
|
-
*/
|
|
65
|
-
export declare const se_ListHarvestJobsCommand: (input: ListHarvestJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
66
|
-
/**
|
|
67
|
-
* serializeAws_restJson1ListOriginEndpointsCommand
|
|
68
|
-
*/
|
|
69
|
-
export declare const se_ListOriginEndpointsCommand: (input: ListOriginEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
|
-
/**
|
|
71
|
-
* serializeAws_restJson1ListTagsForResourceCommand
|
|
72
|
-
*/
|
|
73
|
-
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
74
|
-
/**
|
|
75
|
-
* serializeAws_restJson1RotateChannelCredentialsCommand
|
|
76
|
-
*/
|
|
77
|
-
export declare const se_RotateChannelCredentialsCommand: (input: RotateChannelCredentialsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
78
|
-
/**
|
|
79
|
-
* serializeAws_restJson1RotateIngestEndpointCredentialsCommand
|
|
80
|
-
*/
|
|
81
|
-
export declare const se_RotateIngestEndpointCredentialsCommand: (input: RotateIngestEndpointCredentialsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
82
|
-
/**
|
|
83
|
-
* serializeAws_restJson1TagResourceCommand
|
|
84
|
-
*/
|
|
85
|
-
export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
86
|
-
/**
|
|
87
|
-
* serializeAws_restJson1UntagResourceCommand
|
|
88
|
-
*/
|
|
89
|
-
export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
90
|
-
/**
|
|
91
|
-
* serializeAws_restJson1UpdateChannelCommand
|
|
92
|
-
*/
|
|
93
|
-
export declare const se_UpdateChannelCommand: (input: UpdateChannelCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
|
-
/**
|
|
95
|
-
* serializeAws_restJson1UpdateOriginEndpointCommand
|
|
96
|
-
*/
|
|
97
|
-
export declare const se_UpdateOriginEndpointCommand: (input: UpdateOriginEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
98
|
-
/**
|
|
99
|
-
* deserializeAws_restJson1ConfigureLogsCommand
|
|
100
|
-
*/
|
|
101
|
-
export declare const de_ConfigureLogsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ConfigureLogsCommandOutput>;
|
|
102
|
-
/**
|
|
103
|
-
* deserializeAws_restJson1CreateChannelCommand
|
|
104
|
-
*/
|
|
105
|
-
export declare const de_CreateChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateChannelCommandOutput>;
|
|
106
|
-
/**
|
|
107
|
-
* deserializeAws_restJson1CreateHarvestJobCommand
|
|
108
|
-
*/
|
|
109
|
-
export declare const de_CreateHarvestJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateHarvestJobCommandOutput>;
|
|
110
|
-
/**
|
|
111
|
-
* deserializeAws_restJson1CreateOriginEndpointCommand
|
|
112
|
-
*/
|
|
113
|
-
export declare const de_CreateOriginEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateOriginEndpointCommandOutput>;
|
|
114
|
-
/**
|
|
115
|
-
* deserializeAws_restJson1DeleteChannelCommand
|
|
116
|
-
*/
|
|
117
|
-
export declare const de_DeleteChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteChannelCommandOutput>;
|
|
118
|
-
/**
|
|
119
|
-
* deserializeAws_restJson1DeleteOriginEndpointCommand
|
|
120
|
-
*/
|
|
121
|
-
export declare const de_DeleteOriginEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteOriginEndpointCommandOutput>;
|
|
122
|
-
/**
|
|
123
|
-
* deserializeAws_restJson1DescribeChannelCommand
|
|
124
|
-
*/
|
|
125
|
-
export declare const de_DescribeChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeChannelCommandOutput>;
|
|
126
|
-
/**
|
|
127
|
-
* deserializeAws_restJson1DescribeHarvestJobCommand
|
|
128
|
-
*/
|
|
129
|
-
export declare const de_DescribeHarvestJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeHarvestJobCommandOutput>;
|
|
130
|
-
/**
|
|
131
|
-
* deserializeAws_restJson1DescribeOriginEndpointCommand
|
|
132
|
-
*/
|
|
133
|
-
export declare const de_DescribeOriginEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeOriginEndpointCommandOutput>;
|
|
134
|
-
/**
|
|
135
|
-
* deserializeAws_restJson1ListChannelsCommand
|
|
136
|
-
*/
|
|
137
|
-
export declare const de_ListChannelsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChannelsCommandOutput>;
|
|
138
|
-
/**
|
|
139
|
-
* deserializeAws_restJson1ListHarvestJobsCommand
|
|
140
|
-
*/
|
|
141
|
-
export declare const de_ListHarvestJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListHarvestJobsCommandOutput>;
|
|
142
|
-
/**
|
|
143
|
-
* deserializeAws_restJson1ListOriginEndpointsCommand
|
|
144
|
-
*/
|
|
145
|
-
export declare const de_ListOriginEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOriginEndpointsCommandOutput>;
|
|
146
|
-
/**
|
|
147
|
-
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
148
|
-
*/
|
|
149
|
-
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
150
|
-
/**
|
|
151
|
-
* deserializeAws_restJson1RotateChannelCredentialsCommand
|
|
152
|
-
*/
|
|
153
|
-
export declare const de_RotateChannelCredentialsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RotateChannelCredentialsCommandOutput>;
|
|
154
|
-
/**
|
|
155
|
-
* deserializeAws_restJson1RotateIngestEndpointCredentialsCommand
|
|
156
|
-
*/
|
|
157
|
-
export declare const de_RotateIngestEndpointCredentialsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RotateIngestEndpointCredentialsCommandOutput>;
|
|
158
|
-
/**
|
|
159
|
-
* deserializeAws_restJson1TagResourceCommand
|
|
160
|
-
*/
|
|
161
|
-
export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
|
|
162
|
-
/**
|
|
163
|
-
* deserializeAws_restJson1UntagResourceCommand
|
|
164
|
-
*/
|
|
165
|
-
export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
|
|
166
|
-
/**
|
|
167
|
-
* deserializeAws_restJson1UpdateChannelCommand
|
|
168
|
-
*/
|
|
169
|
-
export declare const de_UpdateChannelCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateChannelCommandOutput>;
|
|
170
|
-
/**
|
|
171
|
-
* deserializeAws_restJson1UpdateOriginEndpointCommand
|
|
172
|
-
*/
|
|
173
|
-
export declare const de_UpdateOriginEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateOriginEndpointCommandOutput>;
|
|
@@ -1,233 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
ConfigureLogsCommandInput,
|
|
8
|
-
ConfigureLogsCommandOutput,
|
|
9
|
-
} from "../commands/ConfigureLogsCommand";
|
|
10
|
-
import {
|
|
11
|
-
CreateChannelCommandInput,
|
|
12
|
-
CreateChannelCommandOutput,
|
|
13
|
-
} from "../commands/CreateChannelCommand";
|
|
14
|
-
import {
|
|
15
|
-
CreateHarvestJobCommandInput,
|
|
16
|
-
CreateHarvestJobCommandOutput,
|
|
17
|
-
} from "../commands/CreateHarvestJobCommand";
|
|
18
|
-
import {
|
|
19
|
-
CreateOriginEndpointCommandInput,
|
|
20
|
-
CreateOriginEndpointCommandOutput,
|
|
21
|
-
} from "../commands/CreateOriginEndpointCommand";
|
|
22
|
-
import {
|
|
23
|
-
DeleteChannelCommandInput,
|
|
24
|
-
DeleteChannelCommandOutput,
|
|
25
|
-
} from "../commands/DeleteChannelCommand";
|
|
26
|
-
import {
|
|
27
|
-
DeleteOriginEndpointCommandInput,
|
|
28
|
-
DeleteOriginEndpointCommandOutput,
|
|
29
|
-
} from "../commands/DeleteOriginEndpointCommand";
|
|
30
|
-
import {
|
|
31
|
-
DescribeChannelCommandInput,
|
|
32
|
-
DescribeChannelCommandOutput,
|
|
33
|
-
} from "../commands/DescribeChannelCommand";
|
|
34
|
-
import {
|
|
35
|
-
DescribeHarvestJobCommandInput,
|
|
36
|
-
DescribeHarvestJobCommandOutput,
|
|
37
|
-
} from "../commands/DescribeHarvestJobCommand";
|
|
38
|
-
import {
|
|
39
|
-
DescribeOriginEndpointCommandInput,
|
|
40
|
-
DescribeOriginEndpointCommandOutput,
|
|
41
|
-
} from "../commands/DescribeOriginEndpointCommand";
|
|
42
|
-
import {
|
|
43
|
-
ListChannelsCommandInput,
|
|
44
|
-
ListChannelsCommandOutput,
|
|
45
|
-
} from "../commands/ListChannelsCommand";
|
|
46
|
-
import {
|
|
47
|
-
ListHarvestJobsCommandInput,
|
|
48
|
-
ListHarvestJobsCommandOutput,
|
|
49
|
-
} from "../commands/ListHarvestJobsCommand";
|
|
50
|
-
import {
|
|
51
|
-
ListOriginEndpointsCommandInput,
|
|
52
|
-
ListOriginEndpointsCommandOutput,
|
|
53
|
-
} from "../commands/ListOriginEndpointsCommand";
|
|
54
|
-
import {
|
|
55
|
-
ListTagsForResourceCommandInput,
|
|
56
|
-
ListTagsForResourceCommandOutput,
|
|
57
|
-
} from "../commands/ListTagsForResourceCommand";
|
|
58
|
-
import {
|
|
59
|
-
RotateChannelCredentialsCommandInput,
|
|
60
|
-
RotateChannelCredentialsCommandOutput,
|
|
61
|
-
} from "../commands/RotateChannelCredentialsCommand";
|
|
62
|
-
import {
|
|
63
|
-
RotateIngestEndpointCredentialsCommandInput,
|
|
64
|
-
RotateIngestEndpointCredentialsCommandOutput,
|
|
65
|
-
} from "../commands/RotateIngestEndpointCredentialsCommand";
|
|
66
|
-
import {
|
|
67
|
-
TagResourceCommandInput,
|
|
68
|
-
TagResourceCommandOutput,
|
|
69
|
-
} from "../commands/TagResourceCommand";
|
|
70
|
-
import {
|
|
71
|
-
UntagResourceCommandInput,
|
|
72
|
-
UntagResourceCommandOutput,
|
|
73
|
-
} from "../commands/UntagResourceCommand";
|
|
74
|
-
import {
|
|
75
|
-
UpdateChannelCommandInput,
|
|
76
|
-
UpdateChannelCommandOutput,
|
|
77
|
-
} from "../commands/UpdateChannelCommand";
|
|
78
|
-
import {
|
|
79
|
-
UpdateOriginEndpointCommandInput,
|
|
80
|
-
UpdateOriginEndpointCommandOutput,
|
|
81
|
-
} from "../commands/UpdateOriginEndpointCommand";
|
|
82
|
-
export declare const se_ConfigureLogsCommand: (
|
|
83
|
-
input: ConfigureLogsCommandInput,
|
|
84
|
-
context: __SerdeContext
|
|
85
|
-
) => Promise<__HttpRequest>;
|
|
86
|
-
export declare const se_CreateChannelCommand: (
|
|
87
|
-
input: CreateChannelCommandInput,
|
|
88
|
-
context: __SerdeContext
|
|
89
|
-
) => Promise<__HttpRequest>;
|
|
90
|
-
export declare const se_CreateHarvestJobCommand: (
|
|
91
|
-
input: CreateHarvestJobCommandInput,
|
|
92
|
-
context: __SerdeContext
|
|
93
|
-
) => Promise<__HttpRequest>;
|
|
94
|
-
export declare const se_CreateOriginEndpointCommand: (
|
|
95
|
-
input: CreateOriginEndpointCommandInput,
|
|
96
|
-
context: __SerdeContext
|
|
97
|
-
) => Promise<__HttpRequest>;
|
|
98
|
-
export declare const se_DeleteChannelCommand: (
|
|
99
|
-
input: DeleteChannelCommandInput,
|
|
100
|
-
context: __SerdeContext
|
|
101
|
-
) => Promise<__HttpRequest>;
|
|
102
|
-
export declare const se_DeleteOriginEndpointCommand: (
|
|
103
|
-
input: DeleteOriginEndpointCommandInput,
|
|
104
|
-
context: __SerdeContext
|
|
105
|
-
) => Promise<__HttpRequest>;
|
|
106
|
-
export declare const se_DescribeChannelCommand: (
|
|
107
|
-
input: DescribeChannelCommandInput,
|
|
108
|
-
context: __SerdeContext
|
|
109
|
-
) => Promise<__HttpRequest>;
|
|
110
|
-
export declare const se_DescribeHarvestJobCommand: (
|
|
111
|
-
input: DescribeHarvestJobCommandInput,
|
|
112
|
-
context: __SerdeContext
|
|
113
|
-
) => Promise<__HttpRequest>;
|
|
114
|
-
export declare const se_DescribeOriginEndpointCommand: (
|
|
115
|
-
input: DescribeOriginEndpointCommandInput,
|
|
116
|
-
context: __SerdeContext
|
|
117
|
-
) => Promise<__HttpRequest>;
|
|
118
|
-
export declare const se_ListChannelsCommand: (
|
|
119
|
-
input: ListChannelsCommandInput,
|
|
120
|
-
context: __SerdeContext
|
|
121
|
-
) => Promise<__HttpRequest>;
|
|
122
|
-
export declare const se_ListHarvestJobsCommand: (
|
|
123
|
-
input: ListHarvestJobsCommandInput,
|
|
124
|
-
context: __SerdeContext
|
|
125
|
-
) => Promise<__HttpRequest>;
|
|
126
|
-
export declare const se_ListOriginEndpointsCommand: (
|
|
127
|
-
input: ListOriginEndpointsCommandInput,
|
|
128
|
-
context: __SerdeContext
|
|
129
|
-
) => Promise<__HttpRequest>;
|
|
130
|
-
export declare const se_ListTagsForResourceCommand: (
|
|
131
|
-
input: ListTagsForResourceCommandInput,
|
|
132
|
-
context: __SerdeContext
|
|
133
|
-
) => Promise<__HttpRequest>;
|
|
134
|
-
export declare const se_RotateChannelCredentialsCommand: (
|
|
135
|
-
input: RotateChannelCredentialsCommandInput,
|
|
136
|
-
context: __SerdeContext
|
|
137
|
-
) => Promise<__HttpRequest>;
|
|
138
|
-
export declare const se_RotateIngestEndpointCredentialsCommand: (
|
|
139
|
-
input: RotateIngestEndpointCredentialsCommandInput,
|
|
140
|
-
context: __SerdeContext
|
|
141
|
-
) => Promise<__HttpRequest>;
|
|
142
|
-
export declare const se_TagResourceCommand: (
|
|
143
|
-
input: TagResourceCommandInput,
|
|
144
|
-
context: __SerdeContext
|
|
145
|
-
) => Promise<__HttpRequest>;
|
|
146
|
-
export declare const se_UntagResourceCommand: (
|
|
147
|
-
input: UntagResourceCommandInput,
|
|
148
|
-
context: __SerdeContext
|
|
149
|
-
) => Promise<__HttpRequest>;
|
|
150
|
-
export declare const se_UpdateChannelCommand: (
|
|
151
|
-
input: UpdateChannelCommandInput,
|
|
152
|
-
context: __SerdeContext
|
|
153
|
-
) => Promise<__HttpRequest>;
|
|
154
|
-
export declare const se_UpdateOriginEndpointCommand: (
|
|
155
|
-
input: UpdateOriginEndpointCommandInput,
|
|
156
|
-
context: __SerdeContext
|
|
157
|
-
) => Promise<__HttpRequest>;
|
|
158
|
-
export declare const de_ConfigureLogsCommand: (
|
|
159
|
-
output: __HttpResponse,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<ConfigureLogsCommandOutput>;
|
|
162
|
-
export declare const de_CreateChannelCommand: (
|
|
163
|
-
output: __HttpResponse,
|
|
164
|
-
context: __SerdeContext
|
|
165
|
-
) => Promise<CreateChannelCommandOutput>;
|
|
166
|
-
export declare const de_CreateHarvestJobCommand: (
|
|
167
|
-
output: __HttpResponse,
|
|
168
|
-
context: __SerdeContext
|
|
169
|
-
) => Promise<CreateHarvestJobCommandOutput>;
|
|
170
|
-
export declare const de_CreateOriginEndpointCommand: (
|
|
171
|
-
output: __HttpResponse,
|
|
172
|
-
context: __SerdeContext
|
|
173
|
-
) => Promise<CreateOriginEndpointCommandOutput>;
|
|
174
|
-
export declare const de_DeleteChannelCommand: (
|
|
175
|
-
output: __HttpResponse,
|
|
176
|
-
context: __SerdeContext
|
|
177
|
-
) => Promise<DeleteChannelCommandOutput>;
|
|
178
|
-
export declare const de_DeleteOriginEndpointCommand: (
|
|
179
|
-
output: __HttpResponse,
|
|
180
|
-
context: __SerdeContext
|
|
181
|
-
) => Promise<DeleteOriginEndpointCommandOutput>;
|
|
182
|
-
export declare const de_DescribeChannelCommand: (
|
|
183
|
-
output: __HttpResponse,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<DescribeChannelCommandOutput>;
|
|
186
|
-
export declare const de_DescribeHarvestJobCommand: (
|
|
187
|
-
output: __HttpResponse,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<DescribeHarvestJobCommandOutput>;
|
|
190
|
-
export declare const de_DescribeOriginEndpointCommand: (
|
|
191
|
-
output: __HttpResponse,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<DescribeOriginEndpointCommandOutput>;
|
|
194
|
-
export declare const de_ListChannelsCommand: (
|
|
195
|
-
output: __HttpResponse,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<ListChannelsCommandOutput>;
|
|
198
|
-
export declare const de_ListHarvestJobsCommand: (
|
|
199
|
-
output: __HttpResponse,
|
|
200
|
-
context: __SerdeContext
|
|
201
|
-
) => Promise<ListHarvestJobsCommandOutput>;
|
|
202
|
-
export declare const de_ListOriginEndpointsCommand: (
|
|
203
|
-
output: __HttpResponse,
|
|
204
|
-
context: __SerdeContext
|
|
205
|
-
) => Promise<ListOriginEndpointsCommandOutput>;
|
|
206
|
-
export declare const de_ListTagsForResourceCommand: (
|
|
207
|
-
output: __HttpResponse,
|
|
208
|
-
context: __SerdeContext
|
|
209
|
-
) => Promise<ListTagsForResourceCommandOutput>;
|
|
210
|
-
export declare const de_RotateChannelCredentialsCommand: (
|
|
211
|
-
output: __HttpResponse,
|
|
212
|
-
context: __SerdeContext
|
|
213
|
-
) => Promise<RotateChannelCredentialsCommandOutput>;
|
|
214
|
-
export declare const de_RotateIngestEndpointCredentialsCommand: (
|
|
215
|
-
output: __HttpResponse,
|
|
216
|
-
context: __SerdeContext
|
|
217
|
-
) => Promise<RotateIngestEndpointCredentialsCommandOutput>;
|
|
218
|
-
export declare const de_TagResourceCommand: (
|
|
219
|
-
output: __HttpResponse,
|
|
220
|
-
context: __SerdeContext
|
|
221
|
-
) => Promise<TagResourceCommandOutput>;
|
|
222
|
-
export declare const de_UntagResourceCommand: (
|
|
223
|
-
output: __HttpResponse,
|
|
224
|
-
context: __SerdeContext
|
|
225
|
-
) => Promise<UntagResourceCommandOutput>;
|
|
226
|
-
export declare const de_UpdateChannelCommand: (
|
|
227
|
-
output: __HttpResponse,
|
|
228
|
-
context: __SerdeContext
|
|
229
|
-
) => Promise<UpdateChannelCommandOutput>;
|
|
230
|
-
export declare const de_UpdateOriginEndpointCommand: (
|
|
231
|
-
output: __HttpResponse,
|
|
232
|
-
context: __SerdeContext
|
|
233
|
-
) => Promise<UpdateOriginEndpointCommandOutput>;
|