@aws-sdk/client-sagemaker-geospatial 3.928.0 → 3.929.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 +1141 -1545
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/SageMakerGeospatialClient.js +2 -0
- package/dist-es/commands/DeleteEarthObservationJobCommand.js +3 -9
- package/dist-es/commands/DeleteVectorEnrichmentJobCommand.js +3 -9
- package/dist-es/commands/ExportEarthObservationJobCommand.js +3 -9
- package/dist-es/commands/ExportVectorEnrichmentJobCommand.js +3 -9
- package/dist-es/commands/GetEarthObservationJobCommand.js +3 -10
- package/dist-es/commands/GetRasterDataCollectionCommand.js +3 -9
- package/dist-es/commands/GetTileCommand.js +3 -10
- package/dist-es/commands/GetVectorEnrichmentJobCommand.js +3 -9
- package/dist-es/commands/ListEarthObservationJobsCommand.js +3 -10
- package/dist-es/commands/ListRasterDataCollectionsCommand.js +3 -10
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListVectorEnrichmentJobsCommand.js +3 -10
- package/dist-es/commands/SearchRasterDataCollectionCommand.js +3 -10
- package/dist-es/commands/StartEarthObservationJobCommand.js +3 -10
- package/dist-es/commands/StartVectorEnrichmentJobCommand.js +3 -9
- package/dist-es/commands/StopEarthObservationJobCommand.js +3 -9
- package/dist-es/commands/StopVectorEnrichmentJobCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -121
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1098 -0
- package/dist-types/SageMakerGeospatialClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -100
- 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 +145 -0
- package/dist-types/ts3.4/SageMakerGeospatialClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -71
- 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 +152 -0
- package/package.json +2 -3
- package/dist-es/protocols/Aws_restJson1.js +0 -1259
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -173
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -236
|
@@ -1,1259 +0,0 @@
|
|
|
1
|
-
import { awsExpectUnion as __expectUnion, loadRestJsonErrorCode, parseJsonBody as parseBody, parseJsonErrorBody as parseErrorBody, } from "@aws-sdk/core";
|
|
2
|
-
import { requestBuilder as rb } from "@smithy/core";
|
|
3
|
-
import { _json, collectBody, decorateServiceException as __decorateServiceException, expectBoolean as __expectBoolean, expectInt32 as __expectInt32, expectNonNull as __expectNonNull, expectNumber as __expectNumber, expectObject as __expectObject, expectString as __expectString, limitedParseDouble as __limitedParseDouble, limitedParseFloat32 as __limitedParseFloat32, map, parseEpochTimestamp as __parseEpochTimestamp, parseRfc3339DateTimeWithOffset as __parseRfc3339DateTimeWithOffset, serializeFloat as __serializeFloat, take, withBaseException, } from "@smithy/smithy-client";
|
|
4
|
-
import { v4 as generateIdempotencyToken } from "@smithy/uuid";
|
|
5
|
-
import { AccessDeniedException, AreaOfInterest, AreaOfInterestGeometry, ConflictException, InternalServerException, JobConfigInput, Property, ResourceNotFoundException, ServiceQuotaExceededException, ThrottlingException, ValidationException, } from "../models/models_0";
|
|
6
|
-
import { SageMakerGeospatialServiceException as __BaseException } from "../models/SageMakerGeospatialServiceException";
|
|
7
|
-
export const se_DeleteEarthObservationJobCommand = async (input, context) => {
|
|
8
|
-
const b = rb(input, context);
|
|
9
|
-
const headers = {};
|
|
10
|
-
b.bp("/earth-observation-jobs/{Arn}");
|
|
11
|
-
b.p("Arn", () => input.Arn, "{Arn}", false);
|
|
12
|
-
let body;
|
|
13
|
-
b.m("DELETE").h(headers).b(body);
|
|
14
|
-
return b.build();
|
|
15
|
-
};
|
|
16
|
-
export const se_DeleteVectorEnrichmentJobCommand = async (input, context) => {
|
|
17
|
-
const b = rb(input, context);
|
|
18
|
-
const headers = {};
|
|
19
|
-
b.bp("/vector-enrichment-jobs/{Arn}");
|
|
20
|
-
b.p("Arn", () => input.Arn, "{Arn}", false);
|
|
21
|
-
let body;
|
|
22
|
-
b.m("DELETE").h(headers).b(body);
|
|
23
|
-
return b.build();
|
|
24
|
-
};
|
|
25
|
-
export const se_ExportEarthObservationJobCommand = async (input, context) => {
|
|
26
|
-
const b = rb(input, context);
|
|
27
|
-
const headers = {
|
|
28
|
-
"content-type": "application/json",
|
|
29
|
-
};
|
|
30
|
-
b.bp("/export-earth-observation-job");
|
|
31
|
-
let body;
|
|
32
|
-
body = JSON.stringify(take(input, {
|
|
33
|
-
Arn: [],
|
|
34
|
-
ClientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
35
|
-
ExecutionRoleArn: [],
|
|
36
|
-
ExportSourceImages: [],
|
|
37
|
-
OutputConfig: (_) => _json(_),
|
|
38
|
-
}));
|
|
39
|
-
b.m("POST").h(headers).b(body);
|
|
40
|
-
return b.build();
|
|
41
|
-
};
|
|
42
|
-
export const se_ExportVectorEnrichmentJobCommand = async (input, context) => {
|
|
43
|
-
const b = rb(input, context);
|
|
44
|
-
const headers = {
|
|
45
|
-
"content-type": "application/json",
|
|
46
|
-
};
|
|
47
|
-
b.bp("/export-vector-enrichment-jobs");
|
|
48
|
-
let body;
|
|
49
|
-
body = JSON.stringify(take(input, {
|
|
50
|
-
Arn: [],
|
|
51
|
-
ClientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
52
|
-
ExecutionRoleArn: [],
|
|
53
|
-
OutputConfig: (_) => _json(_),
|
|
54
|
-
}));
|
|
55
|
-
b.m("POST").h(headers).b(body);
|
|
56
|
-
return b.build();
|
|
57
|
-
};
|
|
58
|
-
export const se_GetEarthObservationJobCommand = async (input, context) => {
|
|
59
|
-
const b = rb(input, context);
|
|
60
|
-
const headers = {};
|
|
61
|
-
b.bp("/earth-observation-jobs/{Arn}");
|
|
62
|
-
b.p("Arn", () => input.Arn, "{Arn}", false);
|
|
63
|
-
let body;
|
|
64
|
-
b.m("GET").h(headers).b(body);
|
|
65
|
-
return b.build();
|
|
66
|
-
};
|
|
67
|
-
export const se_GetRasterDataCollectionCommand = async (input, context) => {
|
|
68
|
-
const b = rb(input, context);
|
|
69
|
-
const headers = {};
|
|
70
|
-
b.bp("/raster-data-collection/{Arn}");
|
|
71
|
-
b.p("Arn", () => input.Arn, "{Arn}", false);
|
|
72
|
-
let body;
|
|
73
|
-
b.m("GET").h(headers).b(body);
|
|
74
|
-
return b.build();
|
|
75
|
-
};
|
|
76
|
-
export const se_GetTileCommand = async (input, context) => {
|
|
77
|
-
const b = rb(input, context);
|
|
78
|
-
const headers = {};
|
|
79
|
-
b.bp("/tile/{z}/{x}/{y}");
|
|
80
|
-
b.p("x", () => input.x.toString(), "{x}", false);
|
|
81
|
-
b.p("y", () => input.y.toString(), "{y}", false);
|
|
82
|
-
b.p("z", () => input.z.toString(), "{z}", false);
|
|
83
|
-
const query = map({
|
|
84
|
-
[_IA]: [__expectNonNull(input.ImageAssets, `ImageAssets`) != null, () => input[_IA] || []],
|
|
85
|
-
[_T]: [, __expectNonNull(input[_T], `Target`)],
|
|
86
|
-
[_A]: [, __expectNonNull(input[_A], `Arn`)],
|
|
87
|
-
[_IM]: [() => input.ImageMask !== void 0, () => input[_IM].toString()],
|
|
88
|
-
[_OF]: [, input[_OF]],
|
|
89
|
-
[_TRF]: [, input[_TRF]],
|
|
90
|
-
[_PF]: [, input[_PF]],
|
|
91
|
-
[_ODT]: [, input[_ODT]],
|
|
92
|
-
[_ERA]: [, input[_ERA]],
|
|
93
|
-
});
|
|
94
|
-
let body;
|
|
95
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
96
|
-
return b.build();
|
|
97
|
-
};
|
|
98
|
-
export const se_GetVectorEnrichmentJobCommand = async (input, context) => {
|
|
99
|
-
const b = rb(input, context);
|
|
100
|
-
const headers = {};
|
|
101
|
-
b.bp("/vector-enrichment-jobs/{Arn}");
|
|
102
|
-
b.p("Arn", () => input.Arn, "{Arn}", false);
|
|
103
|
-
let body;
|
|
104
|
-
b.m("GET").h(headers).b(body);
|
|
105
|
-
return b.build();
|
|
106
|
-
};
|
|
107
|
-
export const se_ListEarthObservationJobsCommand = async (input, context) => {
|
|
108
|
-
const b = rb(input, context);
|
|
109
|
-
const headers = {
|
|
110
|
-
"content-type": "application/json",
|
|
111
|
-
};
|
|
112
|
-
b.bp("/list-earth-observation-jobs");
|
|
113
|
-
let body;
|
|
114
|
-
body = JSON.stringify(take(input, {
|
|
115
|
-
MaxResults: [],
|
|
116
|
-
NextToken: [],
|
|
117
|
-
SortBy: [],
|
|
118
|
-
SortOrder: [],
|
|
119
|
-
StatusEquals: [],
|
|
120
|
-
}));
|
|
121
|
-
b.m("POST").h(headers).b(body);
|
|
122
|
-
return b.build();
|
|
123
|
-
};
|
|
124
|
-
export const se_ListRasterDataCollectionsCommand = async (input, context) => {
|
|
125
|
-
const b = rb(input, context);
|
|
126
|
-
const headers = {};
|
|
127
|
-
b.bp("/raster-data-collections");
|
|
128
|
-
const query = map({
|
|
129
|
-
[_NT]: [, input[_NT]],
|
|
130
|
-
[_MR]: [() => input.MaxResults !== void 0, () => input[_MR].toString()],
|
|
131
|
-
});
|
|
132
|
-
let body;
|
|
133
|
-
b.m("GET").h(headers).q(query).b(body);
|
|
134
|
-
return b.build();
|
|
135
|
-
};
|
|
136
|
-
export const se_ListTagsForResourceCommand = async (input, context) => {
|
|
137
|
-
const b = rb(input, context);
|
|
138
|
-
const headers = {};
|
|
139
|
-
b.bp("/tags/{ResourceArn}");
|
|
140
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
141
|
-
let body;
|
|
142
|
-
b.m("GET").h(headers).b(body);
|
|
143
|
-
return b.build();
|
|
144
|
-
};
|
|
145
|
-
export const se_ListVectorEnrichmentJobsCommand = async (input, context) => {
|
|
146
|
-
const b = rb(input, context);
|
|
147
|
-
const headers = {
|
|
148
|
-
"content-type": "application/json",
|
|
149
|
-
};
|
|
150
|
-
b.bp("/list-vector-enrichment-jobs");
|
|
151
|
-
let body;
|
|
152
|
-
body = JSON.stringify(take(input, {
|
|
153
|
-
MaxResults: [],
|
|
154
|
-
NextToken: [],
|
|
155
|
-
SortBy: [],
|
|
156
|
-
SortOrder: [],
|
|
157
|
-
StatusEquals: [],
|
|
158
|
-
}));
|
|
159
|
-
b.m("POST").h(headers).b(body);
|
|
160
|
-
return b.build();
|
|
161
|
-
};
|
|
162
|
-
export const se_SearchRasterDataCollectionCommand = async (input, context) => {
|
|
163
|
-
const b = rb(input, context);
|
|
164
|
-
const headers = {
|
|
165
|
-
"content-type": "application/json",
|
|
166
|
-
};
|
|
167
|
-
b.bp("/search-raster-data-collection");
|
|
168
|
-
let body;
|
|
169
|
-
body = JSON.stringify(take(input, {
|
|
170
|
-
Arn: [],
|
|
171
|
-
NextToken: [],
|
|
172
|
-
RasterDataCollectionQuery: (_) => se_RasterDataCollectionQueryWithBandFilterInput(_, context),
|
|
173
|
-
}));
|
|
174
|
-
b.m("POST").h(headers).b(body);
|
|
175
|
-
return b.build();
|
|
176
|
-
};
|
|
177
|
-
export const se_StartEarthObservationJobCommand = async (input, context) => {
|
|
178
|
-
const b = rb(input, context);
|
|
179
|
-
const headers = {
|
|
180
|
-
"content-type": "application/json",
|
|
181
|
-
};
|
|
182
|
-
b.bp("/earth-observation-jobs");
|
|
183
|
-
let body;
|
|
184
|
-
body = JSON.stringify(take(input, {
|
|
185
|
-
ClientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
186
|
-
ExecutionRoleArn: [],
|
|
187
|
-
InputConfig: (_) => se_InputConfigInput(_, context),
|
|
188
|
-
JobConfig: (_) => se_JobConfigInput(_, context),
|
|
189
|
-
KmsKeyId: [],
|
|
190
|
-
Name: [],
|
|
191
|
-
Tags: (_) => _json(_),
|
|
192
|
-
}));
|
|
193
|
-
b.m("POST").h(headers).b(body);
|
|
194
|
-
return b.build();
|
|
195
|
-
};
|
|
196
|
-
export const se_StartVectorEnrichmentJobCommand = async (input, context) => {
|
|
197
|
-
const b = rb(input, context);
|
|
198
|
-
const headers = {
|
|
199
|
-
"content-type": "application/json",
|
|
200
|
-
};
|
|
201
|
-
b.bp("/vector-enrichment-jobs");
|
|
202
|
-
let body;
|
|
203
|
-
body = JSON.stringify(take(input, {
|
|
204
|
-
ClientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
205
|
-
ExecutionRoleArn: [],
|
|
206
|
-
InputConfig: (_) => _json(_),
|
|
207
|
-
JobConfig: (_) => _json(_),
|
|
208
|
-
KmsKeyId: [],
|
|
209
|
-
Name: [],
|
|
210
|
-
Tags: (_) => _json(_),
|
|
211
|
-
}));
|
|
212
|
-
b.m("POST").h(headers).b(body);
|
|
213
|
-
return b.build();
|
|
214
|
-
};
|
|
215
|
-
export const se_StopEarthObservationJobCommand = async (input, context) => {
|
|
216
|
-
const b = rb(input, context);
|
|
217
|
-
const headers = {
|
|
218
|
-
"content-type": "application/json",
|
|
219
|
-
};
|
|
220
|
-
b.bp("/earth-observation-jobs/stop");
|
|
221
|
-
let body;
|
|
222
|
-
body = JSON.stringify(take(input, {
|
|
223
|
-
Arn: [],
|
|
224
|
-
}));
|
|
225
|
-
b.m("POST").h(headers).b(body);
|
|
226
|
-
return b.build();
|
|
227
|
-
};
|
|
228
|
-
export const se_StopVectorEnrichmentJobCommand = async (input, context) => {
|
|
229
|
-
const b = rb(input, context);
|
|
230
|
-
const headers = {
|
|
231
|
-
"content-type": "application/json",
|
|
232
|
-
};
|
|
233
|
-
b.bp("/vector-enrichment-jobs/stop");
|
|
234
|
-
let body;
|
|
235
|
-
body = JSON.stringify(take(input, {
|
|
236
|
-
Arn: [],
|
|
237
|
-
}));
|
|
238
|
-
b.m("POST").h(headers).b(body);
|
|
239
|
-
return b.build();
|
|
240
|
-
};
|
|
241
|
-
export const se_TagResourceCommand = async (input, context) => {
|
|
242
|
-
const b = rb(input, context);
|
|
243
|
-
const headers = {
|
|
244
|
-
"content-type": "application/json",
|
|
245
|
-
};
|
|
246
|
-
b.bp("/tags/{ResourceArn}");
|
|
247
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
248
|
-
let body;
|
|
249
|
-
body = JSON.stringify(take(input, {
|
|
250
|
-
Tags: (_) => _json(_),
|
|
251
|
-
}));
|
|
252
|
-
b.m("PUT").h(headers).b(body);
|
|
253
|
-
return b.build();
|
|
254
|
-
};
|
|
255
|
-
export const se_UntagResourceCommand = async (input, context) => {
|
|
256
|
-
const b = rb(input, context);
|
|
257
|
-
const headers = {};
|
|
258
|
-
b.bp("/tags/{ResourceArn}");
|
|
259
|
-
b.p("ResourceArn", () => input.ResourceArn, "{ResourceArn}", false);
|
|
260
|
-
const query = map({
|
|
261
|
-
[_tK]: [__expectNonNull(input.TagKeys, `TagKeys`) != null, () => input[_TK] || []],
|
|
262
|
-
});
|
|
263
|
-
let body;
|
|
264
|
-
b.m("DELETE").h(headers).q(query).b(body);
|
|
265
|
-
return b.build();
|
|
266
|
-
};
|
|
267
|
-
export const de_DeleteEarthObservationJobCommand = async (output, context) => {
|
|
268
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
269
|
-
return de_CommandError(output, context);
|
|
270
|
-
}
|
|
271
|
-
const contents = map({
|
|
272
|
-
$metadata: deserializeMetadata(output),
|
|
273
|
-
});
|
|
274
|
-
await collectBody(output.body, context);
|
|
275
|
-
return contents;
|
|
276
|
-
};
|
|
277
|
-
export const de_DeleteVectorEnrichmentJobCommand = async (output, context) => {
|
|
278
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
279
|
-
return de_CommandError(output, context);
|
|
280
|
-
}
|
|
281
|
-
const contents = map({
|
|
282
|
-
$metadata: deserializeMetadata(output),
|
|
283
|
-
});
|
|
284
|
-
await collectBody(output.body, context);
|
|
285
|
-
return contents;
|
|
286
|
-
};
|
|
287
|
-
export const de_ExportEarthObservationJobCommand = async (output, context) => {
|
|
288
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
289
|
-
return de_CommandError(output, context);
|
|
290
|
-
}
|
|
291
|
-
const contents = map({
|
|
292
|
-
$metadata: deserializeMetadata(output),
|
|
293
|
-
});
|
|
294
|
-
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
295
|
-
const doc = take(data, {
|
|
296
|
-
Arn: __expectString,
|
|
297
|
-
CreationTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
298
|
-
ExecutionRoleArn: __expectString,
|
|
299
|
-
ExportSourceImages: __expectBoolean,
|
|
300
|
-
ExportStatus: __expectString,
|
|
301
|
-
OutputConfig: _json,
|
|
302
|
-
});
|
|
303
|
-
Object.assign(contents, doc);
|
|
304
|
-
return contents;
|
|
305
|
-
};
|
|
306
|
-
export const de_ExportVectorEnrichmentJobCommand = async (output, context) => {
|
|
307
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
308
|
-
return de_CommandError(output, context);
|
|
309
|
-
}
|
|
310
|
-
const contents = map({
|
|
311
|
-
$metadata: deserializeMetadata(output),
|
|
312
|
-
});
|
|
313
|
-
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
314
|
-
const doc = take(data, {
|
|
315
|
-
Arn: __expectString,
|
|
316
|
-
CreationTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
317
|
-
ExecutionRoleArn: __expectString,
|
|
318
|
-
ExportStatus: __expectString,
|
|
319
|
-
OutputConfig: _json,
|
|
320
|
-
});
|
|
321
|
-
Object.assign(contents, doc);
|
|
322
|
-
return contents;
|
|
323
|
-
};
|
|
324
|
-
export const de_GetEarthObservationJobCommand = async (output, context) => {
|
|
325
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
326
|
-
return de_CommandError(output, context);
|
|
327
|
-
}
|
|
328
|
-
const contents = map({
|
|
329
|
-
$metadata: deserializeMetadata(output),
|
|
330
|
-
});
|
|
331
|
-
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
332
|
-
const doc = take(data, {
|
|
333
|
-
Arn: __expectString,
|
|
334
|
-
CreationTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
335
|
-
DurationInSeconds: __expectInt32,
|
|
336
|
-
ErrorDetails: _json,
|
|
337
|
-
ExecutionRoleArn: __expectString,
|
|
338
|
-
ExportErrorDetails: _json,
|
|
339
|
-
ExportStatus: __expectString,
|
|
340
|
-
InputConfig: (_) => de_InputConfigOutput(_, context),
|
|
341
|
-
JobConfig: (_) => de_JobConfigInput(__expectUnion(_), context),
|
|
342
|
-
KmsKeyId: __expectString,
|
|
343
|
-
Name: __expectString,
|
|
344
|
-
OutputBands: _json,
|
|
345
|
-
Status: __expectString,
|
|
346
|
-
Tags: _json,
|
|
347
|
-
});
|
|
348
|
-
Object.assign(contents, doc);
|
|
349
|
-
return contents;
|
|
350
|
-
};
|
|
351
|
-
export const de_GetRasterDataCollectionCommand = async (output, context) => {
|
|
352
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
353
|
-
return de_CommandError(output, context);
|
|
354
|
-
}
|
|
355
|
-
const contents = map({
|
|
356
|
-
$metadata: deserializeMetadata(output),
|
|
357
|
-
});
|
|
358
|
-
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
359
|
-
const doc = take(data, {
|
|
360
|
-
Arn: __expectString,
|
|
361
|
-
Description: __expectString,
|
|
362
|
-
DescriptionPageUrl: __expectString,
|
|
363
|
-
ImageSourceBands: _json,
|
|
364
|
-
Name: __expectString,
|
|
365
|
-
SupportedFilters: (_) => de_FilterList(_, context),
|
|
366
|
-
Tags: _json,
|
|
367
|
-
Type: __expectString,
|
|
368
|
-
});
|
|
369
|
-
Object.assign(contents, doc);
|
|
370
|
-
return contents;
|
|
371
|
-
};
|
|
372
|
-
export const de_GetTileCommand = async (output, context) => {
|
|
373
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
374
|
-
return de_CommandError(output, context);
|
|
375
|
-
}
|
|
376
|
-
const contents = map({
|
|
377
|
-
$metadata: deserializeMetadata(output),
|
|
378
|
-
});
|
|
379
|
-
const data = output.body;
|
|
380
|
-
context.sdkStreamMixin(data);
|
|
381
|
-
contents.BinaryFile = data;
|
|
382
|
-
return contents;
|
|
383
|
-
};
|
|
384
|
-
export const de_GetVectorEnrichmentJobCommand = async (output, context) => {
|
|
385
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
386
|
-
return de_CommandError(output, context);
|
|
387
|
-
}
|
|
388
|
-
const contents = map({
|
|
389
|
-
$metadata: deserializeMetadata(output),
|
|
390
|
-
});
|
|
391
|
-
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
392
|
-
const doc = take(data, {
|
|
393
|
-
Arn: __expectString,
|
|
394
|
-
CreationTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
395
|
-
DurationInSeconds: __expectInt32,
|
|
396
|
-
ErrorDetails: _json,
|
|
397
|
-
ExecutionRoleArn: __expectString,
|
|
398
|
-
ExportErrorDetails: _json,
|
|
399
|
-
ExportStatus: __expectString,
|
|
400
|
-
InputConfig: _json,
|
|
401
|
-
JobConfig: (_) => _json(__expectUnion(_)),
|
|
402
|
-
KmsKeyId: __expectString,
|
|
403
|
-
Name: __expectString,
|
|
404
|
-
Status: __expectString,
|
|
405
|
-
Tags: _json,
|
|
406
|
-
Type: __expectString,
|
|
407
|
-
});
|
|
408
|
-
Object.assign(contents, doc);
|
|
409
|
-
return contents;
|
|
410
|
-
};
|
|
411
|
-
export const de_ListEarthObservationJobsCommand = async (output, context) => {
|
|
412
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
413
|
-
return de_CommandError(output, context);
|
|
414
|
-
}
|
|
415
|
-
const contents = map({
|
|
416
|
-
$metadata: deserializeMetadata(output),
|
|
417
|
-
});
|
|
418
|
-
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
419
|
-
const doc = take(data, {
|
|
420
|
-
EarthObservationJobSummaries: (_) => de_EarthObservationJobList(_, context),
|
|
421
|
-
NextToken: __expectString,
|
|
422
|
-
});
|
|
423
|
-
Object.assign(contents, doc);
|
|
424
|
-
return contents;
|
|
425
|
-
};
|
|
426
|
-
export const de_ListRasterDataCollectionsCommand = async (output, context) => {
|
|
427
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
428
|
-
return de_CommandError(output, context);
|
|
429
|
-
}
|
|
430
|
-
const contents = map({
|
|
431
|
-
$metadata: deserializeMetadata(output),
|
|
432
|
-
});
|
|
433
|
-
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
434
|
-
const doc = take(data, {
|
|
435
|
-
NextToken: __expectString,
|
|
436
|
-
RasterDataCollectionSummaries: (_) => de_DataCollectionsList(_, context),
|
|
437
|
-
});
|
|
438
|
-
Object.assign(contents, doc);
|
|
439
|
-
return contents;
|
|
440
|
-
};
|
|
441
|
-
export const de_ListTagsForResourceCommand = async (output, context) => {
|
|
442
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
443
|
-
return de_CommandError(output, context);
|
|
444
|
-
}
|
|
445
|
-
const contents = map({
|
|
446
|
-
$metadata: deserializeMetadata(output),
|
|
447
|
-
});
|
|
448
|
-
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
449
|
-
const doc = take(data, {
|
|
450
|
-
Tags: _json,
|
|
451
|
-
});
|
|
452
|
-
Object.assign(contents, doc);
|
|
453
|
-
return contents;
|
|
454
|
-
};
|
|
455
|
-
export const de_ListVectorEnrichmentJobsCommand = async (output, context) => {
|
|
456
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
457
|
-
return de_CommandError(output, context);
|
|
458
|
-
}
|
|
459
|
-
const contents = map({
|
|
460
|
-
$metadata: deserializeMetadata(output),
|
|
461
|
-
});
|
|
462
|
-
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
463
|
-
const doc = take(data, {
|
|
464
|
-
NextToken: __expectString,
|
|
465
|
-
VectorEnrichmentJobSummaries: (_) => de_VectorEnrichmentJobList(_, context),
|
|
466
|
-
});
|
|
467
|
-
Object.assign(contents, doc);
|
|
468
|
-
return contents;
|
|
469
|
-
};
|
|
470
|
-
export const de_SearchRasterDataCollectionCommand = async (output, context) => {
|
|
471
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
472
|
-
return de_CommandError(output, context);
|
|
473
|
-
}
|
|
474
|
-
const contents = map({
|
|
475
|
-
$metadata: deserializeMetadata(output),
|
|
476
|
-
});
|
|
477
|
-
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
478
|
-
const doc = take(data, {
|
|
479
|
-
ApproximateResultCount: __expectInt32,
|
|
480
|
-
Items: (_) => de_ItemSourceList(_, context),
|
|
481
|
-
NextToken: __expectString,
|
|
482
|
-
});
|
|
483
|
-
Object.assign(contents, doc);
|
|
484
|
-
return contents;
|
|
485
|
-
};
|
|
486
|
-
export const de_StartEarthObservationJobCommand = async (output, context) => {
|
|
487
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
488
|
-
return de_CommandError(output, context);
|
|
489
|
-
}
|
|
490
|
-
const contents = map({
|
|
491
|
-
$metadata: deserializeMetadata(output),
|
|
492
|
-
});
|
|
493
|
-
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
494
|
-
const doc = take(data, {
|
|
495
|
-
Arn: __expectString,
|
|
496
|
-
CreationTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
497
|
-
DurationInSeconds: __expectInt32,
|
|
498
|
-
ExecutionRoleArn: __expectString,
|
|
499
|
-
InputConfig: (_) => de_InputConfigOutput(_, context),
|
|
500
|
-
JobConfig: (_) => de_JobConfigInput(__expectUnion(_), context),
|
|
501
|
-
KmsKeyId: __expectString,
|
|
502
|
-
Name: __expectString,
|
|
503
|
-
Status: __expectString,
|
|
504
|
-
Tags: _json,
|
|
505
|
-
});
|
|
506
|
-
Object.assign(contents, doc);
|
|
507
|
-
return contents;
|
|
508
|
-
};
|
|
509
|
-
export const de_StartVectorEnrichmentJobCommand = async (output, context) => {
|
|
510
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
511
|
-
return de_CommandError(output, context);
|
|
512
|
-
}
|
|
513
|
-
const contents = map({
|
|
514
|
-
$metadata: deserializeMetadata(output),
|
|
515
|
-
});
|
|
516
|
-
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
517
|
-
const doc = take(data, {
|
|
518
|
-
Arn: __expectString,
|
|
519
|
-
CreationTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
520
|
-
DurationInSeconds: __expectInt32,
|
|
521
|
-
ExecutionRoleArn: __expectString,
|
|
522
|
-
InputConfig: _json,
|
|
523
|
-
JobConfig: (_) => _json(__expectUnion(_)),
|
|
524
|
-
KmsKeyId: __expectString,
|
|
525
|
-
Name: __expectString,
|
|
526
|
-
Status: __expectString,
|
|
527
|
-
Tags: _json,
|
|
528
|
-
Type: __expectString,
|
|
529
|
-
});
|
|
530
|
-
Object.assign(contents, doc);
|
|
531
|
-
return contents;
|
|
532
|
-
};
|
|
533
|
-
export const de_StopEarthObservationJobCommand = async (output, context) => {
|
|
534
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
535
|
-
return de_CommandError(output, context);
|
|
536
|
-
}
|
|
537
|
-
const contents = map({
|
|
538
|
-
$metadata: deserializeMetadata(output),
|
|
539
|
-
});
|
|
540
|
-
await collectBody(output.body, context);
|
|
541
|
-
return contents;
|
|
542
|
-
};
|
|
543
|
-
export const de_StopVectorEnrichmentJobCommand = async (output, context) => {
|
|
544
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
545
|
-
return de_CommandError(output, context);
|
|
546
|
-
}
|
|
547
|
-
const contents = map({
|
|
548
|
-
$metadata: deserializeMetadata(output),
|
|
549
|
-
});
|
|
550
|
-
await collectBody(output.body, context);
|
|
551
|
-
return contents;
|
|
552
|
-
};
|
|
553
|
-
export const de_TagResourceCommand = async (output, context) => {
|
|
554
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
555
|
-
return de_CommandError(output, context);
|
|
556
|
-
}
|
|
557
|
-
const contents = map({
|
|
558
|
-
$metadata: deserializeMetadata(output),
|
|
559
|
-
});
|
|
560
|
-
await collectBody(output.body, context);
|
|
561
|
-
return contents;
|
|
562
|
-
};
|
|
563
|
-
export const de_UntagResourceCommand = async (output, context) => {
|
|
564
|
-
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
565
|
-
return de_CommandError(output, context);
|
|
566
|
-
}
|
|
567
|
-
const contents = map({
|
|
568
|
-
$metadata: deserializeMetadata(output),
|
|
569
|
-
});
|
|
570
|
-
await collectBody(output.body, context);
|
|
571
|
-
return contents;
|
|
572
|
-
};
|
|
573
|
-
const de_CommandError = async (output, context) => {
|
|
574
|
-
const parsedOutput = {
|
|
575
|
-
...output,
|
|
576
|
-
body: await parseErrorBody(output.body, context),
|
|
577
|
-
};
|
|
578
|
-
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
579
|
-
switch (errorCode) {
|
|
580
|
-
case "AccessDeniedException":
|
|
581
|
-
case "com.amazonaws.sagemakergeospatial#AccessDeniedException":
|
|
582
|
-
throw await de_AccessDeniedExceptionRes(parsedOutput, context);
|
|
583
|
-
case "ConflictException":
|
|
584
|
-
case "com.amazonaws.sagemakergeospatial#ConflictException":
|
|
585
|
-
throw await de_ConflictExceptionRes(parsedOutput, context);
|
|
586
|
-
case "InternalServerException":
|
|
587
|
-
case "com.amazonaws.sagemakergeospatial#InternalServerException":
|
|
588
|
-
throw await de_InternalServerExceptionRes(parsedOutput, context);
|
|
589
|
-
case "ResourceNotFoundException":
|
|
590
|
-
case "com.amazonaws.sagemakergeospatial#ResourceNotFoundException":
|
|
591
|
-
throw await de_ResourceNotFoundExceptionRes(parsedOutput, context);
|
|
592
|
-
case "ThrottlingException":
|
|
593
|
-
case "com.amazonaws.sagemakergeospatial#ThrottlingException":
|
|
594
|
-
throw await de_ThrottlingExceptionRes(parsedOutput, context);
|
|
595
|
-
case "ValidationException":
|
|
596
|
-
case "com.amazonaws.sagemakergeospatial#ValidationException":
|
|
597
|
-
throw await de_ValidationExceptionRes(parsedOutput, context);
|
|
598
|
-
case "ServiceQuotaExceededException":
|
|
599
|
-
case "com.amazonaws.sagemakergeospatial#ServiceQuotaExceededException":
|
|
600
|
-
throw await de_ServiceQuotaExceededExceptionRes(parsedOutput, context);
|
|
601
|
-
default:
|
|
602
|
-
const parsedBody = parsedOutput.body;
|
|
603
|
-
return throwDefaultError({
|
|
604
|
-
output,
|
|
605
|
-
parsedBody,
|
|
606
|
-
errorCode,
|
|
607
|
-
});
|
|
608
|
-
}
|
|
609
|
-
};
|
|
610
|
-
const throwDefaultError = withBaseException(__BaseException);
|
|
611
|
-
const de_AccessDeniedExceptionRes = async (parsedOutput, context) => {
|
|
612
|
-
const contents = map({});
|
|
613
|
-
const data = parsedOutput.body;
|
|
614
|
-
const doc = take(data, {
|
|
615
|
-
Message: __expectString,
|
|
616
|
-
});
|
|
617
|
-
Object.assign(contents, doc);
|
|
618
|
-
const exception = new AccessDeniedException({
|
|
619
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
620
|
-
...contents,
|
|
621
|
-
});
|
|
622
|
-
return __decorateServiceException(exception, parsedOutput.body);
|
|
623
|
-
};
|
|
624
|
-
const de_ConflictExceptionRes = async (parsedOutput, context) => {
|
|
625
|
-
const contents = map({});
|
|
626
|
-
const data = parsedOutput.body;
|
|
627
|
-
const doc = take(data, {
|
|
628
|
-
Message: __expectString,
|
|
629
|
-
ResourceId: __expectString,
|
|
630
|
-
});
|
|
631
|
-
Object.assign(contents, doc);
|
|
632
|
-
const exception = new ConflictException({
|
|
633
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
634
|
-
...contents,
|
|
635
|
-
});
|
|
636
|
-
return __decorateServiceException(exception, parsedOutput.body);
|
|
637
|
-
};
|
|
638
|
-
const de_InternalServerExceptionRes = async (parsedOutput, context) => {
|
|
639
|
-
const contents = map({});
|
|
640
|
-
const data = parsedOutput.body;
|
|
641
|
-
const doc = take(data, {
|
|
642
|
-
Message: __expectString,
|
|
643
|
-
ResourceId: __expectString,
|
|
644
|
-
});
|
|
645
|
-
Object.assign(contents, doc);
|
|
646
|
-
const exception = new InternalServerException({
|
|
647
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
648
|
-
...contents,
|
|
649
|
-
});
|
|
650
|
-
return __decorateServiceException(exception, parsedOutput.body);
|
|
651
|
-
};
|
|
652
|
-
const de_ResourceNotFoundExceptionRes = async (parsedOutput, context) => {
|
|
653
|
-
const contents = map({});
|
|
654
|
-
const data = parsedOutput.body;
|
|
655
|
-
const doc = take(data, {
|
|
656
|
-
Message: __expectString,
|
|
657
|
-
ResourceId: __expectString,
|
|
658
|
-
});
|
|
659
|
-
Object.assign(contents, doc);
|
|
660
|
-
const exception = new ResourceNotFoundException({
|
|
661
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
662
|
-
...contents,
|
|
663
|
-
});
|
|
664
|
-
return __decorateServiceException(exception, parsedOutput.body);
|
|
665
|
-
};
|
|
666
|
-
const de_ServiceQuotaExceededExceptionRes = async (parsedOutput, context) => {
|
|
667
|
-
const contents = map({});
|
|
668
|
-
const data = parsedOutput.body;
|
|
669
|
-
const doc = take(data, {
|
|
670
|
-
Message: __expectString,
|
|
671
|
-
ResourceId: __expectString,
|
|
672
|
-
});
|
|
673
|
-
Object.assign(contents, doc);
|
|
674
|
-
const exception = new ServiceQuotaExceededException({
|
|
675
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
676
|
-
...contents,
|
|
677
|
-
});
|
|
678
|
-
return __decorateServiceException(exception, parsedOutput.body);
|
|
679
|
-
};
|
|
680
|
-
const de_ThrottlingExceptionRes = async (parsedOutput, context) => {
|
|
681
|
-
const contents = map({});
|
|
682
|
-
const data = parsedOutput.body;
|
|
683
|
-
const doc = take(data, {
|
|
684
|
-
Message: __expectString,
|
|
685
|
-
ResourceId: __expectString,
|
|
686
|
-
});
|
|
687
|
-
Object.assign(contents, doc);
|
|
688
|
-
const exception = new ThrottlingException({
|
|
689
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
690
|
-
...contents,
|
|
691
|
-
});
|
|
692
|
-
return __decorateServiceException(exception, parsedOutput.body);
|
|
693
|
-
};
|
|
694
|
-
const de_ValidationExceptionRes = async (parsedOutput, context) => {
|
|
695
|
-
const contents = map({});
|
|
696
|
-
const data = parsedOutput.body;
|
|
697
|
-
const doc = take(data, {
|
|
698
|
-
Message: __expectString,
|
|
699
|
-
ResourceId: __expectString,
|
|
700
|
-
});
|
|
701
|
-
Object.assign(contents, doc);
|
|
702
|
-
const exception = new ValidationException({
|
|
703
|
-
$metadata: deserializeMetadata(parsedOutput),
|
|
704
|
-
...contents,
|
|
705
|
-
});
|
|
706
|
-
return __decorateServiceException(exception, parsedOutput.body);
|
|
707
|
-
};
|
|
708
|
-
const se_AreaOfInterest = (input, context) => {
|
|
709
|
-
return AreaOfInterest.visit(input, {
|
|
710
|
-
AreaOfInterestGeometry: (value) => ({ AreaOfInterestGeometry: se_AreaOfInterestGeometry(value, context) }),
|
|
711
|
-
_: (name, value) => ({ [name]: value }),
|
|
712
|
-
});
|
|
713
|
-
};
|
|
714
|
-
const se_AreaOfInterestGeometry = (input, context) => {
|
|
715
|
-
return AreaOfInterestGeometry.visit(input, {
|
|
716
|
-
MultiPolygonGeometry: (value) => ({ MultiPolygonGeometry: se_MultiPolygonGeometryInput(value, context) }),
|
|
717
|
-
PolygonGeometry: (value) => ({ PolygonGeometry: se_PolygonGeometryInput(value, context) }),
|
|
718
|
-
_: (name, value) => ({ [name]: value }),
|
|
719
|
-
});
|
|
720
|
-
};
|
|
721
|
-
const se_EoCloudCoverInput = (input, context) => {
|
|
722
|
-
return take(input, {
|
|
723
|
-
LowerBound: __serializeFloat,
|
|
724
|
-
UpperBound: __serializeFloat,
|
|
725
|
-
});
|
|
726
|
-
};
|
|
727
|
-
const se_InputConfigInput = (input, context) => {
|
|
728
|
-
return take(input, {
|
|
729
|
-
PreviousEarthObservationJobArn: [],
|
|
730
|
-
RasterDataCollectionQuery: (_) => se_RasterDataCollectionQueryInput(_, context),
|
|
731
|
-
});
|
|
732
|
-
};
|
|
733
|
-
const se_JobConfigInput = (input, context) => {
|
|
734
|
-
return JobConfigInput.visit(input, {
|
|
735
|
-
BandMathConfig: (value) => ({ BandMathConfig: _json(value) }),
|
|
736
|
-
CloudMaskingConfig: (value) => ({ CloudMaskingConfig: _json(value) }),
|
|
737
|
-
CloudRemovalConfig: (value) => ({ CloudRemovalConfig: _json(value) }),
|
|
738
|
-
GeoMosaicConfig: (value) => ({ GeoMosaicConfig: _json(value) }),
|
|
739
|
-
LandCoverSegmentationConfig: (value) => ({ LandCoverSegmentationConfig: _json(value) }),
|
|
740
|
-
ResamplingConfig: (value) => ({ ResamplingConfig: se_ResamplingConfigInput(value, context) }),
|
|
741
|
-
StackConfig: (value) => ({ StackConfig: se_StackConfigInput(value, context) }),
|
|
742
|
-
TemporalStatisticsConfig: (value) => ({ TemporalStatisticsConfig: _json(value) }),
|
|
743
|
-
ZonalStatisticsConfig: (value) => ({ ZonalStatisticsConfig: _json(value) }),
|
|
744
|
-
_: (name, value) => ({ [name]: value }),
|
|
745
|
-
});
|
|
746
|
-
};
|
|
747
|
-
const se_LandsatCloudCoverLandInput = (input, context) => {
|
|
748
|
-
return take(input, {
|
|
749
|
-
LowerBound: __serializeFloat,
|
|
750
|
-
UpperBound: __serializeFloat,
|
|
751
|
-
});
|
|
752
|
-
};
|
|
753
|
-
const se_LinearRing = (input, context) => {
|
|
754
|
-
return input
|
|
755
|
-
.filter((e) => e != null)
|
|
756
|
-
.map((entry) => {
|
|
757
|
-
return se_Position(entry, context);
|
|
758
|
-
});
|
|
759
|
-
};
|
|
760
|
-
const se_LinearRings = (input, context) => {
|
|
761
|
-
return input
|
|
762
|
-
.filter((e) => e != null)
|
|
763
|
-
.map((entry) => {
|
|
764
|
-
return se_LinearRing(entry, context);
|
|
765
|
-
});
|
|
766
|
-
};
|
|
767
|
-
const se_LinearRingsList = (input, context) => {
|
|
768
|
-
return input
|
|
769
|
-
.filter((e) => e != null)
|
|
770
|
-
.map((entry) => {
|
|
771
|
-
return se_LinearRings(entry, context);
|
|
772
|
-
});
|
|
773
|
-
};
|
|
774
|
-
const se_MultiPolygonGeometryInput = (input, context) => {
|
|
775
|
-
return take(input, {
|
|
776
|
-
Coordinates: (_) => se_LinearRingsList(_, context),
|
|
777
|
-
});
|
|
778
|
-
};
|
|
779
|
-
const se_OutputResolutionResamplingInput = (input, context) => {
|
|
780
|
-
return take(input, {
|
|
781
|
-
UserDefined: (_) => se_UserDefined(_, context),
|
|
782
|
-
});
|
|
783
|
-
};
|
|
784
|
-
const se_OutputResolutionStackInput = (input, context) => {
|
|
785
|
-
return take(input, {
|
|
786
|
-
Predefined: [],
|
|
787
|
-
UserDefined: (_) => se_UserDefined(_, context),
|
|
788
|
-
});
|
|
789
|
-
};
|
|
790
|
-
const se_PolygonGeometryInput = (input, context) => {
|
|
791
|
-
return take(input, {
|
|
792
|
-
Coordinates: (_) => se_LinearRings(_, context),
|
|
793
|
-
});
|
|
794
|
-
};
|
|
795
|
-
const se_Position = (input, context) => {
|
|
796
|
-
return input
|
|
797
|
-
.filter((e) => e != null)
|
|
798
|
-
.map((entry) => {
|
|
799
|
-
return __serializeFloat(entry);
|
|
800
|
-
});
|
|
801
|
-
};
|
|
802
|
-
const se_Property = (input, context) => {
|
|
803
|
-
return Property.visit(input, {
|
|
804
|
-
EoCloudCover: (value) => ({ EoCloudCover: se_EoCloudCoverInput(value, context) }),
|
|
805
|
-
LandsatCloudCoverLand: (value) => ({ LandsatCloudCoverLand: se_LandsatCloudCoverLandInput(value, context) }),
|
|
806
|
-
Platform: (value) => ({ Platform: _json(value) }),
|
|
807
|
-
ViewOffNadir: (value) => ({ ViewOffNadir: se_ViewOffNadirInput(value, context) }),
|
|
808
|
-
ViewSunAzimuth: (value) => ({ ViewSunAzimuth: se_ViewSunAzimuthInput(value, context) }),
|
|
809
|
-
ViewSunElevation: (value) => ({ ViewSunElevation: se_ViewSunElevationInput(value, context) }),
|
|
810
|
-
_: (name, value) => ({ [name]: value }),
|
|
811
|
-
});
|
|
812
|
-
};
|
|
813
|
-
const se_PropertyFilter = (input, context) => {
|
|
814
|
-
return take(input, {
|
|
815
|
-
Property: (_) => se_Property(_, context),
|
|
816
|
-
});
|
|
817
|
-
};
|
|
818
|
-
const se_PropertyFilters = (input, context) => {
|
|
819
|
-
return take(input, {
|
|
820
|
-
LogicalOperator: [],
|
|
821
|
-
Properties: (_) => se_PropertyFiltersList(_, context),
|
|
822
|
-
});
|
|
823
|
-
};
|
|
824
|
-
const se_PropertyFiltersList = (input, context) => {
|
|
825
|
-
return input
|
|
826
|
-
.filter((e) => e != null)
|
|
827
|
-
.map((entry) => {
|
|
828
|
-
return se_PropertyFilter(entry, context);
|
|
829
|
-
});
|
|
830
|
-
};
|
|
831
|
-
const se_RasterDataCollectionQueryInput = (input, context) => {
|
|
832
|
-
return take(input, {
|
|
833
|
-
AreaOfInterest: (_) => se_AreaOfInterest(_, context),
|
|
834
|
-
PropertyFilters: (_) => se_PropertyFilters(_, context),
|
|
835
|
-
RasterDataCollectionArn: [],
|
|
836
|
-
TimeRangeFilter: (_) => se_TimeRangeFilterInput(_, context),
|
|
837
|
-
});
|
|
838
|
-
};
|
|
839
|
-
const se_RasterDataCollectionQueryWithBandFilterInput = (input, context) => {
|
|
840
|
-
return take(input, {
|
|
841
|
-
AreaOfInterest: (_) => se_AreaOfInterest(_, context),
|
|
842
|
-
BandFilter: _json,
|
|
843
|
-
PropertyFilters: (_) => se_PropertyFilters(_, context),
|
|
844
|
-
TimeRangeFilter: (_) => se_TimeRangeFilterInput(_, context),
|
|
845
|
-
});
|
|
846
|
-
};
|
|
847
|
-
const se_ResamplingConfigInput = (input, context) => {
|
|
848
|
-
return take(input, {
|
|
849
|
-
AlgorithmName: [],
|
|
850
|
-
OutputResolution: (_) => se_OutputResolutionResamplingInput(_, context),
|
|
851
|
-
TargetBands: _json,
|
|
852
|
-
});
|
|
853
|
-
};
|
|
854
|
-
const se_StackConfigInput = (input, context) => {
|
|
855
|
-
return take(input, {
|
|
856
|
-
OutputResolution: (_) => se_OutputResolutionStackInput(_, context),
|
|
857
|
-
TargetBands: _json,
|
|
858
|
-
});
|
|
859
|
-
};
|
|
860
|
-
const se_TimeRangeFilterInput = (input, context) => {
|
|
861
|
-
return take(input, {
|
|
862
|
-
EndTime: (_) => _.getTime() / 1_000,
|
|
863
|
-
StartTime: (_) => _.getTime() / 1_000,
|
|
864
|
-
});
|
|
865
|
-
};
|
|
866
|
-
const se_UserDefined = (input, context) => {
|
|
867
|
-
return take(input, {
|
|
868
|
-
Unit: [],
|
|
869
|
-
Value: __serializeFloat,
|
|
870
|
-
});
|
|
871
|
-
};
|
|
872
|
-
const se_ViewOffNadirInput = (input, context) => {
|
|
873
|
-
return take(input, {
|
|
874
|
-
LowerBound: __serializeFloat,
|
|
875
|
-
UpperBound: __serializeFloat,
|
|
876
|
-
});
|
|
877
|
-
};
|
|
878
|
-
const se_ViewSunAzimuthInput = (input, context) => {
|
|
879
|
-
return take(input, {
|
|
880
|
-
LowerBound: __serializeFloat,
|
|
881
|
-
UpperBound: __serializeFloat,
|
|
882
|
-
});
|
|
883
|
-
};
|
|
884
|
-
const se_ViewSunElevationInput = (input, context) => {
|
|
885
|
-
return take(input, {
|
|
886
|
-
LowerBound: __serializeFloat,
|
|
887
|
-
UpperBound: __serializeFloat,
|
|
888
|
-
});
|
|
889
|
-
};
|
|
890
|
-
const de_AreaOfInterest = (output, context) => {
|
|
891
|
-
if (output.AreaOfInterestGeometry != null) {
|
|
892
|
-
return {
|
|
893
|
-
AreaOfInterestGeometry: de_AreaOfInterestGeometry(__expectUnion(output.AreaOfInterestGeometry), context),
|
|
894
|
-
};
|
|
895
|
-
}
|
|
896
|
-
return { $unknown: Object.entries(output)[0] };
|
|
897
|
-
};
|
|
898
|
-
const de_AreaOfInterestGeometry = (output, context) => {
|
|
899
|
-
if (output.MultiPolygonGeometry != null) {
|
|
900
|
-
return {
|
|
901
|
-
MultiPolygonGeometry: de_MultiPolygonGeometryInput(output.MultiPolygonGeometry, context),
|
|
902
|
-
};
|
|
903
|
-
}
|
|
904
|
-
if (output.PolygonGeometry != null) {
|
|
905
|
-
return {
|
|
906
|
-
PolygonGeometry: de_PolygonGeometryInput(output.PolygonGeometry, context),
|
|
907
|
-
};
|
|
908
|
-
}
|
|
909
|
-
return { $unknown: Object.entries(output)[0] };
|
|
910
|
-
};
|
|
911
|
-
const de_DataCollectionsList = (output, context) => {
|
|
912
|
-
const retVal = (output || [])
|
|
913
|
-
.filter((e) => e != null)
|
|
914
|
-
.map((entry) => {
|
|
915
|
-
return de_RasterDataCollectionMetadata(entry, context);
|
|
916
|
-
});
|
|
917
|
-
return retVal;
|
|
918
|
-
};
|
|
919
|
-
const de_EarthObservationJobList = (output, context) => {
|
|
920
|
-
const retVal = (output || [])
|
|
921
|
-
.filter((e) => e != null)
|
|
922
|
-
.map((entry) => {
|
|
923
|
-
return de_ListEarthObservationJobOutputConfig(entry, context);
|
|
924
|
-
});
|
|
925
|
-
return retVal;
|
|
926
|
-
};
|
|
927
|
-
const de_EoCloudCoverInput = (output, context) => {
|
|
928
|
-
return take(output, {
|
|
929
|
-
LowerBound: __limitedParseFloat32,
|
|
930
|
-
UpperBound: __limitedParseFloat32,
|
|
931
|
-
});
|
|
932
|
-
};
|
|
933
|
-
const de_Filter = (output, context) => {
|
|
934
|
-
return take(output, {
|
|
935
|
-
Maximum: __limitedParseFloat32,
|
|
936
|
-
Minimum: __limitedParseFloat32,
|
|
937
|
-
Name: __expectString,
|
|
938
|
-
Type: __expectString,
|
|
939
|
-
});
|
|
940
|
-
};
|
|
941
|
-
const de_FilterList = (output, context) => {
|
|
942
|
-
const retVal = (output || [])
|
|
943
|
-
.filter((e) => e != null)
|
|
944
|
-
.map((entry) => {
|
|
945
|
-
return de_Filter(entry, context);
|
|
946
|
-
});
|
|
947
|
-
return retVal;
|
|
948
|
-
};
|
|
949
|
-
const de_Geometry = (output, context) => {
|
|
950
|
-
return take(output, {
|
|
951
|
-
Coordinates: (_) => de_LinearRings(_, context),
|
|
952
|
-
Type: __expectString,
|
|
953
|
-
});
|
|
954
|
-
};
|
|
955
|
-
const de_InputConfigOutput = (output, context) => {
|
|
956
|
-
return take(output, {
|
|
957
|
-
PreviousEarthObservationJobArn: __expectString,
|
|
958
|
-
RasterDataCollectionQuery: (_) => de_RasterDataCollectionQueryOutput(_, context),
|
|
959
|
-
});
|
|
960
|
-
};
|
|
961
|
-
const de_ItemSource = (output, context) => {
|
|
962
|
-
return take(output, {
|
|
963
|
-
Assets: _json,
|
|
964
|
-
DateTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
|
|
965
|
-
Geometry: (_) => de_Geometry(_, context),
|
|
966
|
-
Id: __expectString,
|
|
967
|
-
Properties: (_) => de_Properties(_, context),
|
|
968
|
-
});
|
|
969
|
-
};
|
|
970
|
-
const de_ItemSourceList = (output, context) => {
|
|
971
|
-
const retVal = (output || [])
|
|
972
|
-
.filter((e) => e != null)
|
|
973
|
-
.map((entry) => {
|
|
974
|
-
return de_ItemSource(entry, context);
|
|
975
|
-
});
|
|
976
|
-
return retVal;
|
|
977
|
-
};
|
|
978
|
-
const de_JobConfigInput = (output, context) => {
|
|
979
|
-
if (output.BandMathConfig != null) {
|
|
980
|
-
return {
|
|
981
|
-
BandMathConfig: _json(output.BandMathConfig),
|
|
982
|
-
};
|
|
983
|
-
}
|
|
984
|
-
if (output.CloudMaskingConfig != null) {
|
|
985
|
-
return {
|
|
986
|
-
CloudMaskingConfig: _json(output.CloudMaskingConfig),
|
|
987
|
-
};
|
|
988
|
-
}
|
|
989
|
-
if (output.CloudRemovalConfig != null) {
|
|
990
|
-
return {
|
|
991
|
-
CloudRemovalConfig: _json(output.CloudRemovalConfig),
|
|
992
|
-
};
|
|
993
|
-
}
|
|
994
|
-
if (output.GeoMosaicConfig != null) {
|
|
995
|
-
return {
|
|
996
|
-
GeoMosaicConfig: _json(output.GeoMosaicConfig),
|
|
997
|
-
};
|
|
998
|
-
}
|
|
999
|
-
if (output.LandCoverSegmentationConfig != null) {
|
|
1000
|
-
return {
|
|
1001
|
-
LandCoverSegmentationConfig: _json(output.LandCoverSegmentationConfig),
|
|
1002
|
-
};
|
|
1003
|
-
}
|
|
1004
|
-
if (output.ResamplingConfig != null) {
|
|
1005
|
-
return {
|
|
1006
|
-
ResamplingConfig: de_ResamplingConfigInput(output.ResamplingConfig, context),
|
|
1007
|
-
};
|
|
1008
|
-
}
|
|
1009
|
-
if (output.StackConfig != null) {
|
|
1010
|
-
return {
|
|
1011
|
-
StackConfig: de_StackConfigInput(output.StackConfig, context),
|
|
1012
|
-
};
|
|
1013
|
-
}
|
|
1014
|
-
if (output.TemporalStatisticsConfig != null) {
|
|
1015
|
-
return {
|
|
1016
|
-
TemporalStatisticsConfig: _json(output.TemporalStatisticsConfig),
|
|
1017
|
-
};
|
|
1018
|
-
}
|
|
1019
|
-
if (output.ZonalStatisticsConfig != null) {
|
|
1020
|
-
return {
|
|
1021
|
-
ZonalStatisticsConfig: _json(output.ZonalStatisticsConfig),
|
|
1022
|
-
};
|
|
1023
|
-
}
|
|
1024
|
-
return { $unknown: Object.entries(output)[0] };
|
|
1025
|
-
};
|
|
1026
|
-
const de_LandsatCloudCoverLandInput = (output, context) => {
|
|
1027
|
-
return take(output, {
|
|
1028
|
-
LowerBound: __limitedParseFloat32,
|
|
1029
|
-
UpperBound: __limitedParseFloat32,
|
|
1030
|
-
});
|
|
1031
|
-
};
|
|
1032
|
-
const de_LinearRing = (output, context) => {
|
|
1033
|
-
const retVal = (output || [])
|
|
1034
|
-
.filter((e) => e != null)
|
|
1035
|
-
.map((entry) => {
|
|
1036
|
-
return de_Position(entry, context);
|
|
1037
|
-
});
|
|
1038
|
-
return retVal;
|
|
1039
|
-
};
|
|
1040
|
-
const de_LinearRings = (output, context) => {
|
|
1041
|
-
const retVal = (output || [])
|
|
1042
|
-
.filter((e) => e != null)
|
|
1043
|
-
.map((entry) => {
|
|
1044
|
-
return de_LinearRing(entry, context);
|
|
1045
|
-
});
|
|
1046
|
-
return retVal;
|
|
1047
|
-
};
|
|
1048
|
-
const de_LinearRingsList = (output, context) => {
|
|
1049
|
-
const retVal = (output || [])
|
|
1050
|
-
.filter((e) => e != null)
|
|
1051
|
-
.map((entry) => {
|
|
1052
|
-
return de_LinearRings(entry, context);
|
|
1053
|
-
});
|
|
1054
|
-
return retVal;
|
|
1055
|
-
};
|
|
1056
|
-
const de_ListEarthObservationJobOutputConfig = (output, context) => {
|
|
1057
|
-
return take(output, {
|
|
1058
|
-
Arn: __expectString,
|
|
1059
|
-
CreationTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
1060
|
-
DurationInSeconds: __expectInt32,
|
|
1061
|
-
Name: __expectString,
|
|
1062
|
-
OperationType: __expectString,
|
|
1063
|
-
Status: __expectString,
|
|
1064
|
-
Tags: _json,
|
|
1065
|
-
});
|
|
1066
|
-
};
|
|
1067
|
-
const de_ListVectorEnrichmentJobOutputConfig = (output, context) => {
|
|
1068
|
-
return take(output, {
|
|
1069
|
-
Arn: __expectString,
|
|
1070
|
-
CreationTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
1071
|
-
DurationInSeconds: __expectInt32,
|
|
1072
|
-
Name: __expectString,
|
|
1073
|
-
Status: __expectString,
|
|
1074
|
-
Tags: _json,
|
|
1075
|
-
Type: __expectString,
|
|
1076
|
-
});
|
|
1077
|
-
};
|
|
1078
|
-
const de_MultiPolygonGeometryInput = (output, context) => {
|
|
1079
|
-
return take(output, {
|
|
1080
|
-
Coordinates: (_) => de_LinearRingsList(_, context),
|
|
1081
|
-
});
|
|
1082
|
-
};
|
|
1083
|
-
const de_OutputResolutionResamplingInput = (output, context) => {
|
|
1084
|
-
return take(output, {
|
|
1085
|
-
UserDefined: (_) => de_UserDefined(_, context),
|
|
1086
|
-
});
|
|
1087
|
-
};
|
|
1088
|
-
const de_OutputResolutionStackInput = (output, context) => {
|
|
1089
|
-
return take(output, {
|
|
1090
|
-
Predefined: __expectString,
|
|
1091
|
-
UserDefined: (_) => de_UserDefined(_, context),
|
|
1092
|
-
});
|
|
1093
|
-
};
|
|
1094
|
-
const de_PolygonGeometryInput = (output, context) => {
|
|
1095
|
-
return take(output, {
|
|
1096
|
-
Coordinates: (_) => de_LinearRings(_, context),
|
|
1097
|
-
});
|
|
1098
|
-
};
|
|
1099
|
-
const de_Position = (output, context) => {
|
|
1100
|
-
const retVal = (output || [])
|
|
1101
|
-
.filter((e) => e != null)
|
|
1102
|
-
.map((entry) => {
|
|
1103
|
-
return __limitedParseDouble(entry);
|
|
1104
|
-
});
|
|
1105
|
-
return retVal;
|
|
1106
|
-
};
|
|
1107
|
-
const de_Properties = (output, context) => {
|
|
1108
|
-
return take(output, {
|
|
1109
|
-
EoCloudCover: __limitedParseFloat32,
|
|
1110
|
-
LandsatCloudCoverLand: __limitedParseFloat32,
|
|
1111
|
-
Platform: __expectString,
|
|
1112
|
-
ViewOffNadir: __limitedParseFloat32,
|
|
1113
|
-
ViewSunAzimuth: __limitedParseFloat32,
|
|
1114
|
-
ViewSunElevation: __limitedParseFloat32,
|
|
1115
|
-
});
|
|
1116
|
-
};
|
|
1117
|
-
const de_Property = (output, context) => {
|
|
1118
|
-
if (output.EoCloudCover != null) {
|
|
1119
|
-
return {
|
|
1120
|
-
EoCloudCover: de_EoCloudCoverInput(output.EoCloudCover, context),
|
|
1121
|
-
};
|
|
1122
|
-
}
|
|
1123
|
-
if (output.LandsatCloudCoverLand != null) {
|
|
1124
|
-
return {
|
|
1125
|
-
LandsatCloudCoverLand: de_LandsatCloudCoverLandInput(output.LandsatCloudCoverLand, context),
|
|
1126
|
-
};
|
|
1127
|
-
}
|
|
1128
|
-
if (output.Platform != null) {
|
|
1129
|
-
return {
|
|
1130
|
-
Platform: _json(output.Platform),
|
|
1131
|
-
};
|
|
1132
|
-
}
|
|
1133
|
-
if (output.ViewOffNadir != null) {
|
|
1134
|
-
return {
|
|
1135
|
-
ViewOffNadir: de_ViewOffNadirInput(output.ViewOffNadir, context),
|
|
1136
|
-
};
|
|
1137
|
-
}
|
|
1138
|
-
if (output.ViewSunAzimuth != null) {
|
|
1139
|
-
return {
|
|
1140
|
-
ViewSunAzimuth: de_ViewSunAzimuthInput(output.ViewSunAzimuth, context),
|
|
1141
|
-
};
|
|
1142
|
-
}
|
|
1143
|
-
if (output.ViewSunElevation != null) {
|
|
1144
|
-
return {
|
|
1145
|
-
ViewSunElevation: de_ViewSunElevationInput(output.ViewSunElevation, context),
|
|
1146
|
-
};
|
|
1147
|
-
}
|
|
1148
|
-
return { $unknown: Object.entries(output)[0] };
|
|
1149
|
-
};
|
|
1150
|
-
const de_PropertyFilter = (output, context) => {
|
|
1151
|
-
return take(output, {
|
|
1152
|
-
Property: (_) => de_Property(__expectUnion(_), context),
|
|
1153
|
-
});
|
|
1154
|
-
};
|
|
1155
|
-
const de_PropertyFilters = (output, context) => {
|
|
1156
|
-
return take(output, {
|
|
1157
|
-
LogicalOperator: __expectString,
|
|
1158
|
-
Properties: (_) => de_PropertyFiltersList(_, context),
|
|
1159
|
-
});
|
|
1160
|
-
};
|
|
1161
|
-
const de_PropertyFiltersList = (output, context) => {
|
|
1162
|
-
const retVal = (output || [])
|
|
1163
|
-
.filter((e) => e != null)
|
|
1164
|
-
.map((entry) => {
|
|
1165
|
-
return de_PropertyFilter(entry, context);
|
|
1166
|
-
});
|
|
1167
|
-
return retVal;
|
|
1168
|
-
};
|
|
1169
|
-
const de_RasterDataCollectionMetadata = (output, context) => {
|
|
1170
|
-
return take(output, {
|
|
1171
|
-
Arn: __expectString,
|
|
1172
|
-
Description: __expectString,
|
|
1173
|
-
DescriptionPageUrl: __expectString,
|
|
1174
|
-
Name: __expectString,
|
|
1175
|
-
SupportedFilters: (_) => de_FilterList(_, context),
|
|
1176
|
-
Tags: _json,
|
|
1177
|
-
Type: __expectString,
|
|
1178
|
-
});
|
|
1179
|
-
};
|
|
1180
|
-
const de_RasterDataCollectionQueryOutput = (output, context) => {
|
|
1181
|
-
return take(output, {
|
|
1182
|
-
AreaOfInterest: (_) => de_AreaOfInterest(__expectUnion(_), context),
|
|
1183
|
-
PropertyFilters: (_) => de_PropertyFilters(_, context),
|
|
1184
|
-
RasterDataCollectionArn: __expectString,
|
|
1185
|
-
RasterDataCollectionName: __expectString,
|
|
1186
|
-
TimeRangeFilter: (_) => de_TimeRangeFilterOutput(_, context),
|
|
1187
|
-
});
|
|
1188
|
-
};
|
|
1189
|
-
const de_ResamplingConfigInput = (output, context) => {
|
|
1190
|
-
return take(output, {
|
|
1191
|
-
AlgorithmName: __expectString,
|
|
1192
|
-
OutputResolution: (_) => de_OutputResolutionResamplingInput(_, context),
|
|
1193
|
-
TargetBands: _json,
|
|
1194
|
-
});
|
|
1195
|
-
};
|
|
1196
|
-
const de_StackConfigInput = (output, context) => {
|
|
1197
|
-
return take(output, {
|
|
1198
|
-
OutputResolution: (_) => de_OutputResolutionStackInput(_, context),
|
|
1199
|
-
TargetBands: _json,
|
|
1200
|
-
});
|
|
1201
|
-
};
|
|
1202
|
-
const de_TimeRangeFilterOutput = (output, context) => {
|
|
1203
|
-
return take(output, {
|
|
1204
|
-
EndTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
1205
|
-
StartTime: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
1206
|
-
});
|
|
1207
|
-
};
|
|
1208
|
-
const de_UserDefined = (output, context) => {
|
|
1209
|
-
return take(output, {
|
|
1210
|
-
Unit: __expectString,
|
|
1211
|
-
Value: __limitedParseFloat32,
|
|
1212
|
-
});
|
|
1213
|
-
};
|
|
1214
|
-
const de_VectorEnrichmentJobList = (output, context) => {
|
|
1215
|
-
const retVal = (output || [])
|
|
1216
|
-
.filter((e) => e != null)
|
|
1217
|
-
.map((entry) => {
|
|
1218
|
-
return de_ListVectorEnrichmentJobOutputConfig(entry, context);
|
|
1219
|
-
});
|
|
1220
|
-
return retVal;
|
|
1221
|
-
};
|
|
1222
|
-
const de_ViewOffNadirInput = (output, context) => {
|
|
1223
|
-
return take(output, {
|
|
1224
|
-
LowerBound: __limitedParseFloat32,
|
|
1225
|
-
UpperBound: __limitedParseFloat32,
|
|
1226
|
-
});
|
|
1227
|
-
};
|
|
1228
|
-
const de_ViewSunAzimuthInput = (output, context) => {
|
|
1229
|
-
return take(output, {
|
|
1230
|
-
LowerBound: __limitedParseFloat32,
|
|
1231
|
-
UpperBound: __limitedParseFloat32,
|
|
1232
|
-
});
|
|
1233
|
-
};
|
|
1234
|
-
const de_ViewSunElevationInput = (output, context) => {
|
|
1235
|
-
return take(output, {
|
|
1236
|
-
LowerBound: __limitedParseFloat32,
|
|
1237
|
-
UpperBound: __limitedParseFloat32,
|
|
1238
|
-
});
|
|
1239
|
-
};
|
|
1240
|
-
const deserializeMetadata = (output) => ({
|
|
1241
|
-
httpStatusCode: output.statusCode,
|
|
1242
|
-
requestId: output.headers["x-amzn-requestid"] ?? output.headers["x-amzn-request-id"] ?? output.headers["x-amz-request-id"],
|
|
1243
|
-
extendedRequestId: output.headers["x-amz-id-2"],
|
|
1244
|
-
cfId: output.headers["x-amz-cf-id"],
|
|
1245
|
-
});
|
|
1246
|
-
const collectBodyString = (streamBody, context) => collectBody(streamBody, context).then((body) => context.utf8Encoder(body));
|
|
1247
|
-
const _A = "Arn";
|
|
1248
|
-
const _ERA = "ExecutionRoleArn";
|
|
1249
|
-
const _IA = "ImageAssets";
|
|
1250
|
-
const _IM = "ImageMask";
|
|
1251
|
-
const _MR = "MaxResults";
|
|
1252
|
-
const _NT = "NextToken";
|
|
1253
|
-
const _ODT = "OutputDataType";
|
|
1254
|
-
const _OF = "OutputFormat";
|
|
1255
|
-
const _PF = "PropertyFilters";
|
|
1256
|
-
const _T = "Target";
|
|
1257
|
-
const _TK = "TagKeys";
|
|
1258
|
-
const _TRF = "TimeRangeFilter";
|
|
1259
|
-
const _tK = "tagKeys";
|