@aws-sdk/client-sagemaker-geospatial 3.221.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 (163) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +205 -0
  3. package/dist-cjs/SageMakerGeospatial.js +292 -0
  4. package/dist-cjs/SageMakerGeospatialClient.js +40 -0
  5. package/dist-cjs/commands/DeleteEarthObservationJobCommand.js +46 -0
  6. package/dist-cjs/commands/DeleteVectorEnrichmentJobCommand.js +46 -0
  7. package/dist-cjs/commands/ExportEarthObservationJobCommand.js +46 -0
  8. package/dist-cjs/commands/ExportVectorEnrichmentJobCommand.js +46 -0
  9. package/dist-cjs/commands/GetEarthObservationJobCommand.js +46 -0
  10. package/dist-cjs/commands/GetRasterDataCollectionCommand.js +46 -0
  11. package/dist-cjs/commands/GetTileCommand.js +46 -0
  12. package/dist-cjs/commands/GetVectorEnrichmentJobCommand.js +46 -0
  13. package/dist-cjs/commands/ListEarthObservationJobsCommand.js +46 -0
  14. package/dist-cjs/commands/ListRasterDataCollectionsCommand.js +46 -0
  15. package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
  16. package/dist-cjs/commands/ListVectorEnrichmentJobsCommand.js +46 -0
  17. package/dist-cjs/commands/SearchRasterDataCollectionCommand.js +46 -0
  18. package/dist-cjs/commands/StartEarthObservationJobCommand.js +46 -0
  19. package/dist-cjs/commands/StartVectorEnrichmentJobCommand.js +46 -0
  20. package/dist-cjs/commands/StopEarthObservationJobCommand.js +46 -0
  21. package/dist-cjs/commands/StopVectorEnrichmentJobCommand.js +46 -0
  22. package/dist-cjs/commands/TagResourceCommand.js +46 -0
  23. package/dist-cjs/commands/UntagResourceCommand.js +46 -0
  24. package/dist-cjs/commands/index.js +22 -0
  25. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  26. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  27. package/dist-cjs/endpoint/ruleset.js +312 -0
  28. package/dist-cjs/index.js +11 -0
  29. package/dist-cjs/models/SageMakerGeospatialServiceException.js +11 -0
  30. package/dist-cjs/models/index.js +4 -0
  31. package/dist-cjs/models/models_0.js +857 -0
  32. package/dist-cjs/pagination/Interfaces.js +2 -0
  33. package/dist-cjs/pagination/ListEarthObservationJobsPaginator.js +35 -0
  34. package/dist-cjs/pagination/ListRasterDataCollectionsPaginator.js +35 -0
  35. package/dist-cjs/pagination/ListVectorEnrichmentJobsPaginator.js +35 -0
  36. package/dist-cjs/pagination/SearchRasterDataCollectionPaginator.js +35 -0
  37. package/dist-cjs/pagination/index.js +8 -0
  38. package/dist-cjs/protocols/Aws_restJson1.js +2776 -0
  39. package/dist-cjs/runtimeConfig.browser.js +44 -0
  40. package/dist-cjs/runtimeConfig.js +52 -0
  41. package/dist-cjs/runtimeConfig.native.js +15 -0
  42. package/dist-cjs/runtimeConfig.shared.js +18 -0
  43. package/dist-es/SageMakerGeospatial.js +288 -0
  44. package/dist-es/SageMakerGeospatialClient.js +36 -0
  45. package/dist-es/commands/DeleteEarthObservationJobCommand.js +42 -0
  46. package/dist-es/commands/DeleteVectorEnrichmentJobCommand.js +42 -0
  47. package/dist-es/commands/ExportEarthObservationJobCommand.js +42 -0
  48. package/dist-es/commands/ExportVectorEnrichmentJobCommand.js +42 -0
  49. package/dist-es/commands/GetEarthObservationJobCommand.js +42 -0
  50. package/dist-es/commands/GetRasterDataCollectionCommand.js +42 -0
  51. package/dist-es/commands/GetTileCommand.js +42 -0
  52. package/dist-es/commands/GetVectorEnrichmentJobCommand.js +42 -0
  53. package/dist-es/commands/ListEarthObservationJobsCommand.js +42 -0
  54. package/dist-es/commands/ListRasterDataCollectionsCommand.js +42 -0
  55. package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
  56. package/dist-es/commands/ListVectorEnrichmentJobsCommand.js +42 -0
  57. package/dist-es/commands/SearchRasterDataCollectionCommand.js +42 -0
  58. package/dist-es/commands/StartEarthObservationJobCommand.js +42 -0
  59. package/dist-es/commands/StartVectorEnrichmentJobCommand.js +42 -0
  60. package/dist-es/commands/StopEarthObservationJobCommand.js +42 -0
  61. package/dist-es/commands/StopVectorEnrichmentJobCommand.js +42 -0
  62. package/dist-es/commands/TagResourceCommand.js +42 -0
  63. package/dist-es/commands/UntagResourceCommand.js +42 -0
  64. package/dist-es/commands/index.js +19 -0
  65. package/dist-es/endpoint/EndpointParameters.js +8 -0
  66. package/dist-es/endpoint/endpointResolver.js +8 -0
  67. package/dist-es/endpoint/ruleset.js +309 -0
  68. package/dist-es/index.js +6 -0
  69. package/dist-es/models/SageMakerGeospatialServiceException.js +7 -0
  70. package/dist-es/models/index.js +1 -0
  71. package/dist-es/models/models_0.js +748 -0
  72. package/dist-es/pagination/Interfaces.js +1 -0
  73. package/dist-es/pagination/ListEarthObservationJobsPaginator.js +31 -0
  74. package/dist-es/pagination/ListRasterDataCollectionsPaginator.js +31 -0
  75. package/dist-es/pagination/ListVectorEnrichmentJobsPaginator.js +31 -0
  76. package/dist-es/pagination/SearchRasterDataCollectionPaginator.js +31 -0
  77. package/dist-es/pagination/index.js +5 -0
  78. package/dist-es/protocols/Aws_restJson1.js +2735 -0
  79. package/dist-es/runtimeConfig.browser.js +39 -0
  80. package/dist-es/runtimeConfig.js +47 -0
  81. package/dist-es/runtimeConfig.native.js +11 -0
  82. package/dist-es/runtimeConfig.shared.js +14 -0
  83. package/dist-types/SageMakerGeospatial.d.ts +140 -0
  84. package/dist-types/SageMakerGeospatialClient.d.ts +165 -0
  85. package/dist-types/commands/DeleteEarthObservationJobCommand.d.ts +37 -0
  86. package/dist-types/commands/DeleteVectorEnrichmentJobCommand.d.ts +37 -0
  87. package/dist-types/commands/ExportEarthObservationJobCommand.d.ts +37 -0
  88. package/dist-types/commands/ExportVectorEnrichmentJobCommand.d.ts +37 -0
  89. package/dist-types/commands/GetEarthObservationJobCommand.d.ts +37 -0
  90. package/dist-types/commands/GetRasterDataCollectionCommand.d.ts +37 -0
  91. package/dist-types/commands/GetTileCommand.d.ts +37 -0
  92. package/dist-types/commands/GetVectorEnrichmentJobCommand.d.ts +37 -0
  93. package/dist-types/commands/ListEarthObservationJobsCommand.d.ts +37 -0
  94. package/dist-types/commands/ListRasterDataCollectionsCommand.d.ts +37 -0
  95. package/dist-types/commands/ListTagsForResourceCommand.d.ts +37 -0
  96. package/dist-types/commands/ListVectorEnrichmentJobsCommand.d.ts +37 -0
  97. package/dist-types/commands/SearchRasterDataCollectionCommand.d.ts +37 -0
  98. package/dist-types/commands/StartEarthObservationJobCommand.d.ts +37 -0
  99. package/dist-types/commands/StartVectorEnrichmentJobCommand.d.ts +37 -0
  100. package/dist-types/commands/StopEarthObservationJobCommand.d.ts +37 -0
  101. package/dist-types/commands/StopVectorEnrichmentJobCommand.d.ts +37 -0
  102. package/dist-types/commands/TagResourceCommand.d.ts +37 -0
  103. package/dist-types/commands/UntagResourceCommand.d.ts +37 -0
  104. package/dist-types/commands/index.d.ts +19 -0
  105. package/dist-types/endpoint/EndpointParameters.d.ts +19 -0
  106. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  107. package/dist-types/endpoint/ruleset.d.ts +2 -0
  108. package/dist-types/index.d.ts +6 -0
  109. package/dist-types/models/SageMakerGeospatialServiceException.d.ts +10 -0
  110. package/dist-types/models/index.d.ts +1 -0
  111. package/dist-types/models/models_0.d.ts +2704 -0
  112. package/dist-types/pagination/Interfaces.d.ts +6 -0
  113. package/dist-types/pagination/ListEarthObservationJobsPaginator.d.ts +4 -0
  114. package/dist-types/pagination/ListRasterDataCollectionsPaginator.d.ts +4 -0
  115. package/dist-types/pagination/ListVectorEnrichmentJobsPaginator.d.ts +4 -0
  116. package/dist-types/pagination/SearchRasterDataCollectionPaginator.d.ts +4 -0
  117. package/dist-types/pagination/index.d.ts +5 -0
  118. package/dist-types/protocols/Aws_restJson1.d.ts +59 -0
  119. package/dist-types/runtimeConfig.browser.d.ts +43 -0
  120. package/dist-types/runtimeConfig.d.ts +43 -0
  121. package/dist-types/runtimeConfig.native.d.ts +42 -0
  122. package/dist-types/runtimeConfig.shared.d.ts +16 -0
  123. package/dist-types/ts3.4/SageMakerGeospatial.d.ts +327 -0
  124. package/dist-types/ts3.4/SageMakerGeospatialClient.d.ts +228 -0
  125. package/dist-types/ts3.4/commands/DeleteEarthObservationJobCommand.d.ts +41 -0
  126. package/dist-types/ts3.4/commands/DeleteVectorEnrichmentJobCommand.d.ts +41 -0
  127. package/dist-types/ts3.4/commands/ExportEarthObservationJobCommand.d.ts +41 -0
  128. package/dist-types/ts3.4/commands/ExportVectorEnrichmentJobCommand.d.ts +41 -0
  129. package/dist-types/ts3.4/commands/GetEarthObservationJobCommand.d.ts +41 -0
  130. package/dist-types/ts3.4/commands/GetRasterDataCollectionCommand.d.ts +41 -0
  131. package/dist-types/ts3.4/commands/GetTileCommand.d.ts +35 -0
  132. package/dist-types/ts3.4/commands/GetVectorEnrichmentJobCommand.d.ts +41 -0
  133. package/dist-types/ts3.4/commands/ListEarthObservationJobsCommand.d.ts +41 -0
  134. package/dist-types/ts3.4/commands/ListRasterDataCollectionsCommand.d.ts +41 -0
  135. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -0
  136. package/dist-types/ts3.4/commands/ListVectorEnrichmentJobsCommand.d.ts +41 -0
  137. package/dist-types/ts3.4/commands/SearchRasterDataCollectionCommand.d.ts +41 -0
  138. package/dist-types/ts3.4/commands/StartEarthObservationJobCommand.d.ts +41 -0
  139. package/dist-types/ts3.4/commands/StartVectorEnrichmentJobCommand.d.ts +41 -0
  140. package/dist-types/ts3.4/commands/StopEarthObservationJobCommand.d.ts +41 -0
  141. package/dist-types/ts3.4/commands/StopVectorEnrichmentJobCommand.d.ts +41 -0
  142. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
  143. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -0
  144. package/dist-types/ts3.4/commands/index.d.ts +19 -0
  145. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +34 -0
  146. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  147. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  148. package/dist-types/ts3.4/index.d.ts +6 -0
  149. package/dist-types/ts3.4/models/SageMakerGeospatialServiceException.d.ts +7 -0
  150. package/dist-types/ts3.4/models/index.d.ts +1 -0
  151. package/dist-types/ts3.4/models/models_0.d.ts +1265 -0
  152. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -0
  153. package/dist-types/ts3.4/pagination/ListEarthObservationJobsPaginator.d.ts +11 -0
  154. package/dist-types/ts3.4/pagination/ListRasterDataCollectionsPaginator.d.ts +11 -0
  155. package/dist-types/ts3.4/pagination/ListVectorEnrichmentJobsPaginator.d.ts +11 -0
  156. package/dist-types/ts3.4/pagination/SearchRasterDataCollectionPaginator.d.ts +11 -0
  157. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  158. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +236 -0
  159. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +91 -0
  160. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  161. package/dist-types/ts3.4/runtimeConfig.native.d.ts +80 -0
  162. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +18 -0
  163. package/package.json +105 -0
@@ -0,0 +1,6 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { SageMakerGeospatial } from "../SageMakerGeospatial";
3
+ import { SageMakerGeospatialClient } from "../SageMakerGeospatialClient";
4
+ export interface SageMakerGeospatialPaginationConfiguration extends PaginationConfiguration {
5
+ client: SageMakerGeospatial | SageMakerGeospatialClient;
6
+ }
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListEarthObservationJobsCommandInput, ListEarthObservationJobsCommandOutput } from "../commands/ListEarthObservationJobsCommand";
3
+ import { SageMakerGeospatialPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListEarthObservationJobs(config: SageMakerGeospatialPaginationConfiguration, input: ListEarthObservationJobsCommandInput, ...additionalArguments: any): Paginator<ListEarthObservationJobsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListRasterDataCollectionsCommandInput, ListRasterDataCollectionsCommandOutput } from "../commands/ListRasterDataCollectionsCommand";
3
+ import { SageMakerGeospatialPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListRasterDataCollections(config: SageMakerGeospatialPaginationConfiguration, input: ListRasterDataCollectionsCommandInput, ...additionalArguments: any): Paginator<ListRasterDataCollectionsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { ListVectorEnrichmentJobsCommandInput, ListVectorEnrichmentJobsCommandOutput } from "../commands/ListVectorEnrichmentJobsCommand";
3
+ import { SageMakerGeospatialPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateListVectorEnrichmentJobs(config: SageMakerGeospatialPaginationConfiguration, input: ListVectorEnrichmentJobsCommandInput, ...additionalArguments: any): Paginator<ListVectorEnrichmentJobsCommandOutput>;
@@ -0,0 +1,4 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import { SearchRasterDataCollectionCommandInput, SearchRasterDataCollectionCommandOutput } from "../commands/SearchRasterDataCollectionCommand";
3
+ import { SageMakerGeospatialPaginationConfiguration } from "./Interfaces";
4
+ export declare function paginateSearchRasterDataCollection(config: SageMakerGeospatialPaginationConfiguration, input: SearchRasterDataCollectionCommandInput, ...additionalArguments: any): Paginator<SearchRasterDataCollectionCommandOutput>;
@@ -0,0 +1,5 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListEarthObservationJobsPaginator";
3
+ export * from "./ListRasterDataCollectionsPaginator";
4
+ export * from "./ListVectorEnrichmentJobsPaginator";
5
+ export * from "./SearchRasterDataCollectionPaginator";
@@ -0,0 +1,59 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
+ import { SdkStreamSerdeContext as __SdkStreamSerdeContext, SerdeContext as __SerdeContext } from "@aws-sdk/types";
3
+ import { DeleteEarthObservationJobCommandInput, DeleteEarthObservationJobCommandOutput } from "../commands/DeleteEarthObservationJobCommand";
4
+ import { DeleteVectorEnrichmentJobCommandInput, DeleteVectorEnrichmentJobCommandOutput } from "../commands/DeleteVectorEnrichmentJobCommand";
5
+ import { ExportEarthObservationJobCommandInput, ExportEarthObservationJobCommandOutput } from "../commands/ExportEarthObservationJobCommand";
6
+ import { ExportVectorEnrichmentJobCommandInput, ExportVectorEnrichmentJobCommandOutput } from "../commands/ExportVectorEnrichmentJobCommand";
7
+ import { GetEarthObservationJobCommandInput, GetEarthObservationJobCommandOutput } from "../commands/GetEarthObservationJobCommand";
8
+ import { GetRasterDataCollectionCommandInput, GetRasterDataCollectionCommandOutput } from "../commands/GetRasterDataCollectionCommand";
9
+ import { GetTileCommandInput, GetTileCommandOutput } from "../commands/GetTileCommand";
10
+ import { GetVectorEnrichmentJobCommandInput, GetVectorEnrichmentJobCommandOutput } from "../commands/GetVectorEnrichmentJobCommand";
11
+ import { ListEarthObservationJobsCommandInput, ListEarthObservationJobsCommandOutput } from "../commands/ListEarthObservationJobsCommand";
12
+ import { ListRasterDataCollectionsCommandInput, ListRasterDataCollectionsCommandOutput } from "../commands/ListRasterDataCollectionsCommand";
13
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
14
+ import { ListVectorEnrichmentJobsCommandInput, ListVectorEnrichmentJobsCommandOutput } from "../commands/ListVectorEnrichmentJobsCommand";
15
+ import { SearchRasterDataCollectionCommandInput, SearchRasterDataCollectionCommandOutput } from "../commands/SearchRasterDataCollectionCommand";
16
+ import { StartEarthObservationJobCommandInput, StartEarthObservationJobCommandOutput } from "../commands/StartEarthObservationJobCommand";
17
+ import { StartVectorEnrichmentJobCommandInput, StartVectorEnrichmentJobCommandOutput } from "../commands/StartVectorEnrichmentJobCommand";
18
+ import { StopEarthObservationJobCommandInput, StopEarthObservationJobCommandOutput } from "../commands/StopEarthObservationJobCommand";
19
+ import { StopVectorEnrichmentJobCommandInput, StopVectorEnrichmentJobCommandOutput } from "../commands/StopVectorEnrichmentJobCommand";
20
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
21
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
22
+ export declare const serializeAws_restJson1DeleteEarthObservationJobCommand: (input: DeleteEarthObservationJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ export declare const serializeAws_restJson1DeleteVectorEnrichmentJobCommand: (input: DeleteVectorEnrichmentJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
+ export declare const serializeAws_restJson1ExportEarthObservationJobCommand: (input: ExportEarthObservationJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
+ export declare const serializeAws_restJson1ExportVectorEnrichmentJobCommand: (input: ExportVectorEnrichmentJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
+ export declare const serializeAws_restJson1GetEarthObservationJobCommand: (input: GetEarthObservationJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ export declare const serializeAws_restJson1GetRasterDataCollectionCommand: (input: GetRasterDataCollectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
+ export declare const serializeAws_restJson1GetTileCommand: (input: GetTileCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
+ export declare const serializeAws_restJson1GetVectorEnrichmentJobCommand: (input: GetVectorEnrichmentJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
30
+ export declare const serializeAws_restJson1ListEarthObservationJobsCommand: (input: ListEarthObservationJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ export declare const serializeAws_restJson1ListRasterDataCollectionsCommand: (input: ListRasterDataCollectionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
32
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
33
+ export declare const serializeAws_restJson1ListVectorEnrichmentJobsCommand: (input: ListVectorEnrichmentJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
34
+ export declare const serializeAws_restJson1SearchRasterDataCollectionCommand: (input: SearchRasterDataCollectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
+ export declare const serializeAws_restJson1StartEarthObservationJobCommand: (input: StartEarthObservationJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
36
+ export declare const serializeAws_restJson1StartVectorEnrichmentJobCommand: (input: StartVectorEnrichmentJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
+ export declare const serializeAws_restJson1StopEarthObservationJobCommand: (input: StopEarthObservationJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
38
+ export declare const serializeAws_restJson1StopVectorEnrichmentJobCommand: (input: StopVectorEnrichmentJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
+ export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
40
+ export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
41
+ export declare const deserializeAws_restJson1DeleteEarthObservationJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteEarthObservationJobCommandOutput>;
42
+ export declare const deserializeAws_restJson1DeleteVectorEnrichmentJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteVectorEnrichmentJobCommandOutput>;
43
+ export declare const deserializeAws_restJson1ExportEarthObservationJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExportEarthObservationJobCommandOutput>;
44
+ export declare const deserializeAws_restJson1ExportVectorEnrichmentJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ExportVectorEnrichmentJobCommandOutput>;
45
+ export declare const deserializeAws_restJson1GetEarthObservationJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEarthObservationJobCommandOutput>;
46
+ export declare const deserializeAws_restJson1GetRasterDataCollectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetRasterDataCollectionCommandOutput>;
47
+ export declare const deserializeAws_restJson1GetTileCommand: (output: __HttpResponse, context: __SerdeContext & __SdkStreamSerdeContext) => Promise<GetTileCommandOutput>;
48
+ export declare const deserializeAws_restJson1GetVectorEnrichmentJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetVectorEnrichmentJobCommandOutput>;
49
+ export declare const deserializeAws_restJson1ListEarthObservationJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEarthObservationJobsCommandOutput>;
50
+ export declare const deserializeAws_restJson1ListRasterDataCollectionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListRasterDataCollectionsCommandOutput>;
51
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
52
+ export declare const deserializeAws_restJson1ListVectorEnrichmentJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListVectorEnrichmentJobsCommandOutput>;
53
+ export declare const deserializeAws_restJson1SearchRasterDataCollectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SearchRasterDataCollectionCommandOutput>;
54
+ export declare const deserializeAws_restJson1StartEarthObservationJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartEarthObservationJobCommandOutput>;
55
+ export declare const deserializeAws_restJson1StartVectorEnrichmentJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartVectorEnrichmentJobCommandOutput>;
56
+ export declare const deserializeAws_restJson1StopEarthObservationJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopEarthObservationJobCommandOutput>;
57
+ export declare const deserializeAws_restJson1StopVectorEnrichmentJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopVectorEnrichmentJobCommandOutput>;
58
+ export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
59
+ export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
@@ -0,0 +1,43 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { SageMakerGeospatialClientConfig } from "./SageMakerGeospatialClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: SageMakerGeospatialClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<any>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sdkStreamMixin: import("@aws-sdk/types").SdkStreamMixinInjector;
17
+ sha256: import("@aws-sdk/types").HashConstructor;
18
+ streamCollector: import("@aws-sdk/types").StreamCollector;
19
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
+ utf8Decoder: import("@aws-sdk/types").Decoder;
22
+ utf8Encoder: import("@aws-sdk/types").Encoder;
23
+ apiVersion: string;
24
+ urlParser: import("@aws-sdk/types").UrlParser;
25
+ base64Decoder: import("@aws-sdk/types").Decoder;
26
+ base64Encoder: import("@aws-sdk/types").Encoder;
27
+ disableHostPrefix: boolean;
28
+ logger: import("@aws-sdk/types").Logger;
29
+ serviceId: string;
30
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
31
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
32
+ logger?: import("@aws-sdk/types").Logger | undefined;
33
+ }) => import("@aws-sdk/types").EndpointV2;
34
+ tls?: boolean | undefined;
35
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
36
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
37
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
38
+ signingEscapePath?: boolean | undefined;
39
+ systemClockOffset?: number | undefined;
40
+ signingRegion?: string | undefined;
41
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
42
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
43
+ };
@@ -0,0 +1,43 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { SageMakerGeospatialClientConfig } from "./SageMakerGeospatialClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: SageMakerGeospatialClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
+ region: string | import("@aws-sdk/types").Provider<string>;
14
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
16
+ sdkStreamMixin: import("@aws-sdk/types").SdkStreamMixinInjector;
17
+ sha256: import("@aws-sdk/types").HashConstructor;
18
+ streamCollector: import("@aws-sdk/types").StreamCollector;
19
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
+ utf8Decoder: import("@aws-sdk/types").Decoder;
22
+ utf8Encoder: import("@aws-sdk/types").Encoder;
23
+ apiVersion: string;
24
+ urlParser: import("@aws-sdk/types").UrlParser;
25
+ base64Decoder: import("@aws-sdk/types").Decoder;
26
+ base64Encoder: import("@aws-sdk/types").Encoder;
27
+ disableHostPrefix: boolean;
28
+ logger: import("@aws-sdk/types").Logger;
29
+ serviceId: string;
30
+ endpoint?: ((string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>) & (string | import("@aws-sdk/types").Provider<string> | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>)) | undefined;
31
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
32
+ logger?: import("@aws-sdk/types").Logger | undefined;
33
+ }) => import("@aws-sdk/types").EndpointV2;
34
+ tls?: boolean | undefined;
35
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
36
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
37
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
38
+ signingEscapePath?: boolean | undefined;
39
+ systemClockOffset?: number | undefined;
40
+ signingRegion?: string | undefined;
41
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
42
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
43
+ };
@@ -0,0 +1,42 @@
1
+ import { SageMakerGeospatialClientConfig } from "./SageMakerGeospatialClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: SageMakerGeospatialClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@aws-sdk/types").HashConstructor;
8
+ requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ urlParser: import("@aws-sdk/types").UrlParser;
11
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
12
+ streamCollector: import("@aws-sdk/types").StreamCollector;
13
+ base64Decoder: import("@aws-sdk/types").Decoder;
14
+ base64Encoder: import("@aws-sdk/types").Encoder;
15
+ utf8Decoder: import("@aws-sdk/types").Decoder;
16
+ utf8Encoder: import("@aws-sdk/types").Encoder;
17
+ disableHostPrefix: boolean;
18
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
19
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
20
+ logger: import("@aws-sdk/types").Logger;
21
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
22
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
23
+ serviceId: string;
24
+ region: string | import("@aws-sdk/types").Provider<any>;
25
+ credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
26
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
27
+ defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
28
+ sdkStreamMixin: import("@aws-sdk/types").SdkStreamMixinInjector;
29
+ endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | import("@aws-sdk/types").EndpointV2 | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2> | undefined;
30
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
+ logger?: import("@aws-sdk/types").Logger | undefined;
32
+ }) => import("@aws-sdk/types").EndpointV2;
33
+ tls?: boolean | undefined;
34
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
35
+ credentials?: import("@aws-sdk/types").AwsCredentialIdentity | import("@aws-sdk/types").Provider<import("@aws-sdk/types").AwsCredentialIdentity> | undefined;
36
+ signer?: import("@aws-sdk/types").RequestSigner | ((authScheme?: import("@aws-sdk/types").AuthScheme | undefined) => Promise<import("@aws-sdk/types").RequestSigner>) | undefined;
37
+ signingEscapePath?: boolean | undefined;
38
+ systemClockOffset?: number | undefined;
39
+ signingRegion?: string | undefined;
40
+ signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
41
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
42
+ };
@@ -0,0 +1,16 @@
1
+ import { SageMakerGeospatialClientConfig } from "./SageMakerGeospatialClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: SageMakerGeospatialClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@aws-sdk/types").Decoder;
8
+ base64Encoder: import("@aws-sdk/types").Encoder;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@aws-sdk/types").Logger | undefined;
12
+ }) => import("@aws-sdk/types").EndpointV2;
13
+ logger: import("@aws-sdk/types").Logger;
14
+ serviceId: string;
15
+ urlParser: import("@aws-sdk/types").UrlParser;
16
+ };
@@ -0,0 +1,327 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import {
3
+ DeleteEarthObservationJobCommandInput,
4
+ DeleteEarthObservationJobCommandOutput,
5
+ } from "./commands/DeleteEarthObservationJobCommand";
6
+ import {
7
+ DeleteVectorEnrichmentJobCommandInput,
8
+ DeleteVectorEnrichmentJobCommandOutput,
9
+ } from "./commands/DeleteVectorEnrichmentJobCommand";
10
+ import {
11
+ ExportEarthObservationJobCommandInput,
12
+ ExportEarthObservationJobCommandOutput,
13
+ } from "./commands/ExportEarthObservationJobCommand";
14
+ import {
15
+ ExportVectorEnrichmentJobCommandInput,
16
+ ExportVectorEnrichmentJobCommandOutput,
17
+ } from "./commands/ExportVectorEnrichmentJobCommand";
18
+ import {
19
+ GetEarthObservationJobCommandInput,
20
+ GetEarthObservationJobCommandOutput,
21
+ } from "./commands/GetEarthObservationJobCommand";
22
+ import {
23
+ GetRasterDataCollectionCommandInput,
24
+ GetRasterDataCollectionCommandOutput,
25
+ } from "./commands/GetRasterDataCollectionCommand";
26
+ import {
27
+ GetTileCommandInput,
28
+ GetTileCommandOutput,
29
+ } from "./commands/GetTileCommand";
30
+ import {
31
+ GetVectorEnrichmentJobCommandInput,
32
+ GetVectorEnrichmentJobCommandOutput,
33
+ } from "./commands/GetVectorEnrichmentJobCommand";
34
+ import {
35
+ ListEarthObservationJobsCommandInput,
36
+ ListEarthObservationJobsCommandOutput,
37
+ } from "./commands/ListEarthObservationJobsCommand";
38
+ import {
39
+ ListRasterDataCollectionsCommandInput,
40
+ ListRasterDataCollectionsCommandOutput,
41
+ } from "./commands/ListRasterDataCollectionsCommand";
42
+ import {
43
+ ListTagsForResourceCommandInput,
44
+ ListTagsForResourceCommandOutput,
45
+ } from "./commands/ListTagsForResourceCommand";
46
+ import {
47
+ ListVectorEnrichmentJobsCommandInput,
48
+ ListVectorEnrichmentJobsCommandOutput,
49
+ } from "./commands/ListVectorEnrichmentJobsCommand";
50
+ import {
51
+ SearchRasterDataCollectionCommandInput,
52
+ SearchRasterDataCollectionCommandOutput,
53
+ } from "./commands/SearchRasterDataCollectionCommand";
54
+ import {
55
+ StartEarthObservationJobCommandInput,
56
+ StartEarthObservationJobCommandOutput,
57
+ } from "./commands/StartEarthObservationJobCommand";
58
+ import {
59
+ StartVectorEnrichmentJobCommandInput,
60
+ StartVectorEnrichmentJobCommandOutput,
61
+ } from "./commands/StartVectorEnrichmentJobCommand";
62
+ import {
63
+ StopEarthObservationJobCommandInput,
64
+ StopEarthObservationJobCommandOutput,
65
+ } from "./commands/StopEarthObservationJobCommand";
66
+ import {
67
+ StopVectorEnrichmentJobCommandInput,
68
+ StopVectorEnrichmentJobCommandOutput,
69
+ } from "./commands/StopVectorEnrichmentJobCommand";
70
+ import {
71
+ TagResourceCommandInput,
72
+ TagResourceCommandOutput,
73
+ } from "./commands/TagResourceCommand";
74
+ import {
75
+ UntagResourceCommandInput,
76
+ UntagResourceCommandOutput,
77
+ } from "./commands/UntagResourceCommand";
78
+ import { SageMakerGeospatialClient } from "./SageMakerGeospatialClient";
79
+ export declare class SageMakerGeospatial extends SageMakerGeospatialClient {
80
+ deleteEarthObservationJob(
81
+ args: DeleteEarthObservationJobCommandInput,
82
+ options?: __HttpHandlerOptions
83
+ ): Promise<DeleteEarthObservationJobCommandOutput>;
84
+ deleteEarthObservationJob(
85
+ args: DeleteEarthObservationJobCommandInput,
86
+ cb: (err: any, data?: DeleteEarthObservationJobCommandOutput) => void
87
+ ): void;
88
+ deleteEarthObservationJob(
89
+ args: DeleteEarthObservationJobCommandInput,
90
+ options: __HttpHandlerOptions,
91
+ cb: (err: any, data?: DeleteEarthObservationJobCommandOutput) => void
92
+ ): void;
93
+ deleteVectorEnrichmentJob(
94
+ args: DeleteVectorEnrichmentJobCommandInput,
95
+ options?: __HttpHandlerOptions
96
+ ): Promise<DeleteVectorEnrichmentJobCommandOutput>;
97
+ deleteVectorEnrichmentJob(
98
+ args: DeleteVectorEnrichmentJobCommandInput,
99
+ cb: (err: any, data?: DeleteVectorEnrichmentJobCommandOutput) => void
100
+ ): void;
101
+ deleteVectorEnrichmentJob(
102
+ args: DeleteVectorEnrichmentJobCommandInput,
103
+ options: __HttpHandlerOptions,
104
+ cb: (err: any, data?: DeleteVectorEnrichmentJobCommandOutput) => void
105
+ ): void;
106
+ exportEarthObservationJob(
107
+ args: ExportEarthObservationJobCommandInput,
108
+ options?: __HttpHandlerOptions
109
+ ): Promise<ExportEarthObservationJobCommandOutput>;
110
+ exportEarthObservationJob(
111
+ args: ExportEarthObservationJobCommandInput,
112
+ cb: (err: any, data?: ExportEarthObservationJobCommandOutput) => void
113
+ ): void;
114
+ exportEarthObservationJob(
115
+ args: ExportEarthObservationJobCommandInput,
116
+ options: __HttpHandlerOptions,
117
+ cb: (err: any, data?: ExportEarthObservationJobCommandOutput) => void
118
+ ): void;
119
+ exportVectorEnrichmentJob(
120
+ args: ExportVectorEnrichmentJobCommandInput,
121
+ options?: __HttpHandlerOptions
122
+ ): Promise<ExportVectorEnrichmentJobCommandOutput>;
123
+ exportVectorEnrichmentJob(
124
+ args: ExportVectorEnrichmentJobCommandInput,
125
+ cb: (err: any, data?: ExportVectorEnrichmentJobCommandOutput) => void
126
+ ): void;
127
+ exportVectorEnrichmentJob(
128
+ args: ExportVectorEnrichmentJobCommandInput,
129
+ options: __HttpHandlerOptions,
130
+ cb: (err: any, data?: ExportVectorEnrichmentJobCommandOutput) => void
131
+ ): void;
132
+ getEarthObservationJob(
133
+ args: GetEarthObservationJobCommandInput,
134
+ options?: __HttpHandlerOptions
135
+ ): Promise<GetEarthObservationJobCommandOutput>;
136
+ getEarthObservationJob(
137
+ args: GetEarthObservationJobCommandInput,
138
+ cb: (err: any, data?: GetEarthObservationJobCommandOutput) => void
139
+ ): void;
140
+ getEarthObservationJob(
141
+ args: GetEarthObservationJobCommandInput,
142
+ options: __HttpHandlerOptions,
143
+ cb: (err: any, data?: GetEarthObservationJobCommandOutput) => void
144
+ ): void;
145
+ getRasterDataCollection(
146
+ args: GetRasterDataCollectionCommandInput,
147
+ options?: __HttpHandlerOptions
148
+ ): Promise<GetRasterDataCollectionCommandOutput>;
149
+ getRasterDataCollection(
150
+ args: GetRasterDataCollectionCommandInput,
151
+ cb: (err: any, data?: GetRasterDataCollectionCommandOutput) => void
152
+ ): void;
153
+ getRasterDataCollection(
154
+ args: GetRasterDataCollectionCommandInput,
155
+ options: __HttpHandlerOptions,
156
+ cb: (err: any, data?: GetRasterDataCollectionCommandOutput) => void
157
+ ): void;
158
+ getTile(
159
+ args: GetTileCommandInput,
160
+ options?: __HttpHandlerOptions
161
+ ): Promise<GetTileCommandOutput>;
162
+ getTile(
163
+ args: GetTileCommandInput,
164
+ cb: (err: any, data?: GetTileCommandOutput) => void
165
+ ): void;
166
+ getTile(
167
+ args: GetTileCommandInput,
168
+ options: __HttpHandlerOptions,
169
+ cb: (err: any, data?: GetTileCommandOutput) => void
170
+ ): void;
171
+ getVectorEnrichmentJob(
172
+ args: GetVectorEnrichmentJobCommandInput,
173
+ options?: __HttpHandlerOptions
174
+ ): Promise<GetVectorEnrichmentJobCommandOutput>;
175
+ getVectorEnrichmentJob(
176
+ args: GetVectorEnrichmentJobCommandInput,
177
+ cb: (err: any, data?: GetVectorEnrichmentJobCommandOutput) => void
178
+ ): void;
179
+ getVectorEnrichmentJob(
180
+ args: GetVectorEnrichmentJobCommandInput,
181
+ options: __HttpHandlerOptions,
182
+ cb: (err: any, data?: GetVectorEnrichmentJobCommandOutput) => void
183
+ ): void;
184
+ listEarthObservationJobs(
185
+ args: ListEarthObservationJobsCommandInput,
186
+ options?: __HttpHandlerOptions
187
+ ): Promise<ListEarthObservationJobsCommandOutput>;
188
+ listEarthObservationJobs(
189
+ args: ListEarthObservationJobsCommandInput,
190
+ cb: (err: any, data?: ListEarthObservationJobsCommandOutput) => void
191
+ ): void;
192
+ listEarthObservationJobs(
193
+ args: ListEarthObservationJobsCommandInput,
194
+ options: __HttpHandlerOptions,
195
+ cb: (err: any, data?: ListEarthObservationJobsCommandOutput) => void
196
+ ): void;
197
+ listRasterDataCollections(
198
+ args: ListRasterDataCollectionsCommandInput,
199
+ options?: __HttpHandlerOptions
200
+ ): Promise<ListRasterDataCollectionsCommandOutput>;
201
+ listRasterDataCollections(
202
+ args: ListRasterDataCollectionsCommandInput,
203
+ cb: (err: any, data?: ListRasterDataCollectionsCommandOutput) => void
204
+ ): void;
205
+ listRasterDataCollections(
206
+ args: ListRasterDataCollectionsCommandInput,
207
+ options: __HttpHandlerOptions,
208
+ cb: (err: any, data?: ListRasterDataCollectionsCommandOutput) => void
209
+ ): void;
210
+ listTagsForResource(
211
+ args: ListTagsForResourceCommandInput,
212
+ options?: __HttpHandlerOptions
213
+ ): Promise<ListTagsForResourceCommandOutput>;
214
+ listTagsForResource(
215
+ args: ListTagsForResourceCommandInput,
216
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
217
+ ): void;
218
+ listTagsForResource(
219
+ args: ListTagsForResourceCommandInput,
220
+ options: __HttpHandlerOptions,
221
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
222
+ ): void;
223
+ listVectorEnrichmentJobs(
224
+ args: ListVectorEnrichmentJobsCommandInput,
225
+ options?: __HttpHandlerOptions
226
+ ): Promise<ListVectorEnrichmentJobsCommandOutput>;
227
+ listVectorEnrichmentJobs(
228
+ args: ListVectorEnrichmentJobsCommandInput,
229
+ cb: (err: any, data?: ListVectorEnrichmentJobsCommandOutput) => void
230
+ ): void;
231
+ listVectorEnrichmentJobs(
232
+ args: ListVectorEnrichmentJobsCommandInput,
233
+ options: __HttpHandlerOptions,
234
+ cb: (err: any, data?: ListVectorEnrichmentJobsCommandOutput) => void
235
+ ): void;
236
+ searchRasterDataCollection(
237
+ args: SearchRasterDataCollectionCommandInput,
238
+ options?: __HttpHandlerOptions
239
+ ): Promise<SearchRasterDataCollectionCommandOutput>;
240
+ searchRasterDataCollection(
241
+ args: SearchRasterDataCollectionCommandInput,
242
+ cb: (err: any, data?: SearchRasterDataCollectionCommandOutput) => void
243
+ ): void;
244
+ searchRasterDataCollection(
245
+ args: SearchRasterDataCollectionCommandInput,
246
+ options: __HttpHandlerOptions,
247
+ cb: (err: any, data?: SearchRasterDataCollectionCommandOutput) => void
248
+ ): void;
249
+ startEarthObservationJob(
250
+ args: StartEarthObservationJobCommandInput,
251
+ options?: __HttpHandlerOptions
252
+ ): Promise<StartEarthObservationJobCommandOutput>;
253
+ startEarthObservationJob(
254
+ args: StartEarthObservationJobCommandInput,
255
+ cb: (err: any, data?: StartEarthObservationJobCommandOutput) => void
256
+ ): void;
257
+ startEarthObservationJob(
258
+ args: StartEarthObservationJobCommandInput,
259
+ options: __HttpHandlerOptions,
260
+ cb: (err: any, data?: StartEarthObservationJobCommandOutput) => void
261
+ ): void;
262
+ startVectorEnrichmentJob(
263
+ args: StartVectorEnrichmentJobCommandInput,
264
+ options?: __HttpHandlerOptions
265
+ ): Promise<StartVectorEnrichmentJobCommandOutput>;
266
+ startVectorEnrichmentJob(
267
+ args: StartVectorEnrichmentJobCommandInput,
268
+ cb: (err: any, data?: StartVectorEnrichmentJobCommandOutput) => void
269
+ ): void;
270
+ startVectorEnrichmentJob(
271
+ args: StartVectorEnrichmentJobCommandInput,
272
+ options: __HttpHandlerOptions,
273
+ cb: (err: any, data?: StartVectorEnrichmentJobCommandOutput) => void
274
+ ): void;
275
+ stopEarthObservationJob(
276
+ args: StopEarthObservationJobCommandInput,
277
+ options?: __HttpHandlerOptions
278
+ ): Promise<StopEarthObservationJobCommandOutput>;
279
+ stopEarthObservationJob(
280
+ args: StopEarthObservationJobCommandInput,
281
+ cb: (err: any, data?: StopEarthObservationJobCommandOutput) => void
282
+ ): void;
283
+ stopEarthObservationJob(
284
+ args: StopEarthObservationJobCommandInput,
285
+ options: __HttpHandlerOptions,
286
+ cb: (err: any, data?: StopEarthObservationJobCommandOutput) => void
287
+ ): void;
288
+ stopVectorEnrichmentJob(
289
+ args: StopVectorEnrichmentJobCommandInput,
290
+ options?: __HttpHandlerOptions
291
+ ): Promise<StopVectorEnrichmentJobCommandOutput>;
292
+ stopVectorEnrichmentJob(
293
+ args: StopVectorEnrichmentJobCommandInput,
294
+ cb: (err: any, data?: StopVectorEnrichmentJobCommandOutput) => void
295
+ ): void;
296
+ stopVectorEnrichmentJob(
297
+ args: StopVectorEnrichmentJobCommandInput,
298
+ options: __HttpHandlerOptions,
299
+ cb: (err: any, data?: StopVectorEnrichmentJobCommandOutput) => void
300
+ ): void;
301
+ tagResource(
302
+ args: TagResourceCommandInput,
303
+ options?: __HttpHandlerOptions
304
+ ): Promise<TagResourceCommandOutput>;
305
+ tagResource(
306
+ args: TagResourceCommandInput,
307
+ cb: (err: any, data?: TagResourceCommandOutput) => void
308
+ ): void;
309
+ tagResource(
310
+ args: TagResourceCommandInput,
311
+ options: __HttpHandlerOptions,
312
+ cb: (err: any, data?: TagResourceCommandOutput) => void
313
+ ): void;
314
+ untagResource(
315
+ args: UntagResourceCommandInput,
316
+ options?: __HttpHandlerOptions
317
+ ): Promise<UntagResourceCommandOutput>;
318
+ untagResource(
319
+ args: UntagResourceCommandInput,
320
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
321
+ ): void;
322
+ untagResource(
323
+ args: UntagResourceCommandInput,
324
+ options: __HttpHandlerOptions,
325
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
326
+ ): void;
327
+ }