@aws-sdk/client-sagemaker-geospatial 3.928.0 → 3.929.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/dist-cjs/index.js +1141 -1545
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/SageMakerGeospatialClient.js +2 -0
  4. package/dist-es/commands/DeleteEarthObservationJobCommand.js +3 -9
  5. package/dist-es/commands/DeleteVectorEnrichmentJobCommand.js +3 -9
  6. package/dist-es/commands/ExportEarthObservationJobCommand.js +3 -9
  7. package/dist-es/commands/ExportVectorEnrichmentJobCommand.js +3 -9
  8. package/dist-es/commands/GetEarthObservationJobCommand.js +3 -10
  9. package/dist-es/commands/GetRasterDataCollectionCommand.js +3 -9
  10. package/dist-es/commands/GetTileCommand.js +3 -10
  11. package/dist-es/commands/GetVectorEnrichmentJobCommand.js +3 -9
  12. package/dist-es/commands/ListEarthObservationJobsCommand.js +3 -10
  13. package/dist-es/commands/ListRasterDataCollectionsCommand.js +3 -10
  14. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  15. package/dist-es/commands/ListVectorEnrichmentJobsCommand.js +3 -10
  16. package/dist-es/commands/SearchRasterDataCollectionCommand.js +3 -10
  17. package/dist-es/commands/StartEarthObservationJobCommand.js +3 -10
  18. package/dist-es/commands/StartVectorEnrichmentJobCommand.js +3 -9
  19. package/dist-es/commands/StopEarthObservationJobCommand.js +3 -9
  20. package/dist-es/commands/StopVectorEnrichmentJobCommand.js +3 -9
  21. package/dist-es/commands/TagResourceCommand.js +3 -9
  22. package/dist-es/commands/UntagResourceCommand.js +3 -9
  23. package/dist-es/models/models_0.js +0 -121
  24. package/dist-es/runtimeConfig.shared.js +2 -0
  25. package/dist-es/schemas/schemas_0.js +1098 -0
  26. package/dist-types/SageMakerGeospatialClient.d.ts +10 -1
  27. package/dist-types/models/models_0.d.ts +0 -100
  28. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  29. package/dist-types/runtimeConfig.d.ts +1 -0
  30. package/dist-types/runtimeConfig.native.d.ts +1 -0
  31. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  32. package/dist-types/schemas/schemas_0.d.ts +145 -0
  33. package/dist-types/ts3.4/SageMakerGeospatialClient.d.ts +4 -0
  34. package/dist-types/ts3.4/models/models_0.d.ts +0 -71
  35. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  36. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  37. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  38. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  39. package/dist-types/ts3.4/schemas/schemas_0.d.ts +152 -0
  40. package/package.json +2 -3
  41. package/dist-es/protocols/Aws_restJson1.js +0 -1259
  42. package/dist-types/protocols/Aws_restJson1.d.ts +0 -173
  43. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -236
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
4
  const core_1 = require("@aws-sdk/core");
5
+ const protocols_1 = require("@aws-sdk/core/protocols");
5
6
  const smithy_client_1 = require("@smithy/smithy-client");
6
7
  const url_parser_1 = require("@smithy/url-parser");
7
8
  const util_base64_1 = require("@smithy/util-base64");
@@ -26,6 +27,7 @@ const getRuntimeConfig = (config) => {
26
27
  },
27
28
  ],
28
29
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
30
+ protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.sagemakergeospatial" }),
29
31
  sdkStreamMixin: config?.sdkStreamMixin ?? util_stream_1.sdkStreamMixin,
30
32
  serviceId: config?.serviceId ?? "SageMaker Geospatial",
31
33
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
@@ -4,6 +4,7 @@ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detec
4
4
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
5
5
  import { resolveRegionConfig } from "@smithy/config-resolver";
6
6
  import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core";
7
+ import { getSchemaSerdePlugin } from "@smithy/core/schema";
7
8
  import { getContentLengthPlugin } from "@smithy/middleware-content-length";
8
9
  import { resolveEndpointConfig } from "@smithy/middleware-endpoint";
9
10
  import { getRetryPlugin, resolveRetryConfig } from "@smithy/middleware-retry";
@@ -28,6 +29,7 @@ export class SageMakerGeospatialClient extends __Client {
28
29
  const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
29
30
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
30
31
  this.config = _config_8;
32
+ this.middlewareStack.use(getSchemaSerdePlugin(this.config));
31
33
  this.middlewareStack.use(getUserAgentPlugin(this.config));
32
34
  this.middlewareStack.use(getRetryPlugin(this.config));
33
35
  this.middlewareStack.use(getContentLengthPlugin(this.config));
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DeleteEarthObservationJobCommand, se_DeleteEarthObservationJobCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteEarthObservationJob } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteEarthObservationJobCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SageMakerGeospatial", "DeleteEarthObservationJob", {})
17
13
  .n("SageMakerGeospatialClient", "DeleteEarthObservationJobCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteEarthObservationJobCommand)
20
- .de(de_DeleteEarthObservationJobCommand)
14
+ .sc(DeleteEarthObservationJob)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DeleteVectorEnrichmentJobCommand, se_DeleteVectorEnrichmentJobCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteVectorEnrichmentJob } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteVectorEnrichmentJobCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SageMakerGeospatial", "DeleteVectorEnrichmentJob", {})
17
13
  .n("SageMakerGeospatialClient", "DeleteVectorEnrichmentJobCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteVectorEnrichmentJobCommand)
20
- .de(de_DeleteVectorEnrichmentJobCommand)
14
+ .sc(DeleteVectorEnrichmentJob)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ExportEarthObservationJobCommand, se_ExportEarthObservationJobCommand } from "../protocols/Aws_restJson1";
4
+ import { ExportEarthObservationJob } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ExportEarthObservationJobCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SageMakerGeospatial", "ExportEarthObservationJob", {})
17
13
  .n("SageMakerGeospatialClient", "ExportEarthObservationJobCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ExportEarthObservationJobCommand)
20
- .de(de_ExportEarthObservationJobCommand)
14
+ .sc(ExportEarthObservationJob)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ExportVectorEnrichmentJobCommand, se_ExportVectorEnrichmentJobCommand } from "../protocols/Aws_restJson1";
4
+ import { ExportVectorEnrichmentJob } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ExportVectorEnrichmentJobCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SageMakerGeospatial", "ExportVectorEnrichmentJob", {})
17
13
  .n("SageMakerGeospatialClient", "ExportVectorEnrichmentJobCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ExportVectorEnrichmentJobCommand)
20
- .de(de_ExportVectorEnrichmentJobCommand)
14
+ .sc(ExportVectorEnrichmentJob)
21
15
  .build() {
22
16
  }
@@ -1,23 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { GetEarthObservationJobOutputFilterSensitiveLog, } from "../models/models_0";
6
- import { de_GetEarthObservationJobCommand, se_GetEarthObservationJobCommand } from "../protocols/Aws_restJson1";
4
+ import { GetEarthObservationJob } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class GetEarthObservationJobCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("SageMakerGeospatial", "GetEarthObservationJob", {})
18
13
  .n("SageMakerGeospatialClient", "GetEarthObservationJobCommand")
19
- .f(void 0, GetEarthObservationJobOutputFilterSensitiveLog)
20
- .ser(se_GetEarthObservationJobCommand)
21
- .de(de_GetEarthObservationJobCommand)
14
+ .sc(GetEarthObservationJob)
22
15
  .build() {
23
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_GetRasterDataCollectionCommand, se_GetRasterDataCollectionCommand } from "../protocols/Aws_restJson1";
4
+ import { GetRasterDataCollection } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetRasterDataCollectionCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SageMakerGeospatial", "GetRasterDataCollection", {})
17
13
  .n("SageMakerGeospatialClient", "GetRasterDataCollectionCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetRasterDataCollectionCommand)
20
- .de(de_GetRasterDataCollectionCommand)
14
+ .sc(GetRasterDataCollection)
21
15
  .build() {
22
16
  }
@@ -1,23 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { GetTileOutputFilterSensitiveLog } from "../models/models_0";
6
- import { de_GetTileCommand, se_GetTileCommand } from "../protocols/Aws_restJson1";
4
+ import { GetTile } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class GetTileCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("SageMakerGeospatial", "GetTile", {})
18
13
  .n("SageMakerGeospatialClient", "GetTileCommand")
19
- .f(void 0, GetTileOutputFilterSensitiveLog)
20
- .ser(se_GetTileCommand)
21
- .de(de_GetTileCommand)
14
+ .sc(GetTile)
22
15
  .build() {
23
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_GetVectorEnrichmentJobCommand, se_GetVectorEnrichmentJobCommand } from "../protocols/Aws_restJson1";
4
+ import { GetVectorEnrichmentJob } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetVectorEnrichmentJobCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SageMakerGeospatial", "GetVectorEnrichmentJob", {})
17
13
  .n("SageMakerGeospatialClient", "GetVectorEnrichmentJobCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetVectorEnrichmentJobCommand)
20
- .de(de_GetVectorEnrichmentJobCommand)
14
+ .sc(GetVectorEnrichmentJob)
21
15
  .build() {
22
16
  }
@@ -1,23 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { ListEarthObservationJobInputFilterSensitiveLog, ListEarthObservationJobOutputFilterSensitiveLog, } from "../models/models_0";
6
- import { de_ListEarthObservationJobsCommand, se_ListEarthObservationJobsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListEarthObservationJobs } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class ListEarthObservationJobsCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("SageMakerGeospatial", "ListEarthObservationJobs", {})
18
13
  .n("SageMakerGeospatialClient", "ListEarthObservationJobsCommand")
19
- .f(ListEarthObservationJobInputFilterSensitiveLog, ListEarthObservationJobOutputFilterSensitiveLog)
20
- .ser(se_ListEarthObservationJobsCommand)
21
- .de(de_ListEarthObservationJobsCommand)
14
+ .sc(ListEarthObservationJobs)
22
15
  .build() {
23
16
  }
@@ -1,23 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { ListRasterDataCollectionsInputFilterSensitiveLog, ListRasterDataCollectionsOutputFilterSensitiveLog, } from "../models/models_0";
6
- import { de_ListRasterDataCollectionsCommand, se_ListRasterDataCollectionsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListRasterDataCollections } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class ListRasterDataCollectionsCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("SageMakerGeospatial", "ListRasterDataCollections", {})
18
13
  .n("SageMakerGeospatialClient", "ListRasterDataCollectionsCommand")
19
- .f(ListRasterDataCollectionsInputFilterSensitiveLog, ListRasterDataCollectionsOutputFilterSensitiveLog)
20
- .ser(se_ListRasterDataCollectionsCommand)
21
- .de(de_ListRasterDataCollectionsCommand)
14
+ .sc(ListRasterDataCollections)
22
15
  .build() {
23
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_restJson1";
4
+ import { ListTagsForResource } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListTagsForResourceCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SageMakerGeospatial", "ListTagsForResource", {})
17
13
  .n("SageMakerGeospatialClient", "ListTagsForResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListTagsForResourceCommand)
20
- .de(de_ListTagsForResourceCommand)
14
+ .sc(ListTagsForResource)
21
15
  .build() {
22
16
  }
@@ -1,23 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { ListVectorEnrichmentJobInputFilterSensitiveLog, ListVectorEnrichmentJobOutputFilterSensitiveLog, } from "../models/models_0";
6
- import { de_ListVectorEnrichmentJobsCommand, se_ListVectorEnrichmentJobsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListVectorEnrichmentJobs } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class ListVectorEnrichmentJobsCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("SageMakerGeospatial", "ListVectorEnrichmentJobs", {})
18
13
  .n("SageMakerGeospatialClient", "ListVectorEnrichmentJobsCommand")
19
- .f(ListVectorEnrichmentJobInputFilterSensitiveLog, ListVectorEnrichmentJobOutputFilterSensitiveLog)
20
- .ser(se_ListVectorEnrichmentJobsCommand)
21
- .de(de_ListVectorEnrichmentJobsCommand)
14
+ .sc(ListVectorEnrichmentJobs)
22
15
  .build() {
23
16
  }
@@ -1,23 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { SearchRasterDataCollectionInputFilterSensitiveLog, SearchRasterDataCollectionOutputFilterSensitiveLog, } from "../models/models_0";
6
- import { de_SearchRasterDataCollectionCommand, se_SearchRasterDataCollectionCommand } from "../protocols/Aws_restJson1";
4
+ import { SearchRasterDataCollection } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class SearchRasterDataCollectionCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("SageMakerGeospatial", "SearchRasterDataCollection", {})
18
13
  .n("SageMakerGeospatialClient", "SearchRasterDataCollectionCommand")
19
- .f(SearchRasterDataCollectionInputFilterSensitiveLog, SearchRasterDataCollectionOutputFilterSensitiveLog)
20
- .ser(se_SearchRasterDataCollectionCommand)
21
- .de(de_SearchRasterDataCollectionCommand)
14
+ .sc(SearchRasterDataCollection)
22
15
  .build() {
23
16
  }
@@ -1,23 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { StartEarthObservationJobInputFilterSensitiveLog, StartEarthObservationJobOutputFilterSensitiveLog, } from "../models/models_0";
6
- import { de_StartEarthObservationJobCommand, se_StartEarthObservationJobCommand } from "../protocols/Aws_restJson1";
4
+ import { StartEarthObservationJob } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class StartEarthObservationJobCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("SageMakerGeospatial", "StartEarthObservationJob", {})
18
13
  .n("SageMakerGeospatialClient", "StartEarthObservationJobCommand")
19
- .f(StartEarthObservationJobInputFilterSensitiveLog, StartEarthObservationJobOutputFilterSensitiveLog)
20
- .ser(se_StartEarthObservationJobCommand)
21
- .de(de_StartEarthObservationJobCommand)
14
+ .sc(StartEarthObservationJob)
22
15
  .build() {
23
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_StartVectorEnrichmentJobCommand, se_StartVectorEnrichmentJobCommand } from "../protocols/Aws_restJson1";
4
+ import { StartVectorEnrichmentJob } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class StartVectorEnrichmentJobCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SageMakerGeospatial", "StartVectorEnrichmentJob", {})
17
13
  .n("SageMakerGeospatialClient", "StartVectorEnrichmentJobCommand")
18
- .f(void 0, void 0)
19
- .ser(se_StartVectorEnrichmentJobCommand)
20
- .de(de_StartVectorEnrichmentJobCommand)
14
+ .sc(StartVectorEnrichmentJob)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_StopEarthObservationJobCommand, se_StopEarthObservationJobCommand } from "../protocols/Aws_restJson1";
4
+ import { StopEarthObservationJob } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class StopEarthObservationJobCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SageMakerGeospatial", "StopEarthObservationJob", {})
17
13
  .n("SageMakerGeospatialClient", "StopEarthObservationJobCommand")
18
- .f(void 0, void 0)
19
- .ser(se_StopEarthObservationJobCommand)
20
- .de(de_StopEarthObservationJobCommand)
14
+ .sc(StopEarthObservationJob)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_StopVectorEnrichmentJobCommand, se_StopVectorEnrichmentJobCommand } from "../protocols/Aws_restJson1";
4
+ import { StopVectorEnrichmentJob } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class StopVectorEnrichmentJobCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SageMakerGeospatial", "StopVectorEnrichmentJob", {})
17
13
  .n("SageMakerGeospatialClient", "StopVectorEnrichmentJobCommand")
18
- .f(void 0, void 0)
19
- .ser(se_StopVectorEnrichmentJobCommand)
20
- .de(de_StopVectorEnrichmentJobCommand)
14
+ .sc(StopVectorEnrichmentJob)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_restJson1";
4
+ import { TagResource } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class TagResourceCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SageMakerGeospatial", "TagResource", {})
17
13
  .n("SageMakerGeospatialClient", "TagResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_TagResourceCommand)
20
- .de(de_TagResourceCommand)
14
+ .sc(TagResource)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_restJson1";
4
+ import { UntagResource } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class UntagResourceCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("SageMakerGeospatial", "UntagResource", {})
17
13
  .n("SageMakerGeospatialClient", "UntagResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_UntagResourceCommand)
20
- .de(de_UntagResourceCommand)
14
+ .sc(UntagResource)
21
15
  .build() {
22
16
  }