@aws-sdk/client-s3outposts 3.168.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 +16 -0
- package/dist-types/ts3.4/S3Outposts.d.ts +76 -25
- package/dist-types/ts3.4/S3OutpostsClient.d.ts +153 -77
- package/dist-types/ts3.4/commands/CreateEndpointCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DeleteEndpointCommand.d.ts +32 -17
- package/dist-types/ts3.4/commands/ListEndpointsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListSharedEndpointsCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/index.d.ts +4 -4
- 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/S3OutpostsServiceException.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 +162 -147
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListEndpointsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/ListSharedEndpointsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +53 -14
- 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,22 @@
|
|
|
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-s3outposts
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @aws-sdk/client-s3outposts
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
6
22
|
# [3.168.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.167.0...v3.168.0) (2022-09-09)
|
|
7
23
|
|
|
8
24
|
**Note:** Version bump only for package @aws-sdk/client-s3outposts
|
|
@@ -1,25 +1,76 @@
|
|
|
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
|
-
|
|
1
|
+
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
CreateEndpointCommandInput,
|
|
4
|
+
CreateEndpointCommandOutput,
|
|
5
|
+
} from "./commands/CreateEndpointCommand";
|
|
6
|
+
import {
|
|
7
|
+
DeleteEndpointCommandInput,
|
|
8
|
+
DeleteEndpointCommandOutput,
|
|
9
|
+
} from "./commands/DeleteEndpointCommand";
|
|
10
|
+
import {
|
|
11
|
+
ListEndpointsCommandInput,
|
|
12
|
+
ListEndpointsCommandOutput,
|
|
13
|
+
} from "./commands/ListEndpointsCommand";
|
|
14
|
+
import {
|
|
15
|
+
ListSharedEndpointsCommandInput,
|
|
16
|
+
ListSharedEndpointsCommandOutput,
|
|
17
|
+
} from "./commands/ListSharedEndpointsCommand";
|
|
18
|
+
import { S3OutpostsClient } from "./S3OutpostsClient";
|
|
19
|
+
|
|
20
|
+
export declare class S3Outposts extends S3OutpostsClient {
|
|
21
|
+
createEndpoint(
|
|
22
|
+
args: CreateEndpointCommandInput,
|
|
23
|
+
options?: __HttpHandlerOptions
|
|
24
|
+
): Promise<CreateEndpointCommandOutput>;
|
|
25
|
+
createEndpoint(
|
|
26
|
+
args: CreateEndpointCommandInput,
|
|
27
|
+
cb: (err: any, data?: CreateEndpointCommandOutput) => void
|
|
28
|
+
): void;
|
|
29
|
+
createEndpoint(
|
|
30
|
+
args: CreateEndpointCommandInput,
|
|
31
|
+
options: __HttpHandlerOptions,
|
|
32
|
+
cb: (err: any, data?: CreateEndpointCommandOutput) => void
|
|
33
|
+
): void;
|
|
34
|
+
|
|
35
|
+
deleteEndpoint(
|
|
36
|
+
args: DeleteEndpointCommandInput,
|
|
37
|
+
options?: __HttpHandlerOptions
|
|
38
|
+
): Promise<DeleteEndpointCommandOutput>;
|
|
39
|
+
deleteEndpoint(
|
|
40
|
+
args: DeleteEndpointCommandInput,
|
|
41
|
+
cb: (err: any, data?: DeleteEndpointCommandOutput) => void
|
|
42
|
+
): void;
|
|
43
|
+
deleteEndpoint(
|
|
44
|
+
args: DeleteEndpointCommandInput,
|
|
45
|
+
options: __HttpHandlerOptions,
|
|
46
|
+
cb: (err: any, data?: DeleteEndpointCommandOutput) => void
|
|
47
|
+
): void;
|
|
48
|
+
|
|
49
|
+
listEndpoints(
|
|
50
|
+
args: ListEndpointsCommandInput,
|
|
51
|
+
options?: __HttpHandlerOptions
|
|
52
|
+
): Promise<ListEndpointsCommandOutput>;
|
|
53
|
+
listEndpoints(
|
|
54
|
+
args: ListEndpointsCommandInput,
|
|
55
|
+
cb: (err: any, data?: ListEndpointsCommandOutput) => void
|
|
56
|
+
): void;
|
|
57
|
+
listEndpoints(
|
|
58
|
+
args: ListEndpointsCommandInput,
|
|
59
|
+
options: __HttpHandlerOptions,
|
|
60
|
+
cb: (err: any, data?: ListEndpointsCommandOutput) => void
|
|
61
|
+
): void;
|
|
62
|
+
|
|
63
|
+
listSharedEndpoints(
|
|
64
|
+
args: ListSharedEndpointsCommandInput,
|
|
65
|
+
options?: __HttpHandlerOptions
|
|
66
|
+
): Promise<ListSharedEndpointsCommandOutput>;
|
|
67
|
+
listSharedEndpoints(
|
|
68
|
+
args: ListSharedEndpointsCommandInput,
|
|
69
|
+
cb: (err: any, data?: ListSharedEndpointsCommandOutput) => void
|
|
70
|
+
): void;
|
|
71
|
+
listSharedEndpoints(
|
|
72
|
+
args: ListSharedEndpointsCommandInput,
|
|
73
|
+
options: __HttpHandlerOptions,
|
|
74
|
+
cb: (err: any, data?: ListSharedEndpointsCommandOutput) => void
|
|
75
|
+
): void;
|
|
76
|
+
}
|
|
@@ -1,77 +1,153 @@
|
|
|
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
|
-
declare type
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
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
|
+
CreateEndpointCommandInput,
|
|
47
|
+
CreateEndpointCommandOutput,
|
|
48
|
+
} from "./commands/CreateEndpointCommand";
|
|
49
|
+
import {
|
|
50
|
+
DeleteEndpointCommandInput,
|
|
51
|
+
DeleteEndpointCommandOutput,
|
|
52
|
+
} from "./commands/DeleteEndpointCommand";
|
|
53
|
+
import {
|
|
54
|
+
ListEndpointsCommandInput,
|
|
55
|
+
ListEndpointsCommandOutput,
|
|
56
|
+
} from "./commands/ListEndpointsCommand";
|
|
57
|
+
import {
|
|
58
|
+
ListSharedEndpointsCommandInput,
|
|
59
|
+
ListSharedEndpointsCommandOutput,
|
|
60
|
+
} from "./commands/ListSharedEndpointsCommand";
|
|
61
|
+
export declare type ServiceInputTypes =
|
|
62
|
+
| CreateEndpointCommandInput
|
|
63
|
+
| DeleteEndpointCommandInput
|
|
64
|
+
| ListEndpointsCommandInput
|
|
65
|
+
| ListSharedEndpointsCommandInput;
|
|
66
|
+
export declare type ServiceOutputTypes =
|
|
67
|
+
| CreateEndpointCommandOutput
|
|
68
|
+
| DeleteEndpointCommandOutput
|
|
69
|
+
| ListEndpointsCommandOutput
|
|
70
|
+
| ListSharedEndpointsCommandOutput;
|
|
71
|
+
export interface ClientDefaults
|
|
72
|
+
extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
73
|
+
requestHandler?: __HttpHandler;
|
|
74
|
+
|
|
75
|
+
sha256?: __HashConstructor;
|
|
76
|
+
|
|
77
|
+
urlParser?: __UrlParser;
|
|
78
|
+
|
|
79
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
80
|
+
|
|
81
|
+
streamCollector?: __StreamCollector;
|
|
82
|
+
|
|
83
|
+
base64Decoder?: __Decoder;
|
|
84
|
+
|
|
85
|
+
base64Encoder?: __Encoder;
|
|
86
|
+
|
|
87
|
+
utf8Decoder?: __Decoder;
|
|
88
|
+
|
|
89
|
+
utf8Encoder?: __Encoder;
|
|
90
|
+
|
|
91
|
+
runtime?: string;
|
|
92
|
+
|
|
93
|
+
disableHostPrefix?: boolean;
|
|
94
|
+
|
|
95
|
+
maxAttempts?: number | __Provider<number>;
|
|
96
|
+
|
|
97
|
+
retryMode?: string | __Provider<string>;
|
|
98
|
+
|
|
99
|
+
logger?: __Logger;
|
|
100
|
+
|
|
101
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
102
|
+
|
|
103
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
104
|
+
|
|
105
|
+
serviceId?: string;
|
|
106
|
+
|
|
107
|
+
region?: string | __Provider<string>;
|
|
108
|
+
|
|
109
|
+
credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
|
|
110
|
+
|
|
111
|
+
regionInfoProvider?: RegionInfoProvider;
|
|
112
|
+
|
|
113
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
114
|
+
|
|
115
|
+
defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
|
|
116
|
+
}
|
|
117
|
+
declare type S3OutpostsClientConfigType = Partial<
|
|
118
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
119
|
+
> &
|
|
120
|
+
ClientDefaults &
|
|
121
|
+
RegionInputConfig &
|
|
122
|
+
EndpointsInputConfig &
|
|
123
|
+
RetryInputConfig &
|
|
124
|
+
HostHeaderInputConfig &
|
|
125
|
+
AwsAuthInputConfig &
|
|
126
|
+
UserAgentInputConfig;
|
|
127
|
+
|
|
128
|
+
export interface S3OutpostsClientConfig extends S3OutpostsClientConfigType {}
|
|
129
|
+
declare type S3OutpostsClientResolvedConfigType =
|
|
130
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
131
|
+
Required<ClientDefaults> &
|
|
132
|
+
RegionResolvedConfig &
|
|
133
|
+
EndpointsResolvedConfig &
|
|
134
|
+
RetryResolvedConfig &
|
|
135
|
+
HostHeaderResolvedConfig &
|
|
136
|
+
AwsAuthResolvedConfig &
|
|
137
|
+
UserAgentResolvedConfig;
|
|
138
|
+
|
|
139
|
+
export interface S3OutpostsClientResolvedConfig
|
|
140
|
+
extends S3OutpostsClientResolvedConfigType {}
|
|
141
|
+
|
|
142
|
+
export declare class S3OutpostsClient extends __Client<
|
|
143
|
+
__HttpHandlerOptions,
|
|
144
|
+
ServiceInputTypes,
|
|
145
|
+
ServiceOutputTypes,
|
|
146
|
+
S3OutpostsClientResolvedConfig
|
|
147
|
+
> {
|
|
148
|
+
readonly config: S3OutpostsClientResolvedConfig;
|
|
149
|
+
constructor(configuration: S3OutpostsClientConfig);
|
|
150
|
+
|
|
151
|
+
destroy(): void;
|
|
152
|
+
}
|
|
153
|
+
export {};
|
|
@@ -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
|
+
CreateEndpointRequest,
|
|
10
|
+
CreateEndpointResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
S3OutpostsClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../S3OutpostsClient";
|
|
17
|
+
export interface CreateEndpointCommandInput extends CreateEndpointRequest {}
|
|
18
|
+
export interface CreateEndpointCommandOutput
|
|
19
|
+
extends CreateEndpointResult,
|
|
20
|
+
__MetadataBearer {}
|
|
21
|
+
|
|
22
|
+
export declare class CreateEndpointCommand extends $Command<
|
|
23
|
+
CreateEndpointCommandInput,
|
|
24
|
+
CreateEndpointCommandOutput,
|
|
25
|
+
S3OutpostsClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: CreateEndpointCommandInput;
|
|
28
|
+
constructor(input: CreateEndpointCommandInput);
|
|
29
|
+
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: S3OutpostsClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<CreateEndpointCommandInput, CreateEndpointCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -1,17 +1,32 @@
|
|
|
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 { DeleteEndpointRequest } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
S3OutpostsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../S3OutpostsClient";
|
|
14
|
+
export interface DeleteEndpointCommandInput extends DeleteEndpointRequest {}
|
|
15
|
+
export interface DeleteEndpointCommandOutput extends __MetadataBearer {}
|
|
16
|
+
|
|
17
|
+
export declare class DeleteEndpointCommand extends $Command<
|
|
18
|
+
DeleteEndpointCommandInput,
|
|
19
|
+
DeleteEndpointCommandOutput,
|
|
20
|
+
S3OutpostsClientResolvedConfig
|
|
21
|
+
> {
|
|
22
|
+
readonly input: DeleteEndpointCommandInput;
|
|
23
|
+
constructor(input: DeleteEndpointCommandInput);
|
|
24
|
+
|
|
25
|
+
resolveMiddleware(
|
|
26
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
27
|
+
configuration: S3OutpostsClientResolvedConfig,
|
|
28
|
+
options?: __HttpHandlerOptions
|
|
29
|
+
): Handler<DeleteEndpointCommandInput, DeleteEndpointCommandOutput>;
|
|
30
|
+
private serialize;
|
|
31
|
+
private deserialize;
|
|
32
|
+
}
|
|
@@ -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 { ListEndpointsRequest, ListEndpointsResult } from "../models/models_0";
|
|
9
|
+
import {
|
|
10
|
+
S3OutpostsClientResolvedConfig,
|
|
11
|
+
ServiceInputTypes,
|
|
12
|
+
ServiceOutputTypes,
|
|
13
|
+
} from "../S3OutpostsClient";
|
|
14
|
+
export interface ListEndpointsCommandInput extends ListEndpointsRequest {}
|
|
15
|
+
export interface ListEndpointsCommandOutput
|
|
16
|
+
extends ListEndpointsResult,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
|
|
19
|
+
export declare class ListEndpointsCommand extends $Command<
|
|
20
|
+
ListEndpointsCommandInput,
|
|
21
|
+
ListEndpointsCommandOutput,
|
|
22
|
+
S3OutpostsClientResolvedConfig
|
|
23
|
+
> {
|
|
24
|
+
readonly input: ListEndpointsCommandInput;
|
|
25
|
+
constructor(input: ListEndpointsCommandInput);
|
|
26
|
+
|
|
27
|
+
resolveMiddleware(
|
|
28
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
29
|
+
configuration: S3OutpostsClientResolvedConfig,
|
|
30
|
+
options?: __HttpHandlerOptions
|
|
31
|
+
): Handler<ListEndpointsCommandInput, ListEndpointsCommandOutput>;
|
|
32
|
+
private serialize;
|
|
33
|
+
private deserialize;
|
|
34
|
+
}
|
|
@@ -1,17 +1,38 @@
|
|
|
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
|
+
ListSharedEndpointsRequest,
|
|
10
|
+
ListSharedEndpointsResult,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
import {
|
|
13
|
+
S3OutpostsClientResolvedConfig,
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
} from "../S3OutpostsClient";
|
|
17
|
+
export interface ListSharedEndpointsCommandInput
|
|
18
|
+
extends ListSharedEndpointsRequest {}
|
|
19
|
+
export interface ListSharedEndpointsCommandOutput
|
|
20
|
+
extends ListSharedEndpointsResult,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
|
|
23
|
+
export declare class ListSharedEndpointsCommand extends $Command<
|
|
24
|
+
ListSharedEndpointsCommandInput,
|
|
25
|
+
ListSharedEndpointsCommandOutput,
|
|
26
|
+
S3OutpostsClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListSharedEndpointsCommandInput;
|
|
29
|
+
constructor(input: ListSharedEndpointsCommandInput);
|
|
30
|
+
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: S3OutpostsClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListSharedEndpointsCommandInput, ListSharedEndpointsCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export * from "./CreateEndpointCommand";
|
|
2
|
-
export * from "./DeleteEndpointCommand";
|
|
3
|
-
export * from "./ListEndpointsCommand";
|
|
4
|
-
export * from "./ListSharedEndpointsCommand";
|
|
1
|
+
export * from "./CreateEndpointCommand";
|
|
2
|
+
export * from "./DeleteEndpointCommand";
|
|
3
|
+
export * from "./ListEndpointsCommand";
|
|
4
|
+
export * from "./ListSharedEndpointsCommand";
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
-
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
1
|
+
import { RegionInfoProvider } from "@aws-sdk/types";
|
|
2
|
+
export declare const defaultRegionInfoProvider: RegionInfoProvider;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
export * from "./S3Outposts";
|
|
2
|
-
export * from "./S3OutpostsClient";
|
|
3
|
-
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
5
|
-
export * from "./pagination";
|
|
6
|
-
export { S3OutpostsServiceException } from "./models/S3OutpostsServiceException";
|
|
1
|
+
export * from "./S3Outposts";
|
|
2
|
+
export * from "./S3OutpostsClient";
|
|
3
|
+
export * from "./commands";
|
|
4
|
+
export * from "./models";
|
|
5
|
+
export * from "./pagination";
|
|
6
|
+
export { S3OutpostsServiceException } from "./models/S3OutpostsServiceException";
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@aws-sdk/smithy-client";
|
|
5
|
+
|
|
6
|
+
export declare class S3OutpostsServiceException extends __ServiceException {
|
|
7
|
+
constructor(options: __ServiceExceptionOptions);
|
|
8
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
1
|
+
export * from "./models_0";
|