@aws-sdk/client-sagemaker-geospatial 3.533.0 → 3.535.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-types/SageMakerGeospatial.d.ts +4 -1
  2. package/dist-types/SageMakerGeospatialClient.d.ts +1 -1
  3. package/dist-types/commands/DeleteEarthObservationJobCommand.d.ts +2 -1
  4. package/dist-types/commands/DeleteVectorEnrichmentJobCommand.d.ts +2 -1
  5. package/dist-types/commands/ExportEarthObservationJobCommand.d.ts +2 -1
  6. package/dist-types/commands/ExportVectorEnrichmentJobCommand.d.ts +2 -1
  7. package/dist-types/commands/GetEarthObservationJobCommand.d.ts +2 -1
  8. package/dist-types/commands/GetRasterDataCollectionCommand.d.ts +2 -1
  9. package/dist-types/commands/GetTileCommand.d.ts +2 -1
  10. package/dist-types/commands/GetVectorEnrichmentJobCommand.d.ts +2 -1
  11. package/dist-types/commands/ListEarthObservationJobsCommand.d.ts +2 -1
  12. package/dist-types/commands/ListRasterDataCollectionsCommand.d.ts +2 -1
  13. package/dist-types/commands/ListTagsForResourceCommand.d.ts +2 -1
  14. package/dist-types/commands/ListVectorEnrichmentJobsCommand.d.ts +2 -1
  15. package/dist-types/commands/SearchRasterDataCollectionCommand.d.ts +2 -1
  16. package/dist-types/commands/StartEarthObservationJobCommand.d.ts +2 -1
  17. package/dist-types/commands/StartVectorEnrichmentJobCommand.d.ts +2 -1
  18. package/dist-types/commands/StopEarthObservationJobCommand.d.ts +2 -1
  19. package/dist-types/commands/StopVectorEnrichmentJobCommand.d.ts +2 -1
  20. package/dist-types/commands/TagResourceCommand.d.ts +2 -1
  21. package/dist-types/commands/UntagResourceCommand.d.ts +2 -1
  22. package/dist-types/models/models_0.d.ts +364 -364
  23. package/dist-types/ts3.4/SageMakerGeospatial.d.ts +3 -0
  24. package/dist-types/ts3.4/commands/DeleteEarthObservationJobCommand.d.ts +9 -0
  25. package/dist-types/ts3.4/commands/DeleteVectorEnrichmentJobCommand.d.ts +9 -0
  26. package/dist-types/ts3.4/commands/ExportEarthObservationJobCommand.d.ts +9 -0
  27. package/dist-types/ts3.4/commands/ExportVectorEnrichmentJobCommand.d.ts +9 -0
  28. package/dist-types/ts3.4/commands/GetEarthObservationJobCommand.d.ts +9 -0
  29. package/dist-types/ts3.4/commands/GetRasterDataCollectionCommand.d.ts +9 -0
  30. package/dist-types/ts3.4/commands/GetTileCommand.d.ts +7 -0
  31. package/dist-types/ts3.4/commands/GetVectorEnrichmentJobCommand.d.ts +9 -0
  32. package/dist-types/ts3.4/commands/ListEarthObservationJobsCommand.d.ts +9 -0
  33. package/dist-types/ts3.4/commands/ListRasterDataCollectionsCommand.d.ts +9 -0
  34. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +9 -0
  35. package/dist-types/ts3.4/commands/ListVectorEnrichmentJobsCommand.d.ts +9 -0
  36. package/dist-types/ts3.4/commands/SearchRasterDataCollectionCommand.d.ts +9 -0
  37. package/dist-types/ts3.4/commands/StartEarthObservationJobCommand.d.ts +9 -0
  38. package/dist-types/ts3.4/commands/StartVectorEnrichmentJobCommand.d.ts +9 -0
  39. package/dist-types/ts3.4/commands/StopEarthObservationJobCommand.d.ts +9 -0
  40. package/dist-types/ts3.4/commands/StopVectorEnrichmentJobCommand.d.ts +9 -0
  41. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +9 -0
  42. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +9 -0
  43. package/package.json +41 -41
@@ -71,12 +71,14 @@ export interface SageMakerGeospatial {
71
71
  /**
72
72
  * @see {@link ListEarthObservationJobsCommand}
73
73
  */
74
+ listEarthObservationJobs(): Promise<ListEarthObservationJobsCommandOutput>;
74
75
  listEarthObservationJobs(args: ListEarthObservationJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListEarthObservationJobsCommandOutput>;
75
76
  listEarthObservationJobs(args: ListEarthObservationJobsCommandInput, cb: (err: any, data?: ListEarthObservationJobsCommandOutput) => void): void;
76
77
  listEarthObservationJobs(args: ListEarthObservationJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEarthObservationJobsCommandOutput) => void): void;
77
78
  /**
78
79
  * @see {@link ListRasterDataCollectionsCommand}
79
80
  */
81
+ listRasterDataCollections(): Promise<ListRasterDataCollectionsCommandOutput>;
80
82
  listRasterDataCollections(args: ListRasterDataCollectionsCommandInput, options?: __HttpHandlerOptions): Promise<ListRasterDataCollectionsCommandOutput>;
81
83
  listRasterDataCollections(args: ListRasterDataCollectionsCommandInput, cb: (err: any, data?: ListRasterDataCollectionsCommandOutput) => void): void;
82
84
  listRasterDataCollections(args: ListRasterDataCollectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListRasterDataCollectionsCommandOutput) => void): void;
@@ -89,6 +91,7 @@ export interface SageMakerGeospatial {
89
91
  /**
90
92
  * @see {@link ListVectorEnrichmentJobsCommand}
91
93
  */
94
+ listVectorEnrichmentJobs(): Promise<ListVectorEnrichmentJobsCommandOutput>;
92
95
  listVectorEnrichmentJobs(args: ListVectorEnrichmentJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListVectorEnrichmentJobsCommandOutput>;
93
96
  listVectorEnrichmentJobs(args: ListVectorEnrichmentJobsCommandInput, cb: (err: any, data?: ListVectorEnrichmentJobsCommandOutput) => void): void;
94
97
  listVectorEnrichmentJobs(args: ListVectorEnrichmentJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListVectorEnrichmentJobsCommandOutput) => void): void;
@@ -136,8 +139,8 @@ export interface SageMakerGeospatial {
136
139
  untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
137
140
  }
138
141
  /**
139
- * @public
140
142
  * <p>Provides APIs for creating and managing SageMaker geospatial resources.</p>
143
+ * @public
141
144
  */
142
145
  export declare class SageMakerGeospatial extends SageMakerGeospatialClient implements SageMakerGeospatial {
143
146
  }
@@ -175,8 +175,8 @@ export type SageMakerGeospatialClientResolvedConfigType = __SmithyResolvedConfig
175
175
  export interface SageMakerGeospatialClientResolvedConfig extends SageMakerGeospatialClientResolvedConfigType {
176
176
  }
177
177
  /**
178
- * @public
179
178
  * <p>Provides APIs for creating and managing SageMaker geospatial resources.</p>
179
+ * @public
180
180
  */
181
181
  export declare class SageMakerGeospatialClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, SageMakerGeospatialClientResolvedConfig> {
182
182
  /**
@@ -22,10 +22,10 @@ export interface DeleteEarthObservationJobCommandOutput extends DeleteEarthObser
22
22
  }
23
23
  declare const DeleteEarthObservationJobCommand_base: {
24
24
  new (input: DeleteEarthObservationJobCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteEarthObservationJobCommandInput, DeleteEarthObservationJobCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteEarthObservationJobCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteEarthObservationJobCommandInput, DeleteEarthObservationJobCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Use this operation to delete an Earth Observation job.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -69,6 +69,7 @@ declare const DeleteEarthObservationJobCommand_base: {
69
69
  * @throws {@link SageMakerGeospatialServiceException}
70
70
  * <p>Base exception class for all service exceptions from SageMakerGeospatial service.</p>
71
71
  *
72
+ * @public
72
73
  */
73
74
  export declare class DeleteEarthObservationJobCommand extends DeleteEarthObservationJobCommand_base {
74
75
  }
@@ -22,10 +22,10 @@ export interface DeleteVectorEnrichmentJobCommandOutput extends DeleteVectorEnri
22
22
  }
23
23
  declare const DeleteVectorEnrichmentJobCommand_base: {
24
24
  new (input: DeleteVectorEnrichmentJobCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteVectorEnrichmentJobCommandInput, DeleteVectorEnrichmentJobCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: DeleteVectorEnrichmentJobCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteVectorEnrichmentJobCommandInput, DeleteVectorEnrichmentJobCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Use this operation to delete a Vector Enrichment job.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -69,6 +69,7 @@ declare const DeleteVectorEnrichmentJobCommand_base: {
69
69
  * @throws {@link SageMakerGeospatialServiceException}
70
70
  * <p>Base exception class for all service exceptions from SageMakerGeospatial service.</p>
71
71
  *
72
+ * @public
72
73
  */
73
74
  export declare class DeleteVectorEnrichmentJobCommand extends DeleteVectorEnrichmentJobCommand_base {
74
75
  }
@@ -22,10 +22,10 @@ export interface ExportEarthObservationJobCommandOutput extends ExportEarthObser
22
22
  }
23
23
  declare const ExportEarthObservationJobCommand_base: {
24
24
  new (input: ExportEarthObservationJobCommandInput): import("@smithy/smithy-client").CommandImpl<ExportEarthObservationJobCommandInput, ExportEarthObservationJobCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ExportEarthObservationJobCommandInput): import("@smithy/smithy-client").CommandImpl<ExportEarthObservationJobCommandInput, ExportEarthObservationJobCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Use this operation to export results of an Earth Observation job and optionally source images used as input to the EOJ to an Amazon S3 location.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -93,6 +93,7 @@ declare const ExportEarthObservationJobCommand_base: {
93
93
  * @throws {@link SageMakerGeospatialServiceException}
94
94
  * <p>Base exception class for all service exceptions from SageMakerGeospatial service.</p>
95
95
  *
96
+ * @public
96
97
  */
97
98
  export declare class ExportEarthObservationJobCommand extends ExportEarthObservationJobCommand_base {
98
99
  }
@@ -22,10 +22,10 @@ export interface ExportVectorEnrichmentJobCommandOutput extends ExportVectorEnri
22
22
  }
23
23
  declare const ExportVectorEnrichmentJobCommand_base: {
24
24
  new (input: ExportVectorEnrichmentJobCommandInput): import("@smithy/smithy-client").CommandImpl<ExportVectorEnrichmentJobCommandInput, ExportVectorEnrichmentJobCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ExportVectorEnrichmentJobCommandInput): import("@smithy/smithy-client").CommandImpl<ExportVectorEnrichmentJobCommandInput, ExportVectorEnrichmentJobCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Use this operation to copy results of a Vector Enrichment job to an Amazon S3 location.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -91,6 +91,7 @@ declare const ExportVectorEnrichmentJobCommand_base: {
91
91
  * @throws {@link SageMakerGeospatialServiceException}
92
92
  * <p>Base exception class for all service exceptions from SageMakerGeospatial service.</p>
93
93
  *
94
+ * @public
94
95
  */
95
96
  export declare class ExportVectorEnrichmentJobCommand extends ExportVectorEnrichmentJobCommand_base {
96
97
  }
@@ -22,10 +22,10 @@ export interface GetEarthObservationJobCommandOutput extends GetEarthObservation
22
22
  }
23
23
  declare const GetEarthObservationJobCommand_base: {
24
24
  new (input: GetEarthObservationJobCommandInput): import("@smithy/smithy-client").CommandImpl<GetEarthObservationJobCommandInput, GetEarthObservationJobCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetEarthObservationJobCommandInput): import("@smithy/smithy-client").CommandImpl<GetEarthObservationJobCommandInput, GetEarthObservationJobCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Get the details for a previously initiated Earth Observation job.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -236,6 +236,7 @@ declare const GetEarthObservationJobCommand_base: {
236
236
  * @throws {@link SageMakerGeospatialServiceException}
237
237
  * <p>Base exception class for all service exceptions from SageMakerGeospatial service.</p>
238
238
  *
239
+ * @public
239
240
  */
240
241
  export declare class GetEarthObservationJobCommand extends GetEarthObservationJobCommand_base {
241
242
  }
@@ -22,10 +22,10 @@ export interface GetRasterDataCollectionCommandOutput extends GetRasterDataColle
22
22
  }
23
23
  declare const GetRasterDataCollectionCommand_base: {
24
24
  new (input: GetRasterDataCollectionCommandInput): import("@smithy/smithy-client").CommandImpl<GetRasterDataCollectionCommandInput, GetRasterDataCollectionCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetRasterDataCollectionCommandInput): import("@smithy/smithy-client").CommandImpl<GetRasterDataCollectionCommandInput, GetRasterDataCollectionCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Use this operation to get details of a specific raster data collection.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -86,6 +86,7 @@ declare const GetRasterDataCollectionCommand_base: {
86
86
  * @throws {@link SageMakerGeospatialServiceException}
87
87
  * <p>Base exception class for all service exceptions from SageMakerGeospatial service.</p>
88
88
  *
89
+ * @public
89
90
  */
90
91
  export declare class GetRasterDataCollectionCommand extends GetRasterDataCollectionCommand_base {
91
92
  }
@@ -23,10 +23,10 @@ export interface GetTileCommandOutput extends Omit<GetTileOutput, "BinaryFile">,
23
23
  }
24
24
  declare const GetTileCommand_base: {
25
25
  new (input: GetTileCommandInput): import("@smithy/smithy-client").CommandImpl<GetTileCommandInput, GetTileCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: GetTileCommandInput): import("@smithy/smithy-client").CommandImpl<GetTileCommandInput, GetTileCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
27
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
27
28
  };
28
29
  /**
29
- * @public
30
30
  * <p>Gets a web mercator tile for the given Earth Observation job.</p>
31
31
  * @example
32
32
  * Use a bare-bones client and the command you need to make an API call.
@@ -82,6 +82,7 @@ declare const GetTileCommand_base: {
82
82
  * @throws {@link SageMakerGeospatialServiceException}
83
83
  * <p>Base exception class for all service exceptions from SageMakerGeospatial service.</p>
84
84
  *
85
+ * @public
85
86
  */
86
87
  export declare class GetTileCommand extends GetTileCommand_base {
87
88
  }
@@ -22,10 +22,10 @@ export interface GetVectorEnrichmentJobCommandOutput extends GetVectorEnrichment
22
22
  }
23
23
  declare const GetVectorEnrichmentJobCommand_base: {
24
24
  new (input: GetVectorEnrichmentJobCommandInput): import("@smithy/smithy-client").CommandImpl<GetVectorEnrichmentJobCommandInput, GetVectorEnrichmentJobCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: GetVectorEnrichmentJobCommandInput): import("@smithy/smithy-client").CommandImpl<GetVectorEnrichmentJobCommandInput, GetVectorEnrichmentJobCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves details of a Vector Enrichment Job for a given job Amazon Resource Name (ARN).</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -108,6 +108,7 @@ declare const GetVectorEnrichmentJobCommand_base: {
108
108
  * @throws {@link SageMakerGeospatialServiceException}
109
109
  * <p>Base exception class for all service exceptions from SageMakerGeospatial service.</p>
110
110
  *
111
+ * @public
111
112
  */
112
113
  export declare class GetVectorEnrichmentJobCommand extends GetVectorEnrichmentJobCommand_base {
113
114
  }
@@ -22,10 +22,10 @@ export interface ListEarthObservationJobsCommandOutput extends ListEarthObservat
22
22
  }
23
23
  declare const ListEarthObservationJobsCommand_base: {
24
24
  new (input: ListEarthObservationJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListEarthObservationJobsCommandInput, ListEarthObservationJobsCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListEarthObservationJobsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListEarthObservationJobsCommandInput, ListEarthObservationJobsCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Use this operation to get a list of the Earth Observation jobs associated with the calling Amazon Web Services account.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -85,6 +85,7 @@ declare const ListEarthObservationJobsCommand_base: {
85
85
  * @throws {@link SageMakerGeospatialServiceException}
86
86
  * <p>Base exception class for all service exceptions from SageMakerGeospatial service.</p>
87
87
  *
88
+ * @public
88
89
  */
89
90
  export declare class ListEarthObservationJobsCommand extends ListEarthObservationJobsCommand_base {
90
91
  }
@@ -22,10 +22,10 @@ export interface ListRasterDataCollectionsCommandOutput extends ListRasterDataCo
22
22
  }
23
23
  declare const ListRasterDataCollectionsCommand_base: {
24
24
  new (input: ListRasterDataCollectionsCommandInput): import("@smithy/smithy-client").CommandImpl<ListRasterDataCollectionsCommandInput, ListRasterDataCollectionsCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListRasterDataCollectionsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListRasterDataCollectionsCommandInput, ListRasterDataCollectionsCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Use this operation to get raster data collections.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -89,6 +89,7 @@ declare const ListRasterDataCollectionsCommand_base: {
89
89
  * @throws {@link SageMakerGeospatialServiceException}
90
90
  * <p>Base exception class for all service exceptions from SageMakerGeospatial service.</p>
91
91
  *
92
+ * @public
92
93
  */
93
94
  export declare class ListRasterDataCollectionsCommand extends ListRasterDataCollectionsCommand_base {
94
95
  }
@@ -22,10 +22,10 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
22
22
  }
23
23
  declare const ListTagsForResourceCommand_base: {
24
24
  new (input: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: ListTagsForResourceCommandInput): import("@smithy/smithy-client").CommandImpl<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Lists the tags attached to the resource.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -70,6 +70,7 @@ declare const ListTagsForResourceCommand_base: {
70
70
  * @throws {@link SageMakerGeospatialServiceException}
71
71
  * <p>Base exception class for all service exceptions from SageMakerGeospatial service.</p>
72
72
  *
73
+ * @public
73
74
  */
74
75
  export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {
75
76
  }
@@ -22,10 +22,10 @@ export interface ListVectorEnrichmentJobsCommandOutput extends ListVectorEnrichm
22
22
  }
23
23
  declare const ListVectorEnrichmentJobsCommand_base: {
24
24
  new (input: ListVectorEnrichmentJobsCommandInput): import("@smithy/smithy-client").CommandImpl<ListVectorEnrichmentJobsCommandInput, ListVectorEnrichmentJobsCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (...[input]: [] | [ListVectorEnrichmentJobsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListVectorEnrichmentJobsCommandInput, ListVectorEnrichmentJobsCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Retrieves a list of vector enrichment jobs.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -85,6 +85,7 @@ declare const ListVectorEnrichmentJobsCommand_base: {
85
85
  * @throws {@link SageMakerGeospatialServiceException}
86
86
  * <p>Base exception class for all service exceptions from SageMakerGeospatial service.</p>
87
87
  *
88
+ * @public
88
89
  */
89
90
  export declare class ListVectorEnrichmentJobsCommand extends ListVectorEnrichmentJobsCommand_base {
90
91
  }
@@ -22,10 +22,10 @@ export interface SearchRasterDataCollectionCommandOutput extends SearchRasterDat
22
22
  }
23
23
  declare const SearchRasterDataCollectionCommand_base: {
24
24
  new (input: SearchRasterDataCollectionCommandInput): import("@smithy/smithy-client").CommandImpl<SearchRasterDataCollectionCommandInput, SearchRasterDataCollectionCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: SearchRasterDataCollectionCommandInput): import("@smithy/smithy-client").CommandImpl<SearchRasterDataCollectionCommandInput, SearchRasterDataCollectionCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Allows you run image query on a specific raster data collection to get a list of the satellite imagery matching the selected filters.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -165,6 +165,7 @@ declare const SearchRasterDataCollectionCommand_base: {
165
165
  * @throws {@link SageMakerGeospatialServiceException}
166
166
  * <p>Base exception class for all service exceptions from SageMakerGeospatial service.</p>
167
167
  *
168
+ * @public
168
169
  */
169
170
  export declare class SearchRasterDataCollectionCommand extends SearchRasterDataCollectionCommand_base {
170
171
  }
@@ -22,10 +22,10 @@ export interface StartEarthObservationJobCommandOutput extends StartEarthObserva
22
22
  }
23
23
  declare const StartEarthObservationJobCommand_base: {
24
24
  new (input: StartEarthObservationJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartEarthObservationJobCommandInput, StartEarthObservationJobCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: StartEarthObservationJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartEarthObservationJobCommandInput, StartEarthObservationJobCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Use this operation to create an Earth observation job.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -364,6 +364,7 @@ declare const StartEarthObservationJobCommand_base: {
364
364
  * @throws {@link SageMakerGeospatialServiceException}
365
365
  * <p>Base exception class for all service exceptions from SageMakerGeospatial service.</p>
366
366
  *
367
+ * @public
367
368
  */
368
369
  export declare class StartEarthObservationJobCommand extends StartEarthObservationJobCommand_base {
369
370
  }
@@ -22,10 +22,10 @@ export interface StartVectorEnrichmentJobCommandOutput extends StartVectorEnrich
22
22
  }
23
23
  declare const StartVectorEnrichmentJobCommand_base: {
24
24
  new (input: StartVectorEnrichmentJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartVectorEnrichmentJobCommandInput, StartVectorEnrichmentJobCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: StartVectorEnrichmentJobCommandInput): import("@smithy/smithy-client").CommandImpl<StartVectorEnrichmentJobCommandInput, StartVectorEnrichmentJobCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Creates a Vector Enrichment job for the supplied job type. Currently, there are two supported job types: reverse geocoding and map matching.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -132,6 +132,7 @@ declare const StartVectorEnrichmentJobCommand_base: {
132
132
  * @throws {@link SageMakerGeospatialServiceException}
133
133
  * <p>Base exception class for all service exceptions from SageMakerGeospatial service.</p>
134
134
  *
135
+ * @public
135
136
  */
136
137
  export declare class StartVectorEnrichmentJobCommand extends StartVectorEnrichmentJobCommand_base {
137
138
  }
@@ -22,10 +22,10 @@ export interface StopEarthObservationJobCommandOutput extends StopEarthObservati
22
22
  }
23
23
  declare const StopEarthObservationJobCommand_base: {
24
24
  new (input: StopEarthObservationJobCommandInput): import("@smithy/smithy-client").CommandImpl<StopEarthObservationJobCommandInput, StopEarthObservationJobCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: StopEarthObservationJobCommandInput): import("@smithy/smithy-client").CommandImpl<StopEarthObservationJobCommandInput, StopEarthObservationJobCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Use this operation to stop an existing earth observation job.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -69,6 +69,7 @@ declare const StopEarthObservationJobCommand_base: {
69
69
  * @throws {@link SageMakerGeospatialServiceException}
70
70
  * <p>Base exception class for all service exceptions from SageMakerGeospatial service.</p>
71
71
  *
72
+ * @public
72
73
  */
73
74
  export declare class StopEarthObservationJobCommand extends StopEarthObservationJobCommand_base {
74
75
  }
@@ -22,10 +22,10 @@ export interface StopVectorEnrichmentJobCommandOutput extends StopVectorEnrichme
22
22
  }
23
23
  declare const StopVectorEnrichmentJobCommand_base: {
24
24
  new (input: StopVectorEnrichmentJobCommandInput): import("@smithy/smithy-client").CommandImpl<StopVectorEnrichmentJobCommandInput, StopVectorEnrichmentJobCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: StopVectorEnrichmentJobCommandInput): import("@smithy/smithy-client").CommandImpl<StopVectorEnrichmentJobCommandInput, StopVectorEnrichmentJobCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>Stops the Vector Enrichment job for a given job ARN.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -69,6 +69,7 @@ declare const StopVectorEnrichmentJobCommand_base: {
69
69
  * @throws {@link SageMakerGeospatialServiceException}
70
70
  * <p>Base exception class for all service exceptions from SageMakerGeospatial service.</p>
71
71
  *
72
+ * @public
72
73
  */
73
74
  export declare class StopVectorEnrichmentJobCommand extends StopVectorEnrichmentJobCommand_base {
74
75
  }
@@ -22,10 +22,10 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
22
22
  }
23
23
  declare const TagResourceCommand_base: {
24
24
  new (input: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: TagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<TagResourceCommandInput, TagResourceCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>The resource you want to tag.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -69,6 +69,7 @@ declare const TagResourceCommand_base: {
69
69
  * @throws {@link SageMakerGeospatialServiceException}
70
70
  * <p>Base exception class for all service exceptions from SageMakerGeospatial service.</p>
71
71
  *
72
+ * @public
72
73
  */
73
74
  export declare class TagResourceCommand extends TagResourceCommand_base {
74
75
  }
@@ -22,10 +22,10 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
22
22
  }
23
23
  declare const UntagResourceCommand_base: {
24
24
  new (input: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ new (__0_0: UntagResourceCommandInput): import("@smithy/smithy-client").CommandImpl<UntagResourceCommandInput, UntagResourceCommandOutput, SageMakerGeospatialClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
26
  getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
27
  };
27
28
  /**
28
- * @public
29
29
  * <p>The resource you want to untag.</p>
30
30
  * @example
31
31
  * Use a bare-bones client and the command you need to make an API call.
@@ -69,6 +69,7 @@ declare const UntagResourceCommand_base: {
69
69
  * @throws {@link SageMakerGeospatialServiceException}
70
70
  * <p>Base exception class for all service exceptions from SageMakerGeospatial service.</p>
71
71
  *
72
+ * @public
72
73
  */
73
74
  export declare class UntagResourceCommand extends UntagResourceCommand_base {
74
75
  }