@aws-sdk/client-mediastore 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/MediaStore.d.ts +382 -110
- package/dist-types/ts3.4/MediaStoreClient.d.ts +255 -94
- package/dist-types/ts3.4/commands/CreateContainerCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteContainerCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteContainerPolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteCorsPolicyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteLifecyclePolicyCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DeleteMetricPolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeContainerCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetContainerPolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetCorsPolicyCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/GetLifecyclePolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/GetMetricPolicyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListContainersCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutContainerPolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutCorsPolicyCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PutLifecyclePolicyCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/PutMetricPolicyCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/StartAccessLoggingCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/StopAccessLoggingCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/index.d.ts +21 -21
- 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/MediaStoreServiceException.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 +647 -13
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListContainersPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +257 -65
- 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
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { MediaStore } from "../MediaStore";
|
|
3
|
-
import { MediaStoreClient } from "../MediaStoreClient";
|
|
4
|
-
export interface MediaStorePaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { MediaStore } from "../MediaStore";
|
|
3
|
+
import { MediaStoreClient } from "../MediaStoreClient";
|
|
4
|
+
export interface MediaStorePaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: MediaStore | MediaStoreClient;
|
|
7
|
+
}
|
|
@@ -1,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListContainersCommandInput,
|
|
4
|
+
ListContainersCommandOutput,
|
|
5
|
+
} from "../commands/ListContainersCommand";
|
|
6
|
+
import { MediaStorePaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListContainers(
|
|
8
|
+
config: MediaStorePaginationConfiguration,
|
|
9
|
+
input: ListContainersCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListContainersCommandOutput>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export * from "./Interfaces";
|
|
2
|
-
export * from "./ListContainersPaginator";
|
|
1
|
+
export * from "./Interfaces";
|
|
2
|
+
export * from "./ListContainersPaginator";
|
|
@@ -1,65 +1,257 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
import {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
import {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
import {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
import {
|
|
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
|
-
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@aws-sdk/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateContainerCommandInput,
|
|
8
|
+
CreateContainerCommandOutput,
|
|
9
|
+
} from "../commands/CreateContainerCommand";
|
|
10
|
+
import {
|
|
11
|
+
DeleteContainerCommandInput,
|
|
12
|
+
DeleteContainerCommandOutput,
|
|
13
|
+
} from "../commands/DeleteContainerCommand";
|
|
14
|
+
import {
|
|
15
|
+
DeleteContainerPolicyCommandInput,
|
|
16
|
+
DeleteContainerPolicyCommandOutput,
|
|
17
|
+
} from "../commands/DeleteContainerPolicyCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteCorsPolicyCommandInput,
|
|
20
|
+
DeleteCorsPolicyCommandOutput,
|
|
21
|
+
} from "../commands/DeleteCorsPolicyCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteLifecyclePolicyCommandInput,
|
|
24
|
+
DeleteLifecyclePolicyCommandOutput,
|
|
25
|
+
} from "../commands/DeleteLifecyclePolicyCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteMetricPolicyCommandInput,
|
|
28
|
+
DeleteMetricPolicyCommandOutput,
|
|
29
|
+
} from "../commands/DeleteMetricPolicyCommand";
|
|
30
|
+
import {
|
|
31
|
+
DescribeContainerCommandInput,
|
|
32
|
+
DescribeContainerCommandOutput,
|
|
33
|
+
} from "../commands/DescribeContainerCommand";
|
|
34
|
+
import {
|
|
35
|
+
GetContainerPolicyCommandInput,
|
|
36
|
+
GetContainerPolicyCommandOutput,
|
|
37
|
+
} from "../commands/GetContainerPolicyCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetCorsPolicyCommandInput,
|
|
40
|
+
GetCorsPolicyCommandOutput,
|
|
41
|
+
} from "../commands/GetCorsPolicyCommand";
|
|
42
|
+
import {
|
|
43
|
+
GetLifecyclePolicyCommandInput,
|
|
44
|
+
GetLifecyclePolicyCommandOutput,
|
|
45
|
+
} from "../commands/GetLifecyclePolicyCommand";
|
|
46
|
+
import {
|
|
47
|
+
GetMetricPolicyCommandInput,
|
|
48
|
+
GetMetricPolicyCommandOutput,
|
|
49
|
+
} from "../commands/GetMetricPolicyCommand";
|
|
50
|
+
import {
|
|
51
|
+
ListContainersCommandInput,
|
|
52
|
+
ListContainersCommandOutput,
|
|
53
|
+
} from "../commands/ListContainersCommand";
|
|
54
|
+
import {
|
|
55
|
+
ListTagsForResourceCommandInput,
|
|
56
|
+
ListTagsForResourceCommandOutput,
|
|
57
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
58
|
+
import {
|
|
59
|
+
PutContainerPolicyCommandInput,
|
|
60
|
+
PutContainerPolicyCommandOutput,
|
|
61
|
+
} from "../commands/PutContainerPolicyCommand";
|
|
62
|
+
import {
|
|
63
|
+
PutCorsPolicyCommandInput,
|
|
64
|
+
PutCorsPolicyCommandOutput,
|
|
65
|
+
} from "../commands/PutCorsPolicyCommand";
|
|
66
|
+
import {
|
|
67
|
+
PutLifecyclePolicyCommandInput,
|
|
68
|
+
PutLifecyclePolicyCommandOutput,
|
|
69
|
+
} from "../commands/PutLifecyclePolicyCommand";
|
|
70
|
+
import {
|
|
71
|
+
PutMetricPolicyCommandInput,
|
|
72
|
+
PutMetricPolicyCommandOutput,
|
|
73
|
+
} from "../commands/PutMetricPolicyCommand";
|
|
74
|
+
import {
|
|
75
|
+
StartAccessLoggingCommandInput,
|
|
76
|
+
StartAccessLoggingCommandOutput,
|
|
77
|
+
} from "../commands/StartAccessLoggingCommand";
|
|
78
|
+
import {
|
|
79
|
+
StopAccessLoggingCommandInput,
|
|
80
|
+
StopAccessLoggingCommandOutput,
|
|
81
|
+
} from "../commands/StopAccessLoggingCommand";
|
|
82
|
+
import {
|
|
83
|
+
TagResourceCommandInput,
|
|
84
|
+
TagResourceCommandOutput,
|
|
85
|
+
} from "../commands/TagResourceCommand";
|
|
86
|
+
import {
|
|
87
|
+
UntagResourceCommandInput,
|
|
88
|
+
UntagResourceCommandOutput,
|
|
89
|
+
} from "../commands/UntagResourceCommand";
|
|
90
|
+
export declare const serializeAws_json1_1CreateContainerCommand: (
|
|
91
|
+
input: CreateContainerCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const serializeAws_json1_1DeleteContainerCommand: (
|
|
95
|
+
input: DeleteContainerCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const serializeAws_json1_1DeleteContainerPolicyCommand: (
|
|
99
|
+
input: DeleteContainerPolicyCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const serializeAws_json1_1DeleteCorsPolicyCommand: (
|
|
103
|
+
input: DeleteCorsPolicyCommandInput,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<__HttpRequest>;
|
|
106
|
+
export declare const serializeAws_json1_1DeleteLifecyclePolicyCommand: (
|
|
107
|
+
input: DeleteLifecyclePolicyCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const serializeAws_json1_1DeleteMetricPolicyCommand: (
|
|
111
|
+
input: DeleteMetricPolicyCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_json1_1DescribeContainerCommand: (
|
|
115
|
+
input: DescribeContainerCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_json1_1GetContainerPolicyCommand: (
|
|
119
|
+
input: GetContainerPolicyCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const serializeAws_json1_1GetCorsPolicyCommand: (
|
|
123
|
+
input: GetCorsPolicyCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const serializeAws_json1_1GetLifecyclePolicyCommand: (
|
|
127
|
+
input: GetLifecyclePolicyCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_json1_1GetMetricPolicyCommand: (
|
|
131
|
+
input: GetMetricPolicyCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_json1_1ListContainersCommand: (
|
|
135
|
+
input: ListContainersCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_json1_1ListTagsForResourceCommand: (
|
|
139
|
+
input: ListTagsForResourceCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_json1_1PutContainerPolicyCommand: (
|
|
143
|
+
input: PutContainerPolicyCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_json1_1PutCorsPolicyCommand: (
|
|
147
|
+
input: PutCorsPolicyCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_json1_1PutLifecyclePolicyCommand: (
|
|
151
|
+
input: PutLifecyclePolicyCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const serializeAws_json1_1PutMetricPolicyCommand: (
|
|
155
|
+
input: PutMetricPolicyCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const serializeAws_json1_1StartAccessLoggingCommand: (
|
|
159
|
+
input: StartAccessLoggingCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const serializeAws_json1_1StopAccessLoggingCommand: (
|
|
163
|
+
input: StopAccessLoggingCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const serializeAws_json1_1TagResourceCommand: (
|
|
167
|
+
input: TagResourceCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_json1_1UntagResourceCommand: (
|
|
171
|
+
input: UntagResourceCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const deserializeAws_json1_1CreateContainerCommand: (
|
|
175
|
+
output: __HttpResponse,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<CreateContainerCommandOutput>;
|
|
178
|
+
export declare const deserializeAws_json1_1DeleteContainerCommand: (
|
|
179
|
+
output: __HttpResponse,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<DeleteContainerCommandOutput>;
|
|
182
|
+
export declare const deserializeAws_json1_1DeleteContainerPolicyCommand: (
|
|
183
|
+
output: __HttpResponse,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<DeleteContainerPolicyCommandOutput>;
|
|
186
|
+
export declare const deserializeAws_json1_1DeleteCorsPolicyCommand: (
|
|
187
|
+
output: __HttpResponse,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<DeleteCorsPolicyCommandOutput>;
|
|
190
|
+
export declare const deserializeAws_json1_1DeleteLifecyclePolicyCommand: (
|
|
191
|
+
output: __HttpResponse,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<DeleteLifecyclePolicyCommandOutput>;
|
|
194
|
+
export declare const deserializeAws_json1_1DeleteMetricPolicyCommand: (
|
|
195
|
+
output: __HttpResponse,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<DeleteMetricPolicyCommandOutput>;
|
|
198
|
+
export declare const deserializeAws_json1_1DescribeContainerCommand: (
|
|
199
|
+
output: __HttpResponse,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<DescribeContainerCommandOutput>;
|
|
202
|
+
export declare const deserializeAws_json1_1GetContainerPolicyCommand: (
|
|
203
|
+
output: __HttpResponse,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<GetContainerPolicyCommandOutput>;
|
|
206
|
+
export declare const deserializeAws_json1_1GetCorsPolicyCommand: (
|
|
207
|
+
output: __HttpResponse,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<GetCorsPolicyCommandOutput>;
|
|
210
|
+
export declare const deserializeAws_json1_1GetLifecyclePolicyCommand: (
|
|
211
|
+
output: __HttpResponse,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<GetLifecyclePolicyCommandOutput>;
|
|
214
|
+
export declare const deserializeAws_json1_1GetMetricPolicyCommand: (
|
|
215
|
+
output: __HttpResponse,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<GetMetricPolicyCommandOutput>;
|
|
218
|
+
export declare const deserializeAws_json1_1ListContainersCommand: (
|
|
219
|
+
output: __HttpResponse,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<ListContainersCommandOutput>;
|
|
222
|
+
export declare const deserializeAws_json1_1ListTagsForResourceCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
226
|
+
export declare const deserializeAws_json1_1PutContainerPolicyCommand: (
|
|
227
|
+
output: __HttpResponse,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<PutContainerPolicyCommandOutput>;
|
|
230
|
+
export declare const deserializeAws_json1_1PutCorsPolicyCommand: (
|
|
231
|
+
output: __HttpResponse,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<PutCorsPolicyCommandOutput>;
|
|
234
|
+
export declare const deserializeAws_json1_1PutLifecyclePolicyCommand: (
|
|
235
|
+
output: __HttpResponse,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<PutLifecyclePolicyCommandOutput>;
|
|
238
|
+
export declare const deserializeAws_json1_1PutMetricPolicyCommand: (
|
|
239
|
+
output: __HttpResponse,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<PutMetricPolicyCommandOutput>;
|
|
242
|
+
export declare const deserializeAws_json1_1StartAccessLoggingCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<StartAccessLoggingCommandOutput>;
|
|
246
|
+
export declare const deserializeAws_json1_1StopAccessLoggingCommand: (
|
|
247
|
+
output: __HttpResponse,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<StopAccessLoggingCommandOutput>;
|
|
250
|
+
export declare const deserializeAws_json1_1TagResourceCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<TagResourceCommandOutput>;
|
|
254
|
+
export declare const deserializeAws_json1_1UntagResourceCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<UntagResourceCommandOutput>;
|
|
@@ -1,38 +1,66 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { MediaStoreClientConfig } from "./MediaStoreClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (config: MediaStoreClientConfig) => {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
+
import { MediaStoreClientConfig } from "./MediaStoreClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: MediaStoreClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
7
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
8
|
+
>;
|
|
9
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
credentialDefaultProvider: (
|
|
13
|
+
input: any
|
|
14
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
15
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
16
|
+
import("@aws-sdk/types").UserAgent
|
|
17
|
+
>;
|
|
18
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
|
+
region: string | import("@aws-sdk/types").Provider<any>;
|
|
20
|
+
requestHandler:
|
|
21
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
22
|
+
any,
|
|
23
|
+
any,
|
|
24
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
25
|
+
> &
|
|
26
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
27
|
+
| RequestHandler;
|
|
28
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
29
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
30
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
31
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
34
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
35
|
+
apiVersion: string;
|
|
36
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
37
|
+
disableHostPrefix: boolean;
|
|
38
|
+
logger: import("@aws-sdk/types").Logger;
|
|
39
|
+
serviceId: string;
|
|
40
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
41
|
+
endpoint?:
|
|
42
|
+
| string
|
|
43
|
+
| import("@aws-sdk/types").Endpoint
|
|
44
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
45
|
+
| undefined;
|
|
46
|
+
tls?: boolean | undefined;
|
|
47
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
48
|
+
credentials?:
|
|
49
|
+
| import("@aws-sdk/types").Credentials
|
|
50
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
51
|
+
| undefined;
|
|
52
|
+
signer?:
|
|
53
|
+
| import("@aws-sdk/types").RequestSigner
|
|
54
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
55
|
+
| undefined;
|
|
56
|
+
signingEscapePath?: boolean | undefined;
|
|
57
|
+
systemClockOffset?: number | undefined;
|
|
58
|
+
signingRegion?: string | undefined;
|
|
59
|
+
signerConstructor?:
|
|
60
|
+
| (new (
|
|
61
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
62
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
63
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
64
|
+
| undefined;
|
|
65
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
66
|
+
};
|
|
@@ -1,38 +1,66 @@
|
|
|
1
|
-
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
-
import { MediaStoreClientConfig } from "./MediaStoreClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (config: MediaStoreClientConfig) => {
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
|
|
2
|
+
import { MediaStoreClientConfig } from "./MediaStoreClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: MediaStoreClientConfig) => {
|
|
5
|
+
runtime: string;
|
|
6
|
+
defaultsMode: import("@aws-sdk/types").Provider<
|
|
7
|
+
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
8
|
+
>;
|
|
9
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
10
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
11
|
+
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
12
|
+
credentialDefaultProvider: (
|
|
13
|
+
input: any
|
|
14
|
+
) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
|
|
15
|
+
defaultUserAgentProvider: import("@aws-sdk/types").Provider<
|
|
16
|
+
import("@aws-sdk/types").UserAgent
|
|
17
|
+
>;
|
|
18
|
+
maxAttempts: number | import("@aws-sdk/types").Provider<number>;
|
|
19
|
+
region: string | import("@aws-sdk/types").Provider<string>;
|
|
20
|
+
requestHandler:
|
|
21
|
+
| (import("@aws-sdk/types").RequestHandler<
|
|
22
|
+
any,
|
|
23
|
+
any,
|
|
24
|
+
import("@aws-sdk/types").HttpHandlerOptions
|
|
25
|
+
> &
|
|
26
|
+
import("@aws-sdk/protocol-http").HttpHandler)
|
|
27
|
+
| RequestHandler;
|
|
28
|
+
retryMode: string | import("@aws-sdk/types").Provider<string>;
|
|
29
|
+
sha256: import("@aws-sdk/types").HashConstructor;
|
|
30
|
+
streamCollector: import("@aws-sdk/types").StreamCollector;
|
|
31
|
+
useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
32
|
+
useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
|
|
33
|
+
utf8Decoder: import("@aws-sdk/types").Decoder;
|
|
34
|
+
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
35
|
+
apiVersion: string;
|
|
36
|
+
urlParser: import("@aws-sdk/types").UrlParser;
|
|
37
|
+
disableHostPrefix: boolean;
|
|
38
|
+
logger: import("@aws-sdk/types").Logger;
|
|
39
|
+
serviceId: string;
|
|
40
|
+
regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
|
|
41
|
+
endpoint?:
|
|
42
|
+
| string
|
|
43
|
+
| import("@aws-sdk/types").Endpoint
|
|
44
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
|
|
45
|
+
| undefined;
|
|
46
|
+
tls?: boolean | undefined;
|
|
47
|
+
retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
|
|
48
|
+
credentials?:
|
|
49
|
+
| import("@aws-sdk/types").Credentials
|
|
50
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
|
|
51
|
+
| undefined;
|
|
52
|
+
signer?:
|
|
53
|
+
| import("@aws-sdk/types").RequestSigner
|
|
54
|
+
| import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
|
|
55
|
+
| undefined;
|
|
56
|
+
signingEscapePath?: boolean | undefined;
|
|
57
|
+
systemClockOffset?: number | undefined;
|
|
58
|
+
signingRegion?: string | undefined;
|
|
59
|
+
signerConstructor?:
|
|
60
|
+
| (new (
|
|
61
|
+
options: import("@aws-sdk/signature-v4").SignatureV4Init &
|
|
62
|
+
import("@aws-sdk/signature-v4").SignatureV4CryptoInit
|
|
63
|
+
) => import("@aws-sdk/types").RequestSigner)
|
|
64
|
+
| undefined;
|
|
65
|
+
customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
|
|
66
|
+
};
|