@aws-sdk/client-sagemaker-geospatial 3.987.0 → 3.988.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 +38 -1151
- package/dist-cjs/models/SageMakerGeospatialServiceException.js +12 -0
- package/dist-cjs/models/errors.js +121 -0
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-cjs/schemas/schemas_0.js +902 -0
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +49 -43
- package/dist-types/schemas/schemas_0.d.ts +14 -7
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +9 -7
- package/package.json +14 -14
package/dist-cjs/index.js
CHANGED
|
@@ -15,6 +15,9 @@ var httpAuthSchemeProvider = require('./auth/httpAuthSchemeProvider');
|
|
|
15
15
|
var runtimeConfig = require('./runtimeConfig');
|
|
16
16
|
var regionConfigResolver = require('@aws-sdk/region-config-resolver');
|
|
17
17
|
var protocolHttp = require('@smithy/protocol-http');
|
|
18
|
+
var schemas_0 = require('./schemas/schemas_0');
|
|
19
|
+
var errors = require('./models/errors');
|
|
20
|
+
var SageMakerGeospatialServiceException = require('./models/SageMakerGeospatialServiceException');
|
|
18
21
|
|
|
19
22
|
const resolveClientEndpointParameters = (options) => {
|
|
20
23
|
return Object.assign(options, {
|
|
@@ -110,1007 +113,6 @@ class SageMakerGeospatialClient extends smithyClient.Client {
|
|
|
110
113
|
}
|
|
111
114
|
}
|
|
112
115
|
|
|
113
|
-
class SageMakerGeospatialServiceException extends smithyClient.ServiceException {
|
|
114
|
-
constructor(options) {
|
|
115
|
-
super(options);
|
|
116
|
-
Object.setPrototypeOf(this, SageMakerGeospatialServiceException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
class AccessDeniedException extends SageMakerGeospatialServiceException {
|
|
121
|
-
name = "AccessDeniedException";
|
|
122
|
-
$fault = "client";
|
|
123
|
-
Message;
|
|
124
|
-
constructor(opts) {
|
|
125
|
-
super({
|
|
126
|
-
name: "AccessDeniedException",
|
|
127
|
-
$fault: "client",
|
|
128
|
-
...opts,
|
|
129
|
-
});
|
|
130
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
131
|
-
this.Message = opts.Message;
|
|
132
|
-
}
|
|
133
|
-
}
|
|
134
|
-
class ConflictException extends SageMakerGeospatialServiceException {
|
|
135
|
-
name = "ConflictException";
|
|
136
|
-
$fault = "client";
|
|
137
|
-
Message;
|
|
138
|
-
ResourceId;
|
|
139
|
-
constructor(opts) {
|
|
140
|
-
super({
|
|
141
|
-
name: "ConflictException",
|
|
142
|
-
$fault: "client",
|
|
143
|
-
...opts,
|
|
144
|
-
});
|
|
145
|
-
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
146
|
-
this.Message = opts.Message;
|
|
147
|
-
this.ResourceId = opts.ResourceId;
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
class InternalServerException extends SageMakerGeospatialServiceException {
|
|
151
|
-
name = "InternalServerException";
|
|
152
|
-
$fault = "server";
|
|
153
|
-
Message;
|
|
154
|
-
ResourceId;
|
|
155
|
-
constructor(opts) {
|
|
156
|
-
super({
|
|
157
|
-
name: "InternalServerException",
|
|
158
|
-
$fault: "server",
|
|
159
|
-
...opts,
|
|
160
|
-
});
|
|
161
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
162
|
-
this.Message = opts.Message;
|
|
163
|
-
this.ResourceId = opts.ResourceId;
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
class ResourceNotFoundException extends SageMakerGeospatialServiceException {
|
|
167
|
-
name = "ResourceNotFoundException";
|
|
168
|
-
$fault = "client";
|
|
169
|
-
Message;
|
|
170
|
-
ResourceId;
|
|
171
|
-
constructor(opts) {
|
|
172
|
-
super({
|
|
173
|
-
name: "ResourceNotFoundException",
|
|
174
|
-
$fault: "client",
|
|
175
|
-
...opts,
|
|
176
|
-
});
|
|
177
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
178
|
-
this.Message = opts.Message;
|
|
179
|
-
this.ResourceId = opts.ResourceId;
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
class ThrottlingException extends SageMakerGeospatialServiceException {
|
|
183
|
-
name = "ThrottlingException";
|
|
184
|
-
$fault = "client";
|
|
185
|
-
Message;
|
|
186
|
-
ResourceId;
|
|
187
|
-
constructor(opts) {
|
|
188
|
-
super({
|
|
189
|
-
name: "ThrottlingException",
|
|
190
|
-
$fault: "client",
|
|
191
|
-
...opts,
|
|
192
|
-
});
|
|
193
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
194
|
-
this.Message = opts.Message;
|
|
195
|
-
this.ResourceId = opts.ResourceId;
|
|
196
|
-
}
|
|
197
|
-
}
|
|
198
|
-
class ValidationException extends SageMakerGeospatialServiceException {
|
|
199
|
-
name = "ValidationException";
|
|
200
|
-
$fault = "client";
|
|
201
|
-
Message;
|
|
202
|
-
ResourceId;
|
|
203
|
-
constructor(opts) {
|
|
204
|
-
super({
|
|
205
|
-
name: "ValidationException",
|
|
206
|
-
$fault: "client",
|
|
207
|
-
...opts,
|
|
208
|
-
});
|
|
209
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
210
|
-
this.Message = opts.Message;
|
|
211
|
-
this.ResourceId = opts.ResourceId;
|
|
212
|
-
}
|
|
213
|
-
}
|
|
214
|
-
class ServiceQuotaExceededException extends SageMakerGeospatialServiceException {
|
|
215
|
-
name = "ServiceQuotaExceededException";
|
|
216
|
-
$fault = "client";
|
|
217
|
-
Message;
|
|
218
|
-
ResourceId;
|
|
219
|
-
constructor(opts) {
|
|
220
|
-
super({
|
|
221
|
-
name: "ServiceQuotaExceededException",
|
|
222
|
-
$fault: "client",
|
|
223
|
-
...opts,
|
|
224
|
-
});
|
|
225
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
226
|
-
this.Message = opts.Message;
|
|
227
|
-
this.ResourceId = opts.ResourceId;
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
const _A = "Arn";
|
|
232
|
-
const _ADE = "AccessDeniedException";
|
|
233
|
-
const _AM = "AssetsMap";
|
|
234
|
-
const _AN = "AlgorithmName";
|
|
235
|
-
const _AOI = "AreaOfInterest";
|
|
236
|
-
const _AOIG = "AreaOfInterestGeometry";
|
|
237
|
-
const _ARC = "ApproximateResultCount";
|
|
238
|
-
const _AV = "AssetValue";
|
|
239
|
-
const _As = "Assets";
|
|
240
|
-
const _BF = "BinaryFile";
|
|
241
|
-
const _BFa = "BandFilter";
|
|
242
|
-
const _BMC = "BandMathConfig";
|
|
243
|
-
const _BMCI = "BandMathConfigInput";
|
|
244
|
-
const _BN = "BandName";
|
|
245
|
-
const _C = "Coordinates";
|
|
246
|
-
const _CE = "ConflictException";
|
|
247
|
-
const _CI = "CustomIndices";
|
|
248
|
-
const _CII = "CustomIndicesInput";
|
|
249
|
-
const _CMC = "CloudMaskingConfig";
|
|
250
|
-
const _CMCI = "CloudMaskingConfigInput";
|
|
251
|
-
const _CO = "ComparisonOperator";
|
|
252
|
-
const _CRC = "CloudRemovalConfig";
|
|
253
|
-
const _CRCI = "CloudRemovalConfigInput";
|
|
254
|
-
const _CT = "ClientToken";
|
|
255
|
-
const _CTr = "CreationTime";
|
|
256
|
-
const _D = "Description";
|
|
257
|
-
const _DCL = "DataCollectionsList";
|
|
258
|
-
const _DEOJ = "DeleteEarthObservationJob";
|
|
259
|
-
const _DEOJI = "DeleteEarthObservationJobInput";
|
|
260
|
-
const _DEOJO = "DeleteEarthObservationJobOutput";
|
|
261
|
-
const _DIS = "DurationInSeconds";
|
|
262
|
-
const _DPU = "DescriptionPageUrl";
|
|
263
|
-
const _DSC = "DataSourceConfig";
|
|
264
|
-
const _DT = "DateTime";
|
|
265
|
-
const _DTo = "DocumentType";
|
|
266
|
-
const _DVEJ = "DeleteVectorEnrichmentJob";
|
|
267
|
-
const _DVEJI = "DeleteVectorEnrichmentJobInput";
|
|
268
|
-
const _DVEJO = "DeleteVectorEnrichmentJobOutput";
|
|
269
|
-
const _E = "Equation";
|
|
270
|
-
const _ECC = "EoCloudCover";
|
|
271
|
-
const _ECCI = "EoCloudCoverInput";
|
|
272
|
-
const _ED = "ErrorDetails";
|
|
273
|
-
const _EED = "ExportErrorDetails";
|
|
274
|
-
const _EEDO = "ExportErrorDetailsOutput";
|
|
275
|
-
const _EEOJ = "ExportEarthObservationJob";
|
|
276
|
-
const _EEOJI = "ExportEarthObservationJobInput";
|
|
277
|
-
const _EEOJO = "ExportEarthObservationJobOutput";
|
|
278
|
-
const _EM = "ErrorMessage";
|
|
279
|
-
const _EOJED = "EarthObservationJobErrorDetails";
|
|
280
|
-
const _EOJL = "EarthObservationJobList";
|
|
281
|
-
const _EOJOB = "EarthObservationJobOutputBands";
|
|
282
|
-
const _EOJS = "EarthObservationJobSummaries";
|
|
283
|
-
const _ER = "ExportResults";
|
|
284
|
-
const _ERA = "ExecutionRoleArn";
|
|
285
|
-
const _ES = "ExportStatus";
|
|
286
|
-
const _ESDI = "ExportS3DataInput";
|
|
287
|
-
const _ESI = "ExportSourceImages";
|
|
288
|
-
const _ET = "EndTime";
|
|
289
|
-
const _ETr = "ErrorType";
|
|
290
|
-
const _EVEJ = "ExportVectorEnrichmentJob";
|
|
291
|
-
const _EVEJI = "ExportVectorEnrichmentJobInput";
|
|
292
|
-
const _EVEJO = "ExportVectorEnrichmentJobOutput";
|
|
293
|
-
const _EVEJOC = "ExportVectorEnrichmentJobOutputConfig";
|
|
294
|
-
const _F = "Filter";
|
|
295
|
-
const _FL = "FilterList";
|
|
296
|
-
const _G = "Geometry";
|
|
297
|
-
const _GB = "GroupBy";
|
|
298
|
-
const _GEOJ = "GetEarthObservationJob";
|
|
299
|
-
const _GEOJI = "GetEarthObservationJobInput";
|
|
300
|
-
const _GEOJO = "GetEarthObservationJobOutput";
|
|
301
|
-
const _GMC = "GeoMosaicConfig";
|
|
302
|
-
const _GMCI = "GeoMosaicConfigInput";
|
|
303
|
-
const _GRDC = "GetRasterDataCollection";
|
|
304
|
-
const _GRDCI = "GetRasterDataCollectionInput";
|
|
305
|
-
const _GRDCO = "GetRasterDataCollectionOutput";
|
|
306
|
-
const _GT = "GetTile";
|
|
307
|
-
const _GTI = "GetTileInput";
|
|
308
|
-
const _GTO = "GetTileOutput";
|
|
309
|
-
const _GVEJ = "GetVectorEnrichmentJob";
|
|
310
|
-
const _GVEJI = "GetVectorEnrichmentJobInput";
|
|
311
|
-
const _GVEJO = "GetVectorEnrichmentJobOutput";
|
|
312
|
-
const _H = "Href";
|
|
313
|
-
const _I = "Id";
|
|
314
|
-
const _IA = "ImageAssets";
|
|
315
|
-
const _IAN = "IdAttributeName";
|
|
316
|
-
const _IC = "InputConfig";
|
|
317
|
-
const _ICI = "InputConfigInput";
|
|
318
|
-
const _ICO = "InputConfigOutput";
|
|
319
|
-
const _IM = "ImageMask";
|
|
320
|
-
const _IS = "ItemSource";
|
|
321
|
-
const _ISB = "ImageSourceBands";
|
|
322
|
-
const _ISE = "InternalServerException";
|
|
323
|
-
const _ISL = "ItemSourceList";
|
|
324
|
-
const _IV = "InterpolationValue";
|
|
325
|
-
const _It = "Items";
|
|
326
|
-
const _JC = "JobConfig";
|
|
327
|
-
const _JCI = "JobConfigInput";
|
|
328
|
-
const _KKI = "KmsKeyId";
|
|
329
|
-
const _LB = "LowerBound";
|
|
330
|
-
const _LCCL = "LandsatCloudCoverLand";
|
|
331
|
-
const _LCCLI = "LandsatCloudCoverLandInput";
|
|
332
|
-
const _LCSC = "LandCoverSegmentationConfig";
|
|
333
|
-
const _LCSCI = "LandCoverSegmentationConfigInput";
|
|
334
|
-
const _LEOJ = "ListEarthObservationJobs";
|
|
335
|
-
const _LEOJI = "ListEarthObservationJobInput";
|
|
336
|
-
const _LEOJO = "ListEarthObservationJobOutput";
|
|
337
|
-
const _LEOJOC = "ListEarthObservationJobOutputConfig";
|
|
338
|
-
const _LO = "LogicalOperator";
|
|
339
|
-
const _LR = "LinearRing";
|
|
340
|
-
const _LRDC = "ListRasterDataCollections";
|
|
341
|
-
const _LRDCI = "ListRasterDataCollectionsInput";
|
|
342
|
-
const _LRDCO = "ListRasterDataCollectionsOutput";
|
|
343
|
-
const _LRL = "LinearRingsList";
|
|
344
|
-
const _LRi = "LinearRings";
|
|
345
|
-
const _LTFR = "ListTagsForResource";
|
|
346
|
-
const _LTFRR = "ListTagsForResourceRequest";
|
|
347
|
-
const _LTFRRi = "ListTagsForResourceResponse";
|
|
348
|
-
const _LVEJ = "ListVectorEnrichmentJobs";
|
|
349
|
-
const _LVEJI = "ListVectorEnrichmentJobInput";
|
|
350
|
-
const _LVEJO = "ListVectorEnrichmentJobOutput";
|
|
351
|
-
const _LVEJOC = "ListVectorEnrichmentJobOutputConfig";
|
|
352
|
-
const _M = "Message";
|
|
353
|
-
const _MMC = "MapMatchingConfig";
|
|
354
|
-
const _MPG = "MultiPolygonGeometry";
|
|
355
|
-
const _MPGI = "MultiPolygonGeometryInput";
|
|
356
|
-
const _MR = "MaxResults";
|
|
357
|
-
const _Ma = "Maximum";
|
|
358
|
-
const _Mi = "Minimum";
|
|
359
|
-
const _N = "Name";
|
|
360
|
-
const _NT = "NextToken";
|
|
361
|
-
const _O = "Operations";
|
|
362
|
-
const _OB = "OutputBands";
|
|
363
|
-
const _OBu = "OutputBand";
|
|
364
|
-
const _OC = "OutputConfig";
|
|
365
|
-
const _OCI = "OutputConfigInput";
|
|
366
|
-
const _ODT = "OutputDataType";
|
|
367
|
-
const _OF = "OutputFormat";
|
|
368
|
-
const _OLI = "OperationsListInput";
|
|
369
|
-
const _OR = "OutputResolution";
|
|
370
|
-
const _ORRI = "OutputResolutionResamplingInput";
|
|
371
|
-
const _ORSI = "OutputResolutionStackInput";
|
|
372
|
-
const _OT = "OperationType";
|
|
373
|
-
const _OTu = "OutputType";
|
|
374
|
-
const _Op = "Operation";
|
|
375
|
-
const _P = "Properties";
|
|
376
|
-
const _PEOJA = "PreviousEarthObservationJobArn";
|
|
377
|
-
const _PF = "PropertyFilters";
|
|
378
|
-
const _PFL = "PropertyFiltersList";
|
|
379
|
-
const _PFr = "PropertyFilter";
|
|
380
|
-
const _PG = "PolygonGeometry";
|
|
381
|
-
const _PGI = "PolygonGeometryInput";
|
|
382
|
-
const _PI = "PredefinedIndices";
|
|
383
|
-
const _PIl = "PlatformInput";
|
|
384
|
-
const _Pl = "Platform";
|
|
385
|
-
const _Po = "Position";
|
|
386
|
-
const _Pr = "Predefined";
|
|
387
|
-
const _Pro = "Property";
|
|
388
|
-
const _RA = "ResourceArn";
|
|
389
|
-
const _RC = "ResamplingConfig";
|
|
390
|
-
const _RCI = "ResamplingConfigInput";
|
|
391
|
-
const _RDCA = "RasterDataCollectionArn";
|
|
392
|
-
const _RDCM = "RasterDataCollectionMetadata";
|
|
393
|
-
const _RDCN = "RasterDataCollectionName";
|
|
394
|
-
const _RDCQ = "RasterDataCollectionQuery";
|
|
395
|
-
const _RDCQI = "RasterDataCollectionQueryInput";
|
|
396
|
-
const _RDCQO = "RasterDataCollectionQueryOutput";
|
|
397
|
-
const _RDCQWBFI = "RasterDataCollectionQueryWithBandFilterInput";
|
|
398
|
-
const _RDCS = "RasterDataCollectionSummaries";
|
|
399
|
-
const _RGC = "ReverseGeocodingConfig";
|
|
400
|
-
const _RI = "ResourceId";
|
|
401
|
-
const _RNFE = "ResourceNotFoundException";
|
|
402
|
-
const _S = "Status";
|
|
403
|
-
const _SB = "SortBy";
|
|
404
|
-
const _SC = "StackConfig";
|
|
405
|
-
const _SCI = "StackConfigInput";
|
|
406
|
-
const _SD = "S3Data";
|
|
407
|
-
const _SE = "StatusEquals";
|
|
408
|
-
const _SEOJ = "StartEarthObservationJob";
|
|
409
|
-
const _SEOJI = "StartEarthObservationJobInput";
|
|
410
|
-
const _SEOJIt = "StopEarthObservationJobInput";
|
|
411
|
-
const _SEOJO = "StartEarthObservationJobOutput";
|
|
412
|
-
const _SEOJOt = "StopEarthObservationJobOutput";
|
|
413
|
-
const _SEOJt = "StopEarthObservationJob";
|
|
414
|
-
const _SF = "SupportedFilters";
|
|
415
|
-
const _SO = "SortOrder";
|
|
416
|
-
const _SQEE = "ServiceQuotaExceededException";
|
|
417
|
-
const _SRDC = "SearchRasterDataCollection";
|
|
418
|
-
const _SRDCI = "SearchRasterDataCollectionInput";
|
|
419
|
-
const _SRDCO = "SearchRasterDataCollectionOutput";
|
|
420
|
-
const _ST = "StartTime";
|
|
421
|
-
const _SU = "S3Uri";
|
|
422
|
-
const _SVEJ = "StartVectorEnrichmentJob";
|
|
423
|
-
const _SVEJI = "StartVectorEnrichmentJobInput";
|
|
424
|
-
const _SVEJIt = "StopVectorEnrichmentJobInput";
|
|
425
|
-
const _SVEJO = "StartVectorEnrichmentJobOutput";
|
|
426
|
-
const _SVEJOt = "StopVectorEnrichmentJobOutput";
|
|
427
|
-
const _SVEJt = "StopVectorEnrichmentJob";
|
|
428
|
-
const _St = "Statistics";
|
|
429
|
-
const _T = "Type";
|
|
430
|
-
const _TAN = "TimestampAttributeName";
|
|
431
|
-
const _TB = "TargetBands";
|
|
432
|
-
const _TE = "ThrottlingException";
|
|
433
|
-
const _TK = "TagKeys";
|
|
434
|
-
const _TR = "TagResource";
|
|
435
|
-
const _TRF = "TimeRangeFilter";
|
|
436
|
-
const _TRFI = "TimeRangeFilterInput";
|
|
437
|
-
const _TRFO = "TimeRangeFilterOutput";
|
|
438
|
-
const _TRR = "TagResourceRequest";
|
|
439
|
-
const _TRRa = "TagResourceResponse";
|
|
440
|
-
const _TSC = "TemporalStatisticsConfig";
|
|
441
|
-
const _TSCI = "TemporalStatisticsConfigInput";
|
|
442
|
-
const _Ta = "Tags";
|
|
443
|
-
const _Tar = "Target";
|
|
444
|
-
const _U = "Unit";
|
|
445
|
-
const _UB = "UpperBound";
|
|
446
|
-
const _UD = "UserDefined";
|
|
447
|
-
const _UR = "UntagResource";
|
|
448
|
-
const _URR = "UntagResourceRequest";
|
|
449
|
-
const _URRn = "UntagResourceResponse";
|
|
450
|
-
const _V = "Value";
|
|
451
|
-
const _VE = "ValidationException";
|
|
452
|
-
const _VEJC = "VectorEnrichmentJobConfig";
|
|
453
|
-
const _VEJDSCI = "VectorEnrichmentJobDataSourceConfigInput";
|
|
454
|
-
const _VEJED = "VectorEnrichmentJobErrorDetails";
|
|
455
|
-
const _VEJEED = "VectorEnrichmentJobExportErrorDetails";
|
|
456
|
-
const _VEJIC = "VectorEnrichmentJobInputConfig";
|
|
457
|
-
const _VEJL = "VectorEnrichmentJobList";
|
|
458
|
-
const _VEJS = "VectorEnrichmentJobSummaries";
|
|
459
|
-
const _VEJSD = "VectorEnrichmentJobS3Data";
|
|
460
|
-
const _VON = "ViewOffNadir";
|
|
461
|
-
const _VONI = "ViewOffNadirInput";
|
|
462
|
-
const _VSA = "ViewSunAzimuth";
|
|
463
|
-
const _VSAI = "ViewSunAzimuthInput";
|
|
464
|
-
const _VSE = "ViewSunElevation";
|
|
465
|
-
const _VSEI = "ViewSunElevationInput";
|
|
466
|
-
const _XAN = "XAttributeName";
|
|
467
|
-
const _YAN = "YAttributeName";
|
|
468
|
-
const _ZSC = "ZonalStatisticsConfig";
|
|
469
|
-
const _ZSCI = "ZonalStatisticsConfigInput";
|
|
470
|
-
const _ZSP = "ZoneS3Path";
|
|
471
|
-
const _ZSPKKI = "ZoneS3PathKmsKeyId";
|
|
472
|
-
const _ab = "application/x-binary";
|
|
473
|
-
const _c = "client";
|
|
474
|
-
const _e = "error";
|
|
475
|
-
const _h = "http";
|
|
476
|
-
const _hE = "httpError";
|
|
477
|
-
const _hQ = "httpQuery";
|
|
478
|
-
const _mT = "mediaType";
|
|
479
|
-
const _s = "streaming";
|
|
480
|
-
const _se = "server";
|
|
481
|
-
const _sm = "smithy.ts.sdk.synthetic.com.amazonaws.sagemakergeospatial";
|
|
482
|
-
const _tK = "tagKeys";
|
|
483
|
-
const _x = "x";
|
|
484
|
-
const _y = "y";
|
|
485
|
-
const _z = "z";
|
|
486
|
-
const n0 = "com.amazonaws.sagemakergeospatial";
|
|
487
|
-
var BinaryFile = [0, n0, _BF, { [_mT]: _ab, [_s]: 1 }, 42];
|
|
488
|
-
var NextToken = [0, n0, _NT, 8, 0];
|
|
489
|
-
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
490
|
-
{ [_e]: _c, [_hE]: 403 },
|
|
491
|
-
[_M],
|
|
492
|
-
[0], 1
|
|
493
|
-
];
|
|
494
|
-
schema.TypeRegistry.for(n0).registerError(AccessDeniedException$, AccessDeniedException);
|
|
495
|
-
var AssetValue$ = [3, n0, _AV,
|
|
496
|
-
0,
|
|
497
|
-
[_H],
|
|
498
|
-
[0]
|
|
499
|
-
];
|
|
500
|
-
var BandMathConfigInput$ = [3, n0, _BMCI,
|
|
501
|
-
0,
|
|
502
|
-
[_PI, _CI],
|
|
503
|
-
[64 | 0, () => CustomIndicesInput$]
|
|
504
|
-
];
|
|
505
|
-
var CloudMaskingConfigInput$ = [3, n0, _CMCI,
|
|
506
|
-
0,
|
|
507
|
-
[],
|
|
508
|
-
[]
|
|
509
|
-
];
|
|
510
|
-
var CloudRemovalConfigInput$ = [3, n0, _CRCI,
|
|
511
|
-
0,
|
|
512
|
-
[_AN, _IV, _TB],
|
|
513
|
-
[0, 0, 64 | 0]
|
|
514
|
-
];
|
|
515
|
-
var ConflictException$ = [-3, n0, _CE,
|
|
516
|
-
{ [_e]: _c, [_hE]: 409 },
|
|
517
|
-
[_M, _RI],
|
|
518
|
-
[0, 0], 1
|
|
519
|
-
];
|
|
520
|
-
schema.TypeRegistry.for(n0).registerError(ConflictException$, ConflictException);
|
|
521
|
-
var CustomIndicesInput$ = [3, n0, _CII,
|
|
522
|
-
0,
|
|
523
|
-
[_O],
|
|
524
|
-
[() => OperationsListInput]
|
|
525
|
-
];
|
|
526
|
-
var DeleteEarthObservationJobInput$ = [3, n0, _DEOJI,
|
|
527
|
-
0,
|
|
528
|
-
[_A],
|
|
529
|
-
[[0, 1]], 1
|
|
530
|
-
];
|
|
531
|
-
var DeleteEarthObservationJobOutput$ = [3, n0, _DEOJO,
|
|
532
|
-
0,
|
|
533
|
-
[],
|
|
534
|
-
[]
|
|
535
|
-
];
|
|
536
|
-
var DeleteVectorEnrichmentJobInput$ = [3, n0, _DVEJI,
|
|
537
|
-
0,
|
|
538
|
-
[_A],
|
|
539
|
-
[[0, 1]], 1
|
|
540
|
-
];
|
|
541
|
-
var DeleteVectorEnrichmentJobOutput$ = [3, n0, _DVEJO,
|
|
542
|
-
0,
|
|
543
|
-
[],
|
|
544
|
-
[]
|
|
545
|
-
];
|
|
546
|
-
var EarthObservationJobErrorDetails$ = [3, n0, _EOJED,
|
|
547
|
-
0,
|
|
548
|
-
[_T, _M],
|
|
549
|
-
[0, 0]
|
|
550
|
-
];
|
|
551
|
-
var EoCloudCoverInput$ = [3, n0, _ECCI,
|
|
552
|
-
0,
|
|
553
|
-
[_LB, _UB],
|
|
554
|
-
[1, 1], 2
|
|
555
|
-
];
|
|
556
|
-
var ExportEarthObservationJobInput$ = [3, n0, _EEOJI,
|
|
557
|
-
0,
|
|
558
|
-
[_A, _ERA, _OC, _CT, _ESI],
|
|
559
|
-
[0, 0, () => OutputConfigInput$, [0, 4], 2], 3
|
|
560
|
-
];
|
|
561
|
-
var ExportEarthObservationJobOutput$ = [3, n0, _EEOJO,
|
|
562
|
-
0,
|
|
563
|
-
[_A, _CTr, _ES, _ERA, _OC, _ESI],
|
|
564
|
-
[0, 5, 0, 0, () => OutputConfigInput$, 2], 5
|
|
565
|
-
];
|
|
566
|
-
var ExportErrorDetails$ = [3, n0, _EED,
|
|
567
|
-
0,
|
|
568
|
-
[_ER, _ESI],
|
|
569
|
-
[() => ExportErrorDetailsOutput$, () => ExportErrorDetailsOutput$]
|
|
570
|
-
];
|
|
571
|
-
var ExportErrorDetailsOutput$ = [3, n0, _EEDO,
|
|
572
|
-
0,
|
|
573
|
-
[_T, _M],
|
|
574
|
-
[0, 0]
|
|
575
|
-
];
|
|
576
|
-
var ExportS3DataInput$ = [3, n0, _ESDI,
|
|
577
|
-
0,
|
|
578
|
-
[_SU, _KKI],
|
|
579
|
-
[0, 0], 1
|
|
580
|
-
];
|
|
581
|
-
var ExportVectorEnrichmentJobInput$ = [3, n0, _EVEJI,
|
|
582
|
-
0,
|
|
583
|
-
[_A, _ERA, _OC, _CT],
|
|
584
|
-
[0, 0, () => ExportVectorEnrichmentJobOutputConfig$, [0, 4]], 3
|
|
585
|
-
];
|
|
586
|
-
var ExportVectorEnrichmentJobOutput$ = [3, n0, _EVEJO,
|
|
587
|
-
0,
|
|
588
|
-
[_A, _CTr, _ERA, _ES, _OC],
|
|
589
|
-
[0, 5, 0, 0, () => ExportVectorEnrichmentJobOutputConfig$], 5
|
|
590
|
-
];
|
|
591
|
-
var ExportVectorEnrichmentJobOutputConfig$ = [3, n0, _EVEJOC,
|
|
592
|
-
0,
|
|
593
|
-
[_SD],
|
|
594
|
-
[() => VectorEnrichmentJobS3Data$], 1
|
|
595
|
-
];
|
|
596
|
-
var Filter$ = [3, n0, _F,
|
|
597
|
-
0,
|
|
598
|
-
[_N, _T, _Mi, _Ma],
|
|
599
|
-
[0, 0, 1, 1], 2
|
|
600
|
-
];
|
|
601
|
-
var Geometry$ = [3, n0, _G,
|
|
602
|
-
0,
|
|
603
|
-
[_T, _C],
|
|
604
|
-
[0, [() => LinearRings, 0]], 2
|
|
605
|
-
];
|
|
606
|
-
var GeoMosaicConfigInput$ = [3, n0, _GMCI,
|
|
607
|
-
0,
|
|
608
|
-
[_AN, _TB],
|
|
609
|
-
[0, 64 | 0]
|
|
610
|
-
];
|
|
611
|
-
var GetEarthObservationJobInput$ = [3, n0, _GEOJI,
|
|
612
|
-
0,
|
|
613
|
-
[_A],
|
|
614
|
-
[[0, 1]], 1
|
|
615
|
-
];
|
|
616
|
-
var GetEarthObservationJobOutput$ = [3, n0, _GEOJO,
|
|
617
|
-
0,
|
|
618
|
-
[_A, _N, _CTr, _DIS, _S, _IC, _JC, _KKI, _OB, _ERA, _ED, _ES, _EED, _Ta],
|
|
619
|
-
[0, 0, 5, 1, 0, [() => InputConfigOutput$, 0], () => JobConfigInput$, 0, () => EarthObservationJobOutputBands, 0, () => EarthObservationJobErrorDetails$, 0, () => ExportErrorDetails$, 128 | 0], 7
|
|
620
|
-
];
|
|
621
|
-
var GetRasterDataCollectionInput$ = [3, n0, _GRDCI,
|
|
622
|
-
0,
|
|
623
|
-
[_A],
|
|
624
|
-
[[0, 1]], 1
|
|
625
|
-
];
|
|
626
|
-
var GetRasterDataCollectionOutput$ = [3, n0, _GRDCO,
|
|
627
|
-
0,
|
|
628
|
-
[_N, _A, _T, _D, _DPU, _SF, _ISB, _Ta],
|
|
629
|
-
[0, 0, 0, 0, 0, () => FilterList, 64 | 0, 128 | 0], 7
|
|
630
|
-
];
|
|
631
|
-
var GetTileInput$ = [3, n0, _GTI,
|
|
632
|
-
0,
|
|
633
|
-
[_x, _y, _z, _IA, _Tar, _A, _IM, _OF, _TRF, _PF, _ODT, _ERA],
|
|
634
|
-
[[1, 1], [1, 1], [1, 1], [64 | 0, { [_hQ]: _IA }], [0, { [_hQ]: _Tar }], [0, { [_hQ]: _A }], [2, { [_hQ]: _IM }], [0, { [_hQ]: _OF }], [0, { [_hQ]: _TRF }], [0, { [_hQ]: _PF }], [0, { [_hQ]: _ODT }], [0, { [_hQ]: _ERA }]], 6
|
|
635
|
-
];
|
|
636
|
-
var GetTileOutput$ = [3, n0, _GTO,
|
|
637
|
-
0,
|
|
638
|
-
[_BF],
|
|
639
|
-
[[() => BinaryFile, 16]]
|
|
640
|
-
];
|
|
641
|
-
var GetVectorEnrichmentJobInput$ = [3, n0, _GVEJI,
|
|
642
|
-
0,
|
|
643
|
-
[_A],
|
|
644
|
-
[[0, 1]], 1
|
|
645
|
-
];
|
|
646
|
-
var GetVectorEnrichmentJobOutput$ = [3, n0, _GVEJO,
|
|
647
|
-
0,
|
|
648
|
-
[_A, _T, _N, _CTr, _DIS, _S, _IC, _JC, _ERA, _KKI, _ED, _ES, _EED, _Ta],
|
|
649
|
-
[0, 0, 0, 5, 1, 0, () => VectorEnrichmentJobInputConfig$, () => VectorEnrichmentJobConfig$, 0, 0, () => VectorEnrichmentJobErrorDetails$, 0, () => VectorEnrichmentJobExportErrorDetails$, 128 | 0], 9
|
|
650
|
-
];
|
|
651
|
-
var InputConfigInput$ = [3, n0, _ICI,
|
|
652
|
-
0,
|
|
653
|
-
[_PEOJA, _RDCQ],
|
|
654
|
-
[0, [() => RasterDataCollectionQueryInput$, 0]]
|
|
655
|
-
];
|
|
656
|
-
var InputConfigOutput$ = [3, n0, _ICO,
|
|
657
|
-
0,
|
|
658
|
-
[_PEOJA, _RDCQ],
|
|
659
|
-
[0, [() => RasterDataCollectionQueryOutput$, 0]]
|
|
660
|
-
];
|
|
661
|
-
var InternalServerException$ = [-3, n0, _ISE,
|
|
662
|
-
{ [_e]: _se, [_hE]: 500 },
|
|
663
|
-
[_M, _RI],
|
|
664
|
-
[0, 0], 1
|
|
665
|
-
];
|
|
666
|
-
schema.TypeRegistry.for(n0).registerError(InternalServerException$, InternalServerException);
|
|
667
|
-
var ItemSource$ = [3, n0, _IS,
|
|
668
|
-
0,
|
|
669
|
-
[_I, _G, _DT, _As, _P],
|
|
670
|
-
[0, [() => Geometry$, 0], 4, () => AssetsMap, () => Properties$], 3
|
|
671
|
-
];
|
|
672
|
-
var LandCoverSegmentationConfigInput$ = [3, n0, _LCSCI,
|
|
673
|
-
0,
|
|
674
|
-
[],
|
|
675
|
-
[]
|
|
676
|
-
];
|
|
677
|
-
var LandsatCloudCoverLandInput$ = [3, n0, _LCCLI,
|
|
678
|
-
0,
|
|
679
|
-
[_LB, _UB],
|
|
680
|
-
[1, 1], 2
|
|
681
|
-
];
|
|
682
|
-
var ListEarthObservationJobInput$ = [3, n0, _LEOJI,
|
|
683
|
-
0,
|
|
684
|
-
[_SE, _SO, _SB, _NT, _MR],
|
|
685
|
-
[0, 0, 0, [() => NextToken, 0], 1]
|
|
686
|
-
];
|
|
687
|
-
var ListEarthObservationJobOutput$ = [3, n0, _LEOJO,
|
|
688
|
-
0,
|
|
689
|
-
[_EOJS, _NT],
|
|
690
|
-
[() => EarthObservationJobList, [() => NextToken, 0]], 1
|
|
691
|
-
];
|
|
692
|
-
var ListEarthObservationJobOutputConfig$ = [3, n0, _LEOJOC,
|
|
693
|
-
0,
|
|
694
|
-
[_A, _N, _CTr, _DIS, _S, _OT, _Ta],
|
|
695
|
-
[0, 0, 5, 1, 0, 0, 128 | 0], 6
|
|
696
|
-
];
|
|
697
|
-
var ListRasterDataCollectionsInput$ = [3, n0, _LRDCI,
|
|
698
|
-
0,
|
|
699
|
-
[_NT, _MR],
|
|
700
|
-
[[() => NextToken, { [_hQ]: _NT }], [1, { [_hQ]: _MR }]]
|
|
701
|
-
];
|
|
702
|
-
var ListRasterDataCollectionsOutput$ = [3, n0, _LRDCO,
|
|
703
|
-
0,
|
|
704
|
-
[_RDCS, _NT],
|
|
705
|
-
[() => DataCollectionsList, [() => NextToken, 0]], 1
|
|
706
|
-
];
|
|
707
|
-
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
708
|
-
0,
|
|
709
|
-
[_RA],
|
|
710
|
-
[[0, 1]], 1
|
|
711
|
-
];
|
|
712
|
-
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
713
|
-
0,
|
|
714
|
-
[_Ta],
|
|
715
|
-
[128 | 0]
|
|
716
|
-
];
|
|
717
|
-
var ListVectorEnrichmentJobInput$ = [3, n0, _LVEJI,
|
|
718
|
-
0,
|
|
719
|
-
[_SE, _SO, _SB, _NT, _MR],
|
|
720
|
-
[0, 0, 0, [() => NextToken, 0], 1]
|
|
721
|
-
];
|
|
722
|
-
var ListVectorEnrichmentJobOutput$ = [3, n0, _LVEJO,
|
|
723
|
-
0,
|
|
724
|
-
[_VEJS, _NT],
|
|
725
|
-
[() => VectorEnrichmentJobList, [() => NextToken, 0]], 1
|
|
726
|
-
];
|
|
727
|
-
var ListVectorEnrichmentJobOutputConfig$ = [3, n0, _LVEJOC,
|
|
728
|
-
0,
|
|
729
|
-
[_A, _N, _T, _CTr, _DIS, _S, _Ta],
|
|
730
|
-
[0, 0, 0, 5, 1, 0, 128 | 0], 6
|
|
731
|
-
];
|
|
732
|
-
var MapMatchingConfig$ = [3, n0, _MMC,
|
|
733
|
-
0,
|
|
734
|
-
[_IAN, _YAN, _XAN, _TAN],
|
|
735
|
-
[0, 0, 0, 0], 4
|
|
736
|
-
];
|
|
737
|
-
var MultiPolygonGeometryInput$ = [3, n0, _MPGI,
|
|
738
|
-
0,
|
|
739
|
-
[_C],
|
|
740
|
-
[[() => LinearRingsList, 0]], 1
|
|
741
|
-
];
|
|
742
|
-
var Operation$ = [3, n0, _Op,
|
|
743
|
-
0,
|
|
744
|
-
[_N, _E, _OTu],
|
|
745
|
-
[0, 0, 0], 2
|
|
746
|
-
];
|
|
747
|
-
var OutputBand$ = [3, n0, _OBu,
|
|
748
|
-
0,
|
|
749
|
-
[_BN, _ODT],
|
|
750
|
-
[0, 0], 2
|
|
751
|
-
];
|
|
752
|
-
var OutputConfigInput$ = [3, n0, _OCI,
|
|
753
|
-
0,
|
|
754
|
-
[_SD],
|
|
755
|
-
[() => ExportS3DataInput$], 1
|
|
756
|
-
];
|
|
757
|
-
var OutputResolutionResamplingInput$ = [3, n0, _ORRI,
|
|
758
|
-
0,
|
|
759
|
-
[_UD],
|
|
760
|
-
[() => UserDefined$], 1
|
|
761
|
-
];
|
|
762
|
-
var OutputResolutionStackInput$ = [3, n0, _ORSI,
|
|
763
|
-
0,
|
|
764
|
-
[_Pr, _UD],
|
|
765
|
-
[0, () => UserDefined$]
|
|
766
|
-
];
|
|
767
|
-
var PlatformInput$ = [3, n0, _PIl,
|
|
768
|
-
0,
|
|
769
|
-
[_V, _CO],
|
|
770
|
-
[0, 0], 1
|
|
771
|
-
];
|
|
772
|
-
var PolygonGeometryInput$ = [3, n0, _PGI,
|
|
773
|
-
0,
|
|
774
|
-
[_C],
|
|
775
|
-
[[() => LinearRings, 0]], 1
|
|
776
|
-
];
|
|
777
|
-
var Properties$ = [3, n0, _P,
|
|
778
|
-
0,
|
|
779
|
-
[_ECC, _VON, _VSA, _VSE, _Pl, _LCCL],
|
|
780
|
-
[1, 1, 1, 1, 0, 1]
|
|
781
|
-
];
|
|
782
|
-
var PropertyFilter$ = [3, n0, _PFr,
|
|
783
|
-
0,
|
|
784
|
-
[_Pro],
|
|
785
|
-
[() => Property$], 1
|
|
786
|
-
];
|
|
787
|
-
var PropertyFilters$ = [3, n0, _PF,
|
|
788
|
-
0,
|
|
789
|
-
[_P, _LO],
|
|
790
|
-
[() => PropertyFiltersList, 0]
|
|
791
|
-
];
|
|
792
|
-
var RasterDataCollectionMetadata$ = [3, n0, _RDCM,
|
|
793
|
-
0,
|
|
794
|
-
[_N, _A, _T, _D, _SF, _DPU, _Ta],
|
|
795
|
-
[0, 0, 0, 0, () => FilterList, 0, 128 | 0], 5
|
|
796
|
-
];
|
|
797
|
-
var RasterDataCollectionQueryInput$ = [3, n0, _RDCQI,
|
|
798
|
-
0,
|
|
799
|
-
[_RDCA, _TRF, _AOI, _PF],
|
|
800
|
-
[0, [() => TimeRangeFilterInput$, 0], [() => AreaOfInterest$, 0], () => PropertyFilters$], 2
|
|
801
|
-
];
|
|
802
|
-
var RasterDataCollectionQueryOutput$ = [3, n0, _RDCQO,
|
|
803
|
-
0,
|
|
804
|
-
[_RDCA, _RDCN, _TRF, _AOI, _PF],
|
|
805
|
-
[0, 0, [() => TimeRangeFilterOutput$, 0], [() => AreaOfInterest$, 0], () => PropertyFilters$], 3
|
|
806
|
-
];
|
|
807
|
-
var RasterDataCollectionQueryWithBandFilterInput$ = [3, n0, _RDCQWBFI,
|
|
808
|
-
0,
|
|
809
|
-
[_TRF, _AOI, _PF, _BFa],
|
|
810
|
-
[[() => TimeRangeFilterInput$, 0], [() => AreaOfInterest$, 0], () => PropertyFilters$, 64 | 0], 1
|
|
811
|
-
];
|
|
812
|
-
var ResamplingConfigInput$ = [3, n0, _RCI,
|
|
813
|
-
0,
|
|
814
|
-
[_OR, _AN, _TB],
|
|
815
|
-
[() => OutputResolutionResamplingInput$, 0, 64 | 0], 1
|
|
816
|
-
];
|
|
817
|
-
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
818
|
-
{ [_e]: _c, [_hE]: 404 },
|
|
819
|
-
[_M, _RI],
|
|
820
|
-
[0, 0], 1
|
|
821
|
-
];
|
|
822
|
-
schema.TypeRegistry.for(n0).registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
823
|
-
var ReverseGeocodingConfig$ = [3, n0, _RGC,
|
|
824
|
-
0,
|
|
825
|
-
[_YAN, _XAN],
|
|
826
|
-
[0, 0], 2
|
|
827
|
-
];
|
|
828
|
-
var SearchRasterDataCollectionInput$ = [3, n0, _SRDCI,
|
|
829
|
-
0,
|
|
830
|
-
[_A, _RDCQ, _NT],
|
|
831
|
-
[0, [() => RasterDataCollectionQueryWithBandFilterInput$, 0], [() => NextToken, 0]], 2
|
|
832
|
-
];
|
|
833
|
-
var SearchRasterDataCollectionOutput$ = [3, n0, _SRDCO,
|
|
834
|
-
0,
|
|
835
|
-
[_ARC, _NT, _It],
|
|
836
|
-
[1, [() => NextToken, 0], [() => ItemSourceList, 0]], 1
|
|
837
|
-
];
|
|
838
|
-
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
839
|
-
{ [_e]: _c, [_hE]: 402 },
|
|
840
|
-
[_M, _RI],
|
|
841
|
-
[0, 0], 1
|
|
842
|
-
];
|
|
843
|
-
schema.TypeRegistry.for(n0).registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
844
|
-
var StackConfigInput$ = [3, n0, _SCI,
|
|
845
|
-
0,
|
|
846
|
-
[_OR, _TB],
|
|
847
|
-
[() => OutputResolutionStackInput$, 64 | 0]
|
|
848
|
-
];
|
|
849
|
-
var StartEarthObservationJobInput$ = [3, n0, _SEOJI,
|
|
850
|
-
0,
|
|
851
|
-
[_N, _IC, _JC, _ERA, _CT, _KKI, _Ta],
|
|
852
|
-
[0, [() => InputConfigInput$, 0], () => JobConfigInput$, 0, [0, 4], 0, 128 | 0], 4
|
|
853
|
-
];
|
|
854
|
-
var StartEarthObservationJobOutput$ = [3, n0, _SEOJO,
|
|
855
|
-
0,
|
|
856
|
-
[_N, _A, _CTr, _DIS, _S, _JC, _ERA, _KKI, _IC, _Ta],
|
|
857
|
-
[0, 0, 5, 1, 0, () => JobConfigInput$, 0, 0, [() => InputConfigOutput$, 0], 128 | 0], 7
|
|
858
|
-
];
|
|
859
|
-
var StartVectorEnrichmentJobInput$ = [3, n0, _SVEJI,
|
|
860
|
-
0,
|
|
861
|
-
[_N, _IC, _JC, _ERA, _CT, _KKI, _Ta],
|
|
862
|
-
[0, () => VectorEnrichmentJobInputConfig$, () => VectorEnrichmentJobConfig$, 0, [0, 4], 0, 128 | 0], 4
|
|
863
|
-
];
|
|
864
|
-
var StartVectorEnrichmentJobOutput$ = [3, n0, _SVEJO,
|
|
865
|
-
0,
|
|
866
|
-
[_N, _A, _T, _CTr, _DIS, _S, _IC, _JC, _ERA, _KKI, _Ta],
|
|
867
|
-
[0, 0, 0, 5, 1, 0, () => VectorEnrichmentJobInputConfig$, () => VectorEnrichmentJobConfig$, 0, 0, 128 | 0], 9
|
|
868
|
-
];
|
|
869
|
-
var StopEarthObservationJobInput$ = [3, n0, _SEOJIt,
|
|
870
|
-
0,
|
|
871
|
-
[_A],
|
|
872
|
-
[0], 1
|
|
873
|
-
];
|
|
874
|
-
var StopEarthObservationJobOutput$ = [3, n0, _SEOJOt,
|
|
875
|
-
0,
|
|
876
|
-
[],
|
|
877
|
-
[]
|
|
878
|
-
];
|
|
879
|
-
var StopVectorEnrichmentJobInput$ = [3, n0, _SVEJIt,
|
|
880
|
-
0,
|
|
881
|
-
[_A],
|
|
882
|
-
[0], 1
|
|
883
|
-
];
|
|
884
|
-
var StopVectorEnrichmentJobOutput$ = [3, n0, _SVEJOt,
|
|
885
|
-
0,
|
|
886
|
-
[],
|
|
887
|
-
[]
|
|
888
|
-
];
|
|
889
|
-
var TagResourceRequest$ = [3, n0, _TRR,
|
|
890
|
-
0,
|
|
891
|
-
[_RA, _Ta],
|
|
892
|
-
[[0, 1], 128 | 0], 2
|
|
893
|
-
];
|
|
894
|
-
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
895
|
-
0,
|
|
896
|
-
[],
|
|
897
|
-
[]
|
|
898
|
-
];
|
|
899
|
-
var TemporalStatisticsConfigInput$ = [3, n0, _TSCI,
|
|
900
|
-
0,
|
|
901
|
-
[_St, _GB, _TB],
|
|
902
|
-
[64 | 0, 0, 64 | 0], 1
|
|
903
|
-
];
|
|
904
|
-
var ThrottlingException$ = [-3, n0, _TE,
|
|
905
|
-
{ [_e]: _c, [_hE]: 429 },
|
|
906
|
-
[_M, _RI],
|
|
907
|
-
[0, 0], 1
|
|
908
|
-
];
|
|
909
|
-
schema.TypeRegistry.for(n0).registerError(ThrottlingException$, ThrottlingException);
|
|
910
|
-
var TimeRangeFilterInput$ = [3, n0, _TRFI,
|
|
911
|
-
8,
|
|
912
|
-
[_ST, _ET],
|
|
913
|
-
[4, 4], 2
|
|
914
|
-
];
|
|
915
|
-
var TimeRangeFilterOutput$ = [3, n0, _TRFO,
|
|
916
|
-
8,
|
|
917
|
-
[_ST, _ET],
|
|
918
|
-
[5, 5], 2
|
|
919
|
-
];
|
|
920
|
-
var UntagResourceRequest$ = [3, n0, _URR,
|
|
921
|
-
0,
|
|
922
|
-
[_RA, _TK],
|
|
923
|
-
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
924
|
-
];
|
|
925
|
-
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
926
|
-
0,
|
|
927
|
-
[],
|
|
928
|
-
[]
|
|
929
|
-
];
|
|
930
|
-
var UserDefined$ = [3, n0, _UD,
|
|
931
|
-
0,
|
|
932
|
-
[_V, _U],
|
|
933
|
-
[1, 0], 2
|
|
934
|
-
];
|
|
935
|
-
var ValidationException$ = [-3, n0, _VE,
|
|
936
|
-
{ [_e]: _c, [_hE]: 400 },
|
|
937
|
-
[_M, _RI],
|
|
938
|
-
[0, 0], 1
|
|
939
|
-
];
|
|
940
|
-
schema.TypeRegistry.for(n0).registerError(ValidationException$, ValidationException);
|
|
941
|
-
var VectorEnrichmentJobErrorDetails$ = [3, n0, _VEJED,
|
|
942
|
-
0,
|
|
943
|
-
[_ETr, _EM],
|
|
944
|
-
[0, 0]
|
|
945
|
-
];
|
|
946
|
-
var VectorEnrichmentJobExportErrorDetails$ = [3, n0, _VEJEED,
|
|
947
|
-
0,
|
|
948
|
-
[_T, _M],
|
|
949
|
-
[0, 0]
|
|
950
|
-
];
|
|
951
|
-
var VectorEnrichmentJobInputConfig$ = [3, n0, _VEJIC,
|
|
952
|
-
0,
|
|
953
|
-
[_DTo, _DSC],
|
|
954
|
-
[0, () => VectorEnrichmentJobDataSourceConfigInput$], 2
|
|
955
|
-
];
|
|
956
|
-
var VectorEnrichmentJobS3Data$ = [3, n0, _VEJSD,
|
|
957
|
-
0,
|
|
958
|
-
[_SU, _KKI],
|
|
959
|
-
[0, 0], 1
|
|
960
|
-
];
|
|
961
|
-
var ViewOffNadirInput$ = [3, n0, _VONI,
|
|
962
|
-
0,
|
|
963
|
-
[_LB, _UB],
|
|
964
|
-
[1, 1], 2
|
|
965
|
-
];
|
|
966
|
-
var ViewSunAzimuthInput$ = [3, n0, _VSAI,
|
|
967
|
-
0,
|
|
968
|
-
[_LB, _UB],
|
|
969
|
-
[1, 1], 2
|
|
970
|
-
];
|
|
971
|
-
var ViewSunElevationInput$ = [3, n0, _VSEI,
|
|
972
|
-
0,
|
|
973
|
-
[_LB, _UB],
|
|
974
|
-
[1, 1], 2
|
|
975
|
-
];
|
|
976
|
-
var ZonalStatisticsConfigInput$ = [3, n0, _ZSCI,
|
|
977
|
-
0,
|
|
978
|
-
[_ZSP, _St, _TB, _ZSPKKI],
|
|
979
|
-
[0, 64 | 0, 64 | 0, 0], 2
|
|
980
|
-
];
|
|
981
|
-
var SageMakerGeospatialServiceException$ = [-3, _sm, "SageMakerGeospatialServiceException", 0, [], []];
|
|
982
|
-
schema.TypeRegistry.for(_sm).registerError(SageMakerGeospatialServiceException$, SageMakerGeospatialServiceException);
|
|
983
|
-
var DataCollectionsList = [1, n0, _DCL,
|
|
984
|
-
0, () => RasterDataCollectionMetadata$
|
|
985
|
-
];
|
|
986
|
-
var EarthObservationJobList = [1, n0, _EOJL,
|
|
987
|
-
0, () => ListEarthObservationJobOutputConfig$
|
|
988
|
-
];
|
|
989
|
-
var EarthObservationJobOutputBands = [1, n0, _EOJOB,
|
|
990
|
-
0, () => OutputBand$
|
|
991
|
-
];
|
|
992
|
-
var FilterList = [1, n0, _FL,
|
|
993
|
-
0, () => Filter$
|
|
994
|
-
];
|
|
995
|
-
var ItemSourceList = [1, n0, _ISL,
|
|
996
|
-
0, [() => ItemSource$,
|
|
997
|
-
0]
|
|
998
|
-
];
|
|
999
|
-
var LinearRing = [1, n0, _LR,
|
|
1000
|
-
0, [() => Position,
|
|
1001
|
-
0]
|
|
1002
|
-
];
|
|
1003
|
-
var LinearRings = [1, n0, _LRi,
|
|
1004
|
-
0, [() => LinearRing,
|
|
1005
|
-
0]
|
|
1006
|
-
];
|
|
1007
|
-
var LinearRingsList = [1, n0, _LRL,
|
|
1008
|
-
0, [() => LinearRings,
|
|
1009
|
-
0]
|
|
1010
|
-
];
|
|
1011
|
-
var OperationsListInput = [1, n0, _OLI,
|
|
1012
|
-
0, () => Operation$
|
|
1013
|
-
];
|
|
1014
|
-
var Position = [1, n0, _Po,
|
|
1015
|
-
8, 1
|
|
1016
|
-
];
|
|
1017
|
-
var PropertyFiltersList = [1, n0, _PFL,
|
|
1018
|
-
0, () => PropertyFilter$
|
|
1019
|
-
];
|
|
1020
|
-
var VectorEnrichmentJobList = [1, n0, _VEJL,
|
|
1021
|
-
0, () => ListVectorEnrichmentJobOutputConfig$
|
|
1022
|
-
];
|
|
1023
|
-
var AssetsMap = [2, n0, _AM,
|
|
1024
|
-
0, 0, () => AssetValue$
|
|
1025
|
-
];
|
|
1026
|
-
var AreaOfInterest$ = [4, n0, _AOI,
|
|
1027
|
-
0,
|
|
1028
|
-
[_AOIG],
|
|
1029
|
-
[[() => AreaOfInterestGeometry$, 0]]
|
|
1030
|
-
];
|
|
1031
|
-
var AreaOfInterestGeometry$ = [4, n0, _AOIG,
|
|
1032
|
-
0,
|
|
1033
|
-
[_PG, _MPG],
|
|
1034
|
-
[[() => PolygonGeometryInput$, 0], [() => MultiPolygonGeometryInput$, 0]]
|
|
1035
|
-
];
|
|
1036
|
-
var JobConfigInput$ = [4, n0, _JCI,
|
|
1037
|
-
0,
|
|
1038
|
-
[_BMC, _RC, _TSC, _CRC, _ZSC, _GMC, _SC, _CMC, _LCSC],
|
|
1039
|
-
[() => BandMathConfigInput$, () => ResamplingConfigInput$, () => TemporalStatisticsConfigInput$, () => CloudRemovalConfigInput$, () => ZonalStatisticsConfigInput$, () => GeoMosaicConfigInput$, () => StackConfigInput$, () => CloudMaskingConfigInput$, () => LandCoverSegmentationConfigInput$]
|
|
1040
|
-
];
|
|
1041
|
-
var Property$ = [4, n0, _Pro,
|
|
1042
|
-
0,
|
|
1043
|
-
[_ECC, _VON, _VSA, _VSE, _Pl, _LCCL],
|
|
1044
|
-
[() => EoCloudCoverInput$, () => ViewOffNadirInput$, () => ViewSunAzimuthInput$, () => ViewSunElevationInput$, () => PlatformInput$, () => LandsatCloudCoverLandInput$]
|
|
1045
|
-
];
|
|
1046
|
-
var VectorEnrichmentJobConfig$ = [4, n0, _VEJC,
|
|
1047
|
-
0,
|
|
1048
|
-
[_RGC, _MMC],
|
|
1049
|
-
[() => ReverseGeocodingConfig$, () => MapMatchingConfig$]
|
|
1050
|
-
];
|
|
1051
|
-
var VectorEnrichmentJobDataSourceConfigInput$ = [4, n0, _VEJDSCI,
|
|
1052
|
-
0,
|
|
1053
|
-
[_SD],
|
|
1054
|
-
[() => VectorEnrichmentJobS3Data$]
|
|
1055
|
-
];
|
|
1056
|
-
var DeleteEarthObservationJob$ = [9, n0, _DEOJ,
|
|
1057
|
-
{ [_h]: ["DELETE", "/earth-observation-jobs/{Arn}", 200] }, () => DeleteEarthObservationJobInput$, () => DeleteEarthObservationJobOutput$
|
|
1058
|
-
];
|
|
1059
|
-
var DeleteVectorEnrichmentJob$ = [9, n0, _DVEJ,
|
|
1060
|
-
{ [_h]: ["DELETE", "/vector-enrichment-jobs/{Arn}", 200] }, () => DeleteVectorEnrichmentJobInput$, () => DeleteVectorEnrichmentJobOutput$
|
|
1061
|
-
];
|
|
1062
|
-
var ExportEarthObservationJob$ = [9, n0, _EEOJ,
|
|
1063
|
-
{ [_h]: ["POST", "/export-earth-observation-job", 200] }, () => ExportEarthObservationJobInput$, () => ExportEarthObservationJobOutput$
|
|
1064
|
-
];
|
|
1065
|
-
var ExportVectorEnrichmentJob$ = [9, n0, _EVEJ,
|
|
1066
|
-
{ [_h]: ["POST", "/export-vector-enrichment-jobs", 200] }, () => ExportVectorEnrichmentJobInput$, () => ExportVectorEnrichmentJobOutput$
|
|
1067
|
-
];
|
|
1068
|
-
var GetEarthObservationJob$ = [9, n0, _GEOJ,
|
|
1069
|
-
{ [_h]: ["GET", "/earth-observation-jobs/{Arn}", 200] }, () => GetEarthObservationJobInput$, () => GetEarthObservationJobOutput$
|
|
1070
|
-
];
|
|
1071
|
-
var GetRasterDataCollection$ = [9, n0, _GRDC,
|
|
1072
|
-
{ [_h]: ["GET", "/raster-data-collection/{Arn}", 200] }, () => GetRasterDataCollectionInput$, () => GetRasterDataCollectionOutput$
|
|
1073
|
-
];
|
|
1074
|
-
var GetTile$ = [9, n0, _GT,
|
|
1075
|
-
{ [_h]: ["GET", "/tile/{z}/{x}/{y}", 200] }, () => GetTileInput$, () => GetTileOutput$
|
|
1076
|
-
];
|
|
1077
|
-
var GetVectorEnrichmentJob$ = [9, n0, _GVEJ,
|
|
1078
|
-
{ [_h]: ["GET", "/vector-enrichment-jobs/{Arn}", 200] }, () => GetVectorEnrichmentJobInput$, () => GetVectorEnrichmentJobOutput$
|
|
1079
|
-
];
|
|
1080
|
-
var ListEarthObservationJobs$ = [9, n0, _LEOJ,
|
|
1081
|
-
{ [_h]: ["POST", "/list-earth-observation-jobs", 200] }, () => ListEarthObservationJobInput$, () => ListEarthObservationJobOutput$
|
|
1082
|
-
];
|
|
1083
|
-
var ListRasterDataCollections$ = [9, n0, _LRDC,
|
|
1084
|
-
{ [_h]: ["GET", "/raster-data-collections", 200] }, () => ListRasterDataCollectionsInput$, () => ListRasterDataCollectionsOutput$
|
|
1085
|
-
];
|
|
1086
|
-
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1087
|
-
{ [_h]: ["GET", "/tags/{ResourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1088
|
-
];
|
|
1089
|
-
var ListVectorEnrichmentJobs$ = [9, n0, _LVEJ,
|
|
1090
|
-
{ [_h]: ["POST", "/list-vector-enrichment-jobs", 200] }, () => ListVectorEnrichmentJobInput$, () => ListVectorEnrichmentJobOutput$
|
|
1091
|
-
];
|
|
1092
|
-
var SearchRasterDataCollection$ = [9, n0, _SRDC,
|
|
1093
|
-
{ [_h]: ["POST", "/search-raster-data-collection", 200] }, () => SearchRasterDataCollectionInput$, () => SearchRasterDataCollectionOutput$
|
|
1094
|
-
];
|
|
1095
|
-
var StartEarthObservationJob$ = [9, n0, _SEOJ,
|
|
1096
|
-
{ [_h]: ["POST", "/earth-observation-jobs", 200] }, () => StartEarthObservationJobInput$, () => StartEarthObservationJobOutput$
|
|
1097
|
-
];
|
|
1098
|
-
var StartVectorEnrichmentJob$ = [9, n0, _SVEJ,
|
|
1099
|
-
{ [_h]: ["POST", "/vector-enrichment-jobs", 200] }, () => StartVectorEnrichmentJobInput$, () => StartVectorEnrichmentJobOutput$
|
|
1100
|
-
];
|
|
1101
|
-
var StopEarthObservationJob$ = [9, n0, _SEOJt,
|
|
1102
|
-
{ [_h]: ["POST", "/earth-observation-jobs/stop", 200] }, () => StopEarthObservationJobInput$, () => StopEarthObservationJobOutput$
|
|
1103
|
-
];
|
|
1104
|
-
var StopVectorEnrichmentJob$ = [9, n0, _SVEJt,
|
|
1105
|
-
{ [_h]: ["POST", "/vector-enrichment-jobs/stop", 200] }, () => StopVectorEnrichmentJobInput$, () => StopVectorEnrichmentJobOutput$
|
|
1106
|
-
];
|
|
1107
|
-
var TagResource$ = [9, n0, _TR,
|
|
1108
|
-
{ [_h]: ["PUT", "/tags/{ResourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1109
|
-
];
|
|
1110
|
-
var UntagResource$ = [9, n0, _UR,
|
|
1111
|
-
{ [_h]: ["DELETE", "/tags/{ResourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1112
|
-
];
|
|
1113
|
-
|
|
1114
116
|
class DeleteEarthObservationJobCommand extends smithyClient.Command
|
|
1115
117
|
.classBuilder()
|
|
1116
118
|
.ep(commonParams)
|
|
@@ -1119,7 +121,7 @@ class DeleteEarthObservationJobCommand extends smithyClient.Command
|
|
|
1119
121
|
})
|
|
1120
122
|
.s("SageMakerGeospatial", "DeleteEarthObservationJob", {})
|
|
1121
123
|
.n("SageMakerGeospatialClient", "DeleteEarthObservationJobCommand")
|
|
1122
|
-
.sc(DeleteEarthObservationJob$)
|
|
124
|
+
.sc(schemas_0.DeleteEarthObservationJob$)
|
|
1123
125
|
.build() {
|
|
1124
126
|
}
|
|
1125
127
|
|
|
@@ -1131,7 +133,7 @@ class DeleteVectorEnrichmentJobCommand extends smithyClient.Command
|
|
|
1131
133
|
})
|
|
1132
134
|
.s("SageMakerGeospatial", "DeleteVectorEnrichmentJob", {})
|
|
1133
135
|
.n("SageMakerGeospatialClient", "DeleteVectorEnrichmentJobCommand")
|
|
1134
|
-
.sc(DeleteVectorEnrichmentJob$)
|
|
136
|
+
.sc(schemas_0.DeleteVectorEnrichmentJob$)
|
|
1135
137
|
.build() {
|
|
1136
138
|
}
|
|
1137
139
|
|
|
@@ -1143,7 +145,7 @@ class ExportEarthObservationJobCommand extends smithyClient.Command
|
|
|
1143
145
|
})
|
|
1144
146
|
.s("SageMakerGeospatial", "ExportEarthObservationJob", {})
|
|
1145
147
|
.n("SageMakerGeospatialClient", "ExportEarthObservationJobCommand")
|
|
1146
|
-
.sc(ExportEarthObservationJob$)
|
|
148
|
+
.sc(schemas_0.ExportEarthObservationJob$)
|
|
1147
149
|
.build() {
|
|
1148
150
|
}
|
|
1149
151
|
|
|
@@ -1155,7 +157,7 @@ class ExportVectorEnrichmentJobCommand extends smithyClient.Command
|
|
|
1155
157
|
})
|
|
1156
158
|
.s("SageMakerGeospatial", "ExportVectorEnrichmentJob", {})
|
|
1157
159
|
.n("SageMakerGeospatialClient", "ExportVectorEnrichmentJobCommand")
|
|
1158
|
-
.sc(ExportVectorEnrichmentJob$)
|
|
160
|
+
.sc(schemas_0.ExportVectorEnrichmentJob$)
|
|
1159
161
|
.build() {
|
|
1160
162
|
}
|
|
1161
163
|
|
|
@@ -1167,7 +169,7 @@ class GetEarthObservationJobCommand extends smithyClient.Command
|
|
|
1167
169
|
})
|
|
1168
170
|
.s("SageMakerGeospatial", "GetEarthObservationJob", {})
|
|
1169
171
|
.n("SageMakerGeospatialClient", "GetEarthObservationJobCommand")
|
|
1170
|
-
.sc(GetEarthObservationJob$)
|
|
172
|
+
.sc(schemas_0.GetEarthObservationJob$)
|
|
1171
173
|
.build() {
|
|
1172
174
|
}
|
|
1173
175
|
|
|
@@ -1179,7 +181,7 @@ class GetRasterDataCollectionCommand extends smithyClient.Command
|
|
|
1179
181
|
})
|
|
1180
182
|
.s("SageMakerGeospatial", "GetRasterDataCollection", {})
|
|
1181
183
|
.n("SageMakerGeospatialClient", "GetRasterDataCollectionCommand")
|
|
1182
|
-
.sc(GetRasterDataCollection$)
|
|
184
|
+
.sc(schemas_0.GetRasterDataCollection$)
|
|
1183
185
|
.build() {
|
|
1184
186
|
}
|
|
1185
187
|
|
|
@@ -1191,7 +193,7 @@ class GetTileCommand extends smithyClient.Command
|
|
|
1191
193
|
})
|
|
1192
194
|
.s("SageMakerGeospatial", "GetTile", {})
|
|
1193
195
|
.n("SageMakerGeospatialClient", "GetTileCommand")
|
|
1194
|
-
.sc(GetTile$)
|
|
196
|
+
.sc(schemas_0.GetTile$)
|
|
1195
197
|
.build() {
|
|
1196
198
|
}
|
|
1197
199
|
|
|
@@ -1203,7 +205,7 @@ class GetVectorEnrichmentJobCommand extends smithyClient.Command
|
|
|
1203
205
|
})
|
|
1204
206
|
.s("SageMakerGeospatial", "GetVectorEnrichmentJob", {})
|
|
1205
207
|
.n("SageMakerGeospatialClient", "GetVectorEnrichmentJobCommand")
|
|
1206
|
-
.sc(GetVectorEnrichmentJob$)
|
|
208
|
+
.sc(schemas_0.GetVectorEnrichmentJob$)
|
|
1207
209
|
.build() {
|
|
1208
210
|
}
|
|
1209
211
|
|
|
@@ -1215,7 +217,7 @@ class ListEarthObservationJobsCommand extends smithyClient.Command
|
|
|
1215
217
|
})
|
|
1216
218
|
.s("SageMakerGeospatial", "ListEarthObservationJobs", {})
|
|
1217
219
|
.n("SageMakerGeospatialClient", "ListEarthObservationJobsCommand")
|
|
1218
|
-
.sc(ListEarthObservationJobs$)
|
|
220
|
+
.sc(schemas_0.ListEarthObservationJobs$)
|
|
1219
221
|
.build() {
|
|
1220
222
|
}
|
|
1221
223
|
|
|
@@ -1227,7 +229,7 @@ class ListRasterDataCollectionsCommand extends smithyClient.Command
|
|
|
1227
229
|
})
|
|
1228
230
|
.s("SageMakerGeospatial", "ListRasterDataCollections", {})
|
|
1229
231
|
.n("SageMakerGeospatialClient", "ListRasterDataCollectionsCommand")
|
|
1230
|
-
.sc(ListRasterDataCollections$)
|
|
232
|
+
.sc(schemas_0.ListRasterDataCollections$)
|
|
1231
233
|
.build() {
|
|
1232
234
|
}
|
|
1233
235
|
|
|
@@ -1239,7 +241,7 @@ class ListTagsForResourceCommand extends smithyClient.Command
|
|
|
1239
241
|
})
|
|
1240
242
|
.s("SageMakerGeospatial", "ListTagsForResource", {})
|
|
1241
243
|
.n("SageMakerGeospatialClient", "ListTagsForResourceCommand")
|
|
1242
|
-
.sc(ListTagsForResource$)
|
|
244
|
+
.sc(schemas_0.ListTagsForResource$)
|
|
1243
245
|
.build() {
|
|
1244
246
|
}
|
|
1245
247
|
|
|
@@ -1251,7 +253,7 @@ class ListVectorEnrichmentJobsCommand extends smithyClient.Command
|
|
|
1251
253
|
})
|
|
1252
254
|
.s("SageMakerGeospatial", "ListVectorEnrichmentJobs", {})
|
|
1253
255
|
.n("SageMakerGeospatialClient", "ListVectorEnrichmentJobsCommand")
|
|
1254
|
-
.sc(ListVectorEnrichmentJobs$)
|
|
256
|
+
.sc(schemas_0.ListVectorEnrichmentJobs$)
|
|
1255
257
|
.build() {
|
|
1256
258
|
}
|
|
1257
259
|
|
|
@@ -1263,7 +265,7 @@ class SearchRasterDataCollectionCommand extends smithyClient.Command
|
|
|
1263
265
|
})
|
|
1264
266
|
.s("SageMakerGeospatial", "SearchRasterDataCollection", {})
|
|
1265
267
|
.n("SageMakerGeospatialClient", "SearchRasterDataCollectionCommand")
|
|
1266
|
-
.sc(SearchRasterDataCollection$)
|
|
268
|
+
.sc(schemas_0.SearchRasterDataCollection$)
|
|
1267
269
|
.build() {
|
|
1268
270
|
}
|
|
1269
271
|
|
|
@@ -1275,7 +277,7 @@ class StartEarthObservationJobCommand extends smithyClient.Command
|
|
|
1275
277
|
})
|
|
1276
278
|
.s("SageMakerGeospatial", "StartEarthObservationJob", {})
|
|
1277
279
|
.n("SageMakerGeospatialClient", "StartEarthObservationJobCommand")
|
|
1278
|
-
.sc(StartEarthObservationJob$)
|
|
280
|
+
.sc(schemas_0.StartEarthObservationJob$)
|
|
1279
281
|
.build() {
|
|
1280
282
|
}
|
|
1281
283
|
|
|
@@ -1287,7 +289,7 @@ class StartVectorEnrichmentJobCommand extends smithyClient.Command
|
|
|
1287
289
|
})
|
|
1288
290
|
.s("SageMakerGeospatial", "StartVectorEnrichmentJob", {})
|
|
1289
291
|
.n("SageMakerGeospatialClient", "StartVectorEnrichmentJobCommand")
|
|
1290
|
-
.sc(StartVectorEnrichmentJob$)
|
|
292
|
+
.sc(schemas_0.StartVectorEnrichmentJob$)
|
|
1291
293
|
.build() {
|
|
1292
294
|
}
|
|
1293
295
|
|
|
@@ -1299,7 +301,7 @@ class StopEarthObservationJobCommand extends smithyClient.Command
|
|
|
1299
301
|
})
|
|
1300
302
|
.s("SageMakerGeospatial", "StopEarthObservationJob", {})
|
|
1301
303
|
.n("SageMakerGeospatialClient", "StopEarthObservationJobCommand")
|
|
1302
|
-
.sc(StopEarthObservationJob$)
|
|
304
|
+
.sc(schemas_0.StopEarthObservationJob$)
|
|
1303
305
|
.build() {
|
|
1304
306
|
}
|
|
1305
307
|
|
|
@@ -1311,7 +313,7 @@ class StopVectorEnrichmentJobCommand extends smithyClient.Command
|
|
|
1311
313
|
})
|
|
1312
314
|
.s("SageMakerGeospatial", "StopVectorEnrichmentJob", {})
|
|
1313
315
|
.n("SageMakerGeospatialClient", "StopVectorEnrichmentJobCommand")
|
|
1314
|
-
.sc(StopVectorEnrichmentJob$)
|
|
316
|
+
.sc(schemas_0.StopVectorEnrichmentJob$)
|
|
1315
317
|
.build() {
|
|
1316
318
|
}
|
|
1317
319
|
|
|
@@ -1323,7 +325,7 @@ class TagResourceCommand extends smithyClient.Command
|
|
|
1323
325
|
})
|
|
1324
326
|
.s("SageMakerGeospatial", "TagResource", {})
|
|
1325
327
|
.n("SageMakerGeospatialClient", "TagResourceCommand")
|
|
1326
|
-
.sc(TagResource$)
|
|
328
|
+
.sc(schemas_0.TagResource$)
|
|
1327
329
|
.build() {
|
|
1328
330
|
}
|
|
1329
331
|
|
|
@@ -1335,7 +337,7 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
1335
337
|
})
|
|
1336
338
|
.s("SageMakerGeospatial", "UntagResource", {})
|
|
1337
339
|
.n("SageMakerGeospatialClient", "UntagResourceCommand")
|
|
1338
|
-
.sc(UntagResource$)
|
|
340
|
+
.sc(schemas_0.UntagResource$)
|
|
1339
341
|
.build() {
|
|
1340
342
|
}
|
|
1341
343
|
|
|
@@ -1528,183 +530,68 @@ Object.defineProperty(exports, "__Client", {
|
|
|
1528
530
|
enumerable: true,
|
|
1529
531
|
get: function () { return smithyClient.Client; }
|
|
1530
532
|
});
|
|
1531
|
-
exports
|
|
1532
|
-
|
|
533
|
+
Object.defineProperty(exports, "SageMakerGeospatialServiceException", {
|
|
534
|
+
enumerable: true,
|
|
535
|
+
get: function () { return SageMakerGeospatialServiceException.SageMakerGeospatialServiceException; }
|
|
536
|
+
});
|
|
1533
537
|
exports.AlgorithmNameCloudRemoval = AlgorithmNameCloudRemoval;
|
|
1534
538
|
exports.AlgorithmNameGeoMosaic = AlgorithmNameGeoMosaic;
|
|
1535
539
|
exports.AlgorithmNameResampling = AlgorithmNameResampling;
|
|
1536
|
-
exports.AreaOfInterest$ = AreaOfInterest$;
|
|
1537
|
-
exports.AreaOfInterestGeometry$ = AreaOfInterestGeometry$;
|
|
1538
|
-
exports.AssetValue$ = AssetValue$;
|
|
1539
|
-
exports.BandMathConfigInput$ = BandMathConfigInput$;
|
|
1540
|
-
exports.CloudMaskingConfigInput$ = CloudMaskingConfigInput$;
|
|
1541
|
-
exports.CloudRemovalConfigInput$ = CloudRemovalConfigInput$;
|
|
1542
540
|
exports.ComparisonOperator = ComparisonOperator;
|
|
1543
|
-
exports.ConflictException = ConflictException;
|
|
1544
|
-
exports.ConflictException$ = ConflictException$;
|
|
1545
|
-
exports.CustomIndicesInput$ = CustomIndicesInput$;
|
|
1546
541
|
exports.DataCollectionType = DataCollectionType;
|
|
1547
|
-
exports.DeleteEarthObservationJob$ = DeleteEarthObservationJob$;
|
|
1548
542
|
exports.DeleteEarthObservationJobCommand = DeleteEarthObservationJobCommand;
|
|
1549
|
-
exports.DeleteEarthObservationJobInput$ = DeleteEarthObservationJobInput$;
|
|
1550
|
-
exports.DeleteEarthObservationJobOutput$ = DeleteEarthObservationJobOutput$;
|
|
1551
|
-
exports.DeleteVectorEnrichmentJob$ = DeleteVectorEnrichmentJob$;
|
|
1552
543
|
exports.DeleteVectorEnrichmentJobCommand = DeleteVectorEnrichmentJobCommand;
|
|
1553
|
-
exports.DeleteVectorEnrichmentJobInput$ = DeleteVectorEnrichmentJobInput$;
|
|
1554
|
-
exports.DeleteVectorEnrichmentJobOutput$ = DeleteVectorEnrichmentJobOutput$;
|
|
1555
|
-
exports.EarthObservationJobErrorDetails$ = EarthObservationJobErrorDetails$;
|
|
1556
544
|
exports.EarthObservationJobErrorType = EarthObservationJobErrorType;
|
|
1557
545
|
exports.EarthObservationJobExportStatus = EarthObservationJobExportStatus;
|
|
1558
546
|
exports.EarthObservationJobStatus = EarthObservationJobStatus;
|
|
1559
|
-
exports.EoCloudCoverInput$ = EoCloudCoverInput$;
|
|
1560
|
-
exports.ExportEarthObservationJob$ = ExportEarthObservationJob$;
|
|
1561
547
|
exports.ExportEarthObservationJobCommand = ExportEarthObservationJobCommand;
|
|
1562
|
-
exports.ExportEarthObservationJobInput$ = ExportEarthObservationJobInput$;
|
|
1563
|
-
exports.ExportEarthObservationJobOutput$ = ExportEarthObservationJobOutput$;
|
|
1564
|
-
exports.ExportErrorDetails$ = ExportErrorDetails$;
|
|
1565
|
-
exports.ExportErrorDetailsOutput$ = ExportErrorDetailsOutput$;
|
|
1566
548
|
exports.ExportErrorType = ExportErrorType;
|
|
1567
|
-
exports.ExportS3DataInput$ = ExportS3DataInput$;
|
|
1568
|
-
exports.ExportVectorEnrichmentJob$ = ExportVectorEnrichmentJob$;
|
|
1569
549
|
exports.ExportVectorEnrichmentJobCommand = ExportVectorEnrichmentJobCommand;
|
|
1570
|
-
exports.ExportVectorEnrichmentJobInput$ = ExportVectorEnrichmentJobInput$;
|
|
1571
|
-
exports.ExportVectorEnrichmentJobOutput$ = ExportVectorEnrichmentJobOutput$;
|
|
1572
|
-
exports.ExportVectorEnrichmentJobOutputConfig$ = ExportVectorEnrichmentJobOutputConfig$;
|
|
1573
|
-
exports.Filter$ = Filter$;
|
|
1574
|
-
exports.GeoMosaicConfigInput$ = GeoMosaicConfigInput$;
|
|
1575
|
-
exports.Geometry$ = Geometry$;
|
|
1576
|
-
exports.GetEarthObservationJob$ = GetEarthObservationJob$;
|
|
1577
550
|
exports.GetEarthObservationJobCommand = GetEarthObservationJobCommand;
|
|
1578
|
-
exports.GetEarthObservationJobInput$ = GetEarthObservationJobInput$;
|
|
1579
|
-
exports.GetEarthObservationJobOutput$ = GetEarthObservationJobOutput$;
|
|
1580
|
-
exports.GetRasterDataCollection$ = GetRasterDataCollection$;
|
|
1581
551
|
exports.GetRasterDataCollectionCommand = GetRasterDataCollectionCommand;
|
|
1582
|
-
exports.GetRasterDataCollectionInput$ = GetRasterDataCollectionInput$;
|
|
1583
|
-
exports.GetRasterDataCollectionOutput$ = GetRasterDataCollectionOutput$;
|
|
1584
|
-
exports.GetTile$ = GetTile$;
|
|
1585
552
|
exports.GetTileCommand = GetTileCommand;
|
|
1586
|
-
exports.GetTileInput$ = GetTileInput$;
|
|
1587
|
-
exports.GetTileOutput$ = GetTileOutput$;
|
|
1588
|
-
exports.GetVectorEnrichmentJob$ = GetVectorEnrichmentJob$;
|
|
1589
553
|
exports.GetVectorEnrichmentJobCommand = GetVectorEnrichmentJobCommand;
|
|
1590
|
-
exports.GetVectorEnrichmentJobInput$ = GetVectorEnrichmentJobInput$;
|
|
1591
|
-
exports.GetVectorEnrichmentJobOutput$ = GetVectorEnrichmentJobOutput$;
|
|
1592
554
|
exports.GroupBy = GroupBy;
|
|
1593
|
-
exports.InputConfigInput$ = InputConfigInput$;
|
|
1594
|
-
exports.InputConfigOutput$ = InputConfigOutput$;
|
|
1595
|
-
exports.InternalServerException = InternalServerException;
|
|
1596
|
-
exports.InternalServerException$ = InternalServerException$;
|
|
1597
|
-
exports.ItemSource$ = ItemSource$;
|
|
1598
|
-
exports.JobConfigInput$ = JobConfigInput$;
|
|
1599
|
-
exports.LandCoverSegmentationConfigInput$ = LandCoverSegmentationConfigInput$;
|
|
1600
|
-
exports.LandsatCloudCoverLandInput$ = LandsatCloudCoverLandInput$;
|
|
1601
|
-
exports.ListEarthObservationJobInput$ = ListEarthObservationJobInput$;
|
|
1602
|
-
exports.ListEarthObservationJobOutput$ = ListEarthObservationJobOutput$;
|
|
1603
|
-
exports.ListEarthObservationJobOutputConfig$ = ListEarthObservationJobOutputConfig$;
|
|
1604
|
-
exports.ListEarthObservationJobs$ = ListEarthObservationJobs$;
|
|
1605
555
|
exports.ListEarthObservationJobsCommand = ListEarthObservationJobsCommand;
|
|
1606
|
-
exports.ListRasterDataCollections$ = ListRasterDataCollections$;
|
|
1607
556
|
exports.ListRasterDataCollectionsCommand = ListRasterDataCollectionsCommand;
|
|
1608
|
-
exports.ListRasterDataCollectionsInput$ = ListRasterDataCollectionsInput$;
|
|
1609
|
-
exports.ListRasterDataCollectionsOutput$ = ListRasterDataCollectionsOutput$;
|
|
1610
|
-
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1611
557
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
1612
|
-
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
1613
|
-
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
1614
|
-
exports.ListVectorEnrichmentJobInput$ = ListVectorEnrichmentJobInput$;
|
|
1615
|
-
exports.ListVectorEnrichmentJobOutput$ = ListVectorEnrichmentJobOutput$;
|
|
1616
|
-
exports.ListVectorEnrichmentJobOutputConfig$ = ListVectorEnrichmentJobOutputConfig$;
|
|
1617
|
-
exports.ListVectorEnrichmentJobs$ = ListVectorEnrichmentJobs$;
|
|
1618
558
|
exports.ListVectorEnrichmentJobsCommand = ListVectorEnrichmentJobsCommand;
|
|
1619
559
|
exports.LogicalOperator = LogicalOperator;
|
|
1620
|
-
exports.MapMatchingConfig$ = MapMatchingConfig$;
|
|
1621
|
-
exports.MultiPolygonGeometryInput$ = MultiPolygonGeometryInput$;
|
|
1622
|
-
exports.Operation$ = Operation$;
|
|
1623
|
-
exports.OutputBand$ = OutputBand$;
|
|
1624
|
-
exports.OutputConfigInput$ = OutputConfigInput$;
|
|
1625
|
-
exports.OutputResolutionResamplingInput$ = OutputResolutionResamplingInput$;
|
|
1626
|
-
exports.OutputResolutionStackInput$ = OutputResolutionStackInput$;
|
|
1627
560
|
exports.OutputType = OutputType;
|
|
1628
|
-
exports.PlatformInput$ = PlatformInput$;
|
|
1629
|
-
exports.PolygonGeometryInput$ = PolygonGeometryInput$;
|
|
1630
561
|
exports.PredefinedResolution = PredefinedResolution;
|
|
1631
|
-
exports.Properties$ = Properties$;
|
|
1632
|
-
exports.Property$ = Property$;
|
|
1633
|
-
exports.PropertyFilter$ = PropertyFilter$;
|
|
1634
|
-
exports.PropertyFilters$ = PropertyFilters$;
|
|
1635
|
-
exports.RasterDataCollectionMetadata$ = RasterDataCollectionMetadata$;
|
|
1636
|
-
exports.RasterDataCollectionQueryInput$ = RasterDataCollectionQueryInput$;
|
|
1637
|
-
exports.RasterDataCollectionQueryOutput$ = RasterDataCollectionQueryOutput$;
|
|
1638
|
-
exports.RasterDataCollectionQueryWithBandFilterInput$ = RasterDataCollectionQueryWithBandFilterInput$;
|
|
1639
|
-
exports.ResamplingConfigInput$ = ResamplingConfigInput$;
|
|
1640
|
-
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
1641
|
-
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
1642
|
-
exports.ReverseGeocodingConfig$ = ReverseGeocodingConfig$;
|
|
1643
562
|
exports.SageMakerGeospatial = SageMakerGeospatial;
|
|
1644
563
|
exports.SageMakerGeospatialClient = SageMakerGeospatialClient;
|
|
1645
|
-
exports.SageMakerGeospatialServiceException = SageMakerGeospatialServiceException;
|
|
1646
|
-
exports.SageMakerGeospatialServiceException$ = SageMakerGeospatialServiceException$;
|
|
1647
|
-
exports.SearchRasterDataCollection$ = SearchRasterDataCollection$;
|
|
1648
564
|
exports.SearchRasterDataCollectionCommand = SearchRasterDataCollectionCommand;
|
|
1649
|
-
exports.SearchRasterDataCollectionInput$ = SearchRasterDataCollectionInput$;
|
|
1650
|
-
exports.SearchRasterDataCollectionOutput$ = SearchRasterDataCollectionOutput$;
|
|
1651
|
-
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
1652
|
-
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
1653
565
|
exports.SortOrder = SortOrder;
|
|
1654
|
-
exports.StackConfigInput$ = StackConfigInput$;
|
|
1655
|
-
exports.StartEarthObservationJob$ = StartEarthObservationJob$;
|
|
1656
566
|
exports.StartEarthObservationJobCommand = StartEarthObservationJobCommand;
|
|
1657
|
-
exports.StartEarthObservationJobInput$ = StartEarthObservationJobInput$;
|
|
1658
|
-
exports.StartEarthObservationJobOutput$ = StartEarthObservationJobOutput$;
|
|
1659
|
-
exports.StartVectorEnrichmentJob$ = StartVectorEnrichmentJob$;
|
|
1660
567
|
exports.StartVectorEnrichmentJobCommand = StartVectorEnrichmentJobCommand;
|
|
1661
|
-
exports.StartVectorEnrichmentJobInput$ = StartVectorEnrichmentJobInput$;
|
|
1662
|
-
exports.StartVectorEnrichmentJobOutput$ = StartVectorEnrichmentJobOutput$;
|
|
1663
|
-
exports.StopEarthObservationJob$ = StopEarthObservationJob$;
|
|
1664
568
|
exports.StopEarthObservationJobCommand = StopEarthObservationJobCommand;
|
|
1665
|
-
exports.StopEarthObservationJobInput$ = StopEarthObservationJobInput$;
|
|
1666
|
-
exports.StopEarthObservationJobOutput$ = StopEarthObservationJobOutput$;
|
|
1667
|
-
exports.StopVectorEnrichmentJob$ = StopVectorEnrichmentJob$;
|
|
1668
569
|
exports.StopVectorEnrichmentJobCommand = StopVectorEnrichmentJobCommand;
|
|
1669
|
-
exports.StopVectorEnrichmentJobInput$ = StopVectorEnrichmentJobInput$;
|
|
1670
|
-
exports.StopVectorEnrichmentJobOutput$ = StopVectorEnrichmentJobOutput$;
|
|
1671
|
-
exports.TagResource$ = TagResource$;
|
|
1672
570
|
exports.TagResourceCommand = TagResourceCommand;
|
|
1673
|
-
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
1674
|
-
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
1675
571
|
exports.TargetOptions = TargetOptions;
|
|
1676
572
|
exports.TemporalStatistics = TemporalStatistics;
|
|
1677
|
-
exports.TemporalStatisticsConfigInput$ = TemporalStatisticsConfigInput$;
|
|
1678
|
-
exports.ThrottlingException = ThrottlingException;
|
|
1679
|
-
exports.ThrottlingException$ = ThrottlingException$;
|
|
1680
|
-
exports.TimeRangeFilterInput$ = TimeRangeFilterInput$;
|
|
1681
|
-
exports.TimeRangeFilterOutput$ = TimeRangeFilterOutput$;
|
|
1682
573
|
exports.Unit = Unit;
|
|
1683
|
-
exports.UntagResource$ = UntagResource$;
|
|
1684
574
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
1685
|
-
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
1686
|
-
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
1687
|
-
exports.UserDefined$ = UserDefined$;
|
|
1688
|
-
exports.ValidationException = ValidationException;
|
|
1689
|
-
exports.ValidationException$ = ValidationException$;
|
|
1690
|
-
exports.VectorEnrichmentJobConfig$ = VectorEnrichmentJobConfig$;
|
|
1691
|
-
exports.VectorEnrichmentJobDataSourceConfigInput$ = VectorEnrichmentJobDataSourceConfigInput$;
|
|
1692
575
|
exports.VectorEnrichmentJobDocumentType = VectorEnrichmentJobDocumentType;
|
|
1693
|
-
exports.VectorEnrichmentJobErrorDetails$ = VectorEnrichmentJobErrorDetails$;
|
|
1694
576
|
exports.VectorEnrichmentJobErrorType = VectorEnrichmentJobErrorType;
|
|
1695
|
-
exports.VectorEnrichmentJobExportErrorDetails$ = VectorEnrichmentJobExportErrorDetails$;
|
|
1696
577
|
exports.VectorEnrichmentJobExportErrorType = VectorEnrichmentJobExportErrorType;
|
|
1697
578
|
exports.VectorEnrichmentJobExportStatus = VectorEnrichmentJobExportStatus;
|
|
1698
|
-
exports.VectorEnrichmentJobInputConfig$ = VectorEnrichmentJobInputConfig$;
|
|
1699
|
-
exports.VectorEnrichmentJobS3Data$ = VectorEnrichmentJobS3Data$;
|
|
1700
579
|
exports.VectorEnrichmentJobStatus = VectorEnrichmentJobStatus;
|
|
1701
580
|
exports.VectorEnrichmentJobType = VectorEnrichmentJobType;
|
|
1702
|
-
exports.ViewOffNadirInput$ = ViewOffNadirInput$;
|
|
1703
|
-
exports.ViewSunAzimuthInput$ = ViewSunAzimuthInput$;
|
|
1704
|
-
exports.ViewSunElevationInput$ = ViewSunElevationInput$;
|
|
1705
581
|
exports.ZonalStatistics = ZonalStatistics;
|
|
1706
|
-
exports.ZonalStatisticsConfigInput$ = ZonalStatisticsConfigInput$;
|
|
1707
582
|
exports.paginateListEarthObservationJobs = paginateListEarthObservationJobs;
|
|
1708
583
|
exports.paginateListRasterDataCollections = paginateListRasterDataCollections;
|
|
1709
584
|
exports.paginateListVectorEnrichmentJobs = paginateListVectorEnrichmentJobs;
|
|
1710
585
|
exports.paginateSearchRasterDataCollection = paginateSearchRasterDataCollection;
|
|
586
|
+
Object.keys(schemas_0).forEach(function (k) {
|
|
587
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
588
|
+
enumerable: true,
|
|
589
|
+
get: function () { return schemas_0[k]; }
|
|
590
|
+
});
|
|
591
|
+
});
|
|
592
|
+
Object.keys(errors).forEach(function (k) {
|
|
593
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
594
|
+
enumerable: true,
|
|
595
|
+
get: function () { return errors[k]; }
|
|
596
|
+
});
|
|
597
|
+
});
|