@aws-sdk/client-snowball 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/Snowball.d.ts +454 -130
- package/dist-types/ts3.4/SnowballClient.d.ts +279 -98
- package/dist-types/ts3.4/commands/CancelClusterCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CancelJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateAddressCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateClusterCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/CreateLongTermPricingCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/CreateReturnShippingLabelCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/DescribeAddressCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeAddressesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/DescribeClusterCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/DescribeJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/DescribeReturnShippingLabelCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/GetJobManifestCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetJobUnlockCodeCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetSnowballUsageCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/GetSoftwareUpdatesCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/ListClusterJobsCommand.d.ts +37 -17
- package/dist-types/ts3.4/commands/ListClustersCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListCompatibleImagesCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/ListJobsCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/ListLongTermPricingCommand.d.ts +38 -17
- package/dist-types/ts3.4/commands/UpdateClusterCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateJobCommand.d.ts +34 -17
- package/dist-types/ts3.4/commands/UpdateJobShipmentStateCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/UpdateLongTermPricingCommand.d.ts +41 -17
- package/dist-types/ts3.4/commands/index.d.ts +25 -25
- 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/SnowballServiceException.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 +1044 -963
- package/dist-types/ts3.4/pagination/DescribeAddressesPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
- package/dist-types/ts3.4/pagination/ListJobsPaginator.d.ts +11 -4
- package/dist-types/ts3.4/pagination/index.d.ts +3 -3
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +305 -77
- 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,4 +1,11 @@
|
|
|
1
|
-
import { Paginator } from "@aws-sdk/types";
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
DescribeAddressesCommandInput,
|
|
4
|
+
DescribeAddressesCommandOutput,
|
|
5
|
+
} from "../commands/DescribeAddressesCommand";
|
|
6
|
+
import { SnowballPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateDescribeAddresses(
|
|
8
|
+
config: SnowballPaginationConfiguration,
|
|
9
|
+
input: DescribeAddressesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<DescribeAddressesCommandOutput>;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
-
import { Snowball } from "../Snowball";
|
|
3
|
-
import { SnowballClient } from "../SnowballClient";
|
|
4
|
-
export interface SnowballPaginationConfiguration
|
|
5
|
-
|
|
6
|
-
|
|
1
|
+
import { PaginationConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { Snowball } from "../Snowball";
|
|
3
|
+
import { SnowballClient } from "../SnowballClient";
|
|
4
|
+
export interface SnowballPaginationConfiguration
|
|
5
|
+
extends PaginationConfiguration {
|
|
6
|
+
client: Snowball | SnowballClient;
|
|
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
|
+
ListJobsCommandInput,
|
|
4
|
+
ListJobsCommandOutput,
|
|
5
|
+
} from "../commands/ListJobsCommand";
|
|
6
|
+
import { SnowballPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListJobs(
|
|
8
|
+
config: SnowballPaginationConfiguration,
|
|
9
|
+
input: ListJobsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListJobsCommandOutput>;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
export * from "./DescribeAddressesPaginator";
|
|
2
|
-
export * from "./Interfaces";
|
|
3
|
-
export * from "./ListJobsPaginator";
|
|
1
|
+
export * from "./DescribeAddressesPaginator";
|
|
2
|
+
export * from "./Interfaces";
|
|
3
|
+
export * from "./ListJobsPaginator";
|
|
@@ -1,77 +1,305 @@
|
|
|
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
|
-
import {
|
|
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
|
-
|
|
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
|
+
CancelClusterCommandInput,
|
|
8
|
+
CancelClusterCommandOutput,
|
|
9
|
+
} from "../commands/CancelClusterCommand";
|
|
10
|
+
import {
|
|
11
|
+
CancelJobCommandInput,
|
|
12
|
+
CancelJobCommandOutput,
|
|
13
|
+
} from "../commands/CancelJobCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateAddressCommandInput,
|
|
16
|
+
CreateAddressCommandOutput,
|
|
17
|
+
} from "../commands/CreateAddressCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateClusterCommandInput,
|
|
20
|
+
CreateClusterCommandOutput,
|
|
21
|
+
} from "../commands/CreateClusterCommand";
|
|
22
|
+
import {
|
|
23
|
+
CreateJobCommandInput,
|
|
24
|
+
CreateJobCommandOutput,
|
|
25
|
+
} from "../commands/CreateJobCommand";
|
|
26
|
+
import {
|
|
27
|
+
CreateLongTermPricingCommandInput,
|
|
28
|
+
CreateLongTermPricingCommandOutput,
|
|
29
|
+
} from "../commands/CreateLongTermPricingCommand";
|
|
30
|
+
import {
|
|
31
|
+
CreateReturnShippingLabelCommandInput,
|
|
32
|
+
CreateReturnShippingLabelCommandOutput,
|
|
33
|
+
} from "../commands/CreateReturnShippingLabelCommand";
|
|
34
|
+
import {
|
|
35
|
+
DescribeAddressCommandInput,
|
|
36
|
+
DescribeAddressCommandOutput,
|
|
37
|
+
} from "../commands/DescribeAddressCommand";
|
|
38
|
+
import {
|
|
39
|
+
DescribeAddressesCommandInput,
|
|
40
|
+
DescribeAddressesCommandOutput,
|
|
41
|
+
} from "../commands/DescribeAddressesCommand";
|
|
42
|
+
import {
|
|
43
|
+
DescribeClusterCommandInput,
|
|
44
|
+
DescribeClusterCommandOutput,
|
|
45
|
+
} from "../commands/DescribeClusterCommand";
|
|
46
|
+
import {
|
|
47
|
+
DescribeJobCommandInput,
|
|
48
|
+
DescribeJobCommandOutput,
|
|
49
|
+
} from "../commands/DescribeJobCommand";
|
|
50
|
+
import {
|
|
51
|
+
DescribeReturnShippingLabelCommandInput,
|
|
52
|
+
DescribeReturnShippingLabelCommandOutput,
|
|
53
|
+
} from "../commands/DescribeReturnShippingLabelCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetJobManifestCommandInput,
|
|
56
|
+
GetJobManifestCommandOutput,
|
|
57
|
+
} from "../commands/GetJobManifestCommand";
|
|
58
|
+
import {
|
|
59
|
+
GetJobUnlockCodeCommandInput,
|
|
60
|
+
GetJobUnlockCodeCommandOutput,
|
|
61
|
+
} from "../commands/GetJobUnlockCodeCommand";
|
|
62
|
+
import {
|
|
63
|
+
GetSnowballUsageCommandInput,
|
|
64
|
+
GetSnowballUsageCommandOutput,
|
|
65
|
+
} from "../commands/GetSnowballUsageCommand";
|
|
66
|
+
import {
|
|
67
|
+
GetSoftwareUpdatesCommandInput,
|
|
68
|
+
GetSoftwareUpdatesCommandOutput,
|
|
69
|
+
} from "../commands/GetSoftwareUpdatesCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListClusterJobsCommandInput,
|
|
72
|
+
ListClusterJobsCommandOutput,
|
|
73
|
+
} from "../commands/ListClusterJobsCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListClustersCommandInput,
|
|
76
|
+
ListClustersCommandOutput,
|
|
77
|
+
} from "../commands/ListClustersCommand";
|
|
78
|
+
import {
|
|
79
|
+
ListCompatibleImagesCommandInput,
|
|
80
|
+
ListCompatibleImagesCommandOutput,
|
|
81
|
+
} from "../commands/ListCompatibleImagesCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListJobsCommandInput,
|
|
84
|
+
ListJobsCommandOutput,
|
|
85
|
+
} from "../commands/ListJobsCommand";
|
|
86
|
+
import {
|
|
87
|
+
ListLongTermPricingCommandInput,
|
|
88
|
+
ListLongTermPricingCommandOutput,
|
|
89
|
+
} from "../commands/ListLongTermPricingCommand";
|
|
90
|
+
import {
|
|
91
|
+
UpdateClusterCommandInput,
|
|
92
|
+
UpdateClusterCommandOutput,
|
|
93
|
+
} from "../commands/UpdateClusterCommand";
|
|
94
|
+
import {
|
|
95
|
+
UpdateJobCommandInput,
|
|
96
|
+
UpdateJobCommandOutput,
|
|
97
|
+
} from "../commands/UpdateJobCommand";
|
|
98
|
+
import {
|
|
99
|
+
UpdateJobShipmentStateCommandInput,
|
|
100
|
+
UpdateJobShipmentStateCommandOutput,
|
|
101
|
+
} from "../commands/UpdateJobShipmentStateCommand";
|
|
102
|
+
import {
|
|
103
|
+
UpdateLongTermPricingCommandInput,
|
|
104
|
+
UpdateLongTermPricingCommandOutput,
|
|
105
|
+
} from "../commands/UpdateLongTermPricingCommand";
|
|
106
|
+
export declare const serializeAws_json1_1CancelClusterCommand: (
|
|
107
|
+
input: CancelClusterCommandInput,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<__HttpRequest>;
|
|
110
|
+
export declare const serializeAws_json1_1CancelJobCommand: (
|
|
111
|
+
input: CancelJobCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const serializeAws_json1_1CreateAddressCommand: (
|
|
115
|
+
input: CreateAddressCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const serializeAws_json1_1CreateClusterCommand: (
|
|
119
|
+
input: CreateClusterCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const serializeAws_json1_1CreateJobCommand: (
|
|
123
|
+
input: CreateJobCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const serializeAws_json1_1CreateLongTermPricingCommand: (
|
|
127
|
+
input: CreateLongTermPricingCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const serializeAws_json1_1CreateReturnShippingLabelCommand: (
|
|
131
|
+
input: CreateReturnShippingLabelCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const serializeAws_json1_1DescribeAddressCommand: (
|
|
135
|
+
input: DescribeAddressCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const serializeAws_json1_1DescribeAddressesCommand: (
|
|
139
|
+
input: DescribeAddressesCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const serializeAws_json1_1DescribeClusterCommand: (
|
|
143
|
+
input: DescribeClusterCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const serializeAws_json1_1DescribeJobCommand: (
|
|
147
|
+
input: DescribeJobCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const serializeAws_json1_1DescribeReturnShippingLabelCommand: (
|
|
151
|
+
input: DescribeReturnShippingLabelCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const serializeAws_json1_1GetJobManifestCommand: (
|
|
155
|
+
input: GetJobManifestCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const serializeAws_json1_1GetJobUnlockCodeCommand: (
|
|
159
|
+
input: GetJobUnlockCodeCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const serializeAws_json1_1GetSnowballUsageCommand: (
|
|
163
|
+
input: GetSnowballUsageCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const serializeAws_json1_1GetSoftwareUpdatesCommand: (
|
|
167
|
+
input: GetSoftwareUpdatesCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const serializeAws_json1_1ListClusterJobsCommand: (
|
|
171
|
+
input: ListClusterJobsCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const serializeAws_json1_1ListClustersCommand: (
|
|
175
|
+
input: ListClustersCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const serializeAws_json1_1ListCompatibleImagesCommand: (
|
|
179
|
+
input: ListCompatibleImagesCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const serializeAws_json1_1ListJobsCommand: (
|
|
183
|
+
input: ListJobsCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const serializeAws_json1_1ListLongTermPricingCommand: (
|
|
187
|
+
input: ListLongTermPricingCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const serializeAws_json1_1UpdateClusterCommand: (
|
|
191
|
+
input: UpdateClusterCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const serializeAws_json1_1UpdateJobCommand: (
|
|
195
|
+
input: UpdateJobCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const serializeAws_json1_1UpdateJobShipmentStateCommand: (
|
|
199
|
+
input: UpdateJobShipmentStateCommandInput,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const serializeAws_json1_1UpdateLongTermPricingCommand: (
|
|
203
|
+
input: UpdateLongTermPricingCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
206
|
+
export declare const deserializeAws_json1_1CancelClusterCommand: (
|
|
207
|
+
output: __HttpResponse,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<CancelClusterCommandOutput>;
|
|
210
|
+
export declare const deserializeAws_json1_1CancelJobCommand: (
|
|
211
|
+
output: __HttpResponse,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<CancelJobCommandOutput>;
|
|
214
|
+
export declare const deserializeAws_json1_1CreateAddressCommand: (
|
|
215
|
+
output: __HttpResponse,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<CreateAddressCommandOutput>;
|
|
218
|
+
export declare const deserializeAws_json1_1CreateClusterCommand: (
|
|
219
|
+
output: __HttpResponse,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<CreateClusterCommandOutput>;
|
|
222
|
+
export declare const deserializeAws_json1_1CreateJobCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<CreateJobCommandOutput>;
|
|
226
|
+
export declare const deserializeAws_json1_1CreateLongTermPricingCommand: (
|
|
227
|
+
output: __HttpResponse,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<CreateLongTermPricingCommandOutput>;
|
|
230
|
+
export declare const deserializeAws_json1_1CreateReturnShippingLabelCommand: (
|
|
231
|
+
output: __HttpResponse,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<CreateReturnShippingLabelCommandOutput>;
|
|
234
|
+
export declare const deserializeAws_json1_1DescribeAddressCommand: (
|
|
235
|
+
output: __HttpResponse,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<DescribeAddressCommandOutput>;
|
|
238
|
+
export declare const deserializeAws_json1_1DescribeAddressesCommand: (
|
|
239
|
+
output: __HttpResponse,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<DescribeAddressesCommandOutput>;
|
|
242
|
+
export declare const deserializeAws_json1_1DescribeClusterCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<DescribeClusterCommandOutput>;
|
|
246
|
+
export declare const deserializeAws_json1_1DescribeJobCommand: (
|
|
247
|
+
output: __HttpResponse,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<DescribeJobCommandOutput>;
|
|
250
|
+
export declare const deserializeAws_json1_1DescribeReturnShippingLabelCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<DescribeReturnShippingLabelCommandOutput>;
|
|
254
|
+
export declare const deserializeAws_json1_1GetJobManifestCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<GetJobManifestCommandOutput>;
|
|
258
|
+
export declare const deserializeAws_json1_1GetJobUnlockCodeCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<GetJobUnlockCodeCommandOutput>;
|
|
262
|
+
export declare const deserializeAws_json1_1GetSnowballUsageCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<GetSnowballUsageCommandOutput>;
|
|
266
|
+
export declare const deserializeAws_json1_1GetSoftwareUpdatesCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<GetSoftwareUpdatesCommandOutput>;
|
|
270
|
+
export declare const deserializeAws_json1_1ListClusterJobsCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<ListClusterJobsCommandOutput>;
|
|
274
|
+
export declare const deserializeAws_json1_1ListClustersCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<ListClustersCommandOutput>;
|
|
278
|
+
export declare const deserializeAws_json1_1ListCompatibleImagesCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<ListCompatibleImagesCommandOutput>;
|
|
282
|
+
export declare const deserializeAws_json1_1ListJobsCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<ListJobsCommandOutput>;
|
|
286
|
+
export declare const deserializeAws_json1_1ListLongTermPricingCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<ListLongTermPricingCommandOutput>;
|
|
290
|
+
export declare const deserializeAws_json1_1UpdateClusterCommand: (
|
|
291
|
+
output: __HttpResponse,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<UpdateClusterCommandOutput>;
|
|
294
|
+
export declare const deserializeAws_json1_1UpdateJobCommand: (
|
|
295
|
+
output: __HttpResponse,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<UpdateJobCommandOutput>;
|
|
298
|
+
export declare const deserializeAws_json1_1UpdateJobShipmentStateCommand: (
|
|
299
|
+
output: __HttpResponse,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<UpdateJobShipmentStateCommandOutput>;
|
|
302
|
+
export declare const deserializeAws_json1_1UpdateLongTermPricingCommand: (
|
|
303
|
+
output: __HttpResponse,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<UpdateLongTermPricingCommandOutput>;
|
|
@@ -1,38 +1,66 @@
|
|
|
1
|
-
import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
|
|
2
|
-
import { SnowballClientConfig } from "./SnowballClient";
|
|
3
|
-
|
|
4
|
-
export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
|
|
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 { SnowballClientConfig } from "./SnowballClient";
|
|
3
|
+
|
|
4
|
+
export declare const getRuntimeConfig: (config: SnowballClientConfig) => {
|
|
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
|
+
};
|