@aws-sdk/client-mediastore-data 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/MediaStoreData.d.ts +94 -30
- package/dist-types/ts3.4/MediaStoreDataClient.d.ts +160 -78
- package/dist-types/ts3.4/commands/DeleteObjectCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeObjectCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetObjectCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListItemsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/PutObjectCommand.d.ts +42 -24
- package/dist-types/ts3.4/commands/index.d.ts +5 -5
- 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/MediaStoreDataServiceException.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 +185 -166
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListItemsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +2 -2
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +65 -17
- 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-mediastore-data
|
|
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-mediastore-data
|
|
@@ -1,30 +1,94 @@
|
|
|
1
|
-
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
import {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DeleteObjectCommandInput,
|
|
4
|
+
DeleteObjectCommandOutput,
|
|
5
|
+
} from "./commands/DeleteObjectCommand";
|
|
6
|
+
import {
|
|
7
|
+
DescribeObjectCommandInput,
|
|
8
|
+
DescribeObjectCommandOutput,
|
|
9
|
+
} from "./commands/DescribeObjectCommand";
|
|
10
|
+
import {
|
|
11
|
+
GetObjectCommandInput,
|
|
12
|
+
GetObjectCommandOutput,
|
|
13
|
+
} from "./commands/GetObjectCommand";
|
|
14
|
+
import {
|
|
15
|
+
ListItemsCommandInput,
|
|
16
|
+
ListItemsCommandOutput,
|
|
17
|
+
} from "./commands/ListItemsCommand";
|
|
18
|
+
import {
|
|
19
|
+
PutObjectCommandInput,
|
|
20
|
+
PutObjectCommandOutput,
|
|
21
|
+
} from "./commands/PutObjectCommand";
|
|
22
|
+
import { MediaStoreDataClient } from "./MediaStoreDataClient";
|
|
23
|
+
|
|
24
|
+
export declare class MediaStoreData extends MediaStoreDataClient {
|
|
25
|
+
deleteObject(
|
|
26
|
+
args: DeleteObjectCommandInput,
|
|
27
|
+
options?: __HttpHandlerOptions
|
|
28
|
+
): Promise<DeleteObjectCommandOutput>;
|
|
29
|
+
deleteObject(
|
|
30
|
+
args: DeleteObjectCommandInput,
|
|
31
|
+
cb: (err: any, data?: DeleteObjectCommandOutput) => void
|
|
32
|
+
): void;
|
|
33
|
+
deleteObject(
|
|
34
|
+
args: DeleteObjectCommandInput,
|
|
35
|
+
options: __HttpHandlerOptions,
|
|
36
|
+
cb: (err: any, data?: DeleteObjectCommandOutput) => void
|
|
37
|
+
): void;
|
|
38
|
+
|
|
39
|
+
describeObject(
|
|
40
|
+
args: DescribeObjectCommandInput,
|
|
41
|
+
options?: __HttpHandlerOptions
|
|
42
|
+
): Promise<DescribeObjectCommandOutput>;
|
|
43
|
+
describeObject(
|
|
44
|
+
args: DescribeObjectCommandInput,
|
|
45
|
+
cb: (err: any, data?: DescribeObjectCommandOutput) => void
|
|
46
|
+
): void;
|
|
47
|
+
describeObject(
|
|
48
|
+
args: DescribeObjectCommandInput,
|
|
49
|
+
options: __HttpHandlerOptions,
|
|
50
|
+
cb: (err: any, data?: DescribeObjectCommandOutput) => void
|
|
51
|
+
): void;
|
|
52
|
+
|
|
53
|
+
getObject(
|
|
54
|
+
args: GetObjectCommandInput,
|
|
55
|
+
options?: __HttpHandlerOptions
|
|
56
|
+
): Promise<GetObjectCommandOutput>;
|
|
57
|
+
getObject(
|
|
58
|
+
args: GetObjectCommandInput,
|
|
59
|
+
cb: (err: any, data?: GetObjectCommandOutput) => void
|
|
60
|
+
): void;
|
|
61
|
+
getObject(
|
|
62
|
+
args: GetObjectCommandInput,
|
|
63
|
+
options: __HttpHandlerOptions,
|
|
64
|
+
cb: (err: any, data?: GetObjectCommandOutput) => void
|
|
65
|
+
): void;
|
|
66
|
+
|
|
67
|
+
listItems(
|
|
68
|
+
args: ListItemsCommandInput,
|
|
69
|
+
options?: __HttpHandlerOptions
|
|
70
|
+
): Promise<ListItemsCommandOutput>;
|
|
71
|
+
listItems(
|
|
72
|
+
args: ListItemsCommandInput,
|
|
73
|
+
cb: (err: any, data?: ListItemsCommandOutput) => void
|
|
74
|
+
): void;
|
|
75
|
+
listItems(
|
|
76
|
+
args: ListItemsCommandInput,
|
|
77
|
+
options: __HttpHandlerOptions,
|
|
78
|
+
cb: (err: any, data?: ListItemsCommandOutput) => void
|
|
79
|
+
): void;
|
|
80
|
+
|
|
81
|
+
putObject(
|
|
82
|
+
args: PutObjectCommandInput,
|
|
83
|
+
options?: __HttpHandlerOptions
|
|
84
|
+
): Promise<PutObjectCommandOutput>;
|
|
85
|
+
putObject(
|
|
86
|
+
args: PutObjectCommandInput,
|
|
87
|
+
cb: (err: any, data?: PutObjectCommandOutput) => void
|
|
88
|
+
): void;
|
|
89
|
+
putObject(
|
|
90
|
+
args: PutObjectCommandInput,
|
|
91
|
+
options: __HttpHandlerOptions,
|
|
92
|
+
cb: (err: any, data?: PutObjectCommandOutput) => void
|
|
93
|
+
): void;
|
|
94
|
+
}
|
|
@@ -1,78 +1,160 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
import {
|
|
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
|
-
|
|
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
|
-
export declare
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
1
|
+
import {
|
|
2
|
+
EndpointsInputConfig,
|
|
3
|
+
EndpointsResolvedConfig,
|
|
4
|
+
RegionInputConfig,
|
|
5
|
+
RegionResolvedConfig,
|
|
6
|
+
} from "@aws-sdk/config-resolver";
|
|
7
|
+
import {
|
|
8
|
+
HostHeaderInputConfig,
|
|
9
|
+
HostHeaderResolvedConfig,
|
|
10
|
+
} from "@aws-sdk/middleware-host-header";
|
|
11
|
+
import {
|
|
12
|
+
RetryInputConfig,
|
|
13
|
+
RetryResolvedConfig,
|
|
14
|
+
} from "@aws-sdk/middleware-retry";
|
|
15
|
+
import {
|
|
16
|
+
AwsAuthInputConfig,
|
|
17
|
+
AwsAuthResolvedConfig,
|
|
18
|
+
} from "@aws-sdk/middleware-signing";
|
|
19
|
+
import {
|
|
20
|
+
UserAgentInputConfig,
|
|
21
|
+
UserAgentResolvedConfig,
|
|
22
|
+
} from "@aws-sdk/middleware-user-agent";
|
|
23
|
+
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
24
|
+
import {
|
|
25
|
+
Client as __Client,
|
|
26
|
+
DefaultsMode,
|
|
27
|
+
SmithyConfiguration as __SmithyConfiguration,
|
|
28
|
+
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
29
|
+
} from "@aws-sdk/smithy-client";
|
|
30
|
+
import {
|
|
31
|
+
BodyLengthCalculator as __BodyLengthCalculator,
|
|
32
|
+
Credentials as __Credentials,
|
|
33
|
+
Decoder as __Decoder,
|
|
34
|
+
Encoder as __Encoder,
|
|
35
|
+
HashConstructor as __HashConstructor,
|
|
36
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
37
|
+
Logger as __Logger,
|
|
38
|
+
Provider as __Provider,
|
|
39
|
+
Provider,
|
|
40
|
+
RegionInfoProvider,
|
|
41
|
+
StreamCollector as __StreamCollector,
|
|
42
|
+
UrlParser as __UrlParser,
|
|
43
|
+
UserAgent as __UserAgent,
|
|
44
|
+
} from "@aws-sdk/types";
|
|
45
|
+
import {
|
|
46
|
+
DeleteObjectCommandInput,
|
|
47
|
+
DeleteObjectCommandOutput,
|
|
48
|
+
} from "./commands/DeleteObjectCommand";
|
|
49
|
+
import {
|
|
50
|
+
DescribeObjectCommandInput,
|
|
51
|
+
DescribeObjectCommandOutput,
|
|
52
|
+
} from "./commands/DescribeObjectCommand";
|
|
53
|
+
import {
|
|
54
|
+
GetObjectCommandInput,
|
|
55
|
+
GetObjectCommandOutput,
|
|
56
|
+
} from "./commands/GetObjectCommand";
|
|
57
|
+
import {
|
|
58
|
+
ListItemsCommandInput,
|
|
59
|
+
ListItemsCommandOutput,
|
|
60
|
+
} from "./commands/ListItemsCommand";
|
|
61
|
+
import {
|
|
62
|
+
PutObjectCommandInput,
|
|
63
|
+
PutObjectCommandOutput,
|
|
64
|
+
} from "./commands/PutObjectCommand";
|
|
65
|
+
export declare type ServiceInputTypes =
|
|
66
|
+
| DeleteObjectCommandInput
|
|
67
|
+
| DescribeObjectCommandInput
|
|
68
|
+
| GetObjectCommandInput
|
|
69
|
+
| ListItemsCommandInput
|
|
70
|
+
| PutObjectCommandInput;
|
|
71
|
+
export declare type ServiceOutputTypes =
|
|
72
|
+
| DeleteObjectCommandOutput
|
|
73
|
+
| DescribeObjectCommandOutput
|
|
74
|
+
| GetObjectCommandOutput
|
|
75
|
+
| ListItemsCommandOutput
|
|
76
|
+
| PutObjectCommandOutput;
|
|
77
|
+
export interface ClientDefaults
|
|
78
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
79
|
+
requestHandler?: __HttpHandler;
|
|
80
|
+
|
|
81
|
+
sha256?: __HashConstructor;
|
|
82
|
+
|
|
83
|
+
urlParser?: __UrlParser;
|
|
84
|
+
|
|
85
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
86
|
+
|
|
87
|
+
streamCollector?: __StreamCollector;
|
|
88
|
+
|
|
89
|
+
base64Decoder?: __Decoder;
|
|
90
|
+
|
|
91
|
+
base64Encoder?: __Encoder;
|
|
92
|
+
|
|
93
|
+
utf8Decoder?: __Decoder;
|
|
94
|
+
|
|
95
|
+
utf8Encoder?: __Encoder;
|
|
96
|
+
|
|
97
|
+
runtime?: string;
|
|
98
|
+
|
|
99
|
+
disableHostPrefix?: boolean;
|
|
100
|
+
|
|
101
|
+
maxAttempts?: number | __Provider<number>;
|
|
102
|
+
|
|
103
|
+
retryMode?: string | __Provider<string>;
|
|
104
|
+
|
|
105
|
+
logger?: __Logger;
|
|
106
|
+
|
|
107
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
108
|
+
|
|
109
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
110
|
+
|
|
111
|
+
serviceId?: string;
|
|
112
|
+
|
|
113
|
+
region?: string | __Provider<string>;
|
|
114
|
+
|
|
115
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
116
|
+
|
|
117
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
118
|
+
|
|
119
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
120
|
+
|
|
121
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
122
|
+
}
|
|
123
|
+
declare type MediaStoreDataClientConfigType = Partial<
|
|
124
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
125
|
+
> &
|
|
126
|
+
ClientDefaults &
|
|
127
|
+
RegionInputConfig &
|
|
128
|
+
EndpointsInputConfig &
|
|
129
|
+
RetryInputConfig &
|
|
130
|
+
HostHeaderInputConfig &
|
|
131
|
+
AwsAuthInputConfig &
|
|
132
|
+
UserAgentInputConfig;
|
|
133
|
+
|
|
134
|
+
export interface MediaStoreDataClientConfig
|
|
135
|
+
extends MediaStoreDataClientConfigType {}
|
|
136
|
+
declare type MediaStoreDataClientResolvedConfigType =
|
|
137
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
138
|
+
Required<ClientDefaults> &
|
|
139
|
+
RegionResolvedConfig &
|
|
140
|
+
EndpointsResolvedConfig &
|
|
141
|
+
RetryResolvedConfig &
|
|
142
|
+
HostHeaderResolvedConfig &
|
|
143
|
+
AwsAuthResolvedConfig &
|
|
144
|
+
UserAgentResolvedConfig;
|
|
145
|
+
|
|
146
|
+
export interface MediaStoreDataClientResolvedConfig
|
|
147
|
+
extends MediaStoreDataClientResolvedConfigType {}
|
|
148
|
+
|
|
149
|
+
export declare class MediaStoreDataClient extends __Client<
|
|
150
|
+
__HttpHandlerOptions,
|
|
151
|
+
ServiceInputTypes,
|
|
152
|
+
ServiceOutputTypes,
|
|
153
|
+
MediaStoreDataClientResolvedConfig
|
|
154
|
+
> {
|
|
155
|
+
readonly config: MediaStoreDataClientResolvedConfig;
|
|
156
|
+
constructor(configuration: MediaStoreDataClientConfig);
|
|
157
|
+
|
|
158
|
+
destroy(): void;
|
|
159
|
+
}
|
|
160
|
+
export {};
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaStoreDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaStoreDataClient";
|
|
13
|
+
import { DeleteObjectRequest, DeleteObjectResponse } from "../models/models_0";
|
|
14
|
+
export interface DeleteObjectCommandInput extends DeleteObjectRequest {}
|
|
15
|
+
export interface DeleteObjectCommandOutput
|
|
16
|
+
extends DeleteObjectResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class DeleteObjectCommand extends $Command<
|
|
20
|
+
DeleteObjectCommandInput,
|
|
21
|
+
DeleteObjectCommandOutput,
|
|
22
|
+
MediaStoreDataClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: DeleteObjectCommandInput;
|
|
25
|
+
constructor(input: DeleteObjectCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: MediaStoreDataClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<DeleteObjectCommandInput, DeleteObjectCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,37 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaStoreDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaStoreDataClient";
|
|
13
|
+
import {
|
|
14
|
+
DescribeObjectRequest,
|
|
15
|
+
DescribeObjectResponse,
|
|
16
|
+
} from "../models/models_0";
|
|
17
|
+
export interface DescribeObjectCommandInput extends DescribeObjectRequest {}
|
|
18
|
+
export interface DescribeObjectCommandOutput
|
|
19
|
+
extends DescribeObjectResponse,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class DescribeObjectCommand extends $Command<
|
|
23
|
+
DescribeObjectCommandInput,
|
|
24
|
+
DescribeObjectCommandOutput,
|
|
25
|
+
MediaStoreDataClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: DescribeObjectCommandInput;
|
|
28
|
+
constructor(input: DescribeObjectCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: MediaStoreDataClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<DescribeObjectCommandInput, DescribeObjectCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaStoreDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaStoreDataClient";
|
|
13
|
+
import { GetObjectRequest, GetObjectResponse } from "../models/models_0";
|
|
14
|
+
export interface GetObjectCommandInput extends GetObjectRequest {}
|
|
15
|
+
export interface GetObjectCommandOutput
|
|
16
|
+
extends GetObjectResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class GetObjectCommand extends $Command<
|
|
20
|
+
GetObjectCommandInput,
|
|
21
|
+
GetObjectCommandOutput,
|
|
22
|
+
MediaStoreDataClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: GetObjectCommandInput;
|
|
25
|
+
constructor(input: GetObjectCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: MediaStoreDataClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<GetObjectCommandInput, GetObjectCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,34 @@
|
|
|
1
|
-
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import {
|
|
3
|
+
Handler,
|
|
4
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
5
|
+
MetadataBearer as __MetadataBearer,
|
|
6
|
+
MiddlewareStack,
|
|
7
|
+
} from "@aws-sdk/types";
|
|
8
|
+
import {
|
|
9
|
+
MediaStoreDataClientResolvedConfig,
|
|
10
|
+
ServiceInputTypes,
|
|
11
|
+
ServiceOutputTypes,
|
|
12
|
+
} from "../MediaStoreDataClient";
|
|
13
|
+
import { ListItemsRequest, ListItemsResponse } from "../models/models_0";
|
|
14
|
+
export interface ListItemsCommandInput extends ListItemsRequest {}
|
|
15
|
+
export interface ListItemsCommandOutput
|
|
16
|
+
extends ListItemsResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListItemsCommand extends $Command<
|
|
20
|
+
ListItemsCommandInput,
|
|
21
|
+
ListItemsCommandOutput,
|
|
22
|
+
MediaStoreDataClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListItemsCommandInput;
|
|
25
|
+
constructor(input: ListItemsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: MediaStoreDataClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListItemsCommandInput, ListItemsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|