@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,7 @@
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { SageMakerGeospatial } from "../SageMakerGeospatial";
3
+ import { SageMakerGeospatialClient } from "../SageMakerGeospatialClient";
4
+ export interface SageMakerGeospatialPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: SageMakerGeospatial | SageMakerGeospatialClient;
7
+ }
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListEarthObservationJobsCommandInput,
4
+ ListEarthObservationJobsCommandOutput,
5
+ } from "../commands/ListEarthObservationJobsCommand";
6
+ import { SageMakerGeospatialPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListEarthObservationJobs(
8
+ config: SageMakerGeospatialPaginationConfiguration,
9
+ input: ListEarthObservationJobsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListEarthObservationJobsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListRasterDataCollectionsCommandInput,
4
+ ListRasterDataCollectionsCommandOutput,
5
+ } from "../commands/ListRasterDataCollectionsCommand";
6
+ import { SageMakerGeospatialPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListRasterDataCollections(
8
+ config: SageMakerGeospatialPaginationConfiguration,
9
+ input: ListRasterDataCollectionsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListRasterDataCollectionsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListVectorEnrichmentJobsCommandInput,
4
+ ListVectorEnrichmentJobsCommandOutput,
5
+ } from "../commands/ListVectorEnrichmentJobsCommand";
6
+ import { SageMakerGeospatialPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListVectorEnrichmentJobs(
8
+ config: SageMakerGeospatialPaginationConfiguration,
9
+ input: ListVectorEnrichmentJobsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListVectorEnrichmentJobsCommandOutput>;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ SearchRasterDataCollectionCommandInput,
4
+ SearchRasterDataCollectionCommandOutput,
5
+ } from "../commands/SearchRasterDataCollectionCommand";
6
+ import { SageMakerGeospatialPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateSearchRasterDataCollection(
8
+ config: SageMakerGeospatialPaginationConfiguration,
9
+ input: SearchRasterDataCollectionCommandInput,
10
+ ...additionalArguments: any
11
+ ): 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,236 @@
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import {
6
+ SdkStreamSerdeContext as __SdkStreamSerdeContext,
7
+ SerdeContext as __SerdeContext,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ DeleteEarthObservationJobCommandInput,
11
+ DeleteEarthObservationJobCommandOutput,
12
+ } from "../commands/DeleteEarthObservationJobCommand";
13
+ import {
14
+ DeleteVectorEnrichmentJobCommandInput,
15
+ DeleteVectorEnrichmentJobCommandOutput,
16
+ } from "../commands/DeleteVectorEnrichmentJobCommand";
17
+ import {
18
+ ExportEarthObservationJobCommandInput,
19
+ ExportEarthObservationJobCommandOutput,
20
+ } from "../commands/ExportEarthObservationJobCommand";
21
+ import {
22
+ ExportVectorEnrichmentJobCommandInput,
23
+ ExportVectorEnrichmentJobCommandOutput,
24
+ } from "../commands/ExportVectorEnrichmentJobCommand";
25
+ import {
26
+ GetEarthObservationJobCommandInput,
27
+ GetEarthObservationJobCommandOutput,
28
+ } from "../commands/GetEarthObservationJobCommand";
29
+ import {
30
+ GetRasterDataCollectionCommandInput,
31
+ GetRasterDataCollectionCommandOutput,
32
+ } from "../commands/GetRasterDataCollectionCommand";
33
+ import {
34
+ GetTileCommandInput,
35
+ GetTileCommandOutput,
36
+ } from "../commands/GetTileCommand";
37
+ import {
38
+ GetVectorEnrichmentJobCommandInput,
39
+ GetVectorEnrichmentJobCommandOutput,
40
+ } from "../commands/GetVectorEnrichmentJobCommand";
41
+ import {
42
+ ListEarthObservationJobsCommandInput,
43
+ ListEarthObservationJobsCommandOutput,
44
+ } from "../commands/ListEarthObservationJobsCommand";
45
+ import {
46
+ ListRasterDataCollectionsCommandInput,
47
+ ListRasterDataCollectionsCommandOutput,
48
+ } from "../commands/ListRasterDataCollectionsCommand";
49
+ import {
50
+ ListTagsForResourceCommandInput,
51
+ ListTagsForResourceCommandOutput,
52
+ } from "../commands/ListTagsForResourceCommand";
53
+ import {
54
+ ListVectorEnrichmentJobsCommandInput,
55
+ ListVectorEnrichmentJobsCommandOutput,
56
+ } from "../commands/ListVectorEnrichmentJobsCommand";
57
+ import {
58
+ SearchRasterDataCollectionCommandInput,
59
+ SearchRasterDataCollectionCommandOutput,
60
+ } from "../commands/SearchRasterDataCollectionCommand";
61
+ import {
62
+ StartEarthObservationJobCommandInput,
63
+ StartEarthObservationJobCommandOutput,
64
+ } from "../commands/StartEarthObservationJobCommand";
65
+ import {
66
+ StartVectorEnrichmentJobCommandInput,
67
+ StartVectorEnrichmentJobCommandOutput,
68
+ } from "../commands/StartVectorEnrichmentJobCommand";
69
+ import {
70
+ StopEarthObservationJobCommandInput,
71
+ StopEarthObservationJobCommandOutput,
72
+ } from "../commands/StopEarthObservationJobCommand";
73
+ import {
74
+ StopVectorEnrichmentJobCommandInput,
75
+ StopVectorEnrichmentJobCommandOutput,
76
+ } from "../commands/StopVectorEnrichmentJobCommand";
77
+ import {
78
+ TagResourceCommandInput,
79
+ TagResourceCommandOutput,
80
+ } from "../commands/TagResourceCommand";
81
+ import {
82
+ UntagResourceCommandInput,
83
+ UntagResourceCommandOutput,
84
+ } from "../commands/UntagResourceCommand";
85
+ export declare const serializeAws_restJson1DeleteEarthObservationJobCommand: (
86
+ input: DeleteEarthObservationJobCommandInput,
87
+ context: __SerdeContext
88
+ ) => Promise<__HttpRequest>;
89
+ export declare const serializeAws_restJson1DeleteVectorEnrichmentJobCommand: (
90
+ input: DeleteVectorEnrichmentJobCommandInput,
91
+ context: __SerdeContext
92
+ ) => Promise<__HttpRequest>;
93
+ export declare const serializeAws_restJson1ExportEarthObservationJobCommand: (
94
+ input: ExportEarthObservationJobCommandInput,
95
+ context: __SerdeContext
96
+ ) => Promise<__HttpRequest>;
97
+ export declare const serializeAws_restJson1ExportVectorEnrichmentJobCommand: (
98
+ input: ExportVectorEnrichmentJobCommandInput,
99
+ context: __SerdeContext
100
+ ) => Promise<__HttpRequest>;
101
+ export declare const serializeAws_restJson1GetEarthObservationJobCommand: (
102
+ input: GetEarthObservationJobCommandInput,
103
+ context: __SerdeContext
104
+ ) => Promise<__HttpRequest>;
105
+ export declare const serializeAws_restJson1GetRasterDataCollectionCommand: (
106
+ input: GetRasterDataCollectionCommandInput,
107
+ context: __SerdeContext
108
+ ) => Promise<__HttpRequest>;
109
+ export declare const serializeAws_restJson1GetTileCommand: (
110
+ input: GetTileCommandInput,
111
+ context: __SerdeContext
112
+ ) => Promise<__HttpRequest>;
113
+ export declare const serializeAws_restJson1GetVectorEnrichmentJobCommand: (
114
+ input: GetVectorEnrichmentJobCommandInput,
115
+ context: __SerdeContext
116
+ ) => Promise<__HttpRequest>;
117
+ export declare const serializeAws_restJson1ListEarthObservationJobsCommand: (
118
+ input: ListEarthObservationJobsCommandInput,
119
+ context: __SerdeContext
120
+ ) => Promise<__HttpRequest>;
121
+ export declare const serializeAws_restJson1ListRasterDataCollectionsCommand: (
122
+ input: ListRasterDataCollectionsCommandInput,
123
+ context: __SerdeContext
124
+ ) => Promise<__HttpRequest>;
125
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
126
+ input: ListTagsForResourceCommandInput,
127
+ context: __SerdeContext
128
+ ) => Promise<__HttpRequest>;
129
+ export declare const serializeAws_restJson1ListVectorEnrichmentJobsCommand: (
130
+ input: ListVectorEnrichmentJobsCommandInput,
131
+ context: __SerdeContext
132
+ ) => Promise<__HttpRequest>;
133
+ export declare const serializeAws_restJson1SearchRasterDataCollectionCommand: (
134
+ input: SearchRasterDataCollectionCommandInput,
135
+ context: __SerdeContext
136
+ ) => Promise<__HttpRequest>;
137
+ export declare const serializeAws_restJson1StartEarthObservationJobCommand: (
138
+ input: StartEarthObservationJobCommandInput,
139
+ context: __SerdeContext
140
+ ) => Promise<__HttpRequest>;
141
+ export declare const serializeAws_restJson1StartVectorEnrichmentJobCommand: (
142
+ input: StartVectorEnrichmentJobCommandInput,
143
+ context: __SerdeContext
144
+ ) => Promise<__HttpRequest>;
145
+ export declare const serializeAws_restJson1StopEarthObservationJobCommand: (
146
+ input: StopEarthObservationJobCommandInput,
147
+ context: __SerdeContext
148
+ ) => Promise<__HttpRequest>;
149
+ export declare const serializeAws_restJson1StopVectorEnrichmentJobCommand: (
150
+ input: StopVectorEnrichmentJobCommandInput,
151
+ context: __SerdeContext
152
+ ) => Promise<__HttpRequest>;
153
+ export declare const serializeAws_restJson1TagResourceCommand: (
154
+ input: TagResourceCommandInput,
155
+ context: __SerdeContext
156
+ ) => Promise<__HttpRequest>;
157
+ export declare const serializeAws_restJson1UntagResourceCommand: (
158
+ input: UntagResourceCommandInput,
159
+ context: __SerdeContext
160
+ ) => Promise<__HttpRequest>;
161
+ export declare const deserializeAws_restJson1DeleteEarthObservationJobCommand: (
162
+ output: __HttpResponse,
163
+ context: __SerdeContext
164
+ ) => Promise<DeleteEarthObservationJobCommandOutput>;
165
+ export declare const deserializeAws_restJson1DeleteVectorEnrichmentJobCommand: (
166
+ output: __HttpResponse,
167
+ context: __SerdeContext
168
+ ) => Promise<DeleteVectorEnrichmentJobCommandOutput>;
169
+ export declare const deserializeAws_restJson1ExportEarthObservationJobCommand: (
170
+ output: __HttpResponse,
171
+ context: __SerdeContext
172
+ ) => Promise<ExportEarthObservationJobCommandOutput>;
173
+ export declare const deserializeAws_restJson1ExportVectorEnrichmentJobCommand: (
174
+ output: __HttpResponse,
175
+ context: __SerdeContext
176
+ ) => Promise<ExportVectorEnrichmentJobCommandOutput>;
177
+ export declare const deserializeAws_restJson1GetEarthObservationJobCommand: (
178
+ output: __HttpResponse,
179
+ context: __SerdeContext
180
+ ) => Promise<GetEarthObservationJobCommandOutput>;
181
+ export declare const deserializeAws_restJson1GetRasterDataCollectionCommand: (
182
+ output: __HttpResponse,
183
+ context: __SerdeContext
184
+ ) => Promise<GetRasterDataCollectionCommandOutput>;
185
+ export declare const deserializeAws_restJson1GetTileCommand: (
186
+ output: __HttpResponse,
187
+ context: __SerdeContext & __SdkStreamSerdeContext
188
+ ) => Promise<GetTileCommandOutput>;
189
+ export declare const deserializeAws_restJson1GetVectorEnrichmentJobCommand: (
190
+ output: __HttpResponse,
191
+ context: __SerdeContext
192
+ ) => Promise<GetVectorEnrichmentJobCommandOutput>;
193
+ export declare const deserializeAws_restJson1ListEarthObservationJobsCommand: (
194
+ output: __HttpResponse,
195
+ context: __SerdeContext
196
+ ) => Promise<ListEarthObservationJobsCommandOutput>;
197
+ export declare const deserializeAws_restJson1ListRasterDataCollectionsCommand: (
198
+ output: __HttpResponse,
199
+ context: __SerdeContext
200
+ ) => Promise<ListRasterDataCollectionsCommandOutput>;
201
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
202
+ output: __HttpResponse,
203
+ context: __SerdeContext
204
+ ) => Promise<ListTagsForResourceCommandOutput>;
205
+ export declare const deserializeAws_restJson1ListVectorEnrichmentJobsCommand: (
206
+ output: __HttpResponse,
207
+ context: __SerdeContext
208
+ ) => Promise<ListVectorEnrichmentJobsCommandOutput>;
209
+ export declare const deserializeAws_restJson1SearchRasterDataCollectionCommand: (
210
+ output: __HttpResponse,
211
+ context: __SerdeContext
212
+ ) => Promise<SearchRasterDataCollectionCommandOutput>;
213
+ export declare const deserializeAws_restJson1StartEarthObservationJobCommand: (
214
+ output: __HttpResponse,
215
+ context: __SerdeContext
216
+ ) => Promise<StartEarthObservationJobCommandOutput>;
217
+ export declare const deserializeAws_restJson1StartVectorEnrichmentJobCommand: (
218
+ output: __HttpResponse,
219
+ context: __SerdeContext
220
+ ) => Promise<StartVectorEnrichmentJobCommandOutput>;
221
+ export declare const deserializeAws_restJson1StopEarthObservationJobCommand: (
222
+ output: __HttpResponse,
223
+ context: __SerdeContext
224
+ ) => Promise<StopEarthObservationJobCommandOutput>;
225
+ export declare const deserializeAws_restJson1StopVectorEnrichmentJobCommand: (
226
+ output: __HttpResponse,
227
+ context: __SerdeContext
228
+ ) => Promise<StopVectorEnrichmentJobCommandOutput>;
229
+ export declare const deserializeAws_restJson1TagResourceCommand: (
230
+ output: __HttpResponse,
231
+ context: __SerdeContext
232
+ ) => Promise<TagResourceCommandOutput>;
233
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
234
+ output: __HttpResponse,
235
+ context: __SerdeContext
236
+ ) => Promise<UntagResourceCommandOutput>;
@@ -0,0 +1,91 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { SageMakerGeospatialClientConfig } from "./SageMakerGeospatialClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: SageMakerGeospatialClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@aws-sdk/types").Provider<
8
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ input: any
13
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
14
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
15
+ import("@aws-sdk/types").UserAgent
16
+ >;
17
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
18
+ region: string | import("@aws-sdk/types").Provider<any>;
19
+ requestHandler:
20
+ | (import("@aws-sdk/types").RequestHandler<
21
+ any,
22
+ any,
23
+ import("@aws-sdk/types").HttpHandlerOptions
24
+ > &
25
+ import("@aws-sdk/protocol-http").HttpHandler)
26
+ | RequestHandler;
27
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
28
+ sdkStreamMixin: import("@aws-sdk/types").SdkStreamMixinInjector;
29
+ sha256: import("@aws-sdk/types").HashConstructor;
30
+ streamCollector: import("@aws-sdk/types").StreamCollector;
31
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ utf8Decoder: import("@aws-sdk/types").Decoder;
34
+ utf8Encoder: import("@aws-sdk/types").Encoder;
35
+ apiVersion: string;
36
+ urlParser: import("@aws-sdk/types").UrlParser;
37
+ base64Decoder: import("@aws-sdk/types").Decoder;
38
+ base64Encoder: import("@aws-sdk/types").Encoder;
39
+ disableHostPrefix: boolean;
40
+ logger: import("@aws-sdk/types").Logger;
41
+ serviceId: string;
42
+ endpoint?:
43
+ | ((
44
+ | string
45
+ | import("@aws-sdk/types").Endpoint
46
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
47
+ | import("@aws-sdk/types").EndpointV2
48
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
49
+ ) &
50
+ (
51
+ | string
52
+ | import("@aws-sdk/types").Provider<string>
53
+ | import("@aws-sdk/types").Endpoint
54
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
55
+ | import("@aws-sdk/types").EndpointV2
56
+ | import("@aws-sdk/types").Provider<
57
+ import("@aws-sdk/types").EndpointV2
58
+ >
59
+ ))
60
+ | undefined;
61
+ endpointProvider: (
62
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
63
+ context?: {
64
+ logger?: import("@aws-sdk/types").Logger | undefined;
65
+ }
66
+ ) => import("@aws-sdk/types").EndpointV2;
67
+ tls?: boolean | undefined;
68
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
69
+ credentials?:
70
+ | import("@aws-sdk/types").AwsCredentialIdentity
71
+ | import("@aws-sdk/types").Provider<
72
+ import("@aws-sdk/types").AwsCredentialIdentity
73
+ >
74
+ | undefined;
75
+ signer?:
76
+ | import("@aws-sdk/types").RequestSigner
77
+ | ((
78
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
79
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
80
+ | undefined;
81
+ signingEscapePath?: boolean | undefined;
82
+ systemClockOffset?: number | undefined;
83
+ signingRegion?: string | undefined;
84
+ signerConstructor?:
85
+ | (new (
86
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
87
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
88
+ ) => import("@aws-sdk/types").RequestSigner)
89
+ | undefined;
90
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
91
+ };
@@ -0,0 +1,91 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { SageMakerGeospatialClientConfig } from "./SageMakerGeospatialClient";
3
+ export declare const getRuntimeConfig: (
4
+ config: SageMakerGeospatialClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ defaultsMode: import("@aws-sdk/types").Provider<
8
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
9
+ >;
10
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
11
+ credentialDefaultProvider: (
12
+ input: any
13
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
14
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
15
+ import("@aws-sdk/types").UserAgent
16
+ >;
17
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
18
+ region: string | import("@aws-sdk/types").Provider<string>;
19
+ requestHandler:
20
+ | (import("@aws-sdk/types").RequestHandler<
21
+ any,
22
+ any,
23
+ import("@aws-sdk/types").HttpHandlerOptions
24
+ > &
25
+ import("@aws-sdk/protocol-http").HttpHandler)
26
+ | RequestHandler;
27
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
28
+ sdkStreamMixin: import("@aws-sdk/types").SdkStreamMixinInjector;
29
+ sha256: import("@aws-sdk/types").HashConstructor;
30
+ streamCollector: import("@aws-sdk/types").StreamCollector;
31
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
32
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
33
+ utf8Decoder: import("@aws-sdk/types").Decoder;
34
+ utf8Encoder: import("@aws-sdk/types").Encoder;
35
+ apiVersion: string;
36
+ urlParser: import("@aws-sdk/types").UrlParser;
37
+ base64Decoder: import("@aws-sdk/types").Decoder;
38
+ base64Encoder: import("@aws-sdk/types").Encoder;
39
+ disableHostPrefix: boolean;
40
+ logger: import("@aws-sdk/types").Logger;
41
+ serviceId: string;
42
+ endpoint?:
43
+ | ((
44
+ | string
45
+ | import("@aws-sdk/types").Endpoint
46
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
47
+ | import("@aws-sdk/types").EndpointV2
48
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
49
+ ) &
50
+ (
51
+ | string
52
+ | import("@aws-sdk/types").Provider<string>
53
+ | import("@aws-sdk/types").Endpoint
54
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
55
+ | import("@aws-sdk/types").EndpointV2
56
+ | import("@aws-sdk/types").Provider<
57
+ import("@aws-sdk/types").EndpointV2
58
+ >
59
+ ))
60
+ | undefined;
61
+ endpointProvider: (
62
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
63
+ context?: {
64
+ logger?: import("@aws-sdk/types").Logger | undefined;
65
+ }
66
+ ) => import("@aws-sdk/types").EndpointV2;
67
+ tls?: boolean | undefined;
68
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
69
+ credentials?:
70
+ | import("@aws-sdk/types").AwsCredentialIdentity
71
+ | import("@aws-sdk/types").Provider<
72
+ import("@aws-sdk/types").AwsCredentialIdentity
73
+ >
74
+ | undefined;
75
+ signer?:
76
+ | import("@aws-sdk/types").RequestSigner
77
+ | ((
78
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
79
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
80
+ | undefined;
81
+ signingEscapePath?: boolean | undefined;
82
+ systemClockOffset?: number | undefined;
83
+ signingRegion?: string | undefined;
84
+ signerConstructor?:
85
+ | (new (
86
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
87
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
88
+ ) => import("@aws-sdk/types").RequestSigner)
89
+ | undefined;
90
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
91
+ };
@@ -0,0 +1,80 @@
1
+ import { SageMakerGeospatialClientConfig } from "./SageMakerGeospatialClient";
2
+ export declare const getRuntimeConfig: (
3
+ config: SageMakerGeospatialClientConfig
4
+ ) => {
5
+ runtime: string;
6
+ sha256: import("@aws-sdk/types").HashConstructor;
7
+ requestHandler:
8
+ | (import("@aws-sdk/types").RequestHandler<
9
+ any,
10
+ any,
11
+ import("@aws-sdk/types").HttpHandlerOptions
12
+ > &
13
+ import("@aws-sdk/protocol-http").HttpHandler)
14
+ | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
15
+ apiVersion: string;
16
+ urlParser: import("@aws-sdk/types").UrlParser;
17
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
18
+ streamCollector: import("@aws-sdk/types").StreamCollector;
19
+ base64Decoder: import("@aws-sdk/types").Decoder;
20
+ base64Encoder: import("@aws-sdk/types").Encoder;
21
+ utf8Decoder: import("@aws-sdk/types").Decoder;
22
+ utf8Encoder: import("@aws-sdk/types").Encoder;
23
+ disableHostPrefix: boolean;
24
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
25
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
26
+ logger: import("@aws-sdk/types").Logger;
27
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
28
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
29
+ serviceId: string;
30
+ region: string | import("@aws-sdk/types").Provider<any>;
31
+ credentialDefaultProvider: (
32
+ input: any
33
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
34
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
35
+ import("@aws-sdk/types").UserAgent
36
+ >;
37
+ defaultsMode:
38
+ | import("@aws-sdk/smithy-client").DefaultsMode
39
+ | import("@aws-sdk/types").Provider<
40
+ import("@aws-sdk/smithy-client").DefaultsMode
41
+ >;
42
+ sdkStreamMixin: import("@aws-sdk/types").SdkStreamMixinInjector;
43
+ endpoint?:
44
+ | string
45
+ | import("@aws-sdk/types").Endpoint
46
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
47
+ | import("@aws-sdk/types").EndpointV2
48
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").EndpointV2>
49
+ | undefined;
50
+ endpointProvider: (
51
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
52
+ context?: {
53
+ logger?: import("@aws-sdk/types").Logger | undefined;
54
+ }
55
+ ) => import("@aws-sdk/types").EndpointV2;
56
+ tls?: boolean | undefined;
57
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
58
+ credentials?:
59
+ | import("@aws-sdk/types").AwsCredentialIdentity
60
+ | import("@aws-sdk/types").Provider<
61
+ import("@aws-sdk/types").AwsCredentialIdentity
62
+ >
63
+ | undefined;
64
+ signer?:
65
+ | import("@aws-sdk/types").RequestSigner
66
+ | ((
67
+ authScheme?: import("@aws-sdk/types").AuthScheme | undefined
68
+ ) => Promise<import("@aws-sdk/types").RequestSigner>)
69
+ | undefined;
70
+ signingEscapePath?: boolean | undefined;
71
+ systemClockOffset?: number | undefined;
72
+ signingRegion?: string | undefined;
73
+ signerConstructor?:
74
+ | (new (
75
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
76
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
77
+ ) => import("@aws-sdk/types").RequestSigner)
78
+ | undefined;
79
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
80
+ };
@@ -0,0 +1,18 @@
1
+ import { SageMakerGeospatialClientConfig } from "./SageMakerGeospatialClient";
2
+ export declare const getRuntimeConfig: (
3
+ config: SageMakerGeospatialClientConfig
4
+ ) => {
5
+ apiVersion: string;
6
+ base64Decoder: import("@aws-sdk/types").Decoder;
7
+ base64Encoder: import("@aws-sdk/types").Encoder;
8
+ disableHostPrefix: boolean;
9
+ endpointProvider: (
10
+ endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
11
+ context?: {
12
+ logger?: import("@aws-sdk/types").Logger | undefined;
13
+ }
14
+ ) => import("@aws-sdk/types").EndpointV2;
15
+ logger: import("@aws-sdk/types").Logger;
16
+ serviceId: string;
17
+ urlParser: import("@aws-sdk/types").UrlParser;
18
+ };