aws-sdk-sagemakergeospatial 1.12.0 → 1.14.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.
data/sig/client.rbs ADDED
@@ -0,0 +1,577 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SageMakerGeospatial
10
+ class Client < ::Seahorse::Client::Base
11
+ include ::Aws::ClientStubs
12
+
13
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerGeospatial/Client.html#initialize-instance_method
14
+ def self.new: (
15
+ ?credentials: untyped,
16
+ ?region: String,
17
+ ?access_key_id: String,
18
+ ?active_endpoint_cache: bool,
19
+ ?adaptive_retry_wait_to_fill: bool,
20
+ ?client_side_monitoring: bool,
21
+ ?client_side_monitoring_client_id: String,
22
+ ?client_side_monitoring_host: String,
23
+ ?client_side_monitoring_port: Integer,
24
+ ?client_side_monitoring_publisher: untyped,
25
+ ?convert_params: bool,
26
+ ?correct_clock_skew: bool,
27
+ ?defaults_mode: String,
28
+ ?disable_host_prefix_injection: bool,
29
+ ?disable_request_compression: bool,
30
+ ?endpoint: String,
31
+ ?endpoint_cache_max_entries: Integer,
32
+ ?endpoint_cache_max_threads: Integer,
33
+ ?endpoint_cache_poll_interval: Integer,
34
+ ?endpoint_discovery: bool,
35
+ ?ignore_configured_endpoint_urls: bool,
36
+ ?log_formatter: untyped,
37
+ ?log_level: Symbol,
38
+ ?logger: untyped,
39
+ ?max_attempts: Integer,
40
+ ?profile: String,
41
+ ?request_min_compression_size_bytes: Integer,
42
+ ?retry_backoff: Proc,
43
+ ?retry_base_delay: Float,
44
+ ?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
45
+ ?retry_limit: Integer,
46
+ ?retry_max_delay: Integer,
47
+ ?retry_mode: ("legacy" | "standard" | "adaptive"),
48
+ ?sdk_ua_app_id: String,
49
+ ?secret_access_key: String,
50
+ ?session_token: String,
51
+ ?stub_responses: untyped,
52
+ ?token_provider: untyped,
53
+ ?use_dualstack_endpoint: bool,
54
+ ?use_fips_endpoint: bool,
55
+ ?validate_params: bool,
56
+ ?endpoint_provider: untyped,
57
+ ?http_proxy: String,
58
+ ?http_open_timeout: (Float | Integer),
59
+ ?http_read_timeout: (Float | Integer),
60
+ ?http_idle_timeout: (Float | Integer),
61
+ ?http_continue_timeout: (Float | Integer),
62
+ ?ssl_timeout: (Float | Integer | nil),
63
+ ?http_wire_trace: bool,
64
+ ?ssl_verify_peer: bool,
65
+ ?ssl_ca_bundle: String,
66
+ ?ssl_ca_directory: String,
67
+ ?ssl_ca_store: String,
68
+ ?on_chunk_received: Proc,
69
+ ?on_chunk_sent: Proc,
70
+ ?raise_response_errors: bool
71
+ ) -> instance
72
+ | (?Hash[Symbol, untyped]) -> instance
73
+
74
+
75
+ interface _DeleteEarthObservationJobResponseSuccess
76
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteEarthObservationJobOutput]
77
+ end
78
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerGeospatial/Client.html#delete_earth_observation_job-instance_method
79
+ def delete_earth_observation_job: (
80
+ arn: ::String
81
+ ) -> _DeleteEarthObservationJobResponseSuccess
82
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteEarthObservationJobResponseSuccess
83
+
84
+ interface _DeleteVectorEnrichmentJobResponseSuccess
85
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVectorEnrichmentJobOutput]
86
+ end
87
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerGeospatial/Client.html#delete_vector_enrichment_job-instance_method
88
+ def delete_vector_enrichment_job: (
89
+ arn: ::String
90
+ ) -> _DeleteVectorEnrichmentJobResponseSuccess
91
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteVectorEnrichmentJobResponseSuccess
92
+
93
+ interface _ExportEarthObservationJobResponseSuccess
94
+ include ::Seahorse::Client::_ResponseSuccess[Types::ExportEarthObservationJobOutput]
95
+ def arn: () -> ::String
96
+ def creation_time: () -> ::Time
97
+ def execution_role_arn: () -> ::String
98
+ def export_source_images: () -> bool
99
+ def export_status: () -> ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
100
+ def output_config: () -> Types::OutputConfigInput
101
+ end
102
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerGeospatial/Client.html#export_earth_observation_job-instance_method
103
+ def export_earth_observation_job: (
104
+ arn: ::String,
105
+ ?client_token: ::String,
106
+ execution_role_arn: ::String,
107
+ ?export_source_images: bool,
108
+ output_config: {
109
+ s3_data: {
110
+ kms_key_id: ::String?,
111
+ s3_uri: ::String
112
+ }
113
+ }
114
+ ) -> _ExportEarthObservationJobResponseSuccess
115
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExportEarthObservationJobResponseSuccess
116
+
117
+ interface _ExportVectorEnrichmentJobResponseSuccess
118
+ include ::Seahorse::Client::_ResponseSuccess[Types::ExportVectorEnrichmentJobOutput]
119
+ def arn: () -> ::String
120
+ def creation_time: () -> ::Time
121
+ def execution_role_arn: () -> ::String
122
+ def export_status: () -> ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
123
+ def output_config: () -> Types::ExportVectorEnrichmentJobOutputConfig
124
+ end
125
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerGeospatial/Client.html#export_vector_enrichment_job-instance_method
126
+ def export_vector_enrichment_job: (
127
+ arn: ::String,
128
+ ?client_token: ::String,
129
+ execution_role_arn: ::String,
130
+ output_config: {
131
+ s3_data: {
132
+ kms_key_id: ::String?,
133
+ s3_uri: ::String
134
+ }
135
+ }
136
+ ) -> _ExportVectorEnrichmentJobResponseSuccess
137
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ExportVectorEnrichmentJobResponseSuccess
138
+
139
+ interface _GetEarthObservationJobResponseSuccess
140
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetEarthObservationJobOutput]
141
+ def arn: () -> ::String
142
+ def creation_time: () -> ::Time
143
+ def duration_in_seconds: () -> ::Integer
144
+ def error_details: () -> Types::EarthObservationJobErrorDetails
145
+ def execution_role_arn: () -> ::String
146
+ def export_error_details: () -> Types::ExportErrorDetails
147
+ def export_status: () -> ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
148
+ def input_config: () -> Types::InputConfigOutput
149
+ def job_config: () -> Types::JobConfigInput
150
+ def kms_key_id: () -> ::String
151
+ def name: () -> ::String
152
+ def output_bands: () -> ::Array[Types::OutputBand]
153
+ def status: () -> ("INITIALIZING" | "IN_PROGRESS" | "STOPPING" | "COMPLETED" | "STOPPED" | "FAILED" | "DELETING" | "DELETED")
154
+ def tags: () -> ::Hash[::String, ::String]
155
+ end
156
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerGeospatial/Client.html#get_earth_observation_job-instance_method
157
+ def get_earth_observation_job: (
158
+ arn: ::String
159
+ ) -> _GetEarthObservationJobResponseSuccess
160
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEarthObservationJobResponseSuccess
161
+
162
+ interface _GetRasterDataCollectionResponseSuccess
163
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRasterDataCollectionOutput]
164
+ def arn: () -> ::String
165
+ def description: () -> ::String
166
+ def description_page_url: () -> ::String
167
+ def image_source_bands: () -> ::Array[::String]
168
+ def name: () -> ::String
169
+ def supported_filters: () -> ::Array[Types::Filter]
170
+ def tags: () -> ::Hash[::String, ::String]
171
+ def type: () -> ("PUBLIC" | "PREMIUM" | "USER")
172
+ end
173
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerGeospatial/Client.html#get_raster_data_collection-instance_method
174
+ def get_raster_data_collection: (
175
+ arn: ::String
176
+ ) -> _GetRasterDataCollectionResponseSuccess
177
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRasterDataCollectionResponseSuccess
178
+
179
+ interface _GetTileResponseSuccess
180
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTileOutput]
181
+ def binary_file: () -> ::IO
182
+ end
183
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerGeospatial/Client.html#get_tile-instance_method
184
+ def get_tile: (
185
+ arn: ::String,
186
+ ?execution_role_arn: ::String,
187
+ image_assets: Array[::String],
188
+ ?image_mask: bool,
189
+ ?output_data_type: ("INT32" | "FLOAT32" | "INT16" | "FLOAT64" | "UINT16"),
190
+ ?output_format: ::String,
191
+ ?property_filters: ::String,
192
+ target: ("INPUT" | "OUTPUT"),
193
+ ?time_range_filter: ::String,
194
+ x: ::Integer,
195
+ y: ::Integer,
196
+ z: ::Integer
197
+ ) ?{ (*untyped) -> void } -> _GetTileResponseSuccess
198
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _GetTileResponseSuccess
199
+
200
+ interface _GetVectorEnrichmentJobResponseSuccess
201
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetVectorEnrichmentJobOutput]
202
+ def arn: () -> ::String
203
+ def creation_time: () -> ::Time
204
+ def duration_in_seconds: () -> ::Integer
205
+ def error_details: () -> Types::VectorEnrichmentJobErrorDetails
206
+ def execution_role_arn: () -> ::String
207
+ def export_error_details: () -> Types::VectorEnrichmentJobExportErrorDetails
208
+ def export_status: () -> ("IN_PROGRESS" | "SUCCEEDED" | "FAILED")
209
+ def input_config: () -> Types::VectorEnrichmentJobInputConfig
210
+ def job_config: () -> Types::VectorEnrichmentJobConfig
211
+ def kms_key_id: () -> ::String
212
+ def name: () -> ::String
213
+ def status: () -> ("INITIALIZING" | "IN_PROGRESS" | "STOPPING" | "STOPPED" | "COMPLETED" | "FAILED" | "DELETING" | "DELETED")
214
+ def tags: () -> ::Hash[::String, ::String]
215
+ def type: () -> ("REVERSE_GEOCODING" | "MAP_MATCHING")
216
+ end
217
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerGeospatial/Client.html#get_vector_enrichment_job-instance_method
218
+ def get_vector_enrichment_job: (
219
+ arn: ::String
220
+ ) -> _GetVectorEnrichmentJobResponseSuccess
221
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetVectorEnrichmentJobResponseSuccess
222
+
223
+ interface _ListEarthObservationJobsResponseSuccess
224
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListEarthObservationJobOutput]
225
+ def earth_observation_job_summaries: () -> ::Array[Types::ListEarthObservationJobOutputConfig]
226
+ def next_token: () -> ::String
227
+ end
228
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerGeospatial/Client.html#list_earth_observation_jobs-instance_method
229
+ def list_earth_observation_jobs: (
230
+ ?max_results: ::Integer,
231
+ ?next_token: ::String,
232
+ ?sort_by: ::String,
233
+ ?sort_order: ("ASCENDING" | "DESCENDING"),
234
+ ?status_equals: ("INITIALIZING" | "IN_PROGRESS" | "STOPPING" | "COMPLETED" | "STOPPED" | "FAILED" | "DELETING" | "DELETED")
235
+ ) -> _ListEarthObservationJobsResponseSuccess
236
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEarthObservationJobsResponseSuccess
237
+
238
+ interface _ListRasterDataCollectionsResponseSuccess
239
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRasterDataCollectionsOutput]
240
+ def next_token: () -> ::String
241
+ def raster_data_collection_summaries: () -> ::Array[Types::RasterDataCollectionMetadata]
242
+ end
243
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerGeospatial/Client.html#list_raster_data_collections-instance_method
244
+ def list_raster_data_collections: (
245
+ ?max_results: ::Integer,
246
+ ?next_token: ::String
247
+ ) -> _ListRasterDataCollectionsResponseSuccess
248
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRasterDataCollectionsResponseSuccess
249
+
250
+ interface _ListTagsForResourceResponseSuccess
251
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListTagsForResourceResponse]
252
+ def tags: () -> ::Hash[::String, ::String]
253
+ end
254
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerGeospatial/Client.html#list_tags_for_resource-instance_method
255
+ def list_tags_for_resource: (
256
+ resource_arn: ::String
257
+ ) -> _ListTagsForResourceResponseSuccess
258
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
259
+
260
+ interface _ListVectorEnrichmentJobsResponseSuccess
261
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVectorEnrichmentJobOutput]
262
+ def next_token: () -> ::String
263
+ def vector_enrichment_job_summaries: () -> ::Array[Types::ListVectorEnrichmentJobOutputConfig]
264
+ end
265
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerGeospatial/Client.html#list_vector_enrichment_jobs-instance_method
266
+ def list_vector_enrichment_jobs: (
267
+ ?max_results: ::Integer,
268
+ ?next_token: ::String,
269
+ ?sort_by: ::String,
270
+ ?sort_order: ("ASCENDING" | "DESCENDING"),
271
+ ?status_equals: ::String
272
+ ) -> _ListVectorEnrichmentJobsResponseSuccess
273
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVectorEnrichmentJobsResponseSuccess
274
+
275
+ interface _SearchRasterDataCollectionResponseSuccess
276
+ include ::Seahorse::Client::_ResponseSuccess[Types::SearchRasterDataCollectionOutput]
277
+ def approximate_result_count: () -> ::Integer
278
+ def items: () -> ::Array[Types::ItemSource]
279
+ def next_token: () -> ::String
280
+ end
281
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerGeospatial/Client.html#search_raster_data_collection-instance_method
282
+ def search_raster_data_collection: (
283
+ arn: ::String,
284
+ ?next_token: ::String,
285
+ raster_data_collection_query: {
286
+ area_of_interest: {
287
+ area_of_interest_geometry: {
288
+ multi_polygon_geometry: {
289
+ coordinates: Array[
290
+ Array[
291
+ Array[
292
+ Array[::Float],
293
+ ],
294
+ ],
295
+ ]
296
+ }?,
297
+ polygon_geometry: {
298
+ coordinates: Array[
299
+ Array[
300
+ Array[::Float],
301
+ ],
302
+ ]
303
+ }?
304
+ }?
305
+ }?,
306
+ band_filter: Array[::String]?,
307
+ property_filters: {
308
+ logical_operator: ("AND")?,
309
+ properties: Array[
310
+ {
311
+ property: {
312
+ eo_cloud_cover: {
313
+ lower_bound: ::Float,
314
+ upper_bound: ::Float
315
+ }?,
316
+ landsat_cloud_cover_land: {
317
+ lower_bound: ::Float,
318
+ upper_bound: ::Float
319
+ }?,
320
+ platform: {
321
+ comparison_operator: ("EQUALS" | "NOT_EQUALS" | "STARTS_WITH")?,
322
+ value: ::String
323
+ }?,
324
+ view_off_nadir: {
325
+ lower_bound: ::Float,
326
+ upper_bound: ::Float
327
+ }?,
328
+ view_sun_azimuth: {
329
+ lower_bound: ::Float,
330
+ upper_bound: ::Float
331
+ }?,
332
+ view_sun_elevation: {
333
+ lower_bound: ::Float,
334
+ upper_bound: ::Float
335
+ }?
336
+ }
337
+ },
338
+ ]?
339
+ }?,
340
+ time_range_filter: {
341
+ end_time: ::Time,
342
+ start_time: ::Time
343
+ }
344
+ }
345
+ ) -> _SearchRasterDataCollectionResponseSuccess
346
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchRasterDataCollectionResponseSuccess
347
+
348
+ interface _StartEarthObservationJobResponseSuccess
349
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartEarthObservationJobOutput]
350
+ def arn: () -> ::String
351
+ def creation_time: () -> ::Time
352
+ def duration_in_seconds: () -> ::Integer
353
+ def execution_role_arn: () -> ::String
354
+ def input_config: () -> Types::InputConfigOutput
355
+ def job_config: () -> Types::JobConfigInput
356
+ def kms_key_id: () -> ::String
357
+ def name: () -> ::String
358
+ def status: () -> ("INITIALIZING" | "IN_PROGRESS" | "STOPPING" | "COMPLETED" | "STOPPED" | "FAILED" | "DELETING" | "DELETED")
359
+ def tags: () -> ::Hash[::String, ::String]
360
+ end
361
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerGeospatial/Client.html#start_earth_observation_job-instance_method
362
+ def start_earth_observation_job: (
363
+ ?client_token: ::String,
364
+ execution_role_arn: ::String,
365
+ input_config: {
366
+ previous_earth_observation_job_arn: ::String?,
367
+ raster_data_collection_query: {
368
+ area_of_interest: {
369
+ area_of_interest_geometry: {
370
+ multi_polygon_geometry: {
371
+ coordinates: Array[
372
+ Array[
373
+ Array[
374
+ Array[::Float],
375
+ ],
376
+ ],
377
+ ]
378
+ }?,
379
+ polygon_geometry: {
380
+ coordinates: Array[
381
+ Array[
382
+ Array[::Float],
383
+ ],
384
+ ]
385
+ }?
386
+ }?
387
+ }?,
388
+ property_filters: {
389
+ logical_operator: ("AND")?,
390
+ properties: Array[
391
+ {
392
+ property: {
393
+ eo_cloud_cover: {
394
+ lower_bound: ::Float,
395
+ upper_bound: ::Float
396
+ }?,
397
+ landsat_cloud_cover_land: {
398
+ lower_bound: ::Float,
399
+ upper_bound: ::Float
400
+ }?,
401
+ platform: {
402
+ comparison_operator: ("EQUALS" | "NOT_EQUALS" | "STARTS_WITH")?,
403
+ value: ::String
404
+ }?,
405
+ view_off_nadir: {
406
+ lower_bound: ::Float,
407
+ upper_bound: ::Float
408
+ }?,
409
+ view_sun_azimuth: {
410
+ lower_bound: ::Float,
411
+ upper_bound: ::Float
412
+ }?,
413
+ view_sun_elevation: {
414
+ lower_bound: ::Float,
415
+ upper_bound: ::Float
416
+ }?
417
+ }
418
+ },
419
+ ]?
420
+ }?,
421
+ raster_data_collection_arn: ::String,
422
+ time_range_filter: {
423
+ end_time: ::Time,
424
+ start_time: ::Time
425
+ }
426
+ }?
427
+ },
428
+ job_config: {
429
+ band_math_config: {
430
+ custom_indices: {
431
+ operations: Array[
432
+ {
433
+ equation: ::String,
434
+ name: ::String,
435
+ output_type: ("INT32" | "FLOAT32" | "INT16" | "FLOAT64" | "UINT16")?
436
+ },
437
+ ]?
438
+ }?,
439
+ predefined_indices: Array[::String]?
440
+ }?,
441
+ cloud_masking_config: {
442
+ }?,
443
+ cloud_removal_config: {
444
+ algorithm_name: ("INTERPOLATION")?,
445
+ interpolation_value: ::String?,
446
+ target_bands: Array[::String]?
447
+ }?,
448
+ geo_mosaic_config: {
449
+ algorithm_name: ("NEAR" | "BILINEAR" | "CUBIC" | "CUBICSPLINE" | "LANCZOS" | "AVERAGE" | "RMS" | "MODE" | "MAX" | "MIN" | "MED" | "Q1" | "Q3" | "SUM")?,
450
+ target_bands: Array[::String]?
451
+ }?,
452
+ land_cover_segmentation_config: {
453
+ }?,
454
+ resampling_config: {
455
+ algorithm_name: ("NEAR" | "BILINEAR" | "CUBIC" | "CUBICSPLINE" | "LANCZOS" | "AVERAGE" | "RMS" | "MODE" | "MAX" | "MIN" | "MED" | "Q1" | "Q3" | "SUM")?,
456
+ output_resolution: {
457
+ user_defined: {
458
+ unit: ("METERS"),
459
+ value: ::Float
460
+ }
461
+ },
462
+ target_bands: Array[::String]?
463
+ }?,
464
+ stack_config: {
465
+ output_resolution: {
466
+ predefined: ("HIGHEST" | "LOWEST" | "AVERAGE")?,
467
+ user_defined: {
468
+ unit: ("METERS"),
469
+ value: ::Float
470
+ }?
471
+ }?,
472
+ target_bands: Array[::String]?
473
+ }?,
474
+ temporal_statistics_config: {
475
+ group_by: ("ALL" | "YEARLY")?,
476
+ statistics: Array[("MEAN" | "MEDIAN" | "STANDARD_DEVIATION")],
477
+ target_bands: Array[::String]?
478
+ }?,
479
+ zonal_statistics_config: {
480
+ statistics: Array[("MEAN" | "MEDIAN" | "STANDARD_DEVIATION" | "MAX" | "MIN" | "SUM")],
481
+ target_bands: Array[::String]?,
482
+ zone_s3_path: ::String,
483
+ zone_s3_path_kms_key_id: ::String?
484
+ }?
485
+ },
486
+ ?kms_key_id: ::String,
487
+ name: ::String,
488
+ ?tags: Hash[::String, ::String]
489
+ ) -> _StartEarthObservationJobResponseSuccess
490
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartEarthObservationJobResponseSuccess
491
+
492
+ interface _StartVectorEnrichmentJobResponseSuccess
493
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartVectorEnrichmentJobOutput]
494
+ def arn: () -> ::String
495
+ def creation_time: () -> ::Time
496
+ def duration_in_seconds: () -> ::Integer
497
+ def execution_role_arn: () -> ::String
498
+ def input_config: () -> Types::VectorEnrichmentJobInputConfig
499
+ def job_config: () -> Types::VectorEnrichmentJobConfig
500
+ def kms_key_id: () -> ::String
501
+ def name: () -> ::String
502
+ def status: () -> ("INITIALIZING" | "IN_PROGRESS" | "STOPPING" | "STOPPED" | "COMPLETED" | "FAILED" | "DELETING" | "DELETED")
503
+ def tags: () -> ::Hash[::String, ::String]
504
+ def type: () -> ("REVERSE_GEOCODING" | "MAP_MATCHING")
505
+ end
506
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerGeospatial/Client.html#start_vector_enrichment_job-instance_method
507
+ def start_vector_enrichment_job: (
508
+ ?client_token: ::String,
509
+ execution_role_arn: ::String,
510
+ input_config: {
511
+ data_source_config: {
512
+ s3_data: {
513
+ kms_key_id: ::String?,
514
+ s3_uri: ::String
515
+ }?
516
+ },
517
+ document_type: ("CSV")
518
+ },
519
+ job_config: {
520
+ map_matching_config: {
521
+ id_attribute_name: ::String,
522
+ timestamp_attribute_name: ::String,
523
+ x_attribute_name: ::String,
524
+ y_attribute_name: ::String
525
+ }?,
526
+ reverse_geocoding_config: {
527
+ x_attribute_name: ::String,
528
+ y_attribute_name: ::String
529
+ }?
530
+ },
531
+ ?kms_key_id: ::String,
532
+ name: ::String,
533
+ ?tags: Hash[::String, ::String]
534
+ ) -> _StartVectorEnrichmentJobResponseSuccess
535
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartVectorEnrichmentJobResponseSuccess
536
+
537
+ interface _StopEarthObservationJobResponseSuccess
538
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopEarthObservationJobOutput]
539
+ end
540
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerGeospatial/Client.html#stop_earth_observation_job-instance_method
541
+ def stop_earth_observation_job: (
542
+ arn: ::String
543
+ ) -> _StopEarthObservationJobResponseSuccess
544
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopEarthObservationJobResponseSuccess
545
+
546
+ interface _StopVectorEnrichmentJobResponseSuccess
547
+ include ::Seahorse::Client::_ResponseSuccess[Types::StopVectorEnrichmentJobOutput]
548
+ end
549
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerGeospatial/Client.html#stop_vector_enrichment_job-instance_method
550
+ def stop_vector_enrichment_job: (
551
+ arn: ::String
552
+ ) -> _StopVectorEnrichmentJobResponseSuccess
553
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopVectorEnrichmentJobResponseSuccess
554
+
555
+ interface _TagResourceResponseSuccess
556
+ include ::Seahorse::Client::_ResponseSuccess[Types::TagResourceResponse]
557
+ end
558
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerGeospatial/Client.html#tag_resource-instance_method
559
+ def tag_resource: (
560
+ resource_arn: ::String,
561
+ tags: Hash[::String, ::String]
562
+ ) -> _TagResourceResponseSuccess
563
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _TagResourceResponseSuccess
564
+
565
+ interface _UntagResourceResponseSuccess
566
+ include ::Seahorse::Client::_ResponseSuccess[Types::UntagResourceResponse]
567
+ end
568
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SageMakerGeospatial/Client.html#untag_resource-instance_method
569
+ def untag_resource: (
570
+ resource_arn: ::String,
571
+ tag_keys: Array[::String]
572
+ ) -> _UntagResourceResponseSuccess
573
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UntagResourceResponseSuccess
574
+ end
575
+ end
576
+ end
577
+
data/sig/errors.rbs ADDED
@@ -0,0 +1,43 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module SageMakerGeospatial
10
+ module Errors
11
+ class ServiceError < ::Aws::Errors::ServiceError
12
+ end
13
+
14
+ class AccessDeniedException < ::Aws::Errors::ServiceError
15
+ def message: () -> ::String
16
+ end
17
+ class ConflictException < ::Aws::Errors::ServiceError
18
+ def message: () -> ::String
19
+ def resource_id: () -> ::String
20
+ end
21
+ class InternalServerException < ::Aws::Errors::ServiceError
22
+ def message: () -> ::String
23
+ def resource_id: () -> ::String
24
+ end
25
+ class ResourceNotFoundException < ::Aws::Errors::ServiceError
26
+ def message: () -> ::String
27
+ def resource_id: () -> ::String
28
+ end
29
+ class ServiceQuotaExceededException < ::Aws::Errors::ServiceError
30
+ def message: () -> ::String
31
+ def resource_id: () -> ::String
32
+ end
33
+ class ThrottlingException < ::Aws::Errors::ServiceError
34
+ def message: () -> ::String
35
+ def resource_id: () -> ::String
36
+ end
37
+ class ValidationException < ::Aws::Errors::ServiceError
38
+ def message: () -> ::String
39
+ def resource_id: () -> ::String
40
+ end
41
+ end
42
+ end
43
+ end