@aws-sdk/client-sagemaker-geospatial 3.721.0 → 3.723.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 +172 -102
- package/dist-es/SageMakerGeospatialClient.js +1 -0
- package/dist-es/models/models_0.js +27 -14
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +44 -44
package/dist-cjs/index.js
CHANGED
|
@@ -209,7 +209,14 @@ var resolveRuntimeExtensions = /* @__PURE__ */ __name((runtimeConfig, extensions
|
|
|
209
209
|
}, "resolveRuntimeExtensions");
|
|
210
210
|
|
|
211
211
|
// src/SageMakerGeospatialClient.ts
|
|
212
|
-
var
|
|
212
|
+
var SageMakerGeospatialClient = class extends import_smithy_client.Client {
|
|
213
|
+
static {
|
|
214
|
+
__name(this, "SageMakerGeospatialClient");
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* The resolved configuration of SageMakerGeospatialClient class. This is resolved and normalized from the {@link SageMakerGeospatialClientConfig | constructor configuration interface}.
|
|
218
|
+
*/
|
|
219
|
+
config;
|
|
213
220
|
constructor(...[configuration]) {
|
|
214
221
|
const _config_0 = (0, import_runtimeConfig.getRuntimeConfig)(configuration || {});
|
|
215
222
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -219,7 +226,7 @@ var _SageMakerGeospatialClient = class _SageMakerGeospatialClient extends import
|
|
|
219
226
|
const _config_5 = (0, import_middleware_host_header.resolveHostHeaderConfig)(_config_4);
|
|
220
227
|
const _config_6 = (0, import_middleware_endpoint.resolveEndpointConfig)(_config_5);
|
|
221
228
|
const _config_7 = (0, import_httpAuthSchemeProvider.resolveHttpAuthSchemeConfig)(_config_6);
|
|
222
|
-
const _config_8 = resolveRuntimeExtensions(_config_7,
|
|
229
|
+
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
223
230
|
super(_config_8);
|
|
224
231
|
this.config = _config_8;
|
|
225
232
|
this.middlewareStack.use((0, import_middleware_user_agent.getUserAgentPlugin)(this.config));
|
|
@@ -247,8 +254,6 @@ var _SageMakerGeospatialClient = class _SageMakerGeospatialClient extends import
|
|
|
247
254
|
super.destroy();
|
|
248
255
|
}
|
|
249
256
|
};
|
|
250
|
-
__name(_SageMakerGeospatialClient, "SageMakerGeospatialClient");
|
|
251
|
-
var SageMakerGeospatialClient = _SageMakerGeospatialClient;
|
|
252
257
|
|
|
253
258
|
// src/SageMakerGeospatial.ts
|
|
254
259
|
|
|
@@ -269,7 +274,10 @@ var import_uuid = require("uuid");
|
|
|
269
274
|
|
|
270
275
|
// src/models/SageMakerGeospatialServiceException.ts
|
|
271
276
|
|
|
272
|
-
var
|
|
277
|
+
var SageMakerGeospatialServiceException = class _SageMakerGeospatialServiceException extends import_smithy_client.ServiceException {
|
|
278
|
+
static {
|
|
279
|
+
__name(this, "SageMakerGeospatialServiceException");
|
|
280
|
+
}
|
|
273
281
|
/**
|
|
274
282
|
* @internal
|
|
275
283
|
*/
|
|
@@ -278,11 +286,15 @@ var _SageMakerGeospatialServiceException = class _SageMakerGeospatialServiceExce
|
|
|
278
286
|
Object.setPrototypeOf(this, _SageMakerGeospatialServiceException.prototype);
|
|
279
287
|
}
|
|
280
288
|
};
|
|
281
|
-
__name(_SageMakerGeospatialServiceException, "SageMakerGeospatialServiceException");
|
|
282
|
-
var SageMakerGeospatialServiceException = _SageMakerGeospatialServiceException;
|
|
283
289
|
|
|
284
290
|
// src/models/models_0.ts
|
|
285
|
-
var
|
|
291
|
+
var AccessDeniedException = class _AccessDeniedException extends SageMakerGeospatialServiceException {
|
|
292
|
+
static {
|
|
293
|
+
__name(this, "AccessDeniedException");
|
|
294
|
+
}
|
|
295
|
+
name = "AccessDeniedException";
|
|
296
|
+
$fault = "client";
|
|
297
|
+
Message;
|
|
286
298
|
/**
|
|
287
299
|
* @internal
|
|
288
300
|
*/
|
|
@@ -292,14 +304,10 @@ var _AccessDeniedException = class _AccessDeniedException extends SageMakerGeosp
|
|
|
292
304
|
$fault: "client",
|
|
293
305
|
...opts
|
|
294
306
|
});
|
|
295
|
-
this.name = "AccessDeniedException";
|
|
296
|
-
this.$fault = "client";
|
|
297
307
|
Object.setPrototypeOf(this, _AccessDeniedException.prototype);
|
|
298
308
|
this.Message = opts.Message;
|
|
299
309
|
}
|
|
300
310
|
};
|
|
301
|
-
__name(_AccessDeniedException, "AccessDeniedException");
|
|
302
|
-
var AccessDeniedException = _AccessDeniedException;
|
|
303
311
|
var AlgorithmNameCloudRemoval = {
|
|
304
312
|
/**
|
|
305
313
|
* INTERPOLATION
|
|
@@ -476,7 +484,18 @@ var ComparisonOperator = {
|
|
|
476
484
|
*/
|
|
477
485
|
STARTS_WITH: "STARTS_WITH"
|
|
478
486
|
};
|
|
479
|
-
var
|
|
487
|
+
var ConflictException = class _ConflictException extends SageMakerGeospatialServiceException {
|
|
488
|
+
static {
|
|
489
|
+
__name(this, "ConflictException");
|
|
490
|
+
}
|
|
491
|
+
name = "ConflictException";
|
|
492
|
+
$fault = "client";
|
|
493
|
+
Message;
|
|
494
|
+
/**
|
|
495
|
+
* <p>Identifier of the resource affected.</p>
|
|
496
|
+
* @public
|
|
497
|
+
*/
|
|
498
|
+
ResourceId;
|
|
480
499
|
/**
|
|
481
500
|
* @internal
|
|
482
501
|
*/
|
|
@@ -486,15 +505,11 @@ var _ConflictException = class _ConflictException extends SageMakerGeospatialSer
|
|
|
486
505
|
$fault: "client",
|
|
487
506
|
...opts
|
|
488
507
|
});
|
|
489
|
-
this.name = "ConflictException";
|
|
490
|
-
this.$fault = "client";
|
|
491
508
|
Object.setPrototypeOf(this, _ConflictException.prototype);
|
|
492
509
|
this.Message = opts.Message;
|
|
493
510
|
this.ResourceId = opts.ResourceId;
|
|
494
511
|
}
|
|
495
512
|
};
|
|
496
|
-
__name(_ConflictException, "ConflictException");
|
|
497
|
-
var ConflictException = _ConflictException;
|
|
498
513
|
var DataCollectionType = {
|
|
499
514
|
/**
|
|
500
515
|
* PREMIUM
|
|
@@ -509,7 +524,18 @@ var DataCollectionType = {
|
|
|
509
524
|
*/
|
|
510
525
|
USER: "USER"
|
|
511
526
|
};
|
|
512
|
-
var
|
|
527
|
+
var InternalServerException = class _InternalServerException extends SageMakerGeospatialServiceException {
|
|
528
|
+
static {
|
|
529
|
+
__name(this, "InternalServerException");
|
|
530
|
+
}
|
|
531
|
+
name = "InternalServerException";
|
|
532
|
+
$fault = "server";
|
|
533
|
+
Message;
|
|
534
|
+
/**
|
|
535
|
+
* <p/>
|
|
536
|
+
* @public
|
|
537
|
+
*/
|
|
538
|
+
ResourceId;
|
|
513
539
|
/**
|
|
514
540
|
* @internal
|
|
515
541
|
*/
|
|
@@ -519,16 +545,23 @@ var _InternalServerException = class _InternalServerException extends SageMakerG
|
|
|
519
545
|
$fault: "server",
|
|
520
546
|
...opts
|
|
521
547
|
});
|
|
522
|
-
this.name = "InternalServerException";
|
|
523
|
-
this.$fault = "server";
|
|
524
548
|
Object.setPrototypeOf(this, _InternalServerException.prototype);
|
|
525
549
|
this.Message = opts.Message;
|
|
526
550
|
this.ResourceId = opts.ResourceId;
|
|
527
551
|
}
|
|
528
552
|
};
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
553
|
+
var ResourceNotFoundException = class _ResourceNotFoundException extends SageMakerGeospatialServiceException {
|
|
554
|
+
static {
|
|
555
|
+
__name(this, "ResourceNotFoundException");
|
|
556
|
+
}
|
|
557
|
+
name = "ResourceNotFoundException";
|
|
558
|
+
$fault = "client";
|
|
559
|
+
Message;
|
|
560
|
+
/**
|
|
561
|
+
* <p>Identifier of the resource that was not found.</p>
|
|
562
|
+
* @public
|
|
563
|
+
*/
|
|
564
|
+
ResourceId;
|
|
532
565
|
/**
|
|
533
566
|
* @internal
|
|
534
567
|
*/
|
|
@@ -538,16 +571,23 @@ var _ResourceNotFoundException = class _ResourceNotFoundException extends SageMa
|
|
|
538
571
|
$fault: "client",
|
|
539
572
|
...opts
|
|
540
573
|
});
|
|
541
|
-
this.name = "ResourceNotFoundException";
|
|
542
|
-
this.$fault = "client";
|
|
543
574
|
Object.setPrototypeOf(this, _ResourceNotFoundException.prototype);
|
|
544
575
|
this.Message = opts.Message;
|
|
545
576
|
this.ResourceId = opts.ResourceId;
|
|
546
577
|
}
|
|
547
578
|
};
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
579
|
+
var ThrottlingException = class _ThrottlingException extends SageMakerGeospatialServiceException {
|
|
580
|
+
static {
|
|
581
|
+
__name(this, "ThrottlingException");
|
|
582
|
+
}
|
|
583
|
+
name = "ThrottlingException";
|
|
584
|
+
$fault = "client";
|
|
585
|
+
Message;
|
|
586
|
+
/**
|
|
587
|
+
* <p/>
|
|
588
|
+
* @public
|
|
589
|
+
*/
|
|
590
|
+
ResourceId;
|
|
551
591
|
/**
|
|
552
592
|
* @internal
|
|
553
593
|
*/
|
|
@@ -557,16 +597,23 @@ var _ThrottlingException = class _ThrottlingException extends SageMakerGeospatia
|
|
|
557
597
|
$fault: "client",
|
|
558
598
|
...opts
|
|
559
599
|
});
|
|
560
|
-
this.name = "ThrottlingException";
|
|
561
|
-
this.$fault = "client";
|
|
562
600
|
Object.setPrototypeOf(this, _ThrottlingException.prototype);
|
|
563
601
|
this.Message = opts.Message;
|
|
564
602
|
this.ResourceId = opts.ResourceId;
|
|
565
603
|
}
|
|
566
604
|
};
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
605
|
+
var ValidationException = class _ValidationException extends SageMakerGeospatialServiceException {
|
|
606
|
+
static {
|
|
607
|
+
__name(this, "ValidationException");
|
|
608
|
+
}
|
|
609
|
+
name = "ValidationException";
|
|
610
|
+
$fault = "client";
|
|
611
|
+
Message;
|
|
612
|
+
/**
|
|
613
|
+
* <p/>
|
|
614
|
+
* @public
|
|
615
|
+
*/
|
|
616
|
+
ResourceId;
|
|
570
617
|
/**
|
|
571
618
|
* @internal
|
|
572
619
|
*/
|
|
@@ -576,15 +623,11 @@ var _ValidationException = class _ValidationException extends SageMakerGeospatia
|
|
|
576
623
|
$fault: "client",
|
|
577
624
|
...opts
|
|
578
625
|
});
|
|
579
|
-
this.name = "ValidationException";
|
|
580
|
-
this.$fault = "client";
|
|
581
626
|
Object.setPrototypeOf(this, _ValidationException.prototype);
|
|
582
627
|
this.Message = opts.Message;
|
|
583
628
|
this.ResourceId = opts.ResourceId;
|
|
584
629
|
}
|
|
585
630
|
};
|
|
586
|
-
__name(_ValidationException, "ValidationException");
|
|
587
|
-
var ValidationException = _ValidationException;
|
|
588
631
|
var EarthObservationJobExportStatus = {
|
|
589
632
|
/**
|
|
590
633
|
* FAILED
|
|
@@ -599,7 +642,18 @@ var EarthObservationJobExportStatus = {
|
|
|
599
642
|
*/
|
|
600
643
|
SUCCEEDED: "SUCCEEDED"
|
|
601
644
|
};
|
|
602
|
-
var
|
|
645
|
+
var ServiceQuotaExceededException = class _ServiceQuotaExceededException extends SageMakerGeospatialServiceException {
|
|
646
|
+
static {
|
|
647
|
+
__name(this, "ServiceQuotaExceededException");
|
|
648
|
+
}
|
|
649
|
+
name = "ServiceQuotaExceededException";
|
|
650
|
+
$fault = "client";
|
|
651
|
+
Message;
|
|
652
|
+
/**
|
|
653
|
+
* <p>Identifier of the resource affected.</p>
|
|
654
|
+
* @public
|
|
655
|
+
*/
|
|
656
|
+
ResourceId;
|
|
603
657
|
/**
|
|
604
658
|
* @internal
|
|
605
659
|
*/
|
|
@@ -609,15 +663,11 @@ var _ServiceQuotaExceededException = class _ServiceQuotaExceededException extend
|
|
|
609
663
|
$fault: "client",
|
|
610
664
|
...opts
|
|
611
665
|
});
|
|
612
|
-
this.name = "ServiceQuotaExceededException";
|
|
613
|
-
this.$fault = "client";
|
|
614
666
|
Object.setPrototypeOf(this, _ServiceQuotaExceededException.prototype);
|
|
615
667
|
this.Message = opts.Message;
|
|
616
668
|
this.ResourceId = opts.ResourceId;
|
|
617
669
|
}
|
|
618
670
|
};
|
|
619
|
-
__name(_ServiceQuotaExceededException, "ServiceQuotaExceededException");
|
|
620
|
-
var ServiceQuotaExceededException = _ServiceQuotaExceededException;
|
|
621
671
|
var EarthObservationJobErrorType = {
|
|
622
672
|
/**
|
|
623
673
|
* CLIENT_ERROR
|
|
@@ -2232,267 +2282,286 @@ var _TRF = "TimeRangeFilter";
|
|
|
2232
2282
|
var _tK = "tagKeys";
|
|
2233
2283
|
|
|
2234
2284
|
// src/commands/DeleteEarthObservationJobCommand.ts
|
|
2235
|
-
var
|
|
2285
|
+
var DeleteEarthObservationJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2236
2286
|
return [
|
|
2237
2287
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2238
2288
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2239
2289
|
];
|
|
2240
2290
|
}).s("SageMakerGeospatial", "DeleteEarthObservationJob", {}).n("SageMakerGeospatialClient", "DeleteEarthObservationJobCommand").f(void 0, void 0).ser(se_DeleteEarthObservationJobCommand).de(de_DeleteEarthObservationJobCommand).build() {
|
|
2291
|
+
static {
|
|
2292
|
+
__name(this, "DeleteEarthObservationJobCommand");
|
|
2293
|
+
}
|
|
2241
2294
|
};
|
|
2242
|
-
__name(_DeleteEarthObservationJobCommand, "DeleteEarthObservationJobCommand");
|
|
2243
|
-
var DeleteEarthObservationJobCommand = _DeleteEarthObservationJobCommand;
|
|
2244
2295
|
|
|
2245
2296
|
// src/commands/DeleteVectorEnrichmentJobCommand.ts
|
|
2246
2297
|
|
|
2247
2298
|
|
|
2248
2299
|
|
|
2249
|
-
var
|
|
2300
|
+
var DeleteVectorEnrichmentJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2250
2301
|
return [
|
|
2251
2302
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2252
2303
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2253
2304
|
];
|
|
2254
2305
|
}).s("SageMakerGeospatial", "DeleteVectorEnrichmentJob", {}).n("SageMakerGeospatialClient", "DeleteVectorEnrichmentJobCommand").f(void 0, void 0).ser(se_DeleteVectorEnrichmentJobCommand).de(de_DeleteVectorEnrichmentJobCommand).build() {
|
|
2306
|
+
static {
|
|
2307
|
+
__name(this, "DeleteVectorEnrichmentJobCommand");
|
|
2308
|
+
}
|
|
2255
2309
|
};
|
|
2256
|
-
__name(_DeleteVectorEnrichmentJobCommand, "DeleteVectorEnrichmentJobCommand");
|
|
2257
|
-
var DeleteVectorEnrichmentJobCommand = _DeleteVectorEnrichmentJobCommand;
|
|
2258
2310
|
|
|
2259
2311
|
// src/commands/ExportEarthObservationJobCommand.ts
|
|
2260
2312
|
|
|
2261
2313
|
|
|
2262
2314
|
|
|
2263
|
-
var
|
|
2315
|
+
var ExportEarthObservationJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2264
2316
|
return [
|
|
2265
2317
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2266
2318
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2267
2319
|
];
|
|
2268
2320
|
}).s("SageMakerGeospatial", "ExportEarthObservationJob", {}).n("SageMakerGeospatialClient", "ExportEarthObservationJobCommand").f(void 0, void 0).ser(se_ExportEarthObservationJobCommand).de(de_ExportEarthObservationJobCommand).build() {
|
|
2321
|
+
static {
|
|
2322
|
+
__name(this, "ExportEarthObservationJobCommand");
|
|
2323
|
+
}
|
|
2269
2324
|
};
|
|
2270
|
-
__name(_ExportEarthObservationJobCommand, "ExportEarthObservationJobCommand");
|
|
2271
|
-
var ExportEarthObservationJobCommand = _ExportEarthObservationJobCommand;
|
|
2272
2325
|
|
|
2273
2326
|
// src/commands/ExportVectorEnrichmentJobCommand.ts
|
|
2274
2327
|
|
|
2275
2328
|
|
|
2276
2329
|
|
|
2277
|
-
var
|
|
2330
|
+
var ExportVectorEnrichmentJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2278
2331
|
return [
|
|
2279
2332
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2280
2333
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2281
2334
|
];
|
|
2282
2335
|
}).s("SageMakerGeospatial", "ExportVectorEnrichmentJob", {}).n("SageMakerGeospatialClient", "ExportVectorEnrichmentJobCommand").f(void 0, void 0).ser(se_ExportVectorEnrichmentJobCommand).de(de_ExportVectorEnrichmentJobCommand).build() {
|
|
2336
|
+
static {
|
|
2337
|
+
__name(this, "ExportVectorEnrichmentJobCommand");
|
|
2338
|
+
}
|
|
2283
2339
|
};
|
|
2284
|
-
__name(_ExportVectorEnrichmentJobCommand, "ExportVectorEnrichmentJobCommand");
|
|
2285
|
-
var ExportVectorEnrichmentJobCommand = _ExportVectorEnrichmentJobCommand;
|
|
2286
2340
|
|
|
2287
2341
|
// src/commands/GetEarthObservationJobCommand.ts
|
|
2288
2342
|
|
|
2289
2343
|
|
|
2290
2344
|
|
|
2291
|
-
var
|
|
2345
|
+
var GetEarthObservationJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2292
2346
|
return [
|
|
2293
2347
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2294
2348
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2295
2349
|
];
|
|
2296
2350
|
}).s("SageMakerGeospatial", "GetEarthObservationJob", {}).n("SageMakerGeospatialClient", "GetEarthObservationJobCommand").f(void 0, GetEarthObservationJobOutputFilterSensitiveLog).ser(se_GetEarthObservationJobCommand).de(de_GetEarthObservationJobCommand).build() {
|
|
2351
|
+
static {
|
|
2352
|
+
__name(this, "GetEarthObservationJobCommand");
|
|
2353
|
+
}
|
|
2297
2354
|
};
|
|
2298
|
-
__name(_GetEarthObservationJobCommand, "GetEarthObservationJobCommand");
|
|
2299
|
-
var GetEarthObservationJobCommand = _GetEarthObservationJobCommand;
|
|
2300
2355
|
|
|
2301
2356
|
// src/commands/GetRasterDataCollectionCommand.ts
|
|
2302
2357
|
|
|
2303
2358
|
|
|
2304
2359
|
|
|
2305
|
-
var
|
|
2360
|
+
var GetRasterDataCollectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2306
2361
|
return [
|
|
2307
2362
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2308
2363
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2309
2364
|
];
|
|
2310
2365
|
}).s("SageMakerGeospatial", "GetRasterDataCollection", {}).n("SageMakerGeospatialClient", "GetRasterDataCollectionCommand").f(void 0, void 0).ser(se_GetRasterDataCollectionCommand).de(de_GetRasterDataCollectionCommand).build() {
|
|
2366
|
+
static {
|
|
2367
|
+
__name(this, "GetRasterDataCollectionCommand");
|
|
2368
|
+
}
|
|
2311
2369
|
};
|
|
2312
|
-
__name(_GetRasterDataCollectionCommand, "GetRasterDataCollectionCommand");
|
|
2313
|
-
var GetRasterDataCollectionCommand = _GetRasterDataCollectionCommand;
|
|
2314
2370
|
|
|
2315
2371
|
// src/commands/GetTileCommand.ts
|
|
2316
2372
|
|
|
2317
2373
|
|
|
2318
2374
|
|
|
2319
|
-
var
|
|
2375
|
+
var GetTileCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2320
2376
|
return [
|
|
2321
2377
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2322
2378
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2323
2379
|
];
|
|
2324
2380
|
}).s("SageMakerGeospatial", "GetTile", {}).n("SageMakerGeospatialClient", "GetTileCommand").f(void 0, GetTileOutputFilterSensitiveLog).ser(se_GetTileCommand).de(de_GetTileCommand).build() {
|
|
2381
|
+
static {
|
|
2382
|
+
__name(this, "GetTileCommand");
|
|
2383
|
+
}
|
|
2325
2384
|
};
|
|
2326
|
-
__name(_GetTileCommand, "GetTileCommand");
|
|
2327
|
-
var GetTileCommand = _GetTileCommand;
|
|
2328
2385
|
|
|
2329
2386
|
// src/commands/GetVectorEnrichmentJobCommand.ts
|
|
2330
2387
|
|
|
2331
2388
|
|
|
2332
2389
|
|
|
2333
|
-
var
|
|
2390
|
+
var GetVectorEnrichmentJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2334
2391
|
return [
|
|
2335
2392
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2336
2393
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2337
2394
|
];
|
|
2338
2395
|
}).s("SageMakerGeospatial", "GetVectorEnrichmentJob", {}).n("SageMakerGeospatialClient", "GetVectorEnrichmentJobCommand").f(void 0, void 0).ser(se_GetVectorEnrichmentJobCommand).de(de_GetVectorEnrichmentJobCommand).build() {
|
|
2396
|
+
static {
|
|
2397
|
+
__name(this, "GetVectorEnrichmentJobCommand");
|
|
2398
|
+
}
|
|
2339
2399
|
};
|
|
2340
|
-
__name(_GetVectorEnrichmentJobCommand, "GetVectorEnrichmentJobCommand");
|
|
2341
|
-
var GetVectorEnrichmentJobCommand = _GetVectorEnrichmentJobCommand;
|
|
2342
2400
|
|
|
2343
2401
|
// src/commands/ListEarthObservationJobsCommand.ts
|
|
2344
2402
|
|
|
2345
2403
|
|
|
2346
2404
|
|
|
2347
|
-
var
|
|
2405
|
+
var ListEarthObservationJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2348
2406
|
return [
|
|
2349
2407
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2350
2408
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2351
2409
|
];
|
|
2352
2410
|
}).s("SageMakerGeospatial", "ListEarthObservationJobs", {}).n("SageMakerGeospatialClient", "ListEarthObservationJobsCommand").f(ListEarthObservationJobInputFilterSensitiveLog, ListEarthObservationJobOutputFilterSensitiveLog).ser(se_ListEarthObservationJobsCommand).de(de_ListEarthObservationJobsCommand).build() {
|
|
2411
|
+
static {
|
|
2412
|
+
__name(this, "ListEarthObservationJobsCommand");
|
|
2413
|
+
}
|
|
2353
2414
|
};
|
|
2354
|
-
__name(_ListEarthObservationJobsCommand, "ListEarthObservationJobsCommand");
|
|
2355
|
-
var ListEarthObservationJobsCommand = _ListEarthObservationJobsCommand;
|
|
2356
2415
|
|
|
2357
2416
|
// src/commands/ListRasterDataCollectionsCommand.ts
|
|
2358
2417
|
|
|
2359
2418
|
|
|
2360
2419
|
|
|
2361
|
-
var
|
|
2420
|
+
var ListRasterDataCollectionsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2362
2421
|
return [
|
|
2363
2422
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2364
2423
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2365
2424
|
];
|
|
2366
2425
|
}).s("SageMakerGeospatial", "ListRasterDataCollections", {}).n("SageMakerGeospatialClient", "ListRasterDataCollectionsCommand").f(ListRasterDataCollectionsInputFilterSensitiveLog, ListRasterDataCollectionsOutputFilterSensitiveLog).ser(se_ListRasterDataCollectionsCommand).de(de_ListRasterDataCollectionsCommand).build() {
|
|
2426
|
+
static {
|
|
2427
|
+
__name(this, "ListRasterDataCollectionsCommand");
|
|
2428
|
+
}
|
|
2367
2429
|
};
|
|
2368
|
-
__name(_ListRasterDataCollectionsCommand, "ListRasterDataCollectionsCommand");
|
|
2369
|
-
var ListRasterDataCollectionsCommand = _ListRasterDataCollectionsCommand;
|
|
2370
2430
|
|
|
2371
2431
|
// src/commands/ListTagsForResourceCommand.ts
|
|
2372
2432
|
|
|
2373
2433
|
|
|
2374
2434
|
|
|
2375
|
-
var
|
|
2435
|
+
var ListTagsForResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2376
2436
|
return [
|
|
2377
2437
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2378
2438
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2379
2439
|
];
|
|
2380
2440
|
}).s("SageMakerGeospatial", "ListTagsForResource", {}).n("SageMakerGeospatialClient", "ListTagsForResourceCommand").f(void 0, void 0).ser(se_ListTagsForResourceCommand).de(de_ListTagsForResourceCommand).build() {
|
|
2441
|
+
static {
|
|
2442
|
+
__name(this, "ListTagsForResourceCommand");
|
|
2443
|
+
}
|
|
2381
2444
|
};
|
|
2382
|
-
__name(_ListTagsForResourceCommand, "ListTagsForResourceCommand");
|
|
2383
|
-
var ListTagsForResourceCommand = _ListTagsForResourceCommand;
|
|
2384
2445
|
|
|
2385
2446
|
// src/commands/ListVectorEnrichmentJobsCommand.ts
|
|
2386
2447
|
|
|
2387
2448
|
|
|
2388
2449
|
|
|
2389
|
-
var
|
|
2450
|
+
var ListVectorEnrichmentJobsCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2390
2451
|
return [
|
|
2391
2452
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2392
2453
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2393
2454
|
];
|
|
2394
2455
|
}).s("SageMakerGeospatial", "ListVectorEnrichmentJobs", {}).n("SageMakerGeospatialClient", "ListVectorEnrichmentJobsCommand").f(ListVectorEnrichmentJobInputFilterSensitiveLog, ListVectorEnrichmentJobOutputFilterSensitiveLog).ser(se_ListVectorEnrichmentJobsCommand).de(de_ListVectorEnrichmentJobsCommand).build() {
|
|
2456
|
+
static {
|
|
2457
|
+
__name(this, "ListVectorEnrichmentJobsCommand");
|
|
2458
|
+
}
|
|
2395
2459
|
};
|
|
2396
|
-
__name(_ListVectorEnrichmentJobsCommand, "ListVectorEnrichmentJobsCommand");
|
|
2397
|
-
var ListVectorEnrichmentJobsCommand = _ListVectorEnrichmentJobsCommand;
|
|
2398
2460
|
|
|
2399
2461
|
// src/commands/SearchRasterDataCollectionCommand.ts
|
|
2400
2462
|
|
|
2401
2463
|
|
|
2402
2464
|
|
|
2403
|
-
var
|
|
2465
|
+
var SearchRasterDataCollectionCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2404
2466
|
return [
|
|
2405
2467
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2406
2468
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2407
2469
|
];
|
|
2408
2470
|
}).s("SageMakerGeospatial", "SearchRasterDataCollection", {}).n("SageMakerGeospatialClient", "SearchRasterDataCollectionCommand").f(SearchRasterDataCollectionInputFilterSensitiveLog, SearchRasterDataCollectionOutputFilterSensitiveLog).ser(se_SearchRasterDataCollectionCommand).de(de_SearchRasterDataCollectionCommand).build() {
|
|
2471
|
+
static {
|
|
2472
|
+
__name(this, "SearchRasterDataCollectionCommand");
|
|
2473
|
+
}
|
|
2409
2474
|
};
|
|
2410
|
-
__name(_SearchRasterDataCollectionCommand, "SearchRasterDataCollectionCommand");
|
|
2411
|
-
var SearchRasterDataCollectionCommand = _SearchRasterDataCollectionCommand;
|
|
2412
2475
|
|
|
2413
2476
|
// src/commands/StartEarthObservationJobCommand.ts
|
|
2414
2477
|
|
|
2415
2478
|
|
|
2416
2479
|
|
|
2417
|
-
var
|
|
2480
|
+
var StartEarthObservationJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2418
2481
|
return [
|
|
2419
2482
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2420
2483
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2421
2484
|
];
|
|
2422
2485
|
}).s("SageMakerGeospatial", "StartEarthObservationJob", {}).n("SageMakerGeospatialClient", "StartEarthObservationJobCommand").f(StartEarthObservationJobInputFilterSensitiveLog, StartEarthObservationJobOutputFilterSensitiveLog).ser(se_StartEarthObservationJobCommand).de(de_StartEarthObservationJobCommand).build() {
|
|
2486
|
+
static {
|
|
2487
|
+
__name(this, "StartEarthObservationJobCommand");
|
|
2488
|
+
}
|
|
2423
2489
|
};
|
|
2424
|
-
__name(_StartEarthObservationJobCommand, "StartEarthObservationJobCommand");
|
|
2425
|
-
var StartEarthObservationJobCommand = _StartEarthObservationJobCommand;
|
|
2426
2490
|
|
|
2427
2491
|
// src/commands/StartVectorEnrichmentJobCommand.ts
|
|
2428
2492
|
|
|
2429
2493
|
|
|
2430
2494
|
|
|
2431
|
-
var
|
|
2495
|
+
var StartVectorEnrichmentJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2432
2496
|
return [
|
|
2433
2497
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2434
2498
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2435
2499
|
];
|
|
2436
2500
|
}).s("SageMakerGeospatial", "StartVectorEnrichmentJob", {}).n("SageMakerGeospatialClient", "StartVectorEnrichmentJobCommand").f(void 0, void 0).ser(se_StartVectorEnrichmentJobCommand).de(de_StartVectorEnrichmentJobCommand).build() {
|
|
2501
|
+
static {
|
|
2502
|
+
__name(this, "StartVectorEnrichmentJobCommand");
|
|
2503
|
+
}
|
|
2437
2504
|
};
|
|
2438
|
-
__name(_StartVectorEnrichmentJobCommand, "StartVectorEnrichmentJobCommand");
|
|
2439
|
-
var StartVectorEnrichmentJobCommand = _StartVectorEnrichmentJobCommand;
|
|
2440
2505
|
|
|
2441
2506
|
// src/commands/StopEarthObservationJobCommand.ts
|
|
2442
2507
|
|
|
2443
2508
|
|
|
2444
2509
|
|
|
2445
|
-
var
|
|
2510
|
+
var StopEarthObservationJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2446
2511
|
return [
|
|
2447
2512
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2448
2513
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2449
2514
|
];
|
|
2450
2515
|
}).s("SageMakerGeospatial", "StopEarthObservationJob", {}).n("SageMakerGeospatialClient", "StopEarthObservationJobCommand").f(void 0, void 0).ser(se_StopEarthObservationJobCommand).de(de_StopEarthObservationJobCommand).build() {
|
|
2516
|
+
static {
|
|
2517
|
+
__name(this, "StopEarthObservationJobCommand");
|
|
2518
|
+
}
|
|
2451
2519
|
};
|
|
2452
|
-
__name(_StopEarthObservationJobCommand, "StopEarthObservationJobCommand");
|
|
2453
|
-
var StopEarthObservationJobCommand = _StopEarthObservationJobCommand;
|
|
2454
2520
|
|
|
2455
2521
|
// src/commands/StopVectorEnrichmentJobCommand.ts
|
|
2456
2522
|
|
|
2457
2523
|
|
|
2458
2524
|
|
|
2459
|
-
var
|
|
2525
|
+
var StopVectorEnrichmentJobCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2460
2526
|
return [
|
|
2461
2527
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2462
2528
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2463
2529
|
];
|
|
2464
2530
|
}).s("SageMakerGeospatial", "StopVectorEnrichmentJob", {}).n("SageMakerGeospatialClient", "StopVectorEnrichmentJobCommand").f(void 0, void 0).ser(se_StopVectorEnrichmentJobCommand).de(de_StopVectorEnrichmentJobCommand).build() {
|
|
2531
|
+
static {
|
|
2532
|
+
__name(this, "StopVectorEnrichmentJobCommand");
|
|
2533
|
+
}
|
|
2465
2534
|
};
|
|
2466
|
-
__name(_StopVectorEnrichmentJobCommand, "StopVectorEnrichmentJobCommand");
|
|
2467
|
-
var StopVectorEnrichmentJobCommand = _StopVectorEnrichmentJobCommand;
|
|
2468
2535
|
|
|
2469
2536
|
// src/commands/TagResourceCommand.ts
|
|
2470
2537
|
|
|
2471
2538
|
|
|
2472
2539
|
|
|
2473
|
-
var
|
|
2540
|
+
var TagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2474
2541
|
return [
|
|
2475
2542
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2476
2543
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2477
2544
|
];
|
|
2478
2545
|
}).s("SageMakerGeospatial", "TagResource", {}).n("SageMakerGeospatialClient", "TagResourceCommand").f(void 0, void 0).ser(se_TagResourceCommand).de(de_TagResourceCommand).build() {
|
|
2546
|
+
static {
|
|
2547
|
+
__name(this, "TagResourceCommand");
|
|
2548
|
+
}
|
|
2479
2549
|
};
|
|
2480
|
-
__name(_TagResourceCommand, "TagResourceCommand");
|
|
2481
|
-
var TagResourceCommand = _TagResourceCommand;
|
|
2482
2550
|
|
|
2483
2551
|
// src/commands/UntagResourceCommand.ts
|
|
2484
2552
|
|
|
2485
2553
|
|
|
2486
2554
|
|
|
2487
|
-
var
|
|
2555
|
+
var UntagResourceCommand = class extends import_smithy_client.Command.classBuilder().ep(commonParams).m(function(Command, cs, config, o) {
|
|
2488
2556
|
return [
|
|
2489
2557
|
(0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
|
|
2490
2558
|
(0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
|
|
2491
2559
|
];
|
|
2492
2560
|
}).s("SageMakerGeospatial", "UntagResource", {}).n("SageMakerGeospatialClient", "UntagResourceCommand").f(void 0, void 0).ser(se_UntagResourceCommand).de(de_UntagResourceCommand).build() {
|
|
2561
|
+
static {
|
|
2562
|
+
__name(this, "UntagResourceCommand");
|
|
2563
|
+
}
|
|
2493
2564
|
};
|
|
2494
|
-
__name(_UntagResourceCommand, "UntagResourceCommand");
|
|
2495
|
-
var UntagResourceCommand = _UntagResourceCommand;
|
|
2496
2565
|
|
|
2497
2566
|
// src/SageMakerGeospatial.ts
|
|
2498
2567
|
var commands = {
|
|
@@ -2516,10 +2585,11 @@ var commands = {
|
|
|
2516
2585
|
TagResourceCommand,
|
|
2517
2586
|
UntagResourceCommand
|
|
2518
2587
|
};
|
|
2519
|
-
var
|
|
2588
|
+
var SageMakerGeospatial = class extends SageMakerGeospatialClient {
|
|
2589
|
+
static {
|
|
2590
|
+
__name(this, "SageMakerGeospatial");
|
|
2591
|
+
}
|
|
2520
2592
|
};
|
|
2521
|
-
__name(_SageMakerGeospatial, "SageMakerGeospatial");
|
|
2522
|
-
var SageMakerGeospatial = _SageMakerGeospatial;
|
|
2523
2593
|
(0, import_smithy_client.createAggregatedClient)(commands, SageMakerGeospatial);
|
|
2524
2594
|
|
|
2525
2595
|
// src/pagination/ListEarthObservationJobsPaginator.ts
|
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class SageMakerGeospatialClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { SageMakerGeospatialServiceException as __BaseException } from "./SageMakerGeospatialServiceException";
|
|
3
3
|
export class AccessDeniedException extends __BaseException {
|
|
4
|
+
name = "AccessDeniedException";
|
|
5
|
+
$fault = "client";
|
|
6
|
+
Message;
|
|
4
7
|
constructor(opts) {
|
|
5
8
|
super({
|
|
6
9
|
name: "AccessDeniedException",
|
|
7
10
|
$fault: "client",
|
|
8
11
|
...opts,
|
|
9
12
|
});
|
|
10
|
-
this.name = "AccessDeniedException";
|
|
11
|
-
this.$fault = "client";
|
|
12
13
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
14
|
this.Message = opts.Message;
|
|
14
15
|
}
|
|
@@ -79,14 +80,16 @@ export const ComparisonOperator = {
|
|
|
79
80
|
STARTS_WITH: "STARTS_WITH",
|
|
80
81
|
};
|
|
81
82
|
export class ConflictException extends __BaseException {
|
|
83
|
+
name = "ConflictException";
|
|
84
|
+
$fault = "client";
|
|
85
|
+
Message;
|
|
86
|
+
ResourceId;
|
|
82
87
|
constructor(opts) {
|
|
83
88
|
super({
|
|
84
89
|
name: "ConflictException",
|
|
85
90
|
$fault: "client",
|
|
86
91
|
...opts,
|
|
87
92
|
});
|
|
88
|
-
this.name = "ConflictException";
|
|
89
|
-
this.$fault = "client";
|
|
90
93
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
91
94
|
this.Message = opts.Message;
|
|
92
95
|
this.ResourceId = opts.ResourceId;
|
|
@@ -98,56 +101,64 @@ export const DataCollectionType = {
|
|
|
98
101
|
USER: "USER",
|
|
99
102
|
};
|
|
100
103
|
export class InternalServerException extends __BaseException {
|
|
104
|
+
name = "InternalServerException";
|
|
105
|
+
$fault = "server";
|
|
106
|
+
Message;
|
|
107
|
+
ResourceId;
|
|
101
108
|
constructor(opts) {
|
|
102
109
|
super({
|
|
103
110
|
name: "InternalServerException",
|
|
104
111
|
$fault: "server",
|
|
105
112
|
...opts,
|
|
106
113
|
});
|
|
107
|
-
this.name = "InternalServerException";
|
|
108
|
-
this.$fault = "server";
|
|
109
114
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
110
115
|
this.Message = opts.Message;
|
|
111
116
|
this.ResourceId = opts.ResourceId;
|
|
112
117
|
}
|
|
113
118
|
}
|
|
114
119
|
export class ResourceNotFoundException extends __BaseException {
|
|
120
|
+
name = "ResourceNotFoundException";
|
|
121
|
+
$fault = "client";
|
|
122
|
+
Message;
|
|
123
|
+
ResourceId;
|
|
115
124
|
constructor(opts) {
|
|
116
125
|
super({
|
|
117
126
|
name: "ResourceNotFoundException",
|
|
118
127
|
$fault: "client",
|
|
119
128
|
...opts,
|
|
120
129
|
});
|
|
121
|
-
this.name = "ResourceNotFoundException";
|
|
122
|
-
this.$fault = "client";
|
|
123
130
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
124
131
|
this.Message = opts.Message;
|
|
125
132
|
this.ResourceId = opts.ResourceId;
|
|
126
133
|
}
|
|
127
134
|
}
|
|
128
135
|
export class ThrottlingException extends __BaseException {
|
|
136
|
+
name = "ThrottlingException";
|
|
137
|
+
$fault = "client";
|
|
138
|
+
Message;
|
|
139
|
+
ResourceId;
|
|
129
140
|
constructor(opts) {
|
|
130
141
|
super({
|
|
131
142
|
name: "ThrottlingException",
|
|
132
143
|
$fault: "client",
|
|
133
144
|
...opts,
|
|
134
145
|
});
|
|
135
|
-
this.name = "ThrottlingException";
|
|
136
|
-
this.$fault = "client";
|
|
137
146
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
138
147
|
this.Message = opts.Message;
|
|
139
148
|
this.ResourceId = opts.ResourceId;
|
|
140
149
|
}
|
|
141
150
|
}
|
|
142
151
|
export class ValidationException extends __BaseException {
|
|
152
|
+
name = "ValidationException";
|
|
153
|
+
$fault = "client";
|
|
154
|
+
Message;
|
|
155
|
+
ResourceId;
|
|
143
156
|
constructor(opts) {
|
|
144
157
|
super({
|
|
145
158
|
name: "ValidationException",
|
|
146
159
|
$fault: "client",
|
|
147
160
|
...opts,
|
|
148
161
|
});
|
|
149
|
-
this.name = "ValidationException";
|
|
150
|
-
this.$fault = "client";
|
|
151
162
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
152
163
|
this.Message = opts.Message;
|
|
153
164
|
this.ResourceId = opts.ResourceId;
|
|
@@ -159,14 +170,16 @@ export const EarthObservationJobExportStatus = {
|
|
|
159
170
|
SUCCEEDED: "SUCCEEDED",
|
|
160
171
|
};
|
|
161
172
|
export class ServiceQuotaExceededException extends __BaseException {
|
|
173
|
+
name = "ServiceQuotaExceededException";
|
|
174
|
+
$fault = "client";
|
|
175
|
+
Message;
|
|
176
|
+
ResourceId;
|
|
162
177
|
constructor(opts) {
|
|
163
178
|
super({
|
|
164
179
|
name: "ServiceQuotaExceededException",
|
|
165
180
|
$fault: "client",
|
|
166
181
|
...opts,
|
|
167
182
|
});
|
|
168
|
-
this.name = "ServiceQuotaExceededException";
|
|
169
|
-
this.$fault = "client";
|
|
170
183
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
171
184
|
this.Message = opts.Message;
|
|
172
185
|
this.ResourceId = opts.ResourceId;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: SageMakerGeospatialClientConfig)
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: SageMakerGeospatialClientConfig)
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: SageMakerGeospatialClientConfig)
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: SageMakerGeospatialClientConfig)
|
|
|
32
32
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
33
33
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
34
34
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
35
|
-
endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
|
|
35
|
+
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
36
36
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
37
37
|
logger?: import("@smithy/types").Logger | undefined;
|
|
38
38
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -8,9 +8,11 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
input: any
|
|
13
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
_: unknown
|
|
15
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
14
16
|
defaultUserAgentProvider: (
|
|
15
17
|
config?:
|
|
16
18
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -8,13 +8,15 @@ export declare const getRuntimeConfig: (
|
|
|
8
8
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
10
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
-
credentialDefaultProvider:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
init?:
|
|
15
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
16
|
+
| undefined
|
|
17
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
18
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
19
|
+
>);
|
|
18
20
|
defaultUserAgentProvider: (
|
|
19
21
|
config?:
|
|
20
22
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -30,9 +30,11 @@ export declare const getRuntimeConfig: (
|
|
|
30
30
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
31
31
|
| undefined
|
|
32
32
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
33
|
-
credentialDefaultProvider:
|
|
34
|
-
input: any
|
|
35
|
-
|
|
33
|
+
credentialDefaultProvider:
|
|
34
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
35
|
+
| ((
|
|
36
|
+
_: unknown
|
|
37
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
36
38
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
37
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
40
|
logger: import("@smithy/types").Logger;
|
|
@@ -53,11 +55,21 @@ export declare const getRuntimeConfig: (
|
|
|
53
55
|
| import("@smithy/types").RetryStrategyV2
|
|
54
56
|
| undefined;
|
|
55
57
|
endpoint?:
|
|
56
|
-
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
58
|
+
| ((
|
|
59
|
+
| string
|
|
60
|
+
| import("@smithy/types").Endpoint
|
|
61
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
62
|
+
| import("@smithy/types").EndpointV2
|
|
63
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
64
|
+
) &
|
|
65
|
+
(
|
|
66
|
+
| string
|
|
67
|
+
| import("@smithy/types").Provider<string>
|
|
68
|
+
| import("@smithy/types").Endpoint
|
|
69
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
70
|
+
| import("@smithy/types").EndpointV2
|
|
71
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
72
|
+
))
|
|
61
73
|
| undefined;
|
|
62
74
|
endpointProvider: (
|
|
63
75
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-sagemaker-geospatial",
|
|
3
3
|
"description": "AWS SDK for JavaScript Sagemaker Geospatial Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-sagemaker-geospatial",
|
|
@@ -20,59 +20,59 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-stream": "^
|
|
61
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-stream": "^4.0.0",
|
|
61
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
62
62
|
"@types/uuid": "^9.0.1",
|
|
63
63
|
"tslib": "^2.6.2",
|
|
64
64
|
"uuid": "^9.0.1"
|
|
65
65
|
},
|
|
66
66
|
"devDependencies": {
|
|
67
|
-
"@tsconfig/
|
|
68
|
-
"@types/node": "^
|
|
67
|
+
"@tsconfig/node18": "18.2.4",
|
|
68
|
+
"@types/node": "^18.19.69",
|
|
69
69
|
"concurrently": "7.0.0",
|
|
70
70
|
"downlevel-dts": "0.10.1",
|
|
71
71
|
"rimraf": "3.0.2",
|
|
72
|
-
"typescript": "~
|
|
72
|
+
"typescript": "~5.2.2"
|
|
73
73
|
},
|
|
74
74
|
"engines": {
|
|
75
|
-
"node": ">=
|
|
75
|
+
"node": ">=18.0.0"
|
|
76
76
|
},
|
|
77
77
|
"typesVersions": {
|
|
78
78
|
"<4.0": {
|