@aws-sdk/client-sagemaker-geospatial 3.952.0 → 3.953.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 +401 -271
- package/dist-cjs/runtimeConfig.shared.js +6 -1
- package/dist-es/commands/DeleteEarthObservationJobCommand.js +2 -2
- package/dist-es/commands/DeleteVectorEnrichmentJobCommand.js +2 -2
- package/dist-es/commands/ExportEarthObservationJobCommand.js +2 -2
- package/dist-es/commands/ExportVectorEnrichmentJobCommand.js +2 -2
- package/dist-es/commands/GetEarthObservationJobCommand.js +2 -2
- package/dist-es/commands/GetRasterDataCollectionCommand.js +2 -2
- package/dist-es/commands/GetTileCommand.js +2 -2
- package/dist-es/commands/GetVectorEnrichmentJobCommand.js +2 -2
- package/dist-es/commands/ListEarthObservationJobsCommand.js +2 -2
- package/dist-es/commands/ListRasterDataCollectionsCommand.js +2 -2
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -2
- package/dist-es/commands/ListVectorEnrichmentJobsCommand.js +2 -2
- package/dist-es/commands/SearchRasterDataCollectionCommand.js +2 -2
- package/dist-es/commands/StartEarthObservationJobCommand.js +2 -2
- package/dist-es/commands/StartVectorEnrichmentJobCommand.js +2 -2
- package/dist-es/commands/StopEarthObservationJobCommand.js +2 -2
- package/dist-es/commands/StopVectorEnrichmentJobCommand.js +2 -2
- package/dist-es/commands/TagResourceCommand.js +2 -2
- package/dist-es/commands/UntagResourceCommand.js +2 -2
- package/dist-es/index.js +1 -0
- package/dist-es/runtimeConfig.shared.js +6 -1
- package/dist-es/schemas/schemas_0.js +248 -241
- package/dist-types/SageMakerGeospatialClient.d.ts +1 -10
- package/dist-types/index.d.ts +1 -0
- package/dist-types/runtimeConfig.browser.d.ts +6 -2
- package/dist-types/runtimeConfig.d.ts +6 -2
- package/dist-types/runtimeConfig.native.d.ts +6 -2
- package/dist-types/runtimeConfig.shared.d.ts +6 -1
- package/dist-types/schemas/schemas_0.d.ts +124 -145
- package/dist-types/ts3.4/SageMakerGeospatialClient.d.ts +0 -4
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -5
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +9 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +123 -147
- package/package.json +35 -35
|
@@ -27,7 +27,12 @@ const getRuntimeConfig = (config) => {
|
|
|
27
27
|
},
|
|
28
28
|
],
|
|
29
29
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
30
|
-
protocol: config?.protocol ??
|
|
30
|
+
protocol: config?.protocol ?? protocols_1.AwsRestJsonProtocol,
|
|
31
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
32
|
+
defaultNamespace: "com.amazonaws.sagemakergeospatial",
|
|
33
|
+
version: "2020-05-27",
|
|
34
|
+
serviceTarget: "SageMakerGeospatial",
|
|
35
|
+
},
|
|
31
36
|
sdkStreamMixin: config?.sdkStreamMixin ?? util_stream_1.sdkStreamMixin,
|
|
32
37
|
serviceId: config?.serviceId ?? "SageMaker Geospatial",
|
|
33
38
|
urlParser: config?.urlParser ?? url_parser_1.parseUrl,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteEarthObservationJob } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteEarthObservationJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteEarthObservationJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteEarthObservationJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SageMakerGeospatial", "DeleteEarthObservationJob", {})
|
|
13
13
|
.n("SageMakerGeospatialClient", "DeleteEarthObservationJobCommand")
|
|
14
|
-
.sc(DeleteEarthObservationJob)
|
|
14
|
+
.sc(DeleteEarthObservationJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { DeleteVectorEnrichmentJob } from "../schemas/schemas_0";
|
|
4
|
+
import { DeleteVectorEnrichmentJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class DeleteVectorEnrichmentJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class DeleteVectorEnrichmentJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SageMakerGeospatial", "DeleteVectorEnrichmentJob", {})
|
|
13
13
|
.n("SageMakerGeospatialClient", "DeleteVectorEnrichmentJobCommand")
|
|
14
|
-
.sc(DeleteVectorEnrichmentJob)
|
|
14
|
+
.sc(DeleteVectorEnrichmentJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ExportEarthObservationJob } from "../schemas/schemas_0";
|
|
4
|
+
import { ExportEarthObservationJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ExportEarthObservationJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ExportEarthObservationJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SageMakerGeospatial", "ExportEarthObservationJob", {})
|
|
13
13
|
.n("SageMakerGeospatialClient", "ExportEarthObservationJobCommand")
|
|
14
|
-
.sc(ExportEarthObservationJob)
|
|
14
|
+
.sc(ExportEarthObservationJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ExportVectorEnrichmentJob } from "../schemas/schemas_0";
|
|
4
|
+
import { ExportVectorEnrichmentJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ExportVectorEnrichmentJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ExportVectorEnrichmentJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SageMakerGeospatial", "ExportVectorEnrichmentJob", {})
|
|
13
13
|
.n("SageMakerGeospatialClient", "ExportVectorEnrichmentJobCommand")
|
|
14
|
-
.sc(ExportVectorEnrichmentJob)
|
|
14
|
+
.sc(ExportVectorEnrichmentJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetEarthObservationJob } from "../schemas/schemas_0";
|
|
4
|
+
import { GetEarthObservationJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetEarthObservationJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetEarthObservationJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SageMakerGeospatial", "GetEarthObservationJob", {})
|
|
13
13
|
.n("SageMakerGeospatialClient", "GetEarthObservationJobCommand")
|
|
14
|
-
.sc(GetEarthObservationJob)
|
|
14
|
+
.sc(GetEarthObservationJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetRasterDataCollection } from "../schemas/schemas_0";
|
|
4
|
+
import { GetRasterDataCollection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetRasterDataCollectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetRasterDataCollectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SageMakerGeospatial", "GetRasterDataCollection", {})
|
|
13
13
|
.n("SageMakerGeospatialClient", "GetRasterDataCollectionCommand")
|
|
14
|
-
.sc(GetRasterDataCollection)
|
|
14
|
+
.sc(GetRasterDataCollection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetTile } from "../schemas/schemas_0";
|
|
4
|
+
import { GetTile$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetTileCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetTileCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SageMakerGeospatial", "GetTile", {})
|
|
13
13
|
.n("SageMakerGeospatialClient", "GetTileCommand")
|
|
14
|
-
.sc(GetTile)
|
|
14
|
+
.sc(GetTile$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { GetVectorEnrichmentJob } from "../schemas/schemas_0";
|
|
4
|
+
import { GetVectorEnrichmentJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class GetVectorEnrichmentJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class GetVectorEnrichmentJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SageMakerGeospatial", "GetVectorEnrichmentJob", {})
|
|
13
13
|
.n("SageMakerGeospatialClient", "GetVectorEnrichmentJobCommand")
|
|
14
|
-
.sc(GetVectorEnrichmentJob)
|
|
14
|
+
.sc(GetVectorEnrichmentJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListEarthObservationJobs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListEarthObservationJobs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListEarthObservationJobsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListEarthObservationJobsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SageMakerGeospatial", "ListEarthObservationJobs", {})
|
|
13
13
|
.n("SageMakerGeospatialClient", "ListEarthObservationJobsCommand")
|
|
14
|
-
.sc(ListEarthObservationJobs)
|
|
14
|
+
.sc(ListEarthObservationJobs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListRasterDataCollections } from "../schemas/schemas_0";
|
|
4
|
+
import { ListRasterDataCollections$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListRasterDataCollectionsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListRasterDataCollectionsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SageMakerGeospatial", "ListRasterDataCollections", {})
|
|
13
13
|
.n("SageMakerGeospatialClient", "ListRasterDataCollectionsCommand")
|
|
14
|
-
.sc(ListRasterDataCollections)
|
|
14
|
+
.sc(ListRasterDataCollections$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListTagsForResource } from "../schemas/schemas_0";
|
|
4
|
+
import { ListTagsForResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListTagsForResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListTagsForResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SageMakerGeospatial", "ListTagsForResource", {})
|
|
13
13
|
.n("SageMakerGeospatialClient", "ListTagsForResourceCommand")
|
|
14
|
-
.sc(ListTagsForResource)
|
|
14
|
+
.sc(ListTagsForResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { ListVectorEnrichmentJobs } from "../schemas/schemas_0";
|
|
4
|
+
import { ListVectorEnrichmentJobs$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class ListVectorEnrichmentJobsCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class ListVectorEnrichmentJobsCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SageMakerGeospatial", "ListVectorEnrichmentJobs", {})
|
|
13
13
|
.n("SageMakerGeospatialClient", "ListVectorEnrichmentJobsCommand")
|
|
14
|
-
.sc(ListVectorEnrichmentJobs)
|
|
14
|
+
.sc(ListVectorEnrichmentJobs$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { SearchRasterDataCollection } from "../schemas/schemas_0";
|
|
4
|
+
import { SearchRasterDataCollection$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class SearchRasterDataCollectionCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class SearchRasterDataCollectionCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SageMakerGeospatial", "SearchRasterDataCollection", {})
|
|
13
13
|
.n("SageMakerGeospatialClient", "SearchRasterDataCollectionCommand")
|
|
14
|
-
.sc(SearchRasterDataCollection)
|
|
14
|
+
.sc(SearchRasterDataCollection$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartEarthObservationJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StartEarthObservationJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartEarthObservationJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartEarthObservationJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SageMakerGeospatial", "StartEarthObservationJob", {})
|
|
13
13
|
.n("SageMakerGeospatialClient", "StartEarthObservationJobCommand")
|
|
14
|
-
.sc(StartEarthObservationJob)
|
|
14
|
+
.sc(StartEarthObservationJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StartVectorEnrichmentJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StartVectorEnrichmentJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StartVectorEnrichmentJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StartVectorEnrichmentJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SageMakerGeospatial", "StartVectorEnrichmentJob", {})
|
|
13
13
|
.n("SageMakerGeospatialClient", "StartVectorEnrichmentJobCommand")
|
|
14
|
-
.sc(StartVectorEnrichmentJob)
|
|
14
|
+
.sc(StartVectorEnrichmentJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StopEarthObservationJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StopEarthObservationJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopEarthObservationJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopEarthObservationJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SageMakerGeospatial", "StopEarthObservationJob", {})
|
|
13
13
|
.n("SageMakerGeospatialClient", "StopEarthObservationJobCommand")
|
|
14
|
-
.sc(StopEarthObservationJob)
|
|
14
|
+
.sc(StopEarthObservationJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { StopVectorEnrichmentJob } from "../schemas/schemas_0";
|
|
4
|
+
import { StopVectorEnrichmentJob$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class StopVectorEnrichmentJobCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class StopVectorEnrichmentJobCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SageMakerGeospatial", "StopVectorEnrichmentJob", {})
|
|
13
13
|
.n("SageMakerGeospatialClient", "StopVectorEnrichmentJobCommand")
|
|
14
|
-
.sc(StopVectorEnrichmentJob)
|
|
14
|
+
.sc(StopVectorEnrichmentJob$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { TagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { TagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class TagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class TagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SageMakerGeospatial", "TagResource", {})
|
|
13
13
|
.n("SageMakerGeospatialClient", "TagResourceCommand")
|
|
14
|
-
.sc(TagResource)
|
|
14
|
+
.sc(TagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
2
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
3
3
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
4
|
-
import { UntagResource } from "../schemas/schemas_0";
|
|
4
|
+
import { UntagResource$ } from "../schemas/schemas_0";
|
|
5
5
|
export { $Command };
|
|
6
6
|
export class UntagResourceCommand extends $Command
|
|
7
7
|
.classBuilder()
|
|
@@ -11,6 +11,6 @@ export class UntagResourceCommand extends $Command
|
|
|
11
11
|
})
|
|
12
12
|
.s("SageMakerGeospatial", "UntagResource", {})
|
|
13
13
|
.n("SageMakerGeospatialClient", "UntagResourceCommand")
|
|
14
|
-
.sc(UntagResource)
|
|
14
|
+
.sc(UntagResource$)
|
|
15
15
|
.build() {
|
|
16
16
|
}
|
package/dist-es/index.js
CHANGED
|
@@ -24,7 +24,12 @@ export const getRuntimeConfig = (config) => {
|
|
|
24
24
|
},
|
|
25
25
|
],
|
|
26
26
|
logger: config?.logger ?? new NoOpLogger(),
|
|
27
|
-
protocol: config?.protocol ??
|
|
27
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
28
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
29
|
+
defaultNamespace: "com.amazonaws.sagemakergeospatial",
|
|
30
|
+
version: "2020-05-27",
|
|
31
|
+
serviceTarget: "SageMakerGeospatial",
|
|
32
|
+
},
|
|
28
33
|
sdkStreamMixin: config?.sdkStreamMixin ?? sdkStreamMixin,
|
|
29
34
|
serviceId: config?.serviceId ?? "SageMaker Geospatial",
|
|
30
35
|
urlParser: config?.urlParser ?? parseUrl,
|