@aws-sdk/client-sagemaker-geospatial 3.303.0 → 3.309.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/commands/DeleteEarthObservationJobCommand.js +2 -2
  2. package/dist-cjs/commands/DeleteVectorEnrichmentJobCommand.js +2 -2
  3. package/dist-cjs/commands/ExportEarthObservationJobCommand.js +2 -2
  4. package/dist-cjs/commands/ExportVectorEnrichmentJobCommand.js +2 -2
  5. package/dist-cjs/commands/GetEarthObservationJobCommand.js +2 -2
  6. package/dist-cjs/commands/GetRasterDataCollectionCommand.js +2 -2
  7. package/dist-cjs/commands/GetTileCommand.js +2 -2
  8. package/dist-cjs/commands/GetVectorEnrichmentJobCommand.js +2 -2
  9. package/dist-cjs/commands/ListEarthObservationJobsCommand.js +2 -2
  10. package/dist-cjs/commands/ListRasterDataCollectionsCommand.js +2 -2
  11. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  12. package/dist-cjs/commands/ListVectorEnrichmentJobsCommand.js +2 -2
  13. package/dist-cjs/commands/SearchRasterDataCollectionCommand.js +2 -2
  14. package/dist-cjs/commands/StartEarthObservationJobCommand.js +2 -2
  15. package/dist-cjs/commands/StartVectorEnrichmentJobCommand.js +2 -2
  16. package/dist-cjs/commands/StopEarthObservationJobCommand.js +2 -2
  17. package/dist-cjs/commands/StopVectorEnrichmentJobCommand.js +2 -2
  18. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  19. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  20. package/dist-cjs/protocols/Aws_restJson1.js +522 -604
  21. package/dist-es/commands/DeleteEarthObservationJobCommand.js +3 -3
  22. package/dist-es/commands/DeleteVectorEnrichmentJobCommand.js +3 -3
  23. package/dist-es/commands/ExportEarthObservationJobCommand.js +3 -3
  24. package/dist-es/commands/ExportVectorEnrichmentJobCommand.js +3 -3
  25. package/dist-es/commands/GetEarthObservationJobCommand.js +3 -3
  26. package/dist-es/commands/GetRasterDataCollectionCommand.js +3 -3
  27. package/dist-es/commands/GetTileCommand.js +3 -3
  28. package/dist-es/commands/GetVectorEnrichmentJobCommand.js +3 -3
  29. package/dist-es/commands/ListEarthObservationJobsCommand.js +3 -3
  30. package/dist-es/commands/ListRasterDataCollectionsCommand.js +3 -3
  31. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  32. package/dist-es/commands/ListVectorEnrichmentJobsCommand.js +3 -3
  33. package/dist-es/commands/SearchRasterDataCollectionCommand.js +3 -3
  34. package/dist-es/commands/StartEarthObservationJobCommand.js +3 -3
  35. package/dist-es/commands/StartVectorEnrichmentJobCommand.js +3 -3
  36. package/dist-es/commands/StopEarthObservationJobCommand.js +3 -3
  37. package/dist-es/commands/StopVectorEnrichmentJobCommand.js +3 -3
  38. package/dist-es/commands/TagResourceCommand.js +3 -3
  39. package/dist-es/commands/UntagResourceCommand.js +3 -3
  40. package/dist-es/protocols/Aws_restJson1.js +483 -565
  41. package/dist-types/protocols/Aws_restJson1.d.ts +152 -38
  42. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +38 -38
  43. package/package.json +31 -31
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1DeleteEarthObservationJobCommand, serializeAws_restJson1DeleteEarthObservationJobCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_DeleteEarthObservationJobCommand, se_DeleteEarthObservationJobCommand } from "../protocols/Aws_restJson1";
5
5
  export class DeleteEarthObservationJobCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteEarthObservationJobCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1DeleteEarthObservationJobCommand(input, context);
36
+ return se_DeleteEarthObservationJobCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1DeleteEarthObservationJobCommand(output, context);
39
+ return de_DeleteEarthObservationJobCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1DeleteVectorEnrichmentJobCommand, serializeAws_restJson1DeleteVectorEnrichmentJobCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_DeleteVectorEnrichmentJobCommand, se_DeleteVectorEnrichmentJobCommand } from "../protocols/Aws_restJson1";
5
5
  export class DeleteVectorEnrichmentJobCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class DeleteVectorEnrichmentJobCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1DeleteVectorEnrichmentJobCommand(input, context);
36
+ return se_DeleteVectorEnrichmentJobCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1DeleteVectorEnrichmentJobCommand(output, context);
39
+ return de_DeleteVectorEnrichmentJobCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1ExportEarthObservationJobCommand, serializeAws_restJson1ExportEarthObservationJobCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ExportEarthObservationJobCommand, se_ExportEarthObservationJobCommand } from "../protocols/Aws_restJson1";
5
5
  export class ExportEarthObservationJobCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ExportEarthObservationJobCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ExportEarthObservationJobCommand(input, context);
36
+ return se_ExportEarthObservationJobCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ExportEarthObservationJobCommand(output, context);
39
+ return de_ExportEarthObservationJobCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1ExportVectorEnrichmentJobCommand, serializeAws_restJson1ExportVectorEnrichmentJobCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ExportVectorEnrichmentJobCommand, se_ExportVectorEnrichmentJobCommand } from "../protocols/Aws_restJson1";
5
5
  export class ExportVectorEnrichmentJobCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ExportVectorEnrichmentJobCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ExportVectorEnrichmentJobCommand(input, context);
36
+ return se_ExportVectorEnrichmentJobCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ExportVectorEnrichmentJobCommand(output, context);
39
+ return de_ExportVectorEnrichmentJobCommand(output, context);
40
40
  }
41
41
  }
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { GetEarthObservationJobOutputFilterSensitiveLog, } from "../models/models_0";
5
- import { deserializeAws_restJson1GetEarthObservationJobCommand, serializeAws_restJson1GetEarthObservationJobCommand, } from "../protocols/Aws_restJson1";
5
+ import { de_GetEarthObservationJobCommand, se_GetEarthObservationJobCommand } from "../protocols/Aws_restJson1";
6
6
  export class GetEarthObservationJobCommand extends $Command {
7
7
  static getEndpointParameterInstructions() {
8
8
  return {
@@ -34,9 +34,9 @@ export class GetEarthObservationJobCommand extends $Command {
34
34
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
35
35
  }
36
36
  serialize(input, context) {
37
- return serializeAws_restJson1GetEarthObservationJobCommand(input, context);
37
+ return se_GetEarthObservationJobCommand(input, context);
38
38
  }
39
39
  deserialize(output, context) {
40
- return deserializeAws_restJson1GetEarthObservationJobCommand(output, context);
40
+ return de_GetEarthObservationJobCommand(output, context);
41
41
  }
42
42
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1GetRasterDataCollectionCommand, serializeAws_restJson1GetRasterDataCollectionCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetRasterDataCollectionCommand, se_GetRasterDataCollectionCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetRasterDataCollectionCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetRasterDataCollectionCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetRasterDataCollectionCommand(input, context);
36
+ return se_GetRasterDataCollectionCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetRasterDataCollectionCommand(output, context);
39
+ return de_GetRasterDataCollectionCommand(output, context);
40
40
  }
41
41
  }
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { GetTileOutputFilterSensitiveLog } from "../models/models_0";
5
- import { deserializeAws_restJson1GetTileCommand, serializeAws_restJson1GetTileCommand, } from "../protocols/Aws_restJson1";
5
+ import { de_GetTileCommand, se_GetTileCommand } from "../protocols/Aws_restJson1";
6
6
  export class GetTileCommand extends $Command {
7
7
  static getEndpointParameterInstructions() {
8
8
  return {
@@ -34,9 +34,9 @@ export class GetTileCommand extends $Command {
34
34
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
35
35
  }
36
36
  serialize(input, context) {
37
- return serializeAws_restJson1GetTileCommand(input, context);
37
+ return se_GetTileCommand(input, context);
38
38
  }
39
39
  deserialize(output, context) {
40
- return deserializeAws_restJson1GetTileCommand(output, context);
40
+ return de_GetTileCommand(output, context);
41
41
  }
42
42
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1GetVectorEnrichmentJobCommand, serializeAws_restJson1GetVectorEnrichmentJobCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_GetVectorEnrichmentJobCommand, se_GetVectorEnrichmentJobCommand } from "../protocols/Aws_restJson1";
5
5
  export class GetVectorEnrichmentJobCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class GetVectorEnrichmentJobCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1GetVectorEnrichmentJobCommand(input, context);
36
+ return se_GetVectorEnrichmentJobCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1GetVectorEnrichmentJobCommand(output, context);
39
+ return de_GetVectorEnrichmentJobCommand(output, context);
40
40
  }
41
41
  }
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { ListEarthObservationJobInputFilterSensitiveLog, ListEarthObservationJobOutputFilterSensitiveLog, } from "../models/models_0";
5
- import { deserializeAws_restJson1ListEarthObservationJobsCommand, serializeAws_restJson1ListEarthObservationJobsCommand, } from "../protocols/Aws_restJson1";
5
+ import { de_ListEarthObservationJobsCommand, se_ListEarthObservationJobsCommand } from "../protocols/Aws_restJson1";
6
6
  export class ListEarthObservationJobsCommand extends $Command {
7
7
  static getEndpointParameterInstructions() {
8
8
  return {
@@ -34,9 +34,9 @@ export class ListEarthObservationJobsCommand extends $Command {
34
34
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
35
35
  }
36
36
  serialize(input, context) {
37
- return serializeAws_restJson1ListEarthObservationJobsCommand(input, context);
37
+ return se_ListEarthObservationJobsCommand(input, context);
38
38
  }
39
39
  deserialize(output, context) {
40
- return deserializeAws_restJson1ListEarthObservationJobsCommand(output, context);
40
+ return de_ListEarthObservationJobsCommand(output, context);
41
41
  }
42
42
  }
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { ListRasterDataCollectionsInputFilterSensitiveLog, ListRasterDataCollectionsOutputFilterSensitiveLog, } from "../models/models_0";
5
- import { deserializeAws_restJson1ListRasterDataCollectionsCommand, serializeAws_restJson1ListRasterDataCollectionsCommand, } from "../protocols/Aws_restJson1";
5
+ import { de_ListRasterDataCollectionsCommand, se_ListRasterDataCollectionsCommand } from "../protocols/Aws_restJson1";
6
6
  export class ListRasterDataCollectionsCommand extends $Command {
7
7
  static getEndpointParameterInstructions() {
8
8
  return {
@@ -34,9 +34,9 @@ export class ListRasterDataCollectionsCommand extends $Command {
34
34
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
35
35
  }
36
36
  serialize(input, context) {
37
- return serializeAws_restJson1ListRasterDataCollectionsCommand(input, context);
37
+ return se_ListRasterDataCollectionsCommand(input, context);
38
38
  }
39
39
  deserialize(output, context) {
40
- return deserializeAws_restJson1ListRasterDataCollectionsCommand(output, context);
40
+ return de_ListRasterDataCollectionsCommand(output, context);
41
41
  }
42
42
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_restJson1";
5
5
  export class ListTagsForResourceCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class ListTagsForResourceCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1ListTagsForResourceCommand(input, context);
36
+ return se_ListTagsForResourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1ListTagsForResourceCommand(output, context);
39
+ return de_ListTagsForResourceCommand(output, context);
40
40
  }
41
41
  }
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { ListVectorEnrichmentJobInputFilterSensitiveLog, ListVectorEnrichmentJobOutputFilterSensitiveLog, } from "../models/models_0";
5
- import { deserializeAws_restJson1ListVectorEnrichmentJobsCommand, serializeAws_restJson1ListVectorEnrichmentJobsCommand, } from "../protocols/Aws_restJson1";
5
+ import { de_ListVectorEnrichmentJobsCommand, se_ListVectorEnrichmentJobsCommand } from "../protocols/Aws_restJson1";
6
6
  export class ListVectorEnrichmentJobsCommand extends $Command {
7
7
  static getEndpointParameterInstructions() {
8
8
  return {
@@ -34,9 +34,9 @@ export class ListVectorEnrichmentJobsCommand extends $Command {
34
34
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
35
35
  }
36
36
  serialize(input, context) {
37
- return serializeAws_restJson1ListVectorEnrichmentJobsCommand(input, context);
37
+ return se_ListVectorEnrichmentJobsCommand(input, context);
38
38
  }
39
39
  deserialize(output, context) {
40
- return deserializeAws_restJson1ListVectorEnrichmentJobsCommand(output, context);
40
+ return de_ListVectorEnrichmentJobsCommand(output, context);
41
41
  }
42
42
  }
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { SearchRasterDataCollectionInputFilterSensitiveLog, SearchRasterDataCollectionOutputFilterSensitiveLog, } from "../models/models_0";
5
- import { deserializeAws_restJson1SearchRasterDataCollectionCommand, serializeAws_restJson1SearchRasterDataCollectionCommand, } from "../protocols/Aws_restJson1";
5
+ import { de_SearchRasterDataCollectionCommand, se_SearchRasterDataCollectionCommand } from "../protocols/Aws_restJson1";
6
6
  export class SearchRasterDataCollectionCommand extends $Command {
7
7
  static getEndpointParameterInstructions() {
8
8
  return {
@@ -34,9 +34,9 @@ export class SearchRasterDataCollectionCommand extends $Command {
34
34
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
35
35
  }
36
36
  serialize(input, context) {
37
- return serializeAws_restJson1SearchRasterDataCollectionCommand(input, context);
37
+ return se_SearchRasterDataCollectionCommand(input, context);
38
38
  }
39
39
  deserialize(output, context) {
40
- return deserializeAws_restJson1SearchRasterDataCollectionCommand(output, context);
40
+ return de_SearchRasterDataCollectionCommand(output, context);
41
41
  }
42
42
  }
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
4
  import { StartEarthObservationJobInputFilterSensitiveLog, StartEarthObservationJobOutputFilterSensitiveLog, } from "../models/models_0";
5
- import { deserializeAws_restJson1StartEarthObservationJobCommand, serializeAws_restJson1StartEarthObservationJobCommand, } from "../protocols/Aws_restJson1";
5
+ import { de_StartEarthObservationJobCommand, se_StartEarthObservationJobCommand } from "../protocols/Aws_restJson1";
6
6
  export class StartEarthObservationJobCommand extends $Command {
7
7
  static getEndpointParameterInstructions() {
8
8
  return {
@@ -34,9 +34,9 @@ export class StartEarthObservationJobCommand extends $Command {
34
34
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
35
35
  }
36
36
  serialize(input, context) {
37
- return serializeAws_restJson1StartEarthObservationJobCommand(input, context);
37
+ return se_StartEarthObservationJobCommand(input, context);
38
38
  }
39
39
  deserialize(output, context) {
40
- return deserializeAws_restJson1StartEarthObservationJobCommand(output, context);
40
+ return de_StartEarthObservationJobCommand(output, context);
41
41
  }
42
42
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1StartVectorEnrichmentJobCommand, serializeAws_restJson1StartVectorEnrichmentJobCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_StartVectorEnrichmentJobCommand, se_StartVectorEnrichmentJobCommand } from "../protocols/Aws_restJson1";
5
5
  export class StartVectorEnrichmentJobCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class StartVectorEnrichmentJobCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1StartVectorEnrichmentJobCommand(input, context);
36
+ return se_StartVectorEnrichmentJobCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1StartVectorEnrichmentJobCommand(output, context);
39
+ return de_StartVectorEnrichmentJobCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1StopEarthObservationJobCommand, serializeAws_restJson1StopEarthObservationJobCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_StopEarthObservationJobCommand, se_StopEarthObservationJobCommand } from "../protocols/Aws_restJson1";
5
5
  export class StopEarthObservationJobCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class StopEarthObservationJobCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1StopEarthObservationJobCommand(input, context);
36
+ return se_StopEarthObservationJobCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1StopEarthObservationJobCommand(output, context);
39
+ return de_StopEarthObservationJobCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1StopVectorEnrichmentJobCommand, serializeAws_restJson1StopVectorEnrichmentJobCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_StopVectorEnrichmentJobCommand, se_StopVectorEnrichmentJobCommand } from "../protocols/Aws_restJson1";
5
5
  export class StopVectorEnrichmentJobCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class StopVectorEnrichmentJobCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1StopVectorEnrichmentJobCommand(input, context);
36
+ return se_StopVectorEnrichmentJobCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1StopVectorEnrichmentJobCommand(output, context);
39
+ return de_StopVectorEnrichmentJobCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_restJson1";
5
5
  export class TagResourceCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class TagResourceCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1TagResourceCommand(input, context);
36
+ return se_TagResourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1TagResourceCommand(output, context);
39
+ return de_TagResourceCommand(output, context);
40
40
  }
41
41
  }
@@ -1,7 +1,7 @@
1
1
  import { getEndpointPlugin } from "@aws-sdk/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
3
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
4
- import { deserializeAws_restJson1UntagResourceCommand, serializeAws_restJson1UntagResourceCommand, } from "../protocols/Aws_restJson1";
4
+ import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_restJson1";
5
5
  export class UntagResourceCommand extends $Command {
6
6
  static getEndpointParameterInstructions() {
7
7
  return {
@@ -33,9 +33,9 @@ export class UntagResourceCommand extends $Command {
33
33
  return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
34
34
  }
35
35
  serialize(input, context) {
36
- return serializeAws_restJson1UntagResourceCommand(input, context);
36
+ return se_UntagResourceCommand(input, context);
37
37
  }
38
38
  deserialize(output, context) {
39
- return deserializeAws_restJson1UntagResourceCommand(output, context);
39
+ return de_UntagResourceCommand(output, context);
40
40
  }
41
41
  }